]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/gpio/gpio-sta2x11.c
Merge branch 'nvme-4.13' of git://git.infradead.org/nvme into for-linus
[mirror_ubuntu-artful-kernel.git] / drivers / gpio / gpio-sta2x11.c
CommitLineData
7b0d44f3
AR
1/*
2 * STMicroelectronics ConneXt (STA2X11) GPIO driver
3 *
4 * Copyright 2012 ST Microelectronics (Alessandro Rubini)
5 * Based on gpio-ml-ioh.c, Copyright 2010 OKI Semiconductors Ltd.
6 * Also based on previous sta2x11 work, Copyright 2011 Wind River Systems, Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15 * See the GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
3c90c6d6 23#include <linux/init.h>
7b0d44f3
AR
24#include <linux/kernel.h>
25#include <linux/slab.h>
26#include <linux/gpio.h>
27#include <linux/interrupt.h>
28#include <linux/irq.h>
29#include <linux/pci.h>
30#include <linux/platform_device.h>
31#include <linux/mfd/sta2x11-mfd.h>
32
33struct gsta_regs {
34 u32 dat; /* 0x00 */
35 u32 dats;
36 u32 datc;
37 u32 pdis;
38 u32 dir; /* 0x10 */
39 u32 dirs;
40 u32 dirc;
41 u32 unused_1c;
42 u32 afsela; /* 0x20 */
43 u32 unused_24[7];
44 u32 rimsc; /* 0x40 */
45 u32 fimsc;
46 u32 is;
47 u32 ic;
48};
49
50struct gsta_gpio {
51 spinlock_t lock;
52 struct device *dev;
53 void __iomem *reg_base;
54 struct gsta_regs __iomem *regs[GSTA_NR_BLOCKS];
55 struct gpio_chip gpio;
56 int irq_base;
57 /* FIXME: save the whole config here (AF, ...) */
58 unsigned irq_type[GSTA_NR_GPIO];
59};
60
61static inline struct gsta_regs __iomem *__regs(struct gsta_gpio *chip, int nr)
62{
63 return chip->regs[nr / GSTA_GPIO_PER_BLOCK];
64}
65
66static inline u32 __bit(int nr)
67{
68 return 1U << (nr % GSTA_GPIO_PER_BLOCK);
69}
70
71/*
72 * gpio methods
73 */
74
75static void gsta_gpio_set(struct gpio_chip *gpio, unsigned nr, int val)
76{
0b2c529a 77 struct gsta_gpio *chip = gpiochip_get_data(gpio);
7b0d44f3
AR
78 struct gsta_regs __iomem *regs = __regs(chip, nr);
79 u32 bit = __bit(nr);
80
81 if (val)
82 writel(bit, &regs->dats);
83 else
84 writel(bit, &regs->datc);
85}
86
87static int gsta_gpio_get(struct gpio_chip *gpio, unsigned nr)
88{
0b2c529a 89 struct gsta_gpio *chip = gpiochip_get_data(gpio);
7b0d44f3
AR
90 struct gsta_regs __iomem *regs = __regs(chip, nr);
91 u32 bit = __bit(nr);
92
8a240c31 93 return !!(readl(&regs->dat) & bit);
7b0d44f3
AR
94}
95
96static int gsta_gpio_direction_output(struct gpio_chip *gpio, unsigned nr,
97 int val)
98{
0b2c529a 99 struct gsta_gpio *chip = gpiochip_get_data(gpio);
7b0d44f3
AR
100 struct gsta_regs __iomem *regs = __regs(chip, nr);
101 u32 bit = __bit(nr);
102
103 writel(bit, &regs->dirs);
104 /* Data register after direction, otherwise pullup/down is selected */
105 if (val)
106 writel(bit, &regs->dats);
107 else
108 writel(bit, &regs->datc);
109 return 0;
110}
111
112static int gsta_gpio_direction_input(struct gpio_chip *gpio, unsigned nr)
113{
0b2c529a 114 struct gsta_gpio *chip = gpiochip_get_data(gpio);
7b0d44f3
AR
115 struct gsta_regs __iomem *regs = __regs(chip, nr);
116 u32 bit = __bit(nr);
117
118 writel(bit, &regs->dirc);
119 return 0;
120}
121
122static int gsta_gpio_to_irq(struct gpio_chip *gpio, unsigned offset)
123{
0b2c529a 124 struct gsta_gpio *chip = gpiochip_get_data(gpio);
7b0d44f3
AR
125 return chip->irq_base + offset;
126}
127
128static void gsta_gpio_setup(struct gsta_gpio *chip) /* called from probe */
129{
130 struct gpio_chip *gpio = &chip->gpio;
131
132 /*
133 * ARCH_NR_GPIOS is currently 256 and dynamic allocation starts
134 * from the end. However, for compatibility, we need the first
135 * ConneXt device to start from gpio 0: it's the main chipset
136 * on most boards so documents and drivers assume gpio0..gpio127
137 */
138 static int gpio_base;
139
140 gpio->label = dev_name(chip->dev);
141 gpio->owner = THIS_MODULE;
142 gpio->direction_input = gsta_gpio_direction_input;
143 gpio->get = gsta_gpio_get;
144 gpio->direction_output = gsta_gpio_direction_output;
145 gpio->set = gsta_gpio_set;
146 gpio->dbg_show = NULL;
147 gpio->base = gpio_base;
148 gpio->ngpio = GSTA_NR_GPIO;
9fb1f39e 149 gpio->can_sleep = false;
7b0d44f3
AR
150 gpio->to_irq = gsta_gpio_to_irq;
151
152 /*
153 * After the first device, turn to dynamic gpio numbers.
154 * For example, with ARCH_NR_GPIOS = 256 we can fit two cards
155 */
156 if (!gpio_base)
157 gpio_base = -1;
158}
159
160/*
161 * Special method: alternate functions and pullup/pulldown. This is only
162 * invoked on startup to configure gpio's according to platform data.
163 * FIXME : this functionality shall be managed (and exported to other drivers)
164 * via the pin control subsystem.
165 */
166static void gsta_set_config(struct gsta_gpio *chip, int nr, unsigned cfg)
167{
168 struct gsta_regs __iomem *regs = __regs(chip, nr);
169 unsigned long flags;
170 u32 bit = __bit(nr);
171 u32 val;
172 int err = 0;
173
174 pr_info("%s: %p %i %i\n", __func__, chip, nr, cfg);
175
176 if (cfg == PINMUX_TYPE_NONE)
177 return;
178
179 /* Alternate function or not? */
180 spin_lock_irqsave(&chip->lock, flags);
181 val = readl(&regs->afsela);
182 if (cfg == PINMUX_TYPE_FUNCTION)
183 val |= bit;
184 else
185 val &= ~bit;
186 writel(val | bit, &regs->afsela);
187 if (cfg == PINMUX_TYPE_FUNCTION) {
188 spin_unlock_irqrestore(&chip->lock, flags);
189 return;
190 }
191
192 /* not alternate function: set details */
193 switch (cfg) {
194 case PINMUX_TYPE_OUTPUT_LOW:
195 writel(bit, &regs->dirs);
196 writel(bit, &regs->datc);
197 break;
198 case PINMUX_TYPE_OUTPUT_HIGH:
199 writel(bit, &regs->dirs);
200 writel(bit, &regs->dats);
201 break;
202 case PINMUX_TYPE_INPUT:
203 writel(bit, &regs->dirc);
204 val = readl(&regs->pdis) | bit;
205 writel(val, &regs->pdis);
206 break;
207 case PINMUX_TYPE_INPUT_PULLUP:
208 writel(bit, &regs->dirc);
209 val = readl(&regs->pdis) & ~bit;
210 writel(val, &regs->pdis);
211 writel(bit, &regs->dats);
212 break;
213 case PINMUX_TYPE_INPUT_PULLDOWN:
214 writel(bit, &regs->dirc);
215 val = readl(&regs->pdis) & ~bit;
216 writel(val, &regs->pdis);
217 writel(bit, &regs->datc);
218 break;
219 default:
220 err = 1;
221 }
222 spin_unlock_irqrestore(&chip->lock, flags);
223 if (err)
224 pr_err("%s: chip %p, pin %i, cfg %i is invalid\n",
225 __func__, chip, nr, cfg);
226}
227
228/*
229 * Irq methods
230 */
231
232static void gsta_irq_disable(struct irq_data *data)
233{
234 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(data);
235 struct gsta_gpio *chip = gc->private;
236 int nr = data->irq - chip->irq_base;
237 struct gsta_regs __iomem *regs = __regs(chip, nr);
238 u32 bit = __bit(nr);
239 u32 val;
240 unsigned long flags;
241
242 spin_lock_irqsave(&chip->lock, flags);
243 if (chip->irq_type[nr] & IRQ_TYPE_EDGE_RISING) {
244 val = readl(&regs->rimsc) & ~bit;
245 writel(val, &regs->rimsc);
246 }
247 if (chip->irq_type[nr] & IRQ_TYPE_EDGE_FALLING) {
248 val = readl(&regs->fimsc) & ~bit;
249 writel(val, &regs->fimsc);
250 }
251 spin_unlock_irqrestore(&chip->lock, flags);
252 return;
253}
254
255static void gsta_irq_enable(struct irq_data *data)
256{
257 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(data);
258 struct gsta_gpio *chip = gc->private;
259 int nr = data->irq - chip->irq_base;
260 struct gsta_regs __iomem *regs = __regs(chip, nr);
261 u32 bit = __bit(nr);
262 u32 val;
263 int type;
264 unsigned long flags;
265
266 type = chip->irq_type[nr];
267
268 spin_lock_irqsave(&chip->lock, flags);
269 val = readl(&regs->rimsc);
270 if (type & IRQ_TYPE_EDGE_RISING)
271 writel(val | bit, &regs->rimsc);
272 else
273 writel(val & ~bit, &regs->rimsc);
274 val = readl(&regs->rimsc);
275 if (type & IRQ_TYPE_EDGE_FALLING)
276 writel(val | bit, &regs->fimsc);
277 else
278 writel(val & ~bit, &regs->fimsc);
279 spin_unlock_irqrestore(&chip->lock, flags);
280 return;
281}
282
283static int gsta_irq_type(struct irq_data *d, unsigned int type)
284{
285 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
286 struct gsta_gpio *chip = gc->private;
287 int nr = d->irq - chip->irq_base;
288
289 /* We only support edge interrupts */
290 if (!(type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))) {
291 pr_debug("%s: unsupported type 0x%x\n", __func__, type);
292 return -EINVAL;
293 }
294
295 chip->irq_type[nr] = type; /* used for enable/disable */
296
297 gsta_irq_enable(d);
298 return 0;
299}
300
301static irqreturn_t gsta_gpio_handler(int irq, void *dev_id)
302{
303 struct gsta_gpio *chip = dev_id;
304 struct gsta_regs __iomem *regs;
305 u32 is;
306 int i, nr, base;
307 irqreturn_t ret = IRQ_NONE;
308
309 for (i = 0; i < GSTA_NR_BLOCKS; i++) {
310 regs = chip->regs[i];
311 base = chip->irq_base + i * GSTA_GPIO_PER_BLOCK;
312 while ((is = readl(&regs->is))) {
313 nr = __ffs(is);
314 irq = base + nr;
315 generic_handle_irq(irq);
316 writel(1 << nr, &regs->ic);
317 ret = IRQ_HANDLED;
318 }
319 }
320 return ret;
321}
322
d76e8bab 323static int gsta_alloc_irq_chip(struct gsta_gpio *chip)
7b0d44f3
AR
324{
325 struct irq_chip_generic *gc;
326 struct irq_chip_type *ct;
327
328 gc = irq_alloc_generic_chip(KBUILD_MODNAME, 1, chip->irq_base,
329 chip->reg_base, handle_simple_irq);
d76e8bab
BG
330 if (!gc)
331 return -ENOMEM;
332
7b0d44f3
AR
333 gc->private = chip;
334 ct = gc->chip_types;
335
336 ct->chip.irq_set_type = gsta_irq_type;
337 ct->chip.irq_disable = gsta_irq_disable;
338 ct->chip.irq_enable = gsta_irq_enable;
339
340 /* FIXME: this makes at most 32 interrupts. Request 0 by now */
341 irq_setup_generic_chip(gc, 0 /* IRQ_MSK(GSTA_GPIO_PER_BLOCK) */, 0,
342 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
343
344 /* Set up all all 128 interrupts: code from setup_generic_chip */
345 {
346 struct irq_chip_type *ct = gc->chip_types;
347 int i, j;
348 for (j = 0; j < GSTA_NR_GPIO; j++) {
349 i = chip->irq_base + j;
350 irq_set_chip_and_handler(i, &ct->chip, ct->handler);
351 irq_set_chip_data(i, gc);
23393d49 352 irq_clear_status_flags(i, IRQ_NOREQUEST | IRQ_NOPROBE);
7b0d44f3
AR
353 }
354 gc->irq_cnt = i - gc->irq_base;
355 }
d76e8bab
BG
356
357 return 0;
7b0d44f3
AR
358}
359
360/* The platform device used here is instantiated by the MFD device */
3836309d 361static int gsta_probe(struct platform_device *dev)
7b0d44f3
AR
362{
363 int i, err;
364 struct pci_dev *pdev;
365 struct sta2x11_gpio_pdata *gpio_pdata;
366 struct gsta_gpio *chip;
367 struct resource *res;
368
e56aee18 369 pdev = *(struct pci_dev **)dev_get_platdata(&dev->dev);
7b0d44f3
AR
370 gpio_pdata = dev_get_platdata(&pdev->dev);
371
372 if (gpio_pdata == NULL)
373 dev_err(&dev->dev, "no gpio config\n");
374 pr_debug("gpio config: %p\n", gpio_pdata);
375
376 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
377
378 chip = devm_kzalloc(&dev->dev, sizeof(*chip), GFP_KERNEL);
cd738916
SK
379 if (!chip)
380 return -ENOMEM;
7b0d44f3 381 chip->dev = &dev->dev;
62ffac14
TB
382 chip->reg_base = devm_ioremap_resource(&dev->dev, res);
383 if (IS_ERR(chip->reg_base))
384 return PTR_ERR(chip->reg_base);
7b0d44f3
AR
385
386 for (i = 0; i < GSTA_NR_BLOCKS; i++) {
387 chip->regs[i] = chip->reg_base + i * 4096;
388 /* disable all irqs */
389 writel(0, &chip->regs[i]->rimsc);
390 writel(0, &chip->regs[i]->fimsc);
391 writel(~0, &chip->regs[i]->ic);
392 }
393 spin_lock_init(&chip->lock);
394 gsta_gpio_setup(chip);
2e2070c8
AR
395 if (gpio_pdata)
396 for (i = 0; i < GSTA_NR_GPIO; i++)
397 gsta_set_config(chip, i, gpio_pdata->pinconfig[i]);
7b0d44f3
AR
398
399 /* 384 was used in previous code: be compatible for other drivers */
7ad63c79
BG
400 err = devm_irq_alloc_descs(&dev->dev, -1, 384,
401 GSTA_NR_GPIO, NUMA_NO_NODE);
7b0d44f3
AR
402 if (err < 0) {
403 dev_warn(&dev->dev, "sta2x11 gpio: Can't get irq base (%i)\n",
404 -err);
405 return err;
406 }
407 chip->irq_base = err;
d76e8bab
BG
408
409 err = gsta_alloc_irq_chip(chip);
410 if (err)
411 return err;
7b0d44f3 412
7ad63c79
BG
413 err = devm_request_irq(&dev->dev, pdev->irq, gsta_gpio_handler,
414 IRQF_SHARED, KBUILD_MODNAME, chip);
7b0d44f3
AR
415 if (err < 0) {
416 dev_err(&dev->dev, "sta2x11 gpio: Can't request irq (%i)\n",
417 -err);
7ad63c79 418 return err;
7b0d44f3
AR
419 }
420
5fa734cc 421 err = devm_gpiochip_add_data(&dev->dev, &chip->gpio, chip);
7b0d44f3
AR
422 if (err < 0) {
423 dev_err(&dev->dev, "sta2x11 gpio: Can't register (%i)\n",
424 -err);
7ad63c79 425 return err;
7b0d44f3
AR
426 }
427
428 platform_set_drvdata(dev, chip);
429 return 0;
7b0d44f3
AR
430}
431
432static struct platform_driver sta2x11_gpio_platform_driver = {
433 .driver = {
434 .name = "sta2x11-gpio",
7b0d44f3
AR
435 },
436 .probe = gsta_probe,
437};
3c90c6d6 438builtin_platform_driver(sta2x11_gpio_platform_driver);