This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / include / asm-ppc / cpm2.h
1 /*
2  * Communication Processor Module v2.
3  *
4  * This file contains structures and information for the communication
5  * processor channels found in the dual port RAM or parameter RAM.
6  * All CPM control and status is available through the CPM2 internal
7  * memory map.  See immap_cpm2.h for details.
8  */
9 #ifdef __KERNEL__
10 #ifndef __CPM2__
11 #define __CPM2__
12
13 #include <asm/immap_cpm2.h>
14
15 /* CPM Command register.
16 */
17 #define CPM_CR_RST      ((uint)0x80000000)
18 #define CPM_CR_PAGE     ((uint)0x7c000000)
19 #define CPM_CR_SBLOCK   ((uint)0x03e00000)
20 #define CPM_CR_FLG      ((uint)0x00010000)
21 #define CPM_CR_MCN      ((uint)0x00003fc0)
22 #define CPM_CR_OPCODE   ((uint)0x0000000f)
23
24 /* Device sub-block and page codes.
25 */
26 #define CPM_CR_SCC1_SBLOCK      (0x04)
27 #define CPM_CR_SCC2_SBLOCK      (0x05)
28 #define CPM_CR_SCC3_SBLOCK      (0x06)
29 #define CPM_CR_SCC4_SBLOCK      (0x07)
30 #define CPM_CR_SMC1_SBLOCK      (0x08)
31 #define CPM_CR_SMC2_SBLOCK      (0x09)
32 #define CPM_CR_SPI_SBLOCK       (0x0a)
33 #define CPM_CR_I2C_SBLOCK       (0x0b)
34 #define CPM_CR_TIMER_SBLOCK     (0x0f)
35 #define CPM_CR_RAND_SBLOCK      (0x0e)
36 #define CPM_CR_FCC1_SBLOCK      (0x10)
37 #define CPM_CR_FCC2_SBLOCK      (0x11)
38 #define CPM_CR_FCC3_SBLOCK      (0x12)
39 #define CPM_CR_IDMA1_SBLOCK     (0x14)
40 #define CPM_CR_IDMA2_SBLOCK     (0x15)
41 #define CPM_CR_IDMA3_SBLOCK     (0x16)
42 #define CPM_CR_IDMA4_SBLOCK     (0x17)
43 #define CPM_CR_MCC1_SBLOCK      (0x1c)
44
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
65 /* Some opcodes (there are more...later)
66 */
67 #define CPM_CR_INIT_TRX         ((ushort)0x0000)
68 #define CPM_CR_INIT_RX          ((ushort)0x0001)
69 #define CPM_CR_INIT_TX          ((ushort)0x0002)
70 #define CPM_CR_HUNT_MODE        ((ushort)0x0003)
71 #define CPM_CR_STOP_TX          ((ushort)0x0004)
72 #define CPM_CR_RESTART_TX       ((ushort)0x0006)
73 #define CPM_CR_SET_GADDR        ((ushort)0x0008)
74 #define CPM_CR_START_IDMA       ((ushort)0x0009)
75 #define CPM_CR_STOP_IDMA        ((ushort)0x000b)
76
77 #define mk_cr_cmd(PG, SBC, MCN, OP) \
78         ((PG << 26) | (SBC << 21) | (MCN << 6) | OP)
79
80 /* Dual Port RAM addresses.  The first 16K is available for almost
81  * any CPM use, so we put the BDs there.  The first 128 bytes are
82  * used for SMC1 and SMC2 parameter RAM, so we start allocating
83  * BDs above that.  All of this must change when we start
84  * downloading RAM microcode.
85  */
86 #define CPM_DATAONLY_BASE       ((uint)128)
87 #define CPM_DP_NOSPACE          ((uint)0x7fffffff)
88 #ifdef CONFIG_8272
89 #define CPM_DATAONLY_SIZE       ((uint)(8 * 1024) - CPM_DATAONLY_BASE)
90 #define CPM_FCC_SPECIAL_BASE    ((uint)0x00009000)
91 #else
92 #define CPM_DATAONLY_SIZE       ((uint)(16 * 1024) - CPM_DATAONLY_BASE)
93 #define CPM_FCC_SPECIAL_BASE    ((uint)0x0000b000)
94 #endif
95
96 /* The number of pages of host memory we allocate for CPM.  This is
97  * done early in kernel initialization to get physically contiguous
98  * pages.
99  */
100 #define NUM_CPM_HOST_PAGES      2
101
102
103 /* Export the base address of the communication processor registers
104  * and dual port ram.
105  */
106 extern          cpm_cpm2_t      *cpmp;   /* Pointer to comm processor */
107 extern void *cpm2_dpalloc(uint size, uint align);
108 extern int cpm2_dpfree(void *addr);
109 extern void *cpm2_dpalloc_fixed(void *addr, uint size, uint allign);
110 extern void cpm2_dpdump(void);
111 extern unsigned int cpm2_dpram_offset(void *addr);
112 extern void *cpm2_dpram_addr(int offset);
113 extern void cpm2_setbrg(uint brg, uint rate);
114 extern void cpm2_fastbrg(uint brg, uint rate, int div16);
115
116 /* Buffer descriptors used by many of the CPM protocols.
117 */
118 typedef struct cpm_buf_desc {
119         ushort  cbd_sc;         /* Status and Control */
120         ushort  cbd_datlen;     /* Data length in buffer */
121         uint    cbd_bufaddr;    /* Buffer address in host memory */
122 } cbd_t;
123
124 #define BD_SC_EMPTY     ((ushort)0x8000)        /* Receive is empty */
125 #define BD_SC_READY     ((ushort)0x8000)        /* Transmit is ready */
126 #define BD_SC_WRAP      ((ushort)0x2000)        /* Last buffer descriptor */
127 #define BD_SC_INTRPT    ((ushort)0x1000)        /* Interrupt on change */
128 #define BD_SC_LAST      ((ushort)0x0800)        /* Last buffer in frame */
129 #define BD_SC_CM        ((ushort)0x0200)        /* Continous mode */
130 #define BD_SC_ID        ((ushort)0x0100)        /* Rec'd too many idles */
131 #define BD_SC_P         ((ushort)0x0100)        /* xmt preamble */
132 #define BD_SC_BR        ((ushort)0x0020)        /* Break received */
133 #define BD_SC_FR        ((ushort)0x0010)        /* Framing error */
134 #define BD_SC_PR        ((ushort)0x0008)        /* Parity error */
135 #define BD_SC_OV        ((ushort)0x0002)        /* Overrun */
136 #define BD_SC_CD        ((ushort)0x0001)        /* ?? */
137
138 /* Function code bits, usually generic to devices.
139 */
140 #define CPMFCR_GBL      ((u_char)0x20)  /* Set memory snooping */
141 #define CPMFCR_EB       ((u_char)0x10)  /* Set big endian byte order */
142 #define CPMFCR_TC2      ((u_char)0x04)  /* Transfer code 2 value */
143 #define CPMFCR_DTB      ((u_char)0x02)  /* Use local bus for data when set */
144 #define CPMFCR_BDB      ((u_char)0x01)  /* Use local bus for BD when set */
145
146 /* Parameter RAM offsets from the base.
147 */
148 #define PROFF_SCC1              ((uint)0x8000)
149 #define PROFF_SCC2              ((uint)0x8100)
150 #define PROFF_SCC3              ((uint)0x8200)
151 #define PROFF_SCC4              ((uint)0x8300)
152 #define PROFF_FCC1              ((uint)0x8400)
153 #define PROFF_FCC2              ((uint)0x8500)
154 #define PROFF_FCC3              ((uint)0x8600)
155 #define PROFF_MCC1              ((uint)0x8700)
156 #define PROFF_SMC1_BASE         ((uint)0x87fc)
157 #define PROFF_IDMA1_BASE        ((uint)0x87fe)
158 #define PROFF_MCC2              ((uint)0x8800)
159 #define PROFF_SMC2_BASE         ((uint)0x88fc)
160 #define PROFF_IDMA2_BASE        ((uint)0x88fe)
161 #define PROFF_SPI_BASE          ((uint)0x89fc)
162 #define PROFF_IDMA3_BASE        ((uint)0x89fe)
163 #define PROFF_TIMERS            ((uint)0x8ae0)
164 #define PROFF_REVNUM            ((uint)0x8af0)
165 #define PROFF_RAND              ((uint)0x8af8)
166 #define PROFF_I2C_BASE          ((uint)0x8afc)
167 #define PROFF_IDMA4_BASE        ((uint)0x8afe)
168
169 /* The SMCs are relocated to any of the first eight DPRAM pages.
170  * We will fix these at the first locations of DPRAM, until we
171  * get some microcode patches :-).
172  * The parameter ram space for the SMCs is fifty-some bytes, and
173  * they are required to start on a 64 byte boundary.
174  */
175 #define PROFF_SMC1      (0)
176 #define PROFF_SMC2      (64)
177
178
179 /* Define enough so I can at least use the serial port as a UART.
180  */
181 typedef struct smc_uart {
182         ushort  smc_rbase;      /* Rx Buffer descriptor base address */
183         ushort  smc_tbase;      /* Tx Buffer descriptor base address */
184         u_char  smc_rfcr;       /* Rx function code */
185         u_char  smc_tfcr;       /* Tx function code */
186         ushort  smc_mrblr;      /* Max receive buffer length */
187         uint    smc_rstate;     /* Internal */
188         uint    smc_idp;        /* Internal */
189         ushort  smc_rbptr;      /* Internal */
190         ushort  smc_ibc;        /* Internal */
191         uint    smc_rxtmp;      /* Internal */
192         uint    smc_tstate;     /* Internal */
193         uint    smc_tdp;        /* Internal */
194         ushort  smc_tbptr;      /* Internal */
195         ushort  smc_tbc;        /* Internal */
196         uint    smc_txtmp;      /* Internal */
197         ushort  smc_maxidl;     /* Maximum idle characters */
198         ushort  smc_tmpidl;     /* Temporary idle counter */
199         ushort  smc_brklen;     /* Last received break length */
200         ushort  smc_brkec;      /* rcv'd break condition counter */
201         ushort  smc_brkcr;      /* xmt break count register */
202         ushort  smc_rmask;      /* Temporary bit mask */
203         uint    smc_stmp;       /* SDMA Temp */
204 } smc_uart_t;
205
206 /* SMC uart mode register (Internal memory map).
207 */
208 #define SMCMR_REN       ((ushort)0x0001)
209 #define SMCMR_TEN       ((ushort)0x0002)
210 #define SMCMR_DM        ((ushort)0x000c)
211 #define SMCMR_SM_GCI    ((ushort)0x0000)
212 #define SMCMR_SM_UART   ((ushort)0x0020)
213 #define SMCMR_SM_TRANS  ((ushort)0x0030)
214 #define SMCMR_SM_MASK   ((ushort)0x0030)
215 #define SMCMR_PM_EVEN   ((ushort)0x0100)        /* Even parity, else odd */
216 #define SMCMR_REVD      SMCMR_PM_EVEN
217 #define SMCMR_PEN       ((ushort)0x0200)        /* Parity enable */
218 #define SMCMR_BS        SMCMR_PEN
219 #define SMCMR_SL        ((ushort)0x0400)        /* Two stops, else one */
220 #define SMCR_CLEN_MASK  ((ushort)0x7800)        /* Character length */
221 #define smcr_mk_clen(C) (((C) << 11) & SMCR_CLEN_MASK)
222
223 /* SMC Event and Mask register.
224 */
225 #define SMCM_BRKE       ((unsigned char)0x40)   /* When in UART Mode */
226 #define SMCM_BRK        ((unsigned char)0x10)   /* When in UART Mode */
227 #define SMCM_TXE        ((unsigned char)0x10)
228 #define SMCM_BSY        ((unsigned char)0x04)
229 #define SMCM_TX         ((unsigned char)0x02)
230 #define SMCM_RX         ((unsigned char)0x01)
231
232 /* Baud rate generators.
233 */
234 #define CPM_BRG_RST             ((uint)0x00020000)
235 #define CPM_BRG_EN              ((uint)0x00010000)
236 #define CPM_BRG_EXTC_INT        ((uint)0x00000000)
237 #define CPM_BRG_EXTC_CLK3_9     ((uint)0x00004000)
238 #define CPM_BRG_EXTC_CLK5_15    ((uint)0x00008000)
239 #define CPM_BRG_ATB             ((uint)0x00002000)
240 #define CPM_BRG_CD_MASK         ((uint)0x00001ffe)
241 #define CPM_BRG_DIV16           ((uint)0x00000001)
242
243 /* SCCs.
244 */
245 #define SCC_GSMRH_IRP           ((uint)0x00040000)
246 #define SCC_GSMRH_GDE           ((uint)0x00010000)
247 #define SCC_GSMRH_TCRC_CCITT    ((uint)0x00008000)
248 #define SCC_GSMRH_TCRC_BISYNC   ((uint)0x00004000)
249 #define SCC_GSMRH_TCRC_HDLC     ((uint)0x00000000)
250 #define SCC_GSMRH_REVD          ((uint)0x00002000)
251 #define SCC_GSMRH_TRX           ((uint)0x00001000)
252 #define SCC_GSMRH_TTX           ((uint)0x00000800)
253 #define SCC_GSMRH_CDP           ((uint)0x00000400)
254 #define SCC_GSMRH_CTSP          ((uint)0x00000200)
255 #define SCC_GSMRH_CDS           ((uint)0x00000100)
256 #define SCC_GSMRH_CTSS          ((uint)0x00000080)
257 #define SCC_GSMRH_TFL           ((uint)0x00000040)
258 #define SCC_GSMRH_RFW           ((uint)0x00000020)
259 #define SCC_GSMRH_TXSY          ((uint)0x00000010)
260 #define SCC_GSMRH_SYNL16        ((uint)0x0000000c)
261 #define SCC_GSMRH_SYNL8         ((uint)0x00000008)
262 #define SCC_GSMRH_SYNL4         ((uint)0x00000004)
263 #define SCC_GSMRH_RTSM          ((uint)0x00000002)
264 #define SCC_GSMRH_RSYN          ((uint)0x00000001)
265
266 #define SCC_GSMRL_SIR           ((uint)0x80000000)      /* SCC2 only */
267 #define SCC_GSMRL_EDGE_NONE     ((uint)0x60000000)
268 #define SCC_GSMRL_EDGE_NEG      ((uint)0x40000000)
269 #define SCC_GSMRL_EDGE_POS      ((uint)0x20000000)
270 #define SCC_GSMRL_EDGE_BOTH     ((uint)0x00000000)
271 #define SCC_GSMRL_TCI           ((uint)0x10000000)
272 #define SCC_GSMRL_TSNC_3        ((uint)0x0c000000)
273 #define SCC_GSMRL_TSNC_4        ((uint)0x08000000)
274 #define SCC_GSMRL_TSNC_14       ((uint)0x04000000)
275 #define SCC_GSMRL_TSNC_INF      ((uint)0x00000000)
276 #define SCC_GSMRL_RINV          ((uint)0x02000000)
277 #define SCC_GSMRL_TINV          ((uint)0x01000000)
278 #define SCC_GSMRL_TPL_128       ((uint)0x00c00000)
279 #define SCC_GSMRL_TPL_64        ((uint)0x00a00000)
280 #define SCC_GSMRL_TPL_48        ((uint)0x00800000)
281 #define SCC_GSMRL_TPL_32        ((uint)0x00600000)
282 #define SCC_GSMRL_TPL_16        ((uint)0x00400000)
283 #define SCC_GSMRL_TPL_8         ((uint)0x00200000)
284 #define SCC_GSMRL_TPL_NONE      ((uint)0x00000000)
285 #define SCC_GSMRL_TPP_ALL1      ((uint)0x00180000)
286 #define SCC_GSMRL_TPP_01        ((uint)0x00100000)
287 #define SCC_GSMRL_TPP_10        ((uint)0x00080000)
288 #define SCC_GSMRL_TPP_ZEROS     ((uint)0x00000000)
289 #define SCC_GSMRL_TEND          ((uint)0x00040000)
290 #define SCC_GSMRL_TDCR_32       ((uint)0x00030000)
291 #define SCC_GSMRL_TDCR_16       ((uint)0x00020000)
292 #define SCC_GSMRL_TDCR_8        ((uint)0x00010000)
293 #define SCC_GSMRL_TDCR_1        ((uint)0x00000000)
294 #define SCC_GSMRL_RDCR_32       ((uint)0x0000c000)
295 #define SCC_GSMRL_RDCR_16       ((uint)0x00008000)
296 #define SCC_GSMRL_RDCR_8        ((uint)0x00004000)
297 #define SCC_GSMRL_RDCR_1        ((uint)0x00000000)
298 #define SCC_GSMRL_RENC_DFMAN    ((uint)0x00003000)
299 #define SCC_GSMRL_RENC_MANCH    ((uint)0x00002000)
300 #define SCC_GSMRL_RENC_FM0      ((uint)0x00001000)
301 #define SCC_GSMRL_RENC_NRZI     ((uint)0x00000800)
302 #define SCC_GSMRL_RENC_NRZ      ((uint)0x00000000)
303 #define SCC_GSMRL_TENC_DFMAN    ((uint)0x00000600)
304 #define SCC_GSMRL_TENC_MANCH    ((uint)0x00000400)
305 #define SCC_GSMRL_TENC_FM0      ((uint)0x00000200)
306 #define SCC_GSMRL_TENC_NRZI     ((uint)0x00000100)
307 #define SCC_GSMRL_TENC_NRZ      ((uint)0x00000000)
308 #define SCC_GSMRL_DIAG_LE       ((uint)0x000000c0)      /* Loop and echo */
309 #define SCC_GSMRL_DIAG_ECHO     ((uint)0x00000080)
310 #define SCC_GSMRL_DIAG_LOOP     ((uint)0x00000040)
311 #define SCC_GSMRL_DIAG_NORM     ((uint)0x00000000)
312 #define SCC_GSMRL_ENR           ((uint)0x00000020)
313 #define SCC_GSMRL_ENT           ((uint)0x00000010)
314 #define SCC_GSMRL_MODE_ENET     ((uint)0x0000000c)
315 #define SCC_GSMRL_MODE_DDCMP    ((uint)0x00000009)
316 #define SCC_GSMRL_MODE_BISYNC   ((uint)0x00000008)
317 #define SCC_GSMRL_MODE_V14      ((uint)0x00000007)
318 #define SCC_GSMRL_MODE_AHDLC    ((uint)0x00000006)
319 #define SCC_GSMRL_MODE_PROFIBUS ((uint)0x00000005)
320 #define SCC_GSMRL_MODE_UART     ((uint)0x00000004)
321 #define SCC_GSMRL_MODE_SS7      ((uint)0x00000003)
322 #define SCC_GSMRL_MODE_ATALK    ((uint)0x00000002)
323 #define SCC_GSMRL_MODE_HDLC     ((uint)0x00000000)
324
325 #define SCC_TODR_TOD            ((ushort)0x8000)
326
327 /* SCC Event and Mask register.
328 */
329 #define SCCM_TXE        ((unsigned char)0x10)
330 #define SCCM_BSY        ((unsigned char)0x04)
331 #define SCCM_TX         ((unsigned char)0x02)
332 #define SCCM_RX         ((unsigned char)0x01)
333
334 typedef struct scc_param {
335         ushort  scc_rbase;      /* Rx Buffer descriptor base address */
336         ushort  scc_tbase;      /* Tx Buffer descriptor base address */
337         u_char  scc_rfcr;       /* Rx function code */
338         u_char  scc_tfcr;       /* Tx function code */
339         ushort  scc_mrblr;      /* Max receive buffer length */
340         uint    scc_rstate;     /* Internal */
341         uint    scc_idp;        /* Internal */
342         ushort  scc_rbptr;      /* Internal */
343         ushort  scc_ibc;        /* Internal */
344         uint    scc_rxtmp;      /* Internal */
345         uint    scc_tstate;     /* Internal */
346         uint    scc_tdp;        /* Internal */
347         ushort  scc_tbptr;      /* Internal */
348         ushort  scc_tbc;        /* Internal */
349         uint    scc_txtmp;      /* Internal */
350         uint    scc_rcrc;       /* Internal */
351         uint    scc_tcrc;       /* Internal */
352 } sccp_t;
353
354 /* CPM Ethernet through SCC1.
355  */
356 typedef struct scc_enet {
357         sccp_t  sen_genscc;
358         uint    sen_cpres;      /* Preset CRC */
359         uint    sen_cmask;      /* Constant mask for CRC */
360         uint    sen_crcec;      /* CRC Error counter */
361         uint    sen_alec;       /* alignment error counter */
362         uint    sen_disfc;      /* discard frame counter */
363         ushort  sen_pads;       /* Tx short frame pad character */
364         ushort  sen_retlim;     /* Retry limit threshold */
365         ushort  sen_retcnt;     /* Retry limit counter */
366         ushort  sen_maxflr;     /* maximum frame length register */
367         ushort  sen_minflr;     /* minimum frame length register */
368         ushort  sen_maxd1;      /* maximum DMA1 length */
369         ushort  sen_maxd2;      /* maximum DMA2 length */
370         ushort  sen_maxd;       /* Rx max DMA */
371         ushort  sen_dmacnt;     /* Rx DMA counter */
372         ushort  sen_maxb;       /* Max BD byte count */
373         ushort  sen_gaddr1;     /* Group address filter */
374         ushort  sen_gaddr2;
375         ushort  sen_gaddr3;
376         ushort  sen_gaddr4;
377         uint    sen_tbuf0data0; /* Save area 0 - current frame */
378         uint    sen_tbuf0data1; /* Save area 1 - current frame */
379         uint    sen_tbuf0rba;   /* Internal */
380         uint    sen_tbuf0crc;   /* Internal */
381         ushort  sen_tbuf0bcnt;  /* Internal */
382         ushort  sen_paddrh;     /* physical address (MSB) */
383         ushort  sen_paddrm;
384         ushort  sen_paddrl;     /* physical address (LSB) */
385         ushort  sen_pper;       /* persistence */
386         ushort  sen_rfbdptr;    /* Rx first BD pointer */
387         ushort  sen_tfbdptr;    /* Tx first BD pointer */
388         ushort  sen_tlbdptr;    /* Tx last BD pointer */
389         uint    sen_tbuf1data0; /* Save area 0 - current frame */
390         uint    sen_tbuf1data1; /* Save area 1 - current frame */
391         uint    sen_tbuf1rba;   /* Internal */
392         uint    sen_tbuf1crc;   /* Internal */
393         ushort  sen_tbuf1bcnt;  /* Internal */
394         ushort  sen_txlen;      /* Tx Frame length counter */
395         ushort  sen_iaddr1;     /* Individual address filter */
396         ushort  sen_iaddr2;
397         ushort  sen_iaddr3;
398         ushort  sen_iaddr4;
399         ushort  sen_boffcnt;    /* Backoff counter */
400
401         /* NOTE: Some versions of the manual have the following items
402          * incorrectly documented.  Below is the proper order.
403          */
404         ushort  sen_taddrh;     /* temp address (MSB) */
405         ushort  sen_taddrm;
406         ushort  sen_taddrl;     /* temp address (LSB) */
407 } scc_enet_t;
408
409
410 /* SCC Event register as used by Ethernet.
411 */
412 #define SCCE_ENET_GRA   ((ushort)0x0080)        /* Graceful stop complete */
413 #define SCCE_ENET_TXE   ((ushort)0x0010)        /* Transmit Error */
414 #define SCCE_ENET_RXF   ((ushort)0x0008)        /* Full frame received */
415 #define SCCE_ENET_BSY   ((ushort)0x0004)        /* All incoming buffers full */
416 #define SCCE_ENET_TXB   ((ushort)0x0002)        /* A buffer was transmitted */
417 #define SCCE_ENET_RXB   ((ushort)0x0001)        /* A buffer was received */
418
419 /* SCC Mode Register (PSMR) as used by Ethernet.
420 */
421 #define SCC_PSMR_HBC    ((ushort)0x8000)        /* Enable heartbeat */
422 #define SCC_PSMR_FC     ((ushort)0x4000)        /* Force collision */
423 #define SCC_PSMR_RSH    ((ushort)0x2000)        /* Receive short frames */
424 #define SCC_PSMR_IAM    ((ushort)0x1000)        /* Check individual hash */
425 #define SCC_PSMR_ENCRC  ((ushort)0x0800)        /* Ethernet CRC mode */
426 #define SCC_PSMR_PRO    ((ushort)0x0200)        /* Promiscuous mode */
427 #define SCC_PSMR_BRO    ((ushort)0x0100)        /* Catch broadcast pkts */
428 #define SCC_PSMR_SBT    ((ushort)0x0080)        /* Special backoff timer */
429 #define SCC_PSMR_LPB    ((ushort)0x0040)        /* Set Loopback mode */
430 #define SCC_PSMR_SIP    ((ushort)0x0020)        /* Sample Input Pins */
431 #define SCC_PSMR_LCW    ((ushort)0x0010)        /* Late collision window */
432 #define SCC_PSMR_NIB22  ((ushort)0x000a)        /* Start frame search */
433 #define SCC_PSMR_FDE    ((ushort)0x0001)        /* Full duplex enable */
434
435 /* Buffer descriptor control/status used by Ethernet receive.
436  * Common to SCC and FCC.
437  */
438 #define BD_ENET_RX_EMPTY        ((ushort)0x8000)
439 #define BD_ENET_RX_WRAP         ((ushort)0x2000)
440 #define BD_ENET_RX_INTR         ((ushort)0x1000)
441 #define BD_ENET_RX_LAST         ((ushort)0x0800)
442 #define BD_ENET_RX_FIRST        ((ushort)0x0400)
443 #define BD_ENET_RX_MISS         ((ushort)0x0100)
444 #define BD_ENET_RX_BC           ((ushort)0x0080)        /* FCC Only */
445 #define BD_ENET_RX_MC           ((ushort)0x0040)        /* FCC Only */
446 #define BD_ENET_RX_LG           ((ushort)0x0020)
447 #define BD_ENET_RX_NO           ((ushort)0x0010)
448 #define BD_ENET_RX_SH           ((ushort)0x0008)
449 #define BD_ENET_RX_CR           ((ushort)0x0004)
450 #define BD_ENET_RX_OV           ((ushort)0x0002)
451 #define BD_ENET_RX_CL           ((ushort)0x0001)
452 #define BD_ENET_RX_STATS        ((ushort)0x01ff)        /* All status bits */
453
454 /* Buffer descriptor control/status used by Ethernet transmit.
455  * Common to SCC and FCC.
456  */
457 #define BD_ENET_TX_READY        ((ushort)0x8000)
458 #define BD_ENET_TX_PAD          ((ushort)0x4000)
459 #define BD_ENET_TX_WRAP         ((ushort)0x2000)
460 #define BD_ENET_TX_INTR         ((ushort)0x1000)
461 #define BD_ENET_TX_LAST         ((ushort)0x0800)
462 #define BD_ENET_TX_TC           ((ushort)0x0400)
463 #define BD_ENET_TX_DEF          ((ushort)0x0200)
464 #define BD_ENET_TX_HB           ((ushort)0x0100)
465 #define BD_ENET_TX_LC           ((ushort)0x0080)
466 #define BD_ENET_TX_RL           ((ushort)0x0040)
467 #define BD_ENET_TX_RCMASK       ((ushort)0x003c)
468 #define BD_ENET_TX_UN           ((ushort)0x0002)
469 #define BD_ENET_TX_CSL          ((ushort)0x0001)
470 #define BD_ENET_TX_STATS        ((ushort)0x03ff)        /* All status bits */
471
472 /* SCC as UART
473 */
474 typedef struct scc_uart {
475         sccp_t  scc_genscc;
476         uint    scc_res1;       /* Reserved */
477         uint    scc_res2;       /* Reserved */
478         ushort  scc_maxidl;     /* Maximum idle chars */
479         ushort  scc_idlc;       /* temp idle counter */
480         ushort  scc_brkcr;      /* Break count register */
481         ushort  scc_parec;      /* receive parity error counter */
482         ushort  scc_frmec;      /* receive framing error counter */
483         ushort  scc_nosec;      /* receive noise counter */
484         ushort  scc_brkec;      /* receive break condition counter */
485         ushort  scc_brkln;      /* last received break length */
486         ushort  scc_uaddr1;     /* UART address character 1 */
487         ushort  scc_uaddr2;     /* UART address character 2 */
488         ushort  scc_rtemp;      /* Temp storage */
489         ushort  scc_toseq;      /* Transmit out of sequence char */
490         ushort  scc_char1;      /* control character 1 */
491         ushort  scc_char2;      /* control character 2 */
492         ushort  scc_char3;      /* control character 3 */
493         ushort  scc_char4;      /* control character 4 */
494         ushort  scc_char5;      /* control character 5 */
495         ushort  scc_char6;      /* control character 6 */
496         ushort  scc_char7;      /* control character 7 */
497         ushort  scc_char8;      /* control character 8 */
498         ushort  scc_rccm;       /* receive control character mask */
499         ushort  scc_rccr;       /* receive control character register */
500         ushort  scc_rlbc;       /* receive last break character */
501 } scc_uart_t;
502
503 /* SCC Event and Mask registers when it is used as a UART.
504 */
505 #define UART_SCCM_GLR           ((ushort)0x1000)
506 #define UART_SCCM_GLT           ((ushort)0x0800)
507 #define UART_SCCM_AB            ((ushort)0x0200)
508 #define UART_SCCM_IDL           ((ushort)0x0100)
509 #define UART_SCCM_GRA           ((ushort)0x0080)
510 #define UART_SCCM_BRKE          ((ushort)0x0040)
511 #define UART_SCCM_BRKS          ((ushort)0x0020)
512 #define UART_SCCM_CCR           ((ushort)0x0008)
513 #define UART_SCCM_BSY           ((ushort)0x0004)
514 #define UART_SCCM_TX            ((ushort)0x0002)
515 #define UART_SCCM_RX            ((ushort)0x0001)
516
517 /* The SCC PSMR when used as a UART.
518 */
519 #define SCU_PSMR_FLC            ((ushort)0x8000)
520 #define SCU_PSMR_SL             ((ushort)0x4000)
521 #define SCU_PSMR_CL             ((ushort)0x3000)
522 #define SCU_PSMR_UM             ((ushort)0x0c00)
523 #define SCU_PSMR_FRZ            ((ushort)0x0200)
524 #define SCU_PSMR_RZS            ((ushort)0x0100)
525 #define SCU_PSMR_SYN            ((ushort)0x0080)
526 #define SCU_PSMR_DRT            ((ushort)0x0040)
527 #define SCU_PSMR_PEN            ((ushort)0x0010)
528 #define SCU_PSMR_RPM            ((ushort)0x000c)
529 #define SCU_PSMR_REVP           ((ushort)0x0008)
530 #define SCU_PSMR_TPM            ((ushort)0x0003)
531 #define SCU_PSMR_TEVP           ((ushort)0x0003)
532
533 /* CPM Transparent mode SCC.
534  */
535 typedef struct scc_trans {
536         sccp_t  st_genscc;
537         uint    st_cpres;       /* Preset CRC */
538         uint    st_cmask;       /* Constant mask for CRC */
539 } scc_trans_t;
540
541 #define BD_SCC_TX_LAST          ((ushort)0x0800)
542
543 /* How about some FCCs.....
544 */
545 #define FCC_GFMR_DIAG_NORM      ((uint)0x00000000)
546 #define FCC_GFMR_DIAG_LE        ((uint)0x40000000)
547 #define FCC_GFMR_DIAG_AE        ((uint)0x80000000)
548 #define FCC_GFMR_DIAG_ALE       ((uint)0xc0000000)
549 #define FCC_GFMR_TCI            ((uint)0x20000000)
550 #define FCC_GFMR_TRX            ((uint)0x10000000)
551 #define FCC_GFMR_TTX            ((uint)0x08000000)
552 #define FCC_GFMR_TTX            ((uint)0x08000000)
553 #define FCC_GFMR_CDP            ((uint)0x04000000)
554 #define FCC_GFMR_CTSP           ((uint)0x02000000)
555 #define FCC_GFMR_CDS            ((uint)0x01000000)
556 #define FCC_GFMR_CTSS           ((uint)0x00800000)
557 #define FCC_GFMR_SYNL_NONE      ((uint)0x00000000)
558 #define FCC_GFMR_SYNL_AUTO      ((uint)0x00004000)
559 #define FCC_GFMR_SYNL_8         ((uint)0x00008000)
560 #define FCC_GFMR_SYNL_16        ((uint)0x0000c000)
561 #define FCC_GFMR_RTSM           ((uint)0x00002000)
562 #define FCC_GFMR_RENC_NRZ       ((uint)0x00000000)
563 #define FCC_GFMR_RENC_NRZI      ((uint)0x00000800)
564 #define FCC_GFMR_REVD           ((uint)0x00000400)
565 #define FCC_GFMR_TENC_NRZ       ((uint)0x00000000)
566 #define FCC_GFMR_TENC_NRZI      ((uint)0x00000100)
567 #define FCC_GFMR_TCRC_16        ((uint)0x00000000)
568 #define FCC_GFMR_TCRC_32        ((uint)0x00000080)
569 #define FCC_GFMR_ENR            ((uint)0x00000020)
570 #define FCC_GFMR_ENT            ((uint)0x00000010)
571 #define FCC_GFMR_MODE_ENET      ((uint)0x0000000c)
572 #define FCC_GFMR_MODE_ATM       ((uint)0x0000000a)
573 #define FCC_GFMR_MODE_HDLC      ((uint)0x00000000)
574
575 /* Generic FCC parameter ram.
576 */
577 typedef struct fcc_param {
578         ushort  fcc_riptr;      /* Rx Internal temp pointer */
579         ushort  fcc_tiptr;      /* Tx Internal temp pointer */
580         ushort  fcc_res1;
581         ushort  fcc_mrblr;      /* Max receive buffer length, mod 32 bytes */
582         uint    fcc_rstate;     /* Upper byte is Func code, must be set */
583         uint    fcc_rbase;      /* Receive BD base */
584         ushort  fcc_rbdstat;    /* RxBD status */
585         ushort  fcc_rbdlen;     /* RxBD down counter */
586         uint    fcc_rdptr;      /* RxBD internal data pointer */
587         uint    fcc_tstate;     /* Upper byte is Func code, must be set */
588         uint    fcc_tbase;      /* Transmit BD base */
589         ushort  fcc_tbdstat;    /* TxBD status */
590         ushort  fcc_tbdlen;     /* TxBD down counter */
591         uint    fcc_tdptr;      /* TxBD internal data pointer */
592         uint    fcc_rbptr;      /* Rx BD Internal buf pointer */
593         uint    fcc_tbptr;      /* Tx BD Internal buf pointer */
594         uint    fcc_rcrc;       /* Rx temp CRC */
595         uint    fcc_res2;
596         uint    fcc_tcrc;       /* Tx temp CRC */
597 } fccp_t;
598
599
600 /* Ethernet controller through FCC.
601 */
602 typedef struct fcc_enet {
603         fccp_t  fen_genfcc;
604         uint    fen_statbuf;    /* Internal status buffer */
605         uint    fen_camptr;     /* CAM address */
606         uint    fen_cmask;      /* Constant mask for CRC */
607         uint    fen_cpres;      /* Preset CRC */
608         uint    fen_crcec;      /* CRC Error counter */
609         uint    fen_alec;       /* alignment error counter */
610         uint    fen_disfc;      /* discard frame counter */
611         ushort  fen_retlim;     /* Retry limit */
612         ushort  fen_retcnt;     /* Retry counter */
613         ushort  fen_pper;       /* Persistence */
614         ushort  fen_boffcnt;    /* backoff counter */
615         uint    fen_gaddrh;     /* Group address filter, high 32-bits */
616         uint    fen_gaddrl;     /* Group address filter, low 32-bits */
617         ushort  fen_tfcstat;    /* out of sequence TxBD */
618         ushort  fen_tfclen;
619         uint    fen_tfcptr;
620         ushort  fen_mflr;       /* Maximum frame length (1518) */
621         ushort  fen_paddrh;     /* MAC address */
622         ushort  fen_paddrm;
623         ushort  fen_paddrl;
624         ushort  fen_ibdcount;   /* Internal BD counter */
625         ushort  fen_ibdstart;   /* Internal BD start pointer */
626         ushort  fen_ibdend;     /* Internal BD end pointer */
627         ushort  fen_txlen;      /* Internal Tx frame length counter */
628         uint    fen_ibdbase[8]; /* Internal use */
629         uint    fen_iaddrh;     /* Individual address filter */
630         uint    fen_iaddrl;
631         ushort  fen_minflr;     /* Minimum frame length (64) */
632         ushort  fen_taddrh;     /* Filter transfer MAC address */
633         ushort  fen_taddrm;
634         ushort  fen_taddrl;
635         ushort  fen_padptr;     /* Pointer to pad byte buffer */
636         ushort  fen_cftype;     /* control frame type */
637         ushort  fen_cfrange;    /* control frame range */
638         ushort  fen_maxb;       /* maximum BD count */
639         ushort  fen_maxd1;      /* Max DMA1 length (1520) */
640         ushort  fen_maxd2;      /* Max DMA2 length (1520) */
641         ushort  fen_maxd;       /* internal max DMA count */
642         ushort  fen_dmacnt;     /* internal DMA counter */
643         uint    fen_octc;       /* Total octect counter */
644         uint    fen_colc;       /* Total collision counter */
645         uint    fen_broc;       /* Total broadcast packet counter */
646         uint    fen_mulc;       /* Total multicast packet count */
647         uint    fen_uspc;       /* Total packets < 64 bytes */
648         uint    fen_frgc;       /* Total packets < 64 bytes with errors */
649         uint    fen_ospc;       /* Total packets > 1518 */
650         uint    fen_jbrc;       /* Total packets > 1518 with errors */
651         uint    fen_p64c;       /* Total packets == 64 bytes */
652         uint    fen_p65c;       /* Total packets 64 < bytes <= 127 */
653         uint    fen_p128c;      /* Total packets 127 < bytes <= 255 */
654         uint    fen_p256c;      /* Total packets 256 < bytes <= 511 */
655         uint    fen_p512c;      /* Total packets 512 < bytes <= 1023 */
656         uint    fen_p1024c;     /* Total packets 1024 < bytes <= 1518 */
657         uint    fen_cambuf;     /* Internal CAM buffer poiner */
658         ushort  fen_rfthr;      /* Received frames threshold */
659         ushort  fen_rfcnt;      /* Received frames count */
660 } fcc_enet_t;
661
662 /* FCC Event/Mask register as used by Ethernet.
663 */
664 #define FCC_ENET_GRA    ((ushort)0x0080)        /* Graceful stop complete */
665 #define FCC_ENET_RXC    ((ushort)0x0040)        /* Control Frame Received */
666 #define FCC_ENET_TXC    ((ushort)0x0020)        /* Out of seq. Tx sent */
667 #define FCC_ENET_TXE    ((ushort)0x0010)        /* Transmit Error */
668 #define FCC_ENET_RXF    ((ushort)0x0008)        /* Full frame received */
669 #define FCC_ENET_BSY    ((ushort)0x0004)        /* Busy.  Rx Frame dropped */
670 #define FCC_ENET_TXB    ((ushort)0x0002)        /* A buffer was transmitted */
671 #define FCC_ENET_RXB    ((ushort)0x0001)        /* A buffer was received */
672
673 /* FCC Mode Register (FPSMR) as used by Ethernet.
674 */
675 #define FCC_PSMR_HBC    ((uint)0x80000000)      /* Enable heartbeat */
676 #define FCC_PSMR_FC     ((uint)0x40000000)      /* Force Collision */
677 #define FCC_PSMR_SBT    ((uint)0x20000000)      /* Stop backoff timer */
678 #define FCC_PSMR_LPB    ((uint)0x10000000)      /* Local protect. 1 = FDX */
679 #define FCC_PSMR_LCW    ((uint)0x08000000)      /* Late collision select */
680 #define FCC_PSMR_FDE    ((uint)0x04000000)      /* Full Duplex Enable */
681 #define FCC_PSMR_MON    ((uint)0x02000000)      /* RMON Enable */
682 #define FCC_PSMR_PRO    ((uint)0x00400000)      /* Promiscuous Enable */
683 #define FCC_PSMR_FCE    ((uint)0x00200000)      /* Flow Control Enable */
684 #define FCC_PSMR_RSH    ((uint)0x00100000)      /* Receive Short Frames */
685 #define FCC_PSMR_CAM    ((uint)0x00000400)      /* CAM enable */
686 #define FCC_PSMR_BRO    ((uint)0x00000200)      /* Broadcast pkt discard */
687 #define FCC_PSMR_ENCRC  ((uint)0x00000080)      /* Use 32-bit CRC */
688
689 /* IIC parameter RAM.
690 */
691 typedef struct iic {
692         ushort  iic_rbase;      /* Rx Buffer descriptor base address */
693         ushort  iic_tbase;      /* Tx Buffer descriptor base address */
694         u_char  iic_rfcr;       /* Rx function code */
695         u_char  iic_tfcr;       /* Tx function code */
696         ushort  iic_mrblr;      /* Max receive buffer length */
697         uint    iic_rstate;     /* Internal */
698         uint    iic_rdp;        /* Internal */
699         ushort  iic_rbptr;      /* Internal */
700         ushort  iic_rbc;        /* Internal */
701         uint    iic_rxtmp;      /* Internal */
702         uint    iic_tstate;     /* Internal */
703         uint    iic_tdp;        /* Internal */
704         ushort  iic_tbptr;      /* Internal */
705         ushort  iic_tbc;        /* Internal */
706         uint    iic_txtmp;      /* Internal */
707 } iic_t;
708
709 /* SPI parameter RAM.
710 */
711 typedef struct spi {
712         ushort  spi_rbase;      /* Rx Buffer descriptor base address */
713         ushort  spi_tbase;      /* Tx Buffer descriptor base address */
714         u_char  spi_rfcr;       /* Rx function code */
715         u_char  spi_tfcr;       /* Tx function code */
716         ushort  spi_mrblr;      /* Max receive buffer length */
717         uint    spi_rstate;     /* Internal */
718         uint    spi_rdp;        /* Internal */
719         ushort  spi_rbptr;      /* Internal */
720         ushort  spi_rbc;        /* Internal */
721         uint    spi_rxtmp;      /* Internal */
722         uint    spi_tstate;     /* Internal */
723         uint    spi_tdp;        /* Internal */
724         ushort  spi_tbptr;      /* Internal */
725         ushort  spi_tbc;        /* Internal */
726         uint    spi_txtmp;      /* Internal */
727         uint    spi_res;        /* Tx temp. */
728         uint    spi_res1[4];    /* SDMA temp. */
729 } spi_t;
730
731 /* SPI Mode register.
732 */
733 #define SPMODE_LOOP     ((ushort)0x4000)        /* Loopback */
734 #define SPMODE_CI       ((ushort)0x2000)        /* Clock Invert */
735 #define SPMODE_CP       ((ushort)0x1000)        /* Clock Phase */
736 #define SPMODE_DIV16    ((ushort)0x0800)        /* BRG/16 mode */
737 #define SPMODE_REV      ((ushort)0x0400)        /* Reversed Data */
738 #define SPMODE_MSTR     ((ushort)0x0200)        /* SPI Master */
739 #define SPMODE_EN       ((ushort)0x0100)        /* Enable */
740 #define SPMODE_LENMSK   ((ushort)0x00f0)        /* character length */
741 #define SPMODE_PMMSK    ((ushort)0x000f)        /* prescale modulus */
742
743 #define SPMODE_LEN(x)   ((((x)-1)&0xF)<<4)
744 #define SPMODE_PM(x)    ((x) &0xF)
745
746 #define SPI_EB          ((u_char)0x10)          /* big endian byte order */
747
748 #define BD_IIC_START            ((ushort)0x0400)
749
750 /* IDMA parameter RAM
751 */
752 typedef struct idma {
753         ushort ibase;           /* IDMA buffer descriptor table base address */
754         ushort dcm;             /* DMA channel mode */
755         ushort ibdptr;          /* IDMA current buffer descriptor pointer */
756         ushort dpr_buf;         /* IDMA transfer buffer base address */
757         ushort buf_inv;         /* internal buffer inventory */
758         ushort ss_max;          /* steady-state maximum transfer size */
759         ushort dpr_in_ptr;      /* write pointer inside the internal buffer */
760         ushort sts;             /* source transfer size */
761         ushort dpr_out_ptr;     /* read pointer inside the internal buffer */
762         ushort seob;            /* source end of burst */
763         ushort deob;            /* destination end of burst */
764         ushort dts;             /* destination transfer size */
765         ushort ret_add;         /* return address when working in ERM=1 mode */
766         ushort res0;            /* reserved */
767         uint   bd_cnt;          /* internal byte count */
768         uint   s_ptr;           /* source internal data pointer */
769         uint   d_ptr;           /* destination internal data pointer */
770         uint   istate;          /* internal state */
771         u_char res1[20];        /* pad to 64-byte length */
772 } idma_t;
773
774 /* DMA channel mode bit fields
775 */
776 #define IDMA_DCM_FB             ((ushort)0x8000) /* fly-by mode */
777 #define IDMA_DCM_LP             ((ushort)0x4000) /* low priority */
778 #define IDMA_DCM_TC2            ((ushort)0x0400) /* value driven on TC[2] */
779 #define IDMA_DCM_DMA_WRAP_MASK  ((ushort)0x01c0) /* mask for DMA wrap */
780 #define IDMA_DCM_DMA_WRAP_64    ((ushort)0x0000) /* 64-byte DMA xfer buffer */
781 #define IDMA_DCM_DMA_WRAP_128   ((ushort)0x0040) /* 128-byte DMA xfer buffer */
782 #define IDMA_DCM_DMA_WRAP_256   ((ushort)0x0080) /* 256-byte DMA xfer buffer */
783 #define IDMA_DCM_DMA_WRAP_512   ((ushort)0x00c0) /* 512-byte DMA xfer buffer */
784 #define IDMA_DCM_DMA_WRAP_1024  ((ushort)0x0100) /* 1024-byte DMA xfer buffer */
785 #define IDMA_DCM_DMA_WRAP_2048  ((ushort)0x0140) /* 2048-byte DMA xfer buffer */
786 #define IDMA_DCM_SINC           ((ushort)0x0020) /* source inc addr */
787 #define IDMA_DCM_DINC           ((ushort)0x0010) /* destination inc addr */
788 #define IDMA_DCM_ERM            ((ushort)0x0008) /* external request mode */
789 #define IDMA_DCM_DT             ((ushort)0x0004) /* DONE treatment */
790 #define IDMA_DCM_SD_MASK        ((ushort)0x0003) /* mask for SD bit field */
791 #define IDMA_DCM_SD_MEM2MEM     ((ushort)0x0000) /* memory-to-memory xfer */
792 #define IDMA_DCM_SD_PER2MEM     ((ushort)0x0002) /* peripheral-to-memory xfer */
793 #define IDMA_DCM_SD_MEM2PER     ((ushort)0x0001) /* memory-to-peripheral xfer */
794
795 /* IDMA Buffer Descriptors
796 */
797 typedef struct idma_bd {
798         uint flags;
799         uint len;       /* data length */
800         uint src;       /* source data buffer pointer */
801         uint dst;       /* destination data buffer pointer */
802 } idma_bd_t;
803
804 /* IDMA buffer descriptor flag bit fields
805 */
806 #define IDMA_BD_V       ((uint)0x80000000)      /* valid */
807 #define IDMA_BD_W       ((uint)0x20000000)      /* wrap */
808 #define IDMA_BD_I       ((uint)0x10000000)      /* interrupt */
809 #define IDMA_BD_L       ((uint)0x08000000)      /* last */
810 #define IDMA_BD_CM      ((uint)0x02000000)      /* continuous mode */
811 #define IDMA_BD_SDN     ((uint)0x00400000)      /* source done */
812 #define IDMA_BD_DDN     ((uint)0x00200000)      /* destination done */
813 #define IDMA_BD_DGBL    ((uint)0x00100000)      /* destination global */
814 #define IDMA_BD_DBO_LE  ((uint)0x00040000)      /* little-end dest byte order */
815 #define IDMA_BD_DBO_BE  ((uint)0x00080000)      /* big-end dest byte order */
816 #define IDMA_BD_DDTB    ((uint)0x00010000)      /* destination data bus */
817 #define IDMA_BD_SGBL    ((uint)0x00002000)      /* source global */
818 #define IDMA_BD_SBO_LE  ((uint)0x00000800)      /* little-end src byte order */
819 #define IDMA_BD_SBO_BE  ((uint)0x00001000)      /* big-end src byte order */
820 #define IDMA_BD_SDTB    ((uint)0x00000200)      /* source data bus */
821
822 /* per-channel IDMA registers
823 */
824 typedef struct im_idma {
825         u_char idsr;                    /* IDMAn event status register */
826         u_char res0[3];
827         u_char idmr;                    /* IDMAn event mask register */
828         u_char res1[3];
829 } im_idma_t;
830
831 /* IDMA event register bit fields
832 */
833 #define IDMA_EVENT_SC   ((unsigned char)0x08)   /* stop completed */
834 #define IDMA_EVENT_OB   ((unsigned char)0x04)   /* out of buffers */
835 #define IDMA_EVENT_EDN  ((unsigned char)0x02)   /* external DONE asserted */
836 #define IDMA_EVENT_BC   ((unsigned char)0x01)   /* buffer descriptor complete */
837
838 /* RISC Controller Configuration Register (RCCR) bit fields
839 */
840 #define RCCR_TIME       ((uint)0x80000000) /* timer enable */
841 #define RCCR_TIMEP_MASK ((uint)0x3f000000) /* mask for timer period bit field */
842 #define RCCR_DR0M       ((uint)0x00800000) /* IDMA0 request mode */
843 #define RCCR_DR1M       ((uint)0x00400000) /* IDMA1 request mode */
844 #define RCCR_DR2M       ((uint)0x00000080) /* IDMA2 request mode */
845 #define RCCR_DR3M       ((uint)0x00000040) /* IDMA3 request mode */
846 #define RCCR_DR0QP_MASK ((uint)0x00300000) /* mask for IDMA0 req priority */
847 #define RCCR_DR0QP_HIGH ((uint)0x00000000) /* IDMA0 has high req priority */
848 #define RCCR_DR0QP_MED  ((uint)0x00100000) /* IDMA0 has medium req priority */
849 #define RCCR_DR0QP_LOW  ((uint)0x00200000) /* IDMA0 has low req priority */
850 #define RCCR_DR1QP_MASK ((uint)0x00030000) /* mask for IDMA1 req priority */
851 #define RCCR_DR1QP_HIGH ((uint)0x00000000) /* IDMA1 has high req priority */
852 #define RCCR_DR1QP_MED  ((uint)0x00010000) /* IDMA1 has medium req priority */
853 #define RCCR_DR1QP_LOW  ((uint)0x00020000) /* IDMA1 has low req priority */
854 #define RCCR_DR2QP_MASK ((uint)0x00000030) /* mask for IDMA2 req priority */
855 #define RCCR_DR2QP_HIGH ((uint)0x00000000) /* IDMA2 has high req priority */
856 #define RCCR_DR2QP_MED  ((uint)0x00000010) /* IDMA2 has medium req priority */
857 #define RCCR_DR2QP_LOW  ((uint)0x00000020) /* IDMA2 has low req priority */
858 #define RCCR_DR3QP_MASK ((uint)0x00000003) /* mask for IDMA3 req priority */
859 #define RCCR_DR3QP_HIGH ((uint)0x00000000) /* IDMA3 has high req priority */
860 #define RCCR_DR3QP_MED  ((uint)0x00000001) /* IDMA3 has medium req priority */
861 #define RCCR_DR3QP_LOW  ((uint)0x00000002) /* IDMA3 has low req priority */
862 #define RCCR_EIE        ((uint)0x00080000) /* external interrupt enable */
863 #define RCCR_SCD        ((uint)0x00040000) /* scheduler configuration */
864 #define RCCR_ERAM_MASK  ((uint)0x0000e000) /* mask for enable RAM microcode */
865 #define RCCR_ERAM_0KB   ((uint)0x00000000) /* use 0KB of dpram for microcode */
866 #define RCCR_ERAM_2KB   ((uint)0x00002000) /* use 2KB of dpram for microcode */
867 #define RCCR_ERAM_4KB   ((uint)0x00004000) /* use 4KB of dpram for microcode */
868 #define RCCR_ERAM_6KB   ((uint)0x00006000) /* use 6KB of dpram for microcode */
869 #define RCCR_ERAM_8KB   ((uint)0x00008000) /* use 8KB of dpram for microcode */
870 #define RCCR_ERAM_10KB  ((uint)0x0000a000) /* use 10KB of dpram for microcode */
871 #define RCCR_ERAM_12KB  ((uint)0x0000c000) /* use 12KB of dpram for microcode */
872 #define RCCR_EDM0       ((uint)0x00000800) /* DREQ0 edge detect mode */
873 #define RCCR_EDM1       ((uint)0x00000400) /* DREQ1 edge detect mode */
874 #define RCCR_EDM2       ((uint)0x00000200) /* DREQ2 edge detect mode */
875 #define RCCR_EDM3       ((uint)0x00000100) /* DREQ3 edge detect mode */
876 #define RCCR_DEM01      ((uint)0x00000008) /* DONE0/DONE1 edge detect mode */
877 #define RCCR_DEM23      ((uint)0x00000004) /* DONE2/DONE3 edge detect mode */
878
879 /*-----------------------------------------------------------------------
880  * CMXFCR - CMX FCC Clock Route Register
881  */
882 #define CMXFCR_FC1         0x40000000   /* FCC1 connection              */
883 #define CMXFCR_RF1CS_MSK   0x38000000   /* Receive FCC1 Clock Source Mask */
884 #define CMXFCR_TF1CS_MSK   0x07000000   /* Transmit FCC1 Clock Source Mask */
885 #define CMXFCR_FC2         0x00400000   /* FCC2 connection              */
886 #define CMXFCR_RF2CS_MSK   0x00380000   /* Receive FCC2 Clock Source Mask */
887 #define CMXFCR_TF2CS_MSK   0x00070000   /* Transmit FCC2 Clock Source Mask */
888 #define CMXFCR_FC3         0x00004000   /* FCC3 connection              */
889 #define CMXFCR_RF3CS_MSK   0x00003800   /* Receive FCC3 Clock Source Mask */
890 #define CMXFCR_TF3CS_MSK   0x00000700   /* Transmit FCC3 Clock Source Mask */
891
892 #define CMXFCR_RF1CS_BRG5  0x00000000   /* Receive FCC1 Clock Source is BRG5 */
893 #define CMXFCR_RF1CS_BRG6  0x08000000   /* Receive FCC1 Clock Source is BRG6 */
894 #define CMXFCR_RF1CS_BRG7  0x10000000   /* Receive FCC1 Clock Source is BRG7 */
895 #define CMXFCR_RF1CS_BRG8  0x18000000   /* Receive FCC1 Clock Source is BRG8 */
896 #define CMXFCR_RF1CS_CLK9  0x20000000   /* Receive FCC1 Clock Source is CLK9 */
897 #define CMXFCR_RF1CS_CLK10 0x28000000   /* Receive FCC1 Clock Source is CLK10 */
898 #define CMXFCR_RF1CS_CLK11 0x30000000   /* Receive FCC1 Clock Source is CLK11 */
899 #define CMXFCR_RF1CS_CLK12 0x38000000   /* Receive FCC1 Clock Source is CLK12 */
900
901 #define CMXFCR_TF1CS_BRG5  0x00000000   /* Transmit FCC1 Clock Source is BRG5 */
902 #define CMXFCR_TF1CS_BRG6  0x01000000   /* Transmit FCC1 Clock Source is BRG6 */
903 #define CMXFCR_TF1CS_BRG7  0x02000000   /* Transmit FCC1 Clock Source is BRG7 */
904 #define CMXFCR_TF1CS_BRG8  0x03000000   /* Transmit FCC1 Clock Source is BRG8 */
905 #define CMXFCR_TF1CS_CLK9  0x04000000   /* Transmit FCC1 Clock Source is CLK9 */
906 #define CMXFCR_TF1CS_CLK10 0x05000000   /* Transmit FCC1 Clock Source is CLK10 */
907 #define CMXFCR_TF1CS_CLK11 0x06000000   /* Transmit FCC1 Clock Source is CLK11 */
908 #define CMXFCR_TF1CS_CLK12 0x07000000   /* Transmit FCC1 Clock Source is CLK12 */
909
910 #define CMXFCR_RF2CS_BRG5  0x00000000   /* Receive FCC2 Clock Source is BRG5 */
911 #define CMXFCR_RF2CS_BRG6  0x00080000   /* Receive FCC2 Clock Source is BRG6 */
912 #define CMXFCR_RF2CS_BRG7  0x00100000   /* Receive FCC2 Clock Source is BRG7 */
913 #define CMXFCR_RF2CS_BRG8  0x00180000   /* Receive FCC2 Clock Source is BRG8 */
914 #define CMXFCR_RF2CS_CLK13 0x00200000   /* Receive FCC2 Clock Source is CLK13 */
915 #define CMXFCR_RF2CS_CLK14 0x00280000   /* Receive FCC2 Clock Source is CLK14 */
916 #define CMXFCR_RF2CS_CLK15 0x00300000   /* Receive FCC2 Clock Source is CLK15 */
917 #define CMXFCR_RF2CS_CLK16 0x00380000   /* Receive FCC2 Clock Source is CLK16 */
918
919 #define CMXFCR_TF2CS_BRG5  0x00000000   /* Transmit FCC2 Clock Source is BRG5 */
920 #define CMXFCR_TF2CS_BRG6  0x00010000   /* Transmit FCC2 Clock Source is BRG6 */
921 #define CMXFCR_TF2CS_BRG7  0x00020000   /* Transmit FCC2 Clock Source is BRG7 */
922 #define CMXFCR_TF2CS_BRG8  0x00030000   /* Transmit FCC2 Clock Source is BRG8 */
923 #define CMXFCR_TF2CS_CLK13 0x00040000   /* Transmit FCC2 Clock Source is CLK13 */
924 #define CMXFCR_TF2CS_CLK14 0x00050000   /* Transmit FCC2 Clock Source is CLK14 */
925 #define CMXFCR_TF2CS_CLK15 0x00060000   /* Transmit FCC2 Clock Source is CLK15 */
926 #define CMXFCR_TF2CS_CLK16 0x00070000   /* Transmit FCC2 Clock Source is CLK16 */
927
928 #define CMXFCR_RF3CS_BRG5  0x00000000   /* Receive FCC3 Clock Source is BRG5 */
929 #define CMXFCR_RF3CS_BRG6  0x00000800   /* Receive FCC3 Clock Source is BRG6 */
930 #define CMXFCR_RF3CS_BRG7  0x00001000   /* Receive FCC3 Clock Source is BRG7 */
931 #define CMXFCR_RF3CS_BRG8  0x00001800   /* Receive FCC3 Clock Source is BRG8 */
932 #define CMXFCR_RF3CS_CLK13 0x00002000   /* Receive FCC3 Clock Source is CLK13 */
933 #define CMXFCR_RF3CS_CLK14 0x00002800   /* Receive FCC3 Clock Source is CLK14 */
934 #define CMXFCR_RF3CS_CLK15 0x00003000   /* Receive FCC3 Clock Source is CLK15 */
935 #define CMXFCR_RF3CS_CLK16 0x00003800   /* Receive FCC3 Clock Source is CLK16 */
936
937 #define CMXFCR_TF3CS_BRG5  0x00000000   /* Transmit FCC3 Clock Source is BRG5 */
938 #define CMXFCR_TF3CS_BRG6  0x00000100   /* Transmit FCC3 Clock Source is BRG6 */
939 #define CMXFCR_TF3CS_BRG7  0x00000200   /* Transmit FCC3 Clock Source is BRG7 */
940 #define CMXFCR_TF3CS_BRG8  0x00000300   /* Transmit FCC3 Clock Source is BRG8 */
941 #define CMXFCR_TF3CS_CLK13 0x00000400   /* Transmit FCC3 Clock Source is CLK13 */
942 #define CMXFCR_TF3CS_CLK14 0x00000500   /* Transmit FCC3 Clock Source is CLK14 */
943 #define CMXFCR_TF3CS_CLK15 0x00000600   /* Transmit FCC3 Clock Source is CLK15 */
944 #define CMXFCR_TF3CS_CLK16 0x00000700   /* Transmit FCC3 Clock Source is CLK16 */
945
946 /*-----------------------------------------------------------------------
947  * CMXSCR - CMX SCC Clock Route Register
948  */
949 #define CMXSCR_GR1         0x80000000   /* Grant Support of SCC1        */
950 #define CMXSCR_SC1         0x40000000   /* SCC1 connection              */
951 #define CMXSCR_RS1CS_MSK   0x38000000   /* Receive SCC1 Clock Source Mask */
952 #define CMXSCR_TS1CS_MSK   0x07000000   /* Transmit SCC1 Clock Source Mask */
953 #define CMXSCR_GR2         0x00800000   /* Grant Support of SCC2        */
954 #define CMXSCR_SC2         0x00400000   /* SCC2 connection              */
955 #define CMXSCR_RS2CS_MSK   0x00380000   /* Receive SCC2 Clock Source Mask */
956 #define CMXSCR_TS2CS_MSK   0x00070000   /* Transmit SCC2 Clock Source Mask */
957 #define CMXSCR_GR3         0x00008000   /* Grant Support of SCC3        */
958 #define CMXSCR_SC3         0x00004000   /* SCC3 connection              */
959 #define CMXSCR_RS3CS_MSK   0x00003800   /* Receive SCC3 Clock Source Mask */
960 #define CMXSCR_TS3CS_MSK   0x00000700   /* Transmit SCC3 Clock Source Mask */
961 #define CMXSCR_GR4         0x00000080   /* Grant Support of SCC4        */
962 #define CMXSCR_SC4         0x00000040   /* SCC4 connection              */
963 #define CMXSCR_RS4CS_MSK   0x00000038   /* Receive SCC4 Clock Source Mask */
964 #define CMXSCR_TS4CS_MSK   0x00000007   /* Transmit SCC4 Clock Source Mask */
965
966 #define CMXSCR_RS1CS_BRG1  0x00000000   /* SCC1 Rx Clock Source is BRG1 */
967 #define CMXSCR_RS1CS_BRG2  0x08000000   /* SCC1 Rx Clock Source is BRG2 */
968 #define CMXSCR_RS1CS_BRG3  0x10000000   /* SCC1 Rx Clock Source is BRG3 */
969 #define CMXSCR_RS1CS_BRG4  0x18000000   /* SCC1 Rx Clock Source is BRG4 */
970 #define CMXSCR_RS1CS_CLK11 0x20000000   /* SCC1 Rx Clock Source is CLK11 */
971 #define CMXSCR_RS1CS_CLK12 0x28000000   /* SCC1 Rx Clock Source is CLK12 */
972 #define CMXSCR_RS1CS_CLK3  0x30000000   /* SCC1 Rx Clock Source is CLK3 */
973 #define CMXSCR_RS1CS_CLK4  0x38000000   /* SCC1 Rx Clock Source is CLK4 */
974
975 #define CMXSCR_TS1CS_BRG1  0x00000000   /* SCC1 Tx Clock Source is BRG1 */
976 #define CMXSCR_TS1CS_BRG2  0x01000000   /* SCC1 Tx Clock Source is BRG2 */
977 #define CMXSCR_TS1CS_BRG3  0x02000000   /* SCC1 Tx Clock Source is BRG3 */
978 #define CMXSCR_TS1CS_BRG4  0x03000000   /* SCC1 Tx Clock Source is BRG4 */
979 #define CMXSCR_TS1CS_CLK11 0x04000000   /* SCC1 Tx Clock Source is CLK11 */
980 #define CMXSCR_TS1CS_CLK12 0x05000000   /* SCC1 Tx Clock Source is CLK12 */
981 #define CMXSCR_TS1CS_CLK3  0x06000000   /* SCC1 Tx Clock Source is CLK3 */
982 #define CMXSCR_TS1CS_CLK4  0x07000000   /* SCC1 Tx Clock Source is CLK4 */
983
984 #define CMXSCR_RS2CS_BRG1  0x00000000   /* SCC2 Rx Clock Source is BRG1 */
985 #define CMXSCR_RS2CS_BRG2  0x00080000   /* SCC2 Rx Clock Source is BRG2 */
986 #define CMXSCR_RS2CS_BRG3  0x00100000   /* SCC2 Rx Clock Source is BRG3 */
987 #define CMXSCR_RS2CS_BRG4  0x00180000   /* SCC2 Rx Clock Source is BRG4 */
988 #define CMXSCR_RS2CS_CLK11 0x00200000   /* SCC2 Rx Clock Source is CLK11 */
989 #define CMXSCR_RS2CS_CLK12 0x00280000   /* SCC2 Rx Clock Source is CLK12 */
990 #define CMXSCR_RS2CS_CLK3  0x00300000   /* SCC2 Rx Clock Source is CLK3 */
991 #define CMXSCR_RS2CS_CLK4  0x00380000   /* SCC2 Rx Clock Source is CLK4 */
992
993 #define CMXSCR_TS2CS_BRG1  0x00000000   /* SCC2 Tx Clock Source is BRG1 */
994 #define CMXSCR_TS2CS_BRG2  0x00010000   /* SCC2 Tx Clock Source is BRG2 */
995 #define CMXSCR_TS2CS_BRG3  0x00020000   /* SCC2 Tx Clock Source is BRG3 */
996 #define CMXSCR_TS2CS_BRG4  0x00030000   /* SCC2 Tx Clock Source is BRG4 */
997 #define CMXSCR_TS2CS_CLK11 0x00040000   /* SCC2 Tx Clock Source is CLK11 */
998 #define CMXSCR_TS2CS_CLK12 0x00050000   /* SCC2 Tx Clock Source is CLK12 */
999 #define CMXSCR_TS2CS_CLK3  0x00060000   /* SCC2 Tx Clock Source is CLK3 */
1000 #define CMXSCR_TS2CS_CLK4  0x00070000   /* SCC2 Tx Clock Source is CLK4 */
1001
1002 #define CMXSCR_RS3CS_BRG1  0x00000000   /* SCC3 Rx Clock Source is BRG1 */
1003 #define CMXSCR_RS3CS_BRG2  0x00000800   /* SCC3 Rx Clock Source is BRG2 */
1004 #define CMXSCR_RS3CS_BRG3  0x00001000   /* SCC3 Rx Clock Source is BRG3 */
1005 #define CMXSCR_RS3CS_BRG4  0x00001800   /* SCC3 Rx Clock Source is BRG4 */
1006 #define CMXSCR_RS3CS_CLK5  0x00002000   /* SCC3 Rx Clock Source is CLK5 */
1007 #define CMXSCR_RS3CS_CLK6  0x00002800   /* SCC3 Rx Clock Source is CLK6 */
1008 #define CMXSCR_RS3CS_CLK7  0x00003000   /* SCC3 Rx Clock Source is CLK7 */
1009 #define CMXSCR_RS3CS_CLK8  0x00003800   /* SCC3 Rx Clock Source is CLK8 */
1010
1011 #define CMXSCR_TS3CS_BRG1  0x00000000   /* SCC3 Tx Clock Source is BRG1 */
1012 #define CMXSCR_TS3CS_BRG2  0x00000100   /* SCC3 Tx Clock Source is BRG2 */
1013 #define CMXSCR_TS3CS_BRG3  0x00000200   /* SCC3 Tx Clock Source is BRG3 */
1014 #define CMXSCR_TS3CS_BRG4  0x00000300   /* SCC3 Tx Clock Source is BRG4 */
1015 #define CMXSCR_TS3CS_CLK5  0x00000400   /* SCC3 Tx Clock Source is CLK5 */
1016 #define CMXSCR_TS3CS_CLK6  0x00000500   /* SCC3 Tx Clock Source is CLK6 */
1017 #define CMXSCR_TS3CS_CLK7  0x00000600   /* SCC3 Tx Clock Source is CLK7 */
1018 #define CMXSCR_TS3CS_CLK8  0x00000700   /* SCC3 Tx Clock Source is CLK8 */
1019
1020 #define CMXSCR_RS4CS_BRG1  0x00000000   /* SCC4 Rx Clock Source is BRG1 */
1021 #define CMXSCR_RS4CS_BRG2  0x00000008   /* SCC4 Rx Clock Source is BRG2 */
1022 #define CMXSCR_RS4CS_BRG3  0x00000010   /* SCC4 Rx Clock Source is BRG3 */
1023 #define CMXSCR_RS4CS_BRG4  0x00000018   /* SCC4 Rx Clock Source is BRG4 */
1024 #define CMXSCR_RS4CS_CLK5  0x00000020   /* SCC4 Rx Clock Source is CLK5 */
1025 #define CMXSCR_RS4CS_CLK6  0x00000028   /* SCC4 Rx Clock Source is CLK6 */
1026 #define CMXSCR_RS4CS_CLK7  0x00000030   /* SCC4 Rx Clock Source is CLK7 */
1027 #define CMXSCR_RS4CS_CLK8  0x00000038   /* SCC4 Rx Clock Source is CLK8 */
1028
1029 #define CMXSCR_TS4CS_BRG1  0x00000000   /* SCC4 Tx Clock Source is BRG1 */
1030 #define CMXSCR_TS4CS_BRG2  0x00000001   /* SCC4 Tx Clock Source is BRG2 */
1031 #define CMXSCR_TS4CS_BRG3  0x00000002   /* SCC4 Tx Clock Source is BRG3 */
1032 #define CMXSCR_TS4CS_BRG4  0x00000003   /* SCC4 Tx Clock Source is BRG4 */
1033 #define CMXSCR_TS4CS_CLK5  0x00000004   /* SCC4 Tx Clock Source is CLK5 */
1034 #define CMXSCR_TS4CS_CLK6  0x00000005   /* SCC4 Tx Clock Source is CLK6 */
1035 #define CMXSCR_TS4CS_CLK7  0x00000006   /* SCC4 Tx Clock Source is CLK7 */
1036 #define CMXSCR_TS4CS_CLK8  0x00000007   /* SCC4 Tx Clock Source is CLK8 */
1037
1038 #endif /* __CPM2__ */
1039 #endif /* __KERNEL__ */
1040
1041