Loading...
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * AppliedMicro X-Gene SoC GPIO-Standby Driver
4 *
5 * Copyright (c) 2014, Applied Micro Circuits Corporation
6 * Author: Tin Huynh <tnhuynh@apm.com>.
7 * Y Vo <yvo@apm.com>.
8 * Quan Nguyen <qnguyen@apm.com>.
9 */
10
11#include <linux/module.h>
12#include <linux/io.h>
13#include <linux/of.h>
14#include <linux/platform_device.h>
15#include <linux/gpio/driver.h>
16#include <linux/acpi.h>
17
18#include "gpiolib.h"
19#include "gpiolib-acpi.h"
20
21/* Common property names */
22#define XGENE_NIRQ_PROPERTY "apm,nr-irqs"
23#define XGENE_NGPIO_PROPERTY "apm,nr-gpios"
24#define XGENE_IRQ_START_PROPERTY "apm,irq-start"
25
26#define XGENE_DFLT_MAX_NGPIO 22
27#define XGENE_DFLT_MAX_NIRQ 6
28#define XGENE_DFLT_IRQ_START_PIN 8
29#define GPIO_MASK(x) (1U << ((x) % 32))
30
31#define MPA_GPIO_INT_LVL 0x0290
32#define MPA_GPIO_OE_ADDR 0x029c
33#define MPA_GPIO_OUT_ADDR 0x02a0
34#define MPA_GPIO_IN_ADDR 0x02a4
35#define MPA_GPIO_SEL_LO 0x0294
36
37#define GPIO_INT_LEVEL_H 0x000001
38#define GPIO_INT_LEVEL_L 0x000000
39
40/**
41 * struct xgene_gpio_sb - GPIO-Standby private data structure.
42 * @gc: memory-mapped GPIO controllers.
43 * @regs: GPIO register base offset
44 * @irq_domain: GPIO interrupt domain
45 * @irq_start: GPIO pin that start support interrupt
46 * @nirq: Number of GPIO pins that supports interrupt
47 * @parent_irq_base: Start parent HWIRQ
48 */
49struct xgene_gpio_sb {
50 struct gpio_chip gc;
51 void __iomem *regs;
52 struct irq_domain *irq_domain;
53 u16 irq_start;
54 u16 nirq;
55 u16 parent_irq_base;
56};
57
58#define HWIRQ_TO_GPIO(priv, hwirq) ((hwirq) + (priv)->irq_start)
59#define GPIO_TO_HWIRQ(priv, gpio) ((gpio) - (priv)->irq_start)
60
61static void xgene_gpio_set_bit(struct gpio_chip *gc,
62 void __iomem *reg, u32 gpio, int val)
63{
64 u32 data;
65
66 data = gc->read_reg(reg);
67 if (val)
68 data |= GPIO_MASK(gpio);
69 else
70 data &= ~GPIO_MASK(gpio);
71 gc->write_reg(reg, data);
72}
73
74static int xgene_gpio_sb_irq_set_type(struct irq_data *d, unsigned int type)
75{
76 struct xgene_gpio_sb *priv = irq_data_get_irq_chip_data(d);
77 int gpio = HWIRQ_TO_GPIO(priv, d->hwirq);
78 int lvl_type = GPIO_INT_LEVEL_H;
79
80 switch (type & IRQ_TYPE_SENSE_MASK) {
81 case IRQ_TYPE_EDGE_RISING:
82 case IRQ_TYPE_LEVEL_HIGH:
83 lvl_type = GPIO_INT_LEVEL_H;
84 break;
85 case IRQ_TYPE_EDGE_FALLING:
86 case IRQ_TYPE_LEVEL_LOW:
87 lvl_type = GPIO_INT_LEVEL_L;
88 break;
89 default:
90 break;
91 }
92
93 xgene_gpio_set_bit(&priv->gc, priv->regs + MPA_GPIO_SEL_LO,
94 gpio * 2, 1);
95 xgene_gpio_set_bit(&priv->gc, priv->regs + MPA_GPIO_INT_LVL,
96 d->hwirq, lvl_type);
97
98 /* Propagate IRQ type setting to parent */
99 if (type & IRQ_TYPE_EDGE_BOTH)
100 return irq_chip_set_type_parent(d, IRQ_TYPE_EDGE_RISING);
101 else
102 return irq_chip_set_type_parent(d, IRQ_TYPE_LEVEL_HIGH);
103}
104
105static struct irq_chip xgene_gpio_sb_irq_chip = {
106 .name = "sbgpio",
107 .irq_eoi = irq_chip_eoi_parent,
108 .irq_mask = irq_chip_mask_parent,
109 .irq_unmask = irq_chip_unmask_parent,
110 .irq_set_type = xgene_gpio_sb_irq_set_type,
111};
112
113static int xgene_gpio_sb_to_irq(struct gpio_chip *gc, u32 gpio)
114{
115 struct xgene_gpio_sb *priv = gpiochip_get_data(gc);
116 struct irq_fwspec fwspec;
117
118 if ((gpio < priv->irq_start) ||
119 (gpio > HWIRQ_TO_GPIO(priv, priv->nirq)))
120 return -ENXIO;
121
122 fwspec.fwnode = gc->parent->fwnode;
123 fwspec.param_count = 2;
124 fwspec.param[0] = GPIO_TO_HWIRQ(priv, gpio);
125 fwspec.param[1] = IRQ_TYPE_EDGE_RISING;
126 return irq_create_fwspec_mapping(&fwspec);
127}
128
129static int xgene_gpio_sb_domain_activate(struct irq_domain *d,
130 struct irq_data *irq_data,
131 bool reserve)
132{
133 struct xgene_gpio_sb *priv = d->host_data;
134 u32 gpio = HWIRQ_TO_GPIO(priv, irq_data->hwirq);
135 int ret;
136
137 ret = gpiochip_lock_as_irq(&priv->gc, gpio);
138 if (ret) {
139 dev_err(priv->gc.parent,
140 "Unable to configure XGene GPIO standby pin %d as IRQ\n",
141 gpio);
142 return ret;
143 }
144
145 xgene_gpio_set_bit(&priv->gc, priv->regs + MPA_GPIO_SEL_LO,
146 gpio * 2, 1);
147 return 0;
148}
149
150static void xgene_gpio_sb_domain_deactivate(struct irq_domain *d,
151 struct irq_data *irq_data)
152{
153 struct xgene_gpio_sb *priv = d->host_data;
154 u32 gpio = HWIRQ_TO_GPIO(priv, irq_data->hwirq);
155
156 gpiochip_unlock_as_irq(&priv->gc, gpio);
157 xgene_gpio_set_bit(&priv->gc, priv->regs + MPA_GPIO_SEL_LO,
158 gpio * 2, 0);
159}
160
161static int xgene_gpio_sb_domain_translate(struct irq_domain *d,
162 struct irq_fwspec *fwspec,
163 unsigned long *hwirq,
164 unsigned int *type)
165{
166 struct xgene_gpio_sb *priv = d->host_data;
167
168 if ((fwspec->param_count != 2) ||
169 (fwspec->param[0] >= priv->nirq))
170 return -EINVAL;
171 *hwirq = fwspec->param[0];
172 *type = fwspec->param[1];
173 return 0;
174}
175
176static int xgene_gpio_sb_domain_alloc(struct irq_domain *domain,
177 unsigned int virq,
178 unsigned int nr_irqs, void *data)
179{
180 struct irq_fwspec *fwspec = data;
181 struct irq_fwspec parent_fwspec;
182 struct xgene_gpio_sb *priv = domain->host_data;
183 irq_hw_number_t hwirq;
184 unsigned int i;
185
186 hwirq = fwspec->param[0];
187 for (i = 0; i < nr_irqs; i++)
188 irq_domain_set_hwirq_and_chip(domain, virq + i, hwirq + i,
189 &xgene_gpio_sb_irq_chip, priv);
190
191 parent_fwspec.fwnode = domain->parent->fwnode;
192 if (is_of_node(parent_fwspec.fwnode)) {
193 parent_fwspec.param_count = 3;
194 parent_fwspec.param[0] = 0;/* SPI */
195 /* Skip SGIs and PPIs*/
196 parent_fwspec.param[1] = hwirq + priv->parent_irq_base - 32;
197 parent_fwspec.param[2] = fwspec->param[1];
198 } else if (is_fwnode_irqchip(parent_fwspec.fwnode)) {
199 parent_fwspec.param_count = 2;
200 parent_fwspec.param[0] = hwirq + priv->parent_irq_base;
201 parent_fwspec.param[1] = fwspec->param[1];
202 } else
203 return -EINVAL;
204
205 return irq_domain_alloc_irqs_parent(domain, virq, nr_irqs,
206 &parent_fwspec);
207}
208
209static const struct irq_domain_ops xgene_gpio_sb_domain_ops = {
210 .translate = xgene_gpio_sb_domain_translate,
211 .alloc = xgene_gpio_sb_domain_alloc,
212 .free = irq_domain_free_irqs_common,
213 .activate = xgene_gpio_sb_domain_activate,
214 .deactivate = xgene_gpio_sb_domain_deactivate,
215};
216
217static int xgene_gpio_sb_probe(struct platform_device *pdev)
218{
219 struct xgene_gpio_sb *priv;
220 int ret;
221 void __iomem *regs;
222 struct irq_domain *parent_domain = NULL;
223 u32 val32;
224
225 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
226 if (!priv)
227 return -ENOMEM;
228
229 regs = devm_platform_ioremap_resource(pdev, 0);
230 if (IS_ERR(regs))
231 return PTR_ERR(regs);
232
233 priv->regs = regs;
234
235 ret = platform_get_irq(pdev, 0);
236 if (ret > 0) {
237 priv->parent_irq_base = irq_get_irq_data(ret)->hwirq;
238 parent_domain = irq_get_irq_data(ret)->domain;
239 }
240 if (!parent_domain) {
241 dev_err(&pdev->dev, "unable to obtain parent domain\n");
242 return -ENODEV;
243 }
244
245 ret = bgpio_init(&priv->gc, &pdev->dev, 4,
246 regs + MPA_GPIO_IN_ADDR,
247 regs + MPA_GPIO_OUT_ADDR, NULL,
248 regs + MPA_GPIO_OE_ADDR, NULL, 0);
249 if (ret)
250 return ret;
251
252 priv->gc.to_irq = xgene_gpio_sb_to_irq;
253
254 /* Retrieve start irq pin, use default if property not found */
255 priv->irq_start = XGENE_DFLT_IRQ_START_PIN;
256 if (!device_property_read_u32(&pdev->dev,
257 XGENE_IRQ_START_PROPERTY, &val32))
258 priv->irq_start = val32;
259
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, XGENE_NIRQ_PROPERTY, &val32))
263 priv->nirq = val32;
264
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, XGENE_NGPIO_PROPERTY, &val32))
268 priv->gc.ngpio = val32;
269
270 dev_info(&pdev->dev, "Support %d gpios, %d irqs start from pin %d\n",
271 priv->gc.ngpio, priv->nirq, priv->irq_start);
272
273 platform_set_drvdata(pdev, priv);
274
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)
279 return -ENODEV;
280
281 priv->gc.irq.domain = priv->irq_domain;
282
283 ret = devm_gpiochip_add_data(&pdev->dev, &priv->gc, priv);
284 if (ret) {
285 dev_err(&pdev->dev,
286 "failed to register X-Gene GPIO Standby driver\n");
287 irq_domain_remove(priv->irq_domain);
288 return ret;
289 }
290
291 dev_info(&pdev->dev, "X-Gene GPIO Standby driver registered\n");
292
293 /* Register interrupt handlers for GPIO signaled ACPI Events */
294 acpi_gpiochip_request_interrupts(&priv->gc);
295
296 return ret;
297}
298
299static int xgene_gpio_sb_remove(struct platform_device *pdev)
300{
301 struct xgene_gpio_sb *priv = platform_get_drvdata(pdev);
302
303 acpi_gpiochip_free_interrupts(&priv->gc);
304
305 irq_domain_remove(priv->irq_domain);
306
307 return 0;
308}
309
310static const struct of_device_id xgene_gpio_sb_of_match[] = {
311 {.compatible = "apm,xgene-gpio-sb", },
312 {},
313};
314MODULE_DEVICE_TABLE(of, xgene_gpio_sb_of_match);
315
316#ifdef CONFIG_ACPI
317static const struct acpi_device_id xgene_gpio_sb_acpi_match[] = {
318 {"APMC0D15", 0},
319 {},
320};
321MODULE_DEVICE_TABLE(acpi, xgene_gpio_sb_acpi_match);
322#endif
323
324static struct platform_driver xgene_gpio_sb_driver = {
325 .driver = {
326 .name = "xgene-gpio-sb",
327 .of_match_table = xgene_gpio_sb_of_match,
328 .acpi_match_table = ACPI_PTR(xgene_gpio_sb_acpi_match),
329 },
330 .probe = xgene_gpio_sb_probe,
331 .remove = xgene_gpio_sb_remove,
332};
333module_platform_driver(xgene_gpio_sb_driver);
334
335MODULE_AUTHOR("AppliedMicro");
336MODULE_DESCRIPTION("APM X-Gene GPIO Standby driver");
337MODULE_LICENSE("GPL");
1/*
2 * AppliedMicro X-Gene SoC GPIO-Standby Driver
3 *
4 * Copyright (c) 2014, Applied Micro Circuits Corporation
5 * Author: Tin Huynh <tnhuynh@apm.com>.
6 * Y Vo <yvo@apm.com>.
7 * Quan Nguyen <qnguyen@apm.com>.
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23#include <linux/module.h>
24#include <linux/io.h>
25#include <linux/platform_device.h>
26#include <linux/of_gpio.h>
27#include <linux/gpio/driver.h>
28#include <linux/acpi.h>
29
30#include "gpiolib.h"
31
32/* Common property names */
33#define XGENE_NIRQ_PROPERTY "apm,nr-irqs"
34#define XGENE_NGPIO_PROPERTY "apm,nr-gpios"
35#define XGENE_IRQ_START_PROPERTY "apm,irq-start"
36
37#define XGENE_DFLT_MAX_NGPIO 22
38#define XGENE_DFLT_MAX_NIRQ 6
39#define XGENE_DFLT_IRQ_START_PIN 8
40#define GPIO_MASK(x) (1U << ((x) % 32))
41
42#define MPA_GPIO_INT_LVL 0x0290
43#define MPA_GPIO_OE_ADDR 0x029c
44#define MPA_GPIO_OUT_ADDR 0x02a0
45#define MPA_GPIO_IN_ADDR 0x02a4
46#define MPA_GPIO_SEL_LO 0x0294
47
48#define GPIO_INT_LEVEL_H 0x000001
49#define GPIO_INT_LEVEL_L 0x000000
50
51/**
52 * struct xgene_gpio_sb - GPIO-Standby private data structure.
53 * @gc: memory-mapped GPIO controllers.
54 * @regs: GPIO register base offset
55 * @irq_domain: GPIO interrupt domain
56 * @irq_start: GPIO pin that start support interrupt
57 * @nirq: Number of GPIO pins that supports interrupt
58 * @parent_irq_base: Start parent HWIRQ
59 */
60struct xgene_gpio_sb {
61 struct gpio_chip gc;
62 void __iomem *regs;
63 struct irq_domain *irq_domain;
64 u16 irq_start;
65 u16 nirq;
66 u16 parent_irq_base;
67};
68
69#define HWIRQ_TO_GPIO(priv, hwirq) ((hwirq) + (priv)->irq_start)
70#define GPIO_TO_HWIRQ(priv, gpio) ((gpio) - (priv)->irq_start)
71
72static void xgene_gpio_set_bit(struct gpio_chip *gc,
73 void __iomem *reg, u32 gpio, int val)
74{
75 u32 data;
76
77 data = gc->read_reg(reg);
78 if (val)
79 data |= GPIO_MASK(gpio);
80 else
81 data &= ~GPIO_MASK(gpio);
82 gc->write_reg(reg, data);
83}
84
85static int xgene_gpio_sb_irq_set_type(struct irq_data *d, unsigned int type)
86{
87 struct xgene_gpio_sb *priv = irq_data_get_irq_chip_data(d);
88 int gpio = HWIRQ_TO_GPIO(priv, d->hwirq);
89 int lvl_type = GPIO_INT_LEVEL_H;
90
91 switch (type & IRQ_TYPE_SENSE_MASK) {
92 case IRQ_TYPE_EDGE_RISING:
93 case IRQ_TYPE_LEVEL_HIGH:
94 lvl_type = GPIO_INT_LEVEL_H;
95 break;
96 case IRQ_TYPE_EDGE_FALLING:
97 case IRQ_TYPE_LEVEL_LOW:
98 lvl_type = GPIO_INT_LEVEL_L;
99 break;
100 default:
101 break;
102 }
103
104 xgene_gpio_set_bit(&priv->gc, priv->regs + MPA_GPIO_SEL_LO,
105 gpio * 2, 1);
106 xgene_gpio_set_bit(&priv->gc, priv->regs + MPA_GPIO_INT_LVL,
107 d->hwirq, lvl_type);
108
109 /* Propagate IRQ type setting to parent */
110 if (type & IRQ_TYPE_EDGE_BOTH)
111 return irq_chip_set_type_parent(d, IRQ_TYPE_EDGE_RISING);
112 else
113 return irq_chip_set_type_parent(d, IRQ_TYPE_LEVEL_HIGH);
114}
115
116static struct irq_chip xgene_gpio_sb_irq_chip = {
117 .name = "sbgpio",
118 .irq_eoi = irq_chip_eoi_parent,
119 .irq_mask = irq_chip_mask_parent,
120 .irq_unmask = irq_chip_unmask_parent,
121 .irq_set_type = xgene_gpio_sb_irq_set_type,
122};
123
124static int xgene_gpio_sb_to_irq(struct gpio_chip *gc, u32 gpio)
125{
126 struct xgene_gpio_sb *priv = gpiochip_get_data(gc);
127 struct irq_fwspec fwspec;
128
129 if ((gpio < priv->irq_start) ||
130 (gpio > HWIRQ_TO_GPIO(priv, priv->nirq)))
131 return -ENXIO;
132
133 fwspec.fwnode = gc->parent->fwnode;
134 fwspec.param_count = 2;
135 fwspec.param[0] = GPIO_TO_HWIRQ(priv, gpio);
136 fwspec.param[1] = IRQ_TYPE_NONE;
137 return irq_create_fwspec_mapping(&fwspec);
138}
139
140static int xgene_gpio_sb_domain_activate(struct irq_domain *d,
141 struct irq_data *irq_data,
142 bool reserve)
143{
144 struct xgene_gpio_sb *priv = d->host_data;
145 u32 gpio = HWIRQ_TO_GPIO(priv, irq_data->hwirq);
146
147 if (gpiochip_lock_as_irq(&priv->gc, gpio)) {
148 dev_err(priv->gc.parent,
149 "Unable to configure XGene GPIO standby pin %d as IRQ\n",
150 gpio);
151 return -ENOSPC;
152 }
153
154 xgene_gpio_set_bit(&priv->gc, priv->regs + MPA_GPIO_SEL_LO,
155 gpio * 2, 1);
156 return 0;
157}
158
159static void xgene_gpio_sb_domain_deactivate(struct irq_domain *d,
160 struct irq_data *irq_data)
161{
162 struct xgene_gpio_sb *priv = d->host_data;
163 u32 gpio = HWIRQ_TO_GPIO(priv, irq_data->hwirq);
164
165 gpiochip_unlock_as_irq(&priv->gc, gpio);
166 xgene_gpio_set_bit(&priv->gc, priv->regs + MPA_GPIO_SEL_LO,
167 gpio * 2, 0);
168}
169
170static int xgene_gpio_sb_domain_translate(struct irq_domain *d,
171 struct irq_fwspec *fwspec,
172 unsigned long *hwirq,
173 unsigned int *type)
174{
175 struct xgene_gpio_sb *priv = d->host_data;
176
177 if ((fwspec->param_count != 2) ||
178 (fwspec->param[0] >= priv->nirq))
179 return -EINVAL;
180 *hwirq = fwspec->param[0];
181 *type = fwspec->param[1];
182 return 0;
183}
184
185static int xgene_gpio_sb_domain_alloc(struct irq_domain *domain,
186 unsigned int virq,
187 unsigned int nr_irqs, void *data)
188{
189 struct irq_fwspec *fwspec = data;
190 struct irq_fwspec parent_fwspec;
191 struct xgene_gpio_sb *priv = domain->host_data;
192 irq_hw_number_t hwirq;
193 unsigned int i;
194
195 hwirq = fwspec->param[0];
196 for (i = 0; i < nr_irqs; i++)
197 irq_domain_set_hwirq_and_chip(domain, virq + i, hwirq + i,
198 &xgene_gpio_sb_irq_chip, priv);
199
200 parent_fwspec.fwnode = domain->parent->fwnode;
201 if (is_of_node(parent_fwspec.fwnode)) {
202 parent_fwspec.param_count = 3;
203 parent_fwspec.param[0] = 0;/* SPI */
204 /* Skip SGIs and PPIs*/
205 parent_fwspec.param[1] = hwirq + priv->parent_irq_base - 32;
206 parent_fwspec.param[2] = fwspec->param[1];
207 } else if (is_fwnode_irqchip(parent_fwspec.fwnode)) {
208 parent_fwspec.param_count = 2;
209 parent_fwspec.param[0] = hwirq + priv->parent_irq_base;
210 parent_fwspec.param[1] = fwspec->param[1];
211 } else
212 return -EINVAL;
213
214 return irq_domain_alloc_irqs_parent(domain, virq, nr_irqs,
215 &parent_fwspec);
216}
217
218static const struct irq_domain_ops xgene_gpio_sb_domain_ops = {
219 .translate = xgene_gpio_sb_domain_translate,
220 .alloc = xgene_gpio_sb_domain_alloc,
221 .free = irq_domain_free_irqs_common,
222 .activate = xgene_gpio_sb_domain_activate,
223 .deactivate = xgene_gpio_sb_domain_deactivate,
224};
225
226static int xgene_gpio_sb_probe(struct platform_device *pdev)
227{
228 struct xgene_gpio_sb *priv;
229 int ret;
230 struct resource *res;
231 void __iomem *regs;
232 struct irq_domain *parent_domain = NULL;
233 u32 val32;
234
235 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
236 if (!priv)
237 return -ENOMEM;
238
239 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
240 regs = devm_ioremap_resource(&pdev->dev, res);
241 if (IS_ERR(regs))
242 return PTR_ERR(regs);
243
244 priv->regs = regs;
245
246 ret = platform_get_irq(pdev, 0);
247 if (ret > 0) {
248 priv->parent_irq_base = irq_get_irq_data(ret)->hwirq;
249 parent_domain = irq_get_irq_data(ret)->domain;
250 }
251 if (!parent_domain) {
252 dev_err(&pdev->dev, "unable to obtain parent domain\n");
253 return -ENODEV;
254 }
255
256 ret = bgpio_init(&priv->gc, &pdev->dev, 4,
257 regs + MPA_GPIO_IN_ADDR,
258 regs + MPA_GPIO_OUT_ADDR, NULL,
259 regs + MPA_GPIO_OE_ADDR, NULL, 0);
260 if (ret)
261 return ret;
262
263 priv->gc.to_irq = xgene_gpio_sb_to_irq;
264
265 /* Retrieve start irq pin, use default if property not found */
266 priv->irq_start = XGENE_DFLT_IRQ_START_PIN;
267 if (!device_property_read_u32(&pdev->dev,
268 XGENE_IRQ_START_PROPERTY, &val32))
269 priv->irq_start = val32;
270
271 /* Retrieve number irqs, use default if property not found */
272 priv->nirq = XGENE_DFLT_MAX_NIRQ;
273 if (!device_property_read_u32(&pdev->dev, XGENE_NIRQ_PROPERTY, &val32))
274 priv->nirq = val32;
275
276 /* Retrieve number gpio, use default if property not found */
277 priv->gc.ngpio = XGENE_DFLT_MAX_NGPIO;
278 if (!device_property_read_u32(&pdev->dev, XGENE_NGPIO_PROPERTY, &val32))
279 priv->gc.ngpio = val32;
280
281 dev_info(&pdev->dev, "Support %d gpios, %d irqs start from pin %d\n",
282 priv->gc.ngpio, priv->nirq, priv->irq_start);
283
284 platform_set_drvdata(pdev, priv);
285
286 priv->irq_domain = irq_domain_create_hierarchy(parent_domain,
287 0, priv->nirq, pdev->dev.fwnode,
288 &xgene_gpio_sb_domain_ops, priv);
289 if (!priv->irq_domain)
290 return -ENODEV;
291
292 priv->gc.irq.domain = priv->irq_domain;
293
294 ret = devm_gpiochip_add_data(&pdev->dev, &priv->gc, priv);
295 if (ret) {
296 dev_err(&pdev->dev,
297 "failed to register X-Gene GPIO Standby driver\n");
298 irq_domain_remove(priv->irq_domain);
299 return ret;
300 }
301
302 dev_info(&pdev->dev, "X-Gene GPIO Standby driver registered\n");
303
304 if (priv->nirq > 0) {
305 /* Register interrupt handlers for gpio signaled acpi events */
306 acpi_gpiochip_request_interrupts(&priv->gc);
307 }
308
309 return ret;
310}
311
312static int xgene_gpio_sb_remove(struct platform_device *pdev)
313{
314 struct xgene_gpio_sb *priv = platform_get_drvdata(pdev);
315
316 if (priv->nirq > 0) {
317 acpi_gpiochip_free_interrupts(&priv->gc);
318 }
319
320 irq_domain_remove(priv->irq_domain);
321
322 return 0;
323}
324
325static const struct of_device_id xgene_gpio_sb_of_match[] = {
326 {.compatible = "apm,xgene-gpio-sb", },
327 {},
328};
329MODULE_DEVICE_TABLE(of, xgene_gpio_sb_of_match);
330
331#ifdef CONFIG_ACPI
332static const struct acpi_device_id xgene_gpio_sb_acpi_match[] = {
333 {"APMC0D15", 0},
334 {},
335};
336MODULE_DEVICE_TABLE(acpi, xgene_gpio_sb_acpi_match);
337#endif
338
339static struct platform_driver xgene_gpio_sb_driver = {
340 .driver = {
341 .name = "xgene-gpio-sb",
342 .of_match_table = xgene_gpio_sb_of_match,
343 .acpi_match_table = ACPI_PTR(xgene_gpio_sb_acpi_match),
344 },
345 .probe = xgene_gpio_sb_probe,
346 .remove = xgene_gpio_sb_remove,
347};
348module_platform_driver(xgene_gpio_sb_driver);
349
350MODULE_AUTHOR("AppliedMicro");
351MODULE_DESCRIPTION("APM X-Gene GPIO Standby driver");
352MODULE_LICENSE("GPL");