1 // SPDX-License-Identifier: GPL-2.0
4 * Copyright 2017-2018 Cadence
7 * Jan Kotas <jank@cadence.com>
8 * Boris Brezillon <boris.brezillon@free-electrons.com>
11 #include <linux/gpio/driver.h>
12 #include <linux/clk.h>
13 #include <linux/interrupt.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/platform_device.h>
17 #include <linux/spinlock.h>
19 #define CDNS_GPIO_BYPASS_MODE 0x00
20 #define CDNS_GPIO_DIRECTION_MODE 0x04
21 #define CDNS_GPIO_OUTPUT_EN 0x08
22 #define CDNS_GPIO_OUTPUT_VALUE 0x0c
23 #define CDNS_GPIO_INPUT_VALUE 0x10
24 #define CDNS_GPIO_IRQ_MASK 0x14
25 #define CDNS_GPIO_IRQ_EN 0x18
26 #define CDNS_GPIO_IRQ_DIS 0x1c
27 #define CDNS_GPIO_IRQ_STATUS 0x20
28 #define CDNS_GPIO_IRQ_TYPE 0x24
29 #define CDNS_GPIO_IRQ_VALUE 0x28
30 #define CDNS_GPIO_IRQ_ANY_EDGE 0x2c
32 struct cdns_gpio_chip
{
39 static int cdns_gpio_request(struct gpio_chip
*chip
, unsigned int offset
)
41 struct cdns_gpio_chip
*cgpio
= gpiochip_get_data(chip
);
44 spin_lock_irqsave(&chip
->bgpio_lock
, flags
);
46 iowrite32(ioread32(cgpio
->regs
+ CDNS_GPIO_BYPASS_MODE
) & ~BIT(offset
),
47 cgpio
->regs
+ CDNS_GPIO_BYPASS_MODE
);
49 spin_unlock_irqrestore(&chip
->bgpio_lock
, flags
);
53 static void cdns_gpio_free(struct gpio_chip
*chip
, unsigned int offset
)
55 struct cdns_gpio_chip
*cgpio
= gpiochip_get_data(chip
);
58 spin_lock_irqsave(&chip
->bgpio_lock
, flags
);
60 iowrite32(ioread32(cgpio
->regs
+ CDNS_GPIO_BYPASS_MODE
) |
61 (BIT(offset
) & cgpio
->bypass_orig
),
62 cgpio
->regs
+ CDNS_GPIO_BYPASS_MODE
);
64 spin_unlock_irqrestore(&chip
->bgpio_lock
, flags
);
67 static void cdns_gpio_irq_mask(struct irq_data
*d
)
69 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(d
);
70 struct cdns_gpio_chip
*cgpio
= gpiochip_get_data(chip
);
72 iowrite32(BIT(d
->hwirq
), cgpio
->regs
+ CDNS_GPIO_IRQ_DIS
);
75 static void cdns_gpio_irq_unmask(struct irq_data
*d
)
77 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(d
);
78 struct cdns_gpio_chip
*cgpio
= gpiochip_get_data(chip
);
80 iowrite32(BIT(d
->hwirq
), cgpio
->regs
+ CDNS_GPIO_IRQ_EN
);
83 static int cdns_gpio_irq_set_type(struct irq_data
*d
, unsigned int type
)
85 struct gpio_chip
*chip
= irq_data_get_irq_chip_data(d
);
86 struct cdns_gpio_chip
*cgpio
= gpiochip_get_data(chip
);
90 u32 mask
= BIT(d
->hwirq
);
93 spin_lock_irqsave(&chip
->bgpio_lock
, flags
);
95 int_value
= ioread32(cgpio
->regs
+ CDNS_GPIO_IRQ_VALUE
) & ~mask
;
96 int_type
= ioread32(cgpio
->regs
+ CDNS_GPIO_IRQ_TYPE
) & ~mask
;
99 * The GPIO controller doesn't have an ACK register.
100 * All interrupt statuses are cleared on a status register read.
101 * Don't support edge interrupts for now.
104 if (type
== IRQ_TYPE_LEVEL_HIGH
) {
107 } else if (type
== IRQ_TYPE_LEVEL_LOW
) {
114 iowrite32(int_value
, cgpio
->regs
+ CDNS_GPIO_IRQ_VALUE
);
115 iowrite32(int_type
, cgpio
->regs
+ CDNS_GPIO_IRQ_TYPE
);
118 spin_unlock_irqrestore(&chip
->bgpio_lock
, flags
);
122 static void cdns_gpio_irq_handler(struct irq_desc
*desc
)
124 struct gpio_chip
*chip
= irq_desc_get_handler_data(desc
);
125 struct cdns_gpio_chip
*cgpio
= gpiochip_get_data(chip
);
126 struct irq_chip
*irqchip
= irq_desc_get_chip(desc
);
127 unsigned long status
;
130 chained_irq_enter(irqchip
, desc
);
132 status
= ioread32(cgpio
->regs
+ CDNS_GPIO_IRQ_STATUS
) &
133 ~ioread32(cgpio
->regs
+ CDNS_GPIO_IRQ_MASK
);
135 for_each_set_bit(hwirq
, &status
, chip
->ngpio
)
136 generic_handle_irq(irq_find_mapping(chip
->irq
.domain
, hwirq
));
138 chained_irq_exit(irqchip
, desc
);
141 static struct irq_chip cdns_gpio_irqchip
= {
143 .irq_mask
= cdns_gpio_irq_mask
,
144 .irq_unmask
= cdns_gpio_irq_unmask
,
145 .irq_set_type
= cdns_gpio_irq_set_type
148 static int cdns_gpio_probe(struct platform_device
*pdev
)
150 struct cdns_gpio_chip
*cgpio
;
151 struct resource
*res
;
156 cgpio
= devm_kzalloc(&pdev
->dev
, sizeof(*cgpio
), GFP_KERNEL
);
160 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
161 cgpio
->regs
= devm_ioremap_resource(&pdev
->dev
, res
);
162 if (IS_ERR(cgpio
->regs
))
163 return PTR_ERR(cgpio
->regs
);
165 of_property_read_u32(pdev
->dev
.of_node
, "ngpios", &num_gpios
);
167 if (num_gpios
> 32) {
168 dev_err(&pdev
->dev
, "ngpios must be less or equal 32\n");
173 * Set all pins as inputs by default, otherwise:
174 * gpiochip_lock_as_irq:
175 * tried to flag a GPIO set as output for IRQ
176 * Generic GPIO driver stores the direction value internally,
177 * so it needs to be changed before bgpio_init() is called.
179 dir_prev
= ioread32(cgpio
->regs
+ CDNS_GPIO_DIRECTION_MODE
);
180 iowrite32(GENMASK(num_gpios
- 1, 0),
181 cgpio
->regs
+ CDNS_GPIO_DIRECTION_MODE
);
183 ret
= bgpio_init(&cgpio
->gc
, &pdev
->dev
, 4,
184 cgpio
->regs
+ CDNS_GPIO_INPUT_VALUE
,
185 cgpio
->regs
+ CDNS_GPIO_OUTPUT_VALUE
,
188 cgpio
->regs
+ CDNS_GPIO_DIRECTION_MODE
,
189 BGPIOF_READ_OUTPUT_REG_SET
);
191 dev_err(&pdev
->dev
, "Failed to register generic gpio, %d\n",
196 cgpio
->gc
.label
= dev_name(&pdev
->dev
);
197 cgpio
->gc
.ngpio
= num_gpios
;
198 cgpio
->gc
.parent
= &pdev
->dev
;
200 cgpio
->gc
.owner
= THIS_MODULE
;
201 cgpio
->gc
.request
= cdns_gpio_request
;
202 cgpio
->gc
.free
= cdns_gpio_free
;
204 cgpio
->pclk
= devm_clk_get(&pdev
->dev
, NULL
);
205 if (IS_ERR(cgpio
->pclk
)) {
206 ret
= PTR_ERR(cgpio
->pclk
);
208 "Failed to retrieve peripheral clock, %d\n", ret
);
212 ret
= clk_prepare_enable(cgpio
->pclk
);
215 "Failed to enable the peripheral clock, %d\n", ret
);
219 ret
= devm_gpiochip_add_data(&pdev
->dev
, &cgpio
->gc
, cgpio
);
221 dev_err(&pdev
->dev
, "Could not register gpiochip, %d\n", ret
);
222 goto err_disable_clk
;
228 irq
= platform_get_irq(pdev
, 0);
230 ret
= gpiochip_irqchip_add(&cgpio
->gc
, &cdns_gpio_irqchip
,
234 dev_err(&pdev
->dev
, "Could not add irqchip, %d\n",
236 goto err_disable_clk
;
238 gpiochip_set_chained_irqchip(&cgpio
->gc
, &cdns_gpio_irqchip
,
239 irq
, cdns_gpio_irq_handler
);
242 cgpio
->bypass_orig
= ioread32(cgpio
->regs
+ CDNS_GPIO_BYPASS_MODE
);
245 * Enable gpio outputs, ignored for input direction
247 iowrite32(GENMASK(num_gpios
- 1, 0),
248 cgpio
->regs
+ CDNS_GPIO_OUTPUT_EN
);
249 iowrite32(0, cgpio
->regs
+ CDNS_GPIO_BYPASS_MODE
);
251 platform_set_drvdata(pdev
, cgpio
);
255 clk_disable_unprepare(cgpio
->pclk
);
258 iowrite32(dir_prev
, cgpio
->regs
+ CDNS_GPIO_DIRECTION_MODE
);
263 static int cdns_gpio_remove(struct platform_device
*pdev
)
265 struct cdns_gpio_chip
*cgpio
= platform_get_drvdata(pdev
);
267 iowrite32(cgpio
->bypass_orig
, cgpio
->regs
+ CDNS_GPIO_BYPASS_MODE
);
268 clk_disable_unprepare(cgpio
->pclk
);
273 static const struct of_device_id cdns_of_ids
[] = {
274 { .compatible
= "cdns,gpio-r1p02" },
278 static struct platform_driver cdns_gpio_driver
= {
281 .of_match_table
= cdns_of_ids
,
283 .probe
= cdns_gpio_probe
,
284 .remove
= cdns_gpio_remove
,
286 module_platform_driver(cdns_gpio_driver
);
288 MODULE_AUTHOR("Jan Kotas <jank@cadence.com>");
289 MODULE_DESCRIPTION("Cadence GPIO driver");
290 MODULE_LICENSE("GPL v2");
291 MODULE_ALIAS("platform:cdns-gpio");