gpio-tb10x.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /* Abilis Systems MODULE DESCRIPTION
  2. *
  3. * Copyright (C) Abilis Systems 2013
  4. *
  5. * Authors: Sascha Leuenberger <sascha.leuenberger@abilis.com>
  6. * Christian Ruppert <christian.ruppert@abilis.com>
  7. *
  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.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <linux/kernel.h>
  22. #include <linux/module.h>
  23. #include <linux/platform_device.h>
  24. #include <linux/gpio/driver.h>
  25. #include <linux/slab.h>
  26. #include <linux/irq.h>
  27. #include <linux/irqdomain.h>
  28. #include <linux/interrupt.h>
  29. #include <linux/io.h>
  30. #include <linux/of.h>
  31. #include <linux/of_platform.h>
  32. #include <linux/spinlock.h>
  33. #include <linux/bitops.h>
  34. #include <linux/pinctrl/consumer.h>
  35. #define TB10X_GPIO_DIR_IN (0x00000000)
  36. #define TB10X_GPIO_DIR_OUT (0x00000001)
  37. #define OFFSET_TO_REG_DDR (0x00)
  38. #define OFFSET_TO_REG_DATA (0x04)
  39. #define OFFSET_TO_REG_INT_EN (0x08)
  40. #define OFFSET_TO_REG_CHANGE (0x0C)
  41. #define OFFSET_TO_REG_WRMASK (0x10)
  42. #define OFFSET_TO_REG_INT_TYPE (0x14)
  43. /**
  44. * @base: register base address
  45. * @domain: IRQ domain of GPIO generated interrupts managed by this controller
  46. * @irq: Interrupt line of parent interrupt controller
  47. * @gc: gpio_chip structure associated to this GPIO controller
  48. */
  49. struct tb10x_gpio {
  50. void __iomem *base;
  51. struct irq_domain *domain;
  52. int irq;
  53. struct gpio_chip gc;
  54. };
  55. static inline u32 tb10x_reg_read(struct tb10x_gpio *gpio, unsigned int offs)
  56. {
  57. return ioread32(gpio->base + offs);
  58. }
  59. static inline void tb10x_reg_write(struct tb10x_gpio *gpio, unsigned int offs,
  60. u32 val)
  61. {
  62. iowrite32(val, gpio->base + offs);
  63. }
  64. static inline void tb10x_set_bits(struct tb10x_gpio *gpio, unsigned int offs,
  65. u32 mask, u32 val)
  66. {
  67. u32 r;
  68. unsigned long flags;
  69. spin_lock_irqsave(&gpio->gc.bgpio_lock, flags);
  70. r = tb10x_reg_read(gpio, offs);
  71. r = (r & ~mask) | (val & mask);
  72. tb10x_reg_write(gpio, offs, r);
  73. spin_unlock_irqrestore(&gpio->gc.bgpio_lock, flags);
  74. }
  75. static int tb10x_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
  76. {
  77. struct tb10x_gpio *tb10x_gpio = gpiochip_get_data(chip);
  78. return irq_create_mapping(tb10x_gpio->domain, offset);
  79. }
  80. static int tb10x_gpio_irq_set_type(struct irq_data *data, unsigned int type)
  81. {
  82. if ((type & IRQF_TRIGGER_MASK) != IRQ_TYPE_EDGE_BOTH) {
  83. pr_err("Only (both) edge triggered interrupts supported.\n");
  84. return -EINVAL;
  85. }
  86. irqd_set_trigger_type(data, type);
  87. return IRQ_SET_MASK_OK;
  88. }
  89. static irqreturn_t tb10x_gpio_irq_cascade(int irq, void *data)
  90. {
  91. struct tb10x_gpio *tb10x_gpio = data;
  92. u32 r = tb10x_reg_read(tb10x_gpio, OFFSET_TO_REG_CHANGE);
  93. u32 m = tb10x_reg_read(tb10x_gpio, OFFSET_TO_REG_INT_EN);
  94. const unsigned long bits = r & m;
  95. int i;
  96. for_each_set_bit(i, &bits, 32)
  97. generic_handle_irq(irq_find_mapping(tb10x_gpio->domain, i));
  98. return IRQ_HANDLED;
  99. }
  100. static int tb10x_gpio_probe(struct platform_device *pdev)
  101. {
  102. struct tb10x_gpio *tb10x_gpio;
  103. struct resource *mem;
  104. struct device *dev = &pdev->dev;
  105. struct device_node *np = dev->of_node;
  106. int ret = -EBUSY;
  107. u32 ngpio;
  108. if (!np)
  109. return -EINVAL;
  110. if (of_property_read_u32(np, "abilis,ngpio", &ngpio))
  111. return -EINVAL;
  112. tb10x_gpio = devm_kzalloc(dev, sizeof(*tb10x_gpio), GFP_KERNEL);
  113. if (tb10x_gpio == NULL)
  114. return -ENOMEM;
  115. mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  116. tb10x_gpio->base = devm_ioremap_resource(dev, mem);
  117. if (IS_ERR(tb10x_gpio->base))
  118. return PTR_ERR(tb10x_gpio->base);
  119. tb10x_gpio->gc.label =
  120. devm_kasprintf(dev, GFP_KERNEL, "%pOF", pdev->dev.of_node);
  121. if (!tb10x_gpio->gc.label)
  122. return -ENOMEM;
  123. /*
  124. * Initialize generic GPIO with one single register for reading and setting
  125. * the lines, no special set or clear registers and a data direction register
  126. * wher 1 means "output".
  127. */
  128. ret = bgpio_init(&tb10x_gpio->gc, dev, 4,
  129. tb10x_gpio->base + OFFSET_TO_REG_DATA,
  130. NULL,
  131. NULL,
  132. tb10x_gpio->base + OFFSET_TO_REG_DDR,
  133. NULL,
  134. 0);
  135. if (ret) {
  136. dev_err(dev, "unable to init generic GPIO\n");
  137. return ret;
  138. }
  139. tb10x_gpio->gc.base = -1;
  140. tb10x_gpio->gc.parent = dev;
  141. tb10x_gpio->gc.owner = THIS_MODULE;
  142. /*
  143. * ngpio is set by bgpio_init() but we override it, this .request()
  144. * callback also overrides the one set up by generic GPIO.
  145. */
  146. tb10x_gpio->gc.ngpio = ngpio;
  147. tb10x_gpio->gc.request = gpiochip_generic_request;
  148. tb10x_gpio->gc.free = gpiochip_generic_free;
  149. ret = devm_gpiochip_add_data(dev, &tb10x_gpio->gc, tb10x_gpio);
  150. if (ret < 0) {
  151. dev_err(dev, "Could not add gpiochip.\n");
  152. return ret;
  153. }
  154. platform_set_drvdata(pdev, tb10x_gpio);
  155. if (of_find_property(np, "interrupt-controller", NULL)) {
  156. struct irq_chip_generic *gc;
  157. ret = platform_get_irq(pdev, 0);
  158. if (ret < 0) {
  159. dev_err(dev, "No interrupt specified.\n");
  160. return ret;
  161. }
  162. tb10x_gpio->gc.to_irq = tb10x_gpio_to_irq;
  163. tb10x_gpio->irq = ret;
  164. ret = devm_request_irq(dev, ret, tb10x_gpio_irq_cascade,
  165. IRQF_TRIGGER_NONE | IRQF_SHARED,
  166. dev_name(dev), tb10x_gpio);
  167. if (ret != 0)
  168. return ret;
  169. tb10x_gpio->domain = irq_domain_add_linear(np,
  170. tb10x_gpio->gc.ngpio,
  171. &irq_generic_chip_ops, NULL);
  172. if (!tb10x_gpio->domain) {
  173. return -ENOMEM;
  174. }
  175. ret = irq_alloc_domain_generic_chips(tb10x_gpio->domain,
  176. tb10x_gpio->gc.ngpio, 1, tb10x_gpio->gc.label,
  177. handle_edge_irq, IRQ_NOREQUEST, IRQ_NOPROBE,
  178. IRQ_GC_INIT_MASK_CACHE);
  179. if (ret)
  180. return ret;
  181. gc = tb10x_gpio->domain->gc->gc[0];
  182. gc->reg_base = tb10x_gpio->base;
  183. gc->chip_types[0].type = IRQ_TYPE_EDGE_BOTH;
  184. gc->chip_types[0].chip.irq_ack = irq_gc_ack_set_bit;
  185. gc->chip_types[0].chip.irq_mask = irq_gc_mask_clr_bit;
  186. gc->chip_types[0].chip.irq_unmask = irq_gc_mask_set_bit;
  187. gc->chip_types[0].chip.irq_set_type = tb10x_gpio_irq_set_type;
  188. gc->chip_types[0].regs.ack = OFFSET_TO_REG_CHANGE;
  189. gc->chip_types[0].regs.mask = OFFSET_TO_REG_INT_EN;
  190. }
  191. return 0;
  192. }
  193. static int tb10x_gpio_remove(struct platform_device *pdev)
  194. {
  195. struct tb10x_gpio *tb10x_gpio = platform_get_drvdata(pdev);
  196. if (tb10x_gpio->gc.to_irq) {
  197. irq_remove_generic_chip(tb10x_gpio->domain->gc->gc[0],
  198. BIT(tb10x_gpio->gc.ngpio) - 1, 0, 0);
  199. kfree(tb10x_gpio->domain->gc);
  200. irq_domain_remove(tb10x_gpio->domain);
  201. }
  202. return 0;
  203. }
  204. static const struct of_device_id tb10x_gpio_dt_ids[] = {
  205. { .compatible = "abilis,tb10x-gpio" },
  206. { }
  207. };
  208. MODULE_DEVICE_TABLE(of, tb10x_gpio_dt_ids);
  209. static struct platform_driver tb10x_gpio_driver = {
  210. .probe = tb10x_gpio_probe,
  211. .remove = tb10x_gpio_remove,
  212. .driver = {
  213. .name = "tb10x-gpio",
  214. .of_match_table = tb10x_gpio_dt_ids,
  215. }
  216. };
  217. module_platform_driver(tb10x_gpio_driver);
  218. MODULE_LICENSE("GPL");
  219. MODULE_DESCRIPTION("tb10x gpio.");
  220. MODULE_VERSION("0.0.1");