gpio-wcove.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  1. /*
  2. * Intel Whiskey Cove PMIC GPIO Driver
  3. *
  4. * This driver is written based on gpio-crystalcove.c
  5. *
  6. * Copyright (C) 2016 Intel Corporation. All rights reserved.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License version
  10. * 2 as published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. */
  17. #include <linux/bitops.h>
  18. #include <linux/module.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/gpio/driver.h>
  21. #include <linux/mfd/intel_soc_pmic.h>
  22. #include <linux/platform_device.h>
  23. #include <linux/regmap.h>
  24. #include <linux/seq_file.h>
  25. /*
  26. * Whiskey Cove PMIC has 13 physical GPIO pins divided into 3 banks:
  27. * Bank 0: Pin 0 - 6
  28. * Bank 1: Pin 7 - 10
  29. * Bank 2: Pin 11 -12
  30. * Each pin has one output control register and one input control register.
  31. */
  32. #define BANK0_NR_PINS 7
  33. #define BANK1_NR_PINS 4
  34. #define BANK2_NR_PINS 2
  35. #define WCOVE_GPIO_NUM (BANK0_NR_PINS + BANK1_NR_PINS + BANK2_NR_PINS)
  36. #define WCOVE_VGPIO_NUM 94
  37. /* GPIO output control registers (one per pin): 0x4e44 - 0x4e50 */
  38. #define GPIO_OUT_CTRL_BASE 0x4e44
  39. /* GPIO input control registers (one per pin): 0x4e51 - 0x4e5d */
  40. #define GPIO_IN_CTRL_BASE 0x4e51
  41. /*
  42. * GPIO interrupts are organized in two groups:
  43. * Group 0: Bank 0 pins (Pin 0 - 6)
  44. * Group 1: Bank 1 and Bank 2 pins (Pin 7 - 12)
  45. * Each group has two registers (one bit per pin): status and mask.
  46. */
  47. #define GROUP0_NR_IRQS 7
  48. #define GROUP1_NR_IRQS 6
  49. #define IRQ_MASK_BASE 0x4e19
  50. #define IRQ_STATUS_BASE 0x4e0b
  51. #define GPIO_IRQ0_MASK GENMASK(6, 0)
  52. #define GPIO_IRQ1_MASK GENMASK(5, 0)
  53. #define UPDATE_IRQ_TYPE BIT(0)
  54. #define UPDATE_IRQ_MASK BIT(1)
  55. #define CTLI_INTCNT_DIS (0 << 1)
  56. #define CTLI_INTCNT_NE (1 << 1)
  57. #define CTLI_INTCNT_PE (2 << 1)
  58. #define CTLI_INTCNT_BE (3 << 1)
  59. #define CTLO_DIR_IN (0 << 5)
  60. #define CTLO_DIR_OUT (1 << 5)
  61. #define CTLO_DRV_MASK (1 << 4)
  62. #define CTLO_DRV_OD (0 << 4)
  63. #define CTLO_DRV_CMOS (1 << 4)
  64. #define CTLO_DRV_REN (1 << 3)
  65. #define CTLO_RVAL_2KDOWN (0 << 1)
  66. #define CTLO_RVAL_2KUP (1 << 1)
  67. #define CTLO_RVAL_50KDOWN (2 << 1)
  68. #define CTLO_RVAL_50KUP (3 << 1)
  69. #define CTLO_INPUT_SET (CTLO_DRV_CMOS | CTLO_DRV_REN | CTLO_RVAL_2KUP)
  70. #define CTLO_OUTPUT_SET (CTLO_DIR_OUT | CTLO_INPUT_SET)
  71. enum ctrl_register {
  72. CTRL_IN,
  73. CTRL_OUT,
  74. };
  75. /*
  76. * struct wcove_gpio - Whiskey Cove GPIO controller
  77. * @buslock: for bus lock/sync and unlock.
  78. * @chip: the abstract gpio_chip structure.
  79. * @dev: the gpio device
  80. * @regmap: the regmap from the parent device.
  81. * @regmap_irq_chip: the regmap of the gpio irq chip.
  82. * @update: pending IRQ setting update, to be written to the chip upon unlock.
  83. * @intcnt: the Interrupt Detect value to be written.
  84. * @set_irq_mask: true if the IRQ mask needs to be set, false to clear.
  85. */
  86. struct wcove_gpio {
  87. struct mutex buslock;
  88. struct gpio_chip chip;
  89. struct device *dev;
  90. struct regmap *regmap;
  91. struct regmap_irq_chip_data *regmap_irq_chip;
  92. int update;
  93. int intcnt;
  94. bool set_irq_mask;
  95. };
  96. static inline unsigned int to_reg(int gpio, enum ctrl_register reg_type)
  97. {
  98. unsigned int reg;
  99. int bank;
  100. if (gpio < BANK0_NR_PINS)
  101. bank = 0;
  102. else if (gpio < BANK0_NR_PINS + BANK1_NR_PINS)
  103. bank = 1;
  104. else
  105. bank = 2;
  106. if (reg_type == CTRL_IN)
  107. reg = GPIO_IN_CTRL_BASE + bank;
  108. else
  109. reg = GPIO_OUT_CTRL_BASE + bank;
  110. return reg;
  111. }
  112. static void wcove_update_irq_mask(struct wcove_gpio *wg, int gpio)
  113. {
  114. unsigned int reg, mask;
  115. if (gpio < GROUP0_NR_IRQS) {
  116. reg = IRQ_MASK_BASE;
  117. mask = BIT(gpio % GROUP0_NR_IRQS);
  118. } else {
  119. reg = IRQ_MASK_BASE + 1;
  120. mask = BIT((gpio - GROUP0_NR_IRQS) % GROUP1_NR_IRQS);
  121. }
  122. if (wg->set_irq_mask)
  123. regmap_update_bits(wg->regmap, reg, mask, mask);
  124. else
  125. regmap_update_bits(wg->regmap, reg, mask, 0);
  126. }
  127. static void wcove_update_irq_ctrl(struct wcove_gpio *wg, int gpio)
  128. {
  129. unsigned int reg = to_reg(gpio, CTRL_IN);
  130. regmap_update_bits(wg->regmap, reg, CTLI_INTCNT_BE, wg->intcnt);
  131. }
  132. static int wcove_gpio_dir_in(struct gpio_chip *chip, unsigned int gpio)
  133. {
  134. struct wcove_gpio *wg = gpiochip_get_data(chip);
  135. return regmap_write(wg->regmap, to_reg(gpio, CTRL_OUT),
  136. CTLO_INPUT_SET);
  137. }
  138. static int wcove_gpio_dir_out(struct gpio_chip *chip, unsigned int gpio,
  139. int value)
  140. {
  141. struct wcove_gpio *wg = gpiochip_get_data(chip);
  142. return regmap_write(wg->regmap, to_reg(gpio, CTRL_OUT),
  143. CTLO_OUTPUT_SET | value);
  144. }
  145. static int wcove_gpio_get_direction(struct gpio_chip *chip, unsigned int gpio)
  146. {
  147. struct wcove_gpio *wg = gpiochip_get_data(chip);
  148. unsigned int val;
  149. int ret;
  150. ret = regmap_read(wg->regmap, to_reg(gpio, CTRL_OUT), &val);
  151. if (ret)
  152. return ret;
  153. return !(val & CTLO_DIR_OUT);
  154. }
  155. static int wcove_gpio_get(struct gpio_chip *chip, unsigned int gpio)
  156. {
  157. struct wcove_gpio *wg = gpiochip_get_data(chip);
  158. unsigned int val;
  159. int ret;
  160. ret = regmap_read(wg->regmap, to_reg(gpio, CTRL_IN), &val);
  161. if (ret)
  162. return ret;
  163. return val & 0x1;
  164. }
  165. static void wcove_gpio_set(struct gpio_chip *chip,
  166. unsigned int gpio, int value)
  167. {
  168. struct wcove_gpio *wg = gpiochip_get_data(chip);
  169. if (value)
  170. regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT), 1, 1);
  171. else
  172. regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT), 1, 0);
  173. }
  174. static int wcove_gpio_set_config(struct gpio_chip *chip, unsigned int gpio,
  175. unsigned long config)
  176. {
  177. struct wcove_gpio *wg = gpiochip_get_data(chip);
  178. switch (pinconf_to_config_param(config)) {
  179. case PIN_CONFIG_DRIVE_OPEN_DRAIN:
  180. return regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT),
  181. CTLO_DRV_MASK, CTLO_DRV_OD);
  182. case PIN_CONFIG_DRIVE_PUSH_PULL:
  183. return regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT),
  184. CTLO_DRV_MASK, CTLO_DRV_CMOS);
  185. default:
  186. break;
  187. }
  188. return -ENOTSUPP;
  189. }
  190. static int wcove_irq_type(struct irq_data *data, unsigned int type)
  191. {
  192. struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
  193. struct wcove_gpio *wg = gpiochip_get_data(chip);
  194. switch (type) {
  195. case IRQ_TYPE_NONE:
  196. wg->intcnt = CTLI_INTCNT_DIS;
  197. break;
  198. case IRQ_TYPE_EDGE_BOTH:
  199. wg->intcnt = CTLI_INTCNT_BE;
  200. break;
  201. case IRQ_TYPE_EDGE_RISING:
  202. wg->intcnt = CTLI_INTCNT_PE;
  203. break;
  204. case IRQ_TYPE_EDGE_FALLING:
  205. wg->intcnt = CTLI_INTCNT_NE;
  206. break;
  207. default:
  208. return -EINVAL;
  209. }
  210. wg->update |= UPDATE_IRQ_TYPE;
  211. return 0;
  212. }
  213. static void wcove_bus_lock(struct irq_data *data)
  214. {
  215. struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
  216. struct wcove_gpio *wg = gpiochip_get_data(chip);
  217. mutex_lock(&wg->buslock);
  218. }
  219. static void wcove_bus_sync_unlock(struct irq_data *data)
  220. {
  221. struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
  222. struct wcove_gpio *wg = gpiochip_get_data(chip);
  223. int gpio = data->hwirq;
  224. if (wg->update & UPDATE_IRQ_TYPE)
  225. wcove_update_irq_ctrl(wg, gpio);
  226. if (wg->update & UPDATE_IRQ_MASK)
  227. wcove_update_irq_mask(wg, gpio);
  228. wg->update = 0;
  229. mutex_unlock(&wg->buslock);
  230. }
  231. static void wcove_irq_unmask(struct irq_data *data)
  232. {
  233. struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
  234. struct wcove_gpio *wg = gpiochip_get_data(chip);
  235. wg->set_irq_mask = false;
  236. wg->update |= UPDATE_IRQ_MASK;
  237. }
  238. static void wcove_irq_mask(struct irq_data *data)
  239. {
  240. struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
  241. struct wcove_gpio *wg = gpiochip_get_data(chip);
  242. wg->set_irq_mask = true;
  243. wg->update |= UPDATE_IRQ_MASK;
  244. }
  245. static struct irq_chip wcove_irqchip = {
  246. .name = "Whiskey Cove",
  247. .irq_mask = wcove_irq_mask,
  248. .irq_unmask = wcove_irq_unmask,
  249. .irq_set_type = wcove_irq_type,
  250. .irq_bus_lock = wcove_bus_lock,
  251. .irq_bus_sync_unlock = wcove_bus_sync_unlock,
  252. };
  253. static irqreturn_t wcove_gpio_irq_handler(int irq, void *data)
  254. {
  255. struct wcove_gpio *wg = (struct wcove_gpio *)data;
  256. unsigned int pending, virq, gpio, mask, offset;
  257. u8 p[2];
  258. if (regmap_bulk_read(wg->regmap, IRQ_STATUS_BASE, p, 2)) {
  259. dev_err(wg->dev, "Failed to read irq status register\n");
  260. return IRQ_NONE;
  261. }
  262. pending = (p[0] & GPIO_IRQ0_MASK) | ((p[1] & GPIO_IRQ1_MASK) << 7);
  263. if (!pending)
  264. return IRQ_NONE;
  265. /* Iterate until no interrupt is pending */
  266. while (pending) {
  267. /* One iteration is for all pending bits */
  268. for_each_set_bit(gpio, (const unsigned long *)&pending,
  269. WCOVE_GPIO_NUM) {
  270. offset = (gpio > GROUP0_NR_IRQS) ? 1 : 0;
  271. mask = (offset == 1) ? BIT(gpio - GROUP0_NR_IRQS) :
  272. BIT(gpio);
  273. virq = irq_find_mapping(wg->chip.irqdomain, gpio);
  274. handle_nested_irq(virq);
  275. regmap_update_bits(wg->regmap, IRQ_STATUS_BASE + offset,
  276. mask, mask);
  277. }
  278. /* Next iteration */
  279. if (regmap_bulk_read(wg->regmap, IRQ_STATUS_BASE, p, 2)) {
  280. dev_err(wg->dev, "Failed to read irq status\n");
  281. break;
  282. }
  283. pending = (p[0] & GPIO_IRQ0_MASK) | ((p[1] & GPIO_IRQ1_MASK) << 7);
  284. }
  285. return IRQ_HANDLED;
  286. }
  287. static void wcove_gpio_dbg_show(struct seq_file *s,
  288. struct gpio_chip *chip)
  289. {
  290. unsigned int ctlo, ctli, irq_mask, irq_status;
  291. struct wcove_gpio *wg = gpiochip_get_data(chip);
  292. int gpio, offset, group, ret = 0;
  293. for (gpio = 0; gpio < WCOVE_GPIO_NUM; gpio++) {
  294. group = gpio < GROUP0_NR_IRQS ? 0 : 1;
  295. ret += regmap_read(wg->regmap, to_reg(gpio, CTRL_OUT), &ctlo);
  296. ret += regmap_read(wg->regmap, to_reg(gpio, CTRL_IN), &ctli);
  297. ret += regmap_read(wg->regmap, IRQ_MASK_BASE + group,
  298. &irq_mask);
  299. ret += regmap_read(wg->regmap, IRQ_STATUS_BASE + group,
  300. &irq_status);
  301. if (ret) {
  302. pr_err("Failed to read registers: ctrl out/in or irq status/mask\n");
  303. break;
  304. }
  305. offset = gpio % 8;
  306. seq_printf(s, " gpio-%-2d %s %s %s %s ctlo=%2x,%s %s\n",
  307. gpio, ctlo & CTLO_DIR_OUT ? "out" : "in ",
  308. ctli & 0x1 ? "hi" : "lo",
  309. ctli & CTLI_INTCNT_NE ? "fall" : " ",
  310. ctli & CTLI_INTCNT_PE ? "rise" : " ",
  311. ctlo,
  312. irq_mask & BIT(offset) ? "mask " : "unmask",
  313. irq_status & BIT(offset) ? "pending" : " ");
  314. }
  315. }
  316. static int wcove_gpio_probe(struct platform_device *pdev)
  317. {
  318. struct intel_soc_pmic *pmic;
  319. struct wcove_gpio *wg;
  320. int virq, ret, irq;
  321. struct device *dev;
  322. /*
  323. * This gpio platform device is created by a mfd device (see
  324. * drivers/mfd/intel_soc_pmic_bxtwc.c for details). Information
  325. * shared by all sub-devices created by the mfd device, the regmap
  326. * pointer for instance, is stored as driver data of the mfd device
  327. * driver.
  328. */
  329. pmic = dev_get_drvdata(pdev->dev.parent);
  330. if (!pmic)
  331. return -ENODEV;
  332. irq = platform_get_irq(pdev, 0);
  333. if (irq < 0)
  334. return irq;
  335. dev = &pdev->dev;
  336. wg = devm_kzalloc(dev, sizeof(*wg), GFP_KERNEL);
  337. if (!wg)
  338. return -ENOMEM;
  339. wg->regmap_irq_chip = pmic->irq_chip_data_level2;
  340. platform_set_drvdata(pdev, wg);
  341. mutex_init(&wg->buslock);
  342. wg->chip.label = KBUILD_MODNAME;
  343. wg->chip.direction_input = wcove_gpio_dir_in;
  344. wg->chip.direction_output = wcove_gpio_dir_out;
  345. wg->chip.get_direction = wcove_gpio_get_direction;
  346. wg->chip.get = wcove_gpio_get;
  347. wg->chip.set = wcove_gpio_set;
  348. wg->chip.set_config = wcove_gpio_set_config,
  349. wg->chip.base = -1;
  350. wg->chip.ngpio = WCOVE_VGPIO_NUM;
  351. wg->chip.can_sleep = true;
  352. wg->chip.parent = pdev->dev.parent;
  353. wg->chip.dbg_show = wcove_gpio_dbg_show;
  354. wg->dev = dev;
  355. wg->regmap = pmic->regmap;
  356. ret = devm_gpiochip_add_data(dev, &wg->chip, wg);
  357. if (ret) {
  358. dev_err(dev, "Failed to add gpiochip: %d\n", ret);
  359. return ret;
  360. }
  361. ret = gpiochip_irqchip_add_nested(&wg->chip, &wcove_irqchip, 0,
  362. handle_simple_irq, IRQ_TYPE_NONE);
  363. if (ret) {
  364. dev_err(dev, "Failed to add irqchip: %d\n", ret);
  365. return ret;
  366. }
  367. virq = regmap_irq_get_virq(wg->regmap_irq_chip, irq);
  368. if (virq < 0) {
  369. dev_err(dev, "Failed to get virq by irq %d\n", irq);
  370. return virq;
  371. }
  372. ret = devm_request_threaded_irq(dev, virq, NULL,
  373. wcove_gpio_irq_handler, IRQF_ONESHOT, pdev->name, wg);
  374. if (ret) {
  375. dev_err(dev, "Failed to request irq %d\n", virq);
  376. return ret;
  377. }
  378. gpiochip_set_nested_irqchip(&wg->chip, &wcove_irqchip, virq);
  379. return 0;
  380. }
  381. /*
  382. * Whiskey Cove PMIC itself is a analog device(but with digital control
  383. * interface) providing power management support for other devices in
  384. * the accompanied SoC, so we have no .pm for Whiskey Cove GPIO driver.
  385. */
  386. static struct platform_driver wcove_gpio_driver = {
  387. .driver = {
  388. .name = "bxt_wcove_gpio",
  389. },
  390. .probe = wcove_gpio_probe,
  391. };
  392. module_platform_driver(wcove_gpio_driver);
  393. MODULE_AUTHOR("Ajay Thomas <ajay.thomas.david.rajamanickam@intel.com>");
  394. MODULE_AUTHOR("Bin Gao <bin.gao@intel.com>");
  395. MODULE_DESCRIPTION("Intel Whiskey Cove GPIO Driver");
  396. MODULE_LICENSE("GPL v2");
  397. MODULE_ALIAS("platform:bxt_wcove_gpio");