blob: 2918363884de7a997444334f8b1541f51b82053f [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001// SPDX-License-Identifier: GPL-2.0-only
Feng Kan29cbf452014-07-31 12:03:25 -07002/*
3 * AppliedMicro X-Gene SoC GPIO Driver
4 *
5 * Copyright (c) 2014, Applied Micro Circuits Corporation
6 * Author: Feng Kan <fkan@apm.com>.
Feng Kan29cbf452014-07-31 12:03:25 -07007 */
8
Duc Dang0c60de32016-04-30 13:49:27 -07009#include <linux/acpi.h>
Feng Kan29cbf452014-07-31 12:03:25 -070010#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
Feng Kan29cbf452014-07-31 12:03:25 -070030struct xgene_gpio {
31 struct gpio_chip chip;
32 void __iomem *base;
33 spinlock_t lock;
Feng Kan29cbf452014-07-31 12:03:25 -070034 u32 set_dr_val[XGENE_MAX_GPIO_BANKS];
Feng Kan29cbf452014-07-31 12:03:25 -070035};
36
Feng Kan29cbf452014-07-31 12:03:25 -070037static int xgene_gpio_get(struct gpio_chip *gc, unsigned int offset)
38{
Linus Walleijac9dc852015-12-07 15:16:50 +010039 struct xgene_gpio *chip = gpiochip_get_data(gc);
Feng Kan29cbf452014-07-31 12:03:25 -070040 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{
Linus Walleijac9dc852015-12-07 15:16:50 +010050 struct xgene_gpio *chip = gpiochip_get_data(gc);
Feng Kan29cbf452014-07-31 12:03:25 -070051 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{
Linus Walleijac9dc852015-12-07 15:16:50 +010067 struct xgene_gpio *chip = gpiochip_get_data(gc);
Feng Kan29cbf452014-07-31 12:03:25 -070068 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
Linus Walleij3b711e02016-05-01 10:29:10 +020075static 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
83 return !!(ioread32(chip->base + bank_offset) & BIT(bit_offset));
84}
85
Feng Kan29cbf452014-07-31 12:03:25 -070086static int xgene_gpio_dir_in(struct gpio_chip *gc, unsigned int offset)
87{
Linus Walleijac9dc852015-12-07 15:16:50 +010088 struct xgene_gpio *chip = gpiochip_get_data(gc);
Feng Kan29cbf452014-07-31 12:03:25 -070089 unsigned long flags, bank_offset;
90 u32 dirval, bit_offset;
91
92 bank_offset = GPIO_SET_DR_OFFSET + GPIO_BANK_OFFSET(offset);
93 bit_offset = GPIO_BIT_OFFSET(offset);
94
95 spin_lock_irqsave(&chip->lock, flags);
96
97 dirval = ioread32(chip->base + bank_offset);
98 dirval |= BIT(bit_offset);
99 iowrite32(dirval, chip->base + bank_offset);
100
101 spin_unlock_irqrestore(&chip->lock, flags);
102
103 return 0;
104}
105
106static int xgene_gpio_dir_out(struct gpio_chip *gc,
107 unsigned int offset, int val)
108{
Linus Walleijac9dc852015-12-07 15:16:50 +0100109 struct xgene_gpio *chip = gpiochip_get_data(gc);
Feng Kan29cbf452014-07-31 12:03:25 -0700110 unsigned long flags, bank_offset;
111 u32 dirval, bit_offset;
112
113 bank_offset = GPIO_SET_DR_OFFSET + GPIO_BANK_OFFSET(offset);
114 bit_offset = GPIO_BIT_OFFSET(offset);
115
116 spin_lock_irqsave(&chip->lock, flags);
117
118 dirval = ioread32(chip->base + bank_offset);
119 dirval &= ~BIT(bit_offset);
120 iowrite32(dirval, chip->base + bank_offset);
121 __xgene_gpio_set(gc, offset, val);
122
123 spin_unlock_irqrestore(&chip->lock, flags);
124
125 return 0;
126}
127
Arnd Bergmannb115beb2017-02-17 16:13:44 +0100128static __maybe_unused int xgene_gpio_suspend(struct device *dev)
Feng Kan29cbf452014-07-31 12:03:25 -0700129{
130 struct xgene_gpio *gpio = dev_get_drvdata(dev);
131 unsigned long bank_offset;
132 unsigned int bank;
133
134 for (bank = 0; bank < XGENE_MAX_GPIO_BANKS; bank++) {
135 bank_offset = GPIO_SET_DR_OFFSET + bank * GPIO_BANK_STRIDE;
136 gpio->set_dr_val[bank] = ioread32(gpio->base + bank_offset);
137 }
138 return 0;
139}
140
Arnd Bergmannb115beb2017-02-17 16:13:44 +0100141static __maybe_unused int xgene_gpio_resume(struct device *dev)
Feng Kan29cbf452014-07-31 12:03:25 -0700142{
143 struct xgene_gpio *gpio = dev_get_drvdata(dev);
144 unsigned long bank_offset;
145 unsigned int bank;
146
147 for (bank = 0; bank < XGENE_MAX_GPIO_BANKS; bank++) {
148 bank_offset = GPIO_SET_DR_OFFSET + bank * GPIO_BANK_STRIDE;
149 iowrite32(gpio->set_dr_val[bank], gpio->base + bank_offset);
150 }
151 return 0;
152}
153
154static SIMPLE_DEV_PM_OPS(xgene_gpio_pm, xgene_gpio_suspend, xgene_gpio_resume);
Feng Kan29cbf452014-07-31 12:03:25 -0700155
156static int xgene_gpio_probe(struct platform_device *pdev)
157{
158 struct resource *res;
159 struct xgene_gpio *gpio;
160 int err = 0;
161
162 gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
163 if (!gpio) {
164 err = -ENOMEM;
165 goto err;
166 }
167
168 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Axel Lin8d8ee182016-03-21 20:03:50 +0800169 if (!res) {
170 err = -EINVAL;
171 goto err;
172 }
173
Feng Kan29cbf452014-07-31 12:03:25 -0700174 gpio->base = devm_ioremap_nocache(&pdev->dev, res->start,
175 resource_size(res));
Wei Yongjun4f51b912014-09-12 07:12:14 +0800176 if (!gpio->base) {
177 err = -ENOMEM;
Feng Kan29cbf452014-07-31 12:03:25 -0700178 goto err;
179 }
180
181 gpio->chip.ngpio = XGENE_MAX_GPIOS;
182
Axel Lin1a198642014-09-21 12:31:29 +0800183 spin_lock_init(&gpio->lock);
Linus Walleij58383c782015-11-04 09:56:26 +0100184 gpio->chip.parent = &pdev->dev;
Linus Walleij3b711e02016-05-01 10:29:10 +0200185 gpio->chip.get_direction = xgene_gpio_get_direction;
Feng Kan29cbf452014-07-31 12:03:25 -0700186 gpio->chip.direction_input = xgene_gpio_dir_in;
187 gpio->chip.direction_output = xgene_gpio_dir_out;
188 gpio->chip.get = xgene_gpio_get;
189 gpio->chip.set = xgene_gpio_set;
190 gpio->chip.label = dev_name(&pdev->dev);
191 gpio->chip.base = -1;
192
193 platform_set_drvdata(pdev, gpio);
194
Laxman Dewangan9d113c62016-02-22 17:43:28 +0530195 err = devm_gpiochip_add_data(&pdev->dev, &gpio->chip, gpio);
Feng Kan29cbf452014-07-31 12:03:25 -0700196 if (err) {
197 dev_err(&pdev->dev,
198 "failed to register gpiochip.\n");
199 goto err;
200 }
201
202 dev_info(&pdev->dev, "X-Gene GPIO driver registered.\n");
203 return 0;
204err:
205 dev_err(&pdev->dev, "X-Gene GPIO driver registration failed.\n");
206 return err;
207}
208
Feng Kan29cbf452014-07-31 12:03:25 -0700209static const struct of_device_id xgene_gpio_of_match[] = {
210 { .compatible = "apm,xgene-gpio", },
211 {},
212};
Feng Kan29cbf452014-07-31 12:03:25 -0700213
Duc Dang0c60de32016-04-30 13:49:27 -0700214#ifdef CONFIG_ACPI
215static const struct acpi_device_id xgene_gpio_acpi_match[] = {
216 { "APMC0D14", 0 },
217 { },
218};
219#endif
Feng Kan29cbf452014-07-31 12:03:25 -0700220
221static struct platform_driver xgene_gpio_driver = {
222 .driver = {
223 .name = "xgene-gpio",
Feng Kan29cbf452014-07-31 12:03:25 -0700224 .of_match_table = xgene_gpio_of_match,
Duc Dang0c60de32016-04-30 13:49:27 -0700225 .acpi_match_table = ACPI_PTR(xgene_gpio_acpi_match),
Arnd Bergmannb115beb2017-02-17 16:13:44 +0100226 .pm = &xgene_gpio_pm,
Feng Kan29cbf452014-07-31 12:03:25 -0700227 },
228 .probe = xgene_gpio_probe,
Feng Kan29cbf452014-07-31 12:03:25 -0700229};
Paul Gortmakerb33d12d2016-03-27 11:44:48 -0400230builtin_platform_driver(xgene_gpio_driver);