• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * AppliedMicro X-Gene SoC GPIO Driver
3  *
4  * Copyright (c) 2014, Applied Micro Circuits Corporation
5  * Author: Feng Kan <fkan@apm.com>.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 #include <linux/module.h>
21 #include <linux/kernel.h>
22 #include <linux/init.h>
23 #include <linux/io.h>
24 #include <linux/spinlock.h>
25 #include <linux/platform_device.h>
26 #include <linux/gpio/driver.h>
27 #include <linux/types.h>
28 #include <linux/bitops.h>
29 
30 #define GPIO_SET_DR_OFFSET	0x0C
31 #define GPIO_DATA_OFFSET	0x14
32 #define GPIO_BANK_STRIDE	0x0C
33 
34 #define XGENE_GPIOS_PER_BANK	16
35 #define XGENE_MAX_GPIO_BANKS	3
36 #define XGENE_MAX_GPIOS		(XGENE_GPIOS_PER_BANK * XGENE_MAX_GPIO_BANKS)
37 
38 #define GPIO_BIT_OFFSET(x)	(x % XGENE_GPIOS_PER_BANK)
39 #define GPIO_BANK_OFFSET(x)	((x / XGENE_GPIOS_PER_BANK) * GPIO_BANK_STRIDE)
40 
41 struct xgene_gpio {
42 	struct gpio_chip	chip;
43 	void __iomem		*base;
44 	spinlock_t		lock;
45 	u32			set_dr_val[XGENE_MAX_GPIO_BANKS];
46 };
47 
to_xgene_gpio(struct gpio_chip * chip)48 static inline struct xgene_gpio *to_xgene_gpio(struct gpio_chip *chip)
49 {
50 	return container_of(chip, struct xgene_gpio, chip);
51 }
52 
xgene_gpio_get(struct gpio_chip * gc,unsigned int offset)53 static int xgene_gpio_get(struct gpio_chip *gc, unsigned int offset)
54 {
55 	struct xgene_gpio *chip = to_xgene_gpio(gc);
56 	unsigned long bank_offset;
57 	u32 bit_offset;
58 
59 	bank_offset = GPIO_DATA_OFFSET + GPIO_BANK_OFFSET(offset);
60 	bit_offset = GPIO_BIT_OFFSET(offset);
61 	return !!(ioread32(chip->base + bank_offset) & BIT(bit_offset));
62 }
63 
__xgene_gpio_set(struct gpio_chip * gc,unsigned int offset,int val)64 static void __xgene_gpio_set(struct gpio_chip *gc, unsigned int offset, int val)
65 {
66 	struct xgene_gpio *chip = to_xgene_gpio(gc);
67 	unsigned long bank_offset;
68 	u32 setval, bit_offset;
69 
70 	bank_offset = GPIO_SET_DR_OFFSET + GPIO_BANK_OFFSET(offset);
71 	bit_offset = GPIO_BIT_OFFSET(offset) + XGENE_GPIOS_PER_BANK;
72 
73 	setval = ioread32(chip->base + bank_offset);
74 	if (val)
75 		setval |= BIT(bit_offset);
76 	else
77 		setval &= ~BIT(bit_offset);
78 	iowrite32(setval, chip->base + bank_offset);
79 }
80 
xgene_gpio_set(struct gpio_chip * gc,unsigned int offset,int val)81 static void xgene_gpio_set(struct gpio_chip *gc, unsigned int offset, int val)
82 {
83 	struct xgene_gpio *chip = to_xgene_gpio(gc);
84 	unsigned long flags;
85 
86 	spin_lock_irqsave(&chip->lock, flags);
87 	__xgene_gpio_set(gc, offset, val);
88 	spin_unlock_irqrestore(&chip->lock, flags);
89 }
90 
xgene_gpio_dir_in(struct gpio_chip * gc,unsigned int offset)91 static int xgene_gpio_dir_in(struct gpio_chip *gc, unsigned int offset)
92 {
93 	struct xgene_gpio *chip = to_xgene_gpio(gc);
94 	unsigned long flags, bank_offset;
95 	u32 dirval, bit_offset;
96 
97 	bank_offset = GPIO_SET_DR_OFFSET + GPIO_BANK_OFFSET(offset);
98 	bit_offset = GPIO_BIT_OFFSET(offset);
99 
100 	spin_lock_irqsave(&chip->lock, flags);
101 
102 	dirval = ioread32(chip->base + bank_offset);
103 	dirval |= BIT(bit_offset);
104 	iowrite32(dirval, chip->base + bank_offset);
105 
106 	spin_unlock_irqrestore(&chip->lock, flags);
107 
108 	return 0;
109 }
110 
xgene_gpio_dir_out(struct gpio_chip * gc,unsigned int offset,int val)111 static int xgene_gpio_dir_out(struct gpio_chip *gc,
112 					unsigned int offset, int val)
113 {
114 	struct xgene_gpio *chip = to_xgene_gpio(gc);
115 	unsigned long flags, bank_offset;
116 	u32 dirval, bit_offset;
117 
118 	bank_offset = GPIO_SET_DR_OFFSET + GPIO_BANK_OFFSET(offset);
119 	bit_offset = GPIO_BIT_OFFSET(offset);
120 
121 	spin_lock_irqsave(&chip->lock, flags);
122 
123 	dirval = ioread32(chip->base + bank_offset);
124 	dirval &= ~BIT(bit_offset);
125 	iowrite32(dirval, chip->base + bank_offset);
126 	__xgene_gpio_set(gc, offset, val);
127 
128 	spin_unlock_irqrestore(&chip->lock, flags);
129 
130 	return 0;
131 }
132 
xgene_gpio_suspend(struct device * dev)133 static __maybe_unused int xgene_gpio_suspend(struct device *dev)
134 {
135 	struct xgene_gpio *gpio = dev_get_drvdata(dev);
136 	unsigned long bank_offset;
137 	unsigned int bank;
138 
139 	for (bank = 0; bank < XGENE_MAX_GPIO_BANKS; bank++) {
140 		bank_offset = GPIO_SET_DR_OFFSET + bank * GPIO_BANK_STRIDE;
141 		gpio->set_dr_val[bank] = ioread32(gpio->base + bank_offset);
142 	}
143 	return 0;
144 }
145 
xgene_gpio_resume(struct device * dev)146 static __maybe_unused int xgene_gpio_resume(struct device *dev)
147 {
148 	struct xgene_gpio *gpio = dev_get_drvdata(dev);
149 	unsigned long bank_offset;
150 	unsigned int bank;
151 
152 	for (bank = 0; bank < XGENE_MAX_GPIO_BANKS; bank++) {
153 		bank_offset = GPIO_SET_DR_OFFSET + bank * GPIO_BANK_STRIDE;
154 		iowrite32(gpio->set_dr_val[bank], gpio->base + bank_offset);
155 	}
156 	return 0;
157 }
158 
159 static SIMPLE_DEV_PM_OPS(xgene_gpio_pm, xgene_gpio_suspend, xgene_gpio_resume);
160 
xgene_gpio_probe(struct platform_device * pdev)161 static int xgene_gpio_probe(struct platform_device *pdev)
162 {
163 	struct resource *res;
164 	struct xgene_gpio *gpio;
165 	int err = 0;
166 
167 	gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
168 	if (!gpio) {
169 		err = -ENOMEM;
170 		goto err;
171 	}
172 
173 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
174 	gpio->base = devm_ioremap_nocache(&pdev->dev, res->start,
175 							resource_size(res));
176 	if (!gpio->base) {
177 		err = -ENOMEM;
178 		goto err;
179 	}
180 
181 	gpio->chip.ngpio = XGENE_MAX_GPIOS;
182 
183 	spin_lock_init(&gpio->lock);
184 	gpio->chip.dev = &pdev->dev;
185 	gpio->chip.direction_input = xgene_gpio_dir_in;
186 	gpio->chip.direction_output = xgene_gpio_dir_out;
187 	gpio->chip.get = xgene_gpio_get;
188 	gpio->chip.set = xgene_gpio_set;
189 	gpio->chip.label = dev_name(&pdev->dev);
190 	gpio->chip.base = -1;
191 
192 	platform_set_drvdata(pdev, gpio);
193 
194 	err = gpiochip_add(&gpio->chip);
195 	if (err) {
196 		dev_err(&pdev->dev,
197 			"failed to register gpiochip.\n");
198 		goto err;
199 	}
200 
201 	dev_info(&pdev->dev, "X-Gene GPIO driver registered.\n");
202 	return 0;
203 err:
204 	dev_err(&pdev->dev, "X-Gene GPIO driver registration failed.\n");
205 	return err;
206 }
207 
xgene_gpio_remove(struct platform_device * pdev)208 static int xgene_gpio_remove(struct platform_device *pdev)
209 {
210 	struct xgene_gpio *gpio = platform_get_drvdata(pdev);
211 
212 	gpiochip_remove(&gpio->chip);
213 	return 0;
214 }
215 
216 static const struct of_device_id xgene_gpio_of_match[] = {
217 	{ .compatible = "apm,xgene-gpio", },
218 	{},
219 };
220 MODULE_DEVICE_TABLE(of, xgene_gpio_of_match);
221 
222 static struct platform_driver xgene_gpio_driver = {
223 	.driver = {
224 		.name = "xgene-gpio",
225 		.of_match_table = xgene_gpio_of_match,
226 		.pm     = &xgene_gpio_pm,
227 	},
228 	.probe = xgene_gpio_probe,
229 	.remove = xgene_gpio_remove,
230 };
231 
232 module_platform_driver(xgene_gpio_driver);
233 
234 MODULE_AUTHOR("Feng Kan <fkan@apm.com>");
235 MODULE_DESCRIPTION("APM X-Gene GPIO driver");
236 MODULE_LICENSE("GPL");
237