Linux Audio

Check our new training course

Loading...
Note: File does not exist in v6.2.
  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
 23#include <linux/init.h>
 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{
 77	struct gsta_gpio *chip = gpiochip_get_data(gpio);
 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{
 89	struct gsta_gpio *chip = gpiochip_get_data(gpio);
 90	struct gsta_regs __iomem *regs = __regs(chip, nr);
 91	u32 bit = __bit(nr);
 92
 93	return !!(readl(&regs->dat) & bit);
 94}
 95
 96static int gsta_gpio_direction_output(struct gpio_chip *gpio, unsigned nr,
 97				      int val)
 98{
 99	struct gsta_gpio *chip = gpiochip_get_data(gpio);
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{
114	struct gsta_gpio *chip = gpiochip_get_data(gpio);
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{
124	struct gsta_gpio *chip = gpiochip_get_data(gpio);
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;
149	gpio->can_sleep = false;
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
323static int gsta_alloc_irq_chip(struct gsta_gpio *chip)
324{
325	struct irq_chip_generic *gc;
326	struct irq_chip_type *ct;
327	int rv;
328
329	gc = devm_irq_alloc_generic_chip(chip->dev, KBUILD_MODNAME, 1,
330					 chip->irq_base,
331					 chip->reg_base, handle_simple_irq);
332	if (!gc)
333		return -ENOMEM;
334
335	gc->private = chip;
336	ct = gc->chip_types;
337
338	ct->chip.irq_set_type = gsta_irq_type;
339	ct->chip.irq_disable = gsta_irq_disable;
340	ct->chip.irq_enable = gsta_irq_enable;
341
342	/* FIXME: this makes at most 32 interrupts. Request 0 by now */
343	rv = devm_irq_setup_generic_chip(chip->dev, gc,
344					 0 /* IRQ_MSK(GSTA_GPIO_PER_BLOCK) */,
345					 0, IRQ_NOREQUEST | IRQ_NOPROBE, 0);
346	if (rv)
347		return rv;
348
349	/* Set up all all 128 interrupts: code from setup_generic_chip */
350	{
351		struct irq_chip_type *ct = gc->chip_types;
352		int i, j;
353		for (j = 0; j < GSTA_NR_GPIO; j++) {
354			i = chip->irq_base + j;
355			irq_set_chip_and_handler(i, &ct->chip, ct->handler);
356			irq_set_chip_data(i, gc);
357			irq_clear_status_flags(i, IRQ_NOREQUEST | IRQ_NOPROBE);
358		}
359		gc->irq_cnt = i - gc->irq_base;
360	}
361
362	return 0;
363}
364
365/* The platform device used here is instantiated by the MFD device */
366static int gsta_probe(struct platform_device *dev)
367{
368	int i, err;
369	struct pci_dev *pdev;
370	struct sta2x11_gpio_pdata *gpio_pdata;
371	struct gsta_gpio *chip;
372	struct resource *res;
373
374	pdev = *(struct pci_dev **)dev_get_platdata(&dev->dev);
375	gpio_pdata = dev_get_platdata(&pdev->dev);
376
377	if (gpio_pdata == NULL)
378		dev_err(&dev->dev, "no gpio config\n");
379	pr_debug("gpio config: %p\n", gpio_pdata);
380
381	res = platform_get_resource(dev, IORESOURCE_MEM, 0);
382
383	chip = devm_kzalloc(&dev->dev, sizeof(*chip), GFP_KERNEL);
384	if (!chip)
385		return -ENOMEM;
386	chip->dev = &dev->dev;
387	chip->reg_base = devm_ioremap_resource(&dev->dev, res);
388	if (IS_ERR(chip->reg_base))
389		return PTR_ERR(chip->reg_base);
390
391	for (i = 0; i < GSTA_NR_BLOCKS; i++) {
392		chip->regs[i] = chip->reg_base + i * 4096;
393		/* disable all irqs */
394		writel(0, &chip->regs[i]->rimsc);
395		writel(0, &chip->regs[i]->fimsc);
396		writel(~0, &chip->regs[i]->ic);
397	}
398	spin_lock_init(&chip->lock);
399	gsta_gpio_setup(chip);
400	if (gpio_pdata)
401		for (i = 0; i < GSTA_NR_GPIO; i++)
402			gsta_set_config(chip, i, gpio_pdata->pinconfig[i]);
403
404	/* 384 was used in previous code: be compatible for other drivers */
405	err = devm_irq_alloc_descs(&dev->dev, -1, 384,
406				   GSTA_NR_GPIO, NUMA_NO_NODE);
407	if (err < 0) {
408		dev_warn(&dev->dev, "sta2x11 gpio: Can't get irq base (%i)\n",
409			 -err);
410		return err;
411	}
412	chip->irq_base = err;
413
414	err = gsta_alloc_irq_chip(chip);
415	if (err)
416		return err;
417
418	err = devm_request_irq(&dev->dev, pdev->irq, gsta_gpio_handler,
419			       IRQF_SHARED, KBUILD_MODNAME, chip);
420	if (err < 0) {
421		dev_err(&dev->dev, "sta2x11 gpio: Can't request irq (%i)\n",
422			-err);
423		return err;
424	}
425
426	err = devm_gpiochip_add_data(&dev->dev, &chip->gpio, chip);
427	if (err < 0) {
428		dev_err(&dev->dev, "sta2x11 gpio: Can't register (%i)\n",
429			-err);
430		return err;
431	}
432
433	platform_set_drvdata(dev, chip);
434	return 0;
435}
436
437static struct platform_driver sta2x11_gpio_platform_driver = {
438	.driver = {
439		.name	= "sta2x11-gpio",
440		.suppress_bind_attrs = true,
441	},
442	.probe = gsta_probe,
443};
444builtin_platform_driver(sta2x11_gpio_platform_driver);