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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.commproc.h 1.16 09/27/01 12:41:09 trini
  3.  */
  4. /*
  5.  * MPC8xx Communication Processor Module.
  6.  * Copyright (c) 1997 Dan Malek (dmalek@jlc.net)
  7.  *
  8.  * This file contains structures and information for the communication
  9.  * processor channels.  Some CPM control and status is available
  10.  * throught the MPC8xx internal memory map.  See immap.h for details.
  11.  * This file only contains what I need for the moment, not the total
  12.  * CPM capabilities.  I (or someone else) will add definitions as they
  13.  * are needed.  -- Dan
  14.  *
  15.  * On the MBX board, EPPC-Bug loads CPM microcode into the first 512
  16.  * bytes of the DP RAM and relocates the I2C parameter area to the
  17.  * IDMA1 space.  The remaining DP RAM is available for buffer descriptors
  18.  * or other use.
  19.  */
  20. #ifndef __CPM_8XX__
  21. #define __CPM_8XX__
  22. #include <linux/config.h>
  23. #include <asm/8xx_immap.h>
  24. /* CPM Command register.
  25. */
  26. #define CPM_CR_RST ((ushort)0x8000)
  27. #define CPM_CR_OPCODE ((ushort)0x0f00)
  28. #define CPM_CR_CHAN ((ushort)0x00f0)
  29. #define CPM_CR_FLG ((ushort)0x0001)
  30. /* Some commands (there are more...later)
  31. */
  32. #define CPM_CR_INIT_TRX ((ushort)0x0000)
  33. #define CPM_CR_INIT_RX ((ushort)0x0001)
  34. #define CPM_CR_INIT_TX ((ushort)0x0002)
  35. #define CPM_CR_HUNT_MODE ((ushort)0x0003)
  36. #define CPM_CR_STOP_TX ((ushort)0x0004)
  37. #define CPM_CR_RESTART_TX ((ushort)0x0006)
  38. #define CPM_CR_SET_GADDR ((ushort)0x0008)
  39. /* Channel numbers.
  40. */
  41. #define CPM_CR_CH_SCC1 ((ushort)0x0000)
  42. #define CPM_CR_CH_I2C ((ushort)0x0001) /* I2C and IDMA1 */
  43. #define CPM_CR_CH_SCC2 ((ushort)0x0004)
  44. #define CPM_CR_CH_SPI ((ushort)0x0005) /* SPI / IDMA2 / Timers */
  45. #define CPM_CR_CH_SCC3 ((ushort)0x0008)
  46. #define CPM_CR_CH_SMC1 ((ushort)0x0009) /* SMC1 / DSP1 */
  47. #define CPM_CR_CH_SCC4 ((ushort)0x000c)
  48. #define CPM_CR_CH_SMC2 ((ushort)0x000d) /* SMC2 / DSP2 */
  49. #define mk_cr_cmd(CH, CMD) ((CMD << 8) | (CH << 4))
  50. /* The dual ported RAM is multi-functional.  Some areas can be (and are
  51.  * being) used for microcode.  There is an area that can only be used
  52.  * as data ram for buffer descriptors, which is all we use right now.
  53.  * Currently the first 512 and last 256 bytes are used for microcode.
  54.  */
  55. #define CPM_DATAONLY_BASE ((uint)0x0800)
  56. #define CPM_DATAONLY_SIZE ((uint)0x0700)
  57. #define CPM_DP_NOSPACE ((uint)0x7fffffff)
  58. /* Export the base address of the communication processor registers
  59.  * and dual port ram.
  60.  */
  61. extern cpm8xx_t *cpmp; /* Pointer to comm processor */
  62. uint m8xx_cpm_dpalloc(uint size);
  63. uint m8xx_cpm_hostalloc(uint size);
  64. void m8xx_cpm_setbrg(uint brg, uint rate);
  65. /* Buffer descriptors used by many of the CPM protocols.
  66. */
  67. typedef struct cpm_buf_desc {
  68. ushort cbd_sc; /* Status and Control */
  69. ushort cbd_datlen; /* Data length in buffer */
  70. uint cbd_bufaddr; /* Buffer address in host memory */
  71. } cbd_t;
  72. #define BD_SC_EMPTY ((ushort)0x8000) /* Receive is empty */
  73. #define BD_SC_READY ((ushort)0x8000) /* Transmit is ready */
  74. #define BD_SC_WRAP ((ushort)0x2000) /* Last buffer descriptor */
  75. #define BD_SC_INTRPT ((ushort)0x1000) /* Interrupt on change */
  76. #define BD_SC_LAST ((ushort)0x0800) /* Last buffer in frame */
  77. #define BD_SC_CM ((ushort)0x0200) /* Continous mode */
  78. #define BD_SC_ID ((ushort)0x0100) /* Rec'd too many idles */
  79. #define BD_SC_P ((ushort)0x0100) /* xmt preamble */
  80. #define BD_SC_BR ((ushort)0x0020) /* Break received */
  81. #define BD_SC_FR ((ushort)0x0010) /* Framing error */
  82. #define BD_SC_PR ((ushort)0x0008) /* Parity error */
  83. #define BD_SC_OV ((ushort)0x0002) /* Overrun */
  84. #define BD_SC_CD ((ushort)0x0001) /* ?? */
  85. /* Parameter RAM offsets.
  86. */
  87. #define PROFF_SCC1 ((uint)0x0000)
  88. #define PROFF_IIC ((uint)0x0080)
  89. #define PROFF_SCC2 ((uint)0x0100)
  90. #define PROFF_SCC3 ((uint)0x0200)
  91. #define PROFF_SMC1 ((uint)0x0280)
  92. #define PROFF_SCC4 ((uint)0x0300)
  93. #define PROFF_SMC2 ((uint)0x0380)
  94. /* Define enough so I can at least use the serial port as a UART.
  95.  * The MBX uses SMC1 as the host serial port.
  96.  */
  97. typedef struct smc_uart {
  98. ushort smc_rbase; /* Rx Buffer descriptor base address */
  99. ushort smc_tbase; /* Tx Buffer descriptor base address */
  100. u_char smc_rfcr; /* Rx function code */
  101. u_char smc_tfcr; /* Tx function code */
  102. ushort smc_mrblr; /* Max receive buffer length */
  103. uint smc_rstate; /* Internal */
  104. uint smc_idp; /* Internal */
  105. ushort smc_rbptr; /* Internal */
  106. ushort smc_ibc; /* Internal */
  107. uint smc_rxtmp; /* Internal */
  108. uint smc_tstate; /* Internal */
  109. uint smc_tdp; /* Internal */
  110. ushort smc_tbptr; /* Internal */
  111. ushort smc_tbc; /* Internal */
  112. uint smc_txtmp; /* Internal */
  113. ushort smc_maxidl; /* Maximum idle characters */
  114. ushort smc_tmpidl; /* Temporary idle counter */
  115. ushort smc_brklen; /* Last received break length */
  116. ushort smc_brkec; /* rcv'd break condition counter */
  117. ushort smc_brkcr; /* xmt break count register */
  118. ushort smc_rmask; /* Temporary bit mask */
  119. } smc_uart_t;
  120. /* Function code bits.
  121. */
  122. #define SMC_EB ((u_char)0x10) /* Set big endian byte order */
  123. /* SMC uart mode register.
  124. */
  125. #define SMCMR_REN ((ushort)0x0001)
  126. #define SMCMR_TEN ((ushort)0x0002)
  127. #define SMCMR_DM ((ushort)0x000c)
  128. #define SMCMR_SM_GCI ((ushort)0x0000)
  129. #define SMCMR_SM_UART ((ushort)0x0020)
  130. #define SMCMR_SM_TRANS ((ushort)0x0030)
  131. #define SMCMR_SM_MASK ((ushort)0x0030)
  132. #define SMCMR_PM_EVEN ((ushort)0x0100) /* Even parity, else odd */
  133. #define SMCMR_REVD SMCMR_PM_EVEN
  134. #define SMCMR_PEN ((ushort)0x0200) /* Parity enable */
  135. #define SMCMR_BS SMCMR_PEN
  136. #define SMCMR_SL ((ushort)0x0400) /* Two stops, else one */
  137. #define SMCR_CLEN_MASK ((ushort)0x7800) /* Character length */
  138. #define smcr_mk_clen(C) (((C) << 11) & SMCR_CLEN_MASK)
  139. /* SMC2 as Centronics parallel printer.  It is half duplex, in that
  140.  * it can only receive or transmit.  The parameter ram values for
  141.  * each direction are either unique or properly overlap, so we can
  142.  * include them in one structure.
  143.  */
  144. typedef struct smc_centronics {
  145. ushort scent_rbase;
  146. ushort scent_tbase;
  147. u_char scent_cfcr;
  148. u_char scent_smask;
  149. ushort scent_mrblr;
  150. uint scent_rstate;
  151. uint scent_r_ptr;
  152. ushort scent_rbptr;
  153. ushort scent_r_cnt;
  154. uint scent_rtemp;
  155. uint scent_tstate;
  156. uint scent_t_ptr;
  157. ushort scent_tbptr;
  158. ushort scent_t_cnt;
  159. uint scent_ttemp;
  160. ushort scent_max_sl;
  161. ushort scent_sl_cnt;
  162. ushort scent_character1;
  163. ushort scent_character2;
  164. ushort scent_character3;
  165. ushort scent_character4;
  166. ushort scent_character5;
  167. ushort scent_character6;
  168. ushort scent_character7;
  169. ushort scent_character8;
  170. ushort scent_rccm;
  171. ushort scent_rccr;
  172. } smc_cent_t;
  173. /* Centronics Status Mask Register.
  174. */
  175. #define SMC_CENT_F ((u_char)0x08)
  176. #define SMC_CENT_PE ((u_char)0x04)
  177. #define SMC_CENT_S ((u_char)0x02)
  178. /* SMC Event and Mask register.
  179. */
  180. #define SMCM_BRKE ((unsigned char)0x40) /* When in UART Mode */
  181. #define SMCM_BRK ((unsigned char)0x10) /* When in UART Mode */
  182. #define SMCM_TXE ((unsigned char)0x10) /* When in Transparent Mode */
  183. #define SMCM_BSY ((unsigned char)0x04)
  184. #define SMCM_TX ((unsigned char)0x02)
  185. #define SMCM_RX ((unsigned char)0x01)
  186. /* Baud rate generators.
  187. */
  188. #define CPM_BRG_RST ((uint)0x00020000)
  189. #define CPM_BRG_EN ((uint)0x00010000)
  190. #define CPM_BRG_EXTC_INT ((uint)0x00000000)
  191. #define CPM_BRG_EXTC_CLK2 ((uint)0x00004000)
  192. #define CPM_BRG_EXTC_CLK6 ((uint)0x00008000)
  193. #define CPM_BRG_ATB ((uint)0x00002000)
  194. #define CPM_BRG_CD_MASK ((uint)0x00001ffe)
  195. #define CPM_BRG_DIV16 ((uint)0x00000001)
  196. /* SCCs.
  197. */
  198. #define SCC_GSMRH_IRP ((uint)0x00040000)
  199. #define SCC_GSMRH_GDE ((uint)0x00010000)
  200. #define SCC_GSMRH_TCRC_CCITT ((uint)0x00008000)
  201. #define SCC_GSMRH_TCRC_BISYNC ((uint)0x00004000)
  202. #define SCC_GSMRH_TCRC_HDLC ((uint)0x00000000)
  203. #define SCC_GSMRH_REVD ((uint)0x00002000)
  204. #define SCC_GSMRH_TRX ((uint)0x00001000)
  205. #define SCC_GSMRH_TTX ((uint)0x00000800)
  206. #define SCC_GSMRH_CDP ((uint)0x00000400)
  207. #define SCC_GSMRH_CTSP ((uint)0x00000200)
  208. #define SCC_GSMRH_CDS ((uint)0x00000100)
  209. #define SCC_GSMRH_CTSS ((uint)0x00000080)
  210. #define SCC_GSMRH_TFL ((uint)0x00000040)
  211. #define SCC_GSMRH_RFW ((uint)0x00000020)
  212. #define SCC_GSMRH_TXSY ((uint)0x00000010)
  213. #define SCC_GSMRH_SYNL16 ((uint)0x0000000c)
  214. #define SCC_GSMRH_SYNL8 ((uint)0x00000008)
  215. #define SCC_GSMRH_SYNL4 ((uint)0x00000004)
  216. #define SCC_GSMRH_RTSM ((uint)0x00000002)
  217. #define SCC_GSMRH_RSYN ((uint)0x00000001)
  218. #define SCC_GSMRL_SIR ((uint)0x80000000) /* SCC2 only */
  219. #define SCC_GSMRL_EDGE_NONE ((uint)0x60000000)
  220. #define SCC_GSMRL_EDGE_NEG ((uint)0x40000000)
  221. #define SCC_GSMRL_EDGE_POS ((uint)0x20000000)
  222. #define SCC_GSMRL_EDGE_BOTH ((uint)0x00000000)
  223. #define SCC_GSMRL_TCI ((uint)0x10000000)
  224. #define SCC_GSMRL_TSNC_3 ((uint)0x0c000000)
  225. #define SCC_GSMRL_TSNC_4 ((uint)0x08000000)
  226. #define SCC_GSMRL_TSNC_14 ((uint)0x04000000)
  227. #define SCC_GSMRL_TSNC_INF ((uint)0x00000000)
  228. #define SCC_GSMRL_RINV ((uint)0x02000000)
  229. #define SCC_GSMRL_TINV ((uint)0x01000000)
  230. #define SCC_GSMRL_TPL_128 ((uint)0x00c00000)
  231. #define SCC_GSMRL_TPL_64 ((uint)0x00a00000)
  232. #define SCC_GSMRL_TPL_48 ((uint)0x00800000)
  233. #define SCC_GSMRL_TPL_32 ((uint)0x00600000)
  234. #define SCC_GSMRL_TPL_16 ((uint)0x00400000)
  235. #define SCC_GSMRL_TPL_8 ((uint)0x00200000)
  236. #define SCC_GSMRL_TPL_NONE ((uint)0x00000000)
  237. #define SCC_GSMRL_TPP_ALL1 ((uint)0x00180000)
  238. #define SCC_GSMRL_TPP_01 ((uint)0x00100000)
  239. #define SCC_GSMRL_TPP_10 ((uint)0x00080000)
  240. #define SCC_GSMRL_TPP_ZEROS ((uint)0x00000000)
  241. #define SCC_GSMRL_TEND ((uint)0x00040000)
  242. #define SCC_GSMRL_TDCR_32 ((uint)0x00030000)
  243. #define SCC_GSMRL_TDCR_16 ((uint)0x00020000)
  244. #define SCC_GSMRL_TDCR_8 ((uint)0x00010000)
  245. #define SCC_GSMRL_TDCR_1 ((uint)0x00000000)
  246. #define SCC_GSMRL_RDCR_32 ((uint)0x0000c000)
  247. #define SCC_GSMRL_RDCR_16 ((uint)0x00008000)
  248. #define SCC_GSMRL_RDCR_8 ((uint)0x00004000)
  249. #define SCC_GSMRL_RDCR_1 ((uint)0x00000000)
  250. #define SCC_GSMRL_RENC_DFMAN ((uint)0x00003000)
  251. #define SCC_GSMRL_RENC_MANCH ((uint)0x00002000)
  252. #define SCC_GSMRL_RENC_FM0 ((uint)0x00001000)
  253. #define SCC_GSMRL_RENC_NRZI ((uint)0x00000800)
  254. #define SCC_GSMRL_RENC_NRZ ((uint)0x00000000)
  255. #define SCC_GSMRL_TENC_DFMAN ((uint)0x00000600)
  256. #define SCC_GSMRL_TENC_MANCH ((uint)0x00000400)
  257. #define SCC_GSMRL_TENC_FM0 ((uint)0x00000200)
  258. #define SCC_GSMRL_TENC_NRZI ((uint)0x00000100)
  259. #define SCC_GSMRL_TENC_NRZ ((uint)0x00000000)
  260. #define SCC_GSMRL_DIAG_LE ((uint)0x000000c0) /* Loop and echo */
  261. #define SCC_GSMRL_DIAG_ECHO ((uint)0x00000080)
  262. #define SCC_GSMRL_DIAG_LOOP ((uint)0x00000040)
  263. #define SCC_GSMRL_DIAG_NORM ((uint)0x00000000)
  264. #define SCC_GSMRL_ENR ((uint)0x00000020)
  265. #define SCC_GSMRL_ENT ((uint)0x00000010)
  266. #define SCC_GSMRL_MODE_ENET ((uint)0x0000000c)
  267. #define SCC_GSMRL_MODE_DDCMP ((uint)0x00000009)
  268. #define SCC_GSMRL_MODE_BISYNC ((uint)0x00000008)
  269. #define SCC_GSMRL_MODE_V14 ((uint)0x00000007)
  270. #define SCC_GSMRL_MODE_AHDLC ((uint)0x00000006)
  271. #define SCC_GSMRL_MODE_PROFIBUS ((uint)0x00000005)
  272. #define SCC_GSMRL_MODE_UART ((uint)0x00000004)
  273. #define SCC_GSMRL_MODE_SS7 ((uint)0x00000003)
  274. #define SCC_GSMRL_MODE_ATALK ((uint)0x00000002)
  275. #define SCC_GSMRL_MODE_HDLC ((uint)0x00000000)
  276. #define SCC_TODR_TOD ((ushort)0x8000)
  277. /* SCC Event and Mask register.
  278. */
  279. #define SCCM_TXE ((unsigned char)0x10)
  280. #define SCCM_BSY ((unsigned char)0x04)
  281. #define SCCM_TX ((unsigned char)0x02)
  282. #define SCCM_RX ((unsigned char)0x01)
  283. typedef struct scc_param {
  284. ushort scc_rbase; /* Rx Buffer descriptor base address */
  285. ushort scc_tbase; /* Tx Buffer descriptor base address */
  286. u_char scc_rfcr; /* Rx function code */
  287. u_char scc_tfcr; /* Tx function code */
  288. ushort scc_mrblr; /* Max receive buffer length */
  289. uint scc_rstate; /* Internal */
  290. uint scc_idp; /* Internal */
  291. ushort scc_rbptr; /* Internal */
  292. ushort scc_ibc; /* Internal */
  293. uint scc_rxtmp; /* Internal */
  294. uint scc_tstate; /* Internal */
  295. uint scc_tdp; /* Internal */
  296. ushort scc_tbptr; /* Internal */
  297. ushort scc_tbc; /* Internal */
  298. uint scc_txtmp; /* Internal */
  299. uint scc_rcrc; /* Internal */
  300. uint scc_tcrc; /* Internal */
  301. } sccp_t;
  302. /* Function code bits.
  303. */
  304. #define SCC_EB ((u_char)0x10) /* Set big endian byte order */
  305. /* CPM Ethernet through SCCx.
  306.  */
  307. typedef struct scc_enet {
  308. sccp_t sen_genscc;
  309. uint sen_cpres; /* Preset CRC */
  310. uint sen_cmask; /* Constant mask for CRC */
  311. uint sen_crcec; /* CRC Error counter */
  312. uint sen_alec; /* alignment error counter */
  313. uint sen_disfc; /* discard frame counter */
  314. ushort sen_pads; /* Tx short frame pad character */
  315. ushort sen_retlim; /* Retry limit threshold */
  316. ushort sen_retcnt; /* Retry limit counter */
  317. ushort sen_maxflr; /* maximum frame length register */
  318. ushort sen_minflr; /* minimum frame length register */
  319. ushort sen_maxd1; /* maximum DMA1 length */
  320. ushort sen_maxd2; /* maximum DMA2 length */
  321. ushort sen_maxd; /* Rx max DMA */
  322. ushort sen_dmacnt; /* Rx DMA counter */
  323. ushort sen_maxb; /* Max BD byte count */
  324. ushort sen_gaddr1; /* Group address filter */
  325. ushort sen_gaddr2;
  326. ushort sen_gaddr3;
  327. ushort sen_gaddr4;
  328. uint sen_tbuf0data0; /* Save area 0 - current frame */
  329. uint sen_tbuf0data1; /* Save area 1 - current frame */
  330. uint sen_tbuf0rba; /* Internal */
  331. uint sen_tbuf0crc; /* Internal */
  332. ushort sen_tbuf0bcnt; /* Internal */
  333. ushort sen_paddrh; /* physical address (MSB) */
  334. ushort sen_paddrm;
  335. ushort sen_paddrl; /* physical address (LSB) */
  336. ushort sen_pper; /* persistence */
  337. ushort sen_rfbdptr; /* Rx first BD pointer */
  338. ushort sen_tfbdptr; /* Tx first BD pointer */
  339. ushort sen_tlbdptr; /* Tx last BD pointer */
  340. uint sen_tbuf1data0; /* Save area 0 - current frame */
  341. uint sen_tbuf1data1; /* Save area 1 - current frame */
  342. uint sen_tbuf1rba; /* Internal */
  343. uint sen_tbuf1crc; /* Internal */
  344. ushort sen_tbuf1bcnt; /* Internal */
  345. ushort sen_txlen; /* Tx Frame length counter */
  346. ushort sen_iaddr1; /* Individual address filter */
  347. ushort sen_iaddr2;
  348. ushort sen_iaddr3;
  349. ushort sen_iaddr4;
  350. ushort sen_boffcnt; /* Backoff counter */
  351. /* NOTE: Some versions of the manual have the following items
  352.  * incorrectly documented.  Below is the proper order.
  353.  */
  354. ushort sen_taddrh; /* temp address (MSB) */
  355. ushort sen_taddrm;
  356. ushort sen_taddrl; /* temp address (LSB) */
  357. } scc_enet_t;
  358. /***  MBX  ************************************************************/
  359. #ifdef CONFIG_MBX
  360. /* Bits in parallel I/O port registers that have to be set/cleared
  361.  * to configure the pins for SCC1 use.  The TCLK and RCLK seem unique
  362.  * to the MBX860 board.  Any two of the four available clocks could be
  363.  * used, and the MPC860 cookbook manual has an example using different
  364.  * clock pins.
  365.  */
  366. #define PA_ENET_RXD ((ushort)0x0001)
  367. #define PA_ENET_TXD ((ushort)0x0002)
  368. #define PA_ENET_TCLK ((ushort)0x0200)
  369. #define PA_ENET_RCLK ((ushort)0x0800)
  370. #define PC_ENET_TENA ((ushort)0x0001)
  371. #define PC_ENET_CLSN ((ushort)0x0010)
  372. #define PC_ENET_RENA ((ushort)0x0020)
  373. /* Control bits in the SICR to route TCLK (CLK2) and RCLK (CLK4) to
  374.  * SCC1.  Also, make sure GR1 (bit 24) and SC1 (bit 25) are zero.
  375.  */
  376. #define SICR_ENET_MASK ((uint)0x000000ff)
  377. #define SICR_ENET_CLKRT ((uint)0x0000003d)
  378. #endif /* CONFIG_MBX */
  379. /***  RPXLITE  ********************************************************/
  380. #ifdef CONFIG_RPXLITE
  381. /* This ENET stuff is for the MPC850 with ethernet on SCC2.  Some of
  382.  * this may be unique to the RPX-Lite configuration.
  383.  * Note TENA is on Port B.
  384.  */
  385. #define PA_ENET_RXD ((ushort)0x0004)
  386. #define PA_ENET_TXD ((ushort)0x0008)
  387. #define PA_ENET_TCLK ((ushort)0x0200)
  388. #define PA_ENET_RCLK ((ushort)0x0800)
  389. #define PB_ENET_TENA ((uint)0x00002000)
  390. #define PC_ENET_CLSN ((ushort)0x0040)
  391. #define PC_ENET_RENA ((ushort)0x0080)
  392. #define SICR_ENET_MASK ((uint)0x0000ff00)
  393. #define SICR_ENET_CLKRT ((uint)0x00003d00)
  394. #endif /* CONFIG_RPXLITE */
  395. /***  BSEIP  **********************************************************/
  396. #ifdef CONFIG_BSEIP
  397. /* This ENET stuff is for the MPC823 with ethernet on SCC2.
  398.  * This is unique to the BSE ip-Engine board.
  399.  */
  400. #define PA_ENET_RXD ((ushort)0x0004)
  401. #define PA_ENET_TXD ((ushort)0x0008)
  402. #define PA_ENET_TCLK ((ushort)0x0100)
  403. #define PA_ENET_RCLK ((ushort)0x0200)
  404. #define PB_ENET_TENA ((uint)0x00002000)
  405. #define PC_ENET_CLSN ((ushort)0x0040)
  406. #define PC_ENET_RENA ((ushort)0x0080)
  407. /* BSE uses port B and C bits for PHY control also.
  408. */
  409. #define PB_BSE_POWERUP ((uint)0x00000004)
  410. #define PB_BSE_FDXDIS ((uint)0x00008000)
  411. #define PC_BSE_LOOPBACK ((ushort)0x0800)
  412. #define SICR_ENET_MASK ((uint)0x0000ff00)
  413. #define SICR_ENET_CLKRT ((uint)0x00002c00)
  414. #endif /* CONFIG_BSEIP */
  415. /***  RPXCLASSIC  *****************************************************/
  416. #ifdef CONFIG_RPXCLASSIC
  417. /* Bits in parallel I/O port registers that have to be set/cleared
  418.  * to configure the pins for SCC1 use.
  419.  */
  420. #define PA_ENET_RXD ((ushort)0x0001)
  421. #define PA_ENET_TXD ((ushort)0x0002)
  422. #define PA_ENET_TCLK ((ushort)0x0200)
  423. #define PA_ENET_RCLK ((ushort)0x0800)
  424. #define PB_ENET_TENA ((uint)0x00001000)
  425. #define PC_ENET_CLSN ((ushort)0x0010)
  426. #define PC_ENET_RENA ((ushort)0x0020)
  427. /* Control bits in the SICR to route TCLK (CLK2) and RCLK (CLK4) to
  428.  * SCC1.  Also, make sure GR1 (bit 24) and SC1 (bit 25) are zero.
  429.  */
  430. #define SICR_ENET_MASK ((uint)0x000000ff)
  431. #define SICR_ENET_CLKRT ((uint)0x0000003d)
  432. #endif /* CONFIG_RPXCLASSIC */
  433. /***  TQM823L, TQM850L  ***********************************************/
  434. #if defined(CONFIG_TQM823L) || defined(CONFIG_TQM850L)
  435. /* Bits in parallel I/O port registers that have to be set/cleared
  436.  * to configure the pins for SCC1 use.
  437.  */
  438. #define PA_ENET_RXD ((ushort)0x0004) /* PA 13 */
  439. #define PA_ENET_TXD ((ushort)0x0008) /* PA 12 */
  440. #define PA_ENET_RCLK ((ushort)0x0100) /* PA  7 */
  441. #define PA_ENET_TCLK ((ushort)0x0400) /* PA  5 */
  442. #define PB_ENET_TENA ((uint)0x00002000) /* PB 18 */
  443. #define PC_ENET_CLSN ((ushort)0x0040) /* PC  9 */
  444. #define PC_ENET_RENA ((ushort)0x0080) /* PC  8 */
  445. /* Control bits in the SICR to route TCLK (CLK3) and RCLK (CLK1) to
  446.  * SCC2.  Also, make sure GR2 (bit 16) and SC2 (bit 17) are zero.
  447.  */
  448. #define SICR_ENET_MASK ((uint)0x0000ff00)
  449. #define SICR_ENET_CLKRT ((uint)0x00002600)
  450. #endif /* CONFIG_TQM823L, CONFIG_TQM850L */
  451. /***  FPS850L  *********************************************************/
  452. #ifdef CONFIG_FPS850L
  453. /* Bits in parallel I/O port registers that have to be set/cleared
  454.  * to configure the pins for SCC1 use.
  455.  */
  456. #define PA_ENET_RXD ((ushort)0x0004) /* PA 13 */
  457. #define PA_ENET_TXD ((ushort)0x0008) /* PA 12 */
  458. #define PA_ENET_RCLK ((ushort)0x0100) /* PA  7 */
  459. #define PA_ENET_TCLK ((ushort)0x0400) /* PA  5 */
  460. #define PC_ENET_TENA ((ushort)0x0002) /* PC 14 */
  461. #define PC_ENET_CLSN ((ushort)0x0040) /* PC  9 */
  462. #define PC_ENET_RENA ((ushort)0x0080) /* PC  8 */
  463. /* Control bits in the SICR to route TCLK (CLK2) and RCLK (CLK4) to
  464.  * SCC2.  Also, make sure GR2 (bit 16) and SC2 (bit 17) are zero.
  465.  */
  466. #define SICR_ENET_MASK ((uint)0x0000ff00)
  467. #define SICR_ENET_CLKRT ((uint)0x00002600)
  468. #endif /* CONFIG_FPS850L */
  469. /***  TQM860L  ********************************************************/
  470. #ifdef CONFIG_TQM860L
  471. /* Bits in parallel I/O port registers that have to be set/cleared
  472.  * to configure the pins for SCC1 use.
  473.  */
  474. #define PA_ENET_RXD ((ushort)0x0001) /* PA 15 */
  475. #define PA_ENET_TXD ((ushort)0x0002) /* PA 14 */
  476. #define PA_ENET_RCLK ((ushort)0x0100) /* PA  7 */
  477. #define PA_ENET_TCLK ((ushort)0x0400) /* PA  5 */
  478. #define PC_ENET_TENA ((ushort)0x0001) /* PC 15 */
  479. #define PC_ENET_CLSN ((ushort)0x0010) /* PC 11 */
  480. #define PC_ENET_RENA ((ushort)0x0020) /* PC 10 */
  481. /* Control bits in the SICR to route TCLK (CLK3) and RCLK (CLK1) to
  482.  * SCC1.  Also, make sure GR1 (bit 24) and SC1 (bit 25) are zero.
  483.  */
  484. #define SICR_ENET_MASK ((uint)0x000000ff)
  485. #define SICR_ENET_CLKRT ((uint)0x00000026)
  486. #endif /* CONFIG_TQM860L */
  487. /***  SPD823TS  *******************************************************/
  488. #ifdef CONFIG_SPD823TS
  489. /* Bits in parallel I/O port registers that have to be set/cleared
  490.  * to configure the pins for SCC2 use.
  491.  */
  492. #define PA_ENET_MDC ((ushort)0x0001) /* PA 15 !!! */
  493. #define PA_ENET_MDIO ((ushort)0x0002) /* PA 14 !!! */
  494. #define PA_ENET_RXD ((ushort)0x0004) /* PA 13 */
  495. #define PA_ENET_TXD ((ushort)0x0008) /* PA 12 */
  496. #define PA_ENET_RCLK ((ushort)0x0200) /* PA  6 */
  497. #define PA_ENET_TCLK ((ushort)0x0400) /* PA  5 */
  498. #define PB_ENET_TENA ((uint)0x00002000) /* PB 18 */
  499. #define PC_ENET_CLSN ((ushort)0x0040) /* PC  9 */
  500. #define PC_ENET_RENA ((ushort)0x0080) /* PC  8 */
  501. #define PC_ENET_RESET ((ushort)0x0100) /* PC  7 !!! */
  502. /* Control bits in the SICR to route TCLK (CLK3) and RCLK (CLK2) to
  503.  * SCC2.  Also, make sure GR2 (bit 16) and SC2 (bit 17) are zero.
  504.  */
  505. #define SICR_ENET_MASK ((uint)0x0000ff00)
  506. #define SICR_ENET_CLKRT ((uint)0x00002E00)
  507. #endif /* CONFIG_SPD823TS */
  508. /***  SM850  *********************************************************/
  509. /* The SM850 Service Module uses SCC2 for IrDA and SCC3 for Ethernet */
  510. #ifdef CONFIG_SM850
  511. #define PB_ENET_RXD ((uint)0x00000004) /* PB 29 */
  512. #define PB_ENET_TXD ((uint)0x00000002) /* PB 30 */
  513. #define PA_ENET_RCLK ((ushort)0x0100) /* PA  7 */
  514. #define PA_ENET_TCLK ((ushort)0x0400) /* PA  5 */
  515. #define PC_ENET_LBK ((ushort)0x0008) /* PC 12 */
  516. #define PC_ENET_TENA ((ushort)0x0004) /* PC 13 */
  517. #define PC_ENET_RENA ((ushort)0x0800) /* PC  4 */
  518. #define PC_ENET_CLSN ((ushort)0x0400) /* PC  5 */
  519. /* Control bits in the SICR to route TCLK (CLK3) and RCLK (CLK1) to
  520.  * SCC3.  Also, make sure GR3 (bit 8) and SC3 (bit 9) are zero.
  521.  */
  522. #define SICR_ENET_MASK ((uint)0x00FF0000)
  523. #define SICR_ENET_CLKRT ((uint)0x00260000)
  524. #endif /* CONFIG_SM850 */
  525. /*********************************************************************/
  526. /* SCC Event register as used by Ethernet.
  527. */
  528. #define SCCE_ENET_GRA ((ushort)0x0080) /* Graceful stop complete */
  529. #define SCCE_ENET_TXE ((ushort)0x0010) /* Transmit Error */
  530. #define SCCE_ENET_RXF ((ushort)0x0008) /* Full frame received */
  531. #define SCCE_ENET_BSY ((ushort)0x0004) /* All incoming buffers full */
  532. #define SCCE_ENET_TXB ((ushort)0x0002) /* A buffer was transmitted */
  533. #define SCCE_ENET_RXB ((ushort)0x0001) /* A buffer was received */
  534. /* SCC Mode Register (PMSR) as used by Ethernet.
  535. */
  536. #define SCC_PMSR_HBC ((ushort)0x8000) /* Enable heartbeat */
  537. #define SCC_PMSR_FC ((ushort)0x4000) /* Force collision */
  538. #define SCC_PMSR_RSH ((ushort)0x2000) /* Receive short frames */
  539. #define SCC_PMSR_IAM ((ushort)0x1000) /* Check individual hash */
  540. #define SCC_PMSR_ENCRC ((ushort)0x0800) /* Ethernet CRC mode */
  541. #define SCC_PMSR_PRO ((ushort)0x0200) /* Promiscuous mode */
  542. #define SCC_PMSR_BRO ((ushort)0x0100) /* Catch broadcast pkts */
  543. #define SCC_PMSR_SBT ((ushort)0x0080) /* Special backoff timer */
  544. #define SCC_PMSR_LPB ((ushort)0x0040) /* Set Loopback mode */
  545. #define SCC_PMSR_SIP ((ushort)0x0020) /* Sample Input Pins */
  546. #define SCC_PMSR_LCW ((ushort)0x0010) /* Late collision window */
  547. #define SCC_PMSR_NIB22 ((ushort)0x000a) /* Start frame search */
  548. #define SCC_PMSR_FDE ((ushort)0x0001) /* Full duplex enable */
  549. /* Buffer descriptor control/status used by Ethernet receive.
  550. */
  551. #define BD_ENET_RX_EMPTY ((ushort)0x8000)
  552. #define BD_ENET_RX_WRAP ((ushort)0x2000)
  553. #define BD_ENET_RX_INTR ((ushort)0x1000)
  554. #define BD_ENET_RX_LAST ((ushort)0x0800)
  555. #define BD_ENET_RX_FIRST ((ushort)0x0400)
  556. #define BD_ENET_RX_MISS ((ushort)0x0100)
  557. #define BD_ENET_RX_LG ((ushort)0x0020)
  558. #define BD_ENET_RX_NO ((ushort)0x0010)
  559. #define BD_ENET_RX_SH ((ushort)0x0008)
  560. #define BD_ENET_RX_CR ((ushort)0x0004)
  561. #define BD_ENET_RX_OV ((ushort)0x0002)
  562. #define BD_ENET_RX_CL ((ushort)0x0001)
  563. #define BD_ENET_RX_STATS ((ushort)0x013f) /* All status bits */
  564. /* Buffer descriptor control/status used by Ethernet transmit.
  565. */
  566. #define BD_ENET_TX_READY ((ushort)0x8000)
  567. #define BD_ENET_TX_PAD ((ushort)0x4000)
  568. #define BD_ENET_TX_WRAP ((ushort)0x2000)
  569. #define BD_ENET_TX_INTR ((ushort)0x1000)
  570. #define BD_ENET_TX_LAST ((ushort)0x0800)
  571. #define BD_ENET_TX_TC ((ushort)0x0400)
  572. #define BD_ENET_TX_DEF ((ushort)0x0200)
  573. #define BD_ENET_TX_HB ((ushort)0x0100)
  574. #define BD_ENET_TX_LC ((ushort)0x0080)
  575. #define BD_ENET_TX_RL ((ushort)0x0040)
  576. #define BD_ENET_TX_RCMASK ((ushort)0x003c)
  577. #define BD_ENET_TX_UN ((ushort)0x0002)
  578. #define BD_ENET_TX_CSL ((ushort)0x0001)
  579. #define BD_ENET_TX_STATS ((ushort)0x03ff) /* All status bits */
  580. /* SCC as UART
  581. */
  582. typedef struct scc_uart {
  583. sccp_t scc_genscc;
  584. uint scc_res1; /* Reserved */
  585. uint scc_res2; /* Reserved */
  586. ushort scc_maxidl; /* Maximum idle chars */
  587. ushort scc_idlc; /* temp idle counter */
  588. ushort scc_brkcr; /* Break count register */
  589. ushort scc_parec; /* receive parity error counter */
  590. ushort scc_frmec; /* receive framing error counter */
  591. ushort scc_nosec; /* receive noise counter */
  592. ushort scc_brkec; /* receive break condition counter */
  593. ushort scc_brkln; /* last received break length */
  594. ushort scc_uaddr1; /* UART address character 1 */
  595. ushort scc_uaddr2; /* UART address character 2 */
  596. ushort scc_rtemp; /* Temp storage */
  597. ushort scc_toseq; /* Transmit out of sequence char */
  598. ushort scc_char1; /* control character 1 */
  599. ushort scc_char2; /* control character 2 */
  600. ushort scc_char3; /* control character 3 */
  601. ushort scc_char4; /* control character 4 */
  602. ushort scc_char5; /* control character 5 */
  603. ushort scc_char6; /* control character 6 */
  604. ushort scc_char7; /* control character 7 */
  605. ushort scc_char8; /* control character 8 */
  606. ushort scc_rccm; /* receive control character mask */
  607. ushort scc_rccr; /* receive control character register */
  608. ushort scc_rlbc; /* receive last break character */
  609. } scc_uart_t;
  610. /* SCC Event and Mask registers when it is used as a UART.
  611. */
  612. #define UART_SCCM_GLR ((ushort)0x1000)
  613. #define UART_SCCM_GLT ((ushort)0x0800)
  614. #define UART_SCCM_AB ((ushort)0x0200)
  615. #define UART_SCCM_IDL ((ushort)0x0100)
  616. #define UART_SCCM_GRA ((ushort)0x0080)
  617. #define UART_SCCM_BRKE ((ushort)0x0040)
  618. #define UART_SCCM_BRKS ((ushort)0x0020)
  619. #define UART_SCCM_CCR ((ushort)0x0008)
  620. #define UART_SCCM_BSY ((ushort)0x0004)
  621. #define UART_SCCM_TX ((ushort)0x0002)
  622. #define UART_SCCM_RX ((ushort)0x0001)
  623. /* The SCC PMSR when used as a UART.
  624. */
  625. #define SCU_PMSR_FLC ((ushort)0x8000)
  626. #define SCU_PMSR_SL ((ushort)0x4000)
  627. #define SCU_PMSR_CL ((ushort)0x3000)
  628. #define SCU_PMSR_UM ((ushort)0x0c00)
  629. #define SCU_PMSR_FRZ ((ushort)0x0200)
  630. #define SCU_PMSR_RZS ((ushort)0x0100)
  631. #define SCU_PMSR_SYN ((ushort)0x0080)
  632. #define SCU_PMSR_DRT ((ushort)0x0040)
  633. #define SCU_PMSR_PEN ((ushort)0x0010)
  634. #define SCU_PMSR_RPM ((ushort)0x000c)
  635. #define SCU_PMSR_REVP ((ushort)0x0008)
  636. #define SCU_PMSR_TPM ((ushort)0x0003)
  637. #define SCU_PMSR_TEVP ((ushort)0x0002)
  638. /* CPM Transparent mode SCC.
  639.  */
  640. typedef struct scc_trans {
  641. sccp_t st_genscc;
  642. uint st_cpres; /* Preset CRC */
  643. uint st_cmask; /* Constant mask for CRC */
  644. } scc_trans_t;
  645. #define BD_SCC_TX_LAST ((ushort)0x0800)
  646. /* IIC parameter RAM.
  647. */
  648. typedef struct iic {
  649. ushort iic_rbase; /* Rx Buffer descriptor base address */
  650. ushort iic_tbase; /* Tx Buffer descriptor base address */
  651. u_char iic_rfcr; /* Rx function code */
  652. u_char iic_tfcr; /* Tx function code */
  653. ushort iic_mrblr; /* Max receive buffer length */
  654. uint iic_rstate; /* Internal */
  655. uint iic_rdp; /* Internal */
  656. ushort iic_rbptr; /* Internal */
  657. ushort iic_rbc; /* Internal */
  658. uint iic_rxtmp; /* Internal */
  659. uint iic_tstate; /* Internal */
  660. uint iic_tdp; /* Internal */
  661. ushort iic_tbptr; /* Internal */
  662. ushort iic_tbc; /* Internal */
  663. uint iic_txtmp; /* Internal */
  664. } iic_t;
  665. #define BD_IIC_START ((ushort)0x0400)
  666. /* CPM interrupts.  There are nearly 32 interrupts generated by CPM
  667.  * channels or devices.  All of these are presented to the PPC core
  668.  * as a single interrupt.  The CPM interrupt handler dispatches its
  669.  * own handlers, in a similar fashion to the PPC core handler.  We
  670.  * use the table as defined in the manuals (i.e. no special high
  671.  * priority and SCC1 == SCCa, etc...).
  672.  */
  673. #define CPMVEC_NR 32
  674. #define CPMVEC_PIO_PC15 ((ushort)0x1f)
  675. #define CPMVEC_SCC1 ((ushort)0x1e)
  676. #define CPMVEC_SCC2 ((ushort)0x1d)
  677. #define CPMVEC_SCC3 ((ushort)0x1c)
  678. #define CPMVEC_SCC4 ((ushort)0x1b)
  679. #define CPMVEC_PIO_PC14 ((ushort)0x1a)
  680. #define CPMVEC_TIMER1 ((ushort)0x19)
  681. #define CPMVEC_PIO_PC13 ((ushort)0x18)
  682. #define CPMVEC_PIO_PC12 ((ushort)0x17)
  683. #define CPMVEC_SDMA_CB_ERR ((ushort)0x16)
  684. #define CPMVEC_IDMA1 ((ushort)0x15)
  685. #define CPMVEC_IDMA2 ((ushort)0x14)
  686. #define CPMVEC_TIMER2 ((ushort)0x12)
  687. #define CPMVEC_RISCTIMER ((ushort)0x11)
  688. #define CPMVEC_I2C ((ushort)0x10)
  689. #define CPMVEC_PIO_PC11 ((ushort)0x0f)
  690. #define CPMVEC_PIO_PC10 ((ushort)0x0e)
  691. #define CPMVEC_TIMER3 ((ushort)0x0c)
  692. #define CPMVEC_PIO_PC9 ((ushort)0x0b)
  693. #define CPMVEC_PIO_PC8 ((ushort)0x0a)
  694. #define CPMVEC_PIO_PC7 ((ushort)0x09)
  695. #define CPMVEC_TIMER4 ((ushort)0x07)
  696. #define CPMVEC_PIO_PC6 ((ushort)0x06)
  697. #define CPMVEC_SPI ((ushort)0x05)
  698. #define CPMVEC_SMC1 ((ushort)0x04)
  699. #define CPMVEC_SMC2 ((ushort)0x03)
  700. #define CPMVEC_PIO_PC5 ((ushort)0x02)
  701. #define CPMVEC_PIO_PC4 ((ushort)0x01)
  702. #define CPMVEC_ERROR ((ushort)0x00)
  703. /* CPM interrupt configuration vector.
  704. */
  705. #define CICR_SCD_SCC4 ((uint)0x00c00000) /* SCC4 @ SCCd */
  706. #define CICR_SCC_SCC3 ((uint)0x00200000) /* SCC3 @ SCCc */
  707. #define CICR_SCB_SCC2 ((uint)0x00040000) /* SCC2 @ SCCb */
  708. #define CICR_SCA_SCC1 ((uint)0x00000000) /* SCC1 @ SCCa */
  709. #define CICR_IRL_MASK ((uint)0x0000e000) /* Core interrrupt */
  710. #define CICR_HP_MASK ((uint)0x00001f00) /* Hi-pri int. */
  711. #define CICR_IEN ((uint)0x00000080) /* Int. enable */
  712. #define CICR_SPS ((uint)0x00000001) /* SCC Spread */
  713. extern void cpm_install_handler(int vec, 
  714. void (*handler)(void *, struct pt_regs *regs), void *dev_id);
  715. extern void cpm_free_handler(int vec);
  716. #endif /* __CPM_8XX__ */