gpio-altera.c 10 KB

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