1 #include <linux/kernel.h>
2 #include <linux/init.h>
3 #include <linux/gpio/driver.h>
4 #include <linux/of_gpio.h>
6 #include <linux/interrupt.h>
7 #include <linux/platform_device.h>
9 #define ETRAX_FS_rw_pa_dout 0
10 #define ETRAX_FS_r_pa_din 4
11 #define ETRAX_FS_rw_pa_oe 8
12 #define ETRAX_FS_rw_intr_cfg 12
13 #define ETRAX_FS_rw_intr_mask 16
14 #define ETRAX_FS_rw_ack_intr 20
15 #define ETRAX_FS_r_intr 24
16 #define ETRAX_FS_r_masked_intr 28
17 #define ETRAX_FS_rw_pb_dout 32
18 #define ETRAX_FS_r_pb_din 36
19 #define ETRAX_FS_rw_pb_oe 40
20 #define ETRAX_FS_rw_pc_dout 48
21 #define ETRAX_FS_r_pc_din 52
22 #define ETRAX_FS_rw_pc_oe 56
23 #define ETRAX_FS_rw_pd_dout 64
24 #define ETRAX_FS_r_pd_din 68
25 #define ETRAX_FS_rw_pd_oe 72
26 #define ETRAX_FS_rw_pe_dout 80
27 #define ETRAX_FS_r_pe_din 84
28 #define ETRAX_FS_rw_pe_oe 88
30 #define ARTPEC3_r_pa_din 0
31 #define ARTPEC3_rw_pa_dout 4
32 #define ARTPEC3_rw_pa_oe 8
33 #define ARTPEC3_r_pb_din 44
34 #define ARTPEC3_rw_pb_dout 48
35 #define ARTPEC3_rw_pb_oe 52
36 #define ARTPEC3_r_pc_din 88
37 #define ARTPEC3_rw_pc_dout 92
38 #define ARTPEC3_rw_pc_oe 96
39 #define ARTPEC3_r_pd_din 116
40 #define ARTPEC3_rw_intr_cfg 120
41 #define ARTPEC3_rw_intr_pins 124
42 #define ARTPEC3_rw_intr_mask 128
43 #define ARTPEC3_rw_ack_intr 132
44 #define ARTPEC3_r_masked_intr 140
50 #define GIO_CFG_POSEDGE 5
51 #define GIO_CFG_NEGEDGE 6
52 #define GIO_CFG_ANYEDGE 7
54 struct etraxfs_gpio_info
;
56 struct etraxfs_gpio_block
{
61 unsigned int group
[8];
64 const struct etraxfs_gpio_info
*info
;
67 struct etraxfs_gpio_chip
{
69 struct etraxfs_gpio_block
*block
;
72 struct etraxfs_gpio_port
{
80 struct etraxfs_gpio_info
{
81 unsigned int num_ports
;
82 const struct etraxfs_gpio_port
*ports
;
84 unsigned int rw_ack_intr
;
85 unsigned int rw_intr_mask
;
86 unsigned int rw_intr_cfg
;
87 unsigned int rw_intr_pins
;
88 unsigned int r_masked_intr
;
91 static const struct etraxfs_gpio_port etraxfs_gpio_etraxfs_ports
[] = {
95 .oe
= ETRAX_FS_rw_pa_oe
,
96 .dout
= ETRAX_FS_rw_pa_dout
,
97 .din
= ETRAX_FS_r_pa_din
,
102 .oe
= ETRAX_FS_rw_pb_oe
,
103 .dout
= ETRAX_FS_rw_pb_dout
,
104 .din
= ETRAX_FS_r_pb_din
,
109 .oe
= ETRAX_FS_rw_pc_oe
,
110 .dout
= ETRAX_FS_rw_pc_dout
,
111 .din
= ETRAX_FS_r_pc_din
,
116 .oe
= ETRAX_FS_rw_pd_oe
,
117 .dout
= ETRAX_FS_rw_pd_dout
,
118 .din
= ETRAX_FS_r_pd_din
,
123 .oe
= ETRAX_FS_rw_pe_oe
,
124 .dout
= ETRAX_FS_rw_pe_dout
,
125 .din
= ETRAX_FS_r_pe_din
,
129 static const struct etraxfs_gpio_info etraxfs_gpio_etraxfs
= {
130 .num_ports
= ARRAY_SIZE(etraxfs_gpio_etraxfs_ports
),
131 .ports
= etraxfs_gpio_etraxfs_ports
,
132 .rw_ack_intr
= ETRAX_FS_rw_ack_intr
,
133 .rw_intr_mask
= ETRAX_FS_rw_intr_mask
,
134 .rw_intr_cfg
= ETRAX_FS_rw_intr_cfg
,
135 .r_masked_intr
= ETRAX_FS_r_masked_intr
,
138 static const struct etraxfs_gpio_port etraxfs_gpio_artpec3_ports
[] = {
142 .oe
= ARTPEC3_rw_pa_oe
,
143 .dout
= ARTPEC3_rw_pa_dout
,
144 .din
= ARTPEC3_r_pa_din
,
149 .oe
= ARTPEC3_rw_pb_oe
,
150 .dout
= ARTPEC3_rw_pb_dout
,
151 .din
= ARTPEC3_r_pb_din
,
156 .oe
= ARTPEC3_rw_pc_oe
,
157 .dout
= ARTPEC3_rw_pc_dout
,
158 .din
= ARTPEC3_r_pc_din
,
163 .din
= ARTPEC3_r_pd_din
,
167 static const struct etraxfs_gpio_info etraxfs_gpio_artpec3
= {
168 .num_ports
= ARRAY_SIZE(etraxfs_gpio_artpec3_ports
),
169 .ports
= etraxfs_gpio_artpec3_ports
,
170 .rw_ack_intr
= ARTPEC3_rw_ack_intr
,
171 .rw_intr_mask
= ARTPEC3_rw_intr_mask
,
172 .rw_intr_cfg
= ARTPEC3_rw_intr_cfg
,
173 .r_masked_intr
= ARTPEC3_r_masked_intr
,
174 .rw_intr_pins
= ARTPEC3_rw_intr_pins
,
177 static unsigned int etraxfs_gpio_chip_to_port(struct gpio_chip
*gc
)
179 return gc
->label
[0] - 'A';
182 static int etraxfs_gpio_of_xlate(struct gpio_chip
*gc
,
183 const struct of_phandle_args
*gpiospec
,
187 * Port numbers are A to E, and the properties are integers, so we
188 * specify them as 0xA - 0xE.
190 if (etraxfs_gpio_chip_to_port(gc
) + 0xA != gpiospec
->args
[2])
193 return of_gpio_simple_xlate(gc
, gpiospec
, flags
);
196 static const struct of_device_id etraxfs_gpio_of_table
[] = {
198 .compatible
= "axis,etraxfs-gio",
199 .data
= &etraxfs_gpio_etraxfs
,
202 .compatible
= "axis,artpec3-gio",
203 .data
= &etraxfs_gpio_artpec3
,
208 static unsigned int etraxfs_gpio_to_group_irq(unsigned int gpio
)
213 static unsigned int etraxfs_gpio_to_group_pin(struct etraxfs_gpio_chip
*chip
,
216 return 4 * etraxfs_gpio_chip_to_port(&chip
->gc
) + gpio
/ 8;
219 static void etraxfs_gpio_irq_ack(struct irq_data
*d
)
221 struct etraxfs_gpio_chip
*chip
=
222 gpiochip_get_data(irq_data_get_irq_chip_data(d
));
223 struct etraxfs_gpio_block
*block
= chip
->block
;
224 unsigned int grpirq
= etraxfs_gpio_to_group_irq(d
->hwirq
);
226 writel(BIT(grpirq
), block
->regs
+ block
->info
->rw_ack_intr
);
229 static void etraxfs_gpio_irq_mask(struct irq_data
*d
)
231 struct etraxfs_gpio_chip
*chip
=
232 gpiochip_get_data(irq_data_get_irq_chip_data(d
));
233 struct etraxfs_gpio_block
*block
= chip
->block
;
234 unsigned int grpirq
= etraxfs_gpio_to_group_irq(d
->hwirq
);
236 spin_lock(&block
->lock
);
237 block
->mask
&= ~BIT(grpirq
);
238 writel(block
->mask
, block
->regs
+ block
->info
->rw_intr_mask
);
239 spin_unlock(&block
->lock
);
242 static void etraxfs_gpio_irq_unmask(struct irq_data
*d
)
244 struct etraxfs_gpio_chip
*chip
=
245 gpiochip_get_data(irq_data_get_irq_chip_data(d
));
246 struct etraxfs_gpio_block
*block
= chip
->block
;
247 unsigned int grpirq
= etraxfs_gpio_to_group_irq(d
->hwirq
);
249 spin_lock(&block
->lock
);
250 block
->mask
|= BIT(grpirq
);
251 writel(block
->mask
, block
->regs
+ block
->info
->rw_intr_mask
);
252 spin_unlock(&block
->lock
);
255 static int etraxfs_gpio_irq_set_type(struct irq_data
*d
, u32 type
)
257 struct etraxfs_gpio_chip
*chip
=
258 gpiochip_get_data(irq_data_get_irq_chip_data(d
));
259 struct etraxfs_gpio_block
*block
= chip
->block
;
260 unsigned int grpirq
= etraxfs_gpio_to_group_irq(d
->hwirq
);
264 case IRQ_TYPE_EDGE_RISING
:
265 cfg
= GIO_CFG_POSEDGE
;
267 case IRQ_TYPE_EDGE_FALLING
:
268 cfg
= GIO_CFG_NEGEDGE
;
270 case IRQ_TYPE_EDGE_BOTH
:
271 cfg
= GIO_CFG_ANYEDGE
;
273 case IRQ_TYPE_LEVEL_LOW
:
276 case IRQ_TYPE_LEVEL_HIGH
:
283 spin_lock(&block
->lock
);
284 block
->cfg
&= ~(0x7 << (grpirq
* 3));
285 block
->cfg
|= (cfg
<< (grpirq
* 3));
286 writel(block
->cfg
, block
->regs
+ block
->info
->rw_intr_cfg
);
287 spin_unlock(&block
->lock
);
292 static int etraxfs_gpio_irq_request_resources(struct irq_data
*d
)
294 struct etraxfs_gpio_chip
*chip
=
295 gpiochip_get_data(irq_data_get_irq_chip_data(d
));
296 struct etraxfs_gpio_block
*block
= chip
->block
;
297 unsigned int grpirq
= etraxfs_gpio_to_group_irq(d
->hwirq
);
300 spin_lock(&block
->lock
);
301 if (block
->group
[grpirq
])
304 ret
= gpiochip_lock_as_irq(&chip
->gc
, d
->hwirq
);
308 block
->group
[grpirq
] = d
->irq
;
309 if (block
->info
->rw_intr_pins
) {
310 unsigned int pin
= etraxfs_gpio_to_group_pin(chip
, d
->hwirq
);
312 block
->pins
&= ~(0xf << (grpirq
* 4));
313 block
->pins
|= (pin
<< (grpirq
* 4));
315 writel(block
->pins
, block
->regs
+ block
->info
->rw_intr_pins
);
319 spin_unlock(&block
->lock
);
323 static void etraxfs_gpio_irq_release_resources(struct irq_data
*d
)
325 struct etraxfs_gpio_chip
*chip
=
326 gpiochip_get_data(irq_data_get_irq_chip_data(d
));
327 struct etraxfs_gpio_block
*block
= chip
->block
;
328 unsigned int grpirq
= etraxfs_gpio_to_group_irq(d
->hwirq
);
330 spin_lock(&block
->lock
);
331 block
->group
[grpirq
] = 0;
332 gpiochip_unlock_as_irq(&chip
->gc
, d
->hwirq
);
333 spin_unlock(&block
->lock
);
336 static struct irq_chip etraxfs_gpio_irq_chip
= {
337 .name
= "gpio-etraxfs",
338 .irq_ack
= etraxfs_gpio_irq_ack
,
339 .irq_mask
= etraxfs_gpio_irq_mask
,
340 .irq_unmask
= etraxfs_gpio_irq_unmask
,
341 .irq_set_type
= etraxfs_gpio_irq_set_type
,
342 .irq_request_resources
= etraxfs_gpio_irq_request_resources
,
343 .irq_release_resources
= etraxfs_gpio_irq_release_resources
,
346 static irqreturn_t
etraxfs_gpio_interrupt(int irq
, void *dev_id
)
348 struct etraxfs_gpio_block
*block
= dev_id
;
349 unsigned long intr
= readl(block
->regs
+ block
->info
->r_masked_intr
);
352 for_each_set_bit(bit
, &intr
, 8)
353 generic_handle_irq(block
->group
[bit
]);
355 return IRQ_RETVAL(intr
& 0xff);
358 static int etraxfs_gpio_probe(struct platform_device
*pdev
)
360 struct device
*dev
= &pdev
->dev
;
361 const struct etraxfs_gpio_info
*info
;
362 const struct of_device_id
*match
;
363 struct etraxfs_gpio_block
*block
;
364 struct etraxfs_gpio_chip
*chips
;
365 struct resource
*res
, *irq
;
366 bool allportsirq
= false;
371 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
372 regs
= devm_ioremap_resource(dev
, res
);
374 return PTR_ERR(regs
);
376 match
= of_match_node(etraxfs_gpio_of_table
, dev
->of_node
);
382 chips
= devm_kzalloc(dev
, sizeof(*chips
) * info
->num_ports
, GFP_KERNEL
);
386 irq
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
390 block
= devm_kzalloc(dev
, sizeof(*block
), GFP_KERNEL
);
394 spin_lock_init(&block
->lock
);
399 writel(0, block
->regs
+ info
->rw_intr_mask
);
400 writel(0, block
->regs
+ info
->rw_intr_cfg
);
401 if (info
->rw_intr_pins
) {
403 writel(0, block
->regs
+ info
->rw_intr_pins
);
406 ret
= devm_request_irq(dev
, irq
->start
, etraxfs_gpio_interrupt
,
407 IRQF_SHARED
, dev_name(dev
), block
);
409 dev_err(dev
, "Unable to request irq %d\n", ret
);
413 for (i
= 0; i
< info
->num_ports
; i
++) {
414 struct etraxfs_gpio_chip
*chip
= &chips
[i
];
415 struct gpio_chip
*gc
= &chip
->gc
;
416 const struct etraxfs_gpio_port
*port
= &info
->ports
[i
];
417 unsigned long flags
= BGPIOF_READ_OUTPUT_REG_SET
;
418 void __iomem
*dat
= regs
+ port
->din
;
419 void __iomem
*set
= regs
+ port
->dout
;
420 void __iomem
*dirout
= regs
+ port
->oe
;
426 flags
= BGPIOF_NO_OUTPUT
;
429 ret
= bgpio_init(gc
, dev
, 4,
430 dat
, set
, NULL
, dirout
, NULL
,
433 dev_err(dev
, "Unable to init port %s\n",
438 gc
->ngpio
= port
->ngpio
;
439 gc
->label
= port
->label
;
441 gc
->of_node
= dev
->of_node
;
442 gc
->of_gpio_n_cells
= 3;
443 gc
->of_xlate
= etraxfs_gpio_of_xlate
;
445 ret
= gpiochip_add_data(gc
, chip
);
447 dev_err(dev
, "Unable to register port %s\n",
452 if (i
> 0 && !allportsirq
)
455 ret
= gpiochip_irqchip_add(gc
, &etraxfs_gpio_irq_chip
, 0,
456 handle_level_irq
, IRQ_TYPE_NONE
);
458 dev_err(dev
, "Unable to add irqchip to port %s\n",
466 static struct platform_driver etraxfs_gpio_driver
= {
468 .name
= "etraxfs-gpio",
469 .of_match_table
= of_match_ptr(etraxfs_gpio_of_table
),
471 .probe
= etraxfs_gpio_probe
,
474 static int __init
etraxfs_gpio_init(void)
476 return platform_driver_register(&etraxfs_gpio_driver
);
479 device_initcall(etraxfs_gpio_init
);