cpm_8260.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:26k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.cpm_8260.h 1.7 05/17/01 18:14:24 cort
  3.  */
  4. /*
  5.  * MPC8260 Communication Processor Module.
  6.  * Copyright (c) 1999 Dan Malek (dmalek@jlc.net)
  7.  *
  8.  * This file contains structures and information for the communication
  9.  * processor channels found in the dual port RAM or parameter RAM.
  10.  * All CPM control and status is available through the MPC8260 internal
  11.  * memory map.  See immap.h for details.
  12.  */
  13. #ifdef __KERNEL__
  14. #ifndef __CPM_82XX__
  15. #define __CPM_82XX__
  16. #include <asm/immap_8260.h>
  17. /* CPM Command register.
  18. */
  19. #define CPM_CR_RST ((uint)0x80000000)
  20. #define CPM_CR_PAGE ((uint)0x7c000000)
  21. #define CPM_CR_SBLOCK ((uint)0x03e00000)
  22. #define CPM_CR_FLG ((uint)0x00010000)
  23. #define CPM_CR_MCN ((uint)0x00003fc0)
  24. #define CPM_CR_OPCODE ((uint)0x0000000f)
  25. /* Device sub-block and page codes.
  26. */
  27. #define CPM_CR_SCC1_SBLOCK (0x04)
  28. #define CPM_CR_SCC2_SBLOCK (0x05)
  29. #define CPM_CR_SCC3_SBLOCK (0x06)
  30. #define CPM_CR_SCC4_SBLOCK (0x07)
  31. #define CPM_CR_SMC1_SBLOCK (0x08)
  32. #define CPM_CR_SMC2_SBLOCK (0x09)
  33. #define CPM_CR_SPI_SBLOCK (0x0a)
  34. #define CPM_CR_I2C_SBLOCK (0x0b)
  35. #define CPM_CR_TIMER_SBLOCK (0x0f)
  36. #define CPM_CR_RAND_SBLOCK (0x0e)
  37. #define CPM_CR_FCC1_SBLOCK (0x10)
  38. #define CPM_CR_FCC2_SBLOCK (0x11)
  39. #define CPM_CR_FCC3_SBLOCK (0x12)
  40. #define CPM_CR_IDMA1_SBLOCK (0x14)
  41. #define CPM_CR_IDMA2_SBLOCK (0x15)
  42. #define CPM_CR_IDMA3_SBLOCK (0x16)
  43. #define CPM_CR_IDMA4_SBLOCK (0x17)
  44. #define CPM_CR_MCC1_SBLOCK (0x1c)
  45. #define CPM_CR_SCC1_PAGE (0x00)
  46. #define CPM_CR_SCC2_PAGE (0x01)
  47. #define CPM_CR_SCC3_PAGE (0x02)
  48. #define CPM_CR_SCC4_PAGE (0x03)
  49. #define CPM_CR_SMC1_PAGE (0x07)
  50. #define CPM_CR_SMC2_PAGE (0x08)
  51. #define CPM_CR_SPI_PAGE (0x09)
  52. #define CPM_CR_I2C_PAGE (0x0a)
  53. #define CPM_CR_TIMER_PAGE (0x0a)
  54. #define CPM_CR_RAND_PAGE (0x0a)
  55. #define CPM_CR_FCC1_PAGE (0x04)
  56. #define CPM_CR_FCC2_PAGE (0x05)
  57. #define CPM_CR_FCC3_PAGE (0x06)
  58. #define CPM_CR_IDMA1_PAGE (0x07)
  59. #define CPM_CR_IDMA2_PAGE (0x08)
  60. #define CPM_CR_IDMA3_PAGE (0x09)
  61. #define CPM_CR_IDMA4_PAGE (0x0a)
  62. #define CPM_CR_MCC1_PAGE (0x07)
  63. #define CPM_CR_MCC2_PAGE (0x08)
  64. /* Some opcodes (there are more...later)
  65. */
  66. #define CPM_CR_INIT_TRX ((ushort)0x0000)
  67. #define CPM_CR_INIT_RX ((ushort)0x0001)
  68. #define CPM_CR_INIT_TX ((ushort)0x0002)
  69. #define CPM_CR_HUNT_MODE ((ushort)0x0003)
  70. #define CPM_CR_STOP_TX ((ushort)0x0004)
  71. #define CPM_CR_RESTART_TX ((ushort)0x0006)
  72. #define CPM_CR_SET_GADDR ((ushort)0x0008)
  73. #define mk_cr_cmd(PG, SBC, MCN, OP) 
  74. ((PG << 26) | (SBC << 21) | (MCN << 6) | OP)
  75. /* Dual Port RAM addresses.  The first 16K is available for almost
  76.  * any CPM use, so we put the BDs there.  The first 128 bytes are
  77.  * used for SMC1 and SMC2 parameter RAM, so we start allocating
  78.  * BDs above that.  All of this must change when we start
  79.  * downloading RAM microcode.
  80.  */
  81. #define CPM_DATAONLY_BASE ((uint)128)
  82. #define CPM_DATAONLY_SIZE ((uint)(16 * 1024) - CPM_DATAONLY_BASE)
  83. #define CPM_DP_NOSPACE ((uint)0x7fffffff)
  84. #define CPM_FCC_SPECIAL_BASE ((uint)0x0000b000)
  85. /* The number of pages of host memory we allocate for CPM.  This is
  86.  * done early in kernel initialization to get physically contiguous
  87.  * pages.
  88.  */
  89. #define NUM_CPM_HOST_PAGES 2
  90. /* Export the base address of the communication processor registers
  91.  * and dual port ram.
  92.  */
  93. extern cpm8260_t *cpmp; /* Pointer to comm processor */
  94. uint m8260_cpm_dpalloc(uint size, uint align);
  95. uint m8260_cpm_hostalloc(uint size, uint align);
  96. void m8260_cpm_setbrg(uint brg, uint rate);
  97. void m8260_cpm_fastbrg(uint brg, uint rate, int div16);
  98. /* Buffer descriptors used by many of the CPM protocols.
  99. */
  100. typedef struct cpm_buf_desc {
  101. ushort cbd_sc; /* Status and Control */
  102. ushort cbd_datlen; /* Data length in buffer */
  103. uint cbd_bufaddr; /* Buffer address in host memory */
  104. } cbd_t;
  105. #define BD_SC_EMPTY ((ushort)0x8000) /* Receive is empty */
  106. #define BD_SC_READY ((ushort)0x8000) /* Transmit is ready */
  107. #define BD_SC_WRAP ((ushort)0x2000) /* Last buffer descriptor */
  108. #define BD_SC_INTRPT ((ushort)0x1000) /* Interrupt on change */
  109. #define BD_SC_LAST ((ushort)0x0800) /* Last buffer in frame */
  110. #define BD_SC_CM ((ushort)0x0200) /* Continous mode */
  111. #define BD_SC_ID ((ushort)0x0100) /* Rec'd too many idles */
  112. #define BD_SC_P ((ushort)0x0100) /* xmt preamble */
  113. #define BD_SC_BR ((ushort)0x0020) /* Break received */
  114. #define BD_SC_FR ((ushort)0x0010) /* Framing error */
  115. #define BD_SC_PR ((ushort)0x0008) /* Parity error */
  116. #define BD_SC_OV ((ushort)0x0002) /* Overrun */
  117. #define BD_SC_CD ((ushort)0x0001) /* ?? */
  118. /* Function code bits, usually generic to devices.
  119. */
  120. #define CPMFCR_GBL ((u_char)0x20) /* Set memory snooping */
  121. #define CPMFCR_EB ((u_char)0x10) /* Set big endian byte order */
  122. #define CPMFCR_TC2 ((u_char)0x04) /* Transfer code 2 value */
  123. #define CPMFCR_DTB ((u_char)0x02) /* Use local bus for data when set */
  124. #define CPMFCR_BDB ((u_char)0x01) /* Use local bus for BD when set */
  125. /* Parameter RAM offsets from the base.
  126. */
  127. #define PROFF_SCC1 ((uint)0x8000)
  128. #define PROFF_SCC2 ((uint)0x8100)
  129. #define PROFF_SCC3 ((uint)0x8200)
  130. #define PROFF_SCC4 ((uint)0x8300)
  131. #define PROFF_FCC1 ((uint)0x8400)
  132. #define PROFF_FCC2 ((uint)0x8500)
  133. #define PROFF_FCC3 ((uint)0x8600)
  134. #define PROFF_MCC1 ((uint)0x8700)
  135. #define PROFF_SMC1_BASE ((uint)0x87fc)
  136. #define PROFF_IDMA1_BASE ((uint)0x87fe)
  137. #define PROFF_MCC2 ((uint)0x8800)
  138. #define PROFF_SMC2_BASE ((uint)0x88fc)
  139. #define PROFF_IDMA2_BASE ((uint)0x88fe)
  140. #define PROFF_SPI_BASE ((uint)0x89fc)
  141. #define PROFF_IDMA3_BASE ((uint)0x89fe)
  142. #define PROFF_TIMERS ((uint)0x8ae0)
  143. #define PROFF_REVNUM ((uint)0x8af0)
  144. #define PROFF_RAND ((uint)0x8af8)
  145. #define PROFF_I2C_BASE ((uint)0x8afc)
  146. #define PROFF_IDMA4_BASE ((uint)0x8afe)
  147. /* The SMCs are relocated to any of the first eight DPRAM pages.
  148.  * We will fix these at the first locations of DPRAM, until we
  149.  * get some microcode patches :-).
  150.  * The parameter ram space for the SMCs is fifty-some bytes, and
  151.  * they are required to start on a 64 byte boundary.
  152.  */
  153. #define PROFF_SMC1 (0)
  154. #define PROFF_SMC2 (64)
  155. /* Define enough so I can at least use the serial port as a UART.
  156.  */
  157. typedef struct smc_uart {
  158. ushort smc_rbase; /* Rx Buffer descriptor base address */
  159. ushort smc_tbase; /* Tx Buffer descriptor base address */
  160. u_char smc_rfcr; /* Rx function code */
  161. u_char smc_tfcr; /* Tx function code */
  162. ushort smc_mrblr; /* Max receive buffer length */
  163. uint smc_rstate; /* Internal */
  164. uint smc_idp; /* Internal */
  165. ushort smc_rbptr; /* Internal */
  166. ushort smc_ibc; /* Internal */
  167. uint smc_rxtmp; /* Internal */
  168. uint smc_tstate; /* Internal */
  169. uint smc_tdp; /* Internal */
  170. ushort smc_tbptr; /* Internal */
  171. ushort smc_tbc; /* Internal */
  172. uint smc_txtmp; /* Internal */
  173. ushort smc_maxidl; /* Maximum idle characters */
  174. ushort smc_tmpidl; /* Temporary idle counter */
  175. ushort smc_brklen; /* Last received break length */
  176. ushort smc_brkec; /* rcv'd break condition counter */
  177. ushort smc_brkcr; /* xmt break count register */
  178. ushort smc_rmask; /* Temporary bit mask */
  179. uint smc_stmp; /* SDMA Temp */
  180. } smc_uart_t;
  181. /* SMC uart mode register (Internal memory map).
  182. */
  183. #define SMCMR_REN ((ushort)0x0001)
  184. #define SMCMR_TEN ((ushort)0x0002)
  185. #define SMCMR_DM ((ushort)0x000c)
  186. #define SMCMR_SM_GCI ((ushort)0x0000)
  187. #define SMCMR_SM_UART ((ushort)0x0020)
  188. #define SMCMR_SM_TRANS ((ushort)0x0030)
  189. #define SMCMR_SM_MASK ((ushort)0x0030)
  190. #define SMCMR_PM_EVEN ((ushort)0x0100) /* Even parity, else odd */
  191. #define SMCMR_REVD SMCMR_PM_EVEN
  192. #define SMCMR_PEN ((ushort)0x0200) /* Parity enable */
  193. #define SMCMR_BS SMCMR_PEN
  194. #define SMCMR_SL ((ushort)0x0400) /* Two stops, else one */
  195. #define SMCR_CLEN_MASK ((ushort)0x7800) /* Character length */
  196. #define smcr_mk_clen(C) (((C) << 11) & SMCR_CLEN_MASK)
  197. /* SMC Event and Mask register.
  198. */
  199. #define SMCM_TXE ((unsigned char)0x10)
  200. #define SMCM_BSY ((unsigned char)0x04)
  201. #define SMCM_TX ((unsigned char)0x02)
  202. #define SMCM_RX ((unsigned char)0x01)
  203. /* Baud rate generators.
  204. */
  205. #define CPM_BRG_RST ((uint)0x00020000)
  206. #define CPM_BRG_EN ((uint)0x00010000)
  207. #define CPM_BRG_EXTC_INT ((uint)0x00000000)
  208. #define CPM_BRG_EXTC_CLK3_9 ((uint)0x00004000)
  209. #define CPM_BRG_EXTC_CLK5_15 ((uint)0x00008000)
  210. #define CPM_BRG_ATB ((uint)0x00002000)
  211. #define CPM_BRG_CD_MASK ((uint)0x00001ffe)
  212. #define CPM_BRG_DIV16 ((uint)0x00000001)
  213. /* SCCs.
  214. */
  215. #define SCC_GSMRH_IRP ((uint)0x00040000)
  216. #define SCC_GSMRH_GDE ((uint)0x00010000)
  217. #define SCC_GSMRH_TCRC_CCITT ((uint)0x00008000)
  218. #define SCC_GSMRH_TCRC_BISYNC ((uint)0x00004000)
  219. #define SCC_GSMRH_TCRC_HDLC ((uint)0x00000000)
  220. #define SCC_GSMRH_REVD ((uint)0x00002000)
  221. #define SCC_GSMRH_TRX ((uint)0x00001000)
  222. #define SCC_GSMRH_TTX ((uint)0x00000800)
  223. #define SCC_GSMRH_CDP ((uint)0x00000400)
  224. #define SCC_GSMRH_CTSP ((uint)0x00000200)
  225. #define SCC_GSMRH_CDS ((uint)0x00000100)
  226. #define SCC_GSMRH_CTSS ((uint)0x00000080)
  227. #define SCC_GSMRH_TFL ((uint)0x00000040)
  228. #define SCC_GSMRH_RFW ((uint)0x00000020)
  229. #define SCC_GSMRH_TXSY ((uint)0x00000010)
  230. #define SCC_GSMRH_SYNL16 ((uint)0x0000000c)
  231. #define SCC_GSMRH_SYNL8 ((uint)0x00000008)
  232. #define SCC_GSMRH_SYNL4 ((uint)0x00000004)
  233. #define SCC_GSMRH_RTSM ((uint)0x00000002)
  234. #define SCC_GSMRH_RSYN ((uint)0x00000001)
  235. #define SCC_GSMRL_SIR ((uint)0x80000000) /* SCC2 only */
  236. #define SCC_GSMRL_EDGE_NONE ((uint)0x60000000)
  237. #define SCC_GSMRL_EDGE_NEG ((uint)0x40000000)
  238. #define SCC_GSMRL_EDGE_POS ((uint)0x20000000)
  239. #define SCC_GSMRL_EDGE_BOTH ((uint)0x00000000)
  240. #define SCC_GSMRL_TCI ((uint)0x10000000)
  241. #define SCC_GSMRL_TSNC_3 ((uint)0x0c000000)
  242. #define SCC_GSMRL_TSNC_4 ((uint)0x08000000)
  243. #define SCC_GSMRL_TSNC_14 ((uint)0x04000000)
  244. #define SCC_GSMRL_TSNC_INF ((uint)0x00000000)
  245. #define SCC_GSMRL_RINV ((uint)0x02000000)
  246. #define SCC_GSMRL_TINV ((uint)0x01000000)
  247. #define SCC_GSMRL_TPL_128 ((uint)0x00c00000)
  248. #define SCC_GSMRL_TPL_64 ((uint)0x00a00000)
  249. #define SCC_GSMRL_TPL_48 ((uint)0x00800000)
  250. #define SCC_GSMRL_TPL_32 ((uint)0x00600000)
  251. #define SCC_GSMRL_TPL_16 ((uint)0x00400000)
  252. #define SCC_GSMRL_TPL_8 ((uint)0x00200000)
  253. #define SCC_GSMRL_TPL_NONE ((uint)0x00000000)
  254. #define SCC_GSMRL_TPP_ALL1 ((uint)0x00180000)
  255. #define SCC_GSMRL_TPP_01 ((uint)0x00100000)
  256. #define SCC_GSMRL_TPP_10 ((uint)0x00080000)
  257. #define SCC_GSMRL_TPP_ZEROS ((uint)0x00000000)
  258. #define SCC_GSMRL_TEND ((uint)0x00040000)
  259. #define SCC_GSMRL_TDCR_32 ((uint)0x00030000)
  260. #define SCC_GSMRL_TDCR_16 ((uint)0x00020000)
  261. #define SCC_GSMRL_TDCR_8 ((uint)0x00010000)
  262. #define SCC_GSMRL_TDCR_1 ((uint)0x00000000)
  263. #define SCC_GSMRL_RDCR_32 ((uint)0x0000c000)
  264. #define SCC_GSMRL_RDCR_16 ((uint)0x00008000)
  265. #define SCC_GSMRL_RDCR_8 ((uint)0x00004000)
  266. #define SCC_GSMRL_RDCR_1 ((uint)0x00000000)
  267. #define SCC_GSMRL_RENC_DFMAN ((uint)0x00003000)
  268. #define SCC_GSMRL_RENC_MANCH ((uint)0x00002000)
  269. #define SCC_GSMRL_RENC_FM0 ((uint)0x00001000)
  270. #define SCC_GSMRL_RENC_NRZI ((uint)0x00000800)
  271. #define SCC_GSMRL_RENC_NRZ ((uint)0x00000000)
  272. #define SCC_GSMRL_TENC_DFMAN ((uint)0x00000600)
  273. #define SCC_GSMRL_TENC_MANCH ((uint)0x00000400)
  274. #define SCC_GSMRL_TENC_FM0 ((uint)0x00000200)
  275. #define SCC_GSMRL_TENC_NRZI ((uint)0x00000100)
  276. #define SCC_GSMRL_TENC_NRZ ((uint)0x00000000)
  277. #define SCC_GSMRL_DIAG_LE ((uint)0x000000c0) /* Loop and echo */
  278. #define SCC_GSMRL_DIAG_ECHO ((uint)0x00000080)
  279. #define SCC_GSMRL_DIAG_LOOP ((uint)0x00000040)
  280. #define SCC_GSMRL_DIAG_NORM ((uint)0x00000000)
  281. #define SCC_GSMRL_ENR ((uint)0x00000020)
  282. #define SCC_GSMRL_ENT ((uint)0x00000010)
  283. #define SCC_GSMRL_MODE_ENET ((uint)0x0000000c)
  284. #define SCC_GSMRL_MODE_DDCMP ((uint)0x00000009)
  285. #define SCC_GSMRL_MODE_BISYNC ((uint)0x00000008)
  286. #define SCC_GSMRL_MODE_V14 ((uint)0x00000007)
  287. #define SCC_GSMRL_MODE_AHDLC ((uint)0x00000006)
  288. #define SCC_GSMRL_MODE_PROFIBUS ((uint)0x00000005)
  289. #define SCC_GSMRL_MODE_UART ((uint)0x00000004)
  290. #define SCC_GSMRL_MODE_SS7 ((uint)0x00000003)
  291. #define SCC_GSMRL_MODE_ATALK ((uint)0x00000002)
  292. #define SCC_GSMRL_MODE_HDLC ((uint)0x00000000)
  293. #define SCC_TODR_TOD ((ushort)0x8000)
  294. /* SCC Event and Mask register.
  295. */
  296. #define SCCM_TXE ((unsigned char)0x10)
  297. #define SCCM_BSY ((unsigned char)0x04)
  298. #define SCCM_TX ((unsigned char)0x02)
  299. #define SCCM_RX ((unsigned char)0x01)
  300. typedef struct scc_param {
  301. ushort scc_rbase; /* Rx Buffer descriptor base address */
  302. ushort scc_tbase; /* Tx Buffer descriptor base address */
  303. u_char scc_rfcr; /* Rx function code */
  304. u_char scc_tfcr; /* Tx function code */
  305. ushort scc_mrblr; /* Max receive buffer length */
  306. uint scc_rstate; /* Internal */
  307. uint scc_idp; /* Internal */
  308. ushort scc_rbptr; /* Internal */
  309. ushort scc_ibc; /* Internal */
  310. uint scc_rxtmp; /* Internal */
  311. uint scc_tstate; /* Internal */
  312. uint scc_tdp; /* Internal */
  313. ushort scc_tbptr; /* Internal */
  314. ushort scc_tbc; /* Internal */
  315. uint scc_txtmp; /* Internal */
  316. uint scc_rcrc; /* Internal */
  317. uint scc_tcrc; /* Internal */
  318. } sccp_t;
  319. /* CPM Ethernet through SCC1.
  320.  */
  321. typedef struct scc_enet {
  322. sccp_t sen_genscc;
  323. uint sen_cpres; /* Preset CRC */
  324. uint sen_cmask; /* Constant mask for CRC */
  325. uint sen_crcec; /* CRC Error counter */
  326. uint sen_alec; /* alignment error counter */
  327. uint sen_disfc; /* discard frame counter */
  328. ushort sen_pads; /* Tx short frame pad character */
  329. ushort sen_retlim; /* Retry limit threshold */
  330. ushort sen_retcnt; /* Retry limit counter */
  331. ushort sen_maxflr; /* maximum frame length register */
  332. ushort sen_minflr; /* minimum frame length register */
  333. ushort sen_maxd1; /* maximum DMA1 length */
  334. ushort sen_maxd2; /* maximum DMA2 length */
  335. ushort sen_maxd; /* Rx max DMA */
  336. ushort sen_dmacnt; /* Rx DMA counter */
  337. ushort sen_maxb; /* Max BD byte count */
  338. ushort sen_gaddr1; /* Group address filter */
  339. ushort sen_gaddr2;
  340. ushort sen_gaddr3;
  341. ushort sen_gaddr4;
  342. uint sen_tbuf0data0; /* Save area 0 - current frame */
  343. uint sen_tbuf0data1; /* Save area 1 - current frame */
  344. uint sen_tbuf0rba; /* Internal */
  345. uint sen_tbuf0crc; /* Internal */
  346. ushort sen_tbuf0bcnt; /* Internal */
  347. ushort sen_paddrh; /* physical address (MSB) */
  348. ushort sen_paddrm;
  349. ushort sen_paddrl; /* physical address (LSB) */
  350. ushort sen_pper; /* persistence */
  351. ushort sen_rfbdptr; /* Rx first BD pointer */
  352. ushort sen_tfbdptr; /* Tx first BD pointer */
  353. ushort sen_tlbdptr; /* Tx last BD pointer */
  354. uint sen_tbuf1data0; /* Save area 0 - current frame */
  355. uint sen_tbuf1data1; /* Save area 1 - current frame */
  356. uint sen_tbuf1rba; /* Internal */
  357. uint sen_tbuf1crc; /* Internal */
  358. ushort sen_tbuf1bcnt; /* Internal */
  359. ushort sen_txlen; /* Tx Frame length counter */
  360. ushort sen_iaddr1; /* Individual address filter */
  361. ushort sen_iaddr2;
  362. ushort sen_iaddr3;
  363. ushort sen_iaddr4;
  364. ushort sen_boffcnt; /* Backoff counter */
  365. /* NOTE: Some versions of the manual have the following items
  366.  * incorrectly documented.  Below is the proper order.
  367.  */
  368. ushort sen_taddrh; /* temp address (MSB) */
  369. ushort sen_taddrm;
  370. ushort sen_taddrl; /* temp address (LSB) */
  371. } scc_enet_t;
  372. /* SCC Event register as used by Ethernet.
  373. */
  374. #define SCCE_ENET_GRA ((ushort)0x0080) /* Graceful stop complete */
  375. #define SCCE_ENET_TXE ((ushort)0x0010) /* Transmit Error */
  376. #define SCCE_ENET_RXF ((ushort)0x0008) /* Full frame received */
  377. #define SCCE_ENET_BSY ((ushort)0x0004) /* All incoming buffers full */
  378. #define SCCE_ENET_TXB ((ushort)0x0002) /* A buffer was transmitted */
  379. #define SCCE_ENET_RXB ((ushort)0x0001) /* A buffer was received */
  380. /* SCC Mode Register (PSMR) as used by Ethernet.
  381. */
  382. #define SCC_PSMR_HBC ((ushort)0x8000) /* Enable heartbeat */
  383. #define SCC_PSMR_FC ((ushort)0x4000) /* Force collision */
  384. #define SCC_PSMR_RSH ((ushort)0x2000) /* Receive short frames */
  385. #define SCC_PSMR_IAM ((ushort)0x1000) /* Check individual hash */
  386. #define SCC_PSMR_ENCRC ((ushort)0x0800) /* Ethernet CRC mode */
  387. #define SCC_PSMR_PRO ((ushort)0x0200) /* Promiscuous mode */
  388. #define SCC_PSMR_BRO ((ushort)0x0100) /* Catch broadcast pkts */
  389. #define SCC_PSMR_SBT ((ushort)0x0080) /* Special backoff timer */
  390. #define SCC_PSMR_LPB ((ushort)0x0040) /* Set Loopback mode */
  391. #define SCC_PSMR_SIP ((ushort)0x0020) /* Sample Input Pins */
  392. #define SCC_PSMR_LCW ((ushort)0x0010) /* Late collision window */
  393. #define SCC_PSMR_NIB22 ((ushort)0x000a) /* Start frame search */
  394. #define SCC_PSMR_FDE ((ushort)0x0001) /* Full duplex enable */
  395. /* Buffer descriptor control/status used by Ethernet receive.
  396.  * Common to SCC and FCC.
  397.  */
  398. #define BD_ENET_RX_EMPTY ((ushort)0x8000)
  399. #define BD_ENET_RX_WRAP ((ushort)0x2000)
  400. #define BD_ENET_RX_INTR ((ushort)0x1000)
  401. #define BD_ENET_RX_LAST ((ushort)0x0800)
  402. #define BD_ENET_RX_FIRST ((ushort)0x0400)
  403. #define BD_ENET_RX_MISS ((ushort)0x0100)
  404. #define BD_ENET_RX_BC ((ushort)0x0080) /* FCC Only */
  405. #define BD_ENET_RX_MC ((ushort)0x0040) /* FCC Only */
  406. #define BD_ENET_RX_LG ((ushort)0x0020)
  407. #define BD_ENET_RX_NO ((ushort)0x0010)
  408. #define BD_ENET_RX_SH ((ushort)0x0008)
  409. #define BD_ENET_RX_CR ((ushort)0x0004)
  410. #define BD_ENET_RX_OV ((ushort)0x0002)
  411. #define BD_ENET_RX_CL ((ushort)0x0001)
  412. #define BD_ENET_RX_STATS ((ushort)0x01ff) /* All status bits */
  413. /* Buffer descriptor control/status used by Ethernet transmit.
  414.  * Common to SCC and FCC.
  415.  */
  416. #define BD_ENET_TX_READY ((ushort)0x8000)
  417. #define BD_ENET_TX_PAD ((ushort)0x4000)
  418. #define BD_ENET_TX_WRAP ((ushort)0x2000)
  419. #define BD_ENET_TX_INTR ((ushort)0x1000)
  420. #define BD_ENET_TX_LAST ((ushort)0x0800)
  421. #define BD_ENET_TX_TC ((ushort)0x0400)
  422. #define BD_ENET_TX_DEF ((ushort)0x0200)
  423. #define BD_ENET_TX_HB ((ushort)0x0100)
  424. #define BD_ENET_TX_LC ((ushort)0x0080)
  425. #define BD_ENET_TX_RL ((ushort)0x0040)
  426. #define BD_ENET_TX_RCMASK ((ushort)0x003c)
  427. #define BD_ENET_TX_UN ((ushort)0x0002)
  428. #define BD_ENET_TX_CSL ((ushort)0x0001)
  429. #define BD_ENET_TX_STATS ((ushort)0x03ff) /* All status bits */
  430. /* SCC as UART
  431. */
  432. typedef struct scc_uart {
  433. sccp_t scc_genscc;
  434. uint scc_res1; /* Reserved */
  435. uint scc_res2; /* Reserved */
  436. ushort scc_maxidl; /* Maximum idle chars */
  437. ushort scc_idlc; /* temp idle counter */
  438. ushort scc_brkcr; /* Break count register */
  439. ushort scc_parec; /* receive parity error counter */
  440. ushort scc_frmec; /* receive framing error counter */
  441. ushort scc_nosec; /* receive noise counter */
  442. ushort scc_brkec; /* receive break condition counter */
  443. ushort scc_brkln; /* last received break length */
  444. ushort scc_uaddr1; /* UART address character 1 */
  445. ushort scc_uaddr2; /* UART address character 2 */
  446. ushort scc_rtemp; /* Temp storage */
  447. ushort scc_toseq; /* Transmit out of sequence char */
  448. ushort scc_char1; /* control character 1 */
  449. ushort scc_char2; /* control character 2 */
  450. ushort scc_char3; /* control character 3 */
  451. ushort scc_char4; /* control character 4 */
  452. ushort scc_char5; /* control character 5 */
  453. ushort scc_char6; /* control character 6 */
  454. ushort scc_char7; /* control character 7 */
  455. ushort scc_char8; /* control character 8 */
  456. ushort scc_rccm; /* receive control character mask */
  457. ushort scc_rccr; /* receive control character register */
  458. ushort scc_rlbc; /* receive last break character */
  459. } scc_uart_t;
  460. /* SCC Event and Mask registers when it is used as a UART.
  461. */
  462. #define UART_SCCM_GLR ((ushort)0x1000)
  463. #define UART_SCCM_GLT ((ushort)0x0800)
  464. #define UART_SCCM_AB ((ushort)0x0200)
  465. #define UART_SCCM_IDL ((ushort)0x0100)
  466. #define UART_SCCM_GRA ((ushort)0x0080)
  467. #define UART_SCCM_BRKE ((ushort)0x0040)
  468. #define UART_SCCM_BRKS ((ushort)0x0020)
  469. #define UART_SCCM_CCR ((ushort)0x0008)
  470. #define UART_SCCM_BSY ((ushort)0x0004)
  471. #define UART_SCCM_TX ((ushort)0x0002)
  472. #define UART_SCCM_RX ((ushort)0x0001)
  473. /* The SCC PMSR when used as a UART.
  474. */
  475. #define SCU_PMSR_FLC ((ushort)0x8000)
  476. #define SCU_PMSR_SL ((ushort)0x4000)
  477. #define SCU_PMSR_CL ((ushort)0x3000)
  478. #define SCU_PMSR_UM ((ushort)0x0c00)
  479. #define SCU_PMSR_FRZ ((ushort)0x0200)
  480. #define SCU_PMSR_RZS ((ushort)0x0100)
  481. #define SCU_PMSR_SYN ((ushort)0x0080)
  482. #define SCU_PMSR_DRT ((ushort)0x0040)
  483. #define SCU_PMSR_PEN ((ushort)0x0010)
  484. #define SCU_PMSR_RPM ((ushort)0x000c)
  485. #define SCU_PMSR_REVP ((ushort)0x0008)
  486. #define SCU_PMSR_TPM ((ushort)0x0003)
  487. #define SCU_PMSR_TEVP ((ushort)0x0003)
  488. /* CPM Transparent mode SCC.
  489.  */
  490. typedef struct scc_trans {
  491. sccp_t st_genscc;
  492. uint st_cpres; /* Preset CRC */
  493. uint st_cmask; /* Constant mask for CRC */
  494. } scc_trans_t;
  495. #define BD_SCC_TX_LAST ((ushort)0x0800)
  496. /* How about some FCCs.....
  497. */
  498. #define FCC_GFMR_DIAG_NORM ((uint)0x00000000)
  499. #define FCC_GFMR_DIAG_LE ((uint)0x40000000)
  500. #define FCC_GFMR_DIAG_AE ((uint)0x80000000)
  501. #define FCC_GFMR_DIAG_ALE ((uint)0xc0000000)
  502. #define FCC_GFMR_TCI ((uint)0x20000000)
  503. #define FCC_GFMR_TRX ((uint)0x10000000)
  504. #define FCC_GFMR_TTX ((uint)0x08000000)
  505. #define FCC_GFMR_TTX ((uint)0x08000000)
  506. #define FCC_GFMR_CDP ((uint)0x04000000)
  507. #define FCC_GFMR_CTSP ((uint)0x02000000)
  508. #define FCC_GFMR_CDS ((uint)0x01000000)
  509. #define FCC_GFMR_CTSS ((uint)0x00800000)
  510. #define FCC_GFMR_SYNL_NONE ((uint)0x00000000)
  511. #define FCC_GFMR_SYNL_AUTO ((uint)0x00004000)
  512. #define FCC_GFMR_SYNL_8 ((uint)0x00008000)
  513. #define FCC_GFMR_SYNL_16 ((uint)0x0000c000)
  514. #define FCC_GFMR_RTSM ((uint)0x00002000)
  515. #define FCC_GFMR_RENC_NRZ ((uint)0x00000000)
  516. #define FCC_GFMR_RENC_NRZI ((uint)0x00000800)
  517. #define FCC_GFMR_REVD ((uint)0x00000400)
  518. #define FCC_GFMR_TENC_NRZ ((uint)0x00000000)
  519. #define FCC_GFMR_TENC_NRZI ((uint)0x00000100)
  520. #define FCC_GFMR_TCRC_16 ((uint)0x00000000)
  521. #define FCC_GFMR_TCRC_32 ((uint)0x00000080)
  522. #define FCC_GFMR_ENR ((uint)0x00000020)
  523. #define FCC_GFMR_ENT ((uint)0x00000010)
  524. #define FCC_GFMR_MODE_ENET ((uint)0x0000000c)
  525. #define FCC_GFMR_MODE_ATM ((uint)0x0000000a)
  526. #define FCC_GFMR_MODE_HDLC ((uint)0x00000000)
  527. /* Generic FCC parameter ram.
  528. */
  529. typedef struct fcc_param {
  530. ushort fcc_riptr; /* Rx Internal temp pointer */
  531. ushort fcc_tiptr; /* Tx Internal temp pointer */
  532. ushort fcc_res1;
  533. ushort fcc_mrblr; /* Max receive buffer length, mod 32 bytes */
  534. uint fcc_rstate; /* Upper byte is Func code, must be set */
  535. uint fcc_rbase; /* Receive BD base */
  536. ushort fcc_rbdstat; /* RxBD status */
  537. ushort fcc_rbdlen; /* RxBD down counter */
  538. uint fcc_rdptr; /* RxBD internal data pointer */
  539. uint fcc_tstate; /* Upper byte is Func code, must be set */
  540. uint fcc_tbase; /* Transmit BD base */
  541. ushort fcc_tbdstat; /* TxBD status */
  542. ushort fcc_tbdlen; /* TxBD down counter */
  543. uint fcc_tdptr; /* TxBD internal data pointer */
  544. uint fcc_rbptr; /* Rx BD Internal buf pointer */
  545. uint fcc_tbptr; /* Tx BD Internal buf pointer */
  546. uint fcc_rcrc; /* Rx temp CRC */
  547. uint fcc_res2;
  548. uint fcc_tcrc; /* Tx temp CRC */
  549. } fccp_t;
  550. /* Ethernet controller through FCC.
  551. */
  552. typedef struct fcc_enet {
  553. fccp_t fen_genfcc;
  554. uint fen_statbuf; /* Internal status buffer */
  555. uint fen_camptr; /* CAM address */
  556. uint fen_cmask; /* Constant mask for CRC */
  557. uint fen_cpres; /* Preset CRC */
  558. uint fen_crcec; /* CRC Error counter */
  559. uint fen_alec; /* alignment error counter */
  560. uint fen_disfc; /* discard frame counter */
  561. ushort fen_retlim; /* Retry limit */
  562. ushort fen_retcnt; /* Retry counter */
  563. ushort fen_pper; /* Persistence */
  564. ushort fen_boffcnt; /* backoff counter */
  565. uint fen_gaddrh; /* Group address filter, high 32-bits */
  566. uint fen_gaddrl; /* Group address filter, low 32-bits */
  567. ushort fen_tfcstat; /* out of sequence TxBD */
  568. ushort fen_tfclen;
  569. uint fen_tfcptr;
  570. ushort fen_mflr; /* Maximum frame length (1518) */
  571. ushort fen_paddrh; /* MAC address */
  572. ushort fen_paddrm;
  573. ushort fen_paddrl;
  574. ushort fen_ibdcount; /* Internal BD counter */
  575. ushort fen_idbstart; /* Internal BD start pointer */
  576. ushort fen_ibdend; /* Internal BD end pointer */
  577. ushort fen_txlen; /* Internal Tx frame length counter */
  578. uint fen_ibdbase[8]; /* Internal use */
  579. uint fen_iaddrh; /* Individual address filter */
  580. uint fen_iaddrl;
  581. ushort fen_minflr; /* Minimum frame length (64) */
  582. ushort fen_taddrh; /* Filter transfer MAC address */
  583. ushort fen_taddrm;
  584. ushort fen_taddrl;
  585. ushort fen_padptr; /* Pointer to pad byte buffer */
  586. ushort fen_cftype; /* control frame type */
  587. ushort fen_cfrange; /* control frame range */
  588. ushort fen_maxb; /* maximum BD count */
  589. ushort fen_maxd1; /* Max DMA1 length (1520) */
  590. ushort fen_maxd2; /* Max DMA2 length (1520) */
  591. ushort fen_maxd; /* internal max DMA count */
  592. ushort fen_dmacnt; /* internal DMA counter */
  593. uint fen_octc; /* Total octect counter */
  594. uint fen_colc; /* Total collision counter */
  595. uint fen_broc; /* Total broadcast packet counter */
  596. uint fen_mulc; /* Total multicast packet count */
  597. uint fen_uspc; /* Total packets < 64 bytes */
  598. uint fen_frgc; /* Total packets < 64 bytes with errors */
  599. uint fen_ospc; /* Total packets > 1518 */
  600. uint fen_jbrc; /* Total packets > 1518 with errors */
  601. uint fen_p64c; /* Total packets == 64 bytes */
  602. uint fen_p65c; /* Total packets 64 < bytes <= 127 */
  603. uint fen_p128c; /* Total packets 127 < bytes <= 255 */
  604. uint fen_p256c; /* Total packets 256 < bytes <= 511 */
  605. uint fen_p512c; /* Total packets 512 < bytes <= 1023 */
  606. uint fen_p1024c; /* Total packets 1024 < bytes <= 1518 */
  607. uint fen_cambuf; /* Internal CAM buffer poiner */
  608. ushort fen_rfthr; /* Received frames threshold */
  609. ushort fen_rfcnt; /* Received frames count */
  610. } fcc_enet_t;
  611. /* FCC Event/Mask register as used by Ethernet.
  612. */
  613. #define FCC_ENET_GRA ((ushort)0x0080) /* Graceful stop complete */
  614. #define FCC_ENET_RXC ((ushort)0x0040) /* Control Frame Received */
  615. #define FCC_ENET_TXC ((ushort)0x0020) /* Out of seq. Tx sent */
  616. #define FCC_ENET_TXE ((ushort)0x0010) /* Transmit Error */
  617. #define FCC_ENET_RXF ((ushort)0x0008) /* Full frame received */
  618. #define FCC_ENET_BSY ((ushort)0x0004) /* Busy.  Rx Frame dropped */
  619. #define FCC_ENET_TXB ((ushort)0x0002) /* A buffer was transmitted */
  620. #define FCC_ENET_RXB ((ushort)0x0001) /* A buffer was received */
  621. /* FCC Mode Register (FPSMR) as used by Ethernet.
  622. */
  623. #define FCC_PSMR_HBC ((uint)0x80000000) /* Enable heartbeat */
  624. #define FCC_PSMR_FC ((uint)0x40000000) /* Force Collision */
  625. #define FCC_PSMR_SBT ((uint)0x20000000) /* Stop backoff timer */
  626. #define FCC_PSMR_LPB ((uint)0x10000000) /* Local protect. 1 = FDX */
  627. #define FCC_PSMR_LCW ((uint)0x08000000) /* Late collision select */
  628. #define FCC_PSMR_FDE ((uint)0x04000000) /* Full Duplex Enable */
  629. #define FCC_PSMR_MON ((uint)0x02000000) /* RMON Enable */
  630. #define FCC_PSMR_PRO ((uint)0x00400000) /* Promiscuous Enable */
  631. #define FCC_PSMR_FCE ((uint)0x00200000) /* Flow Control Enable */
  632. #define FCC_PSMR_RSH ((uint)0x00100000) /* Receive Short Frames */
  633. #define FCC_PSMR_CAM ((uint)0x00000400) /* CAM enable */
  634. #define FCC_PSMR_BRO ((uint)0x00000200) /* Broadcast pkt discard */
  635. #define FCC_PSMR_ENCRC ((uint)0x00000080) /* Use 32-bit CRC */
  636. /* IIC parameter RAM.
  637. */
  638. typedef struct iic {
  639. ushort iic_rbase; /* Rx Buffer descriptor base address */
  640. ushort iic_tbase; /* Tx Buffer descriptor base address */
  641. u_char iic_rfcr; /* Rx function code */
  642. u_char iic_tfcr; /* Tx function code */
  643. ushort iic_mrblr; /* Max receive buffer length */
  644. uint iic_rstate; /* Internal */
  645. uint iic_rdp; /* Internal */
  646. ushort iic_rbptr; /* Internal */
  647. ushort iic_rbc; /* Internal */
  648. uint iic_rxtmp; /* Internal */
  649. uint iic_tstate; /* Internal */
  650. uint iic_tdp; /* Internal */
  651. ushort iic_tbptr; /* Internal */
  652. ushort iic_tbc; /* Internal */
  653. uint iic_txtmp; /* Internal */
  654. } iic_t;
  655. #define BD_IIC_START ((ushort)0x0400)
  656. #endif /* __CPM_82XX__ */
  657. #endif /* __KERNEL__ */