Merge tag 'nfs-for-3.10-4' of git://git.linux-nfs.org/projects/trondmy/linux-nfs
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / pinctrl / pinctrl-coh901.c
1 /*
2 * U300 GPIO module.
3 *
4 * Copyright (C) 2007-2012 ST-Ericsson AB
5 * License terms: GNU General Public License (GPL) version 2
6 * COH 901 571/3 - Used in DB3210 (U365 2.0) and DB3350 (U335 1.0)
7 * Author: Linus Walleij <linus.walleij@linaro.org>
8 * Author: Jonas Aaberg <jonas.aberg@stericsson.com>
9 */
10 #include <linux/module.h>
11 #include <linux/irq.h>
12 #include <linux/interrupt.h>
13 #include <linux/delay.h>
14 #include <linux/errno.h>
15 #include <linux/io.h>
16 #include <linux/irqdomain.h>
17 #include <linux/clk.h>
18 #include <linux/err.h>
19 #include <linux/platform_device.h>
20 #include <linux/gpio.h>
21 #include <linux/list.h>
22 #include <linux/slab.h>
23 #include <linux/pinctrl/consumer.h>
24 #include <linux/pinctrl/pinconf-generic.h>
25 #include <linux/platform_data/pinctrl-coh901.h>
26 #include "pinctrl-coh901.h"
27
28 #define U300_GPIO_PORT_STRIDE (0x30)
29 /*
30 * Control Register 32bit (R/W)
31 * bit 15-9 (mask 0x0000FE00) contains the number of cores. 8*cores
32 * gives the number of GPIO pins.
33 * bit 8-2 (mask 0x000001FC) contains the core version ID.
34 */
35 #define U300_GPIO_CR (0x00)
36 #define U300_GPIO_CR_SYNC_SEL_ENABLE (0x00000002UL)
37 #define U300_GPIO_CR_BLOCK_CLKRQ_ENABLE (0x00000001UL)
38 #define U300_GPIO_PXPDIR (0x04)
39 #define U300_GPIO_PXPDOR (0x08)
40 #define U300_GPIO_PXPCR (0x0C)
41 #define U300_GPIO_PXPCR_ALL_PINS_MODE_MASK (0x0000FFFFUL)
42 #define U300_GPIO_PXPCR_PIN_MODE_MASK (0x00000003UL)
43 #define U300_GPIO_PXPCR_PIN_MODE_SHIFT (0x00000002UL)
44 #define U300_GPIO_PXPCR_PIN_MODE_INPUT (0x00000000UL)
45 #define U300_GPIO_PXPCR_PIN_MODE_OUTPUT_PUSH_PULL (0x00000001UL)
46 #define U300_GPIO_PXPCR_PIN_MODE_OUTPUT_OPEN_DRAIN (0x00000002UL)
47 #define U300_GPIO_PXPCR_PIN_MODE_OUTPUT_OPEN_SOURCE (0x00000003UL)
48 #define U300_GPIO_PXPER (0x10)
49 #define U300_GPIO_PXPER_ALL_PULL_UP_DISABLE_MASK (0x000000FFUL)
50 #define U300_GPIO_PXPER_PULL_UP_DISABLE (0x00000001UL)
51 #define U300_GPIO_PXIEV (0x14)
52 #define U300_GPIO_PXIEN (0x18)
53 #define U300_GPIO_PXIFR (0x1C)
54 #define U300_GPIO_PXICR (0x20)
55 #define U300_GPIO_PXICR_ALL_IRQ_CONFIG_MASK (0x000000FFUL)
56 #define U300_GPIO_PXICR_IRQ_CONFIG_MASK (0x00000001UL)
57 #define U300_GPIO_PXICR_IRQ_CONFIG_FALLING_EDGE (0x00000000UL)
58 #define U300_GPIO_PXICR_IRQ_CONFIG_RISING_EDGE (0x00000001UL)
59
60 /* 8 bits per port, no version has more than 7 ports */
61 #define U300_GPIO_PINS_PER_PORT 8
62 #define U300_GPIO_MAX (U300_GPIO_PINS_PER_PORT * 7)
63
64 struct u300_gpio {
65 struct gpio_chip chip;
66 struct list_head port_list;
67 struct clk *clk;
68 void __iomem *base;
69 struct device *dev;
70 u32 stride;
71 /* Register offsets */
72 u32 pcr;
73 u32 dor;
74 u32 dir;
75 u32 per;
76 u32 icr;
77 u32 ien;
78 u32 iev;
79 };
80
81 struct u300_gpio_port {
82 struct list_head node;
83 struct u300_gpio *gpio;
84 char name[8];
85 struct irq_domain *domain;
86 int irq;
87 int number;
88 u8 toggle_edge_mode;
89 };
90
91 /*
92 * Macro to expand to read a specific register found in the "gpio"
93 * struct. It requires the struct u300_gpio *gpio variable to exist in
94 * its context. It calculates the port offset from the given pin
95 * offset, muliplies by the port stride and adds the register offset
96 * so it provides a pointer to the desired register.
97 */
98 #define U300_PIN_REG(pin, reg) \
99 (gpio->base + (pin >> 3) * gpio->stride + gpio->reg)
100
101 /*
102 * Provides a bitmask for a specific gpio pin inside an 8-bit GPIO
103 * register.
104 */
105 #define U300_PIN_BIT(pin) \
106 (1 << (pin & 0x07))
107
108 struct u300_gpio_confdata {
109 u16 bias_mode;
110 bool output;
111 int outval;
112 };
113
114 /* BS335 has seven ports of 8 bits each = GPIO pins 0..55 */
115 #define BS335_GPIO_NUM_PORTS 7
116
117 #define U300_FLOATING_INPUT { \
118 .bias_mode = PIN_CONFIG_BIAS_HIGH_IMPEDANCE, \
119 .output = false, \
120 }
121
122 #define U300_PULL_UP_INPUT { \
123 .bias_mode = PIN_CONFIG_BIAS_PULL_UP, \
124 .output = false, \
125 }
126
127 #define U300_OUTPUT_LOW { \
128 .output = true, \
129 .outval = 0, \
130 }
131
132 #define U300_OUTPUT_HIGH { \
133 .output = true, \
134 .outval = 1, \
135 }
136
137 /* Initial configuration */
138 static const struct __initconst u300_gpio_confdata
139 bs335_gpio_config[BS335_GPIO_NUM_PORTS][U300_GPIO_PINS_PER_PORT] = {
140 /* Port 0, pins 0-7 */
141 {
142 U300_FLOATING_INPUT,
143 U300_OUTPUT_HIGH,
144 U300_FLOATING_INPUT,
145 U300_OUTPUT_LOW,
146 U300_OUTPUT_LOW,
147 U300_OUTPUT_LOW,
148 U300_OUTPUT_LOW,
149 U300_OUTPUT_LOW,
150 },
151 /* Port 1, pins 0-7 */
152 {
153 U300_OUTPUT_LOW,
154 U300_OUTPUT_LOW,
155 U300_OUTPUT_LOW,
156 U300_PULL_UP_INPUT,
157 U300_FLOATING_INPUT,
158 U300_OUTPUT_HIGH,
159 U300_OUTPUT_LOW,
160 U300_OUTPUT_LOW,
161 },
162 /* Port 2, pins 0-7 */
163 {
164 U300_FLOATING_INPUT,
165 U300_FLOATING_INPUT,
166 U300_FLOATING_INPUT,
167 U300_FLOATING_INPUT,
168 U300_OUTPUT_LOW,
169 U300_PULL_UP_INPUT,
170 U300_OUTPUT_LOW,
171 U300_PULL_UP_INPUT,
172 },
173 /* Port 3, pins 0-7 */
174 {
175 U300_PULL_UP_INPUT,
176 U300_OUTPUT_LOW,
177 U300_FLOATING_INPUT,
178 U300_FLOATING_INPUT,
179 U300_FLOATING_INPUT,
180 U300_FLOATING_INPUT,
181 U300_FLOATING_INPUT,
182 U300_FLOATING_INPUT,
183 },
184 /* Port 4, pins 0-7 */
185 {
186 U300_FLOATING_INPUT,
187 U300_FLOATING_INPUT,
188 U300_FLOATING_INPUT,
189 U300_FLOATING_INPUT,
190 U300_FLOATING_INPUT,
191 U300_FLOATING_INPUT,
192 U300_FLOATING_INPUT,
193 U300_FLOATING_INPUT,
194 },
195 /* Port 5, pins 0-7 */
196 {
197 U300_FLOATING_INPUT,
198 U300_FLOATING_INPUT,
199 U300_FLOATING_INPUT,
200 U300_FLOATING_INPUT,
201 U300_FLOATING_INPUT,
202 U300_FLOATING_INPUT,
203 U300_FLOATING_INPUT,
204 U300_FLOATING_INPUT,
205 },
206 /* Port 6, pind 0-7 */
207 {
208 U300_FLOATING_INPUT,
209 U300_FLOATING_INPUT,
210 U300_FLOATING_INPUT,
211 U300_FLOATING_INPUT,
212 U300_FLOATING_INPUT,
213 U300_FLOATING_INPUT,
214 U300_FLOATING_INPUT,
215 U300_FLOATING_INPUT,
216 }
217 };
218
219 /**
220 * to_u300_gpio() - get the pointer to u300_gpio
221 * @chip: the gpio chip member of the structure u300_gpio
222 */
223 static inline struct u300_gpio *to_u300_gpio(struct gpio_chip *chip)
224 {
225 return container_of(chip, struct u300_gpio, chip);
226 }
227
228 static int u300_gpio_request(struct gpio_chip *chip, unsigned offset)
229 {
230 /*
231 * Map back to global GPIO space and request muxing, the direction
232 * parameter does not matter for this controller.
233 */
234 int gpio = chip->base + offset;
235
236 return pinctrl_request_gpio(gpio);
237 }
238
239 static void u300_gpio_free(struct gpio_chip *chip, unsigned offset)
240 {
241 int gpio = chip->base + offset;
242
243 pinctrl_free_gpio(gpio);
244 }
245
246 static int u300_gpio_get(struct gpio_chip *chip, unsigned offset)
247 {
248 struct u300_gpio *gpio = to_u300_gpio(chip);
249
250 return readl(U300_PIN_REG(offset, dir)) & U300_PIN_BIT(offset);
251 }
252
253 static void u300_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
254 {
255 struct u300_gpio *gpio = to_u300_gpio(chip);
256 unsigned long flags;
257 u32 val;
258
259 local_irq_save(flags);
260
261 val = readl(U300_PIN_REG(offset, dor));
262 if (value)
263 writel(val | U300_PIN_BIT(offset), U300_PIN_REG(offset, dor));
264 else
265 writel(val & ~U300_PIN_BIT(offset), U300_PIN_REG(offset, dor));
266
267 local_irq_restore(flags);
268 }
269
270 static int u300_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
271 {
272 struct u300_gpio *gpio = to_u300_gpio(chip);
273 unsigned long flags;
274 u32 val;
275
276 local_irq_save(flags);
277 val = readl(U300_PIN_REG(offset, pcr));
278 /* Mask out this pin, note 2 bits per setting */
279 val &= ~(U300_GPIO_PXPCR_PIN_MODE_MASK << ((offset & 0x07) << 1));
280 writel(val, U300_PIN_REG(offset, pcr));
281 local_irq_restore(flags);
282 return 0;
283 }
284
285 static int u300_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
286 int value)
287 {
288 struct u300_gpio *gpio = to_u300_gpio(chip);
289 unsigned long flags;
290 u32 oldmode;
291 u32 val;
292
293 local_irq_save(flags);
294 val = readl(U300_PIN_REG(offset, pcr));
295 /*
296 * Drive mode must be set by the special mode set function, set
297 * push/pull mode by default if no mode has been selected.
298 */
299 oldmode = val & (U300_GPIO_PXPCR_PIN_MODE_MASK <<
300 ((offset & 0x07) << 1));
301 /* mode = 0 means input, else some mode is already set */
302 if (oldmode == 0) {
303 val &= ~(U300_GPIO_PXPCR_PIN_MODE_MASK <<
304 ((offset & 0x07) << 1));
305 val |= (U300_GPIO_PXPCR_PIN_MODE_OUTPUT_PUSH_PULL
306 << ((offset & 0x07) << 1));
307 writel(val, U300_PIN_REG(offset, pcr));
308 }
309 u300_gpio_set(chip, offset, value);
310 local_irq_restore(flags);
311 return 0;
312 }
313
314 static int u300_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
315 {
316 struct u300_gpio *gpio = to_u300_gpio(chip);
317 int portno = offset >> 3;
318 struct u300_gpio_port *port = NULL;
319 struct list_head *p;
320 int retirq;
321 bool found = false;
322
323 list_for_each(p, &gpio->port_list) {
324 port = list_entry(p, struct u300_gpio_port, node);
325 if (port->number == portno) {
326 found = true;
327 break;
328 }
329 }
330 if (!found) {
331 dev_err(gpio->dev, "could not locate port for GPIO %d IRQ\n",
332 offset);
333 return -EINVAL;
334 }
335
336 /*
337 * The local hwirqs on the port are the lower three bits, there
338 * are exactly 8 IRQs per port since they are 8-bit
339 */
340 retirq = irq_find_mapping(port->domain, (offset & 0x7));
341
342 dev_dbg(gpio->dev, "request IRQ for GPIO %d, return %d from port %d\n",
343 offset, retirq, port->number);
344 return retirq;
345 }
346
347 /* Returning -EINVAL means "supported but not available" */
348 int u300_gpio_config_get(struct gpio_chip *chip,
349 unsigned offset,
350 unsigned long *config)
351 {
352 struct u300_gpio *gpio = to_u300_gpio(chip);
353 enum pin_config_param param = (enum pin_config_param) *config;
354 bool biasmode;
355 u32 drmode;
356
357 /* One bit per pin, clamp to bool range */
358 biasmode = !!(readl(U300_PIN_REG(offset, per)) & U300_PIN_BIT(offset));
359
360 /* Mask out the two bits for this pin and shift to bits 0,1 */
361 drmode = readl(U300_PIN_REG(offset, pcr));
362 drmode &= (U300_GPIO_PXPCR_PIN_MODE_MASK << ((offset & 0x07) << 1));
363 drmode >>= ((offset & 0x07) << 1);
364
365 switch (param) {
366 case PIN_CONFIG_BIAS_HIGH_IMPEDANCE:
367 *config = 0;
368 if (biasmode)
369 return 0;
370 else
371 return -EINVAL;
372 break;
373 case PIN_CONFIG_BIAS_PULL_UP:
374 *config = 0;
375 if (!biasmode)
376 return 0;
377 else
378 return -EINVAL;
379 break;
380 case PIN_CONFIG_DRIVE_PUSH_PULL:
381 *config = 0;
382 if (drmode == U300_GPIO_PXPCR_PIN_MODE_OUTPUT_PUSH_PULL)
383 return 0;
384 else
385 return -EINVAL;
386 break;
387 case PIN_CONFIG_DRIVE_OPEN_DRAIN:
388 *config = 0;
389 if (drmode == U300_GPIO_PXPCR_PIN_MODE_OUTPUT_OPEN_DRAIN)
390 return 0;
391 else
392 return -EINVAL;
393 break;
394 case PIN_CONFIG_DRIVE_OPEN_SOURCE:
395 *config = 0;
396 if (drmode == U300_GPIO_PXPCR_PIN_MODE_OUTPUT_OPEN_SOURCE)
397 return 0;
398 else
399 return -EINVAL;
400 break;
401 default:
402 break;
403 }
404 return -ENOTSUPP;
405 }
406
407 int u300_gpio_config_set(struct gpio_chip *chip, unsigned offset,
408 enum pin_config_param param)
409 {
410 struct u300_gpio *gpio = to_u300_gpio(chip);
411 unsigned long flags;
412 u32 val;
413
414 local_irq_save(flags);
415 switch (param) {
416 case PIN_CONFIG_BIAS_DISABLE:
417 case PIN_CONFIG_BIAS_HIGH_IMPEDANCE:
418 val = readl(U300_PIN_REG(offset, per));
419 writel(val | U300_PIN_BIT(offset), U300_PIN_REG(offset, per));
420 break;
421 case PIN_CONFIG_BIAS_PULL_UP:
422 val = readl(U300_PIN_REG(offset, per));
423 writel(val & ~U300_PIN_BIT(offset), U300_PIN_REG(offset, per));
424 break;
425 case PIN_CONFIG_DRIVE_PUSH_PULL:
426 val = readl(U300_PIN_REG(offset, pcr));
427 val &= ~(U300_GPIO_PXPCR_PIN_MODE_MASK
428 << ((offset & 0x07) << 1));
429 val |= (U300_GPIO_PXPCR_PIN_MODE_OUTPUT_PUSH_PULL
430 << ((offset & 0x07) << 1));
431 writel(val, U300_PIN_REG(offset, pcr));
432 break;
433 case PIN_CONFIG_DRIVE_OPEN_DRAIN:
434 val = readl(U300_PIN_REG(offset, pcr));
435 val &= ~(U300_GPIO_PXPCR_PIN_MODE_MASK
436 << ((offset & 0x07) << 1));
437 val |= (U300_GPIO_PXPCR_PIN_MODE_OUTPUT_OPEN_DRAIN
438 << ((offset & 0x07) << 1));
439 writel(val, U300_PIN_REG(offset, pcr));
440 break;
441 case PIN_CONFIG_DRIVE_OPEN_SOURCE:
442 val = readl(U300_PIN_REG(offset, pcr));
443 val &= ~(U300_GPIO_PXPCR_PIN_MODE_MASK
444 << ((offset & 0x07) << 1));
445 val |= (U300_GPIO_PXPCR_PIN_MODE_OUTPUT_OPEN_SOURCE
446 << ((offset & 0x07) << 1));
447 writel(val, U300_PIN_REG(offset, pcr));
448 break;
449 default:
450 local_irq_restore(flags);
451 dev_err(gpio->dev, "illegal configuration requested\n");
452 return -EINVAL;
453 }
454 local_irq_restore(flags);
455 return 0;
456 }
457
458 static struct gpio_chip u300_gpio_chip = {
459 .label = "u300-gpio-chip",
460 .owner = THIS_MODULE,
461 .request = u300_gpio_request,
462 .free = u300_gpio_free,
463 .get = u300_gpio_get,
464 .set = u300_gpio_set,
465 .direction_input = u300_gpio_direction_input,
466 .direction_output = u300_gpio_direction_output,
467 .to_irq = u300_gpio_to_irq,
468 };
469
470 static void u300_toggle_trigger(struct u300_gpio *gpio, unsigned offset)
471 {
472 u32 val;
473
474 val = readl(U300_PIN_REG(offset, icr));
475 /* Set mode depending on state */
476 if (u300_gpio_get(&gpio->chip, offset)) {
477 /* High now, let's trigger on falling edge next then */
478 writel(val & ~U300_PIN_BIT(offset), U300_PIN_REG(offset, icr));
479 dev_dbg(gpio->dev, "next IRQ on falling edge on pin %d\n",
480 offset);
481 } else {
482 /* Low now, let's trigger on rising edge next then */
483 writel(val | U300_PIN_BIT(offset), U300_PIN_REG(offset, icr));
484 dev_dbg(gpio->dev, "next IRQ on rising edge on pin %d\n",
485 offset);
486 }
487 }
488
489 static int u300_gpio_irq_type(struct irq_data *d, unsigned trigger)
490 {
491 struct u300_gpio_port *port = irq_data_get_irq_chip_data(d);
492 struct u300_gpio *gpio = port->gpio;
493 int offset = (port->number << 3) + d->hwirq;
494 u32 val;
495
496 if ((trigger & IRQF_TRIGGER_RISING) &&
497 (trigger & IRQF_TRIGGER_FALLING)) {
498 /*
499 * The GPIO block can only trigger on falling OR rising edges,
500 * not both. So we need to toggle the mode whenever the pin
501 * goes from one state to the other with a special state flag
502 */
503 dev_dbg(gpio->dev,
504 "trigger on both rising and falling edge on pin %d\n",
505 offset);
506 port->toggle_edge_mode |= U300_PIN_BIT(offset);
507 u300_toggle_trigger(gpio, offset);
508 } else if (trigger & IRQF_TRIGGER_RISING) {
509 dev_dbg(gpio->dev, "trigger on rising edge on pin %d\n",
510 offset);
511 val = readl(U300_PIN_REG(offset, icr));
512 writel(val | U300_PIN_BIT(offset), U300_PIN_REG(offset, icr));
513 port->toggle_edge_mode &= ~U300_PIN_BIT(offset);
514 } else if (trigger & IRQF_TRIGGER_FALLING) {
515 dev_dbg(gpio->dev, "trigger on falling edge on pin %d\n",
516 offset);
517 val = readl(U300_PIN_REG(offset, icr));
518 writel(val & ~U300_PIN_BIT(offset), U300_PIN_REG(offset, icr));
519 port->toggle_edge_mode &= ~U300_PIN_BIT(offset);
520 }
521
522 return 0;
523 }
524
525 static void u300_gpio_irq_enable(struct irq_data *d)
526 {
527 struct u300_gpio_port *port = irq_data_get_irq_chip_data(d);
528 struct u300_gpio *gpio = port->gpio;
529 int offset = (port->number << 3) + d->hwirq;
530 u32 val;
531 unsigned long flags;
532
533 dev_dbg(gpio->dev, "enable IRQ for hwirq %lu on port %s, offset %d\n",
534 d->hwirq, port->name, offset);
535 local_irq_save(flags);
536 val = readl(U300_PIN_REG(offset, ien));
537 writel(val | U300_PIN_BIT(offset), U300_PIN_REG(offset, ien));
538 local_irq_restore(flags);
539 }
540
541 static void u300_gpio_irq_disable(struct irq_data *d)
542 {
543 struct u300_gpio_port *port = irq_data_get_irq_chip_data(d);
544 struct u300_gpio *gpio = port->gpio;
545 int offset = (port->number << 3) + d->hwirq;
546 u32 val;
547 unsigned long flags;
548
549 local_irq_save(flags);
550 val = readl(U300_PIN_REG(offset, ien));
551 writel(val & ~U300_PIN_BIT(offset), U300_PIN_REG(offset, ien));
552 local_irq_restore(flags);
553 }
554
555 static struct irq_chip u300_gpio_irqchip = {
556 .name = "u300-gpio-irqchip",
557 .irq_enable = u300_gpio_irq_enable,
558 .irq_disable = u300_gpio_irq_disable,
559 .irq_set_type = u300_gpio_irq_type,
560
561 };
562
563 static void u300_gpio_irq_handler(unsigned irq, struct irq_desc *desc)
564 {
565 struct u300_gpio_port *port = irq_get_handler_data(irq);
566 struct u300_gpio *gpio = port->gpio;
567 int pinoffset = port->number << 3; /* get the right stride */
568 unsigned long val;
569
570 desc->irq_data.chip->irq_ack(&desc->irq_data);
571 /* Read event register */
572 val = readl(U300_PIN_REG(pinoffset, iev));
573 /* Mask relevant bits */
574 val &= 0xFFU; /* 8 bits per port */
575 /* ACK IRQ (clear event) */
576 writel(val, U300_PIN_REG(pinoffset, iev));
577
578 /* Call IRQ handler */
579 if (val != 0) {
580 int irqoffset;
581
582 for_each_set_bit(irqoffset, &val, U300_GPIO_PINS_PER_PORT) {
583 int pin_irq = irq_find_mapping(port->domain, irqoffset);
584 int offset = pinoffset + irqoffset;
585
586 dev_dbg(gpio->dev, "GPIO IRQ %d on pin %d\n",
587 pin_irq, offset);
588 generic_handle_irq(pin_irq);
589 /*
590 * Triggering IRQ on both rising and falling edge
591 * needs mockery
592 */
593 if (port->toggle_edge_mode & U300_PIN_BIT(offset))
594 u300_toggle_trigger(gpio, offset);
595 }
596 }
597
598 desc->irq_data.chip->irq_unmask(&desc->irq_data);
599 }
600
601 static void __init u300_gpio_init_pin(struct u300_gpio *gpio,
602 int offset,
603 const struct u300_gpio_confdata *conf)
604 {
605 /* Set mode: input or output */
606 if (conf->output) {
607 u300_gpio_direction_output(&gpio->chip, offset, conf->outval);
608
609 /* Deactivate bias mode for output */
610 u300_gpio_config_set(&gpio->chip, offset,
611 PIN_CONFIG_BIAS_HIGH_IMPEDANCE);
612
613 /* Set drive mode for output */
614 u300_gpio_config_set(&gpio->chip, offset,
615 PIN_CONFIG_DRIVE_PUSH_PULL);
616
617 dev_dbg(gpio->dev, "set up pin %d as output, value: %d\n",
618 offset, conf->outval);
619 } else {
620 u300_gpio_direction_input(&gpio->chip, offset);
621
622 /* Always set output low on input pins */
623 u300_gpio_set(&gpio->chip, offset, 0);
624
625 /* Set bias mode for input */
626 u300_gpio_config_set(&gpio->chip, offset, conf->bias_mode);
627
628 dev_dbg(gpio->dev, "set up pin %d as input, bias: %04x\n",
629 offset, conf->bias_mode);
630 }
631 }
632
633 static void __init u300_gpio_init_coh901571(struct u300_gpio *gpio,
634 struct u300_gpio_platform *plat)
635 {
636 int i, j;
637
638 /* Write default config and values to all pins */
639 for (i = 0; i < plat->ports; i++) {
640 for (j = 0; j < 8; j++) {
641 const struct u300_gpio_confdata *conf;
642 int offset = (i*8) + j;
643
644 conf = &bs335_gpio_config[i][j];
645 u300_gpio_init_pin(gpio, offset, conf);
646 }
647 }
648 }
649
650 static inline void u300_gpio_free_ports(struct u300_gpio *gpio)
651 {
652 struct u300_gpio_port *port;
653 struct list_head *p, *n;
654
655 list_for_each_safe(p, n, &gpio->port_list) {
656 port = list_entry(p, struct u300_gpio_port, node);
657 list_del(&port->node);
658 if (port->domain)
659 irq_domain_remove(port->domain);
660 kfree(port);
661 }
662 }
663
664 /*
665 * Here we map a GPIO in the local gpio_chip pin space to a pin in
666 * the local pinctrl pin space. The pin controller used is
667 * pinctrl-u300.
668 */
669 struct coh901_pinpair {
670 unsigned int offset;
671 unsigned int pin_base;
672 };
673
674 #define COH901_PINRANGE(a, b) { .offset = a, .pin_base = b }
675
676 static struct coh901_pinpair coh901_pintable[] = {
677 COH901_PINRANGE(10, 426),
678 COH901_PINRANGE(11, 180),
679 COH901_PINRANGE(12, 165), /* MS/MMC card insertion */
680 COH901_PINRANGE(13, 179),
681 COH901_PINRANGE(14, 178),
682 COH901_PINRANGE(16, 194),
683 COH901_PINRANGE(17, 193),
684 COH901_PINRANGE(18, 192),
685 COH901_PINRANGE(19, 191),
686 COH901_PINRANGE(20, 186),
687 COH901_PINRANGE(21, 185),
688 COH901_PINRANGE(22, 184),
689 COH901_PINRANGE(23, 183),
690 COH901_PINRANGE(24, 182),
691 COH901_PINRANGE(25, 181),
692 };
693
694 static int __init u300_gpio_probe(struct platform_device *pdev)
695 {
696 struct u300_gpio_platform *plat = dev_get_platdata(&pdev->dev);
697 struct u300_gpio *gpio;
698 struct resource *memres;
699 int err = 0;
700 int portno;
701 u32 val;
702 u32 ifr;
703 int i;
704
705 gpio = devm_kzalloc(&pdev->dev, sizeof(struct u300_gpio), GFP_KERNEL);
706 if (gpio == NULL)
707 return -ENOMEM;
708
709 gpio->chip = u300_gpio_chip;
710 gpio->chip.ngpio = plat->ports * U300_GPIO_PINS_PER_PORT;
711 gpio->chip.dev = &pdev->dev;
712 gpio->chip.base = plat->gpio_base;
713 gpio->dev = &pdev->dev;
714
715 memres = platform_get_resource(pdev, IORESOURCE_MEM, 0);
716 gpio->base = devm_ioremap_resource(&pdev->dev, memres);
717 if (IS_ERR(gpio->base))
718 return PTR_ERR(gpio->base);
719
720 gpio->clk = devm_clk_get(gpio->dev, NULL);
721 if (IS_ERR(gpio->clk)) {
722 err = PTR_ERR(gpio->clk);
723 dev_err(gpio->dev, "could not get GPIO clock\n");
724 return err;
725 }
726
727 err = clk_prepare_enable(gpio->clk);
728 if (err) {
729 dev_err(gpio->dev, "could not enable GPIO clock\n");
730 return err;
731 }
732
733 dev_info(gpio->dev,
734 "initializing GPIO Controller COH 901 571/3\n");
735 gpio->stride = U300_GPIO_PORT_STRIDE;
736 gpio->pcr = U300_GPIO_PXPCR;
737 gpio->dor = U300_GPIO_PXPDOR;
738 gpio->dir = U300_GPIO_PXPDIR;
739 gpio->per = U300_GPIO_PXPER;
740 gpio->icr = U300_GPIO_PXICR;
741 gpio->ien = U300_GPIO_PXIEN;
742 gpio->iev = U300_GPIO_PXIEV;
743 ifr = U300_GPIO_PXIFR;
744
745 val = readl(gpio->base + U300_GPIO_CR);
746 dev_info(gpio->dev, "COH901571/3 block version: %d, " \
747 "number of cores: %d totalling %d pins\n",
748 ((val & 0x000001FC) >> 2),
749 ((val & 0x0000FE00) >> 9),
750 ((val & 0x0000FE00) >> 9) * 8);
751 writel(U300_GPIO_CR_BLOCK_CLKRQ_ENABLE,
752 gpio->base + U300_GPIO_CR);
753 u300_gpio_init_coh901571(gpio, plat);
754
755 /* Add each port with its IRQ separately */
756 INIT_LIST_HEAD(&gpio->port_list);
757 for (portno = 0 ; portno < plat->ports; portno++) {
758 struct u300_gpio_port *port =
759 kmalloc(sizeof(struct u300_gpio_port), GFP_KERNEL);
760
761 if (!port) {
762 dev_err(gpio->dev, "out of memory\n");
763 err = -ENOMEM;
764 goto err_no_port;
765 }
766
767 snprintf(port->name, 8, "gpio%d", portno);
768 port->number = portno;
769 port->gpio = gpio;
770
771 port->irq = platform_get_irq_byname(pdev,
772 port->name);
773
774 dev_dbg(gpio->dev, "register IRQ %d for port %s\n", port->irq,
775 port->name);
776
777 port->domain = irq_domain_add_linear(pdev->dev.of_node,
778 U300_GPIO_PINS_PER_PORT,
779 &irq_domain_simple_ops,
780 port);
781 if (!port->domain) {
782 err = -ENOMEM;
783 goto err_no_domain;
784 }
785
786 irq_set_chained_handler(port->irq, u300_gpio_irq_handler);
787 irq_set_handler_data(port->irq, port);
788
789 /* For each GPIO pin set the unique IRQ handler */
790 for (i = 0; i < U300_GPIO_PINS_PER_PORT; i++) {
791 int irqno = irq_create_mapping(port->domain, i);
792
793 dev_dbg(gpio->dev, "GPIO%d on port %s gets IRQ %d\n",
794 gpio->chip.base + (port->number << 3) + i,
795 port->name, irqno);
796 irq_set_chip_and_handler(irqno, &u300_gpio_irqchip,
797 handle_simple_irq);
798 set_irq_flags(irqno, IRQF_VALID);
799 irq_set_chip_data(irqno, port);
800 }
801
802 /* Turns off irq force (test register) for this port */
803 writel(0x0, gpio->base + portno * gpio->stride + ifr);
804
805 list_add_tail(&port->node, &gpio->port_list);
806 }
807 dev_dbg(gpio->dev, "initialized %d GPIO ports\n", portno);
808
809 err = gpiochip_add(&gpio->chip);
810 if (err) {
811 dev_err(gpio->dev, "unable to add gpiochip: %d\n", err);
812 goto err_no_chip;
813 }
814
815 /*
816 * Add pinctrl pin ranges, the pin controller must be registered
817 * at this point
818 */
819 for (i = 0; i < ARRAY_SIZE(coh901_pintable); i++) {
820 struct coh901_pinpair *p = &coh901_pintable[i];
821
822 err = gpiochip_add_pin_range(&gpio->chip, "pinctrl-u300",
823 p->offset, p->pin_base, 1);
824 if (err)
825 goto err_no_range;
826 }
827
828 platform_set_drvdata(pdev, gpio);
829
830 return 0;
831
832 err_no_range:
833 if (gpiochip_remove(&gpio->chip))
834 dev_err(&pdev->dev, "failed to remove gpio chip\n");
835 err_no_chip:
836 err_no_domain:
837 err_no_port:
838 u300_gpio_free_ports(gpio);
839 clk_disable_unprepare(gpio->clk);
840 dev_err(&pdev->dev, "module ERROR:%d\n", err);
841 return err;
842 }
843
844 static int __exit u300_gpio_remove(struct platform_device *pdev)
845 {
846 struct u300_gpio *gpio = platform_get_drvdata(pdev);
847 int err;
848
849 /* Turn off the GPIO block */
850 writel(0x00000000U, gpio->base + U300_GPIO_CR);
851
852 err = gpiochip_remove(&gpio->chip);
853 if (err < 0) {
854 dev_err(gpio->dev, "unable to remove gpiochip: %d\n", err);
855 return err;
856 }
857 u300_gpio_free_ports(gpio);
858 clk_disable_unprepare(gpio->clk);
859 platform_set_drvdata(pdev, NULL);
860 return 0;
861 }
862
863 static struct platform_driver u300_gpio_driver = {
864 .driver = {
865 .name = "u300-gpio",
866 },
867 .remove = __exit_p(u300_gpio_remove),
868 };
869
870 static int __init u300_gpio_init(void)
871 {
872 return platform_driver_probe(&u300_gpio_driver, u300_gpio_probe);
873 }
874
875 static void __exit u300_gpio_exit(void)
876 {
877 platform_driver_unregister(&u300_gpio_driver);
878 }
879
880 arch_initcall(u300_gpio_init);
881 module_exit(u300_gpio_exit);
882
883 MODULE_AUTHOR("Linus Walleij <linus.walleij@stericsson.com>");
884 MODULE_DESCRIPTION("ST-Ericsson AB COH 901 335/COH 901 571/3 GPIO driver");
885 MODULE_LICENSE("GPL");