Merge tag 'timers_urgent_for_v5.11_rc5' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / drivers / gpio / gpio-xgene.c
CommitLineData
caab277b 1// SPDX-License-Identifier: GPL-2.0-only
29cbf458
FK
2/*
3 * AppliedMicro X-Gene SoC GPIO Driver
4 *
5 * Copyright (c) 2014, Applied Micro Circuits Corporation
6 * Author: Feng Kan <fkan@apm.com>.
29cbf458
FK
7 */
8
0c60de3f 9#include <linux/acpi.h>
29cbf458
FK
10#include <linux/kernel.h>
11#include <linux/init.h>
12#include <linux/io.h>
13#include <linux/spinlock.h>
14#include <linux/platform_device.h>
15#include <linux/gpio/driver.h>
16#include <linux/types.h>
17#include <linux/bitops.h>
18
19#define GPIO_SET_DR_OFFSET 0x0C
20#define GPIO_DATA_OFFSET 0x14
21#define GPIO_BANK_STRIDE 0x0C
22
23#define XGENE_GPIOS_PER_BANK 16
24#define XGENE_MAX_GPIO_BANKS 3
25#define XGENE_MAX_GPIOS (XGENE_GPIOS_PER_BANK * XGENE_MAX_GPIO_BANKS)
26
27#define GPIO_BIT_OFFSET(x) (x % XGENE_GPIOS_PER_BANK)
28#define GPIO_BANK_OFFSET(x) ((x / XGENE_GPIOS_PER_BANK) * GPIO_BANK_STRIDE)
29
29cbf458
FK
30struct xgene_gpio {
31 struct gpio_chip chip;
32 void __iomem *base;
33 spinlock_t lock;
29cbf458 34 u32 set_dr_val[XGENE_MAX_GPIO_BANKS];
29cbf458
FK
35};
36
29cbf458
FK
37static int xgene_gpio_get(struct gpio_chip *gc, unsigned int offset)
38{
ac9dc85e 39 struct xgene_gpio *chip = gpiochip_get_data(gc);
29cbf458
FK
40 unsigned long bank_offset;
41 u32 bit_offset;
42
43 bank_offset = GPIO_DATA_OFFSET + GPIO_BANK_OFFSET(offset);
44 bit_offset = GPIO_BIT_OFFSET(offset);
45 return !!(ioread32(chip->base + bank_offset) & BIT(bit_offset));
46}
47
48static void __xgene_gpio_set(struct gpio_chip *gc, unsigned int offset, int val)
49{
ac9dc85e 50 struct xgene_gpio *chip = gpiochip_get_data(gc);
29cbf458
FK
51 unsigned long bank_offset;
52 u32 setval, bit_offset;
53
54 bank_offset = GPIO_SET_DR_OFFSET + GPIO_BANK_OFFSET(offset);
55 bit_offset = GPIO_BIT_OFFSET(offset) + XGENE_GPIOS_PER_BANK;
56
57 setval = ioread32(chip->base + bank_offset);
58 if (val)
59 setval |= BIT(bit_offset);
60 else
61 setval &= ~BIT(bit_offset);
62 iowrite32(setval, chip->base + bank_offset);
63}
64
65static void xgene_gpio_set(struct gpio_chip *gc, unsigned int offset, int val)
66{
ac9dc85e 67 struct xgene_gpio *chip = gpiochip_get_data(gc);
29cbf458
FK
68 unsigned long flags;
69
70 spin_lock_irqsave(&chip->lock, flags);
71 __xgene_gpio_set(gc, offset, val);
72 spin_unlock_irqrestore(&chip->lock, flags);
73}
74
3b711e07
LW
75static int xgene_gpio_get_direction(struct gpio_chip *gc, unsigned int offset)
76{
77 struct xgene_gpio *chip = gpiochip_get_data(gc);
78 unsigned long bank_offset, bit_offset;
79
80 bank_offset = GPIO_SET_DR_OFFSET + GPIO_BANK_OFFSET(offset);
81 bit_offset = GPIO_BIT_OFFSET(offset);
82
e42615ec
MV
83 if (ioread32(chip->base + bank_offset) & BIT(bit_offset))
84 return GPIO_LINE_DIRECTION_IN;
85
86 return GPIO_LINE_DIRECTION_OUT;
3b711e07
LW
87}
88
29cbf458
FK
89static int xgene_gpio_dir_in(struct gpio_chip *gc, unsigned int offset)
90{
ac9dc85e 91 struct xgene_gpio *chip = gpiochip_get_data(gc);
29cbf458
FK
92 unsigned long flags, bank_offset;
93 u32 dirval, bit_offset;
94
95 bank_offset = GPIO_SET_DR_OFFSET + GPIO_BANK_OFFSET(offset);
96 bit_offset = GPIO_BIT_OFFSET(offset);
97
98 spin_lock_irqsave(&chip->lock, flags);
99
100 dirval = ioread32(chip->base + bank_offset);
101 dirval |= BIT(bit_offset);
102 iowrite32(dirval, chip->base + bank_offset);
103
104 spin_unlock_irqrestore(&chip->lock, flags);
105
106 return 0;
107}
108
109static int xgene_gpio_dir_out(struct gpio_chip *gc,
110 unsigned int offset, int val)
111{
ac9dc85e 112 struct xgene_gpio *chip = gpiochip_get_data(gc);
29cbf458
FK
113 unsigned long flags, bank_offset;
114 u32 dirval, bit_offset;
115
116 bank_offset = GPIO_SET_DR_OFFSET + GPIO_BANK_OFFSET(offset);
117 bit_offset = GPIO_BIT_OFFSET(offset);
118
119 spin_lock_irqsave(&chip->lock, flags);
120
121 dirval = ioread32(chip->base + bank_offset);
122 dirval &= ~BIT(bit_offset);
123 iowrite32(dirval, chip->base + bank_offset);
124 __xgene_gpio_set(gc, offset, val);
125
126 spin_unlock_irqrestore(&chip->lock, flags);
127
128 return 0;
129}
130
b115bebc 131static __maybe_unused int xgene_gpio_suspend(struct device *dev)
29cbf458
FK
132{
133 struct xgene_gpio *gpio = dev_get_drvdata(dev);
134 unsigned long bank_offset;
135 unsigned int bank;
136
137 for (bank = 0; bank < XGENE_MAX_GPIO_BANKS; bank++) {
138 bank_offset = GPIO_SET_DR_OFFSET + bank * GPIO_BANK_STRIDE;
139 gpio->set_dr_val[bank] = ioread32(gpio->base + bank_offset);
140 }
141 return 0;
142}
143
b115bebc 144static __maybe_unused int xgene_gpio_resume(struct device *dev)
29cbf458
FK
145{
146 struct xgene_gpio *gpio = dev_get_drvdata(dev);
147 unsigned long bank_offset;
148 unsigned int bank;
149
150 for (bank = 0; bank < XGENE_MAX_GPIO_BANKS; bank++) {
151 bank_offset = GPIO_SET_DR_OFFSET + bank * GPIO_BANK_STRIDE;
152 iowrite32(gpio->set_dr_val[bank], gpio->base + bank_offset);
153 }
154 return 0;
155}
156
157static SIMPLE_DEV_PM_OPS(xgene_gpio_pm, xgene_gpio_suspend, xgene_gpio_resume);
29cbf458
FK
158
159static int xgene_gpio_probe(struct platform_device *pdev)
160{
29cbf458
FK
161 struct xgene_gpio *gpio;
162 int err = 0;
163
164 gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
cf62b4e4
BG
165 if (!gpio)
166 return -ENOMEM;
29cbf458 167
f63516f4
BG
168 gpio->base = devm_platform_ioremap_resource(pdev, 0);
169 if (IS_ERR(gpio->base))
170 return PTR_ERR(gpio->base);
29cbf458
FK
171
172 gpio->chip.ngpio = XGENE_MAX_GPIOS;
173
1a19864e 174 spin_lock_init(&gpio->lock);
58383c78 175 gpio->chip.parent = &pdev->dev;
3b711e07 176 gpio->chip.get_direction = xgene_gpio_get_direction;
29cbf458
FK
177 gpio->chip.direction_input = xgene_gpio_dir_in;
178 gpio->chip.direction_output = xgene_gpio_dir_out;
179 gpio->chip.get = xgene_gpio_get;
180 gpio->chip.set = xgene_gpio_set;
181 gpio->chip.label = dev_name(&pdev->dev);
182 gpio->chip.base = -1;
183
184 platform_set_drvdata(pdev, gpio);
185
9d113c69 186 err = devm_gpiochip_add_data(&pdev->dev, &gpio->chip, gpio);
29cbf458
FK
187 if (err) {
188 dev_err(&pdev->dev,
189 "failed to register gpiochip.\n");
cf62b4e4 190 return err;
29cbf458
FK
191 }
192
193 dev_info(&pdev->dev, "X-Gene GPIO driver registered.\n");
194 return 0;
29cbf458
FK
195}
196
29cbf458
FK
197static const struct of_device_id xgene_gpio_of_match[] = {
198 { .compatible = "apm,xgene-gpio", },
199 {},
200};
29cbf458 201
0c60de3f
DD
202#ifdef CONFIG_ACPI
203static const struct acpi_device_id xgene_gpio_acpi_match[] = {
204 { "APMC0D14", 0 },
205 { },
206};
207#endif
29cbf458
FK
208
209static struct platform_driver xgene_gpio_driver = {
210 .driver = {
211 .name = "xgene-gpio",
29cbf458 212 .of_match_table = xgene_gpio_of_match,
0c60de3f 213 .acpi_match_table = ACPI_PTR(xgene_gpio_acpi_match),
b115bebc 214 .pm = &xgene_gpio_pm,
29cbf458
FK
215 },
216 .probe = xgene_gpio_probe,
29cbf458 217};
b33d12d3 218builtin_platform_driver(xgene_gpio_driver);