hymod.h 11 KB

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