Linux Audio

Check our new training course

Loading...
v4.6
  1/*
  2 * Copyright (C) 2011 LAPIS Semiconductor Co., Ltd.
  3 *
  4 * This program is free software; you can redistribute it and/or modify
  5 * it under the terms of the GNU General Public License as published by
  6 * the Free Software Foundation; version 2 of the License.
  7 *
  8 * This program is distributed in the hope that it will be useful,
  9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 11 * GNU General Public License for more details.
 12 *
 13 * You should have received a copy of the GNU General Public License
 14 * along with this program; if not, write to the Free Software
 15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 16 */
 17#include <linux/module.h>
 18#include <linux/kernel.h>
 19#include <linux/pci.h>
 20#include <linux/gpio.h>
 21#include <linux/interrupt.h>
 22#include <linux/irq.h>
 23#include <linux/slab.h>
 24
 25#define PCH_EDGE_FALLING	0
 26#define PCH_EDGE_RISING		BIT(0)
 27#define PCH_LEVEL_L		BIT(1)
 28#define PCH_LEVEL_H		(BIT(0) | BIT(1))
 29#define PCH_EDGE_BOTH		BIT(2)
 30#define PCH_IM_MASK		(BIT(0) | BIT(1) | BIT(2))
 31
 32#define PCH_IRQ_BASE		24
 33
 34struct pch_regs {
 35	u32	ien;
 36	u32	istatus;
 37	u32	idisp;
 38	u32	iclr;
 39	u32	imask;
 40	u32	imaskclr;
 41	u32	po;
 42	u32	pi;
 43	u32	pm;
 44	u32	im0;
 45	u32	im1;
 46	u32	reserved[3];
 47	u32	gpio_use_sel;
 48	u32	reset;
 49};
 50
 51enum pch_type_t {
 52	INTEL_EG20T_PCH,
 53	OKISEMI_ML7223m_IOH, /* LAPIS Semiconductor ML7223 IOH PCIe Bus-m */
 54	OKISEMI_ML7223n_IOH  /* LAPIS Semiconductor ML7223 IOH PCIe Bus-n */
 55};
 56
 57/* Specifies number of GPIO PINS */
 58static int gpio_pins[] = {
 59	[INTEL_EG20T_PCH] = 12,
 60	[OKISEMI_ML7223m_IOH] = 8,
 61	[OKISEMI_ML7223n_IOH] = 8,
 62};
 63
 64/**
 65 * struct pch_gpio_reg_data - The register store data.
 66 * @ien_reg:	To store contents of IEN register.
 67 * @imask_reg:	To store contents of IMASK register.
 68 * @po_reg:	To store contents of PO register.
 69 * @pm_reg:	To store contents of PM register.
 70 * @im0_reg:	To store contents of IM0 register.
 71 * @im1_reg:	To store contents of IM1 register.
 72 * @gpio_use_sel_reg : To store contents of GPIO_USE_SEL register.
 73 *		       (Only ML7223 Bus-n)
 74 */
 75struct pch_gpio_reg_data {
 76	u32 ien_reg;
 77	u32 imask_reg;
 78	u32 po_reg;
 79	u32 pm_reg;
 80	u32 im0_reg;
 81	u32 im1_reg;
 82	u32 gpio_use_sel_reg;
 83};
 84
 85/**
 86 * struct pch_gpio - GPIO private data structure.
 87 * @base:			PCI base address of Memory mapped I/O register.
 88 * @reg:			Memory mapped PCH GPIO register list.
 89 * @dev:			Pointer to device structure.
 90 * @gpio:			Data for GPIO infrastructure.
 91 * @pch_gpio_reg:		Memory mapped Register data is saved here
 92 *				when suspend.
 93 * @lock:			Used for register access protection
 94 * @irq_base:		Save base of IRQ number for interrupt
 95 * @ioh:		IOH ID
 96 * @spinlock:		Used for register access protection
 97 */
 98struct pch_gpio {
 99	void __iomem *base;
100	struct pch_regs __iomem *reg;
101	struct device *dev;
102	struct gpio_chip gpio;
103	struct pch_gpio_reg_data pch_gpio_reg;
104	int irq_base;
105	enum pch_type_t ioh;
106	spinlock_t spinlock;
107};
108
109static void pch_gpio_set(struct gpio_chip *gpio, unsigned nr, int val)
110{
111	u32 reg_val;
112	struct pch_gpio *chip =	gpiochip_get_data(gpio);
113	unsigned long flags;
114
115	spin_lock_irqsave(&chip->spinlock, flags);
116	reg_val = ioread32(&chip->reg->po);
117	if (val)
118		reg_val |= (1 << nr);
119	else
120		reg_val &= ~(1 << nr);
121
122	iowrite32(reg_val, &chip->reg->po);
123	spin_unlock_irqrestore(&chip->spinlock, flags);
124}
125
126static int pch_gpio_get(struct gpio_chip *gpio, unsigned nr)
127{
128	struct pch_gpio *chip =	gpiochip_get_data(gpio);
129
130	return (ioread32(&chip->reg->pi) >> nr) & 1;
131}
132
133static int pch_gpio_direction_output(struct gpio_chip *gpio, unsigned nr,
134				     int val)
135{
136	struct pch_gpio *chip =	gpiochip_get_data(gpio);
137	u32 pm;
138	u32 reg_val;
139	unsigned long flags;
140
141	spin_lock_irqsave(&chip->spinlock, flags);
142
143	reg_val = ioread32(&chip->reg->po);
144	if (val)
145		reg_val |= (1 << nr);
146	else
147		reg_val &= ~(1 << nr);
148	iowrite32(reg_val, &chip->reg->po);
149
150	pm = ioread32(&chip->reg->pm) & ((1 << gpio_pins[chip->ioh]) - 1);
151	pm |= (1 << nr);
152	iowrite32(pm, &chip->reg->pm);
153
154	spin_unlock_irqrestore(&chip->spinlock, flags);
155
156	return 0;
157}
158
159static int pch_gpio_direction_input(struct gpio_chip *gpio, unsigned nr)
160{
161	struct pch_gpio *chip =	gpiochip_get_data(gpio);
162	u32 pm;
163	unsigned long flags;
164
165	spin_lock_irqsave(&chip->spinlock, flags);
166	pm = ioread32(&chip->reg->pm) & ((1 << gpio_pins[chip->ioh]) - 1);
167	pm &= ~(1 << nr);
168	iowrite32(pm, &chip->reg->pm);
169	spin_unlock_irqrestore(&chip->spinlock, flags);
170
171	return 0;
172}
173
174#ifdef CONFIG_PM
175/*
176 * Save register configuration and disable interrupts.
177 */
178static void pch_gpio_save_reg_conf(struct pch_gpio *chip)
179{
180	chip->pch_gpio_reg.ien_reg = ioread32(&chip->reg->ien);
181	chip->pch_gpio_reg.imask_reg = ioread32(&chip->reg->imask);
182	chip->pch_gpio_reg.po_reg = ioread32(&chip->reg->po);
183	chip->pch_gpio_reg.pm_reg = ioread32(&chip->reg->pm);
184	chip->pch_gpio_reg.im0_reg = ioread32(&chip->reg->im0);
185	if (chip->ioh == INTEL_EG20T_PCH)
186		chip->pch_gpio_reg.im1_reg = ioread32(&chip->reg->im1);
187	if (chip->ioh == OKISEMI_ML7223n_IOH)
188		chip->pch_gpio_reg.gpio_use_sel_reg =\
189					    ioread32(&chip->reg->gpio_use_sel);
190}
191
192/*
193 * This function restores the register configuration of the GPIO device.
194 */
195static void pch_gpio_restore_reg_conf(struct pch_gpio *chip)
196{
197	iowrite32(chip->pch_gpio_reg.ien_reg, &chip->reg->ien);
198	iowrite32(chip->pch_gpio_reg.imask_reg, &chip->reg->imask);
199	/* to store contents of PO register */
200	iowrite32(chip->pch_gpio_reg.po_reg, &chip->reg->po);
201	/* to store contents of PM register */
202	iowrite32(chip->pch_gpio_reg.pm_reg, &chip->reg->pm);
203	iowrite32(chip->pch_gpio_reg.im0_reg, &chip->reg->im0);
204	if (chip->ioh == INTEL_EG20T_PCH)
205		iowrite32(chip->pch_gpio_reg.im1_reg, &chip->reg->im1);
206	if (chip->ioh == OKISEMI_ML7223n_IOH)
207		iowrite32(chip->pch_gpio_reg.gpio_use_sel_reg,
208			  &chip->reg->gpio_use_sel);
209}
210#endif
211
212static int pch_gpio_to_irq(struct gpio_chip *gpio, unsigned offset)
213{
214	struct pch_gpio *chip = gpiochip_get_data(gpio);
215	return chip->irq_base + offset;
216}
217
218static void pch_gpio_setup(struct pch_gpio *chip)
219{
220	struct gpio_chip *gpio = &chip->gpio;
221
222	gpio->label = dev_name(chip->dev);
223	gpio->parent = chip->dev;
224	gpio->owner = THIS_MODULE;
225	gpio->direction_input = pch_gpio_direction_input;
226	gpio->get = pch_gpio_get;
227	gpio->direction_output = pch_gpio_direction_output;
228	gpio->set = pch_gpio_set;
229	gpio->dbg_show = NULL;
230	gpio->base = -1;
231	gpio->ngpio = gpio_pins[chip->ioh];
232	gpio->can_sleep = false;
233	gpio->to_irq = pch_gpio_to_irq;
234}
235
236static int pch_irq_type(struct irq_data *d, unsigned int type)
237{
238	struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
239	struct pch_gpio *chip = gc->private;
240	u32 im, im_pos, val;
241	u32 __iomem *im_reg;
242	unsigned long flags;
243	int ch, irq = d->irq;
244
245	ch = irq - chip->irq_base;
246	if (irq <= chip->irq_base + 7) {
247		im_reg = &chip->reg->im0;
248		im_pos = ch;
249	} else {
250		im_reg = &chip->reg->im1;
251		im_pos = ch - 8;
252	}
253	dev_dbg(chip->dev, "%s:irq=%d type=%d ch=%d pos=%d\n",
254		__func__, irq, type, ch, im_pos);
255
256	spin_lock_irqsave(&chip->spinlock, flags);
257
258	switch (type) {
259	case IRQ_TYPE_EDGE_RISING:
260		val = PCH_EDGE_RISING;
261		break;
262	case IRQ_TYPE_EDGE_FALLING:
263		val = PCH_EDGE_FALLING;
264		break;
265	case IRQ_TYPE_EDGE_BOTH:
266		val = PCH_EDGE_BOTH;
267		break;
268	case IRQ_TYPE_LEVEL_HIGH:
269		val = PCH_LEVEL_H;
270		break;
271	case IRQ_TYPE_LEVEL_LOW:
272		val = PCH_LEVEL_L;
273		break;
274	default:
275		goto unlock;
276	}
277
278	/* Set interrupt mode */
279	im = ioread32(im_reg) & ~(PCH_IM_MASK << (im_pos * 4));
280	iowrite32(im | (val << (im_pos * 4)), im_reg);
281
282	/* And the handler */
283	if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
284		irq_set_handler_locked(d, handle_level_irq);
285	else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
286		irq_set_handler_locked(d, handle_edge_irq);
287
288unlock:
289	spin_unlock_irqrestore(&chip->spinlock, flags);
290	return 0;
291}
292
293static void pch_irq_unmask(struct irq_data *d)
294{
295	struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
296	struct pch_gpio *chip = gc->private;
297
298	iowrite32(1 << (d->irq - chip->irq_base), &chip->reg->imaskclr);
299}
300
301static void pch_irq_mask(struct irq_data *d)
302{
303	struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
304	struct pch_gpio *chip = gc->private;
305
306	iowrite32(1 << (d->irq - chip->irq_base), &chip->reg->imask);
307}
308
309static void pch_irq_ack(struct irq_data *d)
310{
311	struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
312	struct pch_gpio *chip = gc->private;
313
314	iowrite32(1 << (d->irq - chip->irq_base), &chip->reg->iclr);
315}
316
317static irqreturn_t pch_gpio_handler(int irq, void *dev_id)
318{
319	struct pch_gpio *chip = dev_id;
320	u32 reg_val = ioread32(&chip->reg->istatus);
321	int i, ret = IRQ_NONE;
322
323	for (i = 0; i < gpio_pins[chip->ioh]; i++) {
324		if (reg_val & BIT(i)) {
325			dev_dbg(chip->dev, "%s:[%d]:irq=%d  status=0x%x\n",
326				__func__, i, irq, reg_val);
327			generic_handle_irq(chip->irq_base + i);
328			ret = IRQ_HANDLED;
329		}
330	}
331	return ret;
332}
333
334static void pch_gpio_alloc_generic_chip(struct pch_gpio *chip,
335				unsigned int irq_start, unsigned int num)
336{
337	struct irq_chip_generic *gc;
338	struct irq_chip_type *ct;
339
340	gc = irq_alloc_generic_chip("pch_gpio", 1, irq_start, chip->base,
341				    handle_simple_irq);
342	gc->private = chip;
343	ct = gc->chip_types;
344
345	ct->chip.irq_ack = pch_irq_ack;
346	ct->chip.irq_mask = pch_irq_mask;
347	ct->chip.irq_unmask = pch_irq_unmask;
348	ct->chip.irq_set_type = pch_irq_type;
349
350	irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
351			       IRQ_NOREQUEST | IRQ_NOPROBE, 0);
352}
353
354static int pch_gpio_probe(struct pci_dev *pdev,
355				    const struct pci_device_id *id)
356{
357	s32 ret;
358	struct pch_gpio *chip;
359	int irq_base;
360	u32 msk;
361
362	chip = kzalloc(sizeof(*chip), GFP_KERNEL);
363	if (chip == NULL)
364		return -ENOMEM;
365
366	chip->dev = &pdev->dev;
367	ret = pci_enable_device(pdev);
368	if (ret) {
369		dev_err(&pdev->dev, "%s : pci_enable_device FAILED", __func__);
370		goto err_pci_enable;
371	}
372
373	ret = pci_request_regions(pdev, KBUILD_MODNAME);
374	if (ret) {
375		dev_err(&pdev->dev, "pci_request_regions FAILED-%d", ret);
376		goto err_request_regions;
377	}
378
379	chip->base = pci_iomap(pdev, 1, 0);
380	if (!chip->base) {
381		dev_err(&pdev->dev, "%s : pci_iomap FAILED", __func__);
382		ret = -ENOMEM;
383		goto err_iomap;
384	}
385
386	if (pdev->device == 0x8803)
387		chip->ioh = INTEL_EG20T_PCH;
388	else if (pdev->device == 0x8014)
389		chip->ioh = OKISEMI_ML7223m_IOH;
390	else if (pdev->device == 0x8043)
391		chip->ioh = OKISEMI_ML7223n_IOH;
392
393	chip->reg = chip->base;
394	pci_set_drvdata(pdev, chip);
395	spin_lock_init(&chip->spinlock);
396	pch_gpio_setup(chip);
397#ifdef CONFIG_OF_GPIO
398	chip->gpio.of_node = pdev->dev.of_node;
399#endif
400	ret = gpiochip_add_data(&chip->gpio, chip);
401	if (ret) {
402		dev_err(&pdev->dev, "PCH gpio: Failed to register GPIO\n");
403		goto err_gpiochip_add;
404	}
405
406	irq_base = irq_alloc_descs(-1, 0, gpio_pins[chip->ioh], NUMA_NO_NODE);
407	if (irq_base < 0) {
408		dev_warn(&pdev->dev, "PCH gpio: Failed to get IRQ base num\n");
409		chip->irq_base = -1;
410		goto end;
411	}
412	chip->irq_base = irq_base;
413
414	/* Mask all interrupts, but enable them */
415	msk = (1 << gpio_pins[chip->ioh]) - 1;
416	iowrite32(msk, &chip->reg->imask);
417	iowrite32(msk, &chip->reg->ien);
418
419	ret = request_irq(pdev->irq, pch_gpio_handler,
420			  IRQF_SHARED, KBUILD_MODNAME, chip);
421	if (ret != 0) {
422		dev_err(&pdev->dev,
423			"%s request_irq failed\n", __func__);
424		goto err_request_irq;
425	}
426
427	pch_gpio_alloc_generic_chip(chip, irq_base, gpio_pins[chip->ioh]);
428
429end:
430	return 0;
431
432err_request_irq:
433	irq_free_descs(irq_base, gpio_pins[chip->ioh]);
434	gpiochip_remove(&chip->gpio);
 
 
435
436err_gpiochip_add:
437	pci_iounmap(pdev, chip->base);
438
439err_iomap:
440	pci_release_regions(pdev);
441
442err_request_regions:
443	pci_disable_device(pdev);
444
445err_pci_enable:
446	kfree(chip);
447	dev_err(&pdev->dev, "%s Failed returns %d\n", __func__, ret);
448	return ret;
449}
450
451static void pch_gpio_remove(struct pci_dev *pdev)
452{
 
453	struct pch_gpio *chip = pci_get_drvdata(pdev);
454
455	if (chip->irq_base != -1) {
456		free_irq(pdev->irq, chip);
457
458		irq_free_descs(chip->irq_base, gpio_pins[chip->ioh]);
459	}
460
461	gpiochip_remove(&chip->gpio);
 
 
 
462	pci_iounmap(pdev, chip->base);
463	pci_release_regions(pdev);
464	pci_disable_device(pdev);
465	kfree(chip);
466}
467
468#ifdef CONFIG_PM
469static int pch_gpio_suspend(struct pci_dev *pdev, pm_message_t state)
470{
471	s32 ret;
472	struct pch_gpio *chip = pci_get_drvdata(pdev);
473	unsigned long flags;
474
475	spin_lock_irqsave(&chip->spinlock, flags);
476	pch_gpio_save_reg_conf(chip);
477	spin_unlock_irqrestore(&chip->spinlock, flags);
478
479	ret = pci_save_state(pdev);
480	if (ret) {
481		dev_err(&pdev->dev, "pci_save_state Failed-%d\n", ret);
482		return ret;
483	}
484	pci_disable_device(pdev);
485	pci_set_power_state(pdev, PCI_D0);
486	ret = pci_enable_wake(pdev, PCI_D0, 1);
487	if (ret)
488		dev_err(&pdev->dev, "pci_enable_wake Failed -%d\n", ret);
489
490	return 0;
491}
492
493static int pch_gpio_resume(struct pci_dev *pdev)
494{
495	s32 ret;
496	struct pch_gpio *chip = pci_get_drvdata(pdev);
497	unsigned long flags;
498
499	ret = pci_enable_wake(pdev, PCI_D0, 0);
500
501	pci_set_power_state(pdev, PCI_D0);
502	ret = pci_enable_device(pdev);
503	if (ret) {
504		dev_err(&pdev->dev, "pci_enable_device Failed-%d ", ret);
505		return ret;
506	}
507	pci_restore_state(pdev);
508
509	spin_lock_irqsave(&chip->spinlock, flags);
510	iowrite32(0x01, &chip->reg->reset);
511	iowrite32(0x00, &chip->reg->reset);
512	pch_gpio_restore_reg_conf(chip);
513	spin_unlock_irqrestore(&chip->spinlock, flags);
514
515	return 0;
516}
517#else
518#define pch_gpio_suspend NULL
519#define pch_gpio_resume NULL
520#endif
521
522#define PCI_VENDOR_ID_ROHM             0x10DB
523static const struct pci_device_id pch_gpio_pcidev_id[] = {
524	{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8803) },
525	{ PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8014) },
526	{ PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8043) },
527	{ PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8803) },
528	{ 0, }
529};
530MODULE_DEVICE_TABLE(pci, pch_gpio_pcidev_id);
531
532static struct pci_driver pch_gpio_driver = {
533	.name = "pch_gpio",
534	.id_table = pch_gpio_pcidev_id,
535	.probe = pch_gpio_probe,
536	.remove = pch_gpio_remove,
537	.suspend = pch_gpio_suspend,
538	.resume = pch_gpio_resume
539};
540
541module_pci_driver(pch_gpio_driver);
542
543MODULE_DESCRIPTION("PCH GPIO PCI Driver");
544MODULE_LICENSE("GPL");
v3.15
  1/*
  2 * Copyright (C) 2011 LAPIS Semiconductor Co., Ltd.
  3 *
  4 * This program is free software; you can redistribute it and/or modify
  5 * it under the terms of the GNU General Public License as published by
  6 * the Free Software Foundation; version 2 of the License.
  7 *
  8 * This program is distributed in the hope that it will be useful,
  9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 11 * GNU General Public License for more details.
 12 *
 13 * You should have received a copy of the GNU General Public License
 14 * along with this program; if not, write to the Free Software
 15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 16 */
 17#include <linux/module.h>
 18#include <linux/kernel.h>
 19#include <linux/pci.h>
 20#include <linux/gpio.h>
 21#include <linux/interrupt.h>
 22#include <linux/irq.h>
 
 23
 24#define PCH_EDGE_FALLING	0
 25#define PCH_EDGE_RISING		BIT(0)
 26#define PCH_LEVEL_L		BIT(1)
 27#define PCH_LEVEL_H		(BIT(0) | BIT(1))
 28#define PCH_EDGE_BOTH		BIT(2)
 29#define PCH_IM_MASK		(BIT(0) | BIT(1) | BIT(2))
 30
 31#define PCH_IRQ_BASE		24
 32
 33struct pch_regs {
 34	u32	ien;
 35	u32	istatus;
 36	u32	idisp;
 37	u32	iclr;
 38	u32	imask;
 39	u32	imaskclr;
 40	u32	po;
 41	u32	pi;
 42	u32	pm;
 43	u32	im0;
 44	u32	im1;
 45	u32	reserved[3];
 46	u32	gpio_use_sel;
 47	u32	reset;
 48};
 49
 50enum pch_type_t {
 51	INTEL_EG20T_PCH,
 52	OKISEMI_ML7223m_IOH, /* LAPIS Semiconductor ML7223 IOH PCIe Bus-m */
 53	OKISEMI_ML7223n_IOH  /* LAPIS Semiconductor ML7223 IOH PCIe Bus-n */
 54};
 55
 56/* Specifies number of GPIO PINS */
 57static int gpio_pins[] = {
 58	[INTEL_EG20T_PCH] = 12,
 59	[OKISEMI_ML7223m_IOH] = 8,
 60	[OKISEMI_ML7223n_IOH] = 8,
 61};
 62
 63/**
 64 * struct pch_gpio_reg_data - The register store data.
 65 * @ien_reg:	To store contents of IEN register.
 66 * @imask_reg:	To store contents of IMASK register.
 67 * @po_reg:	To store contents of PO register.
 68 * @pm_reg:	To store contents of PM register.
 69 * @im0_reg:	To store contents of IM0 register.
 70 * @im1_reg:	To store contents of IM1 register.
 71 * @gpio_use_sel_reg : To store contents of GPIO_USE_SEL register.
 72 *		       (Only ML7223 Bus-n)
 73 */
 74struct pch_gpio_reg_data {
 75	u32 ien_reg;
 76	u32 imask_reg;
 77	u32 po_reg;
 78	u32 pm_reg;
 79	u32 im0_reg;
 80	u32 im1_reg;
 81	u32 gpio_use_sel_reg;
 82};
 83
 84/**
 85 * struct pch_gpio - GPIO private data structure.
 86 * @base:			PCI base address of Memory mapped I/O register.
 87 * @reg:			Memory mapped PCH GPIO register list.
 88 * @dev:			Pointer to device structure.
 89 * @gpio:			Data for GPIO infrastructure.
 90 * @pch_gpio_reg:		Memory mapped Register data is saved here
 91 *				when suspend.
 92 * @lock:			Used for register access protection
 93 * @irq_base:		Save base of IRQ number for interrupt
 94 * @ioh:		IOH ID
 95 * @spinlock:		Used for register access protection
 96 */
 97struct pch_gpio {
 98	void __iomem *base;
 99	struct pch_regs __iomem *reg;
100	struct device *dev;
101	struct gpio_chip gpio;
102	struct pch_gpio_reg_data pch_gpio_reg;
103	int irq_base;
104	enum pch_type_t ioh;
105	spinlock_t spinlock;
106};
107
108static void pch_gpio_set(struct gpio_chip *gpio, unsigned nr, int val)
109{
110	u32 reg_val;
111	struct pch_gpio *chip =	container_of(gpio, struct pch_gpio, gpio);
112	unsigned long flags;
113
114	spin_lock_irqsave(&chip->spinlock, flags);
115	reg_val = ioread32(&chip->reg->po);
116	if (val)
117		reg_val |= (1 << nr);
118	else
119		reg_val &= ~(1 << nr);
120
121	iowrite32(reg_val, &chip->reg->po);
122	spin_unlock_irqrestore(&chip->spinlock, flags);
123}
124
125static int pch_gpio_get(struct gpio_chip *gpio, unsigned nr)
126{
127	struct pch_gpio *chip =	container_of(gpio, struct pch_gpio, gpio);
128
129	return ioread32(&chip->reg->pi) & (1 << nr);
130}
131
132static int pch_gpio_direction_output(struct gpio_chip *gpio, unsigned nr,
133				     int val)
134{
135	struct pch_gpio *chip =	container_of(gpio, struct pch_gpio, gpio);
136	u32 pm;
137	u32 reg_val;
138	unsigned long flags;
139
140	spin_lock_irqsave(&chip->spinlock, flags);
141
142	reg_val = ioread32(&chip->reg->po);
143	if (val)
144		reg_val |= (1 << nr);
145	else
146		reg_val &= ~(1 << nr);
147	iowrite32(reg_val, &chip->reg->po);
148
149	pm = ioread32(&chip->reg->pm) & ((1 << gpio_pins[chip->ioh]) - 1);
150	pm |= (1 << nr);
151	iowrite32(pm, &chip->reg->pm);
152
153	spin_unlock_irqrestore(&chip->spinlock, flags);
154
155	return 0;
156}
157
158static int pch_gpio_direction_input(struct gpio_chip *gpio, unsigned nr)
159{
160	struct pch_gpio *chip =	container_of(gpio, struct pch_gpio, gpio);
161	u32 pm;
162	unsigned long flags;
163
164	spin_lock_irqsave(&chip->spinlock, flags);
165	pm = ioread32(&chip->reg->pm) & ((1 << gpio_pins[chip->ioh]) - 1);
166	pm &= ~(1 << nr);
167	iowrite32(pm, &chip->reg->pm);
168	spin_unlock_irqrestore(&chip->spinlock, flags);
169
170	return 0;
171}
172
 
173/*
174 * Save register configuration and disable interrupts.
175 */
176static void pch_gpio_save_reg_conf(struct pch_gpio *chip)
177{
178	chip->pch_gpio_reg.ien_reg = ioread32(&chip->reg->ien);
179	chip->pch_gpio_reg.imask_reg = ioread32(&chip->reg->imask);
180	chip->pch_gpio_reg.po_reg = ioread32(&chip->reg->po);
181	chip->pch_gpio_reg.pm_reg = ioread32(&chip->reg->pm);
182	chip->pch_gpio_reg.im0_reg = ioread32(&chip->reg->im0);
183	if (chip->ioh == INTEL_EG20T_PCH)
184		chip->pch_gpio_reg.im1_reg = ioread32(&chip->reg->im1);
185	if (chip->ioh == OKISEMI_ML7223n_IOH)
186		chip->pch_gpio_reg.gpio_use_sel_reg =\
187					    ioread32(&chip->reg->gpio_use_sel);
188}
189
190/*
191 * This function restores the register configuration of the GPIO device.
192 */
193static void pch_gpio_restore_reg_conf(struct pch_gpio *chip)
194{
195	iowrite32(chip->pch_gpio_reg.ien_reg, &chip->reg->ien);
196	iowrite32(chip->pch_gpio_reg.imask_reg, &chip->reg->imask);
197	/* to store contents of PO register */
198	iowrite32(chip->pch_gpio_reg.po_reg, &chip->reg->po);
199	/* to store contents of PM register */
200	iowrite32(chip->pch_gpio_reg.pm_reg, &chip->reg->pm);
201	iowrite32(chip->pch_gpio_reg.im0_reg, &chip->reg->im0);
202	if (chip->ioh == INTEL_EG20T_PCH)
203		iowrite32(chip->pch_gpio_reg.im1_reg, &chip->reg->im1);
204	if (chip->ioh == OKISEMI_ML7223n_IOH)
205		iowrite32(chip->pch_gpio_reg.gpio_use_sel_reg,
206			  &chip->reg->gpio_use_sel);
207}
 
208
209static int pch_gpio_to_irq(struct gpio_chip *gpio, unsigned offset)
210{
211	struct pch_gpio *chip = container_of(gpio, struct pch_gpio, gpio);
212	return chip->irq_base + offset;
213}
214
215static void pch_gpio_setup(struct pch_gpio *chip)
216{
217	struct gpio_chip *gpio = &chip->gpio;
218
219	gpio->label = dev_name(chip->dev);
220	gpio->dev = chip->dev;
221	gpio->owner = THIS_MODULE;
222	gpio->direction_input = pch_gpio_direction_input;
223	gpio->get = pch_gpio_get;
224	gpio->direction_output = pch_gpio_direction_output;
225	gpio->set = pch_gpio_set;
226	gpio->dbg_show = NULL;
227	gpio->base = -1;
228	gpio->ngpio = gpio_pins[chip->ioh];
229	gpio->can_sleep = false;
230	gpio->to_irq = pch_gpio_to_irq;
231}
232
233static int pch_irq_type(struct irq_data *d, unsigned int type)
234{
235	struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
236	struct pch_gpio *chip = gc->private;
237	u32 im, im_pos, val;
238	u32 __iomem *im_reg;
239	unsigned long flags;
240	int ch, irq = d->irq;
241
242	ch = irq - chip->irq_base;
243	if (irq <= chip->irq_base + 7) {
244		im_reg = &chip->reg->im0;
245		im_pos = ch;
246	} else {
247		im_reg = &chip->reg->im1;
248		im_pos = ch - 8;
249	}
250	dev_dbg(chip->dev, "%s:irq=%d type=%d ch=%d pos=%d\n",
251		__func__, irq, type, ch, im_pos);
252
253	spin_lock_irqsave(&chip->spinlock, flags);
254
255	switch (type) {
256	case IRQ_TYPE_EDGE_RISING:
257		val = PCH_EDGE_RISING;
258		break;
259	case IRQ_TYPE_EDGE_FALLING:
260		val = PCH_EDGE_FALLING;
261		break;
262	case IRQ_TYPE_EDGE_BOTH:
263		val = PCH_EDGE_BOTH;
264		break;
265	case IRQ_TYPE_LEVEL_HIGH:
266		val = PCH_LEVEL_H;
267		break;
268	case IRQ_TYPE_LEVEL_LOW:
269		val = PCH_LEVEL_L;
270		break;
271	default:
272		goto unlock;
273	}
274
275	/* Set interrupt mode */
276	im = ioread32(im_reg) & ~(PCH_IM_MASK << (im_pos * 4));
277	iowrite32(im | (val << (im_pos * 4)), im_reg);
278
279	/* And the handler */
280	if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
281		__irq_set_handler_locked(d->irq, handle_level_irq);
282	else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
283		__irq_set_handler_locked(d->irq, handle_edge_irq);
284
285unlock:
286	spin_unlock_irqrestore(&chip->spinlock, flags);
287	return 0;
288}
289
290static void pch_irq_unmask(struct irq_data *d)
291{
292	struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
293	struct pch_gpio *chip = gc->private;
294
295	iowrite32(1 << (d->irq - chip->irq_base), &chip->reg->imaskclr);
296}
297
298static void pch_irq_mask(struct irq_data *d)
299{
300	struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
301	struct pch_gpio *chip = gc->private;
302
303	iowrite32(1 << (d->irq - chip->irq_base), &chip->reg->imask);
304}
305
306static void pch_irq_ack(struct irq_data *d)
307{
308	struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
309	struct pch_gpio *chip = gc->private;
310
311	iowrite32(1 << (d->irq - chip->irq_base), &chip->reg->iclr);
312}
313
314static irqreturn_t pch_gpio_handler(int irq, void *dev_id)
315{
316	struct pch_gpio *chip = dev_id;
317	u32 reg_val = ioread32(&chip->reg->istatus);
318	int i, ret = IRQ_NONE;
319
320	for (i = 0; i < gpio_pins[chip->ioh]; i++) {
321		if (reg_val & BIT(i)) {
322			dev_dbg(chip->dev, "%s:[%d]:irq=%d  status=0x%x\n",
323				__func__, i, irq, reg_val);
324			generic_handle_irq(chip->irq_base + i);
325			ret = IRQ_HANDLED;
326		}
327	}
328	return ret;
329}
330
331static void pch_gpio_alloc_generic_chip(struct pch_gpio *chip,
332				unsigned int irq_start, unsigned int num)
333{
334	struct irq_chip_generic *gc;
335	struct irq_chip_type *ct;
336
337	gc = irq_alloc_generic_chip("pch_gpio", 1, irq_start, chip->base,
338				    handle_simple_irq);
339	gc->private = chip;
340	ct = gc->chip_types;
341
342	ct->chip.irq_ack = pch_irq_ack;
343	ct->chip.irq_mask = pch_irq_mask;
344	ct->chip.irq_unmask = pch_irq_unmask;
345	ct->chip.irq_set_type = pch_irq_type;
346
347	irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
348			       IRQ_NOREQUEST | IRQ_NOPROBE, 0);
349}
350
351static int pch_gpio_probe(struct pci_dev *pdev,
352				    const struct pci_device_id *id)
353{
354	s32 ret;
355	struct pch_gpio *chip;
356	int irq_base;
357	u32 msk;
358
359	chip = kzalloc(sizeof(*chip), GFP_KERNEL);
360	if (chip == NULL)
361		return -ENOMEM;
362
363	chip->dev = &pdev->dev;
364	ret = pci_enable_device(pdev);
365	if (ret) {
366		dev_err(&pdev->dev, "%s : pci_enable_device FAILED", __func__);
367		goto err_pci_enable;
368	}
369
370	ret = pci_request_regions(pdev, KBUILD_MODNAME);
371	if (ret) {
372		dev_err(&pdev->dev, "pci_request_regions FAILED-%d", ret);
373		goto err_request_regions;
374	}
375
376	chip->base = pci_iomap(pdev, 1, 0);
377	if (!chip->base) {
378		dev_err(&pdev->dev, "%s : pci_iomap FAILED", __func__);
379		ret = -ENOMEM;
380		goto err_iomap;
381	}
382
383	if (pdev->device == 0x8803)
384		chip->ioh = INTEL_EG20T_PCH;
385	else if (pdev->device == 0x8014)
386		chip->ioh = OKISEMI_ML7223m_IOH;
387	else if (pdev->device == 0x8043)
388		chip->ioh = OKISEMI_ML7223n_IOH;
389
390	chip->reg = chip->base;
391	pci_set_drvdata(pdev, chip);
392	spin_lock_init(&chip->spinlock);
393	pch_gpio_setup(chip);
394	ret = gpiochip_add(&chip->gpio);
 
 
 
395	if (ret) {
396		dev_err(&pdev->dev, "PCH gpio: Failed to register GPIO\n");
397		goto err_gpiochip_add;
398	}
399
400	irq_base = irq_alloc_descs(-1, 0, gpio_pins[chip->ioh], NUMA_NO_NODE);
401	if (irq_base < 0) {
402		dev_warn(&pdev->dev, "PCH gpio: Failed to get IRQ base num\n");
403		chip->irq_base = -1;
404		goto end;
405	}
406	chip->irq_base = irq_base;
407
408	/* Mask all interrupts, but enable them */
409	msk = (1 << gpio_pins[chip->ioh]) - 1;
410	iowrite32(msk, &chip->reg->imask);
411	iowrite32(msk, &chip->reg->ien);
412
413	ret = request_irq(pdev->irq, pch_gpio_handler,
414			  IRQF_SHARED, KBUILD_MODNAME, chip);
415	if (ret != 0) {
416		dev_err(&pdev->dev,
417			"%s request_irq failed\n", __func__);
418		goto err_request_irq;
419	}
420
421	pch_gpio_alloc_generic_chip(chip, irq_base, gpio_pins[chip->ioh]);
422
423end:
424	return 0;
425
426err_request_irq:
427	irq_free_descs(irq_base, gpio_pins[chip->ioh]);
428
429	if (gpiochip_remove(&chip->gpio))
430		dev_err(&pdev->dev, "%s gpiochip_remove failed\n", __func__);
431
432err_gpiochip_add:
433	pci_iounmap(pdev, chip->base);
434
435err_iomap:
436	pci_release_regions(pdev);
437
438err_request_regions:
439	pci_disable_device(pdev);
440
441err_pci_enable:
442	kfree(chip);
443	dev_err(&pdev->dev, "%s Failed returns %d\n", __func__, ret);
444	return ret;
445}
446
447static void pch_gpio_remove(struct pci_dev *pdev)
448{
449	int err;
450	struct pch_gpio *chip = pci_get_drvdata(pdev);
451
452	if (chip->irq_base != -1) {
453		free_irq(pdev->irq, chip);
454
455		irq_free_descs(chip->irq_base, gpio_pins[chip->ioh]);
456	}
457
458	err = gpiochip_remove(&chip->gpio);
459	if (err)
460		dev_err(&pdev->dev, "Failed gpiochip_remove\n");
461
462	pci_iounmap(pdev, chip->base);
463	pci_release_regions(pdev);
464	pci_disable_device(pdev);
465	kfree(chip);
466}
467
468#ifdef CONFIG_PM
469static int pch_gpio_suspend(struct pci_dev *pdev, pm_message_t state)
470{
471	s32 ret;
472	struct pch_gpio *chip = pci_get_drvdata(pdev);
473	unsigned long flags;
474
475	spin_lock_irqsave(&chip->spinlock, flags);
476	pch_gpio_save_reg_conf(chip);
477	spin_unlock_irqrestore(&chip->spinlock, flags);
478
479	ret = pci_save_state(pdev);
480	if (ret) {
481		dev_err(&pdev->dev, "pci_save_state Failed-%d\n", ret);
482		return ret;
483	}
484	pci_disable_device(pdev);
485	pci_set_power_state(pdev, PCI_D0);
486	ret = pci_enable_wake(pdev, PCI_D0, 1);
487	if (ret)
488		dev_err(&pdev->dev, "pci_enable_wake Failed -%d\n", ret);
489
490	return 0;
491}
492
493static int pch_gpio_resume(struct pci_dev *pdev)
494{
495	s32 ret;
496	struct pch_gpio *chip = pci_get_drvdata(pdev);
497	unsigned long flags;
498
499	ret = pci_enable_wake(pdev, PCI_D0, 0);
500
501	pci_set_power_state(pdev, PCI_D0);
502	ret = pci_enable_device(pdev);
503	if (ret) {
504		dev_err(&pdev->dev, "pci_enable_device Failed-%d ", ret);
505		return ret;
506	}
507	pci_restore_state(pdev);
508
509	spin_lock_irqsave(&chip->spinlock, flags);
510	iowrite32(0x01, &chip->reg->reset);
511	iowrite32(0x00, &chip->reg->reset);
512	pch_gpio_restore_reg_conf(chip);
513	spin_unlock_irqrestore(&chip->spinlock, flags);
514
515	return 0;
516}
517#else
518#define pch_gpio_suspend NULL
519#define pch_gpio_resume NULL
520#endif
521
522#define PCI_VENDOR_ID_ROHM             0x10DB
523static const struct pci_device_id pch_gpio_pcidev_id[] = {
524	{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8803) },
525	{ PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8014) },
526	{ PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8043) },
527	{ PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8803) },
528	{ 0, }
529};
530MODULE_DEVICE_TABLE(pci, pch_gpio_pcidev_id);
531
532static struct pci_driver pch_gpio_driver = {
533	.name = "pch_gpio",
534	.id_table = pch_gpio_pcidev_id,
535	.probe = pch_gpio_probe,
536	.remove = pch_gpio_remove,
537	.suspend = pch_gpio_suspend,
538	.resume = pch_gpio_resume
539};
540
541module_pci_driver(pch_gpio_driver);
542
543MODULE_DESCRIPTION("PCH GPIO PCI Driver");
544MODULE_LICENSE("GPL");