2 * Emma Mobile GPIO Support - GIO
4 * Copyright (C) 2012 Magnus Damm
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/init.h>
21 #include <linux/platform_device.h>
22 #include <linux/spinlock.h>
23 #include <linux/interrupt.h>
24 #include <linux/ioport.h>
26 #include <linux/irq.h>
27 #include <linux/irqdomain.h>
28 #include <linux/bitops.h>
29 #include <linux/err.h>
30 #include <linux/gpio/driver.h>
31 #include <linux/slab.h>
32 #include <linux/module.h>
33 #include <linux/pinctrl/consumer.h>
38 spinlock_t sense_lock
;
39 struct platform_device
*pdev
;
40 struct gpio_chip gpio_chip
;
41 struct irq_chip irq_chip
;
42 struct irq_domain
*irq_domain
;
63 #define GIO_RAWBL 0x50
64 #define GIO_RAWBH 0x54
68 #define GIO_IDT(n) (GIO_IDT0 + ((n) * 4))
70 static inline unsigned long em_gio_read(struct em_gio_priv
*p
, int offs
)
73 return ioread32(p
->base0
+ offs
);
75 return ioread32(p
->base1
+ (offs
- GIO_IDT0
));
78 static inline void em_gio_write(struct em_gio_priv
*p
, int offs
,
82 iowrite32(value
, p
->base0
+ offs
);
84 iowrite32(value
, p
->base1
+ (offs
- GIO_IDT0
));
87 static void em_gio_irq_disable(struct irq_data
*d
)
89 struct em_gio_priv
*p
= irq_data_get_irq_chip_data(d
);
91 em_gio_write(p
, GIO_IDS
, BIT(irqd_to_hwirq(d
)));
94 static void em_gio_irq_enable(struct irq_data
*d
)
96 struct em_gio_priv
*p
= irq_data_get_irq_chip_data(d
);
98 em_gio_write(p
, GIO_IEN
, BIT(irqd_to_hwirq(d
)));
101 static int em_gio_irq_reqres(struct irq_data
*d
)
103 struct em_gio_priv
*p
= irq_data_get_irq_chip_data(d
);
106 ret
= gpiochip_lock_as_irq(&p
->gpio_chip
, irqd_to_hwirq(d
));
108 dev_err(p
->gpio_chip
.parent
,
109 "unable to lock HW IRQ %lu for IRQ\n",
116 static void em_gio_irq_relres(struct irq_data
*d
)
118 struct em_gio_priv
*p
= irq_data_get_irq_chip_data(d
);
120 gpiochip_unlock_as_irq(&p
->gpio_chip
, irqd_to_hwirq(d
));
124 #define GIO_ASYNC(x) (x + 8)
126 static unsigned char em_gio_sense_table
[IRQ_TYPE_SENSE_MASK
+ 1] = {
127 [IRQ_TYPE_EDGE_RISING
] = GIO_ASYNC(0x00),
128 [IRQ_TYPE_EDGE_FALLING
] = GIO_ASYNC(0x01),
129 [IRQ_TYPE_LEVEL_HIGH
] = GIO_ASYNC(0x02),
130 [IRQ_TYPE_LEVEL_LOW
] = GIO_ASYNC(0x03),
131 [IRQ_TYPE_EDGE_BOTH
] = GIO_ASYNC(0x04),
134 static int em_gio_irq_set_type(struct irq_data
*d
, unsigned int type
)
136 unsigned char value
= em_gio_sense_table
[type
& IRQ_TYPE_SENSE_MASK
];
137 struct em_gio_priv
*p
= irq_data_get_irq_chip_data(d
);
138 unsigned int reg
, offset
, shift
;
145 offset
= irqd_to_hwirq(d
);
147 pr_debug("gio: sense irq = %d, mode = %d\n", offset
, value
);
149 /* 8 x 4 bit fields in 4 IDT registers */
150 reg
= GIO_IDT(offset
>> 3);
151 shift
= (offset
& 0x07) << 4;
153 spin_lock_irqsave(&p
->sense_lock
, flags
);
155 /* disable the interrupt in IIA */
156 tmp
= em_gio_read(p
, GIO_IIA
);
158 em_gio_write(p
, GIO_IIA
, tmp
);
160 /* change the sense setting in IDT */
161 tmp
= em_gio_read(p
, reg
);
162 tmp
&= ~(0xf << shift
);
163 tmp
|= value
<< shift
;
164 em_gio_write(p
, reg
, tmp
);
166 /* clear pending interrupts */
167 em_gio_write(p
, GIO_IIR
, BIT(offset
));
169 /* enable the interrupt in IIA */
170 tmp
= em_gio_read(p
, GIO_IIA
);
172 em_gio_write(p
, GIO_IIA
, tmp
);
174 spin_unlock_irqrestore(&p
->sense_lock
, flags
);
179 static irqreturn_t
em_gio_irq_handler(int irq
, void *dev_id
)
181 struct em_gio_priv
*p
= dev_id
;
182 unsigned long pending
;
183 unsigned int offset
, irqs_handled
= 0;
185 while ((pending
= em_gio_read(p
, GIO_MST
))) {
186 offset
= __ffs(pending
);
187 em_gio_write(p
, GIO_IIR
, BIT(offset
));
188 generic_handle_irq(irq_find_mapping(p
->irq_domain
, offset
));
192 return irqs_handled
? IRQ_HANDLED
: IRQ_NONE
;
195 static inline struct em_gio_priv
*gpio_to_priv(struct gpio_chip
*chip
)
197 return gpiochip_get_data(chip
);
200 static int em_gio_direction_input(struct gpio_chip
*chip
, unsigned offset
)
202 em_gio_write(gpio_to_priv(chip
), GIO_E0
, BIT(offset
));
206 static int em_gio_get(struct gpio_chip
*chip
, unsigned offset
)
208 return !!(em_gio_read(gpio_to_priv(chip
), GIO_I
) & BIT(offset
));
211 static void __em_gio_set(struct gpio_chip
*chip
, unsigned int reg
,
212 unsigned shift
, int value
)
214 /* upper 16 bits contains mask and lower 16 actual value */
215 em_gio_write(gpio_to_priv(chip
), reg
,
216 (BIT(shift
+ 16)) | (value
<< shift
));
219 static void em_gio_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
221 /* output is split into two registers */
223 __em_gio_set(chip
, GIO_OL
, offset
, value
);
225 __em_gio_set(chip
, GIO_OH
, offset
- 16, value
);
228 static int em_gio_direction_output(struct gpio_chip
*chip
, unsigned offset
,
231 /* write GPIO value to output before selecting output mode of pin */
232 em_gio_set(chip
, offset
, value
);
233 em_gio_write(gpio_to_priv(chip
), GIO_E1
, BIT(offset
));
237 static int em_gio_to_irq(struct gpio_chip
*chip
, unsigned offset
)
239 return irq_create_mapping(gpio_to_priv(chip
)->irq_domain
, offset
);
242 static int em_gio_request(struct gpio_chip
*chip
, unsigned offset
)
244 return pinctrl_gpio_request(chip
->base
+ offset
);
247 static void em_gio_free(struct gpio_chip
*chip
, unsigned offset
)
249 pinctrl_gpio_free(chip
->base
+ offset
);
251 /* Set the GPIO as an input to ensure that the next GPIO request won't
252 * drive the GPIO pin as an output.
254 em_gio_direction_input(chip
, offset
);
257 static int em_gio_irq_domain_map(struct irq_domain
*h
, unsigned int irq
,
258 irq_hw_number_t hwirq
)
260 struct em_gio_priv
*p
= h
->host_data
;
262 pr_debug("gio: map hw irq = %d, irq = %d\n", (int)hwirq
, irq
);
264 irq_set_chip_data(irq
, h
->host_data
);
265 irq_set_chip_and_handler(irq
, &p
->irq_chip
, handle_level_irq
);
269 static const struct irq_domain_ops em_gio_irq_domain_ops
= {
270 .map
= em_gio_irq_domain_map
,
271 .xlate
= irq_domain_xlate_twocell
,
274 static int em_gio_probe(struct platform_device
*pdev
)
276 struct em_gio_priv
*p
;
277 struct resource
*io
[2], *irq
[2];
278 struct gpio_chip
*gpio_chip
;
279 struct irq_chip
*irq_chip
;
280 const char *name
= dev_name(&pdev
->dev
);
284 p
= devm_kzalloc(&pdev
->dev
, sizeof(*p
), GFP_KERNEL
);
291 platform_set_drvdata(pdev
, p
);
292 spin_lock_init(&p
->sense_lock
);
294 io
[0] = platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
295 io
[1] = platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
296 irq
[0] = platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
297 irq
[1] = platform_get_resource(pdev
, IORESOURCE_IRQ
, 1);
299 if (!io
[0] || !io
[1] || !irq
[0] || !irq
[1]) {
300 dev_err(&pdev
->dev
, "missing IRQ or IOMEM\n");
305 p
->base0
= devm_ioremap_nocache(&pdev
->dev
, io
[0]->start
,
306 resource_size(io
[0]));
308 dev_err(&pdev
->dev
, "failed to remap low I/O memory\n");
313 p
->base1
= devm_ioremap_nocache(&pdev
->dev
, io
[1]->start
,
314 resource_size(io
[1]));
316 dev_err(&pdev
->dev
, "failed to remap high I/O memory\n");
321 if (of_property_read_u32(pdev
->dev
.of_node
, "ngpios", &ngpios
)) {
322 dev_err(&pdev
->dev
, "Missing ngpios OF property\n");
327 gpio_chip
= &p
->gpio_chip
;
328 gpio_chip
->of_node
= pdev
->dev
.of_node
;
329 gpio_chip
->direction_input
= em_gio_direction_input
;
330 gpio_chip
->get
= em_gio_get
;
331 gpio_chip
->direction_output
= em_gio_direction_output
;
332 gpio_chip
->set
= em_gio_set
;
333 gpio_chip
->to_irq
= em_gio_to_irq
;
334 gpio_chip
->request
= em_gio_request
;
335 gpio_chip
->free
= em_gio_free
;
336 gpio_chip
->label
= name
;
337 gpio_chip
->parent
= &pdev
->dev
;
338 gpio_chip
->owner
= THIS_MODULE
;
339 gpio_chip
->base
= -1;
340 gpio_chip
->ngpio
= ngpios
;
342 irq_chip
= &p
->irq_chip
;
343 irq_chip
->name
= name
;
344 irq_chip
->irq_mask
= em_gio_irq_disable
;
345 irq_chip
->irq_unmask
= em_gio_irq_enable
;
346 irq_chip
->irq_set_type
= em_gio_irq_set_type
;
347 irq_chip
->irq_request_resources
= em_gio_irq_reqres
;
348 irq_chip
->irq_release_resources
= em_gio_irq_relres
;
349 irq_chip
->flags
= IRQCHIP_SKIP_SET_WAKE
| IRQCHIP_MASK_ON_SUSPEND
;
351 p
->irq_domain
= irq_domain_add_simple(pdev
->dev
.of_node
, ngpios
, 0,
352 &em_gio_irq_domain_ops
, p
);
353 if (!p
->irq_domain
) {
355 dev_err(&pdev
->dev
, "cannot initialize irq domain\n");
359 if (devm_request_irq(&pdev
->dev
, irq
[0]->start
,
360 em_gio_irq_handler
, 0, name
, p
)) {
361 dev_err(&pdev
->dev
, "failed to request low IRQ\n");
366 if (devm_request_irq(&pdev
->dev
, irq
[1]->start
,
367 em_gio_irq_handler
, 0, name
, p
)) {
368 dev_err(&pdev
->dev
, "failed to request high IRQ\n");
373 ret
= gpiochip_add_data(gpio_chip
, p
);
375 dev_err(&pdev
->dev
, "failed to add GPIO controller\n");
382 irq_domain_remove(p
->irq_domain
);
387 static int em_gio_remove(struct platform_device
*pdev
)
389 struct em_gio_priv
*p
= platform_get_drvdata(pdev
);
391 gpiochip_remove(&p
->gpio_chip
);
393 irq_domain_remove(p
->irq_domain
);
397 static const struct of_device_id em_gio_dt_ids
[] = {
398 { .compatible
= "renesas,em-gio", },
401 MODULE_DEVICE_TABLE(of
, em_gio_dt_ids
);
403 static struct platform_driver em_gio_device_driver
= {
404 .probe
= em_gio_probe
,
405 .remove
= em_gio_remove
,
408 .of_match_table
= em_gio_dt_ids
,
412 static int __init
em_gio_init(void)
414 return platform_driver_register(&em_gio_device_driver
);
416 postcore_initcall(em_gio_init
);
418 static void __exit
em_gio_exit(void)
420 platform_driver_unregister(&em_gio_device_driver
);
422 module_exit(em_gio_exit
);
424 MODULE_AUTHOR("Magnus Damm");
425 MODULE_DESCRIPTION("Renesas Emma Mobile GIO Driver");
426 MODULE_LICENSE("GPL v2");