1813e7d36SLinus Walleij // SPDX-License-Identifier: GPL-2.0
2813e7d36SLinus Walleij //
3813e7d36SLinus Walleij // IXP4 GPIO driver
4813e7d36SLinus Walleij // Copyright (C) 2019 Linus Walleij <linus.walleij@linaro.org>
5813e7d36SLinus Walleij //
6813e7d36SLinus Walleij // based on previous work and know-how from:
7813e7d36SLinus Walleij // Deepak Saxena <dsaxena@plexity.net>
8813e7d36SLinus Walleij
9813e7d36SLinus Walleij #include <linux/gpio/driver.h>
10813e7d36SLinus Walleij #include <linux/io.h>
11813e7d36SLinus Walleij #include <linux/irq.h>
12813e7d36SLinus Walleij #include <linux/irqdomain.h>
13813e7d36SLinus Walleij #include <linux/irqchip.h>
14e4bfb0ffSLinus Walleij #include <linux/of_irq.h>
15813e7d36SLinus Walleij #include <linux/platform_device.h>
16813e7d36SLinus Walleij #include <linux/bitops.h>
17813e7d36SLinus Walleij
18813e7d36SLinus Walleij #define IXP4XX_REG_GPOUT 0x00
19813e7d36SLinus Walleij #define IXP4XX_REG_GPOE 0x04
20813e7d36SLinus Walleij #define IXP4XX_REG_GPIN 0x08
21813e7d36SLinus Walleij #define IXP4XX_REG_GPIS 0x0C
22813e7d36SLinus Walleij #define IXP4XX_REG_GPIT1 0x10
23813e7d36SLinus Walleij #define IXP4XX_REG_GPIT2 0x14
24813e7d36SLinus Walleij #define IXP4XX_REG_GPCLK 0x18
25813e7d36SLinus Walleij #define IXP4XX_REG_GPDBSEL 0x1C
26813e7d36SLinus Walleij
27813e7d36SLinus Walleij /*
28813e7d36SLinus Walleij * The hardware uses 3 bits to indicate interrupt "style".
29813e7d36SLinus Walleij * we clear and set these three bits accordingly. The lower 24
30813e7d36SLinus Walleij * bits in two registers (GPIT1 and GPIT2) are used to set up
31813e7d36SLinus Walleij * the style for 8 lines each for a total of 16 GPIO lines.
32813e7d36SLinus Walleij */
33813e7d36SLinus Walleij #define IXP4XX_GPIO_STYLE_ACTIVE_HIGH 0x0
34813e7d36SLinus Walleij #define IXP4XX_GPIO_STYLE_ACTIVE_LOW 0x1
35813e7d36SLinus Walleij #define IXP4XX_GPIO_STYLE_RISING_EDGE 0x2
36813e7d36SLinus Walleij #define IXP4XX_GPIO_STYLE_FALLING_EDGE 0x3
37813e7d36SLinus Walleij #define IXP4XX_GPIO_STYLE_TRANSITIONAL 0x4
38813e7d36SLinus Walleij #define IXP4XX_GPIO_STYLE_MASK GENMASK(2, 0)
39813e7d36SLinus Walleij #define IXP4XX_GPIO_STYLE_SIZE 3
40813e7d36SLinus Walleij
41813e7d36SLinus Walleij /**
42813e7d36SLinus Walleij * struct ixp4xx_gpio - IXP4 GPIO state container
43813e7d36SLinus Walleij * @dev: containing device for this instance
44813e7d36SLinus Walleij * @fwnode: the fwnode for this GPIO chip
45813e7d36SLinus Walleij * @gc: gpiochip for this instance
46813e7d36SLinus Walleij * @base: remapped I/O-memory base
47813e7d36SLinus Walleij * @irq_edge: Each bit represents an IRQ: 1: edge-triggered,
48813e7d36SLinus Walleij * 0: level triggered
49813e7d36SLinus Walleij */
50813e7d36SLinus Walleij struct ixp4xx_gpio {
51813e7d36SLinus Walleij struct device *dev;
52813e7d36SLinus Walleij struct fwnode_handle *fwnode;
53813e7d36SLinus Walleij struct gpio_chip gc;
54813e7d36SLinus Walleij void __iomem *base;
55813e7d36SLinus Walleij unsigned long long irq_edge;
56813e7d36SLinus Walleij };
57813e7d36SLinus Walleij
ixp4xx_gpio_irq_ack(struct irq_data * d)58813e7d36SLinus Walleij static void ixp4xx_gpio_irq_ack(struct irq_data *d)
59813e7d36SLinus Walleij {
60aa7d618aSLinus Walleij struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
61aa7d618aSLinus Walleij struct ixp4xx_gpio *g = gpiochip_get_data(gc);
62813e7d36SLinus Walleij
63813e7d36SLinus Walleij __raw_writel(BIT(d->hwirq), g->base + IXP4XX_REG_GPIS);
64813e7d36SLinus Walleij }
65813e7d36SLinus Walleij
ixp4xx_gpio_mask_irq(struct irq_data * d)6694e9bc73SLinus Walleij static void ixp4xx_gpio_mask_irq(struct irq_data *d)
6794e9bc73SLinus Walleij {
6894e9bc73SLinus Walleij struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
6994e9bc73SLinus Walleij
7094e9bc73SLinus Walleij irq_chip_mask_parent(d);
7194e9bc73SLinus Walleij gpiochip_disable_irq(gc, d->hwirq);
7294e9bc73SLinus Walleij }
7394e9bc73SLinus Walleij
ixp4xx_gpio_irq_unmask(struct irq_data * d)74813e7d36SLinus Walleij static void ixp4xx_gpio_irq_unmask(struct irq_data *d)
75813e7d36SLinus Walleij {
76aa7d618aSLinus Walleij struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
77aa7d618aSLinus Walleij struct ixp4xx_gpio *g = gpiochip_get_data(gc);
78813e7d36SLinus Walleij
79813e7d36SLinus Walleij /* ACK when unmasking if not edge-triggered */
80813e7d36SLinus Walleij if (!(g->irq_edge & BIT(d->hwirq)))
81813e7d36SLinus Walleij ixp4xx_gpio_irq_ack(d);
82813e7d36SLinus Walleij
8394e9bc73SLinus Walleij gpiochip_enable_irq(gc, d->hwirq);
84813e7d36SLinus Walleij irq_chip_unmask_parent(d);
85813e7d36SLinus Walleij }
86813e7d36SLinus Walleij
ixp4xx_gpio_irq_set_type(struct irq_data * d,unsigned int type)87813e7d36SLinus Walleij static int ixp4xx_gpio_irq_set_type(struct irq_data *d, unsigned int type)
88813e7d36SLinus Walleij {
89aa7d618aSLinus Walleij struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
90aa7d618aSLinus Walleij struct ixp4xx_gpio *g = gpiochip_get_data(gc);
91813e7d36SLinus Walleij int line = d->hwirq;
92813e7d36SLinus Walleij unsigned long flags;
93813e7d36SLinus Walleij u32 int_style;
94813e7d36SLinus Walleij u32 int_reg;
95813e7d36SLinus Walleij u32 val;
96813e7d36SLinus Walleij
97813e7d36SLinus Walleij switch (type) {
98813e7d36SLinus Walleij case IRQ_TYPE_EDGE_BOTH:
99813e7d36SLinus Walleij irq_set_handler_locked(d, handle_edge_irq);
100813e7d36SLinus Walleij int_style = IXP4XX_GPIO_STYLE_TRANSITIONAL;
101813e7d36SLinus Walleij g->irq_edge |= BIT(d->hwirq);
102813e7d36SLinus Walleij break;
103813e7d36SLinus Walleij case IRQ_TYPE_EDGE_RISING:
104813e7d36SLinus Walleij irq_set_handler_locked(d, handle_edge_irq);
105813e7d36SLinus Walleij int_style = IXP4XX_GPIO_STYLE_RISING_EDGE;
106813e7d36SLinus Walleij g->irq_edge |= BIT(d->hwirq);
107813e7d36SLinus Walleij break;
108813e7d36SLinus Walleij case IRQ_TYPE_EDGE_FALLING:
109813e7d36SLinus Walleij irq_set_handler_locked(d, handle_edge_irq);
110813e7d36SLinus Walleij int_style = IXP4XX_GPIO_STYLE_FALLING_EDGE;
111813e7d36SLinus Walleij g->irq_edge |= BIT(d->hwirq);
112813e7d36SLinus Walleij break;
113813e7d36SLinus Walleij case IRQ_TYPE_LEVEL_HIGH:
114813e7d36SLinus Walleij irq_set_handler_locked(d, handle_level_irq);
115813e7d36SLinus Walleij int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH;
116813e7d36SLinus Walleij g->irq_edge &= ~BIT(d->hwirq);
117813e7d36SLinus Walleij break;
118813e7d36SLinus Walleij case IRQ_TYPE_LEVEL_LOW:
119813e7d36SLinus Walleij irq_set_handler_locked(d, handle_level_irq);
120813e7d36SLinus Walleij int_style = IXP4XX_GPIO_STYLE_ACTIVE_LOW;
121813e7d36SLinus Walleij g->irq_edge &= ~BIT(d->hwirq);
122813e7d36SLinus Walleij break;
123813e7d36SLinus Walleij default:
124813e7d36SLinus Walleij return -EINVAL;
125813e7d36SLinus Walleij }
126813e7d36SLinus Walleij
127813e7d36SLinus Walleij if (line >= 8) {
128813e7d36SLinus Walleij /* pins 8-15 */
129813e7d36SLinus Walleij line -= 8;
130813e7d36SLinus Walleij int_reg = IXP4XX_REG_GPIT2;
131813e7d36SLinus Walleij } else {
132813e7d36SLinus Walleij /* pins 0-7 */
133813e7d36SLinus Walleij int_reg = IXP4XX_REG_GPIT1;
134813e7d36SLinus Walleij }
135813e7d36SLinus Walleij
1363c938cc5SSchspa Shi raw_spin_lock_irqsave(&g->gc.bgpio_lock, flags);
137813e7d36SLinus Walleij
138813e7d36SLinus Walleij /* Clear the style for the appropriate pin */
139813e7d36SLinus Walleij val = __raw_readl(g->base + int_reg);
140813e7d36SLinus Walleij val &= ~(IXP4XX_GPIO_STYLE_MASK << (line * IXP4XX_GPIO_STYLE_SIZE));
141813e7d36SLinus Walleij __raw_writel(val, g->base + int_reg);
142813e7d36SLinus Walleij
143813e7d36SLinus Walleij __raw_writel(BIT(line), g->base + IXP4XX_REG_GPIS);
144813e7d36SLinus Walleij
145813e7d36SLinus Walleij /* Set the new style */
146813e7d36SLinus Walleij val = __raw_readl(g->base + int_reg);
147813e7d36SLinus Walleij val |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE));
148813e7d36SLinus Walleij __raw_writel(val, g->base + int_reg);
149813e7d36SLinus Walleij
150813e7d36SLinus Walleij /* Force-configure this line as an input */
151813e7d36SLinus Walleij val = __raw_readl(g->base + IXP4XX_REG_GPOE);
152813e7d36SLinus Walleij val |= BIT(d->hwirq);
153813e7d36SLinus Walleij __raw_writel(val, g->base + IXP4XX_REG_GPOE);
154813e7d36SLinus Walleij
1553c938cc5SSchspa Shi raw_spin_unlock_irqrestore(&g->gc.bgpio_lock, flags);
156813e7d36SLinus Walleij
157813e7d36SLinus Walleij /* This parent only accept level high (asserted) */
158813e7d36SLinus Walleij return irq_chip_set_type_parent(d, IRQ_TYPE_LEVEL_HIGH);
159813e7d36SLinus Walleij }
160813e7d36SLinus Walleij
16194e9bc73SLinus Walleij static const struct irq_chip ixp4xx_gpio_irqchip = {
162813e7d36SLinus Walleij .name = "IXP4GPIO",
163813e7d36SLinus Walleij .irq_ack = ixp4xx_gpio_irq_ack,
16494e9bc73SLinus Walleij .irq_mask = ixp4xx_gpio_mask_irq,
165813e7d36SLinus Walleij .irq_unmask = ixp4xx_gpio_irq_unmask,
166813e7d36SLinus Walleij .irq_set_type = ixp4xx_gpio_irq_set_type,
16794e9bc73SLinus Walleij .flags = IRQCHIP_IMMUTABLE,
16894e9bc73SLinus Walleij GPIOCHIP_IRQ_RESOURCE_HELPERS,
169813e7d36SLinus Walleij };
170813e7d36SLinus Walleij
ixp4xx_gpio_child_to_parent_hwirq(struct gpio_chip * gc,unsigned int child,unsigned int child_type,unsigned int * parent,unsigned int * parent_type)171aa7d618aSLinus Walleij static int ixp4xx_gpio_child_to_parent_hwirq(struct gpio_chip *gc,
172aa7d618aSLinus Walleij unsigned int child,
173aa7d618aSLinus Walleij unsigned int child_type,
174aa7d618aSLinus Walleij unsigned int *parent,
175aa7d618aSLinus Walleij unsigned int *parent_type)
176813e7d36SLinus Walleij {
177aa7d618aSLinus Walleij /* All these interrupts are level high in the CPU */
178aa7d618aSLinus Walleij *parent_type = IRQ_TYPE_LEVEL_HIGH;
179813e7d36SLinus Walleij
180aa7d618aSLinus Walleij /* GPIO lines 0..12 have dedicated IRQs */
181aa7d618aSLinus Walleij if (child == 0) {
182aa7d618aSLinus Walleij *parent = 6;
183aa7d618aSLinus Walleij return 0;
184813e7d36SLinus Walleij }
185aa7d618aSLinus Walleij if (child == 1) {
186aa7d618aSLinus Walleij *parent = 7;
187aa7d618aSLinus Walleij return 0;
188813e7d36SLinus Walleij }
189aa7d618aSLinus Walleij if (child >= 2 && child <= 12) {
190aa7d618aSLinus Walleij *parent = child + 17;
191813e7d36SLinus Walleij return 0;
192813e7d36SLinus Walleij }
193813e7d36SLinus Walleij return -EINVAL;
194813e7d36SLinus Walleij }
195813e7d36SLinus Walleij
ixp4xx_gpio_probe(struct platform_device * pdev)196813e7d36SLinus Walleij static int ixp4xx_gpio_probe(struct platform_device *pdev)
197813e7d36SLinus Walleij {
198813e7d36SLinus Walleij unsigned long flags;
199813e7d36SLinus Walleij struct device *dev = &pdev->dev;
200e4bfb0ffSLinus Walleij struct device_node *np = dev->of_node;
201813e7d36SLinus Walleij struct irq_domain *parent;
202813e7d36SLinus Walleij struct ixp4xx_gpio *g;
203aa7d618aSLinus Walleij struct gpio_irq_chip *girq;
204c83227a5SLinus Walleij struct device_node *irq_parent;
205813e7d36SLinus Walleij int ret;
206813e7d36SLinus Walleij
207813e7d36SLinus Walleij g = devm_kzalloc(dev, sizeof(*g), GFP_KERNEL);
208813e7d36SLinus Walleij if (!g)
209813e7d36SLinus Walleij return -ENOMEM;
210813e7d36SLinus Walleij g->dev = dev;
211813e7d36SLinus Walleij
212f8d1af24SYang Li g->base = devm_platform_ioremap_resource(pdev, 0);
21361059b70SDing Xiang if (IS_ERR(g->base))
214813e7d36SLinus Walleij return PTR_ERR(g->base);
215813e7d36SLinus Walleij
216aa7d618aSLinus Walleij irq_parent = of_irq_find_parent(np);
217aa7d618aSLinus Walleij if (!irq_parent) {
218aa7d618aSLinus Walleij dev_err(dev, "no IRQ parent node\n");
219aa7d618aSLinus Walleij return -ENODEV;
220aa7d618aSLinus Walleij }
221aa7d618aSLinus Walleij parent = irq_find_host(irq_parent);
222aa7d618aSLinus Walleij if (!parent) {
223aa7d618aSLinus Walleij dev_err(dev, "no IRQ parent domain\n");
224aa7d618aSLinus Walleij return -ENODEV;
225aa7d618aSLinus Walleij }
226aa7d618aSLinus Walleij g->fwnode = of_node_to_fwnode(np);
227aa7d618aSLinus Walleij
228aa7d618aSLinus Walleij /*
229813e7d36SLinus Walleij * Make sure GPIO 14 and 15 are NOT used as clocks but GPIO on
230813e7d36SLinus Walleij * specific machines.
231813e7d36SLinus Walleij */
2324f3e79b3SLinus Walleij if (of_machine_is_compatible("dlink,dsm-g600-a") ||
2334f3e79b3SLinus Walleij of_machine_is_compatible("iom,nas-100d"))
234813e7d36SLinus Walleij __raw_writel(0x0, g->base + IXP4XX_REG_GPCLK);
235813e7d36SLinus Walleij
236813e7d36SLinus Walleij /*
237813e7d36SLinus Walleij * This is a very special big-endian ARM issue: when the IXP4xx is
238813e7d36SLinus Walleij * run in big endian mode, all registers in the machine are switched
239813e7d36SLinus Walleij * around to the CPU-native endianness. As you see mostly in the
240813e7d36SLinus Walleij * driver we use __raw_readl()/__raw_writel() to access the registers
241813e7d36SLinus Walleij * in the appropriate order. With the GPIO library we need to specify
242813e7d36SLinus Walleij * byte order explicitly, so this flag needs to be set when compiling
243813e7d36SLinus Walleij * for big endian.
244813e7d36SLinus Walleij */
245813e7d36SLinus Walleij #if defined(CONFIG_CPU_BIG_ENDIAN)
246813e7d36SLinus Walleij flags = BGPIOF_BIG_ENDIAN_BYTE_ORDER;
247813e7d36SLinus Walleij #else
248813e7d36SLinus Walleij flags = 0;
249813e7d36SLinus Walleij #endif
250813e7d36SLinus Walleij
251813e7d36SLinus Walleij /* Populate and register gpio chip */
252813e7d36SLinus Walleij ret = bgpio_init(&g->gc, dev, 4,
253813e7d36SLinus Walleij g->base + IXP4XX_REG_GPIN,
254813e7d36SLinus Walleij g->base + IXP4XX_REG_GPOUT,
255813e7d36SLinus Walleij NULL,
256813e7d36SLinus Walleij NULL,
257813e7d36SLinus Walleij g->base + IXP4XX_REG_GPOE,
258813e7d36SLinus Walleij flags);
259813e7d36SLinus Walleij if (ret) {
260813e7d36SLinus Walleij dev_err(dev, "unable to init generic GPIO\n");
261813e7d36SLinus Walleij return ret;
262813e7d36SLinus Walleij }
263813e7d36SLinus Walleij g->gc.ngpio = 16;
264813e7d36SLinus Walleij g->gc.label = "IXP4XX_GPIO_CHIP";
265813e7d36SLinus Walleij /*
266813e7d36SLinus Walleij * TODO: when we have migrated to device tree and all GPIOs
267813e7d36SLinus Walleij * are fetched using phandles, set this to -1 to get rid of
268813e7d36SLinus Walleij * the fixed gpiochip base.
269813e7d36SLinus Walleij */
270813e7d36SLinus Walleij g->gc.base = 0;
271813e7d36SLinus Walleij g->gc.parent = &pdev->dev;
272813e7d36SLinus Walleij g->gc.owner = THIS_MODULE;
273813e7d36SLinus Walleij
274aa7d618aSLinus Walleij girq = &g->gc.irq;
27594e9bc73SLinus Walleij gpio_irq_chip_set_chip(girq, &ixp4xx_gpio_irqchip);
276aa7d618aSLinus Walleij girq->fwnode = g->fwnode;
277aa7d618aSLinus Walleij girq->parent_domain = parent;
278aa7d618aSLinus Walleij girq->child_to_parent_hwirq = ixp4xx_gpio_child_to_parent_hwirq;
279aa7d618aSLinus Walleij girq->handler = handle_bad_irq;
280aa7d618aSLinus Walleij girq->default_type = IRQ_TYPE_NONE;
281aa7d618aSLinus Walleij
282813e7d36SLinus Walleij ret = devm_gpiochip_add_data(dev, &g->gc, g);
283813e7d36SLinus Walleij if (ret) {
284813e7d36SLinus Walleij dev_err(dev, "failed to add SoC gpiochip\n");
285813e7d36SLinus Walleij return ret;
286813e7d36SLinus Walleij }
287813e7d36SLinus Walleij
288813e7d36SLinus Walleij platform_set_drvdata(pdev, g);
289aa7d618aSLinus Walleij dev_info(dev, "IXP4 GPIO registered\n");
290813e7d36SLinus Walleij
291813e7d36SLinus Walleij return 0;
292813e7d36SLinus Walleij }
293813e7d36SLinus Walleij
294e4bfb0ffSLinus Walleij static const struct of_device_id ixp4xx_gpio_of_match[] = {
295e4bfb0ffSLinus Walleij {
296e4bfb0ffSLinus Walleij .compatible = "intel,ixp4xx-gpio",
297e4bfb0ffSLinus Walleij },
298e4bfb0ffSLinus Walleij {},
299e4bfb0ffSLinus Walleij };
300e4bfb0ffSLinus Walleij
301e4bfb0ffSLinus Walleij
302813e7d36SLinus Walleij static struct platform_driver ixp4xx_gpio_driver = {
303813e7d36SLinus Walleij .driver = {
304813e7d36SLinus Walleij .name = "ixp4xx-gpio",
305*07d93cbbSZhu Wang .of_match_table = ixp4xx_gpio_of_match,
306813e7d36SLinus Walleij },
307813e7d36SLinus Walleij .probe = ixp4xx_gpio_probe,
308813e7d36SLinus Walleij };
309813e7d36SLinus Walleij builtin_platform_driver(ixp4xx_gpio_driver);
310