2 * ZTE ZX296702 GPIO driver
4 * Author: Jun Nie <jun.nie@linaro.org>
6 * Copyright (C) 2015 Linaro Ltd.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 #include <linux/bitops.h>
13 #include <linux/device.h>
14 #include <linux/errno.h>
15 #include <linux/gpio/driver.h>
16 #include <linux/irqchip/chained_irq.h>
17 #include <linux/init.h>
19 #include <linux/pinctrl/consumer.h>
20 #include <linux/platform_device.h>
22 #include <linux/slab.h>
23 #include <linux/spinlock.h>
25 #define ZX_GPIO_DIR 0x00
26 #define ZX_GPIO_IVE 0x04
27 #define ZX_GPIO_IV 0x08
28 #define ZX_GPIO_IEP 0x0C
29 #define ZX_GPIO_IEN 0x10
30 #define ZX_GPIO_DI 0x14
31 #define ZX_GPIO_DO1 0x18
32 #define ZX_GPIO_DO0 0x1C
33 #define ZX_GPIO_DO 0x20
35 #define ZX_GPIO_IM 0x28
36 #define ZX_GPIO_IE 0x2C
38 #define ZX_GPIO_MIS 0x30
39 #define ZX_GPIO_IC 0x34
50 static int zx_direction_input(struct gpio_chip
*gc
, unsigned offset
)
52 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
56 if (offset
>= gc
->ngpio
)
59 raw_spin_lock_irqsave(&chip
->lock
, flags
);
60 gpiodir
= readw_relaxed(chip
->base
+ ZX_GPIO_DIR
);
61 gpiodir
&= ~BIT(offset
);
62 writew_relaxed(gpiodir
, chip
->base
+ ZX_GPIO_DIR
);
63 raw_spin_unlock_irqrestore(&chip
->lock
, flags
);
68 static int zx_direction_output(struct gpio_chip
*gc
, unsigned offset
,
71 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
75 if (offset
>= gc
->ngpio
)
78 raw_spin_lock_irqsave(&chip
->lock
, flags
);
79 gpiodir
= readw_relaxed(chip
->base
+ ZX_GPIO_DIR
);
80 gpiodir
|= BIT(offset
);
81 writew_relaxed(gpiodir
, chip
->base
+ ZX_GPIO_DIR
);
84 writew_relaxed(BIT(offset
), chip
->base
+ ZX_GPIO_DO1
);
86 writew_relaxed(BIT(offset
), chip
->base
+ ZX_GPIO_DO0
);
87 raw_spin_unlock_irqrestore(&chip
->lock
, flags
);
92 static int zx_get_value(struct gpio_chip
*gc
, unsigned offset
)
94 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
96 return !!(readw_relaxed(chip
->base
+ ZX_GPIO_DI
) & BIT(offset
));
99 static void zx_set_value(struct gpio_chip
*gc
, unsigned offset
, int value
)
101 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
104 writew_relaxed(BIT(offset
), chip
->base
+ ZX_GPIO_DO1
);
106 writew_relaxed(BIT(offset
), chip
->base
+ ZX_GPIO_DO0
);
109 static int zx_irq_type(struct irq_data
*d
, unsigned trigger
)
111 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
112 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
113 int offset
= irqd_to_hwirq(d
);
115 u16 gpiois
, gpioi_epos
, gpioi_eneg
, gpioiev
;
116 u16 bit
= BIT(offset
);
118 if (offset
< 0 || offset
>= ZX_GPIO_NR
)
121 raw_spin_lock_irqsave(&chip
->lock
, flags
);
123 gpioiev
= readw_relaxed(chip
->base
+ ZX_GPIO_IV
);
124 gpiois
= readw_relaxed(chip
->base
+ ZX_GPIO_IVE
);
125 gpioi_epos
= readw_relaxed(chip
->base
+ ZX_GPIO_IEP
);
126 gpioi_eneg
= readw_relaxed(chip
->base
+ ZX_GPIO_IEN
);
128 if (trigger
& (IRQ_TYPE_LEVEL_HIGH
| IRQ_TYPE_LEVEL_LOW
)) {
130 if (trigger
& IRQ_TYPE_LEVEL_HIGH
)
137 if ((trigger
& IRQ_TYPE_EDGE_BOTH
) == IRQ_TYPE_EDGE_BOTH
) {
141 if (trigger
& IRQ_TYPE_EDGE_RISING
) {
144 } else if (trigger
& IRQ_TYPE_EDGE_FALLING
) {
150 writew_relaxed(gpiois
, chip
->base
+ ZX_GPIO_IVE
);
151 writew_relaxed(gpioi_epos
, chip
->base
+ ZX_GPIO_IEP
);
152 writew_relaxed(gpioi_eneg
, chip
->base
+ ZX_GPIO_IEN
);
153 writew_relaxed(gpioiev
, chip
->base
+ ZX_GPIO_IV
);
154 raw_spin_unlock_irqrestore(&chip
->lock
, flags
);
159 static void zx_irq_handler(struct irq_desc
*desc
)
161 unsigned long pending
;
163 struct gpio_chip
*gc
= irq_desc_get_handler_data(desc
);
164 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
165 struct irq_chip
*irqchip
= irq_desc_get_chip(desc
);
167 chained_irq_enter(irqchip
, desc
);
169 pending
= readw_relaxed(chip
->base
+ ZX_GPIO_MIS
);
170 writew_relaxed(pending
, chip
->base
+ ZX_GPIO_IC
);
172 for_each_set_bit(offset
, &pending
, ZX_GPIO_NR
)
173 generic_handle_irq(irq_find_mapping(gc
->irqdomain
,
177 chained_irq_exit(irqchip
, desc
);
180 static void zx_irq_mask(struct irq_data
*d
)
182 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
183 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
184 u16 mask
= BIT(irqd_to_hwirq(d
) % ZX_GPIO_NR
);
187 raw_spin_lock(&chip
->lock
);
188 gpioie
= readw_relaxed(chip
->base
+ ZX_GPIO_IM
) | mask
;
189 writew_relaxed(gpioie
, chip
->base
+ ZX_GPIO_IM
);
190 gpioie
= readw_relaxed(chip
->base
+ ZX_GPIO_IE
) & ~mask
;
191 writew_relaxed(gpioie
, chip
->base
+ ZX_GPIO_IE
);
192 raw_spin_unlock(&chip
->lock
);
195 static void zx_irq_unmask(struct irq_data
*d
)
197 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
198 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
199 u16 mask
= BIT(irqd_to_hwirq(d
) % ZX_GPIO_NR
);
202 raw_spin_lock(&chip
->lock
);
203 gpioie
= readw_relaxed(chip
->base
+ ZX_GPIO_IM
) & ~mask
;
204 writew_relaxed(gpioie
, chip
->base
+ ZX_GPIO_IM
);
205 gpioie
= readw_relaxed(chip
->base
+ ZX_GPIO_IE
) | mask
;
206 writew_relaxed(gpioie
, chip
->base
+ ZX_GPIO_IE
);
207 raw_spin_unlock(&chip
->lock
);
210 static struct irq_chip zx_irqchip
= {
212 .irq_mask
= zx_irq_mask
,
213 .irq_unmask
= zx_irq_unmask
,
214 .irq_set_type
= zx_irq_type
,
217 static int zx_gpio_probe(struct platform_device
*pdev
)
219 struct device
*dev
= &pdev
->dev
;
220 struct zx_gpio
*chip
;
221 struct resource
*res
;
224 chip
= devm_kzalloc(dev
, sizeof(*chip
), GFP_KERNEL
);
228 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
229 chip
->base
= devm_ioremap_resource(dev
, res
);
230 if (IS_ERR(chip
->base
))
231 return PTR_ERR(chip
->base
);
233 raw_spin_lock_init(&chip
->lock
);
234 if (of_property_read_bool(dev
->of_node
, "gpio-ranges")) {
235 chip
->gc
.request
= gpiochip_generic_request
;
236 chip
->gc
.free
= gpiochip_generic_free
;
239 id
= of_alias_get_id(dev
->of_node
, "gpio");
240 chip
->gc
.direction_input
= zx_direction_input
;
241 chip
->gc
.direction_output
= zx_direction_output
;
242 chip
->gc
.get
= zx_get_value
;
243 chip
->gc
.set
= zx_set_value
;
244 chip
->gc
.base
= ZX_GPIO_NR
* id
;
245 chip
->gc
.ngpio
= ZX_GPIO_NR
;
246 chip
->gc
.label
= dev_name(dev
);
247 chip
->gc
.parent
= dev
;
248 chip
->gc
.owner
= THIS_MODULE
;
250 ret
= gpiochip_add_data(&chip
->gc
, chip
);
257 writew_relaxed(0xffff, chip
->base
+ ZX_GPIO_IM
);
258 writew_relaxed(0, chip
->base
+ ZX_GPIO_IE
);
259 irq
= platform_get_irq(pdev
, 0);
261 dev_err(dev
, "invalid IRQ\n");
262 gpiochip_remove(&chip
->gc
);
266 ret
= gpiochip_irqchip_add(&chip
->gc
, &zx_irqchip
,
267 0, handle_simple_irq
,
270 dev_err(dev
, "could not add irqchip\n");
271 gpiochip_remove(&chip
->gc
);
274 gpiochip_set_chained_irqchip(&chip
->gc
, &zx_irqchip
,
275 irq
, zx_irq_handler
);
277 platform_set_drvdata(pdev
, chip
);
278 dev_info(dev
, "ZX GPIO chip registered\n");
283 static const struct of_device_id zx_gpio_match
[] = {
285 .compatible
= "zte,zx296702-gpio",
290 static struct platform_driver zx_gpio_driver
= {
291 .probe
= zx_gpio_probe
,
294 .of_match_table
= of_match_ptr(zx_gpio_match
),
297 builtin_platform_driver(zx_gpio_driver
)