]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/powerpc/sysdev/cpm2_common.c
[POWERPC] cpm2: Add SCCs to cpm2_clk_setup(), and cpm2_smc_clk_setup().
[mirror_ubuntu-artful-kernel.git] / arch / powerpc / sysdev / cpm2_common.c
CommitLineData
b0c110b4
VB
1/*
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)
6 * 2.3.99 Updates
7 *
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
11 *
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.
15 */
16
17/*
18 *
19 * In addition to the individual control of the communication
20 * channels, there are a few functions that globally affect the
21 * communication processor.
22 *
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.
27 */
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>
33#include <linux/mm.h>
34#include <linux/interrupt.h>
35#include <linux/module.h>
449012da
SW
36#include <linux/of.h>
37
b0c110b4
VB
38#include <asm/io.h>
39#include <asm/irq.h>
40#include <asm/mpc8260.h>
41#include <asm/page.h>
42#include <asm/pgtable.h>
43#include <asm/cpm2.h>
44#include <asm/rheap.h>
45#include <asm/fs_pd.h>
46
47#include <sysdev/fsl_soc.h>
48
49static void cpm2_dpinit(void);
449012da 50cpm_cpm2_t __iomem *cpmp; /* Pointer to comm processor space */
b0c110b4
VB
51
52/* We allocate this here because it is used almost exclusively for
53 * the communication processor devices.
54 */
449012da 55cpm2_map_t __iomem *cpm2_immr;
b0c110b4
VB
56
57#define CPM_MAP_SIZE (0x40000) /* 256k - the PQ3 reserve this amount
58 of space for CPM as it is larger
59 than on PQ2 */
60
61void
62cpm2_reset(void)
63{
449012da
SW
64#ifdef CONFIG_PPC_85xx
65 cpm2_immr = ioremap(CPM_MAP_ADDR, CPM_MAP_SIZE);
66#else
67 cpm2_immr = ioremap(get_immrbase(), CPM_MAP_SIZE);
68#endif
b0c110b4
VB
69
70 /* Reclaim the DP memory for our use.
71 */
72 cpm2_dpinit();
73
74 /* Tell everyone where the comm processor resides.
75 */
76 cpmp = &cpm2_immr->im_cpm;
77}
78
79/* Set a baud rate generator. This needs lots of work. There are
80 * eight BRGs, which can be connected to the CPM channels or output
81 * as clocks. The BRGs are in two different block of internal
82 * memory mapped space.
83 * The baud rate clock is the system clock divided by something.
84 * It was set up long ago during the initial boot phase and is
85 * is given to us.
86 * Baud rate clocks are zero-based in the driver code (as that maps
87 * to port numbers). Documentation uses 1-based numbering.
88 */
89#define BRG_INT_CLK (get_brgfreq())
90#define BRG_UART_CLK (BRG_INT_CLK/16)
91
92/* This function is used by UARTS, or anything else that uses a 16x
93 * oversampled clock.
94 */
95void
96cpm_setbrg(uint brg, uint rate)
97{
449012da 98 u32 __iomem *bp;
b0c110b4
VB
99
100 /* This is good enough to get SMCs running.....
101 */
102 if (brg < 4) {
fc8e50e3 103 bp = cpm2_map_size(im_brgc1, 16);
b0c110b4 104 } else {
fc8e50e3 105 bp = cpm2_map_size(im_brgc5, 16);
b0c110b4
VB
106 brg -= 4;
107 }
108 bp += brg;
83fcdb4b 109 out_be32(bp, (((BRG_UART_CLK / rate) - 1) << 1) | CPM_BRG_EN);
fc8e50e3
VB
110
111 cpm2_unmap(bp);
b0c110b4
VB
112}
113
114/* This function is used to set high speed synchronous baud rate
115 * clocks.
116 */
117void
118cpm2_fastbrg(uint brg, uint rate, int div16)
119{
449012da
SW
120 u32 __iomem *bp;
121 u32 val;
b0c110b4
VB
122
123 if (brg < 4) {
fc8e50e3 124 bp = cpm2_map_size(im_brgc1, 16);
b0c110b4
VB
125 }
126 else {
fc8e50e3 127 bp = cpm2_map_size(im_brgc5, 16);
b0c110b4
VB
128 brg -= 4;
129 }
130 bp += brg;
449012da 131 val = ((BRG_INT_CLK / rate) << 1) | CPM_BRG_EN;
b0c110b4 132 if (div16)
449012da 133 val |= CPM_BRG_DIV16;
fc8e50e3 134
449012da 135 out_be32(bp, val);
fc8e50e3 136 cpm2_unmap(bp);
b0c110b4
VB
137}
138
d3465c92
VB
139int cpm2_clk_setup(enum cpm_clk_target target, int clock, int mode)
140{
141 int ret = 0;
142 int shift;
143 int i, bits = 0;
449012da
SW
144 cpmux_t __iomem *im_cpmux;
145 u32 __iomem *reg;
d3465c92 146 u32 mask = 7;
2652d4ec
SW
147
148 u8 clk_map[][3] = {
d3465c92
VB
149 {CPM_CLK_FCC1, CPM_BRG5, 0},
150 {CPM_CLK_FCC1, CPM_BRG6, 1},
151 {CPM_CLK_FCC1, CPM_BRG7, 2},
152 {CPM_CLK_FCC1, CPM_BRG8, 3},
153 {CPM_CLK_FCC1, CPM_CLK9, 4},
154 {CPM_CLK_FCC1, CPM_CLK10, 5},
155 {CPM_CLK_FCC1, CPM_CLK11, 6},
156 {CPM_CLK_FCC1, CPM_CLK12, 7},
157 {CPM_CLK_FCC2, CPM_BRG5, 0},
158 {CPM_CLK_FCC2, CPM_BRG6, 1},
159 {CPM_CLK_FCC2, CPM_BRG7, 2},
160 {CPM_CLK_FCC2, CPM_BRG8, 3},
161 {CPM_CLK_FCC2, CPM_CLK13, 4},
162 {CPM_CLK_FCC2, CPM_CLK14, 5},
163 {CPM_CLK_FCC2, CPM_CLK15, 6},
164 {CPM_CLK_FCC2, CPM_CLK16, 7},
165 {CPM_CLK_FCC3, CPM_BRG5, 0},
166 {CPM_CLK_FCC3, CPM_BRG6, 1},
167 {CPM_CLK_FCC3, CPM_BRG7, 2},
168 {CPM_CLK_FCC3, CPM_BRG8, 3},
169 {CPM_CLK_FCC3, CPM_CLK13, 4},
170 {CPM_CLK_FCC3, CPM_CLK14, 5},
171 {CPM_CLK_FCC3, CPM_CLK15, 6},
2652d4ec
SW
172 {CPM_CLK_FCC3, CPM_CLK16, 7},
173 {CPM_CLK_SCC1, CPM_BRG1, 0},
174 {CPM_CLK_SCC1, CPM_BRG2, 1},
175 {CPM_CLK_SCC1, CPM_BRG3, 2},
176 {CPM_CLK_SCC1, CPM_BRG4, 3},
177 {CPM_CLK_SCC1, CPM_CLK11, 4},
178 {CPM_CLK_SCC1, CPM_CLK12, 5},
179 {CPM_CLK_SCC1, CPM_CLK3, 6},
180 {CPM_CLK_SCC1, CPM_CLK4, 7},
181 {CPM_CLK_SCC2, CPM_BRG1, 0},
182 {CPM_CLK_SCC2, CPM_BRG2, 1},
183 {CPM_CLK_SCC2, CPM_BRG3, 2},
184 {CPM_CLK_SCC2, CPM_BRG4, 3},
185 {CPM_CLK_SCC2, CPM_CLK11, 4},
186 {CPM_CLK_SCC2, CPM_CLK12, 5},
187 {CPM_CLK_SCC2, CPM_CLK3, 6},
188 {CPM_CLK_SCC2, CPM_CLK4, 7},
189 {CPM_CLK_SCC3, CPM_BRG1, 0},
190 {CPM_CLK_SCC3, CPM_BRG2, 1},
191 {CPM_CLK_SCC3, CPM_BRG3, 2},
192 {CPM_CLK_SCC3, CPM_BRG4, 3},
193 {CPM_CLK_SCC3, CPM_CLK5, 4},
194 {CPM_CLK_SCC3, CPM_CLK6, 5},
195 {CPM_CLK_SCC3, CPM_CLK7, 6},
196 {CPM_CLK_SCC3, CPM_CLK8, 7},
197 {CPM_CLK_SCC4, CPM_BRG1, 0},
198 {CPM_CLK_SCC4, CPM_BRG2, 1},
199 {CPM_CLK_SCC4, CPM_BRG3, 2},
200 {CPM_CLK_SCC4, CPM_BRG4, 3},
201 {CPM_CLK_SCC4, CPM_CLK5, 4},
202 {CPM_CLK_SCC4, CPM_CLK6, 5},
203 {CPM_CLK_SCC4, CPM_CLK7, 6},
204 {CPM_CLK_SCC4, CPM_CLK8, 7},
205 };
d3465c92
VB
206
207 im_cpmux = cpm2_map(im_cpmux);
208
209 switch (target) {
210 case CPM_CLK_SCC1:
211 reg = &im_cpmux->cmx_scr;
212 shift = 24;
213 case CPM_CLK_SCC2:
214 reg = &im_cpmux->cmx_scr;
215 shift = 16;
216 break;
217 case CPM_CLK_SCC3:
218 reg = &im_cpmux->cmx_scr;
219 shift = 8;
220 break;
221 case CPM_CLK_SCC4:
222 reg = &im_cpmux->cmx_scr;
223 shift = 0;
224 break;
225 case CPM_CLK_FCC1:
226 reg = &im_cpmux->cmx_fcr;
227 shift = 24;
228 break;
229 case CPM_CLK_FCC2:
230 reg = &im_cpmux->cmx_fcr;
231 shift = 16;
232 break;
233 case CPM_CLK_FCC3:
234 reg = &im_cpmux->cmx_fcr;
235 shift = 8;
236 break;
237 default:
238 printk(KERN_ERR "cpm2_clock_setup: invalid clock target\n");
239 return -EINVAL;
240 }
241
242 if (mode == CPM_CLK_RX)
4b218e9b 243 shift += 3;
d3465c92 244
2652d4ec 245 for (i = 0; i < ARRAY_SIZE(clk_map); i++) {
d3465c92
VB
246 if (clk_map[i][0] == target && clk_map[i][1] == clock) {
247 bits = clk_map[i][2];
248 break;
249 }
250 }
2652d4ec 251 if (i == ARRAY_SIZE(clk_map))
d3465c92
VB
252 ret = -EINVAL;
253
254 bits <<= shift;
255 mask <<= shift;
2652d4ec 256
d3465c92
VB
257 out_be32(reg, (in_be32(reg) & ~mask) | bits);
258
259 cpm2_unmap(im_cpmux);
260 return ret;
261}
262
2652d4ec
SW
263int cpm2_smc_clk_setup(enum cpm_clk_target target, int clock)
264{
265 int ret = 0;
266 int shift;
267 int i, bits = 0;
268 cpmux_t __iomem *im_cpmux;
269 u8 __iomem *reg;
270 u8 mask = 3;
271
272 u8 clk_map[][3] = {
273 {CPM_CLK_SMC1, CPM_BRG1, 0},
274 {CPM_CLK_SMC1, CPM_BRG7, 1},
275 {CPM_CLK_SMC1, CPM_CLK7, 2},
276 {CPM_CLK_SMC1, CPM_CLK9, 3},
277 {CPM_CLK_SMC2, CPM_BRG2, 0},
278 {CPM_CLK_SMC2, CPM_BRG8, 1},
279 {CPM_CLK_SMC2, CPM_CLK4, 2},
280 {CPM_CLK_SMC2, CPM_CLK15, 3},
281 };
282
283 im_cpmux = cpm2_map(im_cpmux);
284
285 switch (target) {
286 case CPM_CLK_SMC1:
287 reg = &im_cpmux->cmx_smr;
288 mask = 3;
289 shift = 4;
290 break;
291 case CPM_CLK_SMC2:
292 reg = &im_cpmux->cmx_smr;
293 mask = 3;
294 shift = 0;
295 break;
296 default:
297 printk(KERN_ERR "cpm2_smc_clock_setup: invalid clock target\n");
298 return -EINVAL;
299 }
300
301 for (i = 0; i < ARRAY_SIZE(clk_map); i++) {
302 if (clk_map[i][0] == target && clk_map[i][1] == clock) {
303 bits = clk_map[i][2];
304 break;
305 }
306 }
307 if (i == ARRAY_SIZE(clk_map))
308 ret = -EINVAL;
309
310 bits <<= shift;
311 mask <<= shift;
312
313 out_8(reg, (in_8(reg) & ~mask) | bits);
314
315 cpm2_unmap(im_cpmux);
316 return ret;
317}
318
b0c110b4
VB
319/*
320 * dpalloc / dpfree bits.
321 */
322static spinlock_t cpm_dpmem_lock;
323/* 16 blocks should be enough to satisfy all requests
324 * until the memory subsystem goes up... */
325static rh_block_t cpm_boot_dpmem_rh_block[16];
326static rh_info_t cpm_dpmem_info;
449012da 327static u8 __iomem *im_dprambase;
b0c110b4
VB
328
329static void cpm2_dpinit(void)
330{
449012da
SW
331 struct resource r;
332
333#ifdef CONFIG_PPC_CPM_NEW_BINDING
334 struct device_node *np;
335
336 np = of_find_compatible_node(NULL, NULL, "fsl,cpm2");
337 if (!np)
338 panic("Cannot find CPM2 node");
b0c110b4 339
449012da
SW
340 if (of_address_to_resource(np, 1, &r))
341 panic("Cannot get CPM2 resource 1");
342
343 of_node_put(np);
344#else
345 r.start = CPM_MAP_ADDR;
346 r.end = r.start + CPM_DATAONLY_BASE + CPM_DATAONLY_SIZE - 1;
347#endif
348
349 im_dprambase = ioremap(r.start, r.end - r.start + 1);
350 if (!im_dprambase)
351 panic("Cannot map DPRAM");
352
353 spin_lock_init(&cpm_dpmem_lock);
fc8e50e3 354
b0c110b4
VB
355 /* initialize the info header */
356 rh_init(&cpm_dpmem_info, 1,
357 sizeof(cpm_boot_dpmem_rh_block) /
358 sizeof(cpm_boot_dpmem_rh_block[0]),
359 cpm_boot_dpmem_rh_block);
360
361 /* Attach the usable dpmem area */
362 /* XXX: This is actually crap. CPM_DATAONLY_BASE and
363 * CPM_DATAONLY_SIZE is only a subset of the available dpram. It
364 * varies with the processor and the microcode patches activated.
365 * But the following should be at least safe.
366 */
449012da 367 rh_attach_region(&cpm_dpmem_info, 0, r.end - r.start + 1);
b0c110b4
VB
368}
369
370/* This function returns an index into the DPRAM area.
371 */
4c35630c 372unsigned long cpm_dpalloc(uint size, uint align)
b0c110b4 373{
4c35630c 374 unsigned long start;
b0c110b4
VB
375 unsigned long flags;
376
377 spin_lock_irqsave(&cpm_dpmem_lock, flags);
378 cpm_dpmem_info.alignment = align;
379 start = rh_alloc(&cpm_dpmem_info, size, "commproc");
380 spin_unlock_irqrestore(&cpm_dpmem_lock, flags);
381
382 return (uint)start;
383}
384EXPORT_SYMBOL(cpm_dpalloc);
385
4c35630c 386int cpm_dpfree(unsigned long offset)
b0c110b4
VB
387{
388 int ret;
389 unsigned long flags;
390
391 spin_lock_irqsave(&cpm_dpmem_lock, flags);
4c35630c 392 ret = rh_free(&cpm_dpmem_info, offset);
b0c110b4
VB
393 spin_unlock_irqrestore(&cpm_dpmem_lock, flags);
394
395 return ret;
396}
397EXPORT_SYMBOL(cpm_dpfree);
398
399/* not sure if this is ever needed */
4c35630c 400unsigned long cpm_dpalloc_fixed(unsigned long offset, uint size, uint align)
b0c110b4 401{
4c35630c 402 unsigned long start;
b0c110b4
VB
403 unsigned long flags;
404
405 spin_lock_irqsave(&cpm_dpmem_lock, flags);
406 cpm_dpmem_info.alignment = align;
4c35630c 407 start = rh_alloc_fixed(&cpm_dpmem_info, offset, size, "commproc");
b0c110b4
VB
408 spin_unlock_irqrestore(&cpm_dpmem_lock, flags);
409
4c35630c 410 return start;
b0c110b4
VB
411}
412EXPORT_SYMBOL(cpm_dpalloc_fixed);
413
414void cpm_dpdump(void)
415{
416 rh_dump(&cpm_dpmem_info);
417}
418EXPORT_SYMBOL(cpm_dpdump);
419
4c35630c 420void *cpm_dpram_addr(unsigned long offset)
b0c110b4 421{
fc8e50e3 422 return (void *)(im_dprambase + offset);
b0c110b4
VB
423}
424EXPORT_SYMBOL(cpm_dpram_addr);