1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * AppliedMicro X-Gene SoC GPIO-Standby Driver
5 * Copyright (c) 2014, Applied Micro Circuits Corporation
6 * Author: Tin Huynh <tnhuynh@apm.com>.
8 * Quan Nguyen <qnguyen@apm.com>.
11 #include <linux/device.h>
12 #include <linux/err.h>
14 #include <linux/irq.h>
15 #include <linux/irqdomain.h>
16 #include <linux/mod_devicetable.h>
17 #include <linux/module.h>
19 #include <linux/platform_device.h>
20 #include <linux/property.h>
21 #include <linux/types.h>
23 #include <linux/gpio/driver.h>
25 #include "gpiolib-acpi.h"
27 #define XGENE_DFLT_MAX_NGPIO 22
28 #define XGENE_DFLT_MAX_NIRQ 6
29 #define XGENE_DFLT_IRQ_START_PIN 8
30 #define GPIO_MASK(x) (1U << ((x) % 32))
32 #define MPA_GPIO_INT_LVL 0x0290
33 #define MPA_GPIO_OE_ADDR 0x029c
34 #define MPA_GPIO_OUT_ADDR 0x02a0
35 #define MPA_GPIO_IN_ADDR 0x02a4
36 #define MPA_GPIO_SEL_LO 0x0294
38 #define GPIO_INT_LEVEL_H 0x000001
39 #define GPIO_INT_LEVEL_L 0x000000
42 * struct xgene_gpio_sb - GPIO-Standby private data structure.
43 * @gc: memory-mapped GPIO controllers.
44 * @regs: GPIO register base offset
45 * @irq_domain: GPIO interrupt domain
46 * @irq_start: GPIO pin that start support interrupt
47 * @nirq: Number of GPIO pins that supports interrupt
48 * @parent_irq_base: Start parent HWIRQ
50 struct xgene_gpio_sb
{
53 struct irq_domain
*irq_domain
;
59 #define HWIRQ_TO_GPIO(priv, hwirq) ((hwirq) + (priv)->irq_start)
60 #define GPIO_TO_HWIRQ(priv, gpio) ((gpio) - (priv)->irq_start)
62 static void xgene_gpio_set_bit(struct gpio_chip
*gc
,
63 void __iomem
*reg
, u32 gpio
, int val
)
67 data
= gc
->read_reg(reg
);
69 data
|= GPIO_MASK(gpio
);
71 data
&= ~GPIO_MASK(gpio
);
72 gc
->write_reg(reg
, data
);
75 static int xgene_gpio_sb_irq_set_type(struct irq_data
*d
, unsigned int type
)
77 struct xgene_gpio_sb
*priv
= irq_data_get_irq_chip_data(d
);
78 int gpio
= HWIRQ_TO_GPIO(priv
, d
->hwirq
);
79 int lvl_type
= GPIO_INT_LEVEL_H
;
81 switch (type
& IRQ_TYPE_SENSE_MASK
) {
82 case IRQ_TYPE_EDGE_RISING
:
83 case IRQ_TYPE_LEVEL_HIGH
:
84 lvl_type
= GPIO_INT_LEVEL_H
;
86 case IRQ_TYPE_EDGE_FALLING
:
87 case IRQ_TYPE_LEVEL_LOW
:
88 lvl_type
= GPIO_INT_LEVEL_L
;
94 xgene_gpio_set_bit(&priv
->gc
, priv
->regs
+ MPA_GPIO_SEL_LO
,
96 xgene_gpio_set_bit(&priv
->gc
, priv
->regs
+ MPA_GPIO_INT_LVL
,
99 /* Propagate IRQ type setting to parent */
100 if (type
& IRQ_TYPE_EDGE_BOTH
)
101 return irq_chip_set_type_parent(d
, IRQ_TYPE_EDGE_RISING
);
103 return irq_chip_set_type_parent(d
, IRQ_TYPE_LEVEL_HIGH
);
106 static struct irq_chip xgene_gpio_sb_irq_chip
= {
108 .irq_eoi
= irq_chip_eoi_parent
,
109 .irq_mask
= irq_chip_mask_parent
,
110 .irq_unmask
= irq_chip_unmask_parent
,
111 .irq_set_type
= xgene_gpio_sb_irq_set_type
,
114 static int xgene_gpio_sb_to_irq(struct gpio_chip
*gc
, u32 gpio
)
116 struct xgene_gpio_sb
*priv
= gpiochip_get_data(gc
);
117 struct irq_fwspec fwspec
;
119 if ((gpio
< priv
->irq_start
) ||
120 (gpio
> HWIRQ_TO_GPIO(priv
, priv
->nirq
)))
123 fwspec
.fwnode
= gc
->parent
->fwnode
;
124 fwspec
.param_count
= 2;
125 fwspec
.param
[0] = GPIO_TO_HWIRQ(priv
, gpio
);
126 fwspec
.param
[1] = IRQ_TYPE_EDGE_RISING
;
127 return irq_create_fwspec_mapping(&fwspec
);
130 static int xgene_gpio_sb_domain_activate(struct irq_domain
*d
,
131 struct irq_data
*irq_data
,
134 struct xgene_gpio_sb
*priv
= d
->host_data
;
135 u32 gpio
= HWIRQ_TO_GPIO(priv
, irq_data
->hwirq
);
138 ret
= gpiochip_lock_as_irq(&priv
->gc
, gpio
);
140 dev_err(priv
->gc
.parent
,
141 "Unable to configure XGene GPIO standby pin %d as IRQ\n",
146 xgene_gpio_set_bit(&priv
->gc
, priv
->regs
+ MPA_GPIO_SEL_LO
,
151 static void xgene_gpio_sb_domain_deactivate(struct irq_domain
*d
,
152 struct irq_data
*irq_data
)
154 struct xgene_gpio_sb
*priv
= d
->host_data
;
155 u32 gpio
= HWIRQ_TO_GPIO(priv
, irq_data
->hwirq
);
157 gpiochip_unlock_as_irq(&priv
->gc
, gpio
);
158 xgene_gpio_set_bit(&priv
->gc
, priv
->regs
+ MPA_GPIO_SEL_LO
,
162 static int xgene_gpio_sb_domain_translate(struct irq_domain
*d
,
163 struct irq_fwspec
*fwspec
,
164 unsigned long *hwirq
,
167 struct xgene_gpio_sb
*priv
= d
->host_data
;
169 if ((fwspec
->param_count
!= 2) ||
170 (fwspec
->param
[0] >= priv
->nirq
))
172 *hwirq
= fwspec
->param
[0];
173 *type
= fwspec
->param
[1];
177 static int xgene_gpio_sb_domain_alloc(struct irq_domain
*domain
,
179 unsigned int nr_irqs
, void *data
)
181 struct irq_fwspec
*fwspec
= data
;
182 struct irq_fwspec parent_fwspec
;
183 struct xgene_gpio_sb
*priv
= domain
->host_data
;
184 irq_hw_number_t hwirq
;
187 hwirq
= fwspec
->param
[0];
188 for (i
= 0; i
< nr_irqs
; i
++)
189 irq_domain_set_hwirq_and_chip(domain
, virq
+ i
, hwirq
+ i
,
190 &xgene_gpio_sb_irq_chip
, priv
);
192 parent_fwspec
.fwnode
= domain
->parent
->fwnode
;
193 if (is_of_node(parent_fwspec
.fwnode
)) {
194 parent_fwspec
.param_count
= 3;
195 parent_fwspec
.param
[0] = 0;/* SPI */
196 /* Skip SGIs and PPIs*/
197 parent_fwspec
.param
[1] = hwirq
+ priv
->parent_irq_base
- 32;
198 parent_fwspec
.param
[2] = fwspec
->param
[1];
199 } else if (is_fwnode_irqchip(parent_fwspec
.fwnode
)) {
200 parent_fwspec
.param_count
= 2;
201 parent_fwspec
.param
[0] = hwirq
+ priv
->parent_irq_base
;
202 parent_fwspec
.param
[1] = fwspec
->param
[1];
206 return irq_domain_alloc_irqs_parent(domain
, virq
, nr_irqs
,
210 static const struct irq_domain_ops xgene_gpio_sb_domain_ops
= {
211 .translate
= xgene_gpio_sb_domain_translate
,
212 .alloc
= xgene_gpio_sb_domain_alloc
,
213 .free
= irq_domain_free_irqs_common
,
214 .activate
= xgene_gpio_sb_domain_activate
,
215 .deactivate
= xgene_gpio_sb_domain_deactivate
,
218 static int xgene_gpio_sb_probe(struct platform_device
*pdev
)
220 struct xgene_gpio_sb
*priv
;
223 struct irq_domain
*parent_domain
= NULL
;
226 priv
= devm_kzalloc(&pdev
->dev
, sizeof(*priv
), GFP_KERNEL
);
230 regs
= devm_platform_ioremap_resource(pdev
, 0);
232 return PTR_ERR(regs
);
236 ret
= platform_get_irq(pdev
, 0);
238 priv
->parent_irq_base
= irq_get_irq_data(ret
)->hwirq
;
239 parent_domain
= irq_get_irq_data(ret
)->domain
;
241 if (!parent_domain
) {
242 dev_err(&pdev
->dev
, "unable to obtain parent domain\n");
246 ret
= bgpio_init(&priv
->gc
, &pdev
->dev
, 4,
247 regs
+ MPA_GPIO_IN_ADDR
,
248 regs
+ MPA_GPIO_OUT_ADDR
, NULL
,
249 regs
+ MPA_GPIO_OE_ADDR
, NULL
, 0);
253 priv
->gc
.to_irq
= xgene_gpio_sb_to_irq
;
255 /* Retrieve start irq pin, use default if property not found */
256 priv
->irq_start
= XGENE_DFLT_IRQ_START_PIN
;
257 if (!device_property_read_u32(&pdev
->dev
, "apm,irq-start", &val32
))
258 priv
->irq_start
= val32
;
260 /* Retrieve number irqs, use default if property not found */
261 priv
->nirq
= XGENE_DFLT_MAX_NIRQ
;
262 if (!device_property_read_u32(&pdev
->dev
, "apm,nr-irqs", &val32
))
265 /* Retrieve number gpio, use default if property not found */
266 priv
->gc
.ngpio
= XGENE_DFLT_MAX_NGPIO
;
267 if (!device_property_read_u32(&pdev
->dev
, "apm,nr-gpios", &val32
))
268 priv
->gc
.ngpio
= val32
;
270 dev_info(&pdev
->dev
, "Support %d gpios, %d irqs start from pin %d\n",
271 priv
->gc
.ngpio
, priv
->nirq
, priv
->irq_start
);
273 platform_set_drvdata(pdev
, priv
);
275 priv
->irq_domain
= irq_domain_create_hierarchy(parent_domain
,
276 0, priv
->nirq
, pdev
->dev
.fwnode
,
277 &xgene_gpio_sb_domain_ops
, priv
);
278 if (!priv
->irq_domain
)
281 priv
->gc
.irq
.domain
= priv
->irq_domain
;
283 ret
= devm_gpiochip_add_data(&pdev
->dev
, &priv
->gc
, priv
);
286 "failed to register X-Gene GPIO Standby driver\n");
287 irq_domain_remove(priv
->irq_domain
);
291 dev_info(&pdev
->dev
, "X-Gene GPIO Standby driver registered\n");
293 /* Register interrupt handlers for GPIO signaled ACPI Events */
294 acpi_gpiochip_request_interrupts(&priv
->gc
);
299 static void xgene_gpio_sb_remove(struct platform_device
*pdev
)
301 struct xgene_gpio_sb
*priv
= platform_get_drvdata(pdev
);
303 acpi_gpiochip_free_interrupts(&priv
->gc
);
305 irq_domain_remove(priv
->irq_domain
);
308 static const struct of_device_id xgene_gpio_sb_of_match
[] = {
309 { .compatible
= "apm,xgene-gpio-sb" },
312 MODULE_DEVICE_TABLE(of
, xgene_gpio_sb_of_match
);
314 static const struct acpi_device_id xgene_gpio_sb_acpi_match
[] = {
318 MODULE_DEVICE_TABLE(acpi
, xgene_gpio_sb_acpi_match
);
320 static struct platform_driver xgene_gpio_sb_driver
= {
322 .name
= "xgene-gpio-sb",
323 .of_match_table
= xgene_gpio_sb_of_match
,
324 .acpi_match_table
= xgene_gpio_sb_acpi_match
,
326 .probe
= xgene_gpio_sb_probe
,
327 .remove
= xgene_gpio_sb_remove
,
329 module_platform_driver(xgene_gpio_sb_driver
);
331 MODULE_AUTHOR("AppliedMicro");
332 MODULE_DESCRIPTION("APM X-Gene GPIO Standby driver");
333 MODULE_LICENSE("GPL");