gpio-tb10x.c 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  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.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/of_gpio.h>
  33. #include <linux/spinlock.h>
  34. #include <linux/bitops.h>
  35. #include <linux/pinctrl/consumer.h>
  36. #define TB10X_GPIO_DIR_IN (0x00000000)
  37. #define TB10X_GPIO_DIR_OUT (0x00000001)
  38. #define OFFSET_TO_REG_DDR (0x00)
  39. #define OFFSET_TO_REG_DATA (0x04)
  40. #define OFFSET_TO_REG_INT_EN (0x08)
  41. #define OFFSET_TO_REG_CHANGE (0x0C)
  42. #define OFFSET_TO_REG_WRMASK (0x10)
  43. #define OFFSET_TO_REG_INT_TYPE (0x14)
  44. /**
  45. * @spinlock: used for atomic read/modify/write of registers
  46. * @base: register base address
  47. * @domain: IRQ domain of GPIO generated interrupts managed by this controller
  48. * @irq: Interrupt line of parent interrupt controller
  49. * @gc: gpio_chip structure associated to this GPIO controller
  50. */
  51. struct tb10x_gpio {
  52. spinlock_t spinlock;
  53. void __iomem *base;
  54. struct irq_domain *domain;
  55. int irq;
  56. struct gpio_chip gc;
  57. };
  58. static inline u32 tb10x_reg_read(struct tb10x_gpio *gpio, unsigned int offs)
  59. {
  60. return ioread32(gpio->base + offs);
  61. }
  62. static inline void tb10x_reg_write(struct tb10x_gpio *gpio, unsigned int offs,
  63. u32 val)
  64. {
  65. iowrite32(val, gpio->base + offs);
  66. }
  67. static inline void tb10x_set_bits(struct tb10x_gpio *gpio, unsigned int offs,
  68. u32 mask, u32 val)
  69. {
  70. u32 r;
  71. unsigned long flags;
  72. spin_lock_irqsave(&gpio->spinlock, flags);
  73. r = tb10x_reg_read(gpio, offs);
  74. r = (r & ~mask) | (val & mask);
  75. tb10x_reg_write(gpio, offs, r);
  76. spin_unlock_irqrestore(&gpio->spinlock, flags);
  77. }
  78. static inline struct tb10x_gpio *to_tb10x_gpio(struct gpio_chip *chip)
  79. {
  80. return container_of(chip, struct tb10x_gpio, gc);
  81. }
  82. static int tb10x_gpio_direction_in(struct gpio_chip *chip, unsigned offset)
  83. {
  84. struct tb10x_gpio *tb10x_gpio = to_tb10x_gpio(chip);
  85. int mask = BIT(offset);
  86. int val = TB10X_GPIO_DIR_IN << offset;
  87. tb10x_set_bits(tb10x_gpio, OFFSET_TO_REG_DDR, mask, val);
  88. return 0;
  89. }
  90. static int tb10x_gpio_get(struct gpio_chip *chip, unsigned offset)
  91. {
  92. struct tb10x_gpio *tb10x_gpio = to_tb10x_gpio(chip);
  93. int val;
  94. val = tb10x_reg_read(tb10x_gpio, OFFSET_TO_REG_DATA);
  95. if (val & BIT(offset))
  96. return 1;
  97. else
  98. return 0;
  99. }
  100. static void tb10x_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
  101. {
  102. struct tb10x_gpio *tb10x_gpio = to_tb10x_gpio(chip);
  103. int mask = BIT(offset);
  104. int val = value << offset;
  105. tb10x_set_bits(tb10x_gpio, OFFSET_TO_REG_DATA, mask, val);
  106. }
  107. static int tb10x_gpio_direction_out(struct gpio_chip *chip,
  108. unsigned offset, int value)
  109. {
  110. struct tb10x_gpio *tb10x_gpio = to_tb10x_gpio(chip);
  111. int mask = BIT(offset);
  112. int val = TB10X_GPIO_DIR_OUT << offset;
  113. tb10x_set_bits(tb10x_gpio, OFFSET_TO_REG_DDR, mask, val);
  114. return 0;
  115. }
  116. static int tb10x_gpio_request(struct gpio_chip *chip, unsigned offset)
  117. {
  118. return pinctrl_request_gpio(chip->base + offset);
  119. }
  120. static void tb10x_gpio_free(struct gpio_chip *chip, unsigned offset)
  121. {
  122. pinctrl_free_gpio(chip->base + offset);
  123. }
  124. static int tb10x_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
  125. {
  126. struct tb10x_gpio *tb10x_gpio = to_tb10x_gpio(chip);
  127. return irq_create_mapping(tb10x_gpio->domain, offset);
  128. }
  129. static int tb10x_gpio_irq_set_type(struct irq_data *data, unsigned int type)
  130. {
  131. if ((type & IRQF_TRIGGER_MASK) != IRQ_TYPE_EDGE_BOTH) {
  132. pr_err("Only (both) edge triggered interrupts supported.\n");
  133. return -EINVAL;
  134. }
  135. irqd_set_trigger_type(data, type);
  136. return IRQ_SET_MASK_OK;
  137. }
  138. static irqreturn_t tb10x_gpio_irq_cascade(int irq, void *data)
  139. {
  140. struct tb10x_gpio *tb10x_gpio = data;
  141. u32 r = tb10x_reg_read(tb10x_gpio, OFFSET_TO_REG_CHANGE);
  142. u32 m = tb10x_reg_read(tb10x_gpio, OFFSET_TO_REG_INT_EN);
  143. const unsigned long bits = r & m;
  144. int i;
  145. for_each_set_bit(i, &bits, 32)
  146. generic_handle_irq(irq_find_mapping(tb10x_gpio->domain, i));
  147. return IRQ_HANDLED;
  148. }
  149. static int tb10x_gpio_probe(struct platform_device *pdev)
  150. {
  151. struct tb10x_gpio *tb10x_gpio;
  152. struct resource *mem;
  153. struct device_node *dn = pdev->dev.of_node;
  154. int ret = -EBUSY;
  155. u32 ngpio;
  156. if (!dn)
  157. return -EINVAL;
  158. if (of_property_read_u32(dn, "abilis,ngpio", &ngpio))
  159. return -EINVAL;
  160. mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  161. if (!mem) {
  162. dev_err(&pdev->dev, "No memory resource defined.\n");
  163. return -EINVAL;
  164. }
  165. tb10x_gpio = devm_kzalloc(&pdev->dev, sizeof(*tb10x_gpio), GFP_KERNEL);
  166. if (tb10x_gpio == NULL)
  167. return -ENOMEM;
  168. spin_lock_init(&tb10x_gpio->spinlock);
  169. tb10x_gpio->base = devm_ioremap_resource(&pdev->dev, mem);
  170. if (IS_ERR(tb10x_gpio->base))
  171. return PTR_ERR(tb10x_gpio->base);
  172. tb10x_gpio->gc.label = of_node_full_name(dn);
  173. tb10x_gpio->gc.dev = &pdev->dev;
  174. tb10x_gpio->gc.owner = THIS_MODULE;
  175. tb10x_gpio->gc.direction_input = tb10x_gpio_direction_in;
  176. tb10x_gpio->gc.get = tb10x_gpio_get;
  177. tb10x_gpio->gc.direction_output = tb10x_gpio_direction_out;
  178. tb10x_gpio->gc.set = tb10x_gpio_set;
  179. tb10x_gpio->gc.request = tb10x_gpio_request;
  180. tb10x_gpio->gc.free = tb10x_gpio_free;
  181. tb10x_gpio->gc.base = -1;
  182. tb10x_gpio->gc.ngpio = ngpio;
  183. tb10x_gpio->gc.can_sleep = 0;
  184. ret = gpiochip_add(&tb10x_gpio->gc);
  185. if (ret < 0) {
  186. dev_err(&pdev->dev, "Could not add gpiochip.\n");
  187. goto fail_gpiochip_registration;
  188. }
  189. platform_set_drvdata(pdev, tb10x_gpio);
  190. if (of_find_property(dn, "interrupt-controller", NULL)) {
  191. struct irq_chip_generic *gc;
  192. ret = platform_get_irq(pdev, 0);
  193. if (ret < 0) {
  194. dev_err(&pdev->dev, "No interrupt specified.\n");
  195. goto fail_get_irq;
  196. }
  197. tb10x_gpio->gc.to_irq = tb10x_gpio_to_irq;
  198. tb10x_gpio->irq = ret;
  199. ret = devm_request_irq(&pdev->dev, ret, tb10x_gpio_irq_cascade,
  200. IRQF_TRIGGER_NONE | IRQF_SHARED,
  201. dev_name(&pdev->dev), tb10x_gpio);
  202. if (ret != 0)
  203. goto fail_request_irq;
  204. tb10x_gpio->domain = irq_domain_add_linear(dn,
  205. tb10x_gpio->gc.ngpio,
  206. &irq_generic_chip_ops, NULL);
  207. if (!tb10x_gpio->domain) {
  208. ret = -ENOMEM;
  209. goto fail_irq_domain;
  210. }
  211. ret = irq_alloc_domain_generic_chips(tb10x_gpio->domain,
  212. tb10x_gpio->gc.ngpio, 1, tb10x_gpio->gc.label,
  213. handle_edge_irq, IRQ_NOREQUEST, IRQ_NOPROBE,
  214. IRQ_GC_INIT_MASK_CACHE);
  215. if (ret)
  216. goto fail_irq_domain;
  217. gc = tb10x_gpio->domain->gc->gc[0];
  218. gc->reg_base = tb10x_gpio->base;
  219. gc->chip_types[0].type = IRQ_TYPE_EDGE_BOTH;
  220. gc->chip_types[0].chip.irq_ack = irq_gc_ack_set_bit;
  221. gc->chip_types[0].chip.irq_mask = irq_gc_mask_clr_bit;
  222. gc->chip_types[0].chip.irq_unmask = irq_gc_mask_set_bit;
  223. gc->chip_types[0].chip.irq_set_type = tb10x_gpio_irq_set_type;
  224. gc->chip_types[0].regs.ack = OFFSET_TO_REG_CHANGE;
  225. gc->chip_types[0].regs.mask = OFFSET_TO_REG_INT_EN;
  226. }
  227. return 0;
  228. fail_irq_domain:
  229. fail_request_irq:
  230. fail_get_irq:
  231. gpiochip_remove(&tb10x_gpio->gc);
  232. fail_gpiochip_registration:
  233. fail_ioremap:
  234. return ret;
  235. }
  236. static int __exit tb10x_gpio_remove(struct platform_device *pdev)
  237. {
  238. struct tb10x_gpio *tb10x_gpio = platform_get_drvdata(pdev);
  239. int ret;
  240. if (tb10x_gpio->gc.to_irq) {
  241. irq_remove_generic_chip(tb10x_gpio->domain->gc->gc[0],
  242. BIT(tb10x_gpio->gc.ngpio) - 1, 0, 0);
  243. kfree(tb10x_gpio->domain->gc);
  244. irq_domain_remove(tb10x_gpio->domain);
  245. free_irq(tb10x_gpio->irq, tb10x_gpio);
  246. }
  247. ret = gpiochip_remove(&tb10x_gpio->gc);
  248. if (ret)
  249. return ret;
  250. return 0;
  251. }
  252. static const struct of_device_id tb10x_gpio_dt_ids[] = {
  253. { .compatible = "abilis,tb10x-gpio" },
  254. { }
  255. };
  256. MODULE_DEVICE_TABLE(of, tb10x_gpio_dt_ids);
  257. static struct platform_driver tb10x_gpio_driver = {
  258. .probe = tb10x_gpio_probe,
  259. .remove = tb10x_gpio_remove,
  260. .driver = {
  261. .name = "tb10x-gpio",
  262. .of_match_table = of_match_ptr(tb10x_gpio_dt_ids),
  263. .owner = THIS_MODULE,
  264. }
  265. };
  266. module_platform_driver(tb10x_gpio_driver);
  267. MODULE_LICENSE("GPL");
  268. MODULE_DESCRIPTION("tb10x gpio.");
  269. MODULE_VERSION("0.0.1");