gpio.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  1. /*
  2. * Copyright (C) 2009-2010, Lars-Peter Clausen <lars@metafoo.de>
  3. * JZ4740 platform GPIO support
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the
  7. * Free Software Foundation; either version 2 of the License, or (at your
  8. * option) any later version.
  9. *
  10. * You should have received a copy of the GNU General Public License along
  11. * with this program; if not, write to the Free Software Foundation, Inc.,
  12. * 675 Mass Ave, Cambridge, MA 02139, USA.
  13. *
  14. */
  15. #include <linux/kernel.h>
  16. #include <linux/module.h>
  17. #include <linux/init.h>
  18. #include <linux/io.h>
  19. #include <linux/gpio/driver.h>
  20. /* FIXME: needed for gpio_request(), try to remove consumer API from driver */
  21. #include <linux/gpio.h>
  22. #include <linux/delay.h>
  23. #include <linux/interrupt.h>
  24. #include <linux/irqchip/ingenic.h>
  25. #include <linux/bitops.h>
  26. #include <linux/debugfs.h>
  27. #include <linux/seq_file.h>
  28. #include <asm/mach-jz4740/base.h>
  29. #include <asm/mach-jz4740/gpio.h>
  30. #define JZ4740_GPIO_BASE_A (32*0)
  31. #define JZ4740_GPIO_BASE_B (32*1)
  32. #define JZ4740_GPIO_BASE_C (32*2)
  33. #define JZ4740_GPIO_BASE_D (32*3)
  34. #define JZ4740_GPIO_NUM_A 32
  35. #define JZ4740_GPIO_NUM_B 32
  36. #define JZ4740_GPIO_NUM_C 31
  37. #define JZ4740_GPIO_NUM_D 32
  38. #define JZ4740_IRQ_GPIO_BASE_A (JZ4740_IRQ_GPIO(0) + JZ4740_GPIO_BASE_A)
  39. #define JZ4740_IRQ_GPIO_BASE_B (JZ4740_IRQ_GPIO(0) + JZ4740_GPIO_BASE_B)
  40. #define JZ4740_IRQ_GPIO_BASE_C (JZ4740_IRQ_GPIO(0) + JZ4740_GPIO_BASE_C)
  41. #define JZ4740_IRQ_GPIO_BASE_D (JZ4740_IRQ_GPIO(0) + JZ4740_GPIO_BASE_D)
  42. #define JZ_REG_GPIO_PIN 0x00
  43. #define JZ_REG_GPIO_DATA 0x10
  44. #define JZ_REG_GPIO_DATA_SET 0x14
  45. #define JZ_REG_GPIO_DATA_CLEAR 0x18
  46. #define JZ_REG_GPIO_MASK 0x20
  47. #define JZ_REG_GPIO_MASK_SET 0x24
  48. #define JZ_REG_GPIO_MASK_CLEAR 0x28
  49. #define JZ_REG_GPIO_PULL 0x30
  50. #define JZ_REG_GPIO_PULL_SET 0x34
  51. #define JZ_REG_GPIO_PULL_CLEAR 0x38
  52. #define JZ_REG_GPIO_FUNC 0x40
  53. #define JZ_REG_GPIO_FUNC_SET 0x44
  54. #define JZ_REG_GPIO_FUNC_CLEAR 0x48
  55. #define JZ_REG_GPIO_SELECT 0x50
  56. #define JZ_REG_GPIO_SELECT_SET 0x54
  57. #define JZ_REG_GPIO_SELECT_CLEAR 0x58
  58. #define JZ_REG_GPIO_DIRECTION 0x60
  59. #define JZ_REG_GPIO_DIRECTION_SET 0x64
  60. #define JZ_REG_GPIO_DIRECTION_CLEAR 0x68
  61. #define JZ_REG_GPIO_TRIGGER 0x70
  62. #define JZ_REG_GPIO_TRIGGER_SET 0x74
  63. #define JZ_REG_GPIO_TRIGGER_CLEAR 0x78
  64. #define JZ_REG_GPIO_FLAG 0x80
  65. #define JZ_REG_GPIO_FLAG_CLEAR 0x14
  66. #define GPIO_TO_BIT(gpio) BIT(gpio & 0x1f)
  67. #define GPIO_TO_REG(gpio, reg) (gpio_to_jz_gpio_chip(gpio)->base + (reg))
  68. #define CHIP_TO_REG(chip, reg) (gpio_chip_to_jz_gpio_chip(chip)->base + (reg))
  69. struct jz_gpio_chip {
  70. unsigned int irq;
  71. unsigned int irq_base;
  72. uint32_t edge_trigger_both;
  73. void __iomem *base;
  74. struct gpio_chip gpio_chip;
  75. };
  76. static struct jz_gpio_chip jz4740_gpio_chips[];
  77. static inline struct jz_gpio_chip *gpio_to_jz_gpio_chip(unsigned int gpio)
  78. {
  79. return &jz4740_gpio_chips[gpio >> 5];
  80. }
  81. static inline struct jz_gpio_chip *gpio_chip_to_jz_gpio_chip(struct gpio_chip *gc)
  82. {
  83. return gpiochip_get_data(gc);
  84. }
  85. static inline struct jz_gpio_chip *irq_to_jz_gpio_chip(struct irq_data *data)
  86. {
  87. struct irq_chip_generic *gc = irq_data_get_irq_chip_data(data);
  88. return gc->private;
  89. }
  90. static inline void jz_gpio_write_bit(unsigned int gpio, unsigned int reg)
  91. {
  92. writel(GPIO_TO_BIT(gpio), GPIO_TO_REG(gpio, reg));
  93. }
  94. int jz_gpio_set_function(int gpio, enum jz_gpio_function function)
  95. {
  96. if (function == JZ_GPIO_FUNC_NONE) {
  97. jz_gpio_write_bit(gpio, JZ_REG_GPIO_FUNC_CLEAR);
  98. jz_gpio_write_bit(gpio, JZ_REG_GPIO_SELECT_CLEAR);
  99. jz_gpio_write_bit(gpio, JZ_REG_GPIO_TRIGGER_CLEAR);
  100. } else {
  101. jz_gpio_write_bit(gpio, JZ_REG_GPIO_FUNC_SET);
  102. jz_gpio_write_bit(gpio, JZ_REG_GPIO_TRIGGER_CLEAR);
  103. switch (function) {
  104. case JZ_GPIO_FUNC1:
  105. jz_gpio_write_bit(gpio, JZ_REG_GPIO_SELECT_CLEAR);
  106. break;
  107. case JZ_GPIO_FUNC3:
  108. jz_gpio_write_bit(gpio, JZ_REG_GPIO_TRIGGER_SET);
  109. case JZ_GPIO_FUNC2: /* Falltrough */
  110. jz_gpio_write_bit(gpio, JZ_REG_GPIO_SELECT_SET);
  111. break;
  112. default:
  113. BUG();
  114. break;
  115. }
  116. }
  117. return 0;
  118. }
  119. EXPORT_SYMBOL_GPL(jz_gpio_set_function);
  120. int jz_gpio_bulk_request(const struct jz_gpio_bulk_request *request, size_t num)
  121. {
  122. size_t i;
  123. int ret;
  124. for (i = 0; i < num; ++i, ++request) {
  125. ret = gpio_request(request->gpio, request->name);
  126. if (ret)
  127. goto err;
  128. jz_gpio_set_function(request->gpio, request->function);
  129. }
  130. return 0;
  131. err:
  132. for (--request; i > 0; --i, --request) {
  133. gpio_free(request->gpio);
  134. jz_gpio_set_function(request->gpio, JZ_GPIO_FUNC_NONE);
  135. }
  136. return ret;
  137. }
  138. EXPORT_SYMBOL_GPL(jz_gpio_bulk_request);
  139. void jz_gpio_bulk_free(const struct jz_gpio_bulk_request *request, size_t num)
  140. {
  141. size_t i;
  142. for (i = 0; i < num; ++i, ++request) {
  143. gpio_free(request->gpio);
  144. jz_gpio_set_function(request->gpio, JZ_GPIO_FUNC_NONE);
  145. }
  146. }
  147. EXPORT_SYMBOL_GPL(jz_gpio_bulk_free);
  148. void jz_gpio_bulk_suspend(const struct jz_gpio_bulk_request *request, size_t num)
  149. {
  150. size_t i;
  151. for (i = 0; i < num; ++i, ++request) {
  152. jz_gpio_set_function(request->gpio, JZ_GPIO_FUNC_NONE);
  153. jz_gpio_write_bit(request->gpio, JZ_REG_GPIO_DIRECTION_CLEAR);
  154. jz_gpio_write_bit(request->gpio, JZ_REG_GPIO_PULL_SET);
  155. }
  156. }
  157. EXPORT_SYMBOL_GPL(jz_gpio_bulk_suspend);
  158. void jz_gpio_bulk_resume(const struct jz_gpio_bulk_request *request, size_t num)
  159. {
  160. size_t i;
  161. for (i = 0; i < num; ++i, ++request)
  162. jz_gpio_set_function(request->gpio, request->function);
  163. }
  164. EXPORT_SYMBOL_GPL(jz_gpio_bulk_resume);
  165. void jz_gpio_enable_pullup(unsigned gpio)
  166. {
  167. jz_gpio_write_bit(gpio, JZ_REG_GPIO_PULL_CLEAR);
  168. }
  169. EXPORT_SYMBOL_GPL(jz_gpio_enable_pullup);
  170. void jz_gpio_disable_pullup(unsigned gpio)
  171. {
  172. jz_gpio_write_bit(gpio, JZ_REG_GPIO_PULL_SET);
  173. }
  174. EXPORT_SYMBOL_GPL(jz_gpio_disable_pullup);
  175. static int jz_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
  176. {
  177. return !!(readl(CHIP_TO_REG(chip, JZ_REG_GPIO_PIN)) & BIT(gpio));
  178. }
  179. static void jz_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value)
  180. {
  181. uint32_t __iomem *reg = CHIP_TO_REG(chip, JZ_REG_GPIO_DATA_SET);
  182. reg += !value;
  183. writel(BIT(gpio), reg);
  184. }
  185. static int jz_gpio_direction_output(struct gpio_chip *chip, unsigned gpio,
  186. int value)
  187. {
  188. writel(BIT(gpio), CHIP_TO_REG(chip, JZ_REG_GPIO_DIRECTION_SET));
  189. jz_gpio_set_value(chip, gpio, value);
  190. return 0;
  191. }
  192. static int jz_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
  193. {
  194. writel(BIT(gpio), CHIP_TO_REG(chip, JZ_REG_GPIO_DIRECTION_CLEAR));
  195. return 0;
  196. }
  197. static int jz_gpio_to_irq(struct gpio_chip *chip, unsigned gpio)
  198. {
  199. struct jz_gpio_chip *jz_gpio = gpiochip_get_data(chip);
  200. return jz_gpio->irq_base + gpio;
  201. }
  202. int jz_gpio_port_direction_input(int port, uint32_t mask)
  203. {
  204. writel(mask, GPIO_TO_REG(port, JZ_REG_GPIO_DIRECTION_CLEAR));
  205. return 0;
  206. }
  207. EXPORT_SYMBOL(jz_gpio_port_direction_input);
  208. int jz_gpio_port_direction_output(int port, uint32_t mask)
  209. {
  210. writel(mask, GPIO_TO_REG(port, JZ_REG_GPIO_DIRECTION_SET));
  211. return 0;
  212. }
  213. EXPORT_SYMBOL(jz_gpio_port_direction_output);
  214. void jz_gpio_port_set_value(int port, uint32_t value, uint32_t mask)
  215. {
  216. writel(~value & mask, GPIO_TO_REG(port, JZ_REG_GPIO_DATA_CLEAR));
  217. writel(value & mask, GPIO_TO_REG(port, JZ_REG_GPIO_DATA_SET));
  218. }
  219. EXPORT_SYMBOL(jz_gpio_port_set_value);
  220. uint32_t jz_gpio_port_get_value(int port, uint32_t mask)
  221. {
  222. uint32_t value = readl(GPIO_TO_REG(port, JZ_REG_GPIO_PIN));
  223. return value & mask;
  224. }
  225. EXPORT_SYMBOL(jz_gpio_port_get_value);
  226. #define IRQ_TO_BIT(irq) BIT((irq - JZ4740_IRQ_GPIO(0)) & 0x1f)
  227. static void jz_gpio_check_trigger_both(struct jz_gpio_chip *chip, unsigned int irq)
  228. {
  229. uint32_t value;
  230. void __iomem *reg;
  231. uint32_t mask = IRQ_TO_BIT(irq);
  232. if (!(chip->edge_trigger_both & mask))
  233. return;
  234. reg = chip->base;
  235. value = readl(chip->base + JZ_REG_GPIO_PIN);
  236. if (value & mask)
  237. reg += JZ_REG_GPIO_DIRECTION_CLEAR;
  238. else
  239. reg += JZ_REG_GPIO_DIRECTION_SET;
  240. writel(mask, reg);
  241. }
  242. static void jz_gpio_irq_demux_handler(struct irq_desc *desc)
  243. {
  244. uint32_t flag;
  245. unsigned int gpio_irq;
  246. struct jz_gpio_chip *chip = irq_desc_get_handler_data(desc);
  247. flag = readl(chip->base + JZ_REG_GPIO_FLAG);
  248. if (!flag)
  249. return;
  250. gpio_irq = chip->irq_base + __fls(flag);
  251. jz_gpio_check_trigger_both(chip, gpio_irq);
  252. generic_handle_irq(gpio_irq);
  253. };
  254. static inline void jz_gpio_set_irq_bit(struct irq_data *data, unsigned int reg)
  255. {
  256. struct jz_gpio_chip *chip = irq_to_jz_gpio_chip(data);
  257. writel(IRQ_TO_BIT(data->irq), chip->base + reg);
  258. }
  259. static void jz_gpio_irq_unmask(struct irq_data *data)
  260. {
  261. struct jz_gpio_chip *chip = irq_to_jz_gpio_chip(data);
  262. jz_gpio_check_trigger_both(chip, data->irq);
  263. irq_gc_unmask_enable_reg(data);
  264. };
  265. /* TODO: Check if function is gpio */
  266. static unsigned int jz_gpio_irq_startup(struct irq_data *data)
  267. {
  268. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_SELECT_SET);
  269. jz_gpio_irq_unmask(data);
  270. return 0;
  271. }
  272. static void jz_gpio_irq_shutdown(struct irq_data *data)
  273. {
  274. irq_gc_mask_disable_reg(data);
  275. /* Set direction to input */
  276. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_CLEAR);
  277. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_SELECT_CLEAR);
  278. }
  279. static int jz_gpio_irq_set_type(struct irq_data *data, unsigned int flow_type)
  280. {
  281. struct jz_gpio_chip *chip = irq_to_jz_gpio_chip(data);
  282. unsigned int irq = data->irq;
  283. if (flow_type == IRQ_TYPE_EDGE_BOTH) {
  284. uint32_t value = readl(chip->base + JZ_REG_GPIO_PIN);
  285. if (value & IRQ_TO_BIT(irq))
  286. flow_type = IRQ_TYPE_EDGE_FALLING;
  287. else
  288. flow_type = IRQ_TYPE_EDGE_RISING;
  289. chip->edge_trigger_both |= IRQ_TO_BIT(irq);
  290. } else {
  291. chip->edge_trigger_both &= ~IRQ_TO_BIT(irq);
  292. }
  293. switch (flow_type) {
  294. case IRQ_TYPE_EDGE_RISING:
  295. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_SET);
  296. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_TRIGGER_SET);
  297. break;
  298. case IRQ_TYPE_EDGE_FALLING:
  299. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_CLEAR);
  300. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_TRIGGER_SET);
  301. break;
  302. case IRQ_TYPE_LEVEL_HIGH:
  303. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_SET);
  304. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_TRIGGER_CLEAR);
  305. break;
  306. case IRQ_TYPE_LEVEL_LOW:
  307. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_CLEAR);
  308. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_TRIGGER_CLEAR);
  309. break;
  310. default:
  311. return -EINVAL;
  312. }
  313. return 0;
  314. }
  315. static int jz_gpio_irq_set_wake(struct irq_data *data, unsigned int on)
  316. {
  317. struct jz_gpio_chip *chip = irq_to_jz_gpio_chip(data);
  318. irq_gc_set_wake(data, on);
  319. irq_set_irq_wake(chip->irq, on);
  320. return 0;
  321. }
  322. #define JZ4740_GPIO_CHIP(_bank) { \
  323. .irq_base = JZ4740_IRQ_GPIO_BASE_ ## _bank, \
  324. .gpio_chip = { \
  325. .label = "Bank " # _bank, \
  326. .owner = THIS_MODULE, \
  327. .set = jz_gpio_set_value, \
  328. .get = jz_gpio_get_value, \
  329. .direction_output = jz_gpio_direction_output, \
  330. .direction_input = jz_gpio_direction_input, \
  331. .to_irq = jz_gpio_to_irq, \
  332. .base = JZ4740_GPIO_BASE_ ## _bank, \
  333. .ngpio = JZ4740_GPIO_NUM_ ## _bank, \
  334. }, \
  335. }
  336. static struct jz_gpio_chip jz4740_gpio_chips[] = {
  337. JZ4740_GPIO_CHIP(A),
  338. JZ4740_GPIO_CHIP(B),
  339. JZ4740_GPIO_CHIP(C),
  340. JZ4740_GPIO_CHIP(D),
  341. };
  342. static void jz4740_gpio_chip_init(struct jz_gpio_chip *chip, unsigned int id)
  343. {
  344. struct irq_chip_generic *gc;
  345. struct irq_chip_type *ct;
  346. chip->base = ioremap(JZ4740_GPIO_BASE_ADDR + (id * 0x100), 0x100);
  347. chip->irq = JZ4740_IRQ_INTC_GPIO(id);
  348. irq_set_chained_handler_and_data(chip->irq,
  349. jz_gpio_irq_demux_handler, chip);
  350. gc = irq_alloc_generic_chip(chip->gpio_chip.label, 1, chip->irq_base,
  351. chip->base, handle_level_irq);
  352. gc->wake_enabled = IRQ_MSK(chip->gpio_chip.ngpio);
  353. gc->private = chip;
  354. ct = gc->chip_types;
  355. ct->regs.enable = JZ_REG_GPIO_MASK_CLEAR;
  356. ct->regs.disable = JZ_REG_GPIO_MASK_SET;
  357. ct->regs.ack = JZ_REG_GPIO_FLAG_CLEAR;
  358. ct->chip.name = "GPIO";
  359. ct->chip.irq_mask = irq_gc_mask_disable_reg;
  360. ct->chip.irq_unmask = jz_gpio_irq_unmask;
  361. ct->chip.irq_ack = irq_gc_ack_set_bit;
  362. ct->chip.irq_suspend = ingenic_intc_irq_suspend;
  363. ct->chip.irq_resume = ingenic_intc_irq_resume;
  364. ct->chip.irq_startup = jz_gpio_irq_startup;
  365. ct->chip.irq_shutdown = jz_gpio_irq_shutdown;
  366. ct->chip.irq_set_type = jz_gpio_irq_set_type;
  367. ct->chip.irq_set_wake = jz_gpio_irq_set_wake;
  368. ct->chip.flags = IRQCHIP_SET_TYPE_MASKED;
  369. irq_setup_generic_chip(gc, IRQ_MSK(chip->gpio_chip.ngpio),
  370. IRQ_GC_INIT_NESTED_LOCK, 0, IRQ_NOPROBE | IRQ_LEVEL);
  371. gpiochip_add_data(&chip->gpio_chip, chip);
  372. }
  373. static int __init jz4740_gpio_init(void)
  374. {
  375. unsigned int i;
  376. for (i = 0; i < ARRAY_SIZE(jz4740_gpio_chips); ++i)
  377. jz4740_gpio_chip_init(&jz4740_gpio_chips[i], i);
  378. printk(KERN_INFO "JZ4740 GPIO initialized\n");
  379. return 0;
  380. }
  381. arch_initcall(jz4740_gpio_init);
  382. #ifdef CONFIG_DEBUG_FS
  383. static inline void gpio_seq_reg(struct seq_file *s, struct jz_gpio_chip *chip,
  384. const char *name, unsigned int reg)
  385. {
  386. seq_printf(s, "\t%s: %08x\n", name, readl(chip->base + reg));
  387. }
  388. static int gpio_regs_show(struct seq_file *s, void *unused)
  389. {
  390. struct jz_gpio_chip *chip = jz4740_gpio_chips;
  391. int i;
  392. for (i = 0; i < ARRAY_SIZE(jz4740_gpio_chips); ++i, ++chip) {
  393. seq_printf(s, "==GPIO %d==\n", i);
  394. gpio_seq_reg(s, chip, "Pin", JZ_REG_GPIO_PIN);
  395. gpio_seq_reg(s, chip, "Data", JZ_REG_GPIO_DATA);
  396. gpio_seq_reg(s, chip, "Mask", JZ_REG_GPIO_MASK);
  397. gpio_seq_reg(s, chip, "Pull", JZ_REG_GPIO_PULL);
  398. gpio_seq_reg(s, chip, "Func", JZ_REG_GPIO_FUNC);
  399. gpio_seq_reg(s, chip, "Select", JZ_REG_GPIO_SELECT);
  400. gpio_seq_reg(s, chip, "Direction", JZ_REG_GPIO_DIRECTION);
  401. gpio_seq_reg(s, chip, "Trigger", JZ_REG_GPIO_TRIGGER);
  402. gpio_seq_reg(s, chip, "Flag", JZ_REG_GPIO_FLAG);
  403. }
  404. return 0;
  405. }
  406. static int gpio_regs_open(struct inode *inode, struct file *file)
  407. {
  408. return single_open(file, gpio_regs_show, NULL);
  409. }
  410. static const struct file_operations gpio_regs_operations = {
  411. .open = gpio_regs_open,
  412. .read = seq_read,
  413. .llseek = seq_lseek,
  414. .release = single_release,
  415. };
  416. static int __init gpio_debugfs_init(void)
  417. {
  418. (void) debugfs_create_file("jz_regs_gpio", S_IFREG | S_IRUGO,
  419. NULL, NULL, &gpio_regs_operations);
  420. return 0;
  421. }
  422. subsys_initcall(gpio_debugfs_init);
  423. #endif