gpio-altera.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. /*
  2. * Copyright (C) 2013 Altera Corporation
  3. * Based on gpio-mpc8xxx.c
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <linux/io.h>
  19. #include <linux/of_gpio.h>
  20. #include <linux/platform_device.h>
  21. #define ALTERA_GPIO_MAX_NGPIO 32
  22. #define ALTERA_GPIO_DATA 0x0
  23. #define ALTERA_GPIO_DIR 0x4
  24. #define ALTERA_GPIO_IRQ_MASK 0x8
  25. #define ALTERA_GPIO_EDGE_CAP 0xc
  26. /**
  27. * struct altera_gpio_chip
  28. * @mmchip : memory mapped chip structure.
  29. * @gpio_lock : synchronization lock so that new irq/set/get requests
  30. will be blocked until the current one completes.
  31. * @interrupt_trigger : specifies the hardware configured IRQ trigger type
  32. (rising, falling, both, high)
  33. * @mapped_irq : kernel mapped irq number.
  34. */
  35. struct altera_gpio_chip {
  36. struct of_mm_gpio_chip mmchip;
  37. spinlock_t gpio_lock;
  38. int interrupt_trigger;
  39. int mapped_irq;
  40. };
  41. static struct altera_gpio_chip *to_altera(struct gpio_chip *gc)
  42. {
  43. return container_of(gc, struct altera_gpio_chip, mmchip.gc);
  44. }
  45. static void altera_gpio_irq_unmask(struct irq_data *d)
  46. {
  47. struct altera_gpio_chip *altera_gc;
  48. struct of_mm_gpio_chip *mm_gc;
  49. unsigned long flags;
  50. u32 intmask;
  51. altera_gc = to_altera(irq_data_get_irq_chip_data(d));
  52. mm_gc = &altera_gc->mmchip;
  53. spin_lock_irqsave(&altera_gc->gpio_lock, flags);
  54. intmask = readl(mm_gc->regs + ALTERA_GPIO_IRQ_MASK);
  55. /* Set ALTERA_GPIO_IRQ_MASK bit to unmask */
  56. intmask |= BIT(irqd_to_hwirq(d));
  57. writel(intmask, mm_gc->regs + ALTERA_GPIO_IRQ_MASK);
  58. spin_unlock_irqrestore(&altera_gc->gpio_lock, flags);
  59. }
  60. static void altera_gpio_irq_mask(struct irq_data *d)
  61. {
  62. struct altera_gpio_chip *altera_gc;
  63. struct of_mm_gpio_chip *mm_gc;
  64. unsigned long flags;
  65. u32 intmask;
  66. altera_gc = to_altera(irq_data_get_irq_chip_data(d));
  67. mm_gc = &altera_gc->mmchip;
  68. spin_lock_irqsave(&altera_gc->gpio_lock, flags);
  69. intmask = readl(mm_gc->regs + ALTERA_GPIO_IRQ_MASK);
  70. /* Clear ALTERA_GPIO_IRQ_MASK bit to mask */
  71. intmask &= ~BIT(irqd_to_hwirq(d));
  72. writel(intmask, mm_gc->regs + ALTERA_GPIO_IRQ_MASK);
  73. spin_unlock_irqrestore(&altera_gc->gpio_lock, flags);
  74. }
  75. /**
  76. * This controller's IRQ type is synthesized in hardware, so this function
  77. * just checks if the requested set_type matches the synthesized IRQ type
  78. */
  79. static int altera_gpio_irq_set_type(struct irq_data *d,
  80. unsigned int type)
  81. {
  82. struct altera_gpio_chip *altera_gc;
  83. altera_gc = to_altera(irq_data_get_irq_chip_data(d));
  84. if (type == IRQ_TYPE_NONE) {
  85. irq_set_handler_locked(d, handle_bad_irq);
  86. return 0;
  87. }
  88. if (type == altera_gc->interrupt_trigger) {
  89. if (type == IRQ_TYPE_LEVEL_HIGH)
  90. irq_set_handler_locked(d, handle_level_irq);
  91. else
  92. irq_set_handler_locked(d, handle_simple_irq);
  93. return 0;
  94. }
  95. irq_set_handler_locked(d, handle_bad_irq);
  96. return -EINVAL;
  97. }
  98. static unsigned int altera_gpio_irq_startup(struct irq_data *d)
  99. {
  100. altera_gpio_irq_unmask(d);
  101. return 0;
  102. }
  103. static struct irq_chip altera_irq_chip = {
  104. .name = "altera-gpio",
  105. .irq_mask = altera_gpio_irq_mask,
  106. .irq_unmask = altera_gpio_irq_unmask,
  107. .irq_set_type = altera_gpio_irq_set_type,
  108. .irq_startup = altera_gpio_irq_startup,
  109. .irq_shutdown = altera_gpio_irq_mask,
  110. };
  111. static int altera_gpio_get(struct gpio_chip *gc, unsigned offset)
  112. {
  113. struct of_mm_gpio_chip *mm_gc;
  114. mm_gc = to_of_mm_gpio_chip(gc);
  115. return !!(readl(mm_gc->regs + ALTERA_GPIO_DATA) & BIT(offset));
  116. }
  117. static void altera_gpio_set(struct gpio_chip *gc, unsigned offset, int value)
  118. {
  119. struct of_mm_gpio_chip *mm_gc;
  120. struct altera_gpio_chip *chip;
  121. unsigned long flags;
  122. unsigned int data_reg;
  123. mm_gc = to_of_mm_gpio_chip(gc);
  124. chip = container_of(mm_gc, struct altera_gpio_chip, mmchip);
  125. spin_lock_irqsave(&chip->gpio_lock, flags);
  126. data_reg = readl(mm_gc->regs + ALTERA_GPIO_DATA);
  127. if (value)
  128. data_reg |= BIT(offset);
  129. else
  130. data_reg &= ~BIT(offset);
  131. writel(data_reg, mm_gc->regs + ALTERA_GPIO_DATA);
  132. spin_unlock_irqrestore(&chip->gpio_lock, flags);
  133. }
  134. static int altera_gpio_direction_input(struct gpio_chip *gc, unsigned offset)
  135. {
  136. struct of_mm_gpio_chip *mm_gc;
  137. struct altera_gpio_chip *chip;
  138. unsigned long flags;
  139. unsigned int gpio_ddr;
  140. mm_gc = to_of_mm_gpio_chip(gc);
  141. chip = container_of(mm_gc, struct altera_gpio_chip, mmchip);
  142. spin_lock_irqsave(&chip->gpio_lock, flags);
  143. /* Set pin as input, assumes software controlled IP */
  144. gpio_ddr = readl(mm_gc->regs + ALTERA_GPIO_DIR);
  145. gpio_ddr &= ~BIT(offset);
  146. writel(gpio_ddr, mm_gc->regs + ALTERA_GPIO_DIR);
  147. spin_unlock_irqrestore(&chip->gpio_lock, flags);
  148. return 0;
  149. }
  150. static int altera_gpio_direction_output(struct gpio_chip *gc,
  151. unsigned offset, int value)
  152. {
  153. struct of_mm_gpio_chip *mm_gc;
  154. struct altera_gpio_chip *chip;
  155. unsigned long flags;
  156. unsigned int data_reg, gpio_ddr;
  157. mm_gc = to_of_mm_gpio_chip(gc);
  158. chip = container_of(mm_gc, struct altera_gpio_chip, mmchip);
  159. spin_lock_irqsave(&chip->gpio_lock, flags);
  160. /* Sets the GPIO value */
  161. data_reg = readl(mm_gc->regs + ALTERA_GPIO_DATA);
  162. if (value)
  163. data_reg |= BIT(offset);
  164. else
  165. data_reg &= ~BIT(offset);
  166. writel(data_reg, mm_gc->regs + ALTERA_GPIO_DATA);
  167. /* Set pin as output, assumes software controlled IP */
  168. gpio_ddr = readl(mm_gc->regs + ALTERA_GPIO_DIR);
  169. gpio_ddr |= BIT(offset);
  170. writel(gpio_ddr, mm_gc->regs + ALTERA_GPIO_DIR);
  171. spin_unlock_irqrestore(&chip->gpio_lock, flags);
  172. return 0;
  173. }
  174. static void altera_gpio_irq_edge_handler(struct irq_desc *desc)
  175. {
  176. struct altera_gpio_chip *altera_gc;
  177. struct irq_chip *chip;
  178. struct of_mm_gpio_chip *mm_gc;
  179. struct irq_domain *irqdomain;
  180. unsigned long status;
  181. int i;
  182. altera_gc = to_altera(irq_desc_get_handler_data(desc));
  183. chip = irq_desc_get_chip(desc);
  184. mm_gc = &altera_gc->mmchip;
  185. irqdomain = altera_gc->mmchip.gc.irqdomain;
  186. chained_irq_enter(chip, desc);
  187. while ((status =
  188. (readl(mm_gc->regs + ALTERA_GPIO_EDGE_CAP) &
  189. readl(mm_gc->regs + ALTERA_GPIO_IRQ_MASK)))) {
  190. writel(status, mm_gc->regs + ALTERA_GPIO_EDGE_CAP);
  191. for_each_set_bit(i, &status, mm_gc->gc.ngpio) {
  192. generic_handle_irq(irq_find_mapping(irqdomain, i));
  193. }
  194. }
  195. chained_irq_exit(chip, desc);
  196. }
  197. static void altera_gpio_irq_leveL_high_handler(struct irq_desc *desc)
  198. {
  199. struct altera_gpio_chip *altera_gc;
  200. struct irq_chip *chip;
  201. struct of_mm_gpio_chip *mm_gc;
  202. struct irq_domain *irqdomain;
  203. unsigned long status;
  204. int i;
  205. altera_gc = to_altera(irq_desc_get_handler_data(desc));
  206. chip = irq_desc_get_chip(desc);
  207. mm_gc = &altera_gc->mmchip;
  208. irqdomain = altera_gc->mmchip.gc.irqdomain;
  209. chained_irq_enter(chip, desc);
  210. status = readl(mm_gc->regs + ALTERA_GPIO_DATA);
  211. status &= readl(mm_gc->regs + ALTERA_GPIO_IRQ_MASK);
  212. for_each_set_bit(i, &status, mm_gc->gc.ngpio) {
  213. generic_handle_irq(irq_find_mapping(irqdomain, i));
  214. }
  215. chained_irq_exit(chip, desc);
  216. }
  217. static int altera_gpio_probe(struct platform_device *pdev)
  218. {
  219. struct device_node *node = pdev->dev.of_node;
  220. int reg, ret;
  221. struct altera_gpio_chip *altera_gc;
  222. altera_gc = devm_kzalloc(&pdev->dev, sizeof(*altera_gc), GFP_KERNEL);
  223. if (!altera_gc)
  224. return -ENOMEM;
  225. spin_lock_init(&altera_gc->gpio_lock);
  226. if (of_property_read_u32(node, "altr,ngpio", &reg))
  227. /* By default assume maximum ngpio */
  228. altera_gc->mmchip.gc.ngpio = ALTERA_GPIO_MAX_NGPIO;
  229. else
  230. altera_gc->mmchip.gc.ngpio = reg;
  231. if (altera_gc->mmchip.gc.ngpio > ALTERA_GPIO_MAX_NGPIO) {
  232. dev_warn(&pdev->dev,
  233. "ngpio is greater than %d, defaulting to %d\n",
  234. ALTERA_GPIO_MAX_NGPIO, ALTERA_GPIO_MAX_NGPIO);
  235. altera_gc->mmchip.gc.ngpio = ALTERA_GPIO_MAX_NGPIO;
  236. }
  237. altera_gc->mmchip.gc.direction_input = altera_gpio_direction_input;
  238. altera_gc->mmchip.gc.direction_output = altera_gpio_direction_output;
  239. altera_gc->mmchip.gc.get = altera_gpio_get;
  240. altera_gc->mmchip.gc.set = altera_gpio_set;
  241. altera_gc->mmchip.gc.owner = THIS_MODULE;
  242. altera_gc->mmchip.gc.dev = &pdev->dev;
  243. ret = of_mm_gpiochip_add(node, &altera_gc->mmchip);
  244. if (ret) {
  245. dev_err(&pdev->dev, "Failed adding memory mapped gpiochip\n");
  246. return ret;
  247. }
  248. platform_set_drvdata(pdev, altera_gc);
  249. altera_gc->mapped_irq = platform_get_irq(pdev, 0);
  250. if (altera_gc->mapped_irq < 0)
  251. goto skip_irq;
  252. if (of_property_read_u32(node, "altr,interrupt-type", &reg)) {
  253. ret = -EINVAL;
  254. dev_err(&pdev->dev,
  255. "altr,interrupt-type value not set in device tree\n");
  256. goto teardown;
  257. }
  258. altera_gc->interrupt_trigger = reg;
  259. ret = gpiochip_irqchip_add(&altera_gc->mmchip.gc, &altera_irq_chip, 0,
  260. handle_bad_irq, IRQ_TYPE_NONE);
  261. if (ret) {
  262. dev_info(&pdev->dev, "could not add irqchip\n");
  263. return ret;
  264. }
  265. gpiochip_set_chained_irqchip(&altera_gc->mmchip.gc,
  266. &altera_irq_chip,
  267. altera_gc->mapped_irq,
  268. altera_gc->interrupt_trigger == IRQ_TYPE_LEVEL_HIGH ?
  269. altera_gpio_irq_leveL_high_handler :
  270. altera_gpio_irq_edge_handler);
  271. skip_irq:
  272. return 0;
  273. teardown:
  274. pr_err("%s: registration failed with status %d\n",
  275. node->full_name, ret);
  276. return ret;
  277. }
  278. static int altera_gpio_remove(struct platform_device *pdev)
  279. {
  280. struct altera_gpio_chip *altera_gc = platform_get_drvdata(pdev);
  281. of_mm_gpiochip_remove(&altera_gc->mmchip);
  282. return 0;
  283. }
  284. static const struct of_device_id altera_gpio_of_match[] = {
  285. { .compatible = "altr,pio-1.0", },
  286. {},
  287. };
  288. MODULE_DEVICE_TABLE(of, altera_gpio_of_match);
  289. static struct platform_driver altera_gpio_driver = {
  290. .driver = {
  291. .name = "altera_gpio",
  292. .of_match_table = of_match_ptr(altera_gpio_of_match),
  293. },
  294. .probe = altera_gpio_probe,
  295. .remove = altera_gpio_remove,
  296. };
  297. static int __init altera_gpio_init(void)
  298. {
  299. return platform_driver_register(&altera_gpio_driver);
  300. }
  301. subsys_initcall(altera_gpio_init);
  302. static void __exit altera_gpio_exit(void)
  303. {
  304. platform_driver_unregister(&altera_gpio_driver);
  305. }
  306. module_exit(altera_gpio_exit);
  307. MODULE_AUTHOR("Tien Hock Loh <thloh@altera.com>");
  308. MODULE_DESCRIPTION("Altera GPIO driver");
  309. MODULE_LICENSE("GPL");