2 * Copyright (C) 2015 Linaro Ltd.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 #include <linux/bitops.h>
9 #include <linux/device.h>
10 #include <linux/errno.h>
11 #include <linux/gpio/driver.h>
12 #include <linux/irqchip/chained_irq.h>
13 #include <linux/module.h>
15 #include <linux/pinctrl/consumer.h>
16 #include <linux/platform_device.h>
18 #include <linux/slab.h>
19 #include <linux/spinlock.h>
21 #define ZX_GPIO_DIR 0x00
22 #define ZX_GPIO_IVE 0x04
23 #define ZX_GPIO_IV 0x08
24 #define ZX_GPIO_IEP 0x0C
25 #define ZX_GPIO_IEN 0x10
26 #define ZX_GPIO_DI 0x14
27 #define ZX_GPIO_DO1 0x18
28 #define ZX_GPIO_DO0 0x1C
29 #define ZX_GPIO_DO 0x20
31 #define ZX_GPIO_IM 0x28
32 #define ZX_GPIO_IE 0x2C
34 #define ZX_GPIO_MIS 0x30
35 #define ZX_GPIO_IC 0x34
46 static int zx_direction_input(struct gpio_chip
*gc
, unsigned offset
)
48 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
52 if (offset
>= gc
->ngpio
)
55 spin_lock_irqsave(&chip
->lock
, flags
);
56 gpiodir
= readw_relaxed(chip
->base
+ ZX_GPIO_DIR
);
57 gpiodir
&= ~BIT(offset
);
58 writew_relaxed(gpiodir
, chip
->base
+ ZX_GPIO_DIR
);
59 spin_unlock_irqrestore(&chip
->lock
, flags
);
64 static int zx_direction_output(struct gpio_chip
*gc
, unsigned offset
,
67 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
71 if (offset
>= gc
->ngpio
)
74 spin_lock_irqsave(&chip
->lock
, flags
);
75 gpiodir
= readw_relaxed(chip
->base
+ ZX_GPIO_DIR
);
76 gpiodir
|= BIT(offset
);
77 writew_relaxed(gpiodir
, chip
->base
+ ZX_GPIO_DIR
);
80 writew_relaxed(BIT(offset
), chip
->base
+ ZX_GPIO_DO1
);
82 writew_relaxed(BIT(offset
), chip
->base
+ ZX_GPIO_DO0
);
83 spin_unlock_irqrestore(&chip
->lock
, flags
);
88 static int zx_get_value(struct gpio_chip
*gc
, unsigned offset
)
90 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
92 return !!(readw_relaxed(chip
->base
+ ZX_GPIO_DI
) & BIT(offset
));
95 static void zx_set_value(struct gpio_chip
*gc
, unsigned offset
, int value
)
97 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
100 writew_relaxed(BIT(offset
), chip
->base
+ ZX_GPIO_DO1
);
102 writew_relaxed(BIT(offset
), chip
->base
+ ZX_GPIO_DO0
);
105 static int zx_irq_type(struct irq_data
*d
, unsigned trigger
)
107 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
108 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
109 int offset
= irqd_to_hwirq(d
);
111 u16 gpiois
, gpioi_epos
, gpioi_eneg
, gpioiev
;
112 u16 bit
= BIT(offset
);
114 if (offset
< 0 || offset
>= ZX_GPIO_NR
)
117 spin_lock_irqsave(&chip
->lock
, flags
);
119 gpioiev
= readw_relaxed(chip
->base
+ ZX_GPIO_IV
);
120 gpiois
= readw_relaxed(chip
->base
+ ZX_GPIO_IVE
);
121 gpioi_epos
= readw_relaxed(chip
->base
+ ZX_GPIO_IEP
);
122 gpioi_eneg
= readw_relaxed(chip
->base
+ ZX_GPIO_IEN
);
124 if (trigger
& (IRQ_TYPE_LEVEL_HIGH
| IRQ_TYPE_LEVEL_LOW
)) {
126 if (trigger
& IRQ_TYPE_LEVEL_HIGH
)
133 if ((trigger
& IRQ_TYPE_EDGE_BOTH
) == IRQ_TYPE_EDGE_BOTH
) {
137 if (trigger
& IRQ_TYPE_EDGE_RISING
) {
140 } else if (trigger
& IRQ_TYPE_EDGE_FALLING
) {
146 writew_relaxed(gpiois
, chip
->base
+ ZX_GPIO_IVE
);
147 writew_relaxed(gpioi_epos
, chip
->base
+ ZX_GPIO_IEP
);
148 writew_relaxed(gpioi_eneg
, chip
->base
+ ZX_GPIO_IEN
);
149 writew_relaxed(gpioiev
, chip
->base
+ ZX_GPIO_IV
);
150 spin_unlock_irqrestore(&chip
->lock
, flags
);
155 static void zx_irq_handler(struct irq_desc
*desc
)
157 unsigned long pending
;
159 struct gpio_chip
*gc
= irq_desc_get_handler_data(desc
);
160 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
161 struct irq_chip
*irqchip
= irq_desc_get_chip(desc
);
163 chained_irq_enter(irqchip
, desc
);
165 pending
= readw_relaxed(chip
->base
+ ZX_GPIO_MIS
);
166 writew_relaxed(pending
, chip
->base
+ ZX_GPIO_IC
);
168 for_each_set_bit(offset
, &pending
, ZX_GPIO_NR
)
169 generic_handle_irq(irq_find_mapping(gc
->irqdomain
,
173 chained_irq_exit(irqchip
, desc
);
176 static void zx_irq_mask(struct irq_data
*d
)
178 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
179 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
180 u16 mask
= BIT(irqd_to_hwirq(d
) % ZX_GPIO_NR
);
183 spin_lock(&chip
->lock
);
184 gpioie
= readw_relaxed(chip
->base
+ ZX_GPIO_IM
) | mask
;
185 writew_relaxed(gpioie
, chip
->base
+ ZX_GPIO_IM
);
186 gpioie
= readw_relaxed(chip
->base
+ ZX_GPIO_IE
) & ~mask
;
187 writew_relaxed(gpioie
, chip
->base
+ ZX_GPIO_IE
);
188 spin_unlock(&chip
->lock
);
191 static void zx_irq_unmask(struct irq_data
*d
)
193 struct gpio_chip
*gc
= irq_data_get_irq_chip_data(d
);
194 struct zx_gpio
*chip
= gpiochip_get_data(gc
);
195 u16 mask
= BIT(irqd_to_hwirq(d
) % ZX_GPIO_NR
);
198 spin_lock(&chip
->lock
);
199 gpioie
= readw_relaxed(chip
->base
+ ZX_GPIO_IM
) & ~mask
;
200 writew_relaxed(gpioie
, chip
->base
+ ZX_GPIO_IM
);
201 gpioie
= readw_relaxed(chip
->base
+ ZX_GPIO_IE
) | mask
;
202 writew_relaxed(gpioie
, chip
->base
+ ZX_GPIO_IE
);
203 spin_unlock(&chip
->lock
);
206 static struct irq_chip zx_irqchip
= {
208 .irq_mask
= zx_irq_mask
,
209 .irq_unmask
= zx_irq_unmask
,
210 .irq_set_type
= zx_irq_type
,
213 static int zx_gpio_probe(struct platform_device
*pdev
)
215 struct device
*dev
= &pdev
->dev
;
216 struct zx_gpio
*chip
;
217 struct resource
*res
;
220 chip
= devm_kzalloc(dev
, sizeof(*chip
), GFP_KERNEL
);
224 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
225 chip
->base
= devm_ioremap_resource(dev
, res
);
226 if (IS_ERR(chip
->base
))
227 return PTR_ERR(chip
->base
);
229 spin_lock_init(&chip
->lock
);
230 if (of_property_read_bool(dev
->of_node
, "gpio-ranges")) {
231 chip
->gc
.request
= gpiochip_generic_request
;
232 chip
->gc
.free
= gpiochip_generic_free
;
235 id
= of_alias_get_id(dev
->of_node
, "gpio");
236 chip
->gc
.direction_input
= zx_direction_input
;
237 chip
->gc
.direction_output
= zx_direction_output
;
238 chip
->gc
.get
= zx_get_value
;
239 chip
->gc
.set
= zx_set_value
;
240 chip
->gc
.base
= ZX_GPIO_NR
* id
;
241 chip
->gc
.ngpio
= ZX_GPIO_NR
;
242 chip
->gc
.label
= dev_name(dev
);
243 chip
->gc
.parent
= dev
;
244 chip
->gc
.owner
= THIS_MODULE
;
246 ret
= gpiochip_add_data(&chip
->gc
, chip
);
253 writew_relaxed(0xffff, chip
->base
+ ZX_GPIO_IM
);
254 writew_relaxed(0, chip
->base
+ ZX_GPIO_IE
);
255 irq
= platform_get_irq(pdev
, 0);
257 dev_err(dev
, "invalid IRQ\n");
258 gpiochip_remove(&chip
->gc
);
262 ret
= gpiochip_irqchip_add(&chip
->gc
, &zx_irqchip
,
263 0, handle_simple_irq
,
266 dev_err(dev
, "could not add irqchip\n");
267 gpiochip_remove(&chip
->gc
);
270 gpiochip_set_chained_irqchip(&chip
->gc
, &zx_irqchip
,
271 irq
, zx_irq_handler
);
273 platform_set_drvdata(pdev
, chip
);
274 dev_info(dev
, "ZX GPIO chip registered\n");
279 static const struct of_device_id zx_gpio_match
[] = {
281 .compatible
= "zte,zx296702-gpio",
285 MODULE_DEVICE_TABLE(of
, zx_gpio_match
);
287 static struct platform_driver zx_gpio_driver
= {
288 .probe
= zx_gpio_probe
,
291 .of_match_table
= of_match_ptr(zx_gpio_match
),
295 module_platform_driver(zx_gpio_driver
)
297 MODULE_AUTHOR("Jun Nie <jun.nie@linaro.org>");
298 MODULE_DESCRIPTION("ZTE ZX296702 GPIO driver");
299 MODULE_LICENSE("GPL");