clk: sunxi-ng: add support for DE2 CCU
[linux-2.6/btrfs-unstable.git] / drivers / gpio / gpio-tz1090.c
blobca958e0f690937e61a045f82d749413c97aa6661
1 /*
2 * Toumaz Xenif TZ1090 GPIO handling.
4 * Copyright (C) 2008-2013 Imagination Technologies Ltd.
6 * Based on ARM PXA code and others.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/bitops.h>
14 #include <linux/export.h>
15 #include <linux/gpio.h>
16 #include <linux/interrupt.h>
17 #include <linux/io.h>
18 #include <linux/irq.h>
19 #include <linux/irqdomain.h>
20 #include <linux/kernel.h>
21 #include <linux/of_irq.h>
22 #include <linux/pinctrl/consumer.h>
23 #include <linux/platform_device.h>
24 #include <linux/slab.h>
25 #include <linux/syscore_ops.h>
26 #include <asm/global_lock.h>
28 /* Register offsets from bank base address */
29 #define REG_GPIO_DIR 0x00
30 #define REG_GPIO_IRQ_PLRT 0x20
31 #define REG_GPIO_IRQ_TYPE 0x30
32 #define REG_GPIO_IRQ_EN 0x40
33 #define REG_GPIO_IRQ_STS 0x50
34 #define REG_GPIO_BIT_EN 0x60
35 #define REG_GPIO_DIN 0x70
36 #define REG_GPIO_DOUT 0x80
38 /* REG_GPIO_IRQ_PLRT */
39 #define REG_GPIO_IRQ_PLRT_LOW 0
40 #define REG_GPIO_IRQ_PLRT_HIGH 1
42 /* REG_GPIO_IRQ_TYPE */
43 #define REG_GPIO_IRQ_TYPE_LEVEL 0
44 #define REG_GPIO_IRQ_TYPE_EDGE 1
46 /**
47 * struct tz1090_gpio_bank - GPIO bank private data
48 * @chip: Generic GPIO chip for GPIO bank
49 * @domain: IRQ domain for GPIO bank (may be NULL)
50 * @reg: Base of registers, offset for this GPIO bank
51 * @irq: IRQ number for GPIO bank
52 * @label: Debug GPIO bank label, used for storage of chip->label
54 * This is the main private data for a GPIO bank. It encapsulates a gpio_chip,
55 * and the callbacks for the gpio_chip can access the private data with the
56 * to_bank() macro below.
58 struct tz1090_gpio_bank {
59 struct gpio_chip chip;
60 struct irq_domain *domain;
61 void __iomem *reg;
62 int irq;
63 char label[16];
66 /**
67 * struct tz1090_gpio - Overall GPIO device private data
68 * @dev: Device (from platform device)
69 * @reg: Base of GPIO registers
71 * Represents the overall GPIO device. This structure is actually only
72 * temporary, and used during init.
74 struct tz1090_gpio {
75 struct device *dev;
76 void __iomem *reg;
79 /**
80 * struct tz1090_gpio_bank_info - Temporary registration info for GPIO bank
81 * @priv: Overall GPIO device private data
82 * @node: Device tree node specific to this GPIO bank
83 * @index: Index of bank in range 0-2
85 struct tz1090_gpio_bank_info {
86 struct tz1090_gpio *priv;
87 struct device_node *node;
88 unsigned int index;
91 /* Convenience register accessors */
92 static inline void tz1090_gpio_write(struct tz1090_gpio_bank *bank,
93 unsigned int reg_offs, u32 data)
95 iowrite32(data, bank->reg + reg_offs);
98 static inline u32 tz1090_gpio_read(struct tz1090_gpio_bank *bank,
99 unsigned int reg_offs)
101 return ioread32(bank->reg + reg_offs);
104 /* caller must hold LOCK2 */
105 static inline void _tz1090_gpio_clear_bit(struct tz1090_gpio_bank *bank,
106 unsigned int reg_offs,
107 unsigned int offset)
109 u32 value;
111 value = tz1090_gpio_read(bank, reg_offs);
112 value &= ~BIT(offset);
113 tz1090_gpio_write(bank, reg_offs, value);
116 static void tz1090_gpio_clear_bit(struct tz1090_gpio_bank *bank,
117 unsigned int reg_offs,
118 unsigned int offset)
120 int lstat;
122 __global_lock2(lstat);
123 _tz1090_gpio_clear_bit(bank, reg_offs, offset);
124 __global_unlock2(lstat);
127 /* caller must hold LOCK2 */
128 static inline void _tz1090_gpio_set_bit(struct tz1090_gpio_bank *bank,
129 unsigned int reg_offs,
130 unsigned int offset)
132 u32 value;
134 value = tz1090_gpio_read(bank, reg_offs);
135 value |= BIT(offset);
136 tz1090_gpio_write(bank, reg_offs, value);
139 static void tz1090_gpio_set_bit(struct tz1090_gpio_bank *bank,
140 unsigned int reg_offs,
141 unsigned int offset)
143 int lstat;
145 __global_lock2(lstat);
146 _tz1090_gpio_set_bit(bank, reg_offs, offset);
147 __global_unlock2(lstat);
150 /* caller must hold LOCK2 */
151 static inline void _tz1090_gpio_mod_bit(struct tz1090_gpio_bank *bank,
152 unsigned int reg_offs,
153 unsigned int offset,
154 bool val)
156 u32 value;
158 value = tz1090_gpio_read(bank, reg_offs);
159 value &= ~BIT(offset);
160 if (val)
161 value |= BIT(offset);
162 tz1090_gpio_write(bank, reg_offs, value);
165 static void tz1090_gpio_mod_bit(struct tz1090_gpio_bank *bank,
166 unsigned int reg_offs,
167 unsigned int offset,
168 bool val)
170 int lstat;
172 __global_lock2(lstat);
173 _tz1090_gpio_mod_bit(bank, reg_offs, offset, val);
174 __global_unlock2(lstat);
177 static inline int tz1090_gpio_read_bit(struct tz1090_gpio_bank *bank,
178 unsigned int reg_offs,
179 unsigned int offset)
181 return tz1090_gpio_read(bank, reg_offs) & BIT(offset);
184 /* GPIO chip callbacks */
186 static int tz1090_gpio_direction_input(struct gpio_chip *chip,
187 unsigned int offset)
189 struct tz1090_gpio_bank *bank = gpiochip_get_data(chip);
190 tz1090_gpio_set_bit(bank, REG_GPIO_DIR, offset);
192 return 0;
195 static int tz1090_gpio_direction_output(struct gpio_chip *chip,
196 unsigned int offset, int output_value)
198 struct tz1090_gpio_bank *bank = gpiochip_get_data(chip);
199 int lstat;
201 __global_lock2(lstat);
202 _tz1090_gpio_mod_bit(bank, REG_GPIO_DOUT, offset, output_value);
203 _tz1090_gpio_clear_bit(bank, REG_GPIO_DIR, offset);
204 __global_unlock2(lstat);
206 return 0;
210 * Return GPIO level
212 static int tz1090_gpio_get(struct gpio_chip *chip, unsigned int offset)
214 struct tz1090_gpio_bank *bank = gpiochip_get_data(chip);
216 return !!tz1090_gpio_read_bit(bank, REG_GPIO_DIN, offset);
220 * Set output GPIO level
222 static void tz1090_gpio_set(struct gpio_chip *chip, unsigned int offset,
223 int output_value)
225 struct tz1090_gpio_bank *bank = gpiochip_get_data(chip);
227 tz1090_gpio_mod_bit(bank, REG_GPIO_DOUT, offset, output_value);
230 static int tz1090_gpio_request(struct gpio_chip *chip, unsigned int offset)
232 struct tz1090_gpio_bank *bank = gpiochip_get_data(chip);
233 int ret;
235 ret = pinctrl_request_gpio(chip->base + offset);
236 if (ret)
237 return ret;
239 tz1090_gpio_set_bit(bank, REG_GPIO_DIR, offset);
240 tz1090_gpio_set_bit(bank, REG_GPIO_BIT_EN, offset);
242 return 0;
245 static void tz1090_gpio_free(struct gpio_chip *chip, unsigned int offset)
247 struct tz1090_gpio_bank *bank = gpiochip_get_data(chip);
249 pinctrl_free_gpio(chip->base + offset);
251 tz1090_gpio_clear_bit(bank, REG_GPIO_BIT_EN, offset);
254 static int tz1090_gpio_to_irq(struct gpio_chip *chip, unsigned int offset)
256 struct tz1090_gpio_bank *bank = gpiochip_get_data(chip);
258 if (!bank->domain)
259 return -EINVAL;
261 return irq_create_mapping(bank->domain, offset);
264 /* IRQ chip handlers */
266 /* Get TZ1090 GPIO chip from irq data provided to generic IRQ callbacks */
267 static inline struct tz1090_gpio_bank *irqd_to_gpio_bank(struct irq_data *data)
269 return (struct tz1090_gpio_bank *)data->domain->host_data;
272 static void tz1090_gpio_irq_polarity(struct tz1090_gpio_bank *bank,
273 unsigned int offset, unsigned int polarity)
275 tz1090_gpio_mod_bit(bank, REG_GPIO_IRQ_PLRT, offset, polarity);
278 static void tz1090_gpio_irq_type(struct tz1090_gpio_bank *bank,
279 unsigned int offset, unsigned int type)
281 tz1090_gpio_mod_bit(bank, REG_GPIO_IRQ_TYPE, offset, type);
284 /* set polarity to trigger on next edge, whether rising or falling */
285 static void tz1090_gpio_irq_next_edge(struct tz1090_gpio_bank *bank,
286 unsigned int offset)
288 unsigned int value_p, value_i;
289 int lstat;
292 * Set the GPIO's interrupt polarity to the opposite of the current
293 * input value so that the next edge triggers an interrupt.
295 __global_lock2(lstat);
296 value_i = ~tz1090_gpio_read(bank, REG_GPIO_DIN);
297 value_p = tz1090_gpio_read(bank, REG_GPIO_IRQ_PLRT);
298 value_p &= ~BIT(offset);
299 value_p |= value_i & BIT(offset);
300 tz1090_gpio_write(bank, REG_GPIO_IRQ_PLRT, value_p);
301 __global_unlock2(lstat);
304 static unsigned int gpio_startup_irq(struct irq_data *data)
307 * This warning indicates that the type of the irq hasn't been set
308 * before enabling the irq. This would normally be done by passing some
309 * trigger flags to request_irq().
311 WARN(irqd_get_trigger_type(data) == IRQ_TYPE_NONE,
312 "irq type not set before enabling gpio irq %d", data->irq);
314 irq_gc_ack_clr_bit(data);
315 irq_gc_mask_set_bit(data);
316 return 0;
319 static int gpio_set_irq_type(struct irq_data *data, unsigned int flow_type)
321 struct tz1090_gpio_bank *bank = irqd_to_gpio_bank(data);
322 unsigned int type;
323 unsigned int polarity;
325 switch (flow_type) {
326 case IRQ_TYPE_EDGE_BOTH:
327 type = REG_GPIO_IRQ_TYPE_EDGE;
328 polarity = REG_GPIO_IRQ_PLRT_LOW;
329 break;
330 case IRQ_TYPE_EDGE_RISING:
331 type = REG_GPIO_IRQ_TYPE_EDGE;
332 polarity = REG_GPIO_IRQ_PLRT_HIGH;
333 break;
334 case IRQ_TYPE_EDGE_FALLING:
335 type = REG_GPIO_IRQ_TYPE_EDGE;
336 polarity = REG_GPIO_IRQ_PLRT_LOW;
337 break;
338 case IRQ_TYPE_LEVEL_HIGH:
339 type = REG_GPIO_IRQ_TYPE_LEVEL;
340 polarity = REG_GPIO_IRQ_PLRT_HIGH;
341 break;
342 case IRQ_TYPE_LEVEL_LOW:
343 type = REG_GPIO_IRQ_TYPE_LEVEL;
344 polarity = REG_GPIO_IRQ_PLRT_LOW;
345 break;
346 default:
347 return -EINVAL;
350 tz1090_gpio_irq_type(bank, data->hwirq, type);
351 irq_setup_alt_chip(data, flow_type);
353 if (flow_type == IRQ_TYPE_EDGE_BOTH)
354 tz1090_gpio_irq_next_edge(bank, data->hwirq);
355 else
356 tz1090_gpio_irq_polarity(bank, data->hwirq, polarity);
358 return 0;
361 #ifdef CONFIG_SUSPEND
362 static int gpio_set_irq_wake(struct irq_data *data, unsigned int on)
364 struct tz1090_gpio_bank *bank = irqd_to_gpio_bank(data);
366 #ifdef CONFIG_PM_DEBUG
367 pr_info("irq_wake irq%d state:%d\n", data->irq, on);
368 #endif
370 /* wake on gpio block interrupt */
371 return irq_set_irq_wake(bank->irq, on);
373 #else
374 #define gpio_set_irq_wake NULL
375 #endif
377 static void tz1090_gpio_irq_handler(struct irq_desc *desc)
379 irq_hw_number_t hw;
380 unsigned int irq_stat, irq_no;
381 struct tz1090_gpio_bank *bank;
382 struct irq_desc *child_desc;
384 bank = (struct tz1090_gpio_bank *)irq_desc_get_handler_data(desc);
385 irq_stat = tz1090_gpio_read(bank, REG_GPIO_DIR) &
386 tz1090_gpio_read(bank, REG_GPIO_IRQ_STS) &
387 tz1090_gpio_read(bank, REG_GPIO_IRQ_EN) &
388 0x3FFFFFFF; /* 30 bits only */
390 for (hw = 0; irq_stat; irq_stat >>= 1, ++hw) {
391 if (!(irq_stat & 1))
392 continue;
394 irq_no = irq_linear_revmap(bank->domain, hw);
395 child_desc = irq_to_desc(irq_no);
397 /* Toggle edge for pin with both edges triggering enabled */
398 if (irqd_get_trigger_type(&child_desc->irq_data)
399 == IRQ_TYPE_EDGE_BOTH)
400 tz1090_gpio_irq_next_edge(bank, hw);
402 generic_handle_irq_desc(child_desc);
406 static int tz1090_gpio_bank_probe(struct tz1090_gpio_bank_info *info)
408 struct device_node *np = info->node;
409 struct device *dev = info->priv->dev;
410 struct tz1090_gpio_bank *bank;
411 struct irq_chip_generic *gc;
412 int err;
414 bank = devm_kzalloc(dev, sizeof(*bank), GFP_KERNEL);
415 if (!bank) {
416 dev_err(dev, "unable to allocate driver data\n");
417 return -ENOMEM;
420 /* Offset the main registers to the first register in this bank */
421 bank->reg = info->priv->reg + info->index * 4;
423 /* Set up GPIO chip */
424 snprintf(bank->label, sizeof(bank->label), "tz1090-gpio-%u",
425 info->index);
426 bank->chip.label = bank->label;
427 bank->chip.parent = dev;
428 bank->chip.direction_input = tz1090_gpio_direction_input;
429 bank->chip.direction_output = tz1090_gpio_direction_output;
430 bank->chip.get = tz1090_gpio_get;
431 bank->chip.set = tz1090_gpio_set;
432 bank->chip.free = tz1090_gpio_free;
433 bank->chip.request = tz1090_gpio_request;
434 bank->chip.to_irq = tz1090_gpio_to_irq;
435 bank->chip.of_node = np;
437 /* GPIO numbering from 0 */
438 bank->chip.base = info->index * 30;
439 bank->chip.ngpio = 30;
441 /* Add the GPIO bank */
442 gpiochip_add_data(&bank->chip, bank);
444 /* Get the GPIO bank IRQ if provided */
445 bank->irq = irq_of_parse_and_map(np, 0);
447 /* The interrupt is optional (it may be used by another core on chip) */
448 if (!bank->irq) {
449 dev_info(dev, "IRQ not provided for bank %u, IRQs disabled\n",
450 info->index);
451 return 0;
454 dev_info(dev, "Setting up IRQs for GPIO bank %u\n",
455 info->index);
458 * Initialise all interrupts to disabled so we don't get
459 * spurious ones on a dirty boot and hit the BUG_ON in the
460 * handler.
462 tz1090_gpio_write(bank, REG_GPIO_IRQ_EN, 0);
464 /* Add a virtual IRQ for each GPIO */
465 bank->domain = irq_domain_add_linear(np,
466 bank->chip.ngpio,
467 &irq_generic_chip_ops,
468 bank);
470 /* Set up a generic irq chip with 2 chip types (level and edge) */
471 err = irq_alloc_domain_generic_chips(bank->domain, bank->chip.ngpio, 2,
472 bank->label, handle_bad_irq, 0, 0,
473 IRQ_GC_INIT_NESTED_LOCK);
474 if (err) {
475 dev_info(dev,
476 "irq_alloc_domain_generic_chips failed for bank %u, IRQs disabled\n",
477 info->index);
478 irq_domain_remove(bank->domain);
479 return 0;
482 gc = irq_get_domain_generic_chip(bank->domain, 0);
483 gc->reg_base = bank->reg;
485 /* level chip type */
486 gc->chip_types[0].type = IRQ_TYPE_LEVEL_MASK;
487 gc->chip_types[0].handler = handle_level_irq;
488 gc->chip_types[0].regs.ack = REG_GPIO_IRQ_STS;
489 gc->chip_types[0].regs.mask = REG_GPIO_IRQ_EN;
490 gc->chip_types[0].chip.irq_startup = gpio_startup_irq;
491 gc->chip_types[0].chip.irq_ack = irq_gc_ack_clr_bit;
492 gc->chip_types[0].chip.irq_mask = irq_gc_mask_clr_bit;
493 gc->chip_types[0].chip.irq_unmask = irq_gc_mask_set_bit;
494 gc->chip_types[0].chip.irq_set_type = gpio_set_irq_type;
495 gc->chip_types[0].chip.irq_set_wake = gpio_set_irq_wake;
496 gc->chip_types[0].chip.flags = IRQCHIP_MASK_ON_SUSPEND;
498 /* edge chip type */
499 gc->chip_types[1].type = IRQ_TYPE_EDGE_BOTH;
500 gc->chip_types[1].handler = handle_edge_irq;
501 gc->chip_types[1].regs.ack = REG_GPIO_IRQ_STS;
502 gc->chip_types[1].regs.mask = REG_GPIO_IRQ_EN;
503 gc->chip_types[1].chip.irq_startup = gpio_startup_irq;
504 gc->chip_types[1].chip.irq_ack = irq_gc_ack_clr_bit;
505 gc->chip_types[1].chip.irq_mask = irq_gc_mask_clr_bit;
506 gc->chip_types[1].chip.irq_unmask = irq_gc_mask_set_bit;
507 gc->chip_types[1].chip.irq_set_type = gpio_set_irq_type;
508 gc->chip_types[1].chip.irq_set_wake = gpio_set_irq_wake;
509 gc->chip_types[1].chip.flags = IRQCHIP_MASK_ON_SUSPEND;
511 /* Setup chained handler for this GPIO bank */
512 irq_set_chained_handler_and_data(bank->irq, tz1090_gpio_irq_handler,
513 bank);
515 return 0;
518 static void tz1090_gpio_register_banks(struct tz1090_gpio *priv)
520 struct device_node *np = priv->dev->of_node;
521 struct device_node *node;
523 for_each_available_child_of_node(np, node) {
524 struct tz1090_gpio_bank_info info;
525 u32 addr;
526 int ret;
528 ret = of_property_read_u32(node, "reg", &addr);
529 if (ret) {
530 dev_err(priv->dev, "invalid reg on %s\n",
531 node->full_name);
532 continue;
534 if (addr >= 3) {
535 dev_err(priv->dev, "index %u in %s out of range\n",
536 addr, node->full_name);
537 continue;
540 info.index = addr;
541 info.node = of_node_get(node);
542 info.priv = priv;
544 ret = tz1090_gpio_bank_probe(&info);
545 if (ret) {
546 dev_err(priv->dev, "failure registering %s\n",
547 node->full_name);
548 of_node_put(node);
549 continue;
554 static int tz1090_gpio_probe(struct platform_device *pdev)
556 struct device_node *np = pdev->dev.of_node;
557 struct resource *res_regs;
558 struct tz1090_gpio priv;
560 if (!np) {
561 dev_err(&pdev->dev, "must be instantiated via devicetree\n");
562 return -ENOENT;
565 res_regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
566 if (!res_regs) {
567 dev_err(&pdev->dev, "cannot find registers resource\n");
568 return -ENOENT;
571 priv.dev = &pdev->dev;
573 /* Ioremap the registers */
574 priv.reg = devm_ioremap(&pdev->dev, res_regs->start,
575 resource_size(res_regs));
576 if (!priv.reg) {
577 dev_err(&pdev->dev, "unable to ioremap registers\n");
578 return -ENOMEM;
581 /* Look for banks */
582 tz1090_gpio_register_banks(&priv);
584 return 0;
587 static struct of_device_id tz1090_gpio_of_match[] = {
588 { .compatible = "img,tz1090-gpio" },
589 { },
592 static struct platform_driver tz1090_gpio_driver = {
593 .driver = {
594 .name = "tz1090-gpio",
595 .of_match_table = tz1090_gpio_of_match,
597 .probe = tz1090_gpio_probe,
600 static int __init tz1090_gpio_init(void)
602 return platform_driver_register(&tz1090_gpio_driver);
604 subsys_initcall(tz1090_gpio_init);