1
2
3
4
5
6
7
8
9
10
11
12
13
14#ifndef __CPM_85XX__
15#define __CPM_85XX__
16
17#include <asm/immap_85xx.h>
18
19
20
21#define CPM_CR_RST ((uint)0x80000000)
22#define CPM_CR_PAGE ((uint)0x7c000000)
23#define CPM_CR_SBLOCK ((uint)0x03e00000)
24#define CPM_CR_FLG ((uint)0x00010000)
25#define CPM_CR_MCN ((uint)0x00003fc0)
26#define CPM_CR_OPCODE ((uint)0x0000000f)
27
28
29
30#define CPM_CR_SCC1_SBLOCK (0x04)
31#define CPM_CR_SCC2_SBLOCK (0x05)
32#define CPM_CR_SCC3_SBLOCK (0x06)
33#define CPM_CR_SCC4_SBLOCK (0x07)
34#define CPM_CR_SMC1_SBLOCK (0x08)
35#define CPM_CR_SMC2_SBLOCK (0x09)
36#define CPM_CR_SPI_SBLOCK (0x0a)
37#define CPM_CR_I2C_SBLOCK (0x0b)
38#define CPM_CR_TIMER_SBLOCK (0x0f)
39#define CPM_CR_RAND_SBLOCK (0x0e)
40#define CPM_CR_FCC1_SBLOCK (0x10)
41#define CPM_CR_FCC2_SBLOCK (0x11)
42#define CPM_CR_FCC3_SBLOCK (0x12)
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_SPI_PAGE (0x09)
50#define CPM_CR_I2C_PAGE (0x0a)
51#define CPM_CR_TIMER_PAGE (0x0a)
52#define CPM_CR_RAND_PAGE (0x0a)
53#define CPM_CR_FCC1_PAGE (0x04)
54#define CPM_CR_FCC2_PAGE (0x05)
55#define CPM_CR_FCC3_PAGE (0x06)
56#define CPM_CR_MCC1_PAGE (0x07)
57#define CPM_CR_MCC2_PAGE (0x08)
58
59
60
61#define CPM_CR_INIT_TRX ((ushort)0x0000)
62#define CPM_CR_INIT_RX ((ushort)0x0001)
63#define CPM_CR_INIT_TX ((ushort)0x0002)
64#define CPM_CR_HUNT_MODE ((ushort)0x0003)
65#define CPM_CR_STOP_TX ((ushort)0x0004)
66#define CPM_CR_RESTART_TX ((ushort)0x0006)
67#define CPM_CR_SET_GADDR ((ushort)0x0008)
68
69#define mk_cr_cmd(PG, SBC, MCN, OP) \
70 ((PG << 26) | (SBC << 21) | (MCN << 6) | OP)
71
72
73
74
75
76
77
78#define CPM_DATAONLY_BASE ((uint)128)
79#define CPM_DP_NOSPACE ((uint)0x7FFFFFFF)
80#define CPM_FCC_SPECIAL_BASE ((uint)0x0000B000)
81#define CPM_DATAONLY_SIZE ((uint)(16 * 1024) - CPM_DATAONLY_BASE)
82
83
84
85
86
87#define NUM_CPM_HOST_PAGES 2
88
89
90
91
92
93uint m8560_cpm_dpalloc(uint size, uint align);
94uint m8560_cpm_hostalloc(uint size, uint align);
95void m8560_cpm_setbrg(uint brg, uint rate);
96void m8560_cpm_fastbrg(uint brg, uint rate, int div16);
97void m8560_cpm_extcbrg(uint brg, uint rate, uint extclk, int pinsel);
98
99
100
101typedef struct cpm_buf_desc {
102 ushort cbd_sc;
103 ushort cbd_datlen;
104 uint cbd_bufaddr;
105} cbd_t;
106
107#define BD_SC_EMPTY ((ushort)0x8000)
108#define BD_SC_READY ((ushort)0x8000)
109#define BD_SC_WRAP ((ushort)0x2000)
110#define BD_SC_INTRPT ((ushort)0x1000)
111#define BD_SC_LAST ((ushort)0x0800)
112#define BD_SC_CM ((ushort)0x0200)
113#define BD_SC_ID ((ushort)0x0100)
114#define BD_SC_P ((ushort)0x0100)
115#define BD_SC_BR ((ushort)0x0020)
116#define BD_SC_FR ((ushort)0x0010)
117#define BD_SC_PR ((ushort)0x0008)
118#define BD_SC_OV ((ushort)0x0002)
119#define BD_SC_CD ((ushort)0x0001)
120
121
122
123#define CPMFCR_GBL ((u_char)0x20)
124#define CPMFCR_EB ((u_char)0x10)
125#define CPMFCR_TC2 ((u_char)0x04)
126#define CPMFCR_DTB ((u_char)0x02)
127#define CPMFCR_BDB ((u_char)0x01)
128
129
130
131#define CPM_POST_WORD_ADDR 0x80FC
132#define PROFF_SCC1 ((uint)0x8000)
133#define PROFF_SCC2 ((uint)0x8100)
134#define PROFF_SCC3 ((uint)0x8200)
135#define PROFF_SCC4 ((uint)0x8300)
136#define PROFF_FCC1 ((uint)0x8400)
137#define PROFF_FCC2 ((uint)0x8500)
138#define PROFF_FCC3 ((uint)0x8600)
139#define PROFF_MCC1 ((uint)0x8700)
140#define PROFF_MCC2 ((uint)0x8800)
141#define PROFF_SPI_BASE ((uint)0x89fc)
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
147
148
149#define CPM_BRG_RST ((uint)0x00020000)
150#define CPM_BRG_EN ((uint)0x00010000)
151#define CPM_BRG_EXTC_INT ((uint)0x00000000)
152#define CPM_BRG_EXTC_CLK3_9 ((uint)0x00004000)
153#define CPM_BRG_EXTC_CLK5_15 ((uint)0x00008000)
154#define CPM_BRG_ATB ((uint)0x00002000)
155#define CPM_BRG_CD_MASK ((uint)0x00001ffe)
156#define CPM_BRG_DIV16 ((uint)0x00000001)
157
158
159
160#define SCC_GSMRH_IRP ((uint)0x00040000)
161#define SCC_GSMRH_GDE ((uint)0x00010000)
162#define SCC_GSMRH_TCRC_CCITT ((uint)0x00008000)
163#define SCC_GSMRH_TCRC_BISYNC ((uint)0x00004000)
164#define SCC_GSMRH_TCRC_HDLC ((uint)0x00000000)
165#define SCC_GSMRH_REVD ((uint)0x00002000)
166#define SCC_GSMRH_TRX ((uint)0x00001000)
167#define SCC_GSMRH_TTX ((uint)0x00000800)
168#define SCC_GSMRH_CDP ((uint)0x00000400)
169#define SCC_GSMRH_CTSP ((uint)0x00000200)
170#define SCC_GSMRH_CDS ((uint)0x00000100)
171#define SCC_GSMRH_CTSS ((uint)0x00000080)
172#define SCC_GSMRH_TFL ((uint)0x00000040)
173#define SCC_GSMRH_RFW ((uint)0x00000020)
174#define SCC_GSMRH_TXSY ((uint)0x00000010)
175#define SCC_GSMRH_SYNL16 ((uint)0x0000000c)
176#define SCC_GSMRH_SYNL8 ((uint)0x00000008)
177#define SCC_GSMRH_SYNL4 ((uint)0x00000004)
178#define SCC_GSMRH_RTSM ((uint)0x00000002)
179#define SCC_GSMRH_RSYN ((uint)0x00000001)
180
181#define SCC_GSMRL_SIR ((uint)0x80000000)
182#define SCC_GSMRL_EDGE_NONE ((uint)0x60000000)
183#define SCC_GSMRL_EDGE_NEG ((uint)0x40000000)
184#define SCC_GSMRL_EDGE_POS ((uint)0x20000000)
185#define SCC_GSMRL_EDGE_BOTH ((uint)0x00000000)
186#define SCC_GSMRL_TCI ((uint)0x10000000)
187#define SCC_GSMRL_TSNC_3 ((uint)0x0c000000)
188#define SCC_GSMRL_TSNC_4 ((uint)0x08000000)
189#define SCC_GSMRL_TSNC_14 ((uint)0x04000000)
190#define SCC_GSMRL_TSNC_INF ((uint)0x00000000)
191#define SCC_GSMRL_RINV ((uint)0x02000000)
192#define SCC_GSMRL_TINV ((uint)0x01000000)
193#define SCC_GSMRL_TPL_128 ((uint)0x00c00000)
194#define SCC_GSMRL_TPL_64 ((uint)0x00a00000)
195#define SCC_GSMRL_TPL_48 ((uint)0x00800000)
196#define SCC_GSMRL_TPL_32 ((uint)0x00600000)
197#define SCC_GSMRL_TPL_16 ((uint)0x00400000)
198#define SCC_GSMRL_TPL_8 ((uint)0x00200000)
199#define SCC_GSMRL_TPL_NONE ((uint)0x00000000)
200#define SCC_GSMRL_TPP_ALL1 ((uint)0x00180000)
201#define SCC_GSMRL_TPP_01 ((uint)0x00100000)
202#define SCC_GSMRL_TPP_10 ((uint)0x00080000)
203#define SCC_GSMRL_TPP_ZEROS ((uint)0x00000000)
204#define SCC_GSMRL_TEND ((uint)0x00040000)
205#define SCC_GSMRL_TDCR_32 ((uint)0x00030000)
206#define SCC_GSMRL_TDCR_16 ((uint)0x00020000)
207#define SCC_GSMRL_TDCR_8 ((uint)0x00010000)
208#define SCC_GSMRL_TDCR_1 ((uint)0x00000000)
209#define SCC_GSMRL_RDCR_32 ((uint)0x0000c000)
210#define SCC_GSMRL_RDCR_16 ((uint)0x00008000)
211#define SCC_GSMRL_RDCR_8 ((uint)0x00004000)
212#define SCC_GSMRL_RDCR_1 ((uint)0x00000000)
213#define SCC_GSMRL_RENC_DFMAN ((uint)0x00003000)
214#define SCC_GSMRL_RENC_MANCH ((uint)0x00002000)
215#define SCC_GSMRL_RENC_FM0 ((uint)0x00001000)
216#define SCC_GSMRL_RENC_NRZI ((uint)0x00000800)
217#define SCC_GSMRL_RENC_NRZ ((uint)0x00000000)
218#define SCC_GSMRL_TENC_DFMAN ((uint)0x00000600)
219#define SCC_GSMRL_TENC_MANCH ((uint)0x00000400)
220#define SCC_GSMRL_TENC_FM0 ((uint)0x00000200)
221#define SCC_GSMRL_TENC_NRZI ((uint)0x00000100)
222#define SCC_GSMRL_TENC_NRZ ((uint)0x00000000)
223#define SCC_GSMRL_DIAG_LE ((uint)0x000000c0)
224#define SCC_GSMRL_DIAG_ECHO ((uint)0x00000080)
225#define SCC_GSMRL_DIAG_LOOP ((uint)0x00000040)
226#define SCC_GSMRL_DIAG_NORM ((uint)0x00000000)
227#define SCC_GSMRL_ENR ((uint)0x00000020)
228#define SCC_GSMRL_ENT ((uint)0x00000010)
229#define SCC_GSMRL_MODE_ENET ((uint)0x0000000c)
230#define SCC_GSMRL_MODE_DDCMP ((uint)0x00000009)
231#define SCC_GSMRL_MODE_BISYNC ((uint)0x00000008)
232#define SCC_GSMRL_MODE_V14 ((uint)0x00000007)
233#define SCC_GSMRL_MODE_AHDLC ((uint)0x00000006)
234#define SCC_GSMRL_MODE_PROFIBUS ((uint)0x00000005)
235#define SCC_GSMRL_MODE_UART ((uint)0x00000004)
236#define SCC_GSMRL_MODE_SS7 ((uint)0x00000003)
237#define SCC_GSMRL_MODE_ATALK ((uint)0x00000002)
238#define SCC_GSMRL_MODE_HDLC ((uint)0x00000000)
239
240#define SCC_TODR_TOD ((ushort)0x8000)
241
242
243
244#define SCCM_TXE ((unsigned char)0x10)
245#define SCCM_BSY ((unsigned char)0x04)
246#define SCCM_TX ((unsigned char)0x02)
247#define SCCM_RX ((unsigned char)0x01)
248
249typedef struct scc_param {
250 ushort scc_rbase;
251 ushort scc_tbase;
252 u_char scc_rfcr;
253 u_char scc_tfcr;
254 ushort scc_mrblr;
255 uint scc_rstate;
256 uint scc_idp;
257 ushort scc_rbptr;
258 ushort scc_ibc;
259 uint scc_rxtmp;
260 uint scc_tstate;
261 uint scc_tdp;
262 ushort scc_tbptr;
263 ushort scc_tbc;
264 uint scc_txtmp;
265 uint scc_rcrc;
266 uint scc_tcrc;
267} sccp_t;
268
269
270
271typedef struct scc_enet {
272 sccp_t sen_genscc;
273 uint sen_cpres;
274 uint sen_cmask;
275 uint sen_crcec;
276 uint sen_alec;
277 uint sen_disfc;
278 ushort sen_pads;
279 ushort sen_retlim;
280 ushort sen_retcnt;
281 ushort sen_maxflr;
282 ushort sen_minflr;
283 ushort sen_maxd1;
284 ushort sen_maxd2;
285 ushort sen_maxd;
286 ushort sen_dmacnt;
287 ushort sen_maxb;
288 ushort sen_gaddr1;
289 ushort sen_gaddr2;
290 ushort sen_gaddr3;
291 ushort sen_gaddr4;
292 uint sen_tbuf0data0;
293 uint sen_tbuf0data1;
294 uint sen_tbuf0rba;
295 uint sen_tbuf0crc;
296 ushort sen_tbuf0bcnt;
297 ushort sen_paddrh;
298 ushort sen_paddrm;
299 ushort sen_paddrl;
300 ushort sen_pper;
301 ushort sen_rfbdptr;
302 ushort sen_tfbdptr;
303 ushort sen_tlbdptr;
304 uint sen_tbuf1data0;
305 uint sen_tbuf1data1;
306 uint sen_tbuf1rba;
307 uint sen_tbuf1crc;
308 ushort sen_tbuf1bcnt;
309 ushort sen_txlen;
310 ushort sen_iaddr1;
311 ushort sen_iaddr2;
312 ushort sen_iaddr3;
313 ushort sen_iaddr4;
314 ushort sen_boffcnt;
315
316
317
318
319 ushort sen_taddrh;
320 ushort sen_taddrm;
321 ushort sen_taddrl;
322} scc_enet_t;
323
324
325
326
327#define SCCE_ENET_GRA ((ushort)0x0080)
328#define SCCE_ENET_TXE ((ushort)0x0010)
329#define SCCE_ENET_RXF ((ushort)0x0008)
330#define SCCE_ENET_BSY ((ushort)0x0004)
331#define SCCE_ENET_TXB ((ushort)0x0002)
332#define SCCE_ENET_RXB ((ushort)0x0001)
333
334
335
336#define SCC_PSMR_HBC ((ushort)0x8000)
337#define SCC_PSMR_FC ((ushort)0x4000)
338#define SCC_PSMR_RSH ((ushort)0x2000)
339#define SCC_PSMR_IAM ((ushort)0x1000)
340#define SCC_PSMR_ENCRC ((ushort)0x0800)
341#define SCC_PSMR_PRO ((ushort)0x0200)
342#define SCC_PSMR_BRO ((ushort)0x0100)
343#define SCC_PSMR_SBT ((ushort)0x0080)
344#define SCC_PSMR_LPB ((ushort)0x0040)
345#define SCC_PSMR_SIP ((ushort)0x0020)
346#define SCC_PSMR_LCW ((ushort)0x0010)
347#define SCC_PSMR_NIB22 ((ushort)0x000a)
348#define SCC_PSMR_FDE ((ushort)0x0001)
349
350
351
352
353#define BD_ENET_RX_EMPTY ((ushort)0x8000)
354#define BD_ENET_RX_WRAP ((ushort)0x2000)
355#define BD_ENET_RX_INTR ((ushort)0x1000)
356#define BD_ENET_RX_LAST ((ushort)0x0800)
357#define BD_ENET_RX_FIRST ((ushort)0x0400)
358#define BD_ENET_RX_MISS ((ushort)0x0100)
359#define BD_ENET_RX_BC ((ushort)0x0080)
360#define BD_ENET_RX_MC ((ushort)0x0040)
361#define BD_ENET_RX_LG ((ushort)0x0020)
362#define BD_ENET_RX_NO ((ushort)0x0010)
363#define BD_ENET_RX_SH ((ushort)0x0008)
364#define BD_ENET_RX_CR ((ushort)0x0004)
365#define BD_ENET_RX_OV ((ushort)0x0002)
366#define BD_ENET_RX_CL ((ushort)0x0001)
367#define BD_ENET_RX_STATS ((ushort)0x01ff)
368
369
370
371
372#define BD_ENET_TX_READY ((ushort)0x8000)
373#define BD_ENET_TX_PAD ((ushort)0x4000)
374#define BD_ENET_TX_WRAP ((ushort)0x2000)
375#define BD_ENET_TX_INTR ((ushort)0x1000)
376#define BD_ENET_TX_LAST ((ushort)0x0800)
377#define BD_ENET_TX_TC ((ushort)0x0400)
378#define BD_ENET_TX_DEF ((ushort)0x0200)
379#define BD_ENET_TX_HB ((ushort)0x0100)
380#define BD_ENET_TX_LC ((ushort)0x0080)
381#define BD_ENET_TX_RL ((ushort)0x0040)
382#define BD_ENET_TX_RCMASK ((ushort)0x003c)
383#define BD_ENET_TX_UN ((ushort)0x0002)
384#define BD_ENET_TX_CSL ((ushort)0x0001)
385#define BD_ENET_TX_STATS ((ushort)0x03ff)
386
387
388
389typedef struct scc_uart {
390 sccp_t scc_genscc;
391 uint scc_res1;
392 uint scc_res2;
393 ushort scc_maxidl;
394 ushort scc_idlc;
395 ushort scc_brkcr;
396 ushort scc_parec;
397 ushort scc_frmec;
398 ushort scc_nosec;
399 ushort scc_brkec;
400 ushort scc_brkln;
401 ushort scc_uaddr1;
402 ushort scc_uaddr2;
403 ushort scc_rtemp;
404 ushort scc_toseq;
405 ushort scc_char1;
406 ushort scc_char2;
407 ushort scc_char3;
408 ushort scc_char4;
409 ushort scc_char5;
410 ushort scc_char6;
411 ushort scc_char7;
412 ushort scc_char8;
413 ushort scc_rccm;
414 ushort scc_rccr;
415 ushort scc_rlbc;
416} scc_uart_t;
417
418
419
420#define UART_SCCM_GLR ((ushort)0x1000)
421#define UART_SCCM_GLT ((ushort)0x0800)
422#define UART_SCCM_AB ((ushort)0x0200)
423#define UART_SCCM_IDL ((ushort)0x0100)
424#define UART_SCCM_GRA ((ushort)0x0080)
425#define UART_SCCM_BRKE ((ushort)0x0040)
426#define UART_SCCM_BRKS ((ushort)0x0020)
427#define UART_SCCM_CCR ((ushort)0x0008)
428#define UART_SCCM_BSY ((ushort)0x0004)
429#define UART_SCCM_TX ((ushort)0x0002)
430#define UART_SCCM_RX ((ushort)0x0001)
431
432
433
434#define SCU_PSMR_FLC ((ushort)0x8000)
435#define SCU_PSMR_SL ((ushort)0x4000)
436#define SCU_PSMR_CL ((ushort)0x3000)
437#define SCU_PSMR_UM ((ushort)0x0c00)
438#define SCU_PSMR_FRZ ((ushort)0x0200)
439#define SCU_PSMR_RZS ((ushort)0x0100)
440#define SCU_PSMR_SYN ((ushort)0x0080)
441#define SCU_PSMR_DRT ((ushort)0x0040)
442#define SCU_PSMR_PEN ((ushort)0x0010)
443#define SCU_PSMR_RPM ((ushort)0x000c)
444#define SCU_PSMR_REVP ((ushort)0x0008)
445#define SCU_PSMR_TPM ((ushort)0x0003)
446#define SCU_PSMR_TEVP ((ushort)0x0003)
447
448
449
450typedef struct scc_trans {
451 sccp_t st_genscc;
452 uint st_cpres;
453 uint st_cmask;
454} scc_trans_t;
455
456#define BD_SCC_TX_LAST ((ushort)0x0800)
457
458
459
460#define FCC_GFMR_DIAG_NORM ((uint)0x00000000)
461#define FCC_GFMR_DIAG_LE ((uint)0x40000000)
462#define FCC_GFMR_DIAG_AE ((uint)0x80000000)
463#define FCC_GFMR_DIAG_ALE ((uint)0xc0000000)
464#define FCC_GFMR_TCI ((uint)0x20000000)
465#define FCC_GFMR_TRX ((uint)0x10000000)
466#define FCC_GFMR_TTX ((uint)0x08000000)
467#define FCC_GFMR_TTX ((uint)0x08000000)
468#define FCC_GFMR_CDP ((uint)0x04000000)
469#define FCC_GFMR_CTSP ((uint)0x02000000)
470#define FCC_GFMR_CDS ((uint)0x01000000)
471#define FCC_GFMR_CTSS ((uint)0x00800000)
472#define FCC_GFMR_SYNL_NONE ((uint)0x00000000)
473#define FCC_GFMR_SYNL_AUTO ((uint)0x00004000)
474#define FCC_GFMR_SYNL_8 ((uint)0x00008000)
475#define FCC_GFMR_SYNL_16 ((uint)0x0000c000)
476#define FCC_GFMR_RTSM ((uint)0x00002000)
477#define FCC_GFMR_RENC_NRZ ((uint)0x00000000)
478#define FCC_GFMR_RENC_NRZI ((uint)0x00000800)
479#define FCC_GFMR_REVD ((uint)0x00000400)
480#define FCC_GFMR_TENC_NRZ ((uint)0x00000000)
481#define FCC_GFMR_TENC_NRZI ((uint)0x00000100)
482#define FCC_GFMR_TCRC_16 ((uint)0x00000000)
483#define FCC_GFMR_TCRC_32 ((uint)0x00000080)
484#define FCC_GFMR_ENR ((uint)0x00000020)
485#define FCC_GFMR_ENT ((uint)0x00000010)
486#define FCC_GFMR_MODE_ENET ((uint)0x0000000c)
487#define FCC_GFMR_MODE_ATM ((uint)0x0000000a)
488#define FCC_GFMR_MODE_HDLC ((uint)0x00000000)
489
490
491
492typedef struct fcc_param {
493 ushort fcc_riptr;
494 ushort fcc_tiptr;
495 ushort fcc_res1;
496 ushort fcc_mrblr;
497 uint fcc_rstate;
498 uint fcc_rbase;
499 ushort fcc_rbdstat;
500 ushort fcc_rbdlen;
501 uint fcc_rdptr;
502 uint fcc_tstate;
503 uint fcc_tbase;
504 ushort fcc_tbdstat;
505 ushort fcc_tbdlen;
506 uint fcc_tdptr;
507 uint fcc_rbptr;
508 uint fcc_tbptr;
509 uint fcc_rcrc;
510 uint fcc_res2;
511 uint fcc_tcrc;
512} fccp_t;
513
514
515
516
517typedef struct fcc_enet {
518 fccp_t fen_genfcc;
519 uint fen_statbuf;
520 uint fen_camptr;
521 uint fen_cmask;
522 uint fen_cpres;
523 uint fen_crcec;
524 uint fen_alec;
525 uint fen_disfc;
526 ushort fen_retlim;
527 ushort fen_retcnt;
528 ushort fen_pper;
529 ushort fen_boffcnt;
530 uint fen_gaddrh;
531 uint fen_gaddrl;
532 ushort fen_tfcstat;
533 ushort fen_tfclen;
534 uint fen_tfcptr;
535 ushort fen_mflr;
536 ushort fen_paddrh;
537 ushort fen_paddrm;
538 ushort fen_paddrl;
539 ushort fen_ibdcount;
540 ushort fen_ibdstart;
541 ushort fen_ibdend;
542 ushort fen_txlen;
543 uint fen_ibdbase[8];
544 uint fen_iaddrh;
545 uint fen_iaddrl;
546 ushort fen_minflr;
547 ushort fen_taddrh;
548 ushort fen_taddrm;
549 ushort fen_taddrl;
550 ushort fen_padptr;
551 ushort fen_cftype;
552 ushort fen_cfrange;
553 ushort fen_maxb;
554 ushort fen_maxd1;
555 ushort fen_maxd2;
556 ushort fen_maxd;
557 ushort fen_dmacnt;
558 uint fen_octc;
559 uint fen_colc;
560 uint fen_broc;
561 uint fen_mulc;
562 uint fen_uspc;
563 uint fen_frgc;
564 uint fen_ospc;
565 uint fen_jbrc;
566 uint fen_p64c;
567 uint fen_p65c;
568 uint fen_p128c;
569 uint fen_p256c;
570 uint fen_p512c;
571 uint fen_p1024c;
572 uint fen_cambuf;
573 ushort fen_rfthr;
574 ushort fen_rfcnt;
575} fcc_enet_t;
576
577
578
579#define FCC_ENET_GRA ((ushort)0x0080)
580#define FCC_ENET_RXC ((ushort)0x0040)
581#define FCC_ENET_TXC ((ushort)0x0020)
582#define FCC_ENET_TXE ((ushort)0x0010)
583#define FCC_ENET_RXF ((ushort)0x0008)
584#define FCC_ENET_BSY ((ushort)0x0004)
585#define FCC_ENET_TXB ((ushort)0x0002)
586#define FCC_ENET_RXB ((ushort)0x0001)
587
588
589
590#define FCC_PSMR_HBC ((uint)0x80000000)
591#define FCC_PSMR_FC ((uint)0x40000000)
592#define FCC_PSMR_SBT ((uint)0x20000000)
593#define FCC_PSMR_LPB ((uint)0x10000000)
594#define FCC_PSMR_LCW ((uint)0x08000000)
595#define FCC_PSMR_FDE ((uint)0x04000000)
596#define FCC_PSMR_MON ((uint)0x02000000)
597#define FCC_PSMR_PRO ((uint)0x00400000)
598#define FCC_PSMR_FCE ((uint)0x00200000)
599#define FCC_PSMR_RSH ((uint)0x00100000)
600#define FCC_PSMR_CAM ((uint)0x00000400)
601#define FCC_PSMR_BRO ((uint)0x00000200)
602#define FCC_PSMR_ENCRC ((uint)0x00000080)
603
604
605
606typedef struct iic {
607 ushort iic_rbase;
608 ushort iic_tbase;
609 u_char iic_rfcr;
610 u_char iic_tfcr;
611 ushort iic_mrblr;
612 uint iic_rstate;
613 uint iic_rdp;
614 ushort iic_rbptr;
615 ushort iic_rbc;
616 uint iic_rxtmp;
617 uint iic_tstate;
618 uint iic_tdp;
619 ushort iic_tbptr;
620 ushort iic_tbc;
621 uint iic_txtmp;
622} iic_t;
623
624
625
626typedef struct spi {
627 ushort spi_rbase;
628 ushort spi_tbase;
629 u_char spi_rfcr;
630 u_char spi_tfcr;
631 ushort spi_mrblr;
632 uint spi_rstate;
633 uint spi_rdp;
634 ushort spi_rbptr;
635 ushort spi_rbc;
636 uint spi_rxtmp;
637 uint spi_tstate;
638 uint spi_tdp;
639 ushort spi_tbptr;
640 ushort spi_tbc;
641 uint spi_txtmp;
642 uint spi_res;
643 uint spi_res1[4];
644} spi_t;
645
646
647
648#define SPMODE_LOOP ((ushort)0x4000)
649#define SPMODE_CI ((ushort)0x2000)
650#define SPMODE_CP ((ushort)0x1000)
651#define SPMODE_DIV16 ((ushort)0x0800)
652#define SPMODE_REV ((ushort)0x0400)
653#define SPMODE_MSTR ((ushort)0x0200)
654#define SPMODE_EN ((ushort)0x0100)
655#define SPMODE_LENMSK ((ushort)0x00f0)
656#define SPMODE_PMMSK ((ushort)0x000f)
657
658#define SPMODE_LEN(x) ((((x)-1)&0xF)<<4)
659#define SPMODE_PM(x) ((x) &0xF)
660
661#define SPI_EB ((u_char)0x10)
662
663#define BD_IIC_START ((ushort)0x0400)
664
665
666
667
668#define CMXFCR_FC1 0x40000000
669#define CMXFCR_RF1CS_MSK 0x38000000
670#define CMXFCR_TF1CS_MSK 0x07000000
671#define CMXFCR_FC2 0x00400000
672#define CMXFCR_RF2CS_MSK 0x00380000
673#define CMXFCR_TF2CS_MSK 0x00070000
674#define CMXFCR_FC3 0x00004000
675#define CMXFCR_RF3CS_MSK 0x00003800
676#define CMXFCR_TF3CS_MSK 0x00000700
677
678#define CMXFCR_RF1CS_BRG5 0x00000000
679#define CMXFCR_RF1CS_BRG6 0x08000000
680#define CMXFCR_RF1CS_BRG7 0x10000000
681#define CMXFCR_RF1CS_BRG8 0x18000000
682#define CMXFCR_RF1CS_CLK9 0x20000000
683#define CMXFCR_RF1CS_CLK10 0x28000000
684#define CMXFCR_RF1CS_CLK11 0x30000000
685#define CMXFCR_RF1CS_CLK12 0x38000000
686
687#define CMXFCR_TF1CS_BRG5 0x00000000
688#define CMXFCR_TF1CS_BRG6 0x01000000
689#define CMXFCR_TF1CS_BRG7 0x02000000
690#define CMXFCR_TF1CS_BRG8 0x03000000
691#define CMXFCR_TF1CS_CLK9 0x04000000
692#define CMXFCR_TF1CS_CLK10 0x05000000
693#define CMXFCR_TF1CS_CLK11 0x06000000
694#define CMXFCR_TF1CS_CLK12 0x07000000
695
696#define CMXFCR_RF2CS_BRG5 0x00000000
697#define CMXFCR_RF2CS_BRG6 0x00080000
698#define CMXFCR_RF2CS_BRG7 0x00100000
699#define CMXFCR_RF2CS_BRG8 0x00180000
700#define CMXFCR_RF2CS_CLK13 0x00200000
701#define CMXFCR_RF2CS_CLK14 0x00280000
702#define CMXFCR_RF2CS_CLK15 0x00300000
703#define CMXFCR_RF2CS_CLK16 0x00380000
704
705#define CMXFCR_TF2CS_BRG5 0x00000000
706#define CMXFCR_TF2CS_BRG6 0x00010000
707#define CMXFCR_TF2CS_BRG7 0x00020000
708#define CMXFCR_TF2CS_BRG8 0x00030000
709#define CMXFCR_TF2CS_CLK13 0x00040000
710#define CMXFCR_TF2CS_CLK14 0x00050000
711#define CMXFCR_TF2CS_CLK15 0x00060000
712#define CMXFCR_TF2CS_CLK16 0x00070000
713
714#define CMXFCR_RF3CS_BRG5 0x00000000
715#define CMXFCR_RF3CS_BRG6 0x00000800
716#define CMXFCR_RF3CS_BRG7 0x00001000
717#define CMXFCR_RF3CS_BRG8 0x00001800
718#define CMXFCR_RF3CS_CLK13 0x00002000
719#define CMXFCR_RF3CS_CLK14 0x00002800
720#define CMXFCR_RF3CS_CLK15 0x00003000
721#define CMXFCR_RF3CS_CLK16 0x00003800
722
723#define CMXFCR_TF3CS_BRG5 0x00000000
724#define CMXFCR_TF3CS_BRG6 0x00000100
725#define CMXFCR_TF3CS_BRG7 0x00000200
726#define CMXFCR_TF3CS_BRG8 0x00000300
727#define CMXFCR_TF3CS_CLK13 0x00000400
728#define CMXFCR_TF3CS_CLK14 0x00000500
729#define CMXFCR_TF3CS_CLK15 0x00000600
730#define CMXFCR_TF3CS_CLK16 0x00000700
731
732
733
734
735#define CMXSCR_GR1 0x80000000
736#define CMXSCR_SC1 0x40000000
737#define CMXSCR_RS1CS_MSK 0x38000000
738#define CMXSCR_TS1CS_MSK 0x07000000
739#define CMXSCR_GR2 0x00800000
740#define CMXSCR_SC2 0x00400000
741#define CMXSCR_RS2CS_MSK 0x00380000
742#define CMXSCR_TS2CS_MSK 0x00070000
743#define CMXSCR_GR3 0x00008000
744#define CMXSCR_SC3 0x00004000
745#define CMXSCR_RS3CS_MSK 0x00003800
746#define CMXSCR_TS3CS_MSK 0x00000700
747#define CMXSCR_GR4 0x00000080
748#define CMXSCR_SC4 0x00000040
749#define CMXSCR_RS4CS_MSK 0x00000038
750#define CMXSCR_TS4CS_MSK 0x00000007
751
752#define CMXSCR_RS1CS_BRG1 0x00000000
753#define CMXSCR_RS1CS_BRG2 0x08000000
754#define CMXSCR_RS1CS_BRG3 0x10000000
755#define CMXSCR_RS1CS_BRG4 0x18000000
756#define CMXSCR_RS1CS_CLK11 0x20000000
757#define CMXSCR_RS1CS_CLK12 0x28000000
758#define CMXSCR_RS1CS_CLK3 0x30000000
759#define CMXSCR_RS1CS_CLK4 0x38000000
760
761#define CMXSCR_TS1CS_BRG1 0x00000000
762#define CMXSCR_TS1CS_BRG2 0x01000000
763#define CMXSCR_TS1CS_BRG3 0x02000000
764#define CMXSCR_TS1CS_BRG4 0x03000000
765#define CMXSCR_TS1CS_CLK11 0x04000000
766#define CMXSCR_TS1CS_CLK12 0x05000000
767#define CMXSCR_TS1CS_CLK3 0x06000000
768#define CMXSCR_TS1CS_CLK4 0x07000000
769
770#define CMXSCR_RS2CS_BRG1 0x00000000
771#define CMXSCR_RS2CS_BRG2 0x00080000
772#define CMXSCR_RS2CS_BRG3 0x00100000
773#define CMXSCR_RS2CS_BRG4 0x00180000
774#define CMXSCR_RS2CS_CLK11 0x00200000
775#define CMXSCR_RS2CS_CLK12 0x00280000
776#define CMXSCR_RS2CS_CLK3 0x00300000
777#define CMXSCR_RS2CS_CLK4 0x00380000
778
779#define CMXSCR_TS2CS_BRG1 0x00000000
780#define CMXSCR_TS2CS_BRG2 0x00010000
781#define CMXSCR_TS2CS_BRG3 0x00020000
782#define CMXSCR_TS2CS_BRG4 0x00030000
783#define CMXSCR_TS2CS_CLK11 0x00040000
784#define CMXSCR_TS2CS_CLK12 0x00050000
785#define CMXSCR_TS2CS_CLK3 0x00060000
786#define CMXSCR_TS2CS_CLK4 0x00070000
787
788#define CMXSCR_RS3CS_BRG1 0x00000000
789#define CMXSCR_RS3CS_BRG2 0x00000800
790#define CMXSCR_RS3CS_BRG3 0x00001000
791#define CMXSCR_RS3CS_BRG4 0x00001800
792#define CMXSCR_RS3CS_CLK5 0x00002000
793#define CMXSCR_RS3CS_CLK6 0x00002800
794#define CMXSCR_RS3CS_CLK7 0x00003000
795#define CMXSCR_RS3CS_CLK8 0x00003800
796
797#define CMXSCR_TS3CS_BRG1 0x00000000
798#define CMXSCR_TS3CS_BRG2 0x00000100
799#define CMXSCR_TS3CS_BRG3 0x00000200
800#define CMXSCR_TS3CS_BRG4 0x00000300
801#define CMXSCR_TS3CS_CLK5 0x00000400
802#define CMXSCR_TS3CS_CLK6 0x00000500
803#define CMXSCR_TS3CS_CLK7 0x00000600
804#define CMXSCR_TS3CS_CLK8 0x00000700
805
806#define CMXSCR_RS4CS_BRG1 0x00000000
807#define CMXSCR_RS4CS_BRG2 0x00000008
808#define CMXSCR_RS4CS_BRG3 0x00000010
809#define CMXSCR_RS4CS_BRG4 0x00000018
810#define CMXSCR_RS4CS_CLK5 0x00000020
811#define CMXSCR_RS4CS_CLK6 0x00000028
812#define CMXSCR_RS4CS_CLK7 0x00000030
813#define CMXSCR_RS4CS_CLK8 0x00000038
814
815#define CMXSCR_TS4CS_BRG1 0x00000000
816#define CMXSCR_TS4CS_BRG2 0x00000001
817#define CMXSCR_TS4CS_BRG3 0x00000002
818#define CMXSCR_TS4CS_BRG4 0x00000003
819#define CMXSCR_TS4CS_CLK5 0x00000004
820#define CMXSCR_TS4CS_CLK6 0x00000005
821#define CMXSCR_TS4CS_CLK7 0x00000006
822#define CMXSCR_TS4CS_CLK8 0x00000007
823
824#endif
825