hymod.h 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. /*
  2. * (C) Copyright 2001
  3. * Murray Jensen, CSIRO-MIT, <Murray.Jensen@csiro.au>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef _HYMOD_H_
  8. #define _HYMOD_H_
  9. #ifdef CONFIG_8260
  10. #include <asm/iopin_8260.h>
  11. #endif
  12. /*
  13. * hymod configuration data - passed by boot code via the board information
  14. * structure (only U-Boot has support for this at the moment)
  15. *
  16. * there are three types of data passed up from the boot monitor. the first
  17. * (type hymod_eeprom_t) is the eeprom data that was read off both the main
  18. * (or mother) board and the mezzanine board (if any). this data defines how
  19. * many Xilinx fpgas are on each board, and their types (among other things).
  20. * the second type of data (type xlx_mmap_t, one per Xilinx fpga) defines where
  21. * in the physical address space the various Xilinx fpga access regions have
  22. * been mapped by the boot rom. the third type of data (type xlx_iopins_t,
  23. * one per Xilinx fpga) defines which io port pins are connected to the various
  24. * signals required to program a Xilinx fpga.
  25. *
  26. * A ram/flash "bank" refers to memory controlled by the same chip select.
  27. *
  28. * the eeprom contents are defined as in technical note #2 - basically,
  29. * a header, zero or more records in no particular order, and a 32 bit crc
  30. * a record is 1 or more type bytes, a length byte and "length" bytes.
  31. */
  32. #define HYMOD_EEPROM_ID 0xAA /* eeprom id byte */
  33. #define HYMOD_EEPROM_VER 1 /* eeprom contents version (0-127) */
  34. #define HYMOD_EEPROM_SIZE 256 /* number of bytes in the eeprom */
  35. /* eeprom header */
  36. typedef
  37. struct {
  38. unsigned char id; /* eeprom id byte */
  39. unsigned char :1;
  40. unsigned char ver:7; /* eeprom contents version number */
  41. unsigned long len; /* total # of bytes btw hdr and crc */
  42. }
  43. hymod_eehdr_t;
  44. /* maximum number of bytes available for eeprom data records */
  45. #define HYMOD_EEPROM_MAXLEN (HYMOD_EEPROM_SIZE \
  46. - sizeof (hymod_eehdr_t) \
  47. - sizeof (unsigned long))
  48. /* eeprom data record */
  49. typedef
  50. union {
  51. struct {
  52. unsigned char topbit:1;
  53. unsigned char type:7;
  54. unsigned char len;
  55. unsigned char data[1]; /* variable length */
  56. } small;
  57. struct {
  58. unsigned short topbit:1;
  59. unsigned short nxtbit:1;
  60. unsigned short type:14;
  61. unsigned short len;
  62. unsigned char data[1]; /* variable length */
  63. } medium;
  64. struct {
  65. unsigned long topbit:1;
  66. unsigned long nxtbit:1;
  67. unsigned long type:30;
  68. unsigned long len;
  69. unsigned char data[1]; /* variable length */
  70. } large;
  71. }
  72. hymod_eerec_t;
  73. #define HYMOD_EEOFF_MAIN 0x00 /* i2c addr offset for main eeprom */
  74. #define HYMOD_EEOFF_MEZZ 0x04 /* i2c addr offset for mezz eepomr */
  75. /* eeprom record types */
  76. #define HYMOD_EEREC_SERNO 1 /* serial number */
  77. #define HYMOD_EEREC_DATE 2 /* date */
  78. #define HYMOD_EEREC_BATCH 3 /* batch id */
  79. #define HYMOD_EEREC_TYPE 4 /* board type */
  80. #define HYMOD_EEREC_REV 5 /* revision number */
  81. #define HYMOD_EEREC_SDRAM 6 /* sdram sizes */
  82. #define HYMOD_EEREC_FLASH 7 /* flash sizes */
  83. #define HYMOD_EEREC_ZBT 8 /* zbt ram sizes */
  84. #define HYMOD_EEREC_XLXTYP 9 /* Xilinx fpga types */
  85. #define HYMOD_EEREC_XLXSPD 10 /* Xilinx fpga speeds */
  86. #define HYMOD_EEREC_XLXTMP 11 /* Xilinx fpga temperatures */
  87. #define HYMOD_EEREC_XLXGRD 12 /* Xilinx fpga grades */
  88. #define HYMOD_EEREC_CPUTYP 13 /* Motorola CPU type */
  89. #define HYMOD_EEREC_CPUSPD 14 /* CPU speed */
  90. #define HYMOD_EEREC_BUSSPD 15 /* bus speed */
  91. #define HYMOD_EEREC_CPMSPD 16 /* CPM speed */
  92. #define HYMOD_EEREC_HSTYPE 17 /* high-speed serial chip type */
  93. #define HYMOD_EEREC_HSCHIN 18 /* high-speed serial input channels */
  94. #define HYMOD_EEREC_HSCHOUT 19 /* high-speed serial output channels */
  95. /* some dimensions */
  96. #define HYMOD_MAX_BATCH 32 /* max no. of bytes in batch id */
  97. #define HYMOD_MAX_SDRAM 4 /* max sdram "banks" on any board */
  98. #define HYMOD_MAX_FLASH 4 /* max flash "banks" on any board */
  99. #define HYMOD_MAX_ZBT 16 /* max ZBT rams on any board */
  100. #define HYMOD_MAX_XLX 4 /* max Xilinx fpgas on any board */
  101. #define HYMOD_MAX_BYTES 16 /* enough to store any bytes array */
  102. /* board types */
  103. #define HYMOD_BDTYPE_NONE 0 /* information not present */
  104. #define HYMOD_BDTYPE_IO 1 /* I/O main board */
  105. #define HYMOD_BDTYPE_CLP 2 /* CLP main board */
  106. #define HYMOD_BDTYPE_DSP 3 /* DSP main board */
  107. #define HYMOD_BDTYPE_INPUT 4 /* video input mezzanine board */
  108. #define HYMOD_BDTYPE_ALTINPUT 5 /* video input mezzanine board */
  109. #define HYMOD_BDTYPE_DISPLAY 6 /* video display mezzanine board */
  110. #define HYMOD_BDTYPE_MAX 7 /* first invalid value */
  111. /* Xilinx fpga types */
  112. #define HYMOD_XTYP_NONE 0 /* information not present */
  113. #define HYMOD_XTYP_XCV300E 1 /* Xilinx Virtex 300 */
  114. #define HYMOD_XTYP_XCV400E 2 /* Xilinx Virtex 400 */
  115. #define HYMOD_XTYP_XCV600E 3 /* Xilinx Virtex 600 */
  116. #define HYMOD_XTYP_MAX 4 /* first invalid value */
  117. /* Xilinx fpga speeds */
  118. #define HYMOD_XSPD_NONE 0 /* information not present */
  119. #define HYMOD_XSPD_SIX 1
  120. #define HYMOD_XSPD_SEVEN 2
  121. #define HYMOD_XSPD_EIGHT 3
  122. #define HYMOD_XSPD_MAX 4 /* first invalid value */
  123. /* Xilinx fpga temperatures */
  124. #define HYMOD_XTMP_NONE 0 /* information not present */
  125. #define HYMOD_XTMP_COM 1
  126. #define HYMOD_XTMP_IND 2
  127. #define HYMOD_XTMP_MAX 3 /* first invalid value */
  128. /* Xilinx fpga grades */
  129. #define HYMOD_XTMP_NONE 0 /* information not present */
  130. #define HYMOD_XTMP_NORMAL 1
  131. #define HYMOD_XTMP_ENGSAMP 2
  132. #define HYMOD_XTMP_MAX 3 /* first invalid value */
  133. /* CPU types */
  134. #define HYMOD_CPUTYPE_NONE 0 /* information not present */
  135. #define HYMOD_CPUTYPE_MPC8260 1 /* Motorola MPC8260 embedded powerpc */
  136. #define HYMOD_CPUTYPE_MAX 2 /* first invalid value */
  137. /* CPU/BUS/CPM clock speeds */
  138. #define HYMOD_CLKSPD_NONE 0 /* information not present */
  139. #define HYMOD_CLKSPD_33MHZ 1
  140. #define HYMOD_CLKSPD_66MHZ 2
  141. #define HYMOD_CLKSPD_100MHZ 3
  142. #define HYMOD_CLKSPD_133MHZ 4
  143. #define HYMOD_CLKSPD_166MHZ 5
  144. #define HYMOD_CLKSPD_200MHZ 6
  145. #define HYMOD_CLKSPD_MAX 7 /* first invalid value */
  146. /* high speed serial chip types */
  147. #define HYMOD_HSSTYPE_NONE 0 /* information not present */
  148. #define HYMOD_HSSTYPE_AMCC52064 1
  149. #define HYMOD_HSSTYPE_MAX 2 /* first invalid value */
  150. /* a date (yyyy-mm-dd) */
  151. typedef
  152. struct {
  153. unsigned short year;
  154. unsigned char month;
  155. unsigned char day;
  156. }
  157. hymod_date_t;
  158. /* describes a Xilinx fpga */
  159. typedef
  160. struct {
  161. unsigned char type; /* chip type */
  162. unsigned char speed; /* chip speed rating */
  163. unsigned char temp; /* chip temperature rating */
  164. unsigned char grade; /* chip grade */
  165. }
  166. hymod_xlx_t;
  167. /* describes a Motorola embedded processor */
  168. typedef
  169. struct {
  170. unsigned char type; /* CPU type */
  171. unsigned char cpuspd; /* speed of the PowerPC core */
  172. unsigned char busspd; /* speed of the system and 60x bus */
  173. unsigned char cpmspd; /* speed of the CPM co-processor */
  174. }
  175. hymod_mpc_t;
  176. /* info about high-speed (1Gbit) serial interface */
  177. typedef
  178. struct {
  179. unsigned char type; /* high-speed serial chip type */
  180. unsigned char nchin; /* number of input channels mounted */
  181. unsigned char nchout; /* number of output channels mounted */
  182. }
  183. hymod_hss_t;
  184. /*
  185. * this defines the contents of the serial eeprom that exists on every
  186. * hymod board, including mezzanine boards (the serial eeprom will be
  187. * faked for early development boards that don't have one)
  188. */
  189. typedef
  190. struct {
  191. unsigned char valid:1; /* contents of this struct is valid */
  192. unsigned char ver:7; /* eeprom contents version */
  193. unsigned char bdtype; /* board type */
  194. unsigned char bdrev; /* board revision */
  195. unsigned char batchlen; /* length of batch string below */
  196. unsigned long serno; /* serial number */
  197. hymod_date_t date; /* manufacture date */
  198. unsigned char batch[32]; /* manufacturer specific batch id */
  199. unsigned char nsdram; /* # of ram "banks" */
  200. unsigned char nflash; /* # of flash "banks" */
  201. unsigned char nzbt; /* # of ZBT rams */
  202. unsigned char nxlx; /* # of Xilinx fpgas */
  203. unsigned char sdramsz[HYMOD_MAX_SDRAM]; /* log2 of sdram size */
  204. unsigned char flashsz[HYMOD_MAX_FLASH]; /* log2 of flash size */
  205. unsigned char zbtsz[HYMOD_MAX_ZBT]; /* log2 of ZBT ram size */
  206. hymod_xlx_t xlx[HYMOD_MAX_XLX]; /* Xilinx fpga info */
  207. hymod_mpc_t mpc; /* Motorola MPC CPU info */
  208. hymod_hss_t hss; /* high-speed serial info */
  209. }
  210. hymod_eeprom_t;
  211. /*
  212. * this defines a region in the processor's physical address space
  213. */
  214. typedef
  215. struct {
  216. unsigned long exists:1; /* 1 if the region exists, 0 if not */
  217. unsigned long size:31; /* size in bytes */
  218. unsigned long base; /* base address */
  219. }
  220. xlx_prgn_t;
  221. /*
  222. * this defines where the various Xilinx fpga access regions are mapped
  223. * into the physical address space of the processor
  224. */
  225. typedef
  226. struct {
  227. xlx_prgn_t prog; /* program access region */
  228. xlx_prgn_t reg; /* register access region */
  229. xlx_prgn_t port; /* port access region */
  230. }
  231. xlx_mmap_t;
  232. /*
  233. * this defines which 8260 i/o port pins are connected to the various
  234. * signals required for programming a Xilinx fpga
  235. */
  236. typedef
  237. struct {
  238. iopin_t prog_pin; /* assert for >= 300ns to program */
  239. iopin_t init_pin; /* goes high when fpga is cleared */
  240. iopin_t done_pin; /* goes high when program is done */
  241. iopin_t enable_pin; /* some fpgas need enabling */
  242. }
  243. xlx_iopins_t;
  244. /* all info about one Xilinx chip */
  245. typedef
  246. struct {
  247. xlx_mmap_t mmap;
  248. xlx_iopins_t iopins;
  249. unsigned long irq:8; /* h/w intr req number for this fpga */
  250. }
  251. xlx_info_t;
  252. /* all info about one hymod board */
  253. typedef
  254. struct {
  255. hymod_eeprom_t eeprom;
  256. xlx_info_t xlx[HYMOD_MAX_XLX];
  257. }
  258. hymod_board_t;
  259. /*
  260. * this defines the configuration information of a hymod board-set
  261. * (main board + possible mezzanine board). In future, there may be
  262. * more than one mezzanine board (stackable?) - if so, add a "mezz2"
  263. * field, and so on... or make mezz an array?
  264. */
  265. typedef
  266. struct {
  267. unsigned long ver:8; /* version control */
  268. hymod_board_t main; /* main board info */
  269. hymod_board_t mezz; /* mezzanine board info */
  270. unsigned long crc; /* ensures kernel and boot prom agree */
  271. }
  272. hymod_conf_t;
  273. #endif /* _HYMOD_H_ */