002-5.13-gpio-add-realtek-otto-gpio-support.patch 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. From f0f7d662e8514169c90d3d84cd6df773b2983088 Mon Sep 17 00:00:00 2001
  2. From: Sander Vanheule <[email protected]>
  3. Date: Tue, 30 Mar 2021 19:48:43 +0200
  4. Subject: gpio: Add Realtek Otto GPIO support
  5. Realtek MIPS SoCs (platform name Otto) have GPIO controllers with up to
  6. 64 GPIOs, divided over two banks. Each bank has a set of registers for
  7. 32 GPIOs, with support for edge-triggered interrupts.
  8. Each GPIO bank consists of four 8-bit GPIO ports (ABCD and EFGH). Most
  9. registers pack one bit per GPIO, except for the IMR register, which
  10. packs two bits per GPIO (AB-CD).
  11. Although the byte order is currently assumed to have port A..D at offset
  12. 0x0..0x3, this has been observed to be reversed on other, Lexra-based,
  13. SoCs (e.g. RTL8196E/97D/97F).
  14. Interrupt support is disabled for the fallback devicetree-compatible
  15. 'realtek,otto-gpio'. This allows for quick support of GPIO banks in
  16. which the byte order would be unknown. In this case, the port ordering
  17. in the IMR registers may not match the reversed order in the other
  18. registers (DCBA, and BA-DC or DC-BA).
  19. Signed-off-by: Sander Vanheule <[email protected]>
  20. Reviewed-by: Linus Walleij <[email protected]>
  21. Reviewed-by: Andy Shevchenko <[email protected]>
  22. Signed-off-by: Bartosz Golaszewski <[email protected]>
  23. ---
  24. drivers/gpio/Kconfig | 13 ++
  25. drivers/gpio/Makefile | 1 +
  26. drivers/gpio/gpio-realtek-otto.c | 325 +++++++++++++++++++++++++++++++++++++++
  27. 3 files changed, 339 insertions(+)
  28. create mode 100644 drivers/gpio/gpio-realtek-otto.c
  29. --- a/drivers/gpio/Kconfig
  30. +++ b/drivers/gpio/Kconfig
  31. @@ -489,6 +489,19 @@ config GPIO_RDA
  32. help
  33. Say Y here to support RDA Micro GPIO controller.
  34. +config GPIO_REALTEK_OTTO
  35. + tristate "Realtek Otto GPIO support"
  36. + depends on MACH_REALTEK_RTL
  37. + default MACH_REALTEK_RTL
  38. + select GPIO_GENERIC
  39. + select GPIOLIB_IRQCHIP
  40. + help
  41. + The GPIO controller on the Otto MIPS platform supports up to two
  42. + banks of 32 GPIOs, with edge triggered interrupts. The 32 GPIOs
  43. + are grouped in four 8-bit wide ports.
  44. +
  45. + When built as a module, the module will be called realtek_otto_gpio.
  46. +
  47. config GPIO_REG
  48. bool
  49. help
  50. --- a/drivers/gpio/Makefile
  51. +++ b/drivers/gpio/Makefile
  52. @@ -125,6 +125,7 @@ obj-$(CONFIG_GPIO_RC5T583) += gpio-rc5t
  53. obj-$(CONFIG_GPIO_RCAR) += gpio-rcar.o
  54. obj-$(CONFIG_GPIO_RDA) += gpio-rda.o
  55. obj-$(CONFIG_GPIO_RDC321X) += gpio-rdc321x.o
  56. +obj-$(CONFIG_GPIO_REALTEK_OTTO) += gpio-realtek-otto.o
  57. obj-$(CONFIG_GPIO_REG) += gpio-reg.o
  58. obj-$(CONFIG_ARCH_SA1100) += gpio-sa1100.o
  59. obj-$(CONFIG_GPIO_SAMA5D2_PIOBU) += gpio-sama5d2-piobu.o
  60. --- /dev/null
  61. +++ b/drivers/gpio/gpio-realtek-otto.c
  62. @@ -0,0 +1,325 @@
  63. +// SPDX-License-Identifier: GPL-2.0-only
  64. +
  65. +#include <linux/gpio/driver.h>
  66. +#include <linux/irq.h>
  67. +#include <linux/minmax.h>
  68. +#include <linux/mod_devicetable.h>
  69. +#include <linux/module.h>
  70. +#include <linux/platform_device.h>
  71. +#include <linux/property.h>
  72. +
  73. +/*
  74. + * Total register block size is 0x1C for one bank of four ports (A, B, C, D).
  75. + * An optional second bank, with ports E, F, G, and H, may be present, starting
  76. + * at register offset 0x1C.
  77. + */
  78. +
  79. +/*
  80. + * Pin select: (0) "normal", (1) "dedicate peripheral"
  81. + * Not used on RTL8380/RTL8390, peripheral selection is managed by control bits
  82. + * in the peripheral registers.
  83. + */
  84. +#define REALTEK_GPIO_REG_CNR 0x00
  85. +/* Clear bit (0) for input, set bit (1) for output */
  86. +#define REALTEK_GPIO_REG_DIR 0x08
  87. +#define REALTEK_GPIO_REG_DATA 0x0C
  88. +/* Read bit for IRQ status, write 1 to clear IRQ */
  89. +#define REALTEK_GPIO_REG_ISR 0x10
  90. +/* Two bits per GPIO in IMR registers */
  91. +#define REALTEK_GPIO_REG_IMR 0x14
  92. +#define REALTEK_GPIO_REG_IMR_AB 0x14
  93. +#define REALTEK_GPIO_REG_IMR_CD 0x18
  94. +#define REALTEK_GPIO_IMR_LINE_MASK GENMASK(1, 0)
  95. +#define REALTEK_GPIO_IRQ_EDGE_FALLING 1
  96. +#define REALTEK_GPIO_IRQ_EDGE_RISING 2
  97. +#define REALTEK_GPIO_IRQ_EDGE_BOTH 3
  98. +
  99. +#define REALTEK_GPIO_MAX 32
  100. +#define REALTEK_GPIO_PORTS_PER_BANK 4
  101. +
  102. +/**
  103. + * realtek_gpio_ctrl - Realtek Otto GPIO driver data
  104. + *
  105. + * @gc: Associated gpio_chip instance
  106. + * @base: Base address of the register block for a GPIO bank
  107. + * @lock: Lock for accessing the IRQ registers and values
  108. + * @intr_mask: Mask for interrupts lines
  109. + * @intr_type: Interrupt type selection
  110. + *
  111. + * Because the interrupt mask register (IMR) combines the function of IRQ type
  112. + * selection and masking, two extra values are stored. @intr_mask is used to
  113. + * mask/unmask the interrupts for a GPIO port, and @intr_type is used to store
  114. + * the selected interrupt types. The logical AND of these values is written to
  115. + * IMR on changes.
  116. + */
  117. +struct realtek_gpio_ctrl {
  118. + struct gpio_chip gc;
  119. + void __iomem *base;
  120. + raw_spinlock_t lock;
  121. + u16 intr_mask[REALTEK_GPIO_PORTS_PER_BANK];
  122. + u16 intr_type[REALTEK_GPIO_PORTS_PER_BANK];
  123. +};
  124. +
  125. +/* Expand with more flags as devices with other quirks are added */
  126. +enum realtek_gpio_flags {
  127. + /*
  128. + * Allow disabling interrupts, for cases where the port order is
  129. + * unknown. This may result in a port mismatch between ISR and IMR.
  130. + * An interrupt would appear to come from a different line than the
  131. + * line the IRQ handler was assigned to, causing uncaught interrupts.
  132. + */
  133. + GPIO_INTERRUPTS_DISABLED = BIT(0),
  134. +};
  135. +
  136. +static struct realtek_gpio_ctrl *irq_data_to_ctrl(struct irq_data *data)
  137. +{
  138. + struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
  139. +
  140. + return container_of(gc, struct realtek_gpio_ctrl, gc);
  141. +}
  142. +
  143. +/*
  144. + * Normal port order register access
  145. + *
  146. + * Port information is stored with the first port at offset 0, followed by the
  147. + * second, etc. Most registers store one bit per GPIO and use a u8 value per
  148. + * port. The two interrupt mask registers store two bits per GPIO, so use u16
  149. + * values.
  150. + */
  151. +static void realtek_gpio_write_imr(struct realtek_gpio_ctrl *ctrl,
  152. + unsigned int port, u16 irq_type, u16 irq_mask)
  153. +{
  154. + iowrite16(irq_type & irq_mask, ctrl->base + REALTEK_GPIO_REG_IMR + 2 * port);
  155. +}
  156. +
  157. +static void realtek_gpio_clear_isr(struct realtek_gpio_ctrl *ctrl,
  158. + unsigned int port, u8 mask)
  159. +{
  160. + iowrite8(mask, ctrl->base + REALTEK_GPIO_REG_ISR + port);
  161. +}
  162. +
  163. +static u8 realtek_gpio_read_isr(struct realtek_gpio_ctrl *ctrl, unsigned int port)
  164. +{
  165. + return ioread8(ctrl->base + REALTEK_GPIO_REG_ISR + port);
  166. +}
  167. +
  168. +/* Set the rising and falling edge mask bits for a GPIO port pin */
  169. +static u16 realtek_gpio_imr_bits(unsigned int pin, u16 value)
  170. +{
  171. + return (value & REALTEK_GPIO_IMR_LINE_MASK) << 2 * pin;
  172. +}
  173. +
  174. +static void realtek_gpio_irq_ack(struct irq_data *data)
  175. +{
  176. + struct realtek_gpio_ctrl *ctrl = irq_data_to_ctrl(data);
  177. + irq_hw_number_t line = irqd_to_hwirq(data);
  178. + unsigned int port = line / 8;
  179. + unsigned int port_pin = line % 8;
  180. +
  181. + realtek_gpio_clear_isr(ctrl, port, BIT(port_pin));
  182. +}
  183. +
  184. +static void realtek_gpio_irq_unmask(struct irq_data *data)
  185. +{
  186. + struct realtek_gpio_ctrl *ctrl = irq_data_to_ctrl(data);
  187. + unsigned int line = irqd_to_hwirq(data);
  188. + unsigned int port = line / 8;
  189. + unsigned int port_pin = line % 8;
  190. + unsigned long flags;
  191. + u16 m;
  192. +
  193. + raw_spin_lock_irqsave(&ctrl->lock, flags);
  194. + m = ctrl->intr_mask[port];
  195. + m |= realtek_gpio_imr_bits(port_pin, REALTEK_GPIO_IMR_LINE_MASK);
  196. + ctrl->intr_mask[port] = m;
  197. + realtek_gpio_write_imr(ctrl, port, ctrl->intr_type[port], m);
  198. + raw_spin_unlock_irqrestore(&ctrl->lock, flags);
  199. +}
  200. +
  201. +static void realtek_gpio_irq_mask(struct irq_data *data)
  202. +{
  203. + struct realtek_gpio_ctrl *ctrl = irq_data_to_ctrl(data);
  204. + unsigned int line = irqd_to_hwirq(data);
  205. + unsigned int port = line / 8;
  206. + unsigned int port_pin = line % 8;
  207. + unsigned long flags;
  208. + u16 m;
  209. +
  210. + raw_spin_lock_irqsave(&ctrl->lock, flags);
  211. + m = ctrl->intr_mask[port];
  212. + m &= ~realtek_gpio_imr_bits(port_pin, REALTEK_GPIO_IMR_LINE_MASK);
  213. + ctrl->intr_mask[port] = m;
  214. + realtek_gpio_write_imr(ctrl, port, ctrl->intr_type[port], m);
  215. + raw_spin_unlock_irqrestore(&ctrl->lock, flags);
  216. +}
  217. +
  218. +static int realtek_gpio_irq_set_type(struct irq_data *data, unsigned int flow_type)
  219. +{
  220. + struct realtek_gpio_ctrl *ctrl = irq_data_to_ctrl(data);
  221. + unsigned int line = irqd_to_hwirq(data);
  222. + unsigned int port = line / 8;
  223. + unsigned int port_pin = line % 8;
  224. + unsigned long flags;
  225. + u16 type, t;
  226. +
  227. + switch (flow_type & IRQ_TYPE_SENSE_MASK) {
  228. + case IRQ_TYPE_EDGE_FALLING:
  229. + type = REALTEK_GPIO_IRQ_EDGE_FALLING;
  230. + break;
  231. + case IRQ_TYPE_EDGE_RISING:
  232. + type = REALTEK_GPIO_IRQ_EDGE_RISING;
  233. + break;
  234. + case IRQ_TYPE_EDGE_BOTH:
  235. + type = REALTEK_GPIO_IRQ_EDGE_BOTH;
  236. + break;
  237. + default:
  238. + return -EINVAL;
  239. + }
  240. +
  241. + irq_set_handler_locked(data, handle_edge_irq);
  242. +
  243. + raw_spin_lock_irqsave(&ctrl->lock, flags);
  244. + t = ctrl->intr_type[port];
  245. + t &= ~realtek_gpio_imr_bits(port_pin, REALTEK_GPIO_IMR_LINE_MASK);
  246. + t |= realtek_gpio_imr_bits(port_pin, type);
  247. + ctrl->intr_type[port] = t;
  248. + realtek_gpio_write_imr(ctrl, port, t, ctrl->intr_mask[port]);
  249. + raw_spin_unlock_irqrestore(&ctrl->lock, flags);
  250. +
  251. + return 0;
  252. +}
  253. +
  254. +static void realtek_gpio_irq_handler(struct irq_desc *desc)
  255. +{
  256. + struct gpio_chip *gc = irq_desc_get_handler_data(desc);
  257. + struct realtek_gpio_ctrl *ctrl = gpiochip_get_data(gc);
  258. + struct irq_chip *irq_chip = irq_desc_get_chip(desc);
  259. + unsigned int lines_done;
  260. + unsigned int port_pin_count;
  261. + unsigned int irq;
  262. + unsigned long status;
  263. + int offset;
  264. +
  265. + chained_irq_enter(irq_chip, desc);
  266. +
  267. + for (lines_done = 0; lines_done < gc->ngpio; lines_done += 8) {
  268. + status = realtek_gpio_read_isr(ctrl, lines_done / 8);
  269. + port_pin_count = min(gc->ngpio - lines_done, 8U);
  270. + for_each_set_bit(offset, &status, port_pin_count) {
  271. + irq = irq_find_mapping(gc->irq.domain, offset);
  272. + generic_handle_irq(irq);
  273. + }
  274. + }
  275. +
  276. + chained_irq_exit(irq_chip, desc);
  277. +}
  278. +
  279. +static int realtek_gpio_irq_init(struct gpio_chip *gc)
  280. +{
  281. + struct realtek_gpio_ctrl *ctrl = gpiochip_get_data(gc);
  282. + unsigned int port;
  283. +
  284. + for (port = 0; (port * 8) < gc->ngpio; port++) {
  285. + realtek_gpio_write_imr(ctrl, port, 0, 0);
  286. + realtek_gpio_clear_isr(ctrl, port, GENMASK(7, 0));
  287. + }
  288. +
  289. + return 0;
  290. +}
  291. +
  292. +static struct irq_chip realtek_gpio_irq_chip = {
  293. + .name = "realtek-otto-gpio",
  294. + .irq_ack = realtek_gpio_irq_ack,
  295. + .irq_mask = realtek_gpio_irq_mask,
  296. + .irq_unmask = realtek_gpio_irq_unmask,
  297. + .irq_set_type = realtek_gpio_irq_set_type,
  298. +};
  299. +
  300. +static const struct of_device_id realtek_gpio_of_match[] = {
  301. + {
  302. + .compatible = "realtek,otto-gpio",
  303. + .data = (void *)GPIO_INTERRUPTS_DISABLED,
  304. + },
  305. + {
  306. + .compatible = "realtek,rtl8380-gpio",
  307. + },
  308. + {
  309. + .compatible = "realtek,rtl8390-gpio",
  310. + },
  311. + {}
  312. +};
  313. +MODULE_DEVICE_TABLE(of, realtek_gpio_of_match);
  314. +
  315. +static int realtek_gpio_probe(struct platform_device *pdev)
  316. +{
  317. + struct device *dev = &pdev->dev;
  318. + unsigned int dev_flags;
  319. + struct gpio_irq_chip *girq;
  320. + struct realtek_gpio_ctrl *ctrl;
  321. + u32 ngpios;
  322. + int err, irq;
  323. +
  324. + ctrl = devm_kzalloc(dev, sizeof(*ctrl), GFP_KERNEL);
  325. + if (!ctrl)
  326. + return -ENOMEM;
  327. +
  328. + dev_flags = (unsigned int) device_get_match_data(dev);
  329. +
  330. + ngpios = REALTEK_GPIO_MAX;
  331. + device_property_read_u32(dev, "ngpios", &ngpios);
  332. +
  333. + if (ngpios > REALTEK_GPIO_MAX) {
  334. + dev_err(&pdev->dev, "invalid ngpios (max. %d)\n",
  335. + REALTEK_GPIO_MAX);
  336. + return -EINVAL;
  337. + }
  338. +
  339. + ctrl->base = devm_platform_ioremap_resource(pdev, 0);
  340. + if (IS_ERR(ctrl->base))
  341. + return PTR_ERR(ctrl->base);
  342. +
  343. + raw_spin_lock_init(&ctrl->lock);
  344. +
  345. + err = bgpio_init(&ctrl->gc, dev, 4,
  346. + ctrl->base + REALTEK_GPIO_REG_DATA, NULL, NULL,
  347. + ctrl->base + REALTEK_GPIO_REG_DIR, NULL,
  348. + BGPIOF_BIG_ENDIAN_BYTE_ORDER);
  349. + if (err) {
  350. + dev_err(dev, "unable to init generic GPIO");
  351. + return err;
  352. + }
  353. +
  354. + ctrl->gc.ngpio = ngpios;
  355. + ctrl->gc.owner = THIS_MODULE;
  356. +
  357. + irq = platform_get_irq_optional(pdev, 0);
  358. + if (!(dev_flags & GPIO_INTERRUPTS_DISABLED) && irq > 0) {
  359. + girq = &ctrl->gc.irq;
  360. + girq->chip = &realtek_gpio_irq_chip;
  361. + girq->default_type = IRQ_TYPE_NONE;
  362. + girq->handler = handle_bad_irq;
  363. + girq->parent_handler = realtek_gpio_irq_handler;
  364. + girq->num_parents = 1;
  365. + girq->parents = devm_kcalloc(dev, girq->num_parents,
  366. + sizeof(*girq->parents), GFP_KERNEL);
  367. + if (!girq->parents)
  368. + return -ENOMEM;
  369. + girq->parents[0] = irq;
  370. + girq->init_hw = realtek_gpio_irq_init;
  371. + }
  372. +
  373. + return devm_gpiochip_add_data(dev, &ctrl->gc, ctrl);
  374. +}
  375. +
  376. +static struct platform_driver realtek_gpio_driver = {
  377. + .driver = {
  378. + .name = "realtek-otto-gpio",
  379. + .of_match_table = realtek_gpio_of_match,
  380. + },
  381. + .probe = realtek_gpio_probe,
  382. +};
  383. +module_platform_driver(realtek_gpio_driver);
  384. +
  385. +MODULE_DESCRIPTION("Realtek Otto GPIO support");
  386. +MODULE_AUTHOR("Sander Vanheule <[email protected]>");
  387. +MODULE_LICENSE("GPL v2");