2 * General Purpose functions for the global management of the
3 * 8260 Communication Processor Module.
4 * Copyright (c) 1999-2001 Dan Malek <dan@embeddedalley.com>
5 * Copyright (c) 2000 MontaVista Software, Inc (source@mvista.com)
8 * 2006 (c) MontaVista Software, Inc.
9 * Vitaly Bordug <vbordug@ru.mvista.com>
10 * Merged to arch/powerpc from arch/ppc/syslib/cpm2_common.c
12 * This file is licensed under the terms of the GNU General Public License
13 * version 2. This program is licensed "as is" without any warranty of any
14 * kind, whether express or implied.
19 * In addition to the individual control of the communication
20 * channels, there are a few functions that globally affect the
21 * communication processor.
23 * Buffer descriptors must be allocated from the dual ported memory
24 * space. The allocator for that is here. When the communication
25 * process is reset, we reclaim the memory available. There is
26 * currently no deallocator for this memory.
28 #include <linux/errno.h>
29 #include <linux/sched.h>
30 #include <linux/kernel.h>
31 #include <linux/param.h>
32 #include <linux/string.h>
34 #include <linux/interrupt.h>
35 #include <linux/module.h>
40 #include <asm/mpc8260.h>
42 #include <asm/pgtable.h>
44 #include <asm/rheap.h>
45 #include <asm/fs_pd.h>
47 #include <sysdev/fsl_soc.h>
49 #ifndef CONFIG_PPC_CPM_NEW_BINDING
50 static void cpm2_dpinit(void);
53 cpm_cpm2_t __iomem
*cpmp
; /* Pointer to comm processor space */
55 /* We allocate this here because it is used almost exclusively for
56 * the communication processor devices.
58 cpm2_map_t __iomem
*cpm2_immr
;
60 #define CPM_MAP_SIZE (0x40000) /* 256k - the PQ3 reserve this amount
61 of space for CPM as it is larger
64 void __init
cpm2_reset(void)
66 #ifdef CONFIG_PPC_85xx
67 cpm2_immr
= ioremap(CPM_MAP_ADDR
, CPM_MAP_SIZE
);
69 cpm2_immr
= ioremap(get_immrbase(), CPM_MAP_SIZE
);
72 /* Reclaim the DP memory for our use.
74 #ifdef CONFIG_PPC_CPM_NEW_BINDING
80 /* Tell everyone where the comm processor resides.
82 cpmp
= &cpm2_immr
->im_cpm
;
85 static DEFINE_SPINLOCK(cmd_lock
);
87 #define MAX_CR_CMD_LOOPS 10000
89 int cpm_command(u32 command
, u8 opcode
)
94 spin_lock_irqsave(&cmd_lock
, flags
);
97 out_be32(&cpmp
->cp_cpcr
, command
| opcode
| CPM_CR_FLG
);
98 for (i
= 0; i
< MAX_CR_CMD_LOOPS
; i
++)
99 if ((in_be32(&cpmp
->cp_cpcr
) & CPM_CR_FLG
) == 0)
102 printk(KERN_ERR
"%s(): Not able to issue CPM command\n", __FUNCTION__
);
105 spin_unlock_irqrestore(&cmd_lock
, flags
);
108 EXPORT_SYMBOL(cpm_command
);
110 /* Set a baud rate generator. This needs lots of work. There are
111 * eight BRGs, which can be connected to the CPM channels or output
112 * as clocks. The BRGs are in two different block of internal
113 * memory mapped space.
114 * The baud rate clock is the system clock divided by something.
115 * It was set up long ago during the initial boot phase and is
117 * Baud rate clocks are zero-based in the driver code (as that maps
118 * to port numbers). Documentation uses 1-based numbering.
120 #define BRG_INT_CLK (get_brgfreq())
121 #define BRG_UART_CLK (BRG_INT_CLK/16)
123 /* This function is used by UARTS, or anything else that uses a 16x
127 cpm_setbrg(uint brg
, uint rate
)
131 /* This is good enough to get SMCs running.....
134 bp
= cpm2_map_size(im_brgc1
, 16);
136 bp
= cpm2_map_size(im_brgc5
, 16);
140 out_be32(bp
, (((BRG_UART_CLK
/ rate
) - 1) << 1) | CPM_BRG_EN
);
145 /* This function is used to set high speed synchronous baud rate
149 cpm2_fastbrg(uint brg
, uint rate
, int div16
)
155 bp
= cpm2_map_size(im_brgc1
, 16);
157 bp
= cpm2_map_size(im_brgc5
, 16);
161 val
= ((BRG_INT_CLK
/ rate
) << 1) | CPM_BRG_EN
;
163 val
|= CPM_BRG_DIV16
;
169 int cpm2_clk_setup(enum cpm_clk_target target
, int clock
, int mode
)
174 cpmux_t __iomem
*im_cpmux
;
179 {CPM_CLK_FCC1
, CPM_BRG5
, 0},
180 {CPM_CLK_FCC1
, CPM_BRG6
, 1},
181 {CPM_CLK_FCC1
, CPM_BRG7
, 2},
182 {CPM_CLK_FCC1
, CPM_BRG8
, 3},
183 {CPM_CLK_FCC1
, CPM_CLK9
, 4},
184 {CPM_CLK_FCC1
, CPM_CLK10
, 5},
185 {CPM_CLK_FCC1
, CPM_CLK11
, 6},
186 {CPM_CLK_FCC1
, CPM_CLK12
, 7},
187 {CPM_CLK_FCC2
, CPM_BRG5
, 0},
188 {CPM_CLK_FCC2
, CPM_BRG6
, 1},
189 {CPM_CLK_FCC2
, CPM_BRG7
, 2},
190 {CPM_CLK_FCC2
, CPM_BRG8
, 3},
191 {CPM_CLK_FCC2
, CPM_CLK13
, 4},
192 {CPM_CLK_FCC2
, CPM_CLK14
, 5},
193 {CPM_CLK_FCC2
, CPM_CLK15
, 6},
194 {CPM_CLK_FCC2
, CPM_CLK16
, 7},
195 {CPM_CLK_FCC3
, CPM_BRG5
, 0},
196 {CPM_CLK_FCC3
, CPM_BRG6
, 1},
197 {CPM_CLK_FCC3
, CPM_BRG7
, 2},
198 {CPM_CLK_FCC3
, CPM_BRG8
, 3},
199 {CPM_CLK_FCC3
, CPM_CLK13
, 4},
200 {CPM_CLK_FCC3
, CPM_CLK14
, 5},
201 {CPM_CLK_FCC3
, CPM_CLK15
, 6},
202 {CPM_CLK_FCC3
, CPM_CLK16
, 7},
203 {CPM_CLK_SCC1
, CPM_BRG1
, 0},
204 {CPM_CLK_SCC1
, CPM_BRG2
, 1},
205 {CPM_CLK_SCC1
, CPM_BRG3
, 2},
206 {CPM_CLK_SCC1
, CPM_BRG4
, 3},
207 {CPM_CLK_SCC1
, CPM_CLK11
, 4},
208 {CPM_CLK_SCC1
, CPM_CLK12
, 5},
209 {CPM_CLK_SCC1
, CPM_CLK3
, 6},
210 {CPM_CLK_SCC1
, CPM_CLK4
, 7},
211 {CPM_CLK_SCC2
, CPM_BRG1
, 0},
212 {CPM_CLK_SCC2
, CPM_BRG2
, 1},
213 {CPM_CLK_SCC2
, CPM_BRG3
, 2},
214 {CPM_CLK_SCC2
, CPM_BRG4
, 3},
215 {CPM_CLK_SCC2
, CPM_CLK11
, 4},
216 {CPM_CLK_SCC2
, CPM_CLK12
, 5},
217 {CPM_CLK_SCC2
, CPM_CLK3
, 6},
218 {CPM_CLK_SCC2
, CPM_CLK4
, 7},
219 {CPM_CLK_SCC3
, CPM_BRG1
, 0},
220 {CPM_CLK_SCC3
, CPM_BRG2
, 1},
221 {CPM_CLK_SCC3
, CPM_BRG3
, 2},
222 {CPM_CLK_SCC3
, CPM_BRG4
, 3},
223 {CPM_CLK_SCC3
, CPM_CLK5
, 4},
224 {CPM_CLK_SCC3
, CPM_CLK6
, 5},
225 {CPM_CLK_SCC3
, CPM_CLK7
, 6},
226 {CPM_CLK_SCC3
, CPM_CLK8
, 7},
227 {CPM_CLK_SCC4
, CPM_BRG1
, 0},
228 {CPM_CLK_SCC4
, CPM_BRG2
, 1},
229 {CPM_CLK_SCC4
, CPM_BRG3
, 2},
230 {CPM_CLK_SCC4
, CPM_BRG4
, 3},
231 {CPM_CLK_SCC4
, CPM_CLK5
, 4},
232 {CPM_CLK_SCC4
, CPM_CLK6
, 5},
233 {CPM_CLK_SCC4
, CPM_CLK7
, 6},
234 {CPM_CLK_SCC4
, CPM_CLK8
, 7},
237 im_cpmux
= cpm2_map(im_cpmux
);
241 reg
= &im_cpmux
->cmx_scr
;
244 reg
= &im_cpmux
->cmx_scr
;
248 reg
= &im_cpmux
->cmx_scr
;
252 reg
= &im_cpmux
->cmx_scr
;
256 reg
= &im_cpmux
->cmx_fcr
;
260 reg
= &im_cpmux
->cmx_fcr
;
264 reg
= &im_cpmux
->cmx_fcr
;
268 printk(KERN_ERR
"cpm2_clock_setup: invalid clock target\n");
272 if (mode
== CPM_CLK_RX
)
275 for (i
= 0; i
< ARRAY_SIZE(clk_map
); i
++) {
276 if (clk_map
[i
][0] == target
&& clk_map
[i
][1] == clock
) {
277 bits
= clk_map
[i
][2];
281 if (i
== ARRAY_SIZE(clk_map
))
287 out_be32(reg
, (in_be32(reg
) & ~mask
) | bits
);
289 cpm2_unmap(im_cpmux
);
293 int cpm2_smc_clk_setup(enum cpm_clk_target target
, int clock
)
298 cpmux_t __iomem
*im_cpmux
;
303 {CPM_CLK_SMC1
, CPM_BRG1
, 0},
304 {CPM_CLK_SMC1
, CPM_BRG7
, 1},
305 {CPM_CLK_SMC1
, CPM_CLK7
, 2},
306 {CPM_CLK_SMC1
, CPM_CLK9
, 3},
307 {CPM_CLK_SMC2
, CPM_BRG2
, 0},
308 {CPM_CLK_SMC2
, CPM_BRG8
, 1},
309 {CPM_CLK_SMC2
, CPM_CLK4
, 2},
310 {CPM_CLK_SMC2
, CPM_CLK15
, 3},
313 im_cpmux
= cpm2_map(im_cpmux
);
317 reg
= &im_cpmux
->cmx_smr
;
322 reg
= &im_cpmux
->cmx_smr
;
327 printk(KERN_ERR
"cpm2_smc_clock_setup: invalid clock target\n");
331 for (i
= 0; i
< ARRAY_SIZE(clk_map
); i
++) {
332 if (clk_map
[i
][0] == target
&& clk_map
[i
][1] == clock
) {
333 bits
= clk_map
[i
][2];
337 if (i
== ARRAY_SIZE(clk_map
))
343 out_8(reg
, (in_8(reg
) & ~mask
) | bits
);
345 cpm2_unmap(im_cpmux
);
349 #ifndef CONFIG_PPC_CPM_NEW_BINDING
351 * dpalloc / dpfree bits.
353 static spinlock_t cpm_dpmem_lock
;
354 /* 16 blocks should be enough to satisfy all requests
355 * until the memory subsystem goes up... */
356 static rh_block_t cpm_boot_dpmem_rh_block
[16];
357 static rh_info_t cpm_dpmem_info
;
358 static u8 __iomem
*im_dprambase
;
360 static void cpm2_dpinit(void)
362 spin_lock_init(&cpm_dpmem_lock
);
364 /* initialize the info header */
365 rh_init(&cpm_dpmem_info
, 1,
366 sizeof(cpm_boot_dpmem_rh_block
) /
367 sizeof(cpm_boot_dpmem_rh_block
[0]),
368 cpm_boot_dpmem_rh_block
);
370 im_dprambase
= cpm2_immr
;
372 /* Attach the usable dpmem area */
373 /* XXX: This is actually crap. CPM_DATAONLY_BASE and
374 * CPM_DATAONLY_SIZE is only a subset of the available dpram. It
375 * varies with the processor and the microcode patches activated.
376 * But the following should be at least safe.
378 rh_attach_region(&cpm_dpmem_info
, CPM_DATAONLY_BASE
, CPM_DATAONLY_SIZE
);
381 /* This function returns an index into the DPRAM area.
383 unsigned long cpm_dpalloc(uint size
, uint align
)
388 spin_lock_irqsave(&cpm_dpmem_lock
, flags
);
389 cpm_dpmem_info
.alignment
= align
;
390 start
= rh_alloc(&cpm_dpmem_info
, size
, "commproc");
391 spin_unlock_irqrestore(&cpm_dpmem_lock
, flags
);
395 EXPORT_SYMBOL(cpm_dpalloc
);
397 int cpm_dpfree(unsigned long offset
)
402 spin_lock_irqsave(&cpm_dpmem_lock
, flags
);
403 ret
= rh_free(&cpm_dpmem_info
, offset
);
404 spin_unlock_irqrestore(&cpm_dpmem_lock
, flags
);
408 EXPORT_SYMBOL(cpm_dpfree
);
410 /* not sure if this is ever needed */
411 unsigned long cpm_dpalloc_fixed(unsigned long offset
, uint size
, uint align
)
416 spin_lock_irqsave(&cpm_dpmem_lock
, flags
);
417 cpm_dpmem_info
.alignment
= align
;
418 start
= rh_alloc_fixed(&cpm_dpmem_info
, offset
, size
, "commproc");
419 spin_unlock_irqrestore(&cpm_dpmem_lock
, flags
);
423 EXPORT_SYMBOL(cpm_dpalloc_fixed
);
425 void cpm_dpdump(void)
427 rh_dump(&cpm_dpmem_info
);
429 EXPORT_SYMBOL(cpm_dpdump
);
431 void *cpm_dpram_addr(unsigned long offset
)
433 return (void *)(im_dprambase
+ offset
);
435 EXPORT_SYMBOL(cpm_dpram_addr
);
436 #endif /* !CONFIG_PPC_CPM_NEW_BINDING */
438 struct cpm2_ioports
{
439 u32 dir
, par
, sor
, odr
, dat
;
443 void cpm2_set_pin(int port
, int pin
, int flags
)
445 struct cpm2_ioports __iomem
*iop
=
446 (struct cpm2_ioports __iomem
*)&cpm2_immr
->im_ioport
;
448 pin
= 1 << (31 - pin
);
450 if (flags
& CPM_PIN_OUTPUT
)
451 setbits32(&iop
[port
].dir
, pin
);
453 clrbits32(&iop
[port
].dir
, pin
);
455 if (!(flags
& CPM_PIN_GPIO
))
456 setbits32(&iop
[port
].par
, pin
);
458 clrbits32(&iop
[port
].par
, pin
);
460 if (flags
& CPM_PIN_SECONDARY
)
461 setbits32(&iop
[port
].sor
, pin
);
463 clrbits32(&iop
[port
].sor
, pin
);
465 if (flags
& CPM_PIN_OPENDRAIN
)
466 setbits32(&iop
[port
].odr
, pin
);
468 clrbits32(&iop
[port
].odr
, pin
);