gpio.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  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/spinlock.h>
  19. #include <linux/syscore_ops.h>
  20. #include <linux/io.h>
  21. #include <linux/gpio.h>
  22. #include <linux/delay.h>
  23. #include <linux/interrupt.h>
  24. #include <linux/bitops.h>
  25. #include <linux/debugfs.h>
  26. #include <linux/seq_file.h>
  27. #include <asm/mach-jz4740/base.h>
  28. #define JZ4740_GPIO_BASE_A (32*0)
  29. #define JZ4740_GPIO_BASE_B (32*1)
  30. #define JZ4740_GPIO_BASE_C (32*2)
  31. #define JZ4740_GPIO_BASE_D (32*3)
  32. #define JZ4740_GPIO_NUM_A 32
  33. #define JZ4740_GPIO_NUM_B 32
  34. #define JZ4740_GPIO_NUM_C 31
  35. #define JZ4740_GPIO_NUM_D 32
  36. #define JZ4740_IRQ_GPIO_BASE_A (JZ4740_IRQ_GPIO(0) + JZ4740_GPIO_BASE_A)
  37. #define JZ4740_IRQ_GPIO_BASE_B (JZ4740_IRQ_GPIO(0) + JZ4740_GPIO_BASE_B)
  38. #define JZ4740_IRQ_GPIO_BASE_C (JZ4740_IRQ_GPIO(0) + JZ4740_GPIO_BASE_C)
  39. #define JZ4740_IRQ_GPIO_BASE_D (JZ4740_IRQ_GPIO(0) + JZ4740_GPIO_BASE_D)
  40. #define JZ_REG_GPIO_PIN 0x00
  41. #define JZ_REG_GPIO_DATA 0x10
  42. #define JZ_REG_GPIO_DATA_SET 0x14
  43. #define JZ_REG_GPIO_DATA_CLEAR 0x18
  44. #define JZ_REG_GPIO_MASK 0x20
  45. #define JZ_REG_GPIO_MASK_SET 0x24
  46. #define JZ_REG_GPIO_MASK_CLEAR 0x28
  47. #define JZ_REG_GPIO_PULL 0x30
  48. #define JZ_REG_GPIO_PULL_SET 0x34
  49. #define JZ_REG_GPIO_PULL_CLEAR 0x38
  50. #define JZ_REG_GPIO_FUNC 0x40
  51. #define JZ_REG_GPIO_FUNC_SET 0x44
  52. #define JZ_REG_GPIO_FUNC_CLEAR 0x48
  53. #define JZ_REG_GPIO_SELECT 0x50
  54. #define JZ_REG_GPIO_SELECT_SET 0x54
  55. #define JZ_REG_GPIO_SELECT_CLEAR 0x58
  56. #define JZ_REG_GPIO_DIRECTION 0x60
  57. #define JZ_REG_GPIO_DIRECTION_SET 0x64
  58. #define JZ_REG_GPIO_DIRECTION_CLEAR 0x68
  59. #define JZ_REG_GPIO_TRIGGER 0x70
  60. #define JZ_REG_GPIO_TRIGGER_SET 0x74
  61. #define JZ_REG_GPIO_TRIGGER_CLEAR 0x78
  62. #define JZ_REG_GPIO_FLAG 0x80
  63. #define JZ_REG_GPIO_FLAG_CLEAR 0x14
  64. #define GPIO_TO_BIT(gpio) BIT(gpio & 0x1f)
  65. #define GPIO_TO_REG(gpio, reg) (gpio_to_jz_gpio_chip(gpio)->base + (reg))
  66. #define CHIP_TO_REG(chip, reg) (gpio_chip_to_jz_gpio_chip(chip)->base + (reg))
  67. struct jz_gpio_chip {
  68. unsigned int irq;
  69. unsigned int irq_base;
  70. uint32_t wakeup;
  71. uint32_t suspend_mask;
  72. uint32_t edge_trigger_both;
  73. void __iomem *base;
  74. spinlock_t lock;
  75. struct gpio_chip gpio_chip;
  76. };
  77. static struct jz_gpio_chip jz4740_gpio_chips[];
  78. static inline struct jz_gpio_chip *gpio_to_jz_gpio_chip(unsigned int gpio)
  79. {
  80. return &jz4740_gpio_chips[gpio >> 5];
  81. }
  82. static inline struct jz_gpio_chip *gpio_chip_to_jz_gpio_chip(struct gpio_chip *gpio_chip)
  83. {
  84. return container_of(gpio_chip, struct jz_gpio_chip, gpio_chip);
  85. }
  86. static inline struct jz_gpio_chip *irq_to_jz_gpio_chip(struct irq_data *data)
  87. {
  88. return irq_data_get_irq_chip_data(data);
  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. int jz_gpio_port_direction_input(int port, uint32_t mask)
  198. {
  199. writel(mask, GPIO_TO_REG(port, JZ_REG_GPIO_DIRECTION_CLEAR));
  200. return 0;
  201. }
  202. EXPORT_SYMBOL(jz_gpio_port_direction_input);
  203. int jz_gpio_port_direction_output(int port, uint32_t mask)
  204. {
  205. writel(mask, GPIO_TO_REG(port, JZ_REG_GPIO_DIRECTION_SET));
  206. return 0;
  207. }
  208. EXPORT_SYMBOL(jz_gpio_port_direction_output);
  209. void jz_gpio_port_set_value(int port, uint32_t value, uint32_t mask)
  210. {
  211. writel(~value & mask, GPIO_TO_REG(port, JZ_REG_GPIO_DATA_CLEAR));
  212. writel(value & mask, GPIO_TO_REG(port, JZ_REG_GPIO_DATA_SET));
  213. }
  214. EXPORT_SYMBOL(jz_gpio_port_set_value);
  215. uint32_t jz_gpio_port_get_value(int port, uint32_t mask)
  216. {
  217. uint32_t value = readl(GPIO_TO_REG(port, JZ_REG_GPIO_PIN));
  218. return value & mask;
  219. }
  220. EXPORT_SYMBOL(jz_gpio_port_get_value);
  221. int gpio_to_irq(unsigned gpio)
  222. {
  223. return JZ4740_IRQ_GPIO(0) + gpio;
  224. }
  225. EXPORT_SYMBOL_GPL(gpio_to_irq);
  226. int irq_to_gpio(unsigned irq)
  227. {
  228. return irq - JZ4740_IRQ_GPIO(0);
  229. }
  230. EXPORT_SYMBOL_GPL(irq_to_gpio);
  231. #define IRQ_TO_BIT(irq) BIT(irq_to_gpio(irq) & 0x1f)
  232. static void jz_gpio_check_trigger_both(struct jz_gpio_chip *chip, unsigned int irq)
  233. {
  234. uint32_t value;
  235. void __iomem *reg;
  236. uint32_t mask = IRQ_TO_BIT(irq);
  237. if (!(chip->edge_trigger_both & mask))
  238. return;
  239. reg = chip->base;
  240. value = readl(chip->base + JZ_REG_GPIO_PIN);
  241. if (value & mask)
  242. reg += JZ_REG_GPIO_DIRECTION_CLEAR;
  243. else
  244. reg += JZ_REG_GPIO_DIRECTION_SET;
  245. writel(mask, reg);
  246. }
  247. static void jz_gpio_irq_demux_handler(unsigned int irq, struct irq_desc *desc)
  248. {
  249. uint32_t flag;
  250. unsigned int gpio_irq;
  251. unsigned int gpio_bank;
  252. struct jz_gpio_chip *chip = irq_desc_get_handler_data(desc);
  253. gpio_bank = JZ4740_IRQ_GPIO0 - irq;
  254. flag = readl(chip->base + JZ_REG_GPIO_FLAG);
  255. if (!flag)
  256. return;
  257. gpio_irq = __fls(flag);
  258. jz_gpio_check_trigger_both(chip, irq);
  259. gpio_irq += (gpio_bank << 5) + JZ4740_IRQ_GPIO(0);
  260. generic_handle_irq(gpio_irq);
  261. };
  262. static inline void jz_gpio_set_irq_bit(struct irq_data *data, unsigned int reg)
  263. {
  264. struct jz_gpio_chip *chip = irq_to_jz_gpio_chip(data);
  265. writel(IRQ_TO_BIT(data->irq), chip->base + reg);
  266. }
  267. static void jz_gpio_irq_mask(struct irq_data *data)
  268. {
  269. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_MASK_SET);
  270. };
  271. static void jz_gpio_irq_unmask(struct irq_data *data)
  272. {
  273. struct jz_gpio_chip *chip = irq_to_jz_gpio_chip(data);
  274. jz_gpio_check_trigger_both(chip, data->irq);
  275. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_MASK_CLEAR);
  276. };
  277. /* TODO: Check if function is gpio */
  278. static unsigned int jz_gpio_irq_startup(struct irq_data *data)
  279. {
  280. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_SELECT_SET);
  281. jz_gpio_irq_unmask(data);
  282. return 0;
  283. }
  284. static void jz_gpio_irq_shutdown(struct irq_data *data)
  285. {
  286. jz_gpio_irq_mask(data);
  287. /* Set direction to input */
  288. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_CLEAR);
  289. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_SELECT_CLEAR);
  290. }
  291. static void jz_gpio_irq_ack(struct irq_data *data)
  292. {
  293. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_FLAG_CLEAR);
  294. };
  295. static int jz_gpio_irq_set_type(struct irq_data *data, unsigned int flow_type)
  296. {
  297. struct jz_gpio_chip *chip = irq_to_jz_gpio_chip(data);
  298. unsigned int irq = data->irq;
  299. if (flow_type == IRQ_TYPE_EDGE_BOTH) {
  300. uint32_t value = readl(chip->base + JZ_REG_GPIO_PIN);
  301. if (value & IRQ_TO_BIT(irq))
  302. flow_type = IRQ_TYPE_EDGE_FALLING;
  303. else
  304. flow_type = IRQ_TYPE_EDGE_RISING;
  305. chip->edge_trigger_both |= IRQ_TO_BIT(irq);
  306. } else {
  307. chip->edge_trigger_both &= ~IRQ_TO_BIT(irq);
  308. }
  309. switch (flow_type) {
  310. case IRQ_TYPE_EDGE_RISING:
  311. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_SET);
  312. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_TRIGGER_SET);
  313. break;
  314. case IRQ_TYPE_EDGE_FALLING:
  315. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_CLEAR);
  316. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_TRIGGER_SET);
  317. break;
  318. case IRQ_TYPE_LEVEL_HIGH:
  319. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_SET);
  320. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_TRIGGER_CLEAR);
  321. break;
  322. case IRQ_TYPE_LEVEL_LOW:
  323. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_CLEAR);
  324. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_TRIGGER_CLEAR);
  325. break;
  326. default:
  327. return -EINVAL;
  328. }
  329. return 0;
  330. }
  331. static int jz_gpio_irq_set_wake(struct irq_data *data, unsigned int on)
  332. {
  333. struct jz_gpio_chip *chip = irq_to_jz_gpio_chip(data);
  334. spin_lock(&chip->lock);
  335. if (on)
  336. chip->wakeup |= IRQ_TO_BIT(data->irq);
  337. else
  338. chip->wakeup &= ~IRQ_TO_BIT(data->irq);
  339. spin_unlock(&chip->lock);
  340. irq_set_irq_wake(chip->irq, on);
  341. return 0;
  342. }
  343. static struct irq_chip jz_gpio_irq_chip = {
  344. .name = "GPIO",
  345. .irq_mask = jz_gpio_irq_mask,
  346. .irq_unmask = jz_gpio_irq_unmask,
  347. .irq_ack = jz_gpio_irq_ack,
  348. .irq_startup = jz_gpio_irq_startup,
  349. .irq_shutdown = jz_gpio_irq_shutdown,
  350. .irq_set_type = jz_gpio_irq_set_type,
  351. .irq_set_wake = jz_gpio_irq_set_wake,
  352. .flags = IRQCHIP_SET_TYPE_MASKED,
  353. };
  354. /*
  355. * This lock class tells lockdep that GPIO irqs are in a different
  356. * category than their parents, so it won't report false recursion.
  357. */
  358. static struct lock_class_key gpio_lock_class;
  359. #define JZ4740_GPIO_CHIP(_bank) { \
  360. .irq_base = JZ4740_IRQ_GPIO_BASE_ ## _bank, \
  361. .gpio_chip = { \
  362. .label = "Bank " # _bank, \
  363. .owner = THIS_MODULE, \
  364. .set = jz_gpio_set_value, \
  365. .get = jz_gpio_get_value, \
  366. .direction_output = jz_gpio_direction_output, \
  367. .direction_input = jz_gpio_direction_input, \
  368. .base = JZ4740_GPIO_BASE_ ## _bank, \
  369. .ngpio = JZ4740_GPIO_NUM_ ## _bank, \
  370. }, \
  371. }
  372. static struct jz_gpio_chip jz4740_gpio_chips[] = {
  373. JZ4740_GPIO_CHIP(A),
  374. JZ4740_GPIO_CHIP(B),
  375. JZ4740_GPIO_CHIP(C),
  376. JZ4740_GPIO_CHIP(D),
  377. };
  378. static void jz4740_gpio_suspend_chip(struct jz_gpio_chip *chip)
  379. {
  380. chip->suspend_mask = readl(chip->base + JZ_REG_GPIO_MASK);
  381. writel(~(chip->wakeup), chip->base + JZ_REG_GPIO_MASK_SET);
  382. writel(chip->wakeup, chip->base + JZ_REG_GPIO_MASK_CLEAR);
  383. }
  384. static int jz4740_gpio_suspend(void)
  385. {
  386. int i;
  387. for (i = 0; i < ARRAY_SIZE(jz4740_gpio_chips); i++)
  388. jz4740_gpio_suspend_chip(&jz4740_gpio_chips[i]);
  389. return 0;
  390. }
  391. static void jz4740_gpio_resume_chip(struct jz_gpio_chip *chip)
  392. {
  393. uint32_t mask = chip->suspend_mask;
  394. writel(~mask, chip->base + JZ_REG_GPIO_MASK_CLEAR);
  395. writel(mask, chip->base + JZ_REG_GPIO_MASK_SET);
  396. }
  397. static void jz4740_gpio_resume(void)
  398. {
  399. int i;
  400. for (i = ARRAY_SIZE(jz4740_gpio_chips) - 1; i >= 0 ; i--)
  401. jz4740_gpio_resume_chip(&jz4740_gpio_chips[i]);
  402. }
  403. static struct syscore_ops jz4740_gpio_syscore_ops = {
  404. .suspend = jz4740_gpio_suspend,
  405. .resume = jz4740_gpio_resume,
  406. };
  407. static void jz4740_gpio_chip_init(struct jz_gpio_chip *chip, unsigned int id)
  408. {
  409. int irq;
  410. spin_lock_init(&chip->lock);
  411. chip->base = ioremap(JZ4740_GPIO_BASE_ADDR + (id * 0x100), 0x100);
  412. gpiochip_add(&chip->gpio_chip);
  413. chip->irq = JZ4740_IRQ_INTC_GPIO(id);
  414. irq_set_handler_data(chip->irq, chip);
  415. irq_set_chained_handler(chip->irq, jz_gpio_irq_demux_handler);
  416. for (irq = chip->irq_base; irq < chip->irq_base + chip->gpio_chip.ngpio; ++irq) {
  417. irq_set_lockdep_class(irq, &gpio_lock_class);
  418. irq_set_chip_data(irq, chip);
  419. irq_set_chip_and_handler(irq, &jz_gpio_irq_chip,
  420. handle_level_irq);
  421. }
  422. }
  423. static int __init jz4740_gpio_init(void)
  424. {
  425. unsigned int i;
  426. for (i = 0; i < ARRAY_SIZE(jz4740_gpio_chips); ++i)
  427. jz4740_gpio_chip_init(&jz4740_gpio_chips[i], i);
  428. register_syscore_ops(&jz4740_gpio_syscore_ops);
  429. printk(KERN_INFO "JZ4740 GPIO initialized\n");
  430. return 0;
  431. }
  432. arch_initcall(jz4740_gpio_init);
  433. #ifdef CONFIG_DEBUG_FS
  434. static inline void gpio_seq_reg(struct seq_file *s, struct jz_gpio_chip *chip,
  435. const char *name, unsigned int reg)
  436. {
  437. seq_printf(s, "\t%s: %08x\n", name, readl(chip->base + reg));
  438. }
  439. static int gpio_regs_show(struct seq_file *s, void *unused)
  440. {
  441. struct jz_gpio_chip *chip = jz4740_gpio_chips;
  442. int i;
  443. for (i = 0; i < ARRAY_SIZE(jz4740_gpio_chips); ++i, ++chip) {
  444. seq_printf(s, "==GPIO %d==\n", i);
  445. gpio_seq_reg(s, chip, "Pin", JZ_REG_GPIO_PIN);
  446. gpio_seq_reg(s, chip, "Data", JZ_REG_GPIO_DATA);
  447. gpio_seq_reg(s, chip, "Mask", JZ_REG_GPIO_MASK);
  448. gpio_seq_reg(s, chip, "Pull", JZ_REG_GPIO_PULL);
  449. gpio_seq_reg(s, chip, "Func", JZ_REG_GPIO_FUNC);
  450. gpio_seq_reg(s, chip, "Select", JZ_REG_GPIO_SELECT);
  451. gpio_seq_reg(s, chip, "Direction", JZ_REG_GPIO_DIRECTION);
  452. gpio_seq_reg(s, chip, "Trigger", JZ_REG_GPIO_TRIGGER);
  453. gpio_seq_reg(s, chip, "Flag", JZ_REG_GPIO_FLAG);
  454. }
  455. return 0;
  456. }
  457. static int gpio_regs_open(struct inode *inode, struct file *file)
  458. {
  459. return single_open(file, gpio_regs_show, NULL);
  460. }
  461. static const struct file_operations gpio_regs_operations = {
  462. .open = gpio_regs_open,
  463. .read = seq_read,
  464. .llseek = seq_lseek,
  465. .release = single_release,
  466. };
  467. static int __init gpio_debugfs_init(void)
  468. {
  469. (void) debugfs_create_file("jz_regs_gpio", S_IFREG | S_IRUGO,
  470. NULL, NULL, &gpio_regs_operations);
  471. return 0;
  472. }
  473. subsys_initcall(gpio_debugfs_init);
  474. #endif