2
0

ioregs.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. /* Basic system registers */
  43. #define SYS_MAGIC IODEVL(SYS,0)
  44. #define SYS_BOARDCFG IODEVL(SYS,1)
  45. #define SYS_LED IODEVL(SYS,2)
  46. #define SYS_RESET IODEVL(SYS,3)
  47. #define ROMCOPY_RAMADDR IODEVL(ROMCOPY,0)
  48. #define ROMCOPY_ROMADDR IODEVL(ROMCOPY,1)
  49. #define ROMCOPY_DATALEN IODEVL(ROMCOPY,2)
  50. #define ROMCOPY_STATUS IODEVL(ROMCOPY,3)
  51. #define ROMCOPY_STATUS_DONE 1
  52. #define CON_DATA IODEVB(CONSOLE,0)
  53. #define CON_BAUDDIV IODEVL(CONSOLE,1)
  54. #define CON_BAUD_BASE (CPU_HZ >> 4)
  55. #define CON_BAUD_BITS 24
  56. #define CON_STATUS IODEVRL(CONSOLE,2)
  57. #define CON_IRQEN IODEVL(CONSOLE,3)
  58. #define SDCARD_CTL IODEVL(SDCARD,0)
  59. #define SDCARD_CTL_SPEED IODEVB0(SDCARD,0)
  60. #define SDCARD_CTL_IRQEN IODEVB1(SDCARD,0)
  61. #define SDCARD_CTL_CLRCRC IODEVB2(SDCARD,0)
  62. #define SDCARD_CRC7_RD IODEVRB0(SDCARD,4)
  63. #define SDCARD_CRC16_RD IODEVRH1(SDCARD,4)
  64. #define SDCARD_CRC7_WR IODEVRB0(SDCARD,5)
  65. #define SDCARD_CRC16_WR IODEVRH1(SDCARD,5)
  66. #define SDCARD_IRQ_READY 1
  67. #define SDCARD_IRQ_CD 2
  68. #define SDCARD_IRQ_EXT 4
  69. /* Speed values, not including -1 adjustment */
  70. #define SD_SLOW 128 /* 328 kHz */
  71. #define SD_20MHZ 3 /* Really 14 MHz */
  72. #define SD_25MHZ 2 /* Really 21 MHz */
  73. #define SD_50MHZ 1 /* Really 42 MHz */
  74. #define I2C_WDATA IODEVL(I2C,0)
  75. #define I2C_WDATA_DATA IODEVB1(I2C,0)
  76. #define I2C_RDATA IODEVL(I2C,1)
  77. #define I2C_RDATA_DATA IODEVB1(I2C,1)
  78. #define I2C_BUSY 1
  79. #define I2C_SR 2
  80. #define I2C_P 4
  81. #define I2C_DUMMY 6
  82. #define I2C_STARTED 0x10
  83. #define I2C_SCL 0x20
  84. #define I2C_SDA 0x40
  85. #define I2C_NAK 0x80
  86. #define I2C_DIVISOR IODEVL(I2C,2)
  87. #define SYSCLOCK_DATETIME IODEVL(SYSCLOCK,0)
  88. #define SYSCLOCK_TICK IODEVL(SYSCLOCK,1)
  89. #define SYSCLOCK_TICK_HOLD IODEVH0(SYSCLOCK,1)
  90. #define SYSCLOCK_TICK_NOW IODEVH1(SYSCLOCK,1)
  91. #define ABC_STATUS IODEVL(ABC,0)
  92. #define ABC_STATUS_LIVE 1
  93. #define ABC_STATUS_RST 2
  94. #define ABC_STATUS_800 4
  95. #define ABC_IOSEL IODEVL(ABC,1)
  96. #define ABC_IOBASE IODEVL(ABC,2)
  97. #define ABC_BUSCTL IODEVL(ABC,3)
  98. #define ABC_BUSCTL_WAIT 1
  99. #define ABC_BUSCTL_INT 2
  100. #define ABC_BUSCTL_NMI 4
  101. #define ABC_BUSCTL_RESET 8
  102. #define ABC_IRQMASK IODEVL(ABC,4)
  103. #define ABC_IRQSTATUS IODEVL(ABC,5)
  104. #define ABC_OUTSTATUS IODEVB0(ABC,5)
  105. #define ABC_INPSTATUS IODEVB1(ABC,5)
  106. #define ABC_DMASTATUS IODEVB2(ABC,5)
  107. #define ABC_CHGSTATUS IODEVB3(ABC,5)
  108. #define ABCMEMMAP_PAGE(n) IODEVL(ABCMEMMAP,n)
  109. #define ABCMEMMAP_WRPORT(n) IODEVL(ABCMEMMAP,128+((n) << 1))
  110. #define ABCMEMMAP_RDPORT(n) IODEVL(ABCMEMMAP,129+((n) << 1))
  111. #define ABCMEMMAP_WRCOUNT(n) IODEVL(ABCMEMMAP,384+((n) << 1))
  112. #define ABCMEMMAP_RDCOUNT(n) IODEVL(ABCMEMMAP,385+((n) << 1))
  113. #define ABCMEMMAP_WR (1 << 30)
  114. #define ABCMEMMAP_RD (1 << 31)
  115. #define ABCMEMMAP_STATUS(n) IODEVL(ABCMEMMAP,512+(n))
  116. #define ABCMEMMAP_CLR7DMA 0x800
  117. #define ABCMEMMAP_CLR1WEMP 0x400
  118. #define ABCMEMMAP_CLR0WEMP 0x200
  119. #define ABCMEMMAP_CLR0REMP 0x100
  120. #endif /* IODEV_H */