2 * General Purpose functions for the global management of the
3 * Communication Processor Module.
4 * Copyright (c) 1997 Dan error_act (dmalek@jlc.net)
6 * In addition to the individual control of the communication
7 * channels, there are a few functions that globally affect the
8 * communication processor.
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.
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>
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>
36 #include <asm/pgtable.h>
37 #include <asm/8xx_immap.h>
40 #include <asm/tlbflush.h>
41 #include <asm/rheap.h>
45 #include <asm/fs_pd.h>
47 #ifdef CONFIG_8xx_GPIO
48 #include <linux/of_gpio.h>
51 #define CPM_MAP_SIZE (0x4000)
53 cpm8xx_t __iomem
*cpmp
; /* Pointer to comm processor space */
54 immap_t __iomem
*mpc8xx_immr
;
55 static cpic8xx_t __iomem
*cpic_reg
;
57 static struct irq_domain
*cpm_pic_host
;
59 static void cpm_mask_irq(struct irq_data
*d
)
61 unsigned int cpm_vec
= (unsigned int)irqd_to_hwirq(d
);
63 clrbits32(&cpic_reg
->cpic_cimr
, (1 << cpm_vec
));
66 static void cpm_unmask_irq(struct irq_data
*d
)
68 unsigned int cpm_vec
= (unsigned int)irqd_to_hwirq(d
);
70 setbits32(&cpic_reg
->cpic_cimr
, (1 << cpm_vec
));
73 static void cpm_end_irq(struct irq_data
*d
)
75 unsigned int cpm_vec
= (unsigned int)irqd_to_hwirq(d
);
77 out_be32(&cpic_reg
->cpic_cisr
, (1 << cpm_vec
));
80 static struct irq_chip cpm_pic
= {
82 .irq_mask
= cpm_mask_irq
,
83 .irq_unmask
= cpm_unmask_irq
,
84 .irq_eoi
= cpm_end_irq
,
91 /* Get the vector by setting the ACK bit and then reading
94 out_be16(&cpic_reg
->cpic_civr
, 1);
95 cpm_vec
= in_be16(&cpic_reg
->cpic_civr
);
98 return irq_linear_revmap(cpm_pic_host
, cpm_vec
);
101 static int cpm_pic_host_map(struct irq_domain
*h
, unsigned int virq
,
104 pr_debug("cpm_pic_host_map(%d, 0x%lx)\n", virq
, hw
);
106 irq_set_status_flags(virq
, IRQ_LEVEL
);
107 irq_set_chip_and_handler(virq
, &cpm_pic
, handle_fasteoi_irq
);
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.
116 static irqreturn_t
cpm_error_interrupt(int irq
, void *dev
)
121 static struct irqaction cpm_error_irqaction
= {
122 .handler
= cpm_error_interrupt
,
126 static const struct irq_domain_ops cpm_pic_host_ops
= {
127 .map
= cpm_pic_host_map
,
130 unsigned int cpm_pic_init(void)
132 struct device_node
*np
= NULL
;
134 unsigned int sirq
= NO_IRQ
, hwirq
, eirq
;
137 pr_debug("cpm_pic_init\n");
139 np
= of_find_compatible_node(NULL
, NULL
, "fsl,cpm1-pic");
141 np
= of_find_compatible_node(NULL
, "cpm-pic", "CPM");
143 printk(KERN_ERR
"CPM PIC init: can not find cpm-pic node\n");
147 ret
= of_address_to_resource(np
, 0, &res
);
151 cpic_reg
= ioremap(res
.start
, resource_size(&res
));
152 if (cpic_reg
== NULL
)
155 sirq
= irq_of_parse_and_map(np
, 0);
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
);
165 out_be32(&cpic_reg
->cpic_cimr
, 0);
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");
174 /* Install our own error handler. */
175 np
= of_find_compatible_node(NULL
, NULL
, "fsl,cpm1");
177 np
= of_find_node_by_type(NULL
, "cpm");
179 printk(KERN_ERR
"CPM PIC init: can not find cpm node\n");
183 eirq
= irq_of_parse_and_map(np
, 0);
187 if (setup_irq(eirq
, &cpm_error_irqaction
))
188 printk(KERN_ERR
"Could not allocate CPM error IRQ!");
190 setbits32(&cpic_reg
->cpic_cicr
, CICR_IEN
);
197 void __init
cpm_reset(void)
199 sysconf8xx_t __iomem
*siu_conf
;
201 mpc8xx_immr
= ioremap(get_immrbase(), 0x4000);
203 printk(KERN_CRIT
"Could not map IMMR\n");
207 cpmp
= &mpc8xx_immr
->im_cpm
;
209 #ifndef CONFIG_PPC_EARLY_DEBUG_CPM
212 out_be16(&cpmp
->cp_cpcr
, CPM_CR_RST
| CPM_CR_FLG
);
216 while (in_be16(&cpmp
->cp_cpcr
) & CPM_CR_FLG
);
219 #ifdef CONFIG_UCODE_PATCH
220 cpm_load_patch(cpmp
);
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).
229 siu_conf
= immr_map(im_siu_conf
);
230 out_be32(&siu_conf
->sc_sdcr
, 1);
231 immr_unmap(siu_conf
);
236 static DEFINE_SPINLOCK(cmd_lock
);
238 #define MAX_CR_CMD_LOOPS 10000
240 int cpm_command(u32 command
, u8 opcode
)
245 if (command
& 0xffffff0f)
248 spin_lock_irqsave(&cmd_lock
, flags
);
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)
256 printk(KERN_ERR
"%s(): Not able to issue CPM command\n", __func__
);
259 spin_unlock_irqrestore(&cmd_lock
, flags
);
262 EXPORT_SYMBOL(cpm_command
);
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.
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)
274 cpm_setbrg(uint brg
, uint rate
)
278 /* This is good enough to get SMCs running.....
280 bp
= &cpmp
->cp_brgc1
;
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.
285 if (((BRG_UART_CLK
/ rate
) - 1) < 4096)
286 out_be32(bp
, (((BRG_UART_CLK
/ rate
) - 1) << 1) | CPM_BRG_EN
);
288 out_be32(bp
, (((BRG_UART_CLK_DIV16
/ rate
) - 1) << 1) |
289 CPM_BRG_EN
| CPM_BRG_DIV16
);
292 struct cpm_ioport16
{
293 __be16 dir
, par
, odr_sor
, dat
, intr
;
297 struct cpm_ioport32b
{
298 __be32 dir
, par
, odr
, dat
;
301 struct cpm_ioport32e
{
302 __be32 dir
, par
, sor
, odr
, dat
;
305 static void cpm1_set_pin32(int port
, int pin
, int flags
)
307 struct cpm_ioport32e __iomem
*iop
;
308 pin
= 1 << (31 - pin
);
310 if (port
== CPM_PORTB
)
311 iop
= (struct cpm_ioport32e __iomem
*)
312 &mpc8xx_immr
->im_cpm
.cp_pbdir
;
314 iop
= (struct cpm_ioport32e __iomem
*)
315 &mpc8xx_immr
->im_cpm
.cp_pedir
;
317 if (flags
& CPM_PIN_OUTPUT
)
318 setbits32(&iop
->dir
, pin
);
320 clrbits32(&iop
->dir
, pin
);
322 if (!(flags
& CPM_PIN_GPIO
))
323 setbits32(&iop
->par
, pin
);
325 clrbits32(&iop
->par
, pin
);
327 if (port
== CPM_PORTB
) {
328 if (flags
& CPM_PIN_OPENDRAIN
)
329 setbits16(&mpc8xx_immr
->im_cpm
.cp_pbodr
, pin
);
331 clrbits16(&mpc8xx_immr
->im_cpm
.cp_pbodr
, pin
);
334 if (port
== CPM_PORTE
) {
335 if (flags
& CPM_PIN_SECONDARY
)
336 setbits32(&iop
->sor
, pin
);
338 clrbits32(&iop
->sor
, pin
);
340 if (flags
& CPM_PIN_OPENDRAIN
)
341 setbits32(&mpc8xx_immr
->im_cpm
.cp_peodr
, pin
);
343 clrbits32(&mpc8xx_immr
->im_cpm
.cp_peodr
, pin
);
347 static void cpm1_set_pin16(int port
, int pin
, int flags
)
349 struct cpm_ioport16 __iomem
*iop
=
350 (struct cpm_ioport16 __iomem
*)&mpc8xx_immr
->im_ioport
;
352 pin
= 1 << (15 - pin
);
357 if (flags
& CPM_PIN_OUTPUT
)
358 setbits16(&iop
->dir
, pin
);
360 clrbits16(&iop
->dir
, pin
);
362 if (!(flags
& CPM_PIN_GPIO
))
363 setbits16(&iop
->par
, pin
);
365 clrbits16(&iop
->par
, pin
);
367 if (port
== CPM_PORTA
) {
368 if (flags
& CPM_PIN_OPENDRAIN
)
369 setbits16(&iop
->odr_sor
, pin
);
371 clrbits16(&iop
->odr_sor
, pin
);
373 if (port
== CPM_PORTC
) {
374 if (flags
& CPM_PIN_SECONDARY
)
375 setbits16(&iop
->odr_sor
, pin
);
377 clrbits16(&iop
->odr_sor
, pin
);
381 void cpm1_set_pin(enum cpm_port port
, int pin
, int flags
)
383 if (port
== CPM_PORTB
|| port
== CPM_PORTE
)
384 cpm1_set_pin32(port
, pin
, flags
);
386 cpm1_set_pin16(port
, pin
, flags
);
389 int cpm1_clk_setup(enum cpm_clk_target target
, int clock
, int mode
)
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},
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},
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},
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},
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},
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},
454 reg
= &mpc8xx_immr
->im_cpm
.cp_sicr
;
459 reg
= &mpc8xx_immr
->im_cpm
.cp_sicr
;
464 reg
= &mpc8xx_immr
->im_cpm
.cp_sicr
;
469 reg
= &mpc8xx_immr
->im_cpm
.cp_sicr
;
474 reg
= &mpc8xx_immr
->im_cpm
.cp_simode
;
479 reg
= &mpc8xx_immr
->im_cpm
.cp_simode
;
484 printk(KERN_ERR
"cpm1_clock_setup: invalid clock target\n");
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];
495 if (i
== ARRAY_SIZE(clk_map
)) {
496 printk(KERN_ERR
"cpm1_clock_setup: invalid clock combination\n");
503 if (reg
== &mpc8xx_immr
->im_cpm
.cp_sicr
) {
504 if (mode
== CPM_CLK_RTX
) {
507 } else if (mode
== CPM_CLK_RX
) {
513 out_be32(reg
, (in_be32(reg
) & ~mask
) | bits
);
519 * GPIO LIB API implementation
521 #ifdef CONFIG_8xx_GPIO
523 struct cpm1_gpio16_chip
{
524 struct of_mm_gpio_chip mm_gc
;
527 /* shadowed data register to clear/set bits safely */
531 static inline struct cpm1_gpio16_chip
*
532 to_cpm1_gpio16_chip(struct of_mm_gpio_chip
*mm_gc
)
534 return container_of(mm_gc
, struct cpm1_gpio16_chip
, mm_gc
);
537 static void cpm1_gpio16_save_regs(struct of_mm_gpio_chip
*mm_gc
)
539 struct cpm1_gpio16_chip
*cpm1_gc
= to_cpm1_gpio16_chip(mm_gc
);
540 struct cpm_ioport16 __iomem
*iop
= mm_gc
->regs
;
542 cpm1_gc
->cpdata
= in_be16(&iop
->dat
);
545 static int cpm1_gpio16_get(struct gpio_chip
*gc
, unsigned int gpio
)
547 struct of_mm_gpio_chip
*mm_gc
= to_of_mm_gpio_chip(gc
);
548 struct cpm_ioport16 __iomem
*iop
= mm_gc
->regs
;
551 pin_mask
= 1 << (15 - gpio
);
553 return !!(in_be16(&iop
->dat
) & pin_mask
);
556 static void __cpm1_gpio16_set(struct of_mm_gpio_chip
*mm_gc
, u16 pin_mask
,
559 struct cpm1_gpio16_chip
*cpm1_gc
= to_cpm1_gpio16_chip(mm_gc
);
560 struct cpm_ioport16 __iomem
*iop
= mm_gc
->regs
;
563 cpm1_gc
->cpdata
|= pin_mask
;
565 cpm1_gc
->cpdata
&= ~pin_mask
;
567 out_be16(&iop
->dat
, cpm1_gc
->cpdata
);
570 static void cpm1_gpio16_set(struct gpio_chip
*gc
, unsigned int gpio
, int value
)
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
);
575 u16 pin_mask
= 1 << (15 - gpio
);
577 spin_lock_irqsave(&cpm1_gc
->lock
, flags
);
579 __cpm1_gpio16_set(mm_gc
, pin_mask
, value
);
581 spin_unlock_irqrestore(&cpm1_gc
->lock
, flags
);
584 static int cpm1_gpio16_dir_out(struct gpio_chip
*gc
, unsigned int gpio
, int val
)
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
;
590 u16 pin_mask
= 1 << (15 - gpio
);
592 spin_lock_irqsave(&cpm1_gc
->lock
, flags
);
594 setbits16(&iop
->dir
, pin_mask
);
595 __cpm1_gpio16_set(mm_gc
, pin_mask
, val
);
597 spin_unlock_irqrestore(&cpm1_gc
->lock
, flags
);
602 static int cpm1_gpio16_dir_in(struct gpio_chip
*gc
, unsigned int gpio
)
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
;
608 u16 pin_mask
= 1 << (15 - gpio
);
610 spin_lock_irqsave(&cpm1_gc
->lock
, flags
);
612 clrbits16(&iop
->dir
, pin_mask
);
614 spin_unlock_irqrestore(&cpm1_gc
->lock
, flags
);
619 int cpm1_gpiochip_add16(struct device_node
*np
)
621 struct cpm1_gpio16_chip
*cpm1_gc
;
622 struct of_mm_gpio_chip
*mm_gc
;
623 struct gpio_chip
*gc
;
625 cpm1_gc
= kzalloc(sizeof(*cpm1_gc
), GFP_KERNEL
);
629 spin_lock_init(&cpm1_gc
->lock
);
631 mm_gc
= &cpm1_gc
->mm_gc
;
634 mm_gc
->save_regs
= cpm1_gpio16_save_regs
;
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
;
641 return of_mm_gpiochip_add(np
, mm_gc
);
644 struct cpm1_gpio32_chip
{
645 struct of_mm_gpio_chip mm_gc
;
648 /* shadowed data register to clear/set bits safely */
652 static inline struct cpm1_gpio32_chip
*
653 to_cpm1_gpio32_chip(struct of_mm_gpio_chip
*mm_gc
)
655 return container_of(mm_gc
, struct cpm1_gpio32_chip
, mm_gc
);
658 static void cpm1_gpio32_save_regs(struct of_mm_gpio_chip
*mm_gc
)
660 struct cpm1_gpio32_chip
*cpm1_gc
= to_cpm1_gpio32_chip(mm_gc
);
661 struct cpm_ioport32b __iomem
*iop
= mm_gc
->regs
;
663 cpm1_gc
->cpdata
= in_be32(&iop
->dat
);
666 static int cpm1_gpio32_get(struct gpio_chip
*gc
, unsigned int gpio
)
668 struct of_mm_gpio_chip
*mm_gc
= to_of_mm_gpio_chip(gc
);
669 struct cpm_ioport32b __iomem
*iop
= mm_gc
->regs
;
672 pin_mask
= 1 << (31 - gpio
);
674 return !!(in_be32(&iop
->dat
) & pin_mask
);
677 static void __cpm1_gpio32_set(struct of_mm_gpio_chip
*mm_gc
, u32 pin_mask
,
680 struct cpm1_gpio32_chip
*cpm1_gc
= to_cpm1_gpio32_chip(mm_gc
);
681 struct cpm_ioport32b __iomem
*iop
= mm_gc
->regs
;
684 cpm1_gc
->cpdata
|= pin_mask
;
686 cpm1_gc
->cpdata
&= ~pin_mask
;
688 out_be32(&iop
->dat
, cpm1_gc
->cpdata
);
691 static void cpm1_gpio32_set(struct gpio_chip
*gc
, unsigned int gpio
, int value
)
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
);
696 u32 pin_mask
= 1 << (31 - gpio
);
698 spin_lock_irqsave(&cpm1_gc
->lock
, flags
);
700 __cpm1_gpio32_set(mm_gc
, pin_mask
, value
);
702 spin_unlock_irqrestore(&cpm1_gc
->lock
, flags
);
705 static int cpm1_gpio32_dir_out(struct gpio_chip
*gc
, unsigned int gpio
, int val
)
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
;
711 u32 pin_mask
= 1 << (31 - gpio
);
713 spin_lock_irqsave(&cpm1_gc
->lock
, flags
);
715 setbits32(&iop
->dir
, pin_mask
);
716 __cpm1_gpio32_set(mm_gc
, pin_mask
, val
);
718 spin_unlock_irqrestore(&cpm1_gc
->lock
, flags
);
723 static int cpm1_gpio32_dir_in(struct gpio_chip
*gc
, unsigned int gpio
)
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
;
729 u32 pin_mask
= 1 << (31 - gpio
);
731 spin_lock_irqsave(&cpm1_gc
->lock
, flags
);
733 clrbits32(&iop
->dir
, pin_mask
);
735 spin_unlock_irqrestore(&cpm1_gc
->lock
, flags
);
740 int cpm1_gpiochip_add32(struct device_node
*np
)
742 struct cpm1_gpio32_chip
*cpm1_gc
;
743 struct of_mm_gpio_chip
*mm_gc
;
744 struct gpio_chip
*gc
;
746 cpm1_gc
= kzalloc(sizeof(*cpm1_gc
), GFP_KERNEL
);
750 spin_lock_init(&cpm1_gc
->lock
);
752 mm_gc
= &cpm1_gc
->mm_gc
;
755 mm_gc
->save_regs
= cpm1_gpio32_save_regs
;
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
;
762 return of_mm_gpiochip_add(np
, mm_gc
);
765 static int cpm_init_par_io(void)
767 struct device_node
*np
;
769 for_each_compatible_node(np
, NULL
, "fsl,cpm1-pario-bank-a")
770 cpm1_gpiochip_add16(np
);
772 for_each_compatible_node(np
, NULL
, "fsl,cpm1-pario-bank-b")
773 cpm1_gpiochip_add32(np
);
775 for_each_compatible_node(np
, NULL
, "fsl,cpm1-pario-bank-c")
776 cpm1_gpiochip_add16(np
);
778 for_each_compatible_node(np
, NULL
, "fsl,cpm1-pario-bank-d")
779 cpm1_gpiochip_add16(np
);
781 /* Port E uses CPM2 layout */
782 for_each_compatible_node(np
, NULL
, "fsl,cpm1-pario-bank-e")
783 cpm2_gpiochip_add32(np
);
786 arch_initcall(cpm_init_par_io
);
788 #endif /* CONFIG_8xx_GPIO */