1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * General Purpose functions for the global management of the
4 * Communication Processor Module.
5 * Copyright (c) 1997 Dan error_act ([email protected])
6 *
7 * In addition to the individual control of the communication
8 * channels, there are a few functions that globally affect the
9 * communication processor.
10 *
11 * Buffer descriptors must be allocated from the dual ported memory
12 * space. The allocator for that is here. When the communication
13 * process is reset, we reclaim the memory available. There is
14 * currently no deallocator for this memory.
15 * The amount of space available is platform dependent. On the
16 * MBX, the EPPC software loads additional microcode into the
17 * communication processor, and uses some of the DP ram for this
18 * purpose. Current, the first 512 bytes and the last 256 bytes of
19 * memory are used. Right now I am conservative and only use the
20 * memory that can never be used for microcode. If there are
21 * applications that require more DP ram, we can expand the boundaries
22 * but then we have to be careful of any downloaded microcode.
23 */
24 #include <linux/errno.h>
25 #include <linux/sched.h>
26 #include <linux/kernel.h>
27 #include <linux/dma-mapping.h>
28 #include <linux/param.h>
29 #include <linux/string.h>
30 #include <linux/mm.h>
31 #include <linux/interrupt.h>
32 #include <linux/irq.h>
33 #include <linux/module.h>
34 #include <linux/spinlock.h>
35 #include <linux/slab.h>
36 #include <linux/of_irq.h>
37 #include <asm/page.h>
38 #include <asm/8xx_immap.h>
39 #include <asm/cpm1.h>
40 #include <asm/io.h>
41 #include <asm/rheap.h>
42 #include <asm/cpm.h>
43 #include <asm/fixmap.h>
44
45 #include <sysdev/fsl_soc.h>
46
47 #ifdef CONFIG_8xx_GPIO
48 #include <linux/gpio/driver.h>
49 #endif
50
51 #define CPM_MAP_SIZE (0x4000)
52
53 cpm8xx_t __iomem *cpmp; /* Pointer to comm processor space */
54 immap_t __iomem *mpc8xx_immr = (void __iomem *)VIRT_IMMR_BASE;
55
cpm_reset(void)56 void __init cpm_reset(void)
57 {
58 cpmp = &mpc8xx_immr->im_cpm;
59
60 #ifndef CONFIG_PPC_EARLY_DEBUG_CPM
61 /* Perform a reset. */
62 out_be16(&cpmp->cp_cpcr, CPM_CR_RST | CPM_CR_FLG);
63
64 /* Wait for it. */
65 while (in_be16(&cpmp->cp_cpcr) & CPM_CR_FLG);
66 #endif
67
68 #ifdef CONFIG_UCODE_PATCH
69 cpm_load_patch(cpmp);
70 #endif
71
72 /*
73 * Set SDMA Bus Request priority 5.
74 * On 860T, this also enables FEC priority 6. I am not sure
75 * this is what we really want for some applications, but the
76 * manual recommends it.
77 * Bit 25, FAM can also be set to use FEC aggressive mode (860T).
78 */
79 if ((mfspr(SPRN_IMMR) & 0xffff) == 0x0900) /* MPC885 */
80 out_be32(&mpc8xx_immr->im_siu_conf.sc_sdcr, 0x40);
81 else
82 out_be32(&mpc8xx_immr->im_siu_conf.sc_sdcr, 1);
83 }
84
85 static DEFINE_SPINLOCK(cmd_lock);
86
87 #define MAX_CR_CMD_LOOPS 10000
88
cpm_command(u32 command,u8 opcode)89 int cpm_command(u32 command, u8 opcode)
90 {
91 int i, ret;
92 unsigned long flags;
93
94 if (command & 0xffffff03)
95 return -EINVAL;
96
97 spin_lock_irqsave(&cmd_lock, flags);
98
99 ret = 0;
100 out_be16(&cpmp->cp_cpcr, command | CPM_CR_FLG | (opcode << 8));
101 for (i = 0; i < MAX_CR_CMD_LOOPS; i++)
102 if ((in_be16(&cpmp->cp_cpcr) & CPM_CR_FLG) == 0)
103 goto out;
104
105 printk(KERN_ERR "%s(): Not able to issue CPM command\n", __func__);
106 ret = -EIO;
107 out:
108 spin_unlock_irqrestore(&cmd_lock, flags);
109 return ret;
110 }
111 EXPORT_SYMBOL(cpm_command);
112
113 /*
114 * Set a baud rate generator. This needs lots of work. There are
115 * four BRGs, any of which can be wired to any channel.
116 * The internal baud rate clock is the system clock divided by 16.
117 * This assumes the baudrate is 16x oversampled by the uart.
118 */
119 #define BRG_INT_CLK (get_brgfreq())
120 #define BRG_UART_CLK (BRG_INT_CLK/16)
121 #define BRG_UART_CLK_DIV16 (BRG_UART_CLK/16)
122
123 void
cpm_setbrg(uint brg,uint rate)124 cpm_setbrg(uint brg, uint rate)
125 {
126 u32 __iomem *bp;
127
128 /* This is good enough to get SMCs running..... */
129 bp = &cpmp->cp_brgc1;
130 bp += brg;
131 /*
132 * The BRG has a 12-bit counter. For really slow baud rates (or
133 * really fast processors), we may have to further divide by 16.
134 */
135 if (((BRG_UART_CLK / rate) - 1) < 4096)
136 out_be32(bp, (((BRG_UART_CLK / rate) - 1) << 1) | CPM_BRG_EN);
137 else
138 out_be32(bp, (((BRG_UART_CLK_DIV16 / rate) - 1) << 1) |
139 CPM_BRG_EN | CPM_BRG_DIV16);
140 }
141 EXPORT_SYMBOL(cpm_setbrg);
142
143 struct cpm_ioport16 {
144 __be16 dir, par, odr_sor, dat, intr;
145 __be16 res[3];
146 };
147
148 struct cpm_ioport32b {
149 __be32 dir, par, odr, dat;
150 };
151
152 struct cpm_ioport32e {
153 __be32 dir, par, sor, odr, dat;
154 };
155
cpm1_set_pin32(int port,int pin,int flags)156 static void __init cpm1_set_pin32(int port, int pin, int flags)
157 {
158 struct cpm_ioport32e __iomem *iop;
159 pin = 1 << (31 - pin);
160
161 if (port == CPM_PORTB)
162 iop = (struct cpm_ioport32e __iomem *)
163 &mpc8xx_immr->im_cpm.cp_pbdir;
164 else
165 iop = (struct cpm_ioport32e __iomem *)
166 &mpc8xx_immr->im_cpm.cp_pedir;
167
168 if (flags & CPM_PIN_OUTPUT)
169 setbits32(&iop->dir, pin);
170 else
171 clrbits32(&iop->dir, pin);
172
173 if (!(flags & CPM_PIN_GPIO))
174 setbits32(&iop->par, pin);
175 else
176 clrbits32(&iop->par, pin);
177
178 if (port == CPM_PORTB) {
179 if (flags & CPM_PIN_OPENDRAIN)
180 setbits16(&mpc8xx_immr->im_cpm.cp_pbodr, pin);
181 else
182 clrbits16(&mpc8xx_immr->im_cpm.cp_pbodr, pin);
183 }
184
185 if (port == CPM_PORTE) {
186 if (flags & CPM_PIN_SECONDARY)
187 setbits32(&iop->sor, pin);
188 else
189 clrbits32(&iop->sor, pin);
190
191 if (flags & CPM_PIN_OPENDRAIN)
192 setbits32(&mpc8xx_immr->im_cpm.cp_peodr, pin);
193 else
194 clrbits32(&mpc8xx_immr->im_cpm.cp_peodr, pin);
195 }
196 }
197
cpm1_set_pin16(int port,int pin,int flags)198 static void __init cpm1_set_pin16(int port, int pin, int flags)
199 {
200 struct cpm_ioport16 __iomem *iop =
201 (struct cpm_ioport16 __iomem *)&mpc8xx_immr->im_ioport;
202
203 pin = 1 << (15 - pin);
204
205 if (port != 0)
206 iop += port - 1;
207
208 if (flags & CPM_PIN_OUTPUT)
209 setbits16(&iop->dir, pin);
210 else
211 clrbits16(&iop->dir, pin);
212
213 if (!(flags & CPM_PIN_GPIO))
214 setbits16(&iop->par, pin);
215 else
216 clrbits16(&iop->par, pin);
217
218 if (port == CPM_PORTA) {
219 if (flags & CPM_PIN_OPENDRAIN)
220 setbits16(&iop->odr_sor, pin);
221 else
222 clrbits16(&iop->odr_sor, pin);
223 }
224 if (port == CPM_PORTC) {
225 if (flags & CPM_PIN_SECONDARY)
226 setbits16(&iop->odr_sor, pin);
227 else
228 clrbits16(&iop->odr_sor, pin);
229 if (flags & CPM_PIN_FALLEDGE)
230 setbits16(&iop->intr, pin);
231 else
232 clrbits16(&iop->intr, pin);
233 }
234 }
235
cpm1_set_pin(enum cpm_port port,int pin,int flags)236 void __init cpm1_set_pin(enum cpm_port port, int pin, int flags)
237 {
238 if (port == CPM_PORTB || port == CPM_PORTE)
239 cpm1_set_pin32(port, pin, flags);
240 else
241 cpm1_set_pin16(port, pin, flags);
242 }
243
cpm1_clk_setup(enum cpm_clk_target target,int clock,int mode)244 int __init cpm1_clk_setup(enum cpm_clk_target target, int clock, int mode)
245 {
246 int shift;
247 int i, bits = 0;
248 u32 __iomem *reg;
249 u32 mask = 7;
250
251 u8 clk_map[][3] = {
252 {CPM_CLK_SCC1, CPM_BRG1, 0},
253 {CPM_CLK_SCC1, CPM_BRG2, 1},
254 {CPM_CLK_SCC1, CPM_BRG3, 2},
255 {CPM_CLK_SCC1, CPM_BRG4, 3},
256 {CPM_CLK_SCC1, CPM_CLK1, 4},
257 {CPM_CLK_SCC1, CPM_CLK2, 5},
258 {CPM_CLK_SCC1, CPM_CLK3, 6},
259 {CPM_CLK_SCC1, CPM_CLK4, 7},
260
261 {CPM_CLK_SCC2, CPM_BRG1, 0},
262 {CPM_CLK_SCC2, CPM_BRG2, 1},
263 {CPM_CLK_SCC2, CPM_BRG3, 2},
264 {CPM_CLK_SCC2, CPM_BRG4, 3},
265 {CPM_CLK_SCC2, CPM_CLK1, 4},
266 {CPM_CLK_SCC2, CPM_CLK2, 5},
267 {CPM_CLK_SCC2, CPM_CLK3, 6},
268 {CPM_CLK_SCC2, CPM_CLK4, 7},
269
270 {CPM_CLK_SCC3, CPM_BRG1, 0},
271 {CPM_CLK_SCC3, CPM_BRG2, 1},
272 {CPM_CLK_SCC3, CPM_BRG3, 2},
273 {CPM_CLK_SCC3, CPM_BRG4, 3},
274 {CPM_CLK_SCC3, CPM_CLK5, 4},
275 {CPM_CLK_SCC3, CPM_CLK6, 5},
276 {CPM_CLK_SCC3, CPM_CLK7, 6},
277 {CPM_CLK_SCC3, CPM_CLK8, 7},
278
279 {CPM_CLK_SCC4, CPM_BRG1, 0},
280 {CPM_CLK_SCC4, CPM_BRG2, 1},
281 {CPM_CLK_SCC4, CPM_BRG3, 2},
282 {CPM_CLK_SCC4, CPM_BRG4, 3},
283 {CPM_CLK_SCC4, CPM_CLK5, 4},
284 {CPM_CLK_SCC4, CPM_CLK6, 5},
285 {CPM_CLK_SCC4, CPM_CLK7, 6},
286 {CPM_CLK_SCC4, CPM_CLK8, 7},
287
288 {CPM_CLK_SMC1, CPM_BRG1, 0},
289 {CPM_CLK_SMC1, CPM_BRG2, 1},
290 {CPM_CLK_SMC1, CPM_BRG3, 2},
291 {CPM_CLK_SMC1, CPM_BRG4, 3},
292 {CPM_CLK_SMC1, CPM_CLK1, 4},
293 {CPM_CLK_SMC1, CPM_CLK2, 5},
294 {CPM_CLK_SMC1, CPM_CLK3, 6},
295 {CPM_CLK_SMC1, CPM_CLK4, 7},
296
297 {CPM_CLK_SMC2, CPM_BRG1, 0},
298 {CPM_CLK_SMC2, CPM_BRG2, 1},
299 {CPM_CLK_SMC2, CPM_BRG3, 2},
300 {CPM_CLK_SMC2, CPM_BRG4, 3},
301 {CPM_CLK_SMC2, CPM_CLK5, 4},
302 {CPM_CLK_SMC2, CPM_CLK6, 5},
303 {CPM_CLK_SMC2, CPM_CLK7, 6},
304 {CPM_CLK_SMC2, CPM_CLK8, 7},
305 };
306
307 switch (target) {
308 case CPM_CLK_SCC1:
309 reg = &mpc8xx_immr->im_cpm.cp_sicr;
310 shift = 0;
311 break;
312
313 case CPM_CLK_SCC2:
314 reg = &mpc8xx_immr->im_cpm.cp_sicr;
315 shift = 8;
316 break;
317
318 case CPM_CLK_SCC3:
319 reg = &mpc8xx_immr->im_cpm.cp_sicr;
320 shift = 16;
321 break;
322
323 case CPM_CLK_SCC4:
324 reg = &mpc8xx_immr->im_cpm.cp_sicr;
325 shift = 24;
326 break;
327
328 case CPM_CLK_SMC1:
329 reg = &mpc8xx_immr->im_cpm.cp_simode;
330 shift = 12;
331 break;
332
333 case CPM_CLK_SMC2:
334 reg = &mpc8xx_immr->im_cpm.cp_simode;
335 shift = 28;
336 break;
337
338 default:
339 printk(KERN_ERR "cpm1_clock_setup: invalid clock target\n");
340 return -EINVAL;
341 }
342
343 for (i = 0; i < ARRAY_SIZE(clk_map); i++) {
344 if (clk_map[i][0] == target && clk_map[i][1] == clock) {
345 bits = clk_map[i][2];
346 break;
347 }
348 }
349
350 if (i == ARRAY_SIZE(clk_map)) {
351 printk(KERN_ERR "cpm1_clock_setup: invalid clock combination\n");
352 return -EINVAL;
353 }
354
355 bits <<= shift;
356 mask <<= shift;
357
358 if (reg == &mpc8xx_immr->im_cpm.cp_sicr) {
359 if (mode == CPM_CLK_RTX) {
360 bits |= bits << 3;
361 mask |= mask << 3;
362 } else if (mode == CPM_CLK_RX) {
363 bits <<= 3;
364 mask <<= 3;
365 }
366 }
367
368 out_be32(reg, (in_be32(reg) & ~mask) | bits);
369
370 return 0;
371 }
372
373 /*
374 * GPIO LIB API implementation
375 */
376 #ifdef CONFIG_8xx_GPIO
377
378 struct cpm1_gpio16_chip {
379 struct gpio_chip gc;
380 void __iomem *regs;
381 spinlock_t lock;
382
383 /* shadowed data register to clear/set bits safely */
384 u16 cpdata;
385
386 /* IRQ associated with Pins when relevant */
387 int irq[16];
388 };
389
cpm1_gpio16_save_regs(struct cpm1_gpio16_chip * cpm1_gc)390 static void cpm1_gpio16_save_regs(struct cpm1_gpio16_chip *cpm1_gc)
391 {
392 struct cpm_ioport16 __iomem *iop = cpm1_gc->regs;
393
394 cpm1_gc->cpdata = in_be16(&iop->dat);
395 }
396
cpm1_gpio16_get(struct gpio_chip * gc,unsigned int gpio)397 static int cpm1_gpio16_get(struct gpio_chip *gc, unsigned int gpio)
398 {
399 struct cpm1_gpio16_chip *cpm1_gc = gpiochip_get_data(gc);
400 struct cpm_ioport16 __iomem *iop = cpm1_gc->regs;
401 u16 pin_mask;
402
403 pin_mask = 1 << (15 - gpio);
404
405 return !!(in_be16(&iop->dat) & pin_mask);
406 }
407
__cpm1_gpio16_set(struct cpm1_gpio16_chip * cpm1_gc,u16 pin_mask,int value)408 static void __cpm1_gpio16_set(struct cpm1_gpio16_chip *cpm1_gc, u16 pin_mask, int value)
409 {
410 struct cpm_ioport16 __iomem *iop = cpm1_gc->regs;
411
412 if (value)
413 cpm1_gc->cpdata |= pin_mask;
414 else
415 cpm1_gc->cpdata &= ~pin_mask;
416
417 out_be16(&iop->dat, cpm1_gc->cpdata);
418 }
419
cpm1_gpio16_set(struct gpio_chip * gc,unsigned int gpio,int value)420 static void cpm1_gpio16_set(struct gpio_chip *gc, unsigned int gpio, int value)
421 {
422 struct cpm1_gpio16_chip *cpm1_gc = gpiochip_get_data(gc);
423 unsigned long flags;
424 u16 pin_mask = 1 << (15 - gpio);
425
426 spin_lock_irqsave(&cpm1_gc->lock, flags);
427
428 __cpm1_gpio16_set(cpm1_gc, pin_mask, value);
429
430 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
431 }
432
cpm1_gpio16_to_irq(struct gpio_chip * gc,unsigned int gpio)433 static int cpm1_gpio16_to_irq(struct gpio_chip *gc, unsigned int gpio)
434 {
435 struct cpm1_gpio16_chip *cpm1_gc = gpiochip_get_data(gc);
436
437 return cpm1_gc->irq[gpio] ? : -ENXIO;
438 }
439
cpm1_gpio16_dir_out(struct gpio_chip * gc,unsigned int gpio,int val)440 static int cpm1_gpio16_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
441 {
442 struct cpm1_gpio16_chip *cpm1_gc = gpiochip_get_data(gc);
443 struct cpm_ioport16 __iomem *iop = cpm1_gc->regs;
444 unsigned long flags;
445 u16 pin_mask = 1 << (15 - gpio);
446
447 spin_lock_irqsave(&cpm1_gc->lock, flags);
448
449 setbits16(&iop->dir, pin_mask);
450 __cpm1_gpio16_set(cpm1_gc, pin_mask, val);
451
452 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
453
454 return 0;
455 }
456
cpm1_gpio16_dir_in(struct gpio_chip * gc,unsigned int gpio)457 static int cpm1_gpio16_dir_in(struct gpio_chip *gc, unsigned int gpio)
458 {
459 struct cpm1_gpio16_chip *cpm1_gc = gpiochip_get_data(gc);
460 struct cpm_ioport16 __iomem *iop = cpm1_gc->regs;
461 unsigned long flags;
462 u16 pin_mask = 1 << (15 - gpio);
463
464 spin_lock_irqsave(&cpm1_gc->lock, flags);
465
466 clrbits16(&iop->dir, pin_mask);
467
468 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
469
470 return 0;
471 }
472
cpm1_gpiochip_add16(struct device * dev)473 int cpm1_gpiochip_add16(struct device *dev)
474 {
475 struct device_node *np = dev->of_node;
476 struct cpm1_gpio16_chip *cpm1_gc;
477 struct gpio_chip *gc;
478 u16 mask;
479
480 cpm1_gc = devm_kzalloc(dev, sizeof(*cpm1_gc), GFP_KERNEL);
481 if (!cpm1_gc)
482 return -ENOMEM;
483
484 spin_lock_init(&cpm1_gc->lock);
485
486 if (!of_property_read_u16(np, "fsl,cpm1-gpio-irq-mask", &mask)) {
487 int i, j;
488
489 for (i = 0, j = 0; i < 16; i++)
490 if (mask & (1 << (15 - i)))
491 cpm1_gc->irq[i] = irq_of_parse_and_map(np, j++);
492 }
493
494 gc = &cpm1_gc->gc;
495 gc->base = -1;
496 gc->ngpio = 16;
497 gc->direction_input = cpm1_gpio16_dir_in;
498 gc->direction_output = cpm1_gpio16_dir_out;
499 gc->get = cpm1_gpio16_get;
500 gc->set = cpm1_gpio16_set;
501 gc->to_irq = cpm1_gpio16_to_irq;
502 gc->parent = dev;
503 gc->owner = THIS_MODULE;
504
505 gc->label = devm_kasprintf(dev, GFP_KERNEL, "%pOF", np);
506 if (!gc->label)
507 return -ENOMEM;
508
509 cpm1_gc->regs = devm_of_iomap(dev, np, 0, NULL);
510 if (IS_ERR(cpm1_gc->regs))
511 return PTR_ERR(cpm1_gc->regs);
512
513 cpm1_gpio16_save_regs(cpm1_gc);
514
515 return devm_gpiochip_add_data(dev, gc, cpm1_gc);
516 }
517
518 struct cpm1_gpio32_chip {
519 struct gpio_chip gc;
520 void __iomem *regs;
521 spinlock_t lock;
522
523 /* shadowed data register to clear/set bits safely */
524 u32 cpdata;
525 };
526
cpm1_gpio32_save_regs(struct cpm1_gpio32_chip * cpm1_gc)527 static void cpm1_gpio32_save_regs(struct cpm1_gpio32_chip *cpm1_gc)
528 {
529 struct cpm_ioport32b __iomem *iop = cpm1_gc->regs;
530
531 cpm1_gc->cpdata = in_be32(&iop->dat);
532 }
533
cpm1_gpio32_get(struct gpio_chip * gc,unsigned int gpio)534 static int cpm1_gpio32_get(struct gpio_chip *gc, unsigned int gpio)
535 {
536 struct cpm1_gpio32_chip *cpm1_gc = gpiochip_get_data(gc);
537 struct cpm_ioport32b __iomem *iop = cpm1_gc->regs;
538 u32 pin_mask;
539
540 pin_mask = 1 << (31 - gpio);
541
542 return !!(in_be32(&iop->dat) & pin_mask);
543 }
544
__cpm1_gpio32_set(struct cpm1_gpio32_chip * cpm1_gc,u32 pin_mask,int value)545 static void __cpm1_gpio32_set(struct cpm1_gpio32_chip *cpm1_gc, u32 pin_mask, int value)
546 {
547 struct cpm_ioport32b __iomem *iop = cpm1_gc->regs;
548
549 if (value)
550 cpm1_gc->cpdata |= pin_mask;
551 else
552 cpm1_gc->cpdata &= ~pin_mask;
553
554 out_be32(&iop->dat, cpm1_gc->cpdata);
555 }
556
cpm1_gpio32_set(struct gpio_chip * gc,unsigned int gpio,int value)557 static void cpm1_gpio32_set(struct gpio_chip *gc, unsigned int gpio, int value)
558 {
559 struct cpm1_gpio32_chip *cpm1_gc = gpiochip_get_data(gc);
560 unsigned long flags;
561 u32 pin_mask = 1 << (31 - gpio);
562
563 spin_lock_irqsave(&cpm1_gc->lock, flags);
564
565 __cpm1_gpio32_set(cpm1_gc, pin_mask, value);
566
567 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
568 }
569
cpm1_gpio32_dir_out(struct gpio_chip * gc,unsigned int gpio,int val)570 static int cpm1_gpio32_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
571 {
572 struct cpm1_gpio32_chip *cpm1_gc = gpiochip_get_data(gc);
573 struct cpm_ioport32b __iomem *iop = cpm1_gc->regs;
574 unsigned long flags;
575 u32 pin_mask = 1 << (31 - gpio);
576
577 spin_lock_irqsave(&cpm1_gc->lock, flags);
578
579 setbits32(&iop->dir, pin_mask);
580 __cpm1_gpio32_set(cpm1_gc, pin_mask, val);
581
582 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
583
584 return 0;
585 }
586
cpm1_gpio32_dir_in(struct gpio_chip * gc,unsigned int gpio)587 static int cpm1_gpio32_dir_in(struct gpio_chip *gc, unsigned int gpio)
588 {
589 struct cpm1_gpio32_chip *cpm1_gc = gpiochip_get_data(gc);
590 struct cpm_ioport32b __iomem *iop = cpm1_gc->regs;
591 unsigned long flags;
592 u32 pin_mask = 1 << (31 - gpio);
593
594 spin_lock_irqsave(&cpm1_gc->lock, flags);
595
596 clrbits32(&iop->dir, pin_mask);
597
598 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
599
600 return 0;
601 }
602
cpm1_gpiochip_add32(struct device * dev)603 int cpm1_gpiochip_add32(struct device *dev)
604 {
605 struct device_node *np = dev->of_node;
606 struct cpm1_gpio32_chip *cpm1_gc;
607 struct gpio_chip *gc;
608
609 cpm1_gc = devm_kzalloc(dev, sizeof(*cpm1_gc), GFP_KERNEL);
610 if (!cpm1_gc)
611 return -ENOMEM;
612
613 spin_lock_init(&cpm1_gc->lock);
614
615 gc = &cpm1_gc->gc;
616 gc->base = -1;
617 gc->ngpio = 32;
618 gc->direction_input = cpm1_gpio32_dir_in;
619 gc->direction_output = cpm1_gpio32_dir_out;
620 gc->get = cpm1_gpio32_get;
621 gc->set = cpm1_gpio32_set;
622 gc->parent = dev;
623 gc->owner = THIS_MODULE;
624
625 gc->label = devm_kasprintf(dev, GFP_KERNEL, "%pOF", np);
626 if (!gc->label)
627 return -ENOMEM;
628
629 cpm1_gc->regs = devm_of_iomap(dev, np, 0, NULL);
630 if (IS_ERR(cpm1_gc->regs))
631 return PTR_ERR(cpm1_gc->regs);
632
633 cpm1_gpio32_save_regs(cpm1_gc);
634
635 return devm_gpiochip_add_data(dev, gc, cpm1_gc);
636 }
637
638 #endif /* CONFIG_8xx_GPIO */
639