1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 #ifndef __CPM1__
19 #define __CPM1__
20
21 #include <linux/init.h>
22 #include <asm/8xx_immap.h>
23 #include <asm/ptrace.h>
24 #include <asm/cpm.h>
25
26
27
28 #define CPM_CR_RST ((ushort)0x8000)
29 #define CPM_CR_OPCODE ((ushort)0x0f00)
30 #define CPM_CR_CHAN ((ushort)0x00f0)
31 #define CPM_CR_FLG ((ushort)0x0001)
32
33
34
35 #define CPM_CR_CH_SCC1 ((ushort)0x0000)
36 #define CPM_CR_CH_I2C ((ushort)0x0001)
37 #define CPM_CR_CH_SCC2 ((ushort)0x0004)
38 #define CPM_CR_CH_SPI ((ushort)0x0005)
39 #define CPM_CR_CH_TIMER CPM_CR_CH_SPI
40 #define CPM_CR_CH_SCC3 ((ushort)0x0008)
41 #define CPM_CR_CH_SMC1 ((ushort)0x0009)
42 #define CPM_CR_CH_SCC4 ((ushort)0x000c)
43 #define CPM_CR_CH_SMC2 ((ushort)0x000d)
44
45 #define mk_cr_cmd(CH, CMD) ((CMD << 8) | (CH << 4))
46
47
48
49
50 extern cpm8xx_t __iomem *cpmp;
51
52 #define cpm_dpalloc cpm_muram_alloc
53 #define cpm_dpfree cpm_muram_free
54 #define cpm_dpram_addr cpm_muram_addr
55 #define cpm_dpram_phys cpm_muram_dma
56
57 extern void cpm_setbrg(uint brg, uint rate);
58
59 extern void __init cpm_load_patch(cpm8xx_t *cp);
60
61 extern void cpm_reset(void);
62
63
64
65 #define PROFF_SCC1 ((uint)0x0000)
66 #define PROFF_IIC ((uint)0x0080)
67 #define PROFF_SCC2 ((uint)0x0100)
68 #define PROFF_SPI ((uint)0x0180)
69 #define PROFF_SCC3 ((uint)0x0200)
70 #define PROFF_SMC1 ((uint)0x0280)
71 #define PROFF_SCC4 ((uint)0x0300)
72 #define PROFF_SMC2 ((uint)0x0380)
73
74
75
76
77 typedef struct smc_uart {
78 ushort smc_rbase;
79 ushort smc_tbase;
80 u_char smc_rfcr;
81 u_char smc_tfcr;
82 ushort smc_mrblr;
83 uint smc_rstate;
84 uint smc_idp;
85 ushort smc_rbptr;
86 ushort smc_ibc;
87 uint smc_rxtmp;
88 uint smc_tstate;
89 uint smc_tdp;
90 ushort smc_tbptr;
91 ushort smc_tbc;
92 uint smc_txtmp;
93 ushort smc_maxidl;
94 ushort smc_tmpidl;
95 ushort smc_brklen;
96 ushort smc_brkec;
97 ushort smc_brkcr;
98 ushort smc_rmask;
99 char res1[8];
100 ushort smc_rpbase;
101 } smc_uart_t;
102
103
104
105 #define SMC_EB ((u_char)0x10)
106
107
108
109 #define SMCMR_REN ((ushort)0x0001)
110 #define SMCMR_TEN ((ushort)0x0002)
111 #define SMCMR_DM ((ushort)0x000c)
112 #define SMCMR_SM_GCI ((ushort)0x0000)
113 #define SMCMR_SM_UART ((ushort)0x0020)
114 #define SMCMR_SM_TRANS ((ushort)0x0030)
115 #define SMCMR_SM_MASK ((ushort)0x0030)
116 #define SMCMR_PM_EVEN ((ushort)0x0100)
117 #define SMCMR_REVD SMCMR_PM_EVEN
118 #define SMCMR_PEN ((ushort)0x0200)
119 #define SMCMR_BS SMCMR_PEN
120 #define SMCMR_SL ((ushort)0x0400)
121 #define SMCR_CLEN_MASK ((ushort)0x7800)
122 #define smcr_mk_clen(C) (((C) << 11) & SMCR_CLEN_MASK)
123
124
125
126
127
128
129 typedef struct smc_centronics {
130 ushort scent_rbase;
131 ushort scent_tbase;
132 u_char scent_cfcr;
133 u_char scent_smask;
134 ushort scent_mrblr;
135 uint scent_rstate;
136 uint scent_r_ptr;
137 ushort scent_rbptr;
138 ushort scent_r_cnt;
139 uint scent_rtemp;
140 uint scent_tstate;
141 uint scent_t_ptr;
142 ushort scent_tbptr;
143 ushort scent_t_cnt;
144 uint scent_ttemp;
145 ushort scent_max_sl;
146 ushort scent_sl_cnt;
147 ushort scent_character1;
148 ushort scent_character2;
149 ushort scent_character3;
150 ushort scent_character4;
151 ushort scent_character5;
152 ushort scent_character6;
153 ushort scent_character7;
154 ushort scent_character8;
155 ushort scent_rccm;
156 ushort scent_rccr;
157 } smc_cent_t;
158
159
160
161 #define SMC_CENT_F ((u_char)0x08)
162 #define SMC_CENT_PE ((u_char)0x04)
163 #define SMC_CENT_S ((u_char)0x02)
164
165
166
167 #define SMCM_BRKE ((unsigned char)0x40)
168 #define SMCM_BRK ((unsigned char)0x10)
169 #define SMCM_TXE ((unsigned char)0x10)
170 #define SMCM_BSY ((unsigned char)0x04)
171 #define SMCM_TX ((unsigned char)0x02)
172 #define SMCM_RX ((unsigned char)0x01)
173
174
175
176 #define CPM_BRG_RST ((uint)0x00020000)
177 #define CPM_BRG_EN ((uint)0x00010000)
178 #define CPM_BRG_EXTC_INT ((uint)0x00000000)
179 #define CPM_BRG_EXTC_CLK2 ((uint)0x00004000)
180 #define CPM_BRG_EXTC_CLK6 ((uint)0x00008000)
181 #define CPM_BRG_ATB ((uint)0x00002000)
182 #define CPM_BRG_CD_MASK ((uint)0x00001ffe)
183 #define CPM_BRG_DIV16 ((uint)0x00000001)
184
185
186
187 #define SICR_RCLK_SCC1_BRG1 ((uint)0x00000000)
188 #define SICR_TCLK_SCC1_BRG1 ((uint)0x00000000)
189 #define SICR_RCLK_SCC2_BRG2 ((uint)0x00000800)
190 #define SICR_TCLK_SCC2_BRG2 ((uint)0x00000100)
191 #define SICR_RCLK_SCC3_BRG3 ((uint)0x00100000)
192 #define SICR_TCLK_SCC3_BRG3 ((uint)0x00020000)
193 #define SICR_RCLK_SCC4_BRG4 ((uint)0x18000000)
194 #define SICR_TCLK_SCC4_BRG4 ((uint)0x03000000)
195
196
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
219 #define SCC_GSMRL_SIR ((uint)0x80000000)
220 #define SCC_GSMRL_EDGE_NONE ((uint)0x60000000)
221 #define SCC_GSMRL_EDGE_NEG ((uint)0x40000000)
222 #define SCC_GSMRL_EDGE_POS ((uint)0x20000000)
223 #define SCC_GSMRL_EDGE_BOTH ((uint)0x00000000)
224 #define SCC_GSMRL_TCI ((uint)0x10000000)
225 #define SCC_GSMRL_TSNC_3 ((uint)0x0c000000)
226 #define SCC_GSMRL_TSNC_4 ((uint)0x08000000)
227 #define SCC_GSMRL_TSNC_14 ((uint)0x04000000)
228 #define SCC_GSMRL_TSNC_INF ((uint)0x00000000)
229 #define SCC_GSMRL_RINV ((uint)0x02000000)
230 #define SCC_GSMRL_TINV ((uint)0x01000000)
231 #define SCC_GSMRL_TPL_128 ((uint)0x00c00000)
232 #define SCC_GSMRL_TPL_64 ((uint)0x00a00000)
233 #define SCC_GSMRL_TPL_48 ((uint)0x00800000)
234 #define SCC_GSMRL_TPL_32 ((uint)0x00600000)
235 #define SCC_GSMRL_TPL_16 ((uint)0x00400000)
236 #define SCC_GSMRL_TPL_8 ((uint)0x00200000)
237 #define SCC_GSMRL_TPL_NONE ((uint)0x00000000)
238 #define SCC_GSMRL_TPP_ALL1 ((uint)0x00180000)
239 #define SCC_GSMRL_TPP_01 ((uint)0x00100000)
240 #define SCC_GSMRL_TPP_10 ((uint)0x00080000)
241 #define SCC_GSMRL_TPP_ZEROS ((uint)0x00000000)
242 #define SCC_GSMRL_TEND ((uint)0x00040000)
243 #define SCC_GSMRL_TDCR_32 ((uint)0x00030000)
244 #define SCC_GSMRL_TDCR_16 ((uint)0x00020000)
245 #define SCC_GSMRL_TDCR_8 ((uint)0x00010000)
246 #define SCC_GSMRL_TDCR_1 ((uint)0x00000000)
247 #define SCC_GSMRL_RDCR_32 ((uint)0x0000c000)
248 #define SCC_GSMRL_RDCR_16 ((uint)0x00008000)
249 #define SCC_GSMRL_RDCR_8 ((uint)0x00004000)
250 #define SCC_GSMRL_RDCR_1 ((uint)0x00000000)
251 #define SCC_GSMRL_RENC_DFMAN ((uint)0x00003000)
252 #define SCC_GSMRL_RENC_MANCH ((uint)0x00002000)
253 #define SCC_GSMRL_RENC_FM0 ((uint)0x00001000)
254 #define SCC_GSMRL_RENC_NRZI ((uint)0x00000800)
255 #define SCC_GSMRL_RENC_NRZ ((uint)0x00000000)
256 #define SCC_GSMRL_TENC_DFMAN ((uint)0x00000600)
257 #define SCC_GSMRL_TENC_MANCH ((uint)0x00000400)
258 #define SCC_GSMRL_TENC_FM0 ((uint)0x00000200)
259 #define SCC_GSMRL_TENC_NRZI ((uint)0x00000100)
260 #define SCC_GSMRL_TENC_NRZ ((uint)0x00000000)
261 #define SCC_GSMRL_DIAG_LE ((uint)0x000000c0)
262 #define SCC_GSMRL_DIAG_ECHO ((uint)0x00000080)
263 #define SCC_GSMRL_DIAG_LOOP ((uint)0x00000040)
264 #define SCC_GSMRL_DIAG_NORM ((uint)0x00000000)
265 #define SCC_GSMRL_ENR ((uint)0x00000020)
266 #define SCC_GSMRL_ENT ((uint)0x00000010)
267 #define SCC_GSMRL_MODE_ENET ((uint)0x0000000c)
268 #define SCC_GSMRL_MODE_QMC ((uint)0x0000000a)
269 #define SCC_GSMRL_MODE_DDCMP ((uint)0x00000009)
270 #define SCC_GSMRL_MODE_BISYNC ((uint)0x00000008)
271 #define SCC_GSMRL_MODE_V14 ((uint)0x00000007)
272 #define SCC_GSMRL_MODE_AHDLC ((uint)0x00000006)
273 #define SCC_GSMRL_MODE_PROFIBUS ((uint)0x00000005)
274 #define SCC_GSMRL_MODE_UART ((uint)0x00000004)
275 #define SCC_GSMRL_MODE_SS7 ((uint)0x00000003)
276 #define SCC_GSMRL_MODE_ATALK ((uint)0x00000002)
277 #define SCC_GSMRL_MODE_HDLC ((uint)0x00000000)
278
279 #define SCC_TODR_TOD ((ushort)0x8000)
280
281
282
283 #define SCCM_TXE ((unsigned char)0x10)
284 #define SCCM_BSY ((unsigned char)0x04)
285 #define SCCM_TX ((unsigned char)0x02)
286 #define SCCM_RX ((unsigned char)0x01)
287
288 typedef struct scc_param {
289 ushort scc_rbase;
290 ushort scc_tbase;
291 u_char scc_rfcr;
292 u_char scc_tfcr;
293 ushort scc_mrblr;
294 uint scc_rstate;
295 uint scc_idp;
296 ushort scc_rbptr;
297 ushort scc_ibc;
298 uint scc_rxtmp;
299 uint scc_tstate;
300 uint scc_tdp;
301 ushort scc_tbptr;
302 ushort scc_tbc;
303 uint scc_txtmp;
304 uint scc_rcrc;
305 uint scc_tcrc;
306 } sccp_t;
307
308
309
310 #define SCC_EB ((u_char)0x10)
311
312
313
314 typedef struct scc_enet {
315 sccp_t sen_genscc;
316 uint sen_cpres;
317 uint sen_cmask;
318 uint sen_crcec;
319 uint sen_alec;
320 uint sen_disfc;
321 ushort sen_pads;
322 ushort sen_retlim;
323 ushort sen_retcnt;
324 ushort sen_maxflr;
325 ushort sen_minflr;
326 ushort sen_maxd1;
327 ushort sen_maxd2;
328 ushort sen_maxd;
329 ushort sen_dmacnt;
330 ushort sen_maxb;
331 ushort sen_gaddr1;
332 ushort sen_gaddr2;
333 ushort sen_gaddr3;
334 ushort sen_gaddr4;
335 uint sen_tbuf0data0;
336 uint sen_tbuf0data1;
337 uint sen_tbuf0rba;
338 uint sen_tbuf0crc;
339 ushort sen_tbuf0bcnt;
340 ushort sen_paddrh;
341 ushort sen_paddrm;
342 ushort sen_paddrl;
343 ushort sen_pper;
344 ushort sen_rfbdptr;
345 ushort sen_tfbdptr;
346 ushort sen_tlbdptr;
347 uint sen_tbuf1data0;
348 uint sen_tbuf1data1;
349 uint sen_tbuf1rba;
350 uint sen_tbuf1crc;
351 ushort sen_tbuf1bcnt;
352 ushort sen_txlen;
353 ushort sen_iaddr1;
354 ushort sen_iaddr2;
355 ushort sen_iaddr3;
356 ushort sen_iaddr4;
357 ushort sen_boffcnt;
358
359
360
361
362 ushort sen_taddrh;
363 ushort sen_taddrm;
364 ushort sen_taddrl;
365 } scc_enet_t;
366
367
368
369 #define SCCE_ENET_GRA ((ushort)0x0080)
370 #define SCCE_ENET_TXE ((ushort)0x0010)
371 #define SCCE_ENET_RXF ((ushort)0x0008)
372 #define SCCE_ENET_BSY ((ushort)0x0004)
373 #define SCCE_ENET_TXB ((ushort)0x0002)
374 #define SCCE_ENET_RXB ((ushort)0x0001)
375
376
377
378 #define SCC_PSMR_HBC ((ushort)0x8000)
379 #define SCC_PSMR_FC ((ushort)0x4000)
380 #define SCC_PSMR_RSH ((ushort)0x2000)
381 #define SCC_PSMR_IAM ((ushort)0x1000)
382 #define SCC_PSMR_ENCRC ((ushort)0x0800)
383 #define SCC_PSMR_PRO ((ushort)0x0200)
384 #define SCC_PSMR_BRO ((ushort)0x0100)
385 #define SCC_PSMR_SBT ((ushort)0x0080)
386 #define SCC_PSMR_LPB ((ushort)0x0040)
387 #define SCC_PSMR_SIP ((ushort)0x0020)
388 #define SCC_PSMR_LCW ((ushort)0x0010)
389 #define SCC_PSMR_NIB22 ((ushort)0x000a)
390 #define SCC_PSMR_FDE ((ushort)0x0001)
391
392
393
394 typedef struct scc_uart {
395 sccp_t scc_genscc;
396 char res1[8];
397 ushort scc_maxidl;
398 ushort scc_idlc;
399 ushort scc_brkcr;
400 ushort scc_parec;
401 ushort scc_frmec;
402 ushort scc_nosec;
403 ushort scc_brkec;
404 ushort scc_brkln;
405 ushort scc_uaddr1;
406 ushort scc_uaddr2;
407 ushort scc_rtemp;
408 ushort scc_toseq;
409 ushort scc_char1;
410 ushort scc_char2;
411 ushort scc_char3;
412 ushort scc_char4;
413 ushort scc_char5;
414 ushort scc_char6;
415 ushort scc_char7;
416 ushort scc_char8;
417 ushort scc_rccm;
418 ushort scc_rccr;
419 ushort scc_rlbc;
420 } scc_uart_t;
421
422
423
424 #define UART_SCCM_GLR ((ushort)0x1000)
425 #define UART_SCCM_GLT ((ushort)0x0800)
426 #define UART_SCCM_AB ((ushort)0x0200)
427 #define UART_SCCM_IDL ((ushort)0x0100)
428 #define UART_SCCM_GRA ((ushort)0x0080)
429 #define UART_SCCM_BRKE ((ushort)0x0040)
430 #define UART_SCCM_BRKS ((ushort)0x0020)
431 #define UART_SCCM_CCR ((ushort)0x0008)
432 #define UART_SCCM_BSY ((ushort)0x0004)
433 #define UART_SCCM_TX ((ushort)0x0002)
434 #define UART_SCCM_RX ((ushort)0x0001)
435
436
437
438 #define SCU_PSMR_FLC ((ushort)0x8000)
439 #define SCU_PSMR_SL ((ushort)0x4000)
440 #define SCU_PSMR_CL ((ushort)0x3000)
441 #define SCU_PSMR_UM ((ushort)0x0c00)
442 #define SCU_PSMR_FRZ ((ushort)0x0200)
443 #define SCU_PSMR_RZS ((ushort)0x0100)
444 #define SCU_PSMR_SYN ((ushort)0x0080)
445 #define SCU_PSMR_DRT ((ushort)0x0040)
446 #define SCU_PSMR_PEN ((ushort)0x0010)
447 #define SCU_PSMR_RPM ((ushort)0x000c)
448 #define SCU_PSMR_REVP ((ushort)0x0008)
449 #define SCU_PSMR_TPM ((ushort)0x0003)
450 #define SCU_PSMR_TEVP ((ushort)0x0002)
451
452
453
454 typedef struct scc_trans {
455 sccp_t st_genscc;
456 uint st_cpres;
457 uint st_cmask;
458 } scc_trans_t;
459
460
461
462 typedef struct iic {
463 ushort iic_rbase;
464 ushort iic_tbase;
465 u_char iic_rfcr;
466 u_char iic_tfcr;
467 ushort iic_mrblr;
468 uint iic_rstate;
469 uint iic_rdp;
470 ushort iic_rbptr;
471 ushort iic_rbc;
472 uint iic_rxtmp;
473 uint iic_tstate;
474 uint iic_tdp;
475 ushort iic_tbptr;
476 ushort iic_tbc;
477 uint iic_txtmp;
478 char res1[4];
479 ushort iic_rpbase;
480 char res2[2];
481 } iic_t;
482
483
484
485
486 #define RCCR_TIME 0x8000
487 #define RCCR_TIMEP(t) (((t) & 0x3F)<<8)
488 #define RCCR_TIME_MASK 0x00FF
489
490
491 #define PROFF_RTMR ((uint)0x01B0)
492
493 typedef struct risc_timer_pram {
494 unsigned short tm_base;
495 unsigned short tm_ptr;
496 unsigned short r_tmr;
497 unsigned short r_tmv;
498 unsigned long tm_cmd;
499 unsigned long tm_cnt;
500 } rt_pram_t;
501
502
503 #define TM_CMD_VALID 0x80000000
504 #define TM_CMD_RESTART 0x40000000
505 #define TM_CMD_PWM 0x20000000
506 #define TM_CMD_NUM(n) (((n)&0xF)<<16)
507 #define TM_CMD_PERIOD(p) ((p)&0xFFFF)
508
509
510
511
512
513
514
515
516 #define CPMVEC_NR 32
517 #define CPMVEC_PIO_PC15 ((ushort)0x1f)
518 #define CPMVEC_SCC1 ((ushort)0x1e)
519 #define CPMVEC_SCC2 ((ushort)0x1d)
520 #define CPMVEC_SCC3 ((ushort)0x1c)
521 #define CPMVEC_SCC4 ((ushort)0x1b)
522 #define CPMVEC_PIO_PC14 ((ushort)0x1a)
523 #define CPMVEC_TIMER1 ((ushort)0x19)
524 #define CPMVEC_PIO_PC13 ((ushort)0x18)
525 #define CPMVEC_PIO_PC12 ((ushort)0x17)
526 #define CPMVEC_SDMA_CB_ERR ((ushort)0x16)
527 #define CPMVEC_IDMA1 ((ushort)0x15)
528 #define CPMVEC_IDMA2 ((ushort)0x14)
529 #define CPMVEC_TIMER2 ((ushort)0x12)
530 #define CPMVEC_RISCTIMER ((ushort)0x11)
531 #define CPMVEC_I2C ((ushort)0x10)
532 #define CPMVEC_PIO_PC11 ((ushort)0x0f)
533 #define CPMVEC_PIO_PC10 ((ushort)0x0e)
534 #define CPMVEC_TIMER3 ((ushort)0x0c)
535 #define CPMVEC_PIO_PC9 ((ushort)0x0b)
536 #define CPMVEC_PIO_PC8 ((ushort)0x0a)
537 #define CPMVEC_PIO_PC7 ((ushort)0x09)
538 #define CPMVEC_TIMER4 ((ushort)0x07)
539 #define CPMVEC_PIO_PC6 ((ushort)0x06)
540 #define CPMVEC_SPI ((ushort)0x05)
541 #define CPMVEC_SMC1 ((ushort)0x04)
542 #define CPMVEC_SMC2 ((ushort)0x03)
543 #define CPMVEC_PIO_PC5 ((ushort)0x02)
544 #define CPMVEC_PIO_PC4 ((ushort)0x01)
545 #define CPMVEC_ERROR ((ushort)0x00)
546
547
548
549 #define CICR_SCD_SCC4 ((uint)0x00c00000)
550 #define CICR_SCC_SCC3 ((uint)0x00200000)
551 #define CICR_SCB_SCC2 ((uint)0x00040000)
552 #define CICR_SCA_SCC1 ((uint)0x00000000)
553 #define CICR_IRL_MASK ((uint)0x0000e000)
554 #define CICR_HP_MASK ((uint)0x00001f00)
555 #define CICR_IEN ((uint)0x00000080)
556 #define CICR_SPS ((uint)0x00000001)
557
558 #define CPM_PIN_INPUT 0
559 #define CPM_PIN_OUTPUT 1
560 #define CPM_PIN_PRIMARY 0
561 #define CPM_PIN_SECONDARY 2
562 #define CPM_PIN_GPIO 4
563 #define CPM_PIN_OPENDRAIN 8
564 #define CPM_PIN_FALLEDGE 16
565 #define CPM_PIN_ANYEDGE 0
566
567 enum cpm_port {
568 CPM_PORTA,
569 CPM_PORTB,
570 CPM_PORTC,
571 CPM_PORTD,
572 CPM_PORTE,
573 };
574
575 void cpm1_set_pin(enum cpm_port port, int pin, int flags);
576
577 enum cpm_clk_dir {
578 CPM_CLK_RX,
579 CPM_CLK_TX,
580 CPM_CLK_RTX
581 };
582
583 enum cpm_clk_target {
584 CPM_CLK_SCC1,
585 CPM_CLK_SCC2,
586 CPM_CLK_SCC3,
587 CPM_CLK_SCC4,
588 CPM_CLK_SMC1,
589 CPM_CLK_SMC2,
590 };
591
592 enum cpm_clk {
593 CPM_BRG1,
594 CPM_BRG2,
595 CPM_BRG3,
596 CPM_BRG4,
597 CPM_CLK1,
598 CPM_CLK2,
599 CPM_CLK3,
600 CPM_CLK4,
601 CPM_CLK5,
602 CPM_CLK6,
603 CPM_CLK7,
604 CPM_CLK8,
605 };
606
607 int cpm1_clk_setup(enum cpm_clk_target target, int clock, int mode);
608 int cpm1_gpiochip_add16(struct device *dev);
609 int cpm1_gpiochip_add32(struct device *dev);
610
611 #endif