Loading...
1/*
2 * General Purpose functions for the global management of the
3 * Communication Processor Module.
4 * Copyright (c) 1997 Dan error_act (dmalek@jlc.net)
5 *
6 * In addition to the individual control of the communication
7 * channels, there are a few functions that globally affect the
8 * communication processor.
9 *
10 * Buffer descriptors must be allocated from the dual ported memory
11 * space. The allocator for that is here. When the communication
12 * process is reset, we reclaim the memory available. There is
13 * currently no deallocator for this memory.
14 * The amount of space available is platform dependent. On the
15 * MBX, the EPPC software loads additional microcode into the
16 * communication processor, and uses some of the DP ram for this
17 * purpose. Current, the first 512 bytes and the last 256 bytes of
18 * memory are used. Right now I am conservative and only use the
19 * memory that can never be used for microcode. If there are
20 * applications that require more DP ram, we can expand the boundaries
21 * but then we have to be careful of any downloaded microcode.
22 */
23#include <linux/errno.h>
24#include <linux/sched.h>
25#include <linux/kernel.h>
26#include <linux/dma-mapping.h>
27#include <linux/param.h>
28#include <linux/string.h>
29#include <linux/mm.h>
30#include <linux/interrupt.h>
31#include <linux/irq.h>
32#include <linux/module.h>
33#include <linux/spinlock.h>
34#include <linux/slab.h>
35#include <asm/page.h>
36#include <asm/pgtable.h>
37#include <asm/8xx_immap.h>
38#include <asm/cpm1.h>
39#include <asm/io.h>
40#include <asm/tlbflush.h>
41#include <asm/rheap.h>
42#include <asm/prom.h>
43#include <asm/cpm.h>
44
45#include <asm/fs_pd.h>
46
47#ifdef CONFIG_8xx_GPIO
48#include <linux/of_gpio.h>
49#endif
50
51#define CPM_MAP_SIZE (0x4000)
52
53cpm8xx_t __iomem *cpmp; /* Pointer to comm processor space */
54immap_t __iomem *mpc8xx_immr;
55static cpic8xx_t __iomem *cpic_reg;
56
57static struct irq_domain *cpm_pic_host;
58
59static void cpm_mask_irq(struct irq_data *d)
60{
61 unsigned int cpm_vec = (unsigned int)irqd_to_hwirq(d);
62
63 clrbits32(&cpic_reg->cpic_cimr, (1 << cpm_vec));
64}
65
66static void cpm_unmask_irq(struct irq_data *d)
67{
68 unsigned int cpm_vec = (unsigned int)irqd_to_hwirq(d);
69
70 setbits32(&cpic_reg->cpic_cimr, (1 << cpm_vec));
71}
72
73static void cpm_end_irq(struct irq_data *d)
74{
75 unsigned int cpm_vec = (unsigned int)irqd_to_hwirq(d);
76
77 out_be32(&cpic_reg->cpic_cisr, (1 << cpm_vec));
78}
79
80static struct irq_chip cpm_pic = {
81 .name = "CPM PIC",
82 .irq_mask = cpm_mask_irq,
83 .irq_unmask = cpm_unmask_irq,
84 .irq_eoi = cpm_end_irq,
85};
86
87int cpm_get_irq(void)
88{
89 int cpm_vec;
90
91 /* Get the vector by setting the ACK bit and then reading
92 * the register.
93 */
94 out_be16(&cpic_reg->cpic_civr, 1);
95 cpm_vec = in_be16(&cpic_reg->cpic_civr);
96 cpm_vec >>= 11;
97
98 return irq_linear_revmap(cpm_pic_host, cpm_vec);
99}
100
101static int cpm_pic_host_map(struct irq_domain *h, unsigned int virq,
102 irq_hw_number_t hw)
103{
104 pr_debug("cpm_pic_host_map(%d, 0x%lx)\n", virq, hw);
105
106 irq_set_status_flags(virq, IRQ_LEVEL);
107 irq_set_chip_and_handler(virq, &cpm_pic, handle_fasteoi_irq);
108 return 0;
109}
110
111/* The CPM can generate the error interrupt when there is a race condition
112 * between generating and masking interrupts. All we have to do is ACK it
113 * and return. This is a no-op function so we don't need any special
114 * tests in the interrupt handler.
115 */
116static irqreturn_t cpm_error_interrupt(int irq, void *dev)
117{
118 return IRQ_HANDLED;
119}
120
121static struct irqaction cpm_error_irqaction = {
122 .handler = cpm_error_interrupt,
123 .name = "error",
124};
125
126static const struct irq_domain_ops cpm_pic_host_ops = {
127 .map = cpm_pic_host_map,
128};
129
130unsigned int cpm_pic_init(void)
131{
132 struct device_node *np = NULL;
133 struct resource res;
134 unsigned int sirq = NO_IRQ, hwirq, eirq;
135 int ret;
136
137 pr_debug("cpm_pic_init\n");
138
139 np = of_find_compatible_node(NULL, NULL, "fsl,cpm1-pic");
140 if (np == NULL)
141 np = of_find_compatible_node(NULL, "cpm-pic", "CPM");
142 if (np == NULL) {
143 printk(KERN_ERR "CPM PIC init: can not find cpm-pic node\n");
144 return sirq;
145 }
146
147 ret = of_address_to_resource(np, 0, &res);
148 if (ret)
149 goto end;
150
151 cpic_reg = ioremap(res.start, resource_size(&res));
152 if (cpic_reg == NULL)
153 goto end;
154
155 sirq = irq_of_parse_and_map(np, 0);
156 if (sirq == NO_IRQ)
157 goto end;
158
159 /* Initialize the CPM interrupt controller. */
160 hwirq = (unsigned int)virq_to_hw(sirq);
161 out_be32(&cpic_reg->cpic_cicr,
162 (CICR_SCD_SCC4 | CICR_SCC_SCC3 | CICR_SCB_SCC2 | CICR_SCA_SCC1) |
163 ((hwirq/2) << 13) | CICR_HP_MASK);
164
165 out_be32(&cpic_reg->cpic_cimr, 0);
166
167 cpm_pic_host = irq_domain_add_linear(np, 64, &cpm_pic_host_ops, NULL);
168 if (cpm_pic_host == NULL) {
169 printk(KERN_ERR "CPM2 PIC: failed to allocate irq host!\n");
170 sirq = NO_IRQ;
171 goto end;
172 }
173
174 /* Install our own error handler. */
175 np = of_find_compatible_node(NULL, NULL, "fsl,cpm1");
176 if (np == NULL)
177 np = of_find_node_by_type(NULL, "cpm");
178 if (np == NULL) {
179 printk(KERN_ERR "CPM PIC init: can not find cpm node\n");
180 goto end;
181 }
182
183 eirq = irq_of_parse_and_map(np, 0);
184 if (eirq == NO_IRQ)
185 goto end;
186
187 if (setup_irq(eirq, &cpm_error_irqaction))
188 printk(KERN_ERR "Could not allocate CPM error IRQ!");
189
190 setbits32(&cpic_reg->cpic_cicr, CICR_IEN);
191
192end:
193 of_node_put(np);
194 return sirq;
195}
196
197void __init cpm_reset(void)
198{
199 sysconf8xx_t __iomem *siu_conf;
200
201 mpc8xx_immr = ioremap(get_immrbase(), 0x4000);
202 if (!mpc8xx_immr) {
203 printk(KERN_CRIT "Could not map IMMR\n");
204 return;
205 }
206
207 cpmp = &mpc8xx_immr->im_cpm;
208
209#ifndef CONFIG_PPC_EARLY_DEBUG_CPM
210 /* Perform a reset.
211 */
212 out_be16(&cpmp->cp_cpcr, CPM_CR_RST | CPM_CR_FLG);
213
214 /* Wait for it.
215 */
216 while (in_be16(&cpmp->cp_cpcr) & CPM_CR_FLG);
217#endif
218
219#ifdef CONFIG_UCODE_PATCH
220 cpm_load_patch(cpmp);
221#endif
222
223 /* Set SDMA Bus Request priority 5.
224 * On 860T, this also enables FEC priority 6. I am not sure
225 * this is what we really want for some applications, but the
226 * manual recommends it.
227 * Bit 25, FAM can also be set to use FEC aggressive mode (860T).
228 */
229 siu_conf = immr_map(im_siu_conf);
230 out_be32(&siu_conf->sc_sdcr, 1);
231 immr_unmap(siu_conf);
232
233 cpm_muram_init();
234}
235
236static DEFINE_SPINLOCK(cmd_lock);
237
238#define MAX_CR_CMD_LOOPS 10000
239
240int cpm_command(u32 command, u8 opcode)
241{
242 int i, ret;
243 unsigned long flags;
244
245 if (command & 0xffffff0f)
246 return -EINVAL;
247
248 spin_lock_irqsave(&cmd_lock, flags);
249
250 ret = 0;
251 out_be16(&cpmp->cp_cpcr, command | CPM_CR_FLG | (opcode << 8));
252 for (i = 0; i < MAX_CR_CMD_LOOPS; i++)
253 if ((in_be16(&cpmp->cp_cpcr) & CPM_CR_FLG) == 0)
254 goto out;
255
256 printk(KERN_ERR "%s(): Not able to issue CPM command\n", __func__);
257 ret = -EIO;
258out:
259 spin_unlock_irqrestore(&cmd_lock, flags);
260 return ret;
261}
262EXPORT_SYMBOL(cpm_command);
263
264/* Set a baud rate generator. This needs lots of work. There are
265 * four BRGs, any of which can be wired to any channel.
266 * The internal baud rate clock is the system clock divided by 16.
267 * This assumes the baudrate is 16x oversampled by the uart.
268 */
269#define BRG_INT_CLK (get_brgfreq())
270#define BRG_UART_CLK (BRG_INT_CLK/16)
271#define BRG_UART_CLK_DIV16 (BRG_UART_CLK/16)
272
273void
274cpm_setbrg(uint brg, uint rate)
275{
276 u32 __iomem *bp;
277
278 /* This is good enough to get SMCs running.....
279 */
280 bp = &cpmp->cp_brgc1;
281 bp += brg;
282 /* The BRG has a 12-bit counter. For really slow baud rates (or
283 * really fast processors), we may have to further divide by 16.
284 */
285 if (((BRG_UART_CLK / rate) - 1) < 4096)
286 out_be32(bp, (((BRG_UART_CLK / rate) - 1) << 1) | CPM_BRG_EN);
287 else
288 out_be32(bp, (((BRG_UART_CLK_DIV16 / rate) - 1) << 1) |
289 CPM_BRG_EN | CPM_BRG_DIV16);
290}
291
292struct cpm_ioport16 {
293 __be16 dir, par, odr_sor, dat, intr;
294 __be16 res[3];
295};
296
297struct cpm_ioport32b {
298 __be32 dir, par, odr, dat;
299};
300
301struct cpm_ioport32e {
302 __be32 dir, par, sor, odr, dat;
303};
304
305static void cpm1_set_pin32(int port, int pin, int flags)
306{
307 struct cpm_ioport32e __iomem *iop;
308 pin = 1 << (31 - pin);
309
310 if (port == CPM_PORTB)
311 iop = (struct cpm_ioport32e __iomem *)
312 &mpc8xx_immr->im_cpm.cp_pbdir;
313 else
314 iop = (struct cpm_ioport32e __iomem *)
315 &mpc8xx_immr->im_cpm.cp_pedir;
316
317 if (flags & CPM_PIN_OUTPUT)
318 setbits32(&iop->dir, pin);
319 else
320 clrbits32(&iop->dir, pin);
321
322 if (!(flags & CPM_PIN_GPIO))
323 setbits32(&iop->par, pin);
324 else
325 clrbits32(&iop->par, pin);
326
327 if (port == CPM_PORTB) {
328 if (flags & CPM_PIN_OPENDRAIN)
329 setbits16(&mpc8xx_immr->im_cpm.cp_pbodr, pin);
330 else
331 clrbits16(&mpc8xx_immr->im_cpm.cp_pbodr, pin);
332 }
333
334 if (port == CPM_PORTE) {
335 if (flags & CPM_PIN_SECONDARY)
336 setbits32(&iop->sor, pin);
337 else
338 clrbits32(&iop->sor, pin);
339
340 if (flags & CPM_PIN_OPENDRAIN)
341 setbits32(&mpc8xx_immr->im_cpm.cp_peodr, pin);
342 else
343 clrbits32(&mpc8xx_immr->im_cpm.cp_peodr, pin);
344 }
345}
346
347static void cpm1_set_pin16(int port, int pin, int flags)
348{
349 struct cpm_ioport16 __iomem *iop =
350 (struct cpm_ioport16 __iomem *)&mpc8xx_immr->im_ioport;
351
352 pin = 1 << (15 - pin);
353
354 if (port != 0)
355 iop += port - 1;
356
357 if (flags & CPM_PIN_OUTPUT)
358 setbits16(&iop->dir, pin);
359 else
360 clrbits16(&iop->dir, pin);
361
362 if (!(flags & CPM_PIN_GPIO))
363 setbits16(&iop->par, pin);
364 else
365 clrbits16(&iop->par, pin);
366
367 if (port == CPM_PORTA) {
368 if (flags & CPM_PIN_OPENDRAIN)
369 setbits16(&iop->odr_sor, pin);
370 else
371 clrbits16(&iop->odr_sor, pin);
372 }
373 if (port == CPM_PORTC) {
374 if (flags & CPM_PIN_SECONDARY)
375 setbits16(&iop->odr_sor, pin);
376 else
377 clrbits16(&iop->odr_sor, pin);
378 }
379}
380
381void cpm1_set_pin(enum cpm_port port, int pin, int flags)
382{
383 if (port == CPM_PORTB || port == CPM_PORTE)
384 cpm1_set_pin32(port, pin, flags);
385 else
386 cpm1_set_pin16(port, pin, flags);
387}
388
389int cpm1_clk_setup(enum cpm_clk_target target, int clock, int mode)
390{
391 int shift;
392 int i, bits = 0;
393 u32 __iomem *reg;
394 u32 mask = 7;
395
396 u8 clk_map[][3] = {
397 {CPM_CLK_SCC1, CPM_BRG1, 0},
398 {CPM_CLK_SCC1, CPM_BRG2, 1},
399 {CPM_CLK_SCC1, CPM_BRG3, 2},
400 {CPM_CLK_SCC1, CPM_BRG4, 3},
401 {CPM_CLK_SCC1, CPM_CLK1, 4},
402 {CPM_CLK_SCC1, CPM_CLK2, 5},
403 {CPM_CLK_SCC1, CPM_CLK3, 6},
404 {CPM_CLK_SCC1, CPM_CLK4, 7},
405
406 {CPM_CLK_SCC2, CPM_BRG1, 0},
407 {CPM_CLK_SCC2, CPM_BRG2, 1},
408 {CPM_CLK_SCC2, CPM_BRG3, 2},
409 {CPM_CLK_SCC2, CPM_BRG4, 3},
410 {CPM_CLK_SCC2, CPM_CLK1, 4},
411 {CPM_CLK_SCC2, CPM_CLK2, 5},
412 {CPM_CLK_SCC2, CPM_CLK3, 6},
413 {CPM_CLK_SCC2, CPM_CLK4, 7},
414
415 {CPM_CLK_SCC3, CPM_BRG1, 0},
416 {CPM_CLK_SCC3, CPM_BRG2, 1},
417 {CPM_CLK_SCC3, CPM_BRG3, 2},
418 {CPM_CLK_SCC3, CPM_BRG4, 3},
419 {CPM_CLK_SCC3, CPM_CLK5, 4},
420 {CPM_CLK_SCC3, CPM_CLK6, 5},
421 {CPM_CLK_SCC3, CPM_CLK7, 6},
422 {CPM_CLK_SCC3, CPM_CLK8, 7},
423
424 {CPM_CLK_SCC4, CPM_BRG1, 0},
425 {CPM_CLK_SCC4, CPM_BRG2, 1},
426 {CPM_CLK_SCC4, CPM_BRG3, 2},
427 {CPM_CLK_SCC4, CPM_BRG4, 3},
428 {CPM_CLK_SCC4, CPM_CLK5, 4},
429 {CPM_CLK_SCC4, CPM_CLK6, 5},
430 {CPM_CLK_SCC4, CPM_CLK7, 6},
431 {CPM_CLK_SCC4, CPM_CLK8, 7},
432
433 {CPM_CLK_SMC1, CPM_BRG1, 0},
434 {CPM_CLK_SMC1, CPM_BRG2, 1},
435 {CPM_CLK_SMC1, CPM_BRG3, 2},
436 {CPM_CLK_SMC1, CPM_BRG4, 3},
437 {CPM_CLK_SMC1, CPM_CLK1, 4},
438 {CPM_CLK_SMC1, CPM_CLK2, 5},
439 {CPM_CLK_SMC1, CPM_CLK3, 6},
440 {CPM_CLK_SMC1, CPM_CLK4, 7},
441
442 {CPM_CLK_SMC2, CPM_BRG1, 0},
443 {CPM_CLK_SMC2, CPM_BRG2, 1},
444 {CPM_CLK_SMC2, CPM_BRG3, 2},
445 {CPM_CLK_SMC2, CPM_BRG4, 3},
446 {CPM_CLK_SMC2, CPM_CLK5, 4},
447 {CPM_CLK_SMC2, CPM_CLK6, 5},
448 {CPM_CLK_SMC2, CPM_CLK7, 6},
449 {CPM_CLK_SMC2, CPM_CLK8, 7},
450 };
451
452 switch (target) {
453 case CPM_CLK_SCC1:
454 reg = &mpc8xx_immr->im_cpm.cp_sicr;
455 shift = 0;
456 break;
457
458 case CPM_CLK_SCC2:
459 reg = &mpc8xx_immr->im_cpm.cp_sicr;
460 shift = 8;
461 break;
462
463 case CPM_CLK_SCC3:
464 reg = &mpc8xx_immr->im_cpm.cp_sicr;
465 shift = 16;
466 break;
467
468 case CPM_CLK_SCC4:
469 reg = &mpc8xx_immr->im_cpm.cp_sicr;
470 shift = 24;
471 break;
472
473 case CPM_CLK_SMC1:
474 reg = &mpc8xx_immr->im_cpm.cp_simode;
475 shift = 12;
476 break;
477
478 case CPM_CLK_SMC2:
479 reg = &mpc8xx_immr->im_cpm.cp_simode;
480 shift = 28;
481 break;
482
483 default:
484 printk(KERN_ERR "cpm1_clock_setup: invalid clock target\n");
485 return -EINVAL;
486 }
487
488 for (i = 0; i < ARRAY_SIZE(clk_map); i++) {
489 if (clk_map[i][0] == target && clk_map[i][1] == clock) {
490 bits = clk_map[i][2];
491 break;
492 }
493 }
494
495 if (i == ARRAY_SIZE(clk_map)) {
496 printk(KERN_ERR "cpm1_clock_setup: invalid clock combination\n");
497 return -EINVAL;
498 }
499
500 bits <<= shift;
501 mask <<= shift;
502
503 if (reg == &mpc8xx_immr->im_cpm.cp_sicr) {
504 if (mode == CPM_CLK_RTX) {
505 bits |= bits << 3;
506 mask |= mask << 3;
507 } else if (mode == CPM_CLK_RX) {
508 bits <<= 3;
509 mask <<= 3;
510 }
511 }
512
513 out_be32(reg, (in_be32(reg) & ~mask) | bits);
514
515 return 0;
516}
517
518/*
519 * GPIO LIB API implementation
520 */
521#ifdef CONFIG_8xx_GPIO
522
523struct cpm1_gpio16_chip {
524 struct of_mm_gpio_chip mm_gc;
525 spinlock_t lock;
526
527 /* shadowed data register to clear/set bits safely */
528 u16 cpdata;
529};
530
531static inline struct cpm1_gpio16_chip *
532to_cpm1_gpio16_chip(struct of_mm_gpio_chip *mm_gc)
533{
534 return container_of(mm_gc, struct cpm1_gpio16_chip, mm_gc);
535}
536
537static void cpm1_gpio16_save_regs(struct of_mm_gpio_chip *mm_gc)
538{
539 struct cpm1_gpio16_chip *cpm1_gc = to_cpm1_gpio16_chip(mm_gc);
540 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
541
542 cpm1_gc->cpdata = in_be16(&iop->dat);
543}
544
545static int cpm1_gpio16_get(struct gpio_chip *gc, unsigned int gpio)
546{
547 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
548 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
549 u16 pin_mask;
550
551 pin_mask = 1 << (15 - gpio);
552
553 return !!(in_be16(&iop->dat) & pin_mask);
554}
555
556static void __cpm1_gpio16_set(struct of_mm_gpio_chip *mm_gc, u16 pin_mask,
557 int value)
558{
559 struct cpm1_gpio16_chip *cpm1_gc = to_cpm1_gpio16_chip(mm_gc);
560 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
561
562 if (value)
563 cpm1_gc->cpdata |= pin_mask;
564 else
565 cpm1_gc->cpdata &= ~pin_mask;
566
567 out_be16(&iop->dat, cpm1_gc->cpdata);
568}
569
570static void cpm1_gpio16_set(struct gpio_chip *gc, unsigned int gpio, int value)
571{
572 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
573 struct cpm1_gpio16_chip *cpm1_gc = to_cpm1_gpio16_chip(mm_gc);
574 unsigned long flags;
575 u16 pin_mask = 1 << (15 - gpio);
576
577 spin_lock_irqsave(&cpm1_gc->lock, flags);
578
579 __cpm1_gpio16_set(mm_gc, pin_mask, value);
580
581 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
582}
583
584static int cpm1_gpio16_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
585{
586 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
587 struct cpm1_gpio16_chip *cpm1_gc = to_cpm1_gpio16_chip(mm_gc);
588 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
589 unsigned long flags;
590 u16 pin_mask = 1 << (15 - gpio);
591
592 spin_lock_irqsave(&cpm1_gc->lock, flags);
593
594 setbits16(&iop->dir, pin_mask);
595 __cpm1_gpio16_set(mm_gc, pin_mask, val);
596
597 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
598
599 return 0;
600}
601
602static int cpm1_gpio16_dir_in(struct gpio_chip *gc, unsigned int gpio)
603{
604 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
605 struct cpm1_gpio16_chip *cpm1_gc = to_cpm1_gpio16_chip(mm_gc);
606 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
607 unsigned long flags;
608 u16 pin_mask = 1 << (15 - gpio);
609
610 spin_lock_irqsave(&cpm1_gc->lock, flags);
611
612 clrbits16(&iop->dir, pin_mask);
613
614 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
615
616 return 0;
617}
618
619int cpm1_gpiochip_add16(struct device_node *np)
620{
621 struct cpm1_gpio16_chip *cpm1_gc;
622 struct of_mm_gpio_chip *mm_gc;
623 struct gpio_chip *gc;
624
625 cpm1_gc = kzalloc(sizeof(*cpm1_gc), GFP_KERNEL);
626 if (!cpm1_gc)
627 return -ENOMEM;
628
629 spin_lock_init(&cpm1_gc->lock);
630
631 mm_gc = &cpm1_gc->mm_gc;
632 gc = &mm_gc->gc;
633
634 mm_gc->save_regs = cpm1_gpio16_save_regs;
635 gc->ngpio = 16;
636 gc->direction_input = cpm1_gpio16_dir_in;
637 gc->direction_output = cpm1_gpio16_dir_out;
638 gc->get = cpm1_gpio16_get;
639 gc->set = cpm1_gpio16_set;
640
641 return of_mm_gpiochip_add(np, mm_gc);
642}
643
644struct cpm1_gpio32_chip {
645 struct of_mm_gpio_chip mm_gc;
646 spinlock_t lock;
647
648 /* shadowed data register to clear/set bits safely */
649 u32 cpdata;
650};
651
652static inline struct cpm1_gpio32_chip *
653to_cpm1_gpio32_chip(struct of_mm_gpio_chip *mm_gc)
654{
655 return container_of(mm_gc, struct cpm1_gpio32_chip, mm_gc);
656}
657
658static void cpm1_gpio32_save_regs(struct of_mm_gpio_chip *mm_gc)
659{
660 struct cpm1_gpio32_chip *cpm1_gc = to_cpm1_gpio32_chip(mm_gc);
661 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
662
663 cpm1_gc->cpdata = in_be32(&iop->dat);
664}
665
666static int cpm1_gpio32_get(struct gpio_chip *gc, unsigned int gpio)
667{
668 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
669 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
670 u32 pin_mask;
671
672 pin_mask = 1 << (31 - gpio);
673
674 return !!(in_be32(&iop->dat) & pin_mask);
675}
676
677static void __cpm1_gpio32_set(struct of_mm_gpio_chip *mm_gc, u32 pin_mask,
678 int value)
679{
680 struct cpm1_gpio32_chip *cpm1_gc = to_cpm1_gpio32_chip(mm_gc);
681 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
682
683 if (value)
684 cpm1_gc->cpdata |= pin_mask;
685 else
686 cpm1_gc->cpdata &= ~pin_mask;
687
688 out_be32(&iop->dat, cpm1_gc->cpdata);
689}
690
691static void cpm1_gpio32_set(struct gpio_chip *gc, unsigned int gpio, int value)
692{
693 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
694 struct cpm1_gpio32_chip *cpm1_gc = to_cpm1_gpio32_chip(mm_gc);
695 unsigned long flags;
696 u32 pin_mask = 1 << (31 - gpio);
697
698 spin_lock_irqsave(&cpm1_gc->lock, flags);
699
700 __cpm1_gpio32_set(mm_gc, pin_mask, value);
701
702 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
703}
704
705static int cpm1_gpio32_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
706{
707 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
708 struct cpm1_gpio32_chip *cpm1_gc = to_cpm1_gpio32_chip(mm_gc);
709 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
710 unsigned long flags;
711 u32 pin_mask = 1 << (31 - gpio);
712
713 spin_lock_irqsave(&cpm1_gc->lock, flags);
714
715 setbits32(&iop->dir, pin_mask);
716 __cpm1_gpio32_set(mm_gc, pin_mask, val);
717
718 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
719
720 return 0;
721}
722
723static int cpm1_gpio32_dir_in(struct gpio_chip *gc, unsigned int gpio)
724{
725 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
726 struct cpm1_gpio32_chip *cpm1_gc = to_cpm1_gpio32_chip(mm_gc);
727 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
728 unsigned long flags;
729 u32 pin_mask = 1 << (31 - gpio);
730
731 spin_lock_irqsave(&cpm1_gc->lock, flags);
732
733 clrbits32(&iop->dir, pin_mask);
734
735 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
736
737 return 0;
738}
739
740int cpm1_gpiochip_add32(struct device_node *np)
741{
742 struct cpm1_gpio32_chip *cpm1_gc;
743 struct of_mm_gpio_chip *mm_gc;
744 struct gpio_chip *gc;
745
746 cpm1_gc = kzalloc(sizeof(*cpm1_gc), GFP_KERNEL);
747 if (!cpm1_gc)
748 return -ENOMEM;
749
750 spin_lock_init(&cpm1_gc->lock);
751
752 mm_gc = &cpm1_gc->mm_gc;
753 gc = &mm_gc->gc;
754
755 mm_gc->save_regs = cpm1_gpio32_save_regs;
756 gc->ngpio = 32;
757 gc->direction_input = cpm1_gpio32_dir_in;
758 gc->direction_output = cpm1_gpio32_dir_out;
759 gc->get = cpm1_gpio32_get;
760 gc->set = cpm1_gpio32_set;
761
762 return of_mm_gpiochip_add(np, mm_gc);
763}
764
765static int cpm_init_par_io(void)
766{
767 struct device_node *np;
768
769 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-a")
770 cpm1_gpiochip_add16(np);
771
772 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-b")
773 cpm1_gpiochip_add32(np);
774
775 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-c")
776 cpm1_gpiochip_add16(np);
777
778 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-d")
779 cpm1_gpiochip_add16(np);
780
781 /* Port E uses CPM2 layout */
782 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-e")
783 cpm2_gpiochip_add32(np);
784 return 0;
785}
786arch_initcall(cpm_init_par_io);
787
788#endif /* CONFIG_8xx_GPIO */
1/*
2 * General Purpose functions for the global management of the
3 * Communication Processor Module.
4 * Copyright (c) 1997 Dan error_act (dmalek@jlc.net)
5 *
6 * In addition to the individual control of the communication
7 * channels, there are a few functions that globally affect the
8 * communication processor.
9 *
10 * Buffer descriptors must be allocated from the dual ported memory
11 * space. The allocator for that is here. When the communication
12 * process is reset, we reclaim the memory available. There is
13 * currently no deallocator for this memory.
14 * The amount of space available is platform dependent. On the
15 * MBX, the EPPC software loads additional microcode into the
16 * communication processor, and uses some of the DP ram for this
17 * purpose. Current, the first 512 bytes and the last 256 bytes of
18 * memory are used. Right now I am conservative and only use the
19 * memory that can never be used for microcode. If there are
20 * applications that require more DP ram, we can expand the boundaries
21 * but then we have to be careful of any downloaded microcode.
22 */
23#include <linux/errno.h>
24#include <linux/sched.h>
25#include <linux/kernel.h>
26#include <linux/dma-mapping.h>
27#include <linux/param.h>
28#include <linux/string.h>
29#include <linux/mm.h>
30#include <linux/interrupt.h>
31#include <linux/irq.h>
32#include <linux/module.h>
33#include <linux/spinlock.h>
34#include <linux/slab.h>
35#include <asm/page.h>
36#include <asm/pgtable.h>
37#include <asm/8xx_immap.h>
38#include <asm/cpm1.h>
39#include <asm/io.h>
40#include <asm/tlbflush.h>
41#include <asm/rheap.h>
42#include <asm/prom.h>
43#include <asm/cpm.h>
44
45#include <asm/fs_pd.h>
46
47#ifdef CONFIG_8xx_GPIO
48#include <linux/of_gpio.h>
49#endif
50
51#define CPM_MAP_SIZE (0x4000)
52
53cpm8xx_t __iomem *cpmp; /* Pointer to comm processor space */
54immap_t __iomem *mpc8xx_immr;
55static cpic8xx_t __iomem *cpic_reg;
56
57static struct irq_domain *cpm_pic_host;
58
59static void cpm_mask_irq(struct irq_data *d)
60{
61 unsigned int cpm_vec = (unsigned int)irqd_to_hwirq(d);
62
63 clrbits32(&cpic_reg->cpic_cimr, (1 << cpm_vec));
64}
65
66static void cpm_unmask_irq(struct irq_data *d)
67{
68 unsigned int cpm_vec = (unsigned int)irqd_to_hwirq(d);
69
70 setbits32(&cpic_reg->cpic_cimr, (1 << cpm_vec));
71}
72
73static void cpm_end_irq(struct irq_data *d)
74{
75 unsigned int cpm_vec = (unsigned int)irqd_to_hwirq(d);
76
77 out_be32(&cpic_reg->cpic_cisr, (1 << cpm_vec));
78}
79
80static struct irq_chip cpm_pic = {
81 .name = "CPM PIC",
82 .irq_mask = cpm_mask_irq,
83 .irq_unmask = cpm_unmask_irq,
84 .irq_eoi = cpm_end_irq,
85};
86
87int cpm_get_irq(void)
88{
89 int cpm_vec;
90
91 /* Get the vector by setting the ACK bit and then reading
92 * the register.
93 */
94 out_be16(&cpic_reg->cpic_civr, 1);
95 cpm_vec = in_be16(&cpic_reg->cpic_civr);
96 cpm_vec >>= 11;
97
98 return irq_linear_revmap(cpm_pic_host, cpm_vec);
99}
100
101static int cpm_pic_host_map(struct irq_domain *h, unsigned int virq,
102 irq_hw_number_t hw)
103{
104 pr_debug("cpm_pic_host_map(%d, 0x%lx)\n", virq, hw);
105
106 irq_set_status_flags(virq, IRQ_LEVEL);
107 irq_set_chip_and_handler(virq, &cpm_pic, handle_fasteoi_irq);
108 return 0;
109}
110
111/* The CPM can generate the error interrupt when there is a race condition
112 * between generating and masking interrupts. All we have to do is ACK it
113 * and return. This is a no-op function so we don't need any special
114 * tests in the interrupt handler.
115 */
116static irqreturn_t cpm_error_interrupt(int irq, void *dev)
117{
118 return IRQ_HANDLED;
119}
120
121static struct irqaction cpm_error_irqaction = {
122 .handler = cpm_error_interrupt,
123 .flags = IRQF_NO_THREAD,
124 .name = "error",
125};
126
127static const struct irq_domain_ops cpm_pic_host_ops = {
128 .map = cpm_pic_host_map,
129};
130
131unsigned int cpm_pic_init(void)
132{
133 struct device_node *np = NULL;
134 struct resource res;
135 unsigned int sirq = NO_IRQ, hwirq, eirq;
136 int ret;
137
138 pr_debug("cpm_pic_init\n");
139
140 np = of_find_compatible_node(NULL, NULL, "fsl,cpm1-pic");
141 if (np == NULL)
142 np = of_find_compatible_node(NULL, "cpm-pic", "CPM");
143 if (np == NULL) {
144 printk(KERN_ERR "CPM PIC init: can not find cpm-pic node\n");
145 return sirq;
146 }
147
148 ret = of_address_to_resource(np, 0, &res);
149 if (ret)
150 goto end;
151
152 cpic_reg = ioremap(res.start, resource_size(&res));
153 if (cpic_reg == NULL)
154 goto end;
155
156 sirq = irq_of_parse_and_map(np, 0);
157 if (sirq == NO_IRQ)
158 goto end;
159
160 /* Initialize the CPM interrupt controller. */
161 hwirq = (unsigned int)virq_to_hw(sirq);
162 out_be32(&cpic_reg->cpic_cicr,
163 (CICR_SCD_SCC4 | CICR_SCC_SCC3 | CICR_SCB_SCC2 | CICR_SCA_SCC1) |
164 ((hwirq/2) << 13) | CICR_HP_MASK);
165
166 out_be32(&cpic_reg->cpic_cimr, 0);
167
168 cpm_pic_host = irq_domain_add_linear(np, 64, &cpm_pic_host_ops, NULL);
169 if (cpm_pic_host == NULL) {
170 printk(KERN_ERR "CPM2 PIC: failed to allocate irq host!\n");
171 sirq = NO_IRQ;
172 goto end;
173 }
174
175 /* Install our own error handler. */
176 np = of_find_compatible_node(NULL, NULL, "fsl,cpm1");
177 if (np == NULL)
178 np = of_find_node_by_type(NULL, "cpm");
179 if (np == NULL) {
180 printk(KERN_ERR "CPM PIC init: can not find cpm node\n");
181 goto end;
182 }
183
184 eirq = irq_of_parse_and_map(np, 0);
185 if (eirq == NO_IRQ)
186 goto end;
187
188 if (setup_irq(eirq, &cpm_error_irqaction))
189 printk(KERN_ERR "Could not allocate CPM error IRQ!");
190
191 setbits32(&cpic_reg->cpic_cicr, CICR_IEN);
192
193end:
194 of_node_put(np);
195 return sirq;
196}
197
198void __init cpm_reset(void)
199{
200 sysconf8xx_t __iomem *siu_conf;
201
202 mpc8xx_immr = ioremap(get_immrbase(), 0x4000);
203 if (!mpc8xx_immr) {
204 printk(KERN_CRIT "Could not map IMMR\n");
205 return;
206 }
207
208 cpmp = &mpc8xx_immr->im_cpm;
209
210#ifndef CONFIG_PPC_EARLY_DEBUG_CPM
211 /* Perform a reset.
212 */
213 out_be16(&cpmp->cp_cpcr, CPM_CR_RST | CPM_CR_FLG);
214
215 /* Wait for it.
216 */
217 while (in_be16(&cpmp->cp_cpcr) & CPM_CR_FLG);
218#endif
219
220#ifdef CONFIG_UCODE_PATCH
221 cpm_load_patch(cpmp);
222#endif
223
224 /* Set SDMA Bus Request priority 5.
225 * On 860T, this also enables FEC priority 6. I am not sure
226 * this is what we really want for some applications, but the
227 * manual recommends it.
228 * Bit 25, FAM can also be set to use FEC aggressive mode (860T).
229 */
230 siu_conf = immr_map(im_siu_conf);
231 if ((mfspr(SPRN_IMMR) & 0xffff) == 0x0900) /* MPC885 */
232 out_be32(&siu_conf->sc_sdcr, 0x40);
233 else
234 out_be32(&siu_conf->sc_sdcr, 1);
235 immr_unmap(siu_conf);
236
237 cpm_muram_init();
238}
239
240static DEFINE_SPINLOCK(cmd_lock);
241
242#define MAX_CR_CMD_LOOPS 10000
243
244int cpm_command(u32 command, u8 opcode)
245{
246 int i, ret;
247 unsigned long flags;
248
249 if (command & 0xffffff0f)
250 return -EINVAL;
251
252 spin_lock_irqsave(&cmd_lock, flags);
253
254 ret = 0;
255 out_be16(&cpmp->cp_cpcr, command | CPM_CR_FLG | (opcode << 8));
256 for (i = 0; i < MAX_CR_CMD_LOOPS; i++)
257 if ((in_be16(&cpmp->cp_cpcr) & CPM_CR_FLG) == 0)
258 goto out;
259
260 printk(KERN_ERR "%s(): Not able to issue CPM command\n", __func__);
261 ret = -EIO;
262out:
263 spin_unlock_irqrestore(&cmd_lock, flags);
264 return ret;
265}
266EXPORT_SYMBOL(cpm_command);
267
268/* Set a baud rate generator. This needs lots of work. There are
269 * four BRGs, any of which can be wired to any channel.
270 * The internal baud rate clock is the system clock divided by 16.
271 * This assumes the baudrate is 16x oversampled by the uart.
272 */
273#define BRG_INT_CLK (get_brgfreq())
274#define BRG_UART_CLK (BRG_INT_CLK/16)
275#define BRG_UART_CLK_DIV16 (BRG_UART_CLK/16)
276
277void
278cpm_setbrg(uint brg, uint rate)
279{
280 u32 __iomem *bp;
281
282 /* This is good enough to get SMCs running.....
283 */
284 bp = &cpmp->cp_brgc1;
285 bp += brg;
286 /* The BRG has a 12-bit counter. For really slow baud rates (or
287 * really fast processors), we may have to further divide by 16.
288 */
289 if (((BRG_UART_CLK / rate) - 1) < 4096)
290 out_be32(bp, (((BRG_UART_CLK / rate) - 1) << 1) | CPM_BRG_EN);
291 else
292 out_be32(bp, (((BRG_UART_CLK_DIV16 / rate) - 1) << 1) |
293 CPM_BRG_EN | CPM_BRG_DIV16);
294}
295
296struct cpm_ioport16 {
297 __be16 dir, par, odr_sor, dat, intr;
298 __be16 res[3];
299};
300
301struct cpm_ioport32b {
302 __be32 dir, par, odr, dat;
303};
304
305struct cpm_ioport32e {
306 __be32 dir, par, sor, odr, dat;
307};
308
309static void cpm1_set_pin32(int port, int pin, int flags)
310{
311 struct cpm_ioport32e __iomem *iop;
312 pin = 1 << (31 - pin);
313
314 if (port == CPM_PORTB)
315 iop = (struct cpm_ioport32e __iomem *)
316 &mpc8xx_immr->im_cpm.cp_pbdir;
317 else
318 iop = (struct cpm_ioport32e __iomem *)
319 &mpc8xx_immr->im_cpm.cp_pedir;
320
321 if (flags & CPM_PIN_OUTPUT)
322 setbits32(&iop->dir, pin);
323 else
324 clrbits32(&iop->dir, pin);
325
326 if (!(flags & CPM_PIN_GPIO))
327 setbits32(&iop->par, pin);
328 else
329 clrbits32(&iop->par, pin);
330
331 if (port == CPM_PORTB) {
332 if (flags & CPM_PIN_OPENDRAIN)
333 setbits16(&mpc8xx_immr->im_cpm.cp_pbodr, pin);
334 else
335 clrbits16(&mpc8xx_immr->im_cpm.cp_pbodr, pin);
336 }
337
338 if (port == CPM_PORTE) {
339 if (flags & CPM_PIN_SECONDARY)
340 setbits32(&iop->sor, pin);
341 else
342 clrbits32(&iop->sor, pin);
343
344 if (flags & CPM_PIN_OPENDRAIN)
345 setbits32(&mpc8xx_immr->im_cpm.cp_peodr, pin);
346 else
347 clrbits32(&mpc8xx_immr->im_cpm.cp_peodr, pin);
348 }
349}
350
351static void cpm1_set_pin16(int port, int pin, int flags)
352{
353 struct cpm_ioport16 __iomem *iop =
354 (struct cpm_ioport16 __iomem *)&mpc8xx_immr->im_ioport;
355
356 pin = 1 << (15 - pin);
357
358 if (port != 0)
359 iop += port - 1;
360
361 if (flags & CPM_PIN_OUTPUT)
362 setbits16(&iop->dir, pin);
363 else
364 clrbits16(&iop->dir, pin);
365
366 if (!(flags & CPM_PIN_GPIO))
367 setbits16(&iop->par, pin);
368 else
369 clrbits16(&iop->par, pin);
370
371 if (port == CPM_PORTA) {
372 if (flags & CPM_PIN_OPENDRAIN)
373 setbits16(&iop->odr_sor, pin);
374 else
375 clrbits16(&iop->odr_sor, pin);
376 }
377 if (port == CPM_PORTC) {
378 if (flags & CPM_PIN_SECONDARY)
379 setbits16(&iop->odr_sor, pin);
380 else
381 clrbits16(&iop->odr_sor, pin);
382 }
383}
384
385void cpm1_set_pin(enum cpm_port port, int pin, int flags)
386{
387 if (port == CPM_PORTB || port == CPM_PORTE)
388 cpm1_set_pin32(port, pin, flags);
389 else
390 cpm1_set_pin16(port, pin, flags);
391}
392
393int cpm1_clk_setup(enum cpm_clk_target target, int clock, int mode)
394{
395 int shift;
396 int i, bits = 0;
397 u32 __iomem *reg;
398 u32 mask = 7;
399
400 u8 clk_map[][3] = {
401 {CPM_CLK_SCC1, CPM_BRG1, 0},
402 {CPM_CLK_SCC1, CPM_BRG2, 1},
403 {CPM_CLK_SCC1, CPM_BRG3, 2},
404 {CPM_CLK_SCC1, CPM_BRG4, 3},
405 {CPM_CLK_SCC1, CPM_CLK1, 4},
406 {CPM_CLK_SCC1, CPM_CLK2, 5},
407 {CPM_CLK_SCC1, CPM_CLK3, 6},
408 {CPM_CLK_SCC1, CPM_CLK4, 7},
409
410 {CPM_CLK_SCC2, CPM_BRG1, 0},
411 {CPM_CLK_SCC2, CPM_BRG2, 1},
412 {CPM_CLK_SCC2, CPM_BRG3, 2},
413 {CPM_CLK_SCC2, CPM_BRG4, 3},
414 {CPM_CLK_SCC2, CPM_CLK1, 4},
415 {CPM_CLK_SCC2, CPM_CLK2, 5},
416 {CPM_CLK_SCC2, CPM_CLK3, 6},
417 {CPM_CLK_SCC2, CPM_CLK4, 7},
418
419 {CPM_CLK_SCC3, CPM_BRG1, 0},
420 {CPM_CLK_SCC3, CPM_BRG2, 1},
421 {CPM_CLK_SCC3, CPM_BRG3, 2},
422 {CPM_CLK_SCC3, CPM_BRG4, 3},
423 {CPM_CLK_SCC3, CPM_CLK5, 4},
424 {CPM_CLK_SCC3, CPM_CLK6, 5},
425 {CPM_CLK_SCC3, CPM_CLK7, 6},
426 {CPM_CLK_SCC3, CPM_CLK8, 7},
427
428 {CPM_CLK_SCC4, CPM_BRG1, 0},
429 {CPM_CLK_SCC4, CPM_BRG2, 1},
430 {CPM_CLK_SCC4, CPM_BRG3, 2},
431 {CPM_CLK_SCC4, CPM_BRG4, 3},
432 {CPM_CLK_SCC4, CPM_CLK5, 4},
433 {CPM_CLK_SCC4, CPM_CLK6, 5},
434 {CPM_CLK_SCC4, CPM_CLK7, 6},
435 {CPM_CLK_SCC4, CPM_CLK8, 7},
436
437 {CPM_CLK_SMC1, CPM_BRG1, 0},
438 {CPM_CLK_SMC1, CPM_BRG2, 1},
439 {CPM_CLK_SMC1, CPM_BRG3, 2},
440 {CPM_CLK_SMC1, CPM_BRG4, 3},
441 {CPM_CLK_SMC1, CPM_CLK1, 4},
442 {CPM_CLK_SMC1, CPM_CLK2, 5},
443 {CPM_CLK_SMC1, CPM_CLK3, 6},
444 {CPM_CLK_SMC1, CPM_CLK4, 7},
445
446 {CPM_CLK_SMC2, CPM_BRG1, 0},
447 {CPM_CLK_SMC2, CPM_BRG2, 1},
448 {CPM_CLK_SMC2, CPM_BRG3, 2},
449 {CPM_CLK_SMC2, CPM_BRG4, 3},
450 {CPM_CLK_SMC2, CPM_CLK5, 4},
451 {CPM_CLK_SMC2, CPM_CLK6, 5},
452 {CPM_CLK_SMC2, CPM_CLK7, 6},
453 {CPM_CLK_SMC2, CPM_CLK8, 7},
454 };
455
456 switch (target) {
457 case CPM_CLK_SCC1:
458 reg = &mpc8xx_immr->im_cpm.cp_sicr;
459 shift = 0;
460 break;
461
462 case CPM_CLK_SCC2:
463 reg = &mpc8xx_immr->im_cpm.cp_sicr;
464 shift = 8;
465 break;
466
467 case CPM_CLK_SCC3:
468 reg = &mpc8xx_immr->im_cpm.cp_sicr;
469 shift = 16;
470 break;
471
472 case CPM_CLK_SCC4:
473 reg = &mpc8xx_immr->im_cpm.cp_sicr;
474 shift = 24;
475 break;
476
477 case CPM_CLK_SMC1:
478 reg = &mpc8xx_immr->im_cpm.cp_simode;
479 shift = 12;
480 break;
481
482 case CPM_CLK_SMC2:
483 reg = &mpc8xx_immr->im_cpm.cp_simode;
484 shift = 28;
485 break;
486
487 default:
488 printk(KERN_ERR "cpm1_clock_setup: invalid clock target\n");
489 return -EINVAL;
490 }
491
492 for (i = 0; i < ARRAY_SIZE(clk_map); i++) {
493 if (clk_map[i][0] == target && clk_map[i][1] == clock) {
494 bits = clk_map[i][2];
495 break;
496 }
497 }
498
499 if (i == ARRAY_SIZE(clk_map)) {
500 printk(KERN_ERR "cpm1_clock_setup: invalid clock combination\n");
501 return -EINVAL;
502 }
503
504 bits <<= shift;
505 mask <<= shift;
506
507 if (reg == &mpc8xx_immr->im_cpm.cp_sicr) {
508 if (mode == CPM_CLK_RTX) {
509 bits |= bits << 3;
510 mask |= mask << 3;
511 } else if (mode == CPM_CLK_RX) {
512 bits <<= 3;
513 mask <<= 3;
514 }
515 }
516
517 out_be32(reg, (in_be32(reg) & ~mask) | bits);
518
519 return 0;
520}
521
522/*
523 * GPIO LIB API implementation
524 */
525#ifdef CONFIG_8xx_GPIO
526
527struct cpm1_gpio16_chip {
528 struct of_mm_gpio_chip mm_gc;
529 spinlock_t lock;
530
531 /* shadowed data register to clear/set bits safely */
532 u16 cpdata;
533};
534
535static inline struct cpm1_gpio16_chip *
536to_cpm1_gpio16_chip(struct of_mm_gpio_chip *mm_gc)
537{
538 return container_of(mm_gc, struct cpm1_gpio16_chip, mm_gc);
539}
540
541static void cpm1_gpio16_save_regs(struct of_mm_gpio_chip *mm_gc)
542{
543 struct cpm1_gpio16_chip *cpm1_gc = to_cpm1_gpio16_chip(mm_gc);
544 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
545
546 cpm1_gc->cpdata = in_be16(&iop->dat);
547}
548
549static int cpm1_gpio16_get(struct gpio_chip *gc, unsigned int gpio)
550{
551 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
552 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
553 u16 pin_mask;
554
555 pin_mask = 1 << (15 - gpio);
556
557 return !!(in_be16(&iop->dat) & pin_mask);
558}
559
560static void __cpm1_gpio16_set(struct of_mm_gpio_chip *mm_gc, u16 pin_mask,
561 int value)
562{
563 struct cpm1_gpio16_chip *cpm1_gc = to_cpm1_gpio16_chip(mm_gc);
564 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
565
566 if (value)
567 cpm1_gc->cpdata |= pin_mask;
568 else
569 cpm1_gc->cpdata &= ~pin_mask;
570
571 out_be16(&iop->dat, cpm1_gc->cpdata);
572}
573
574static void cpm1_gpio16_set(struct gpio_chip *gc, unsigned int gpio, int value)
575{
576 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
577 struct cpm1_gpio16_chip *cpm1_gc = to_cpm1_gpio16_chip(mm_gc);
578 unsigned long flags;
579 u16 pin_mask = 1 << (15 - gpio);
580
581 spin_lock_irqsave(&cpm1_gc->lock, flags);
582
583 __cpm1_gpio16_set(mm_gc, pin_mask, value);
584
585 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
586}
587
588static int cpm1_gpio16_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
589{
590 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
591 struct cpm1_gpio16_chip *cpm1_gc = to_cpm1_gpio16_chip(mm_gc);
592 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
593 unsigned long flags;
594 u16 pin_mask = 1 << (15 - gpio);
595
596 spin_lock_irqsave(&cpm1_gc->lock, flags);
597
598 setbits16(&iop->dir, pin_mask);
599 __cpm1_gpio16_set(mm_gc, pin_mask, val);
600
601 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
602
603 return 0;
604}
605
606static int cpm1_gpio16_dir_in(struct gpio_chip *gc, unsigned int gpio)
607{
608 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
609 struct cpm1_gpio16_chip *cpm1_gc = to_cpm1_gpio16_chip(mm_gc);
610 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
611 unsigned long flags;
612 u16 pin_mask = 1 << (15 - gpio);
613
614 spin_lock_irqsave(&cpm1_gc->lock, flags);
615
616 clrbits16(&iop->dir, pin_mask);
617
618 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
619
620 return 0;
621}
622
623int cpm1_gpiochip_add16(struct device_node *np)
624{
625 struct cpm1_gpio16_chip *cpm1_gc;
626 struct of_mm_gpio_chip *mm_gc;
627 struct gpio_chip *gc;
628
629 cpm1_gc = kzalloc(sizeof(*cpm1_gc), GFP_KERNEL);
630 if (!cpm1_gc)
631 return -ENOMEM;
632
633 spin_lock_init(&cpm1_gc->lock);
634
635 mm_gc = &cpm1_gc->mm_gc;
636 gc = &mm_gc->gc;
637
638 mm_gc->save_regs = cpm1_gpio16_save_regs;
639 gc->ngpio = 16;
640 gc->direction_input = cpm1_gpio16_dir_in;
641 gc->direction_output = cpm1_gpio16_dir_out;
642 gc->get = cpm1_gpio16_get;
643 gc->set = cpm1_gpio16_set;
644
645 return of_mm_gpiochip_add(np, mm_gc);
646}
647
648struct cpm1_gpio32_chip {
649 struct of_mm_gpio_chip mm_gc;
650 spinlock_t lock;
651
652 /* shadowed data register to clear/set bits safely */
653 u32 cpdata;
654};
655
656static inline struct cpm1_gpio32_chip *
657to_cpm1_gpio32_chip(struct of_mm_gpio_chip *mm_gc)
658{
659 return container_of(mm_gc, struct cpm1_gpio32_chip, mm_gc);
660}
661
662static void cpm1_gpio32_save_regs(struct of_mm_gpio_chip *mm_gc)
663{
664 struct cpm1_gpio32_chip *cpm1_gc = to_cpm1_gpio32_chip(mm_gc);
665 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
666
667 cpm1_gc->cpdata = in_be32(&iop->dat);
668}
669
670static int cpm1_gpio32_get(struct gpio_chip *gc, unsigned int gpio)
671{
672 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
673 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
674 u32 pin_mask;
675
676 pin_mask = 1 << (31 - gpio);
677
678 return !!(in_be32(&iop->dat) & pin_mask);
679}
680
681static void __cpm1_gpio32_set(struct of_mm_gpio_chip *mm_gc, u32 pin_mask,
682 int value)
683{
684 struct cpm1_gpio32_chip *cpm1_gc = to_cpm1_gpio32_chip(mm_gc);
685 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
686
687 if (value)
688 cpm1_gc->cpdata |= pin_mask;
689 else
690 cpm1_gc->cpdata &= ~pin_mask;
691
692 out_be32(&iop->dat, cpm1_gc->cpdata);
693}
694
695static void cpm1_gpio32_set(struct gpio_chip *gc, unsigned int gpio, int value)
696{
697 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
698 struct cpm1_gpio32_chip *cpm1_gc = to_cpm1_gpio32_chip(mm_gc);
699 unsigned long flags;
700 u32 pin_mask = 1 << (31 - gpio);
701
702 spin_lock_irqsave(&cpm1_gc->lock, flags);
703
704 __cpm1_gpio32_set(mm_gc, pin_mask, value);
705
706 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
707}
708
709static int cpm1_gpio32_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
710{
711 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
712 struct cpm1_gpio32_chip *cpm1_gc = to_cpm1_gpio32_chip(mm_gc);
713 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
714 unsigned long flags;
715 u32 pin_mask = 1 << (31 - gpio);
716
717 spin_lock_irqsave(&cpm1_gc->lock, flags);
718
719 setbits32(&iop->dir, pin_mask);
720 __cpm1_gpio32_set(mm_gc, pin_mask, val);
721
722 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
723
724 return 0;
725}
726
727static int cpm1_gpio32_dir_in(struct gpio_chip *gc, unsigned int gpio)
728{
729 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
730 struct cpm1_gpio32_chip *cpm1_gc = to_cpm1_gpio32_chip(mm_gc);
731 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
732 unsigned long flags;
733 u32 pin_mask = 1 << (31 - gpio);
734
735 spin_lock_irqsave(&cpm1_gc->lock, flags);
736
737 clrbits32(&iop->dir, pin_mask);
738
739 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
740
741 return 0;
742}
743
744int cpm1_gpiochip_add32(struct device_node *np)
745{
746 struct cpm1_gpio32_chip *cpm1_gc;
747 struct of_mm_gpio_chip *mm_gc;
748 struct gpio_chip *gc;
749
750 cpm1_gc = kzalloc(sizeof(*cpm1_gc), GFP_KERNEL);
751 if (!cpm1_gc)
752 return -ENOMEM;
753
754 spin_lock_init(&cpm1_gc->lock);
755
756 mm_gc = &cpm1_gc->mm_gc;
757 gc = &mm_gc->gc;
758
759 mm_gc->save_regs = cpm1_gpio32_save_regs;
760 gc->ngpio = 32;
761 gc->direction_input = cpm1_gpio32_dir_in;
762 gc->direction_output = cpm1_gpio32_dir_out;
763 gc->get = cpm1_gpio32_get;
764 gc->set = cpm1_gpio32_set;
765
766 return of_mm_gpiochip_add(np, mm_gc);
767}
768
769static int cpm_init_par_io(void)
770{
771 struct device_node *np;
772
773 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-a")
774 cpm1_gpiochip_add16(np);
775
776 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-b")
777 cpm1_gpiochip_add32(np);
778
779 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-c")
780 cpm1_gpiochip_add16(np);
781
782 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-d")
783 cpm1_gpiochip_add16(np);
784
785 /* Port E uses CPM2 layout */
786 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-e")
787 cpm2_gpiochip_add32(np);
788 return 0;
789}
790arch_initcall(cpm_init_par_io);
791
792#endif /* CONFIG_8xx_GPIO */