gpio.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593
  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/sysdev.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. struct sys_device sysdev;
  77. };
  78. static struct jz_gpio_chip jz4740_gpio_chips[];
  79. static inline struct jz_gpio_chip *gpio_to_jz_gpio_chip(unsigned int gpio)
  80. {
  81. return &jz4740_gpio_chips[gpio >> 5];
  82. }
  83. static inline struct jz_gpio_chip *gpio_chip_to_jz_gpio_chip(struct gpio_chip *gpio_chip)
  84. {
  85. return container_of(gpio_chip, struct jz_gpio_chip, gpio_chip);
  86. }
  87. static inline struct jz_gpio_chip *irq_to_jz_gpio_chip(struct irq_data *data)
  88. {
  89. return irq_data_get_irq_chip_data(data);
  90. }
  91. static inline void jz_gpio_write_bit(unsigned int gpio, unsigned int reg)
  92. {
  93. writel(GPIO_TO_BIT(gpio), GPIO_TO_REG(gpio, reg));
  94. }
  95. int jz_gpio_set_function(int gpio, enum jz_gpio_function function)
  96. {
  97. if (function == JZ_GPIO_FUNC_NONE) {
  98. jz_gpio_write_bit(gpio, JZ_REG_GPIO_FUNC_CLEAR);
  99. jz_gpio_write_bit(gpio, JZ_REG_GPIO_SELECT_CLEAR);
  100. jz_gpio_write_bit(gpio, JZ_REG_GPIO_TRIGGER_CLEAR);
  101. } else {
  102. jz_gpio_write_bit(gpio, JZ_REG_GPIO_FUNC_SET);
  103. jz_gpio_write_bit(gpio, JZ_REG_GPIO_TRIGGER_CLEAR);
  104. switch (function) {
  105. case JZ_GPIO_FUNC1:
  106. jz_gpio_write_bit(gpio, JZ_REG_GPIO_SELECT_CLEAR);
  107. break;
  108. case JZ_GPIO_FUNC3:
  109. jz_gpio_write_bit(gpio, JZ_REG_GPIO_TRIGGER_SET);
  110. case JZ_GPIO_FUNC2: /* Falltrough */
  111. jz_gpio_write_bit(gpio, JZ_REG_GPIO_SELECT_SET);
  112. break;
  113. default:
  114. BUG();
  115. break;
  116. }
  117. }
  118. return 0;
  119. }
  120. EXPORT_SYMBOL_GPL(jz_gpio_set_function);
  121. int jz_gpio_bulk_request(const struct jz_gpio_bulk_request *request, size_t num)
  122. {
  123. size_t i;
  124. int ret;
  125. for (i = 0; i < num; ++i, ++request) {
  126. ret = gpio_request(request->gpio, request->name);
  127. if (ret)
  128. goto err;
  129. jz_gpio_set_function(request->gpio, request->function);
  130. }
  131. return 0;
  132. err:
  133. for (--request; i > 0; --i, --request) {
  134. gpio_free(request->gpio);
  135. jz_gpio_set_function(request->gpio, JZ_GPIO_FUNC_NONE);
  136. }
  137. return ret;
  138. }
  139. EXPORT_SYMBOL_GPL(jz_gpio_bulk_request);
  140. void jz_gpio_bulk_free(const struct jz_gpio_bulk_request *request, size_t num)
  141. {
  142. size_t i;
  143. for (i = 0; i < num; ++i, ++request) {
  144. gpio_free(request->gpio);
  145. jz_gpio_set_function(request->gpio, JZ_GPIO_FUNC_NONE);
  146. }
  147. }
  148. EXPORT_SYMBOL_GPL(jz_gpio_bulk_free);
  149. void jz_gpio_bulk_suspend(const struct jz_gpio_bulk_request *request, size_t num)
  150. {
  151. size_t i;
  152. for (i = 0; i < num; ++i, ++request) {
  153. jz_gpio_set_function(request->gpio, JZ_GPIO_FUNC_NONE);
  154. jz_gpio_write_bit(request->gpio, JZ_REG_GPIO_DIRECTION_CLEAR);
  155. jz_gpio_write_bit(request->gpio, JZ_REG_GPIO_PULL_SET);
  156. }
  157. }
  158. EXPORT_SYMBOL_GPL(jz_gpio_bulk_suspend);
  159. void jz_gpio_bulk_resume(const struct jz_gpio_bulk_request *request, size_t num)
  160. {
  161. size_t i;
  162. for (i = 0; i < num; ++i, ++request)
  163. jz_gpio_set_function(request->gpio, request->function);
  164. }
  165. EXPORT_SYMBOL_GPL(jz_gpio_bulk_resume);
  166. void jz_gpio_enable_pullup(unsigned gpio)
  167. {
  168. jz_gpio_write_bit(gpio, JZ_REG_GPIO_PULL_CLEAR);
  169. }
  170. EXPORT_SYMBOL_GPL(jz_gpio_enable_pullup);
  171. void jz_gpio_disable_pullup(unsigned gpio)
  172. {
  173. jz_gpio_write_bit(gpio, JZ_REG_GPIO_PULL_SET);
  174. }
  175. EXPORT_SYMBOL_GPL(jz_gpio_disable_pullup);
  176. static int jz_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
  177. {
  178. return !!(readl(CHIP_TO_REG(chip, JZ_REG_GPIO_PIN)) & BIT(gpio));
  179. }
  180. static void jz_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value)
  181. {
  182. uint32_t __iomem *reg = CHIP_TO_REG(chip, JZ_REG_GPIO_DATA_SET);
  183. reg += !value;
  184. writel(BIT(gpio), reg);
  185. }
  186. static int jz_gpio_direction_output(struct gpio_chip *chip, unsigned gpio,
  187. int value)
  188. {
  189. writel(BIT(gpio), CHIP_TO_REG(chip, JZ_REG_GPIO_DIRECTION_SET));
  190. jz_gpio_set_value(chip, gpio, value);
  191. return 0;
  192. }
  193. static int jz_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
  194. {
  195. writel(BIT(gpio), CHIP_TO_REG(chip, JZ_REG_GPIO_DIRECTION_CLEAR));
  196. return 0;
  197. }
  198. int jz_gpio_port_direction_input(int port, uint32_t mask)
  199. {
  200. writel(mask, GPIO_TO_REG(port, JZ_REG_GPIO_DIRECTION_CLEAR));
  201. return 0;
  202. }
  203. EXPORT_SYMBOL(jz_gpio_port_direction_input);
  204. int jz_gpio_port_direction_output(int port, uint32_t mask)
  205. {
  206. writel(mask, GPIO_TO_REG(port, JZ_REG_GPIO_DIRECTION_SET));
  207. return 0;
  208. }
  209. EXPORT_SYMBOL(jz_gpio_port_direction_output);
  210. void jz_gpio_port_set_value(int port, uint32_t value, uint32_t mask)
  211. {
  212. writel(~value & mask, GPIO_TO_REG(port, JZ_REG_GPIO_DATA_CLEAR));
  213. writel(value & mask, GPIO_TO_REG(port, JZ_REG_GPIO_DATA_SET));
  214. }
  215. EXPORT_SYMBOL(jz_gpio_port_set_value);
  216. uint32_t jz_gpio_port_get_value(int port, uint32_t mask)
  217. {
  218. uint32_t value = readl(GPIO_TO_REG(port, JZ_REG_GPIO_PIN));
  219. return value & mask;
  220. }
  221. EXPORT_SYMBOL(jz_gpio_port_get_value);
  222. int gpio_to_irq(unsigned gpio)
  223. {
  224. return JZ4740_IRQ_GPIO(0) + gpio;
  225. }
  226. EXPORT_SYMBOL_GPL(gpio_to_irq);
  227. int irq_to_gpio(unsigned irq)
  228. {
  229. return irq - JZ4740_IRQ_GPIO(0);
  230. }
  231. EXPORT_SYMBOL_GPL(irq_to_gpio);
  232. #define IRQ_TO_BIT(irq) BIT(irq_to_gpio(irq) & 0x1f)
  233. static void jz_gpio_check_trigger_both(struct jz_gpio_chip *chip, unsigned int irq)
  234. {
  235. uint32_t value;
  236. void __iomem *reg;
  237. uint32_t mask = IRQ_TO_BIT(irq);
  238. if (!(chip->edge_trigger_both & mask))
  239. return;
  240. reg = chip->base;
  241. value = readl(chip->base + JZ_REG_GPIO_PIN);
  242. if (value & mask)
  243. reg += JZ_REG_GPIO_DIRECTION_CLEAR;
  244. else
  245. reg += JZ_REG_GPIO_DIRECTION_SET;
  246. writel(mask, reg);
  247. }
  248. static void jz_gpio_irq_demux_handler(unsigned int irq, struct irq_desc *desc)
  249. {
  250. uint32_t flag;
  251. unsigned int gpio_irq;
  252. unsigned int gpio_bank;
  253. struct jz_gpio_chip *chip = irq_desc_get_handler_data(desc);
  254. gpio_bank = JZ4740_IRQ_GPIO0 - irq;
  255. flag = readl(chip->base + JZ_REG_GPIO_FLAG);
  256. if (!flag)
  257. return;
  258. gpio_irq = __fls(flag);
  259. jz_gpio_check_trigger_both(chip, irq);
  260. gpio_irq += (gpio_bank << 5) + JZ4740_IRQ_GPIO(0);
  261. generic_handle_irq(gpio_irq);
  262. };
  263. static inline void jz_gpio_set_irq_bit(struct irq_data *data, unsigned int reg)
  264. {
  265. struct jz_gpio_chip *chip = irq_to_jz_gpio_chip(data);
  266. writel(IRQ_TO_BIT(data->irq), chip->base + reg);
  267. }
  268. static void jz_gpio_irq_mask(struct irq_data *data)
  269. {
  270. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_MASK_SET);
  271. };
  272. static void jz_gpio_irq_unmask(struct irq_data *data)
  273. {
  274. struct jz_gpio_chip *chip = irq_to_jz_gpio_chip(data);
  275. jz_gpio_check_trigger_both(chip, data->irq);
  276. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_MASK_CLEAR);
  277. };
  278. /* TODO: Check if function is gpio */
  279. static unsigned int jz_gpio_irq_startup(struct irq_data *data)
  280. {
  281. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_SELECT_SET);
  282. jz_gpio_irq_unmask(data);
  283. return 0;
  284. }
  285. static void jz_gpio_irq_shutdown(struct irq_data *data)
  286. {
  287. jz_gpio_irq_mask(data);
  288. /* Set direction to input */
  289. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_CLEAR);
  290. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_SELECT_CLEAR);
  291. }
  292. static void jz_gpio_irq_ack(struct irq_data *data)
  293. {
  294. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_FLAG_CLEAR);
  295. };
  296. static int jz_gpio_irq_set_type(struct irq_data *data, unsigned int flow_type)
  297. {
  298. struct jz_gpio_chip *chip = irq_to_jz_gpio_chip(data);
  299. unsigned int irq = data->irq;
  300. if (flow_type == IRQ_TYPE_EDGE_BOTH) {
  301. uint32_t value = readl(chip->base + JZ_REG_GPIO_PIN);
  302. if (value & IRQ_TO_BIT(irq))
  303. flow_type = IRQ_TYPE_EDGE_FALLING;
  304. else
  305. flow_type = IRQ_TYPE_EDGE_RISING;
  306. chip->edge_trigger_both |= IRQ_TO_BIT(irq);
  307. } else {
  308. chip->edge_trigger_both &= ~IRQ_TO_BIT(irq);
  309. }
  310. switch (flow_type) {
  311. case IRQ_TYPE_EDGE_RISING:
  312. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_SET);
  313. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_TRIGGER_SET);
  314. break;
  315. case IRQ_TYPE_EDGE_FALLING:
  316. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_CLEAR);
  317. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_TRIGGER_SET);
  318. break;
  319. case IRQ_TYPE_LEVEL_HIGH:
  320. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_SET);
  321. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_TRIGGER_CLEAR);
  322. break;
  323. case IRQ_TYPE_LEVEL_LOW:
  324. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_DIRECTION_CLEAR);
  325. jz_gpio_set_irq_bit(data, JZ_REG_GPIO_TRIGGER_CLEAR);
  326. break;
  327. default:
  328. return -EINVAL;
  329. }
  330. return 0;
  331. }
  332. static int jz_gpio_irq_set_wake(struct irq_data *data, unsigned int on)
  333. {
  334. struct jz_gpio_chip *chip = irq_to_jz_gpio_chip(data);
  335. spin_lock(&chip->lock);
  336. if (on)
  337. chip->wakeup |= IRQ_TO_BIT(data->irq);
  338. else
  339. chip->wakeup &= ~IRQ_TO_BIT(data->irq);
  340. spin_unlock(&chip->lock);
  341. irq_set_irq_wake(chip->irq, on);
  342. return 0;
  343. }
  344. static struct irq_chip jz_gpio_irq_chip = {
  345. .name = "GPIO",
  346. .irq_mask = jz_gpio_irq_mask,
  347. .irq_unmask = jz_gpio_irq_unmask,
  348. .irq_ack = jz_gpio_irq_ack,
  349. .irq_startup = jz_gpio_irq_startup,
  350. .irq_shutdown = jz_gpio_irq_shutdown,
  351. .irq_set_type = jz_gpio_irq_set_type,
  352. .irq_set_wake = jz_gpio_irq_set_wake,
  353. .flags = IRQCHIP_SET_TYPE_MASKED,
  354. };
  355. /*
  356. * This lock class tells lockdep that GPIO irqs are in a different
  357. * category than their parents, so it won't report false recursion.
  358. */
  359. static struct lock_class_key gpio_lock_class;
  360. #define JZ4740_GPIO_CHIP(_bank) { \
  361. .irq_base = JZ4740_IRQ_GPIO_BASE_ ## _bank, \
  362. .gpio_chip = { \
  363. .label = "Bank " # _bank, \
  364. .owner = THIS_MODULE, \
  365. .set = jz_gpio_set_value, \
  366. .get = jz_gpio_get_value, \
  367. .direction_output = jz_gpio_direction_output, \
  368. .direction_input = jz_gpio_direction_input, \
  369. .base = JZ4740_GPIO_BASE_ ## _bank, \
  370. .ngpio = JZ4740_GPIO_NUM_ ## _bank, \
  371. }, \
  372. }
  373. static struct jz_gpio_chip jz4740_gpio_chips[] = {
  374. JZ4740_GPIO_CHIP(A),
  375. JZ4740_GPIO_CHIP(B),
  376. JZ4740_GPIO_CHIP(C),
  377. JZ4740_GPIO_CHIP(D),
  378. };
  379. static inline struct jz_gpio_chip *sysdev_to_chip(struct sys_device *dev)
  380. {
  381. return container_of(dev, struct jz_gpio_chip, sysdev);
  382. }
  383. static int jz4740_gpio_suspend(struct sys_device *dev, pm_message_t state)
  384. {
  385. struct jz_gpio_chip *chip = sysdev_to_chip(dev);
  386. chip->suspend_mask = readl(chip->base + JZ_REG_GPIO_MASK);
  387. writel(~(chip->wakeup), chip->base + JZ_REG_GPIO_MASK_SET);
  388. writel(chip->wakeup, chip->base + JZ_REG_GPIO_MASK_CLEAR);
  389. return 0;
  390. }
  391. static int jz4740_gpio_resume(struct sys_device *dev)
  392. {
  393. struct jz_gpio_chip *chip = sysdev_to_chip(dev);
  394. uint32_t mask = chip->suspend_mask;
  395. writel(~mask, chip->base + JZ_REG_GPIO_MASK_CLEAR);
  396. writel(mask, chip->base + JZ_REG_GPIO_MASK_SET);
  397. return 0;
  398. }
  399. static struct sysdev_class jz4740_gpio_sysdev_class = {
  400. .name = "gpio",
  401. .suspend = jz4740_gpio_suspend,
  402. .resume = jz4740_gpio_resume,
  403. };
  404. static int jz4740_gpio_chip_init(struct jz_gpio_chip *chip, unsigned int id)
  405. {
  406. int ret, irq;
  407. chip->sysdev.id = id;
  408. chip->sysdev.cls = &jz4740_gpio_sysdev_class;
  409. ret = sysdev_register(&chip->sysdev);
  410. if (ret)
  411. return ret;
  412. spin_lock_init(&chip->lock);
  413. chip->base = ioremap(JZ4740_GPIO_BASE_ADDR + (id * 0x100), 0x100);
  414. gpiochip_add(&chip->gpio_chip);
  415. chip->irq = JZ4740_IRQ_INTC_GPIO(id);
  416. irq_set_handler_data(chip->irq, chip);
  417. irq_set_chained_handler(chip->irq, jz_gpio_irq_demux_handler);
  418. for (irq = chip->irq_base; irq < chip->irq_base + chip->gpio_chip.ngpio; ++irq) {
  419. irq_set_lockdep_class(irq, &gpio_lock_class);
  420. irq_set_chip_data(irq, chip);
  421. irq_set_chip_and_handler(irq, &jz_gpio_irq_chip,
  422. handle_level_irq);
  423. }
  424. return 0;
  425. }
  426. static int __init jz4740_gpio_init(void)
  427. {
  428. unsigned int i;
  429. int ret;
  430. ret = sysdev_class_register(&jz4740_gpio_sysdev_class);
  431. if (ret)
  432. return ret;
  433. for (i = 0; i < ARRAY_SIZE(jz4740_gpio_chips); ++i)
  434. jz4740_gpio_chip_init(&jz4740_gpio_chips[i], i);
  435. printk(KERN_INFO "JZ4740 GPIO initialized\n");
  436. return 0;
  437. }
  438. arch_initcall(jz4740_gpio_init);
  439. #ifdef CONFIG_DEBUG_FS
  440. static inline void gpio_seq_reg(struct seq_file *s, struct jz_gpio_chip *chip,
  441. const char *name, unsigned int reg)
  442. {
  443. seq_printf(s, "\t%s: %08x\n", name, readl(chip->base + reg));
  444. }
  445. static int gpio_regs_show(struct seq_file *s, void *unused)
  446. {
  447. struct jz_gpio_chip *chip = jz4740_gpio_chips;
  448. int i;
  449. for (i = 0; i < ARRAY_SIZE(jz4740_gpio_chips); ++i, ++chip) {
  450. seq_printf(s, "==GPIO %d==\n", i);
  451. gpio_seq_reg(s, chip, "Pin", JZ_REG_GPIO_PIN);
  452. gpio_seq_reg(s, chip, "Data", JZ_REG_GPIO_DATA);
  453. gpio_seq_reg(s, chip, "Mask", JZ_REG_GPIO_MASK);
  454. gpio_seq_reg(s, chip, "Pull", JZ_REG_GPIO_PULL);
  455. gpio_seq_reg(s, chip, "Func", JZ_REG_GPIO_FUNC);
  456. gpio_seq_reg(s, chip, "Select", JZ_REG_GPIO_SELECT);
  457. gpio_seq_reg(s, chip, "Direction", JZ_REG_GPIO_DIRECTION);
  458. gpio_seq_reg(s, chip, "Trigger", JZ_REG_GPIO_TRIGGER);
  459. gpio_seq_reg(s, chip, "Flag", JZ_REG_GPIO_FLAG);
  460. }
  461. return 0;
  462. }
  463. static int gpio_regs_open(struct inode *inode, struct file *file)
  464. {
  465. return single_open(file, gpio_regs_show, NULL);
  466. }
  467. static const struct file_operations gpio_regs_operations = {
  468. .open = gpio_regs_open,
  469. .read = seq_read,
  470. .llseek = seq_lseek,
  471. .release = single_release,
  472. };
  473. static int __init gpio_debugfs_init(void)
  474. {
  475. (void) debugfs_create_file("jz_regs_gpio", S_IFREG | S_IRUGO,
  476. NULL, NULL, &gpio_regs_operations);
  477. return 0;
  478. }
  479. subsys_initcall(gpio_debugfs_init);
  480. #endif