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.h>
31 #include <linux/slab.h>
32 #include <linux/module.h>
33 #include <linux/pinctrl/consumer.h>
34 #include <linux/platform_data/gpio-em.h>
39 spinlock_t sense_lock
;
40 struct platform_device
*pdev
;
41 struct gpio_chip gpio_chip
;
42 struct irq_chip irq_chip
;
43 struct irq_domain
*irq_domain
;
64 #define GIO_RAWBL 0x50
65 #define GIO_RAWBH 0x54
69 #define GIO_IDT(n) (GIO_IDT0 + ((n) * 4))
71 static inline unsigned long em_gio_read(struct em_gio_priv
*p
, int offs
)
74 return ioread32(p
->base0
+ offs
);
76 return ioread32(p
->base1
+ (offs
- GIO_IDT0
));
79 static inline void em_gio_write(struct em_gio_priv
*p
, int offs
,
83 iowrite32(value
, p
->base0
+ offs
);
85 iowrite32(value
, p
->base1
+ (offs
- GIO_IDT0
));
88 static void em_gio_irq_disable(struct irq_data
*d
)
90 struct em_gio_priv
*p
= irq_data_get_irq_chip_data(d
);
92 em_gio_write(p
, GIO_IDS
, BIT(irqd_to_hwirq(d
)));
95 static void em_gio_irq_enable(struct irq_data
*d
)
97 struct em_gio_priv
*p
= irq_data_get_irq_chip_data(d
);
99 em_gio_write(p
, GIO_IEN
, BIT(irqd_to_hwirq(d
)));
102 #define GIO_ASYNC(x) (x + 8)
104 static unsigned char em_gio_sense_table
[IRQ_TYPE_SENSE_MASK
+ 1] = {
105 [IRQ_TYPE_EDGE_RISING
] = GIO_ASYNC(0x00),
106 [IRQ_TYPE_EDGE_FALLING
] = GIO_ASYNC(0x01),
107 [IRQ_TYPE_LEVEL_HIGH
] = GIO_ASYNC(0x02),
108 [IRQ_TYPE_LEVEL_LOW
] = GIO_ASYNC(0x03),
109 [IRQ_TYPE_EDGE_BOTH
] = GIO_ASYNC(0x04),
112 static int em_gio_irq_set_type(struct irq_data
*d
, unsigned int type
)
114 unsigned char value
= em_gio_sense_table
[type
& IRQ_TYPE_SENSE_MASK
];
115 struct em_gio_priv
*p
= irq_data_get_irq_chip_data(d
);
116 unsigned int reg
, offset
, shift
;
123 offset
= irqd_to_hwirq(d
);
125 pr_debug("gio: sense irq = %d, mode = %d\n", offset
, value
);
127 /* 8 x 4 bit fields in 4 IDT registers */
128 reg
= GIO_IDT(offset
>> 3);
129 shift
= (offset
& 0x07) << 4;
131 spin_lock_irqsave(&p
->sense_lock
, flags
);
133 /* disable the interrupt in IIA */
134 tmp
= em_gio_read(p
, GIO_IIA
);
136 em_gio_write(p
, GIO_IIA
, tmp
);
138 /* change the sense setting in IDT */
139 tmp
= em_gio_read(p
, reg
);
140 tmp
&= ~(0xf << shift
);
141 tmp
|= value
<< shift
;
142 em_gio_write(p
, reg
, tmp
);
144 /* clear pending interrupts */
145 em_gio_write(p
, GIO_IIR
, BIT(offset
));
147 /* enable the interrupt in IIA */
148 tmp
= em_gio_read(p
, GIO_IIA
);
150 em_gio_write(p
, GIO_IIA
, tmp
);
152 spin_unlock_irqrestore(&p
->sense_lock
, flags
);
157 static irqreturn_t
em_gio_irq_handler(int irq
, void *dev_id
)
159 struct em_gio_priv
*p
= dev_id
;
160 unsigned long pending
;
161 unsigned int offset
, irqs_handled
= 0;
163 while ((pending
= em_gio_read(p
, GIO_MST
))) {
164 offset
= __ffs(pending
);
165 em_gio_write(p
, GIO_IIR
, BIT(offset
));
166 generic_handle_irq(irq_find_mapping(p
->irq_domain
, offset
));
170 return irqs_handled
? IRQ_HANDLED
: IRQ_NONE
;
173 static inline struct em_gio_priv
*gpio_to_priv(struct gpio_chip
*chip
)
175 return container_of(chip
, struct em_gio_priv
, gpio_chip
);
178 static int em_gio_direction_input(struct gpio_chip
*chip
, unsigned offset
)
180 em_gio_write(gpio_to_priv(chip
), GIO_E0
, BIT(offset
));
184 static int em_gio_get(struct gpio_chip
*chip
, unsigned offset
)
186 return (int)(em_gio_read(gpio_to_priv(chip
), GIO_I
) & BIT(offset
));
189 static void __em_gio_set(struct gpio_chip
*chip
, unsigned int reg
,
190 unsigned shift
, int value
)
192 /* upper 16 bits contains mask and lower 16 actual value */
193 em_gio_write(gpio_to_priv(chip
), reg
,
194 (1 << (shift
+ 16)) | (value
<< shift
));
197 static void em_gio_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
199 /* output is split into two registers */
201 __em_gio_set(chip
, GIO_OL
, offset
, value
);
203 __em_gio_set(chip
, GIO_OH
, offset
- 16, value
);
206 static int em_gio_direction_output(struct gpio_chip
*chip
, unsigned offset
,
209 /* write GPIO value to output before selecting output mode of pin */
210 em_gio_set(chip
, offset
, value
);
211 em_gio_write(gpio_to_priv(chip
), GIO_E1
, BIT(offset
));
215 static int em_gio_to_irq(struct gpio_chip
*chip
, unsigned offset
)
217 return irq_create_mapping(gpio_to_priv(chip
)->irq_domain
, offset
);
220 static int em_gio_request(struct gpio_chip
*chip
, unsigned offset
)
222 return pinctrl_request_gpio(chip
->base
+ offset
);
225 static void em_gio_free(struct gpio_chip
*chip
, unsigned offset
)
227 pinctrl_free_gpio(chip
->base
+ offset
);
229 /* Set the GPIO as an input to ensure that the next GPIO request won't
230 * drive the GPIO pin as an output.
232 em_gio_direction_input(chip
, offset
);
235 static int em_gio_irq_domain_map(struct irq_domain
*h
, unsigned int virq
,
238 struct em_gio_priv
*p
= h
->host_data
;
240 pr_debug("gio: map hw irq = %d, virq = %d\n", (int)hw
, virq
);
242 irq_set_chip_data(virq
, h
->host_data
);
243 irq_set_chip_and_handler(virq
, &p
->irq_chip
, handle_level_irq
);
244 set_irq_flags(virq
, IRQF_VALID
); /* kill me now */
248 static struct irq_domain_ops em_gio_irq_domain_ops
= {
249 .map
= em_gio_irq_domain_map
,
250 .xlate
= irq_domain_xlate_twocell
,
253 static int em_gio_probe(struct platform_device
*pdev
)
255 struct gpio_em_config pdata_dt
;
256 struct gpio_em_config
*pdata
= dev_get_platdata(&pdev
->dev
);
257 struct em_gio_priv
*p
;
258 struct resource
*io
[2], *irq
[2];
259 struct gpio_chip
*gpio_chip
;
260 struct irq_chip
*irq_chip
;
261 const char *name
= dev_name(&pdev
->dev
);
264 p
= devm_kzalloc(&pdev
->dev
, sizeof(*p
), GFP_KERNEL
);
266 dev_err(&pdev
->dev
, "failed to allocate driver data\n");
272 platform_set_drvdata(pdev
, p
);
273 spin_lock_init(&p
->sense_lock
);
275 io
[0] = platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
276 io
[1] = platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
277 irq
[0] = platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
278 irq
[1] = platform_get_resource(pdev
, IORESOURCE_IRQ
, 1);
280 if (!io
[0] || !io
[1] || !irq
[0] || !irq
[1]) {
281 dev_err(&pdev
->dev
, "missing IRQ or IOMEM\n");
286 p
->base0
= devm_ioremap_nocache(&pdev
->dev
, io
[0]->start
,
287 resource_size(io
[0]));
289 dev_err(&pdev
->dev
, "failed to remap low I/O memory\n");
294 p
->base1
= devm_ioremap_nocache(&pdev
->dev
, io
[1]->start
,
295 resource_size(io
[1]));
297 dev_err(&pdev
->dev
, "failed to remap high I/O memory\n");
303 memset(&pdata_dt
, 0, sizeof(pdata_dt
));
306 if (of_property_read_u32(pdev
->dev
.of_node
, "ngpios",
307 &pdata
->number_of_pins
)) {
308 dev_err(&pdev
->dev
, "Missing ngpios OF property\n");
313 ret
= of_alias_get_id(pdev
->dev
.of_node
, "gpio");
315 dev_err(&pdev
->dev
, "Couldn't get OF id\n");
318 pdata
->gpio_base
= ret
* 32; /* 32 GPIOs per instance */
321 gpio_chip
= &p
->gpio_chip
;
322 gpio_chip
->direction_input
= em_gio_direction_input
;
323 gpio_chip
->get
= em_gio_get
;
324 gpio_chip
->direction_output
= em_gio_direction_output
;
325 gpio_chip
->set
= em_gio_set
;
326 gpio_chip
->to_irq
= em_gio_to_irq
;
327 gpio_chip
->request
= em_gio_request
;
328 gpio_chip
->free
= em_gio_free
;
329 gpio_chip
->label
= name
;
330 gpio_chip
->owner
= THIS_MODULE
;
331 gpio_chip
->base
= pdata
->gpio_base
;
332 gpio_chip
->ngpio
= pdata
->number_of_pins
;
334 irq_chip
= &p
->irq_chip
;
335 irq_chip
->name
= name
;
336 irq_chip
->irq_mask
= em_gio_irq_disable
;
337 irq_chip
->irq_unmask
= em_gio_irq_enable
;
338 irq_chip
->irq_enable
= em_gio_irq_enable
;
339 irq_chip
->irq_disable
= em_gio_irq_disable
;
340 irq_chip
->irq_set_type
= em_gio_irq_set_type
;
341 irq_chip
->flags
= IRQCHIP_SKIP_SET_WAKE
;
343 p
->irq_domain
= irq_domain_add_simple(pdev
->dev
.of_node
,
344 pdata
->number_of_pins
,
346 &em_gio_irq_domain_ops
, p
);
347 if (!p
->irq_domain
) {
349 dev_err(&pdev
->dev
, "cannot initialize irq domain\n");
353 if (devm_request_irq(&pdev
->dev
, irq
[0]->start
,
354 em_gio_irq_handler
, 0, name
, p
)) {
355 dev_err(&pdev
->dev
, "failed to request low IRQ\n");
360 if (devm_request_irq(&pdev
->dev
, irq
[1]->start
,
361 em_gio_irq_handler
, 0, name
, p
)) {
362 dev_err(&pdev
->dev
, "failed to request high IRQ\n");
367 ret
= gpiochip_add(gpio_chip
);
369 dev_err(&pdev
->dev
, "failed to add GPIO controller\n");
373 if (pdata
->pctl_name
) {
374 ret
= gpiochip_add_pin_range(gpio_chip
, pdata
->pctl_name
, 0,
375 gpio_chip
->base
, gpio_chip
->ngpio
);
377 dev_warn(&pdev
->dev
, "failed to add pin range\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
);
392 ret
= gpiochip_remove(&p
->gpio_chip
);
396 irq_domain_remove(p
->irq_domain
);
400 static const struct of_device_id em_gio_dt_ids
[] = {
401 { .compatible
= "renesas,em-gio", },
404 MODULE_DEVICE_TABLE(of
, em_gio_dt_ids
);
406 static struct platform_driver em_gio_device_driver
= {
407 .probe
= em_gio_probe
,
408 .remove
= em_gio_remove
,
411 .of_match_table
= em_gio_dt_ids
,
412 .owner
= THIS_MODULE
,
416 static int __init
em_gio_init(void)
418 return platform_driver_register(&em_gio_device_driver
);
420 postcore_initcall(em_gio_init
);
422 static void __exit
em_gio_exit(void)
424 platform_driver_unregister(&em_gio_device_driver
);
426 module_exit(em_gio_exit
);
428 MODULE_AUTHOR("Magnus Damm");
429 MODULE_DESCRIPTION("Renesas Emma Mobile GIO Driver");
430 MODULE_LICENSE("GPL v2");