2
0

ioregs.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. #ifndef IODEV_H
  2. #define IODEV_H
  3. #include "iodevs.h"
  4. /* Address for I/O device d, subregister r, offset o */
  5. #define IODEVA(b,r,o) ((b ## _BASE)+((r) << 2)+(o))
  6. #ifdef __ASSEMBLY__
  7. /*
  8. * The I/O device range is designed so that it can be addressed via
  9. * negative offsets from the zero register, so no explicit base
  10. * pointer register is necesary.
  11. */
  12. #define IODEVV(d,r) IODEVA(d,r,0)(zero)
  13. #define IODEVB(d,r) IODEVV(d,r,0)
  14. #define IODEVH(d,r) IODEVV(d,r,0)
  15. #define IODEVL(d,r) IODEVV(d,r,0)
  16. #else
  17. #include <stdint.h>
  18. /* Writable registers */
  19. #define IODEVV(d,r) (*(volatile void *)IODEVA(d,r,0))
  20. #define IODEVB(d,r) (*(volatile uint8_t *)IODEVA(d,r,0))
  21. #define IODEVB0(d,r) (*(volatile uint8_t *)IODEVA(d,r,0))
  22. #define IODEVB1(d,r) (*(volatile uint8_t *)IODEVA(d,r,1))
  23. #define IODEVB2(d,r) (*(volatile uint8_t *)IODEVA(d,r,2))
  24. #define IODEVB3(d,r) (*(volatile uint8_t *)IODEVA(d,r,3))
  25. #define IODEVH(d,r) (*(volatile uint16_t *)IODEVA(d,r,0))
  26. #define IODEVH0(d,r) (*(volatile uint16_t *)IODEVA(d,r,0))
  27. #define IODEVH1(d,r) (*(volatile uint16_t *)IODEVA(d,r,2))
  28. #define IODEVL(d,r) (*(volatile uint32_t *)IODEVA(d,r,0))
  29. /* Readonly registers */
  30. #define IODEVRV(d,r) (*(const volatile void *)IODEVA(d,r,0))
  31. #define IODEVRB(d,r) (*(const volatile uint8_t *)IODEVA(d,r,0))
  32. #define IODEVRB0(d,r) (*(const volatile uint8_t *)IODEVA(d,r,0))
  33. #define IODEVRB1(d,r) (*(const volatile uint8_t *)IODEVA(d,r,1))
  34. #define IODEVRB2(d,r) (*(const volatile uint8_t *)IODEVA(d,r,2))
  35. #define IODEVRB3(d,r) (*(const volatile uint8_t *)IODEVA(d,r,3))
  36. #define IODEVRH(d,r) (*(const volatile uint16_t *)IODEVA(d,r,0))
  37. #define IODEVRH0(d,r) (*(const volatile uint16_t *)IODEVA(d,r,0))
  38. #define IODEVRH1(d,r) (*(const volatile uint16_t *)IODEVA(d,r,2))
  39. #define IODEVRL(d,r) (*(const volatile uint32_t *)IODEVA(d,r,0))
  40. #endif
  41. #define CPU_HZ 84000000
  42. #define TIMER_HZ (1 << TIMER_SHIFT)
  43. /* Basic system registers */
  44. #define SYS_MAGIC IODEVL(SYS,0)
  45. #define SYS_BOARDCFG IODEVL(SYS,1)
  46. #define SYS_BOARDFIX IODEVH0(SYS,1)
  47. #define SYS_BOARDFIX_RTC32 1
  48. #define SYS_BOARDREV IODEVH1(SYS,1)
  49. #define SYS_BOARDMINOR IODEVB2(SYS,1)
  50. #define SYS_BOARDMAJOR IODEVB3(SYS,1)
  51. #define SYS_LED IODEVL(SYS,2)
  52. #define SYS_RESET IODEVL(SYS,3)
  53. #define ROMCOPY_RAMADDR IODEVL(ROMCOPY,0)
  54. #define ROMCOPY_ROMADDR IODEVL(ROMCOPY,1)
  55. #define ROMCOPY_DATALEN IODEVL(ROMCOPY,2)
  56. #define ROMCOPY_STATUS IODEVL(ROMCOPY,3)
  57. #define ROMCOPY_STATUS_DONE 1
  58. #define CON_DATA IODEVB(CONSOLE,0)
  59. #define CON_BAUDDIV IODEVL(CONSOLE,1)
  60. #define CON_BAUD_BASE (CPU_HZ >> 4)
  61. #define CON_BAUD_BITS 24
  62. #define CON_STATUS IODEVRL(CONSOLE,2)
  63. #define CON_IRQEN IODEVL(CONSOLE,3)
  64. #define SDCARD_CTL IODEVL(SDCARD,0)
  65. #define SDCARD_CTL_SPEED IODEVB0(SDCARD,0)
  66. #define SDCARD_CTL_IRQEN IODEVB1(SDCARD,0)
  67. #define SDCARD_CTL_CLRCRC IODEVB2(SDCARD,0)
  68. #define SDCARD_CRC7_RD IODEVRB0(SDCARD,4)
  69. #define SDCARD_CRC16_RD IODEVRH1(SDCARD,4)
  70. #define SDCARD_CRC7_WR IODEVRB0(SDCARD,5)
  71. #define SDCARD_CRC16_WR IODEVRH1(SDCARD,5)
  72. #define SDCARD_IRQ_READY 1
  73. #define SDCARD_IRQ_CD 2
  74. #define SDCARD_IRQ_EXT 4
  75. /* Speed values, not including -1 adjustment */
  76. #define SD_SLOW 128 /* 328 kHz */
  77. #define SD_20MHZ 3 /* Really 14 MHz */
  78. #define SD_25MHZ 2 /* Really 21 MHz */
  79. #define SD_50MHZ 1 /* Really 42 MHz */
  80. #define I2C_WDATA IODEVL(I2C,0)
  81. #define I2C_WDATA_DATA IODEVB1(I2C,0)
  82. #define I2C_RDATA IODEVL(I2C,1)
  83. #define I2C_RDATA_DATA IODEVB1(I2C,1)
  84. #define I2C_BUSY 1
  85. #define I2C_SR 2
  86. #define I2C_P 4
  87. #define I2C_DUMMY 6
  88. #define I2C_STARTED 0x10
  89. #define I2C_SCL 0x20
  90. #define I2C_SDA 0x40
  91. #define I2C_NAK 0x80
  92. #define I2C_DIVISOR IODEVL(I2C,2)
  93. #define SYSCLOCK_DATETIME IODEVL(SYSCLOCK,0)
  94. #define SYSCLOCK_TICK IODEVL(SYSCLOCK,1)
  95. #define SYSCLOCK_TICK_HOLD IODEVH0(SYSCLOCK,1)
  96. #define SYSCLOCK_TICK_NOW IODEVH1(SYSCLOCK,1)
  97. #define ABC_STATUS IODEVL(ABC,0)
  98. #define ABC_STATUS_LIVE 1
  99. #define ABC_STATUS_RST 2
  100. #define ABC_STATUS_800 4
  101. #define ABC_IOSEL IODEVL(ABC,1)
  102. #define ABC_IOSEL_INVALID 0x100
  103. #define ABC_BUSY IODEVL(ABC,2)
  104. #define ABC_BUSY_STATUS IODEVH0(ABC,2)
  105. #define ABC_BUSY_MASK IODEVH1(ABC,2)
  106. #define ABC_BUSY_OUT 0x00ff
  107. #define ABC_BUSY_INP 0x0300
  108. #define ABC_BUSY_BUSCHG 0xf000
  109. #define ABC_BUSCTL IODEVL(ABC,3)
  110. #define ABC_BUSCTL_WAIT 1
  111. #define ABC_BUSCTL_INT 2
  112. #define ABC_BUSCTL_NMI 4
  113. #define ABC_BUSCTL_RESET 8
  114. #define ABC_OUT IODEVL(ABC,4)
  115. #define ABC_OUT_DATA IODEVB0(ABC,4)
  116. #define ABC_OUT_ADDR IODEVB1(ABC,4)
  117. #define ABC_INP IODEVL(ABC,5)
  118. #define ABC_INP0_DATA IODEVB0(ABC,5)
  119. #define ABC_INP1_DATA IODEVB1(ABC,5)
  120. #define ABC_INP_ENABLE IODEVB2(ABC,5)
  121. #define ABCMEMMAP_PAGE(n) IODEVL(ABCMEMMAP,n)
  122. #define ABCMEMMAP_WRPORT(n) IODEVL(ABCMEMMAP,128+((n) << 1))
  123. #define ABCMEMMAP_RDPORT(n) IODEVL(ABCMEMMAP,129+((n) << 1))
  124. #define ABCMEMMAP_WRCOUNT(n) IODEVL(ABCMEMMAP,384+((n) << 1))
  125. #define ABCMEMMAP_RDCOUNT(n) IODEVL(ABCMEMMAP,385+((n) << 1))
  126. #define ABCMEMMAP_WR (1 << 30)
  127. #define ABCMEMMAP_RD (1 << 31)
  128. #define ABCMEMMAP_STATUS(n) IODEVL(ABCMEMMAP,512+(n))
  129. #define ABCMEMMAP_CLR7DMA 0x800
  130. #define ABCMEMMAP_CLR1WEMP 0x400
  131. #define ABCMEMMAP_CLR0WEMP 0x200
  132. #define ABCMEMMAP_CLR0REMP 0x100
  133. #endif /* IODEV_H */