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 /* Set a baud rate generator. This needs lots of work. There are
86 * eight BRGs, which can be connected to the CPM channels or output
87 * as clocks. The BRGs are in two different block of internal
88 * memory mapped space.
89 * The baud rate clock is the system clock divided by something.
90 * It was set up long ago during the initial boot phase and is
92 * Baud rate clocks are zero-based in the driver code (as that maps
93 * to port numbers). Documentation uses 1-based numbering.
95 #define BRG_INT_CLK (get_brgfreq())
96 #define BRG_UART_CLK (BRG_INT_CLK/16)
98 /* This function is used by UARTS, or anything else that uses a 16x
102 cpm_setbrg(uint brg
, uint rate
)
106 /* This is good enough to get SMCs running.....
109 bp
= cpm2_map_size(im_brgc1
, 16);
111 bp
= cpm2_map_size(im_brgc5
, 16);
115 out_be32(bp
, (((BRG_UART_CLK
/ rate
) - 1) << 1) | CPM_BRG_EN
);
120 /* This function is used to set high speed synchronous baud rate
124 cpm2_fastbrg(uint brg
, uint rate
, int div16
)
130 bp
= cpm2_map_size(im_brgc1
, 16);
133 bp
= cpm2_map_size(im_brgc5
, 16);
137 val
= ((BRG_INT_CLK
/ rate
) << 1) | CPM_BRG_EN
;
139 val
|= CPM_BRG_DIV16
;
145 int cpm2_clk_setup(enum cpm_clk_target target
, int clock
, int mode
)
150 cpmux_t __iomem
*im_cpmux
;
155 {CPM_CLK_FCC1
, CPM_BRG5
, 0},
156 {CPM_CLK_FCC1
, CPM_BRG6
, 1},
157 {CPM_CLK_FCC1
, CPM_BRG7
, 2},
158 {CPM_CLK_FCC1
, CPM_BRG8
, 3},
159 {CPM_CLK_FCC1
, CPM_CLK9
, 4},
160 {CPM_CLK_FCC1
, CPM_CLK10
, 5},
161 {CPM_CLK_FCC1
, CPM_CLK11
, 6},
162 {CPM_CLK_FCC1
, CPM_CLK12
, 7},
163 {CPM_CLK_FCC2
, CPM_BRG5
, 0},
164 {CPM_CLK_FCC2
, CPM_BRG6
, 1},
165 {CPM_CLK_FCC2
, CPM_BRG7
, 2},
166 {CPM_CLK_FCC2
, CPM_BRG8
, 3},
167 {CPM_CLK_FCC2
, CPM_CLK13
, 4},
168 {CPM_CLK_FCC2
, CPM_CLK14
, 5},
169 {CPM_CLK_FCC2
, CPM_CLK15
, 6},
170 {CPM_CLK_FCC2
, CPM_CLK16
, 7},
171 {CPM_CLK_FCC3
, CPM_BRG5
, 0},
172 {CPM_CLK_FCC3
, CPM_BRG6
, 1},
173 {CPM_CLK_FCC3
, CPM_BRG7
, 2},
174 {CPM_CLK_FCC3
, CPM_BRG8
, 3},
175 {CPM_CLK_FCC3
, CPM_CLK13
, 4},
176 {CPM_CLK_FCC3
, CPM_CLK14
, 5},
177 {CPM_CLK_FCC3
, CPM_CLK15
, 6},
178 {CPM_CLK_FCC3
, CPM_CLK16
, 7},
179 {CPM_CLK_SCC1
, CPM_BRG1
, 0},
180 {CPM_CLK_SCC1
, CPM_BRG2
, 1},
181 {CPM_CLK_SCC1
, CPM_BRG3
, 2},
182 {CPM_CLK_SCC1
, CPM_BRG4
, 3},
183 {CPM_CLK_SCC1
, CPM_CLK11
, 4},
184 {CPM_CLK_SCC1
, CPM_CLK12
, 5},
185 {CPM_CLK_SCC1
, CPM_CLK3
, 6},
186 {CPM_CLK_SCC1
, CPM_CLK4
, 7},
187 {CPM_CLK_SCC2
, CPM_BRG1
, 0},
188 {CPM_CLK_SCC2
, CPM_BRG2
, 1},
189 {CPM_CLK_SCC2
, CPM_BRG3
, 2},
190 {CPM_CLK_SCC2
, CPM_BRG4
, 3},
191 {CPM_CLK_SCC2
, CPM_CLK11
, 4},
192 {CPM_CLK_SCC2
, CPM_CLK12
, 5},
193 {CPM_CLK_SCC2
, CPM_CLK3
, 6},
194 {CPM_CLK_SCC2
, CPM_CLK4
, 7},
195 {CPM_CLK_SCC3
, CPM_BRG1
, 0},
196 {CPM_CLK_SCC3
, CPM_BRG2
, 1},
197 {CPM_CLK_SCC3
, CPM_BRG3
, 2},
198 {CPM_CLK_SCC3
, CPM_BRG4
, 3},
199 {CPM_CLK_SCC3
, CPM_CLK5
, 4},
200 {CPM_CLK_SCC3
, CPM_CLK6
, 5},
201 {CPM_CLK_SCC3
, CPM_CLK7
, 6},
202 {CPM_CLK_SCC3
, CPM_CLK8
, 7},
203 {CPM_CLK_SCC4
, CPM_BRG1
, 0},
204 {CPM_CLK_SCC4
, CPM_BRG2
, 1},
205 {CPM_CLK_SCC4
, CPM_BRG3
, 2},
206 {CPM_CLK_SCC4
, CPM_BRG4
, 3},
207 {CPM_CLK_SCC4
, CPM_CLK5
, 4},
208 {CPM_CLK_SCC4
, CPM_CLK6
, 5},
209 {CPM_CLK_SCC4
, CPM_CLK7
, 6},
210 {CPM_CLK_SCC4
, CPM_CLK8
, 7},
213 im_cpmux
= cpm2_map(im_cpmux
);
217 reg
= &im_cpmux
->cmx_scr
;
220 reg
= &im_cpmux
->cmx_scr
;
224 reg
= &im_cpmux
->cmx_scr
;
228 reg
= &im_cpmux
->cmx_scr
;
232 reg
= &im_cpmux
->cmx_fcr
;
236 reg
= &im_cpmux
->cmx_fcr
;
240 reg
= &im_cpmux
->cmx_fcr
;
244 printk(KERN_ERR
"cpm2_clock_setup: invalid clock target\n");
248 if (mode
== CPM_CLK_RX
)
251 for (i
= 0; i
< ARRAY_SIZE(clk_map
); i
++) {
252 if (clk_map
[i
][0] == target
&& clk_map
[i
][1] == clock
) {
253 bits
= clk_map
[i
][2];
257 if (i
== ARRAY_SIZE(clk_map
))
263 out_be32(reg
, (in_be32(reg
) & ~mask
) | bits
);
265 cpm2_unmap(im_cpmux
);
269 int cpm2_smc_clk_setup(enum cpm_clk_target target
, int clock
)
274 cpmux_t __iomem
*im_cpmux
;
279 {CPM_CLK_SMC1
, CPM_BRG1
, 0},
280 {CPM_CLK_SMC1
, CPM_BRG7
, 1},
281 {CPM_CLK_SMC1
, CPM_CLK7
, 2},
282 {CPM_CLK_SMC1
, CPM_CLK9
, 3},
283 {CPM_CLK_SMC2
, CPM_BRG2
, 0},
284 {CPM_CLK_SMC2
, CPM_BRG8
, 1},
285 {CPM_CLK_SMC2
, CPM_CLK4
, 2},
286 {CPM_CLK_SMC2
, CPM_CLK15
, 3},
289 im_cpmux
= cpm2_map(im_cpmux
);
293 reg
= &im_cpmux
->cmx_smr
;
298 reg
= &im_cpmux
->cmx_smr
;
303 printk(KERN_ERR
"cpm2_smc_clock_setup: invalid clock target\n");
307 for (i
= 0; i
< ARRAY_SIZE(clk_map
); i
++) {
308 if (clk_map
[i
][0] == target
&& clk_map
[i
][1] == clock
) {
309 bits
= clk_map
[i
][2];
313 if (i
== ARRAY_SIZE(clk_map
))
319 out_8(reg
, (in_8(reg
) & ~mask
) | bits
);
321 cpm2_unmap(im_cpmux
);
325 #ifndef CONFIG_PPC_CPM_NEW_BINDING
327 * dpalloc / dpfree bits.
329 static spinlock_t cpm_dpmem_lock
;
330 /* 16 blocks should be enough to satisfy all requests
331 * until the memory subsystem goes up... */
332 static rh_block_t cpm_boot_dpmem_rh_block
[16];
333 static rh_info_t cpm_dpmem_info
;
334 static u8 __iomem
*im_dprambase
;
336 static void cpm2_dpinit(void)
338 spin_lock_init(&cpm_dpmem_lock
);
340 /* initialize the info header */
341 rh_init(&cpm_dpmem_info
, 1,
342 sizeof(cpm_boot_dpmem_rh_block
) /
343 sizeof(cpm_boot_dpmem_rh_block
[0]),
344 cpm_boot_dpmem_rh_block
);
346 im_dprambase
= cpm2_immr
;
348 /* Attach the usable dpmem area */
349 /* XXX: This is actually crap. CPM_DATAONLY_BASE and
350 * CPM_DATAONLY_SIZE is only a subset of the available dpram. It
351 * varies with the processor and the microcode patches activated.
352 * But the following should be at least safe.
354 rh_attach_region(&cpm_dpmem_info
, CPM_DATAONLY_BASE
, CPM_DATAONLY_SIZE
);
357 /* This function returns an index into the DPRAM area.
359 unsigned long cpm_dpalloc(uint size
, uint align
)
364 spin_lock_irqsave(&cpm_dpmem_lock
, flags
);
365 cpm_dpmem_info
.alignment
= align
;
366 start
= rh_alloc(&cpm_dpmem_info
, size
, "commproc");
367 spin_unlock_irqrestore(&cpm_dpmem_lock
, flags
);
371 EXPORT_SYMBOL(cpm_dpalloc
);
373 int cpm_dpfree(unsigned long offset
)
378 spin_lock_irqsave(&cpm_dpmem_lock
, flags
);
379 ret
= rh_free(&cpm_dpmem_info
, offset
);
380 spin_unlock_irqrestore(&cpm_dpmem_lock
, flags
);
384 EXPORT_SYMBOL(cpm_dpfree
);
386 /* not sure if this is ever needed */
387 unsigned long cpm_dpalloc_fixed(unsigned long offset
, uint size
, uint align
)
392 spin_lock_irqsave(&cpm_dpmem_lock
, flags
);
393 cpm_dpmem_info
.alignment
= align
;
394 start
= rh_alloc_fixed(&cpm_dpmem_info
, offset
, size
, "commproc");
395 spin_unlock_irqrestore(&cpm_dpmem_lock
, flags
);
399 EXPORT_SYMBOL(cpm_dpalloc_fixed
);
401 void cpm_dpdump(void)
403 rh_dump(&cpm_dpmem_info
);
405 EXPORT_SYMBOL(cpm_dpdump
);
407 void *cpm_dpram_addr(unsigned long offset
)
409 return (void *)(im_dprambase
+ offset
);
411 EXPORT_SYMBOL(cpm_dpram_addr
);
412 #endif /* !CONFIG_PPC_CPM_NEW_BINDING */
414 struct cpm2_ioports
{
415 u32 dir
, par
, sor
, odr
, dat
;
419 void cpm2_set_pin(int port
, int pin
, int flags
)
421 struct cpm2_ioports __iomem
*iop
=
422 (struct cpm2_ioports __iomem
*)&cpm2_immr
->im_ioport
;
424 pin
= 1 << (31 - pin
);
426 if (flags
& CPM_PIN_OUTPUT
)
427 setbits32(&iop
[port
].dir
, pin
);
429 clrbits32(&iop
[port
].dir
, pin
);
431 if (!(flags
& CPM_PIN_GPIO
))
432 setbits32(&iop
[port
].par
, pin
);
434 clrbits32(&iop
[port
].par
, pin
);
436 if (flags
& CPM_PIN_SECONDARY
)
437 setbits32(&iop
[port
].sor
, pin
);
439 clrbits32(&iop
[port
].sor
, pin
);
441 if (flags
& CPM_PIN_OPENDRAIN
)
442 setbits32(&iop
[port
].odr
, pin
);
444 clrbits32(&iop
[port
].odr
, pin
);