2 * GPIO interface for Intel Sodaville SoCs.
4 * Copyright (c) 2010, 2011 Intel Corporation
6 * Author: Hans J. Koch <hjk@linutronix.de>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License 2 as published
10 * by the Free Software Foundation.
14 #include <linux/errno.h>
15 #include <linux/init.h>
17 #include <linux/irq.h>
18 #include <linux/interrupt.h>
19 #include <linux/kernel.h>
20 #include <linux/pci.h>
21 #include <linux/platform_device.h>
22 #include <linux/of_irq.h>
23 #include <linux/gpio/driver.h>
25 #define DRV_NAME "sdv_gpio"
26 #define SDV_NUM_PUB_GPIOS 12
27 #define PCI_DEVICE_ID_SDV_GPIO 0x2e67
41 struct sdv_gpio_chip_data
{
43 void __iomem
*gpio_pub_base
;
44 struct irq_domain
*id
;
45 struct irq_chip_generic
*gc
;
46 struct gpio_chip chip
;
49 static int sdv_gpio_pub_set_type(struct irq_data
*d
, unsigned int type
)
51 struct irq_chip_generic
*gc
= irq_data_get_irq_chip_data(d
);
52 struct sdv_gpio_chip_data
*sd
= gc
->private;
53 void __iomem
*type_reg
;
57 type_reg
= sd
->gpio_pub_base
+ GPIT1R0
;
59 type_reg
= sd
->gpio_pub_base
+ GPIT1R1
;
61 reg
= readl(type_reg
);
64 case IRQ_TYPE_LEVEL_HIGH
:
65 reg
&= ~BIT(4 * (d
->hwirq
% 8));
68 case IRQ_TYPE_LEVEL_LOW
:
69 reg
|= BIT(4 * (d
->hwirq
% 8));
76 writel(reg
, type_reg
);
80 static irqreturn_t
sdv_gpio_pub_irq_handler(int irq
, void *data
)
82 struct sdv_gpio_chip_data
*sd
= data
;
83 u32 irq_stat
= readl(sd
->gpio_pub_base
+ GPSTR
);
85 irq_stat
&= readl(sd
->gpio_pub_base
+ GPIO_INT
);
90 u32 irq_bit
= __fls(irq_stat
);
92 irq_stat
&= ~BIT(irq_bit
);
93 generic_handle_irq(irq_find_mapping(sd
->id
, irq_bit
));
99 static int sdv_xlate(struct irq_domain
*h
, struct device_node
*node
,
100 const u32
*intspec
, u32 intsize
, irq_hw_number_t
*out_hwirq
,
105 if (node
!= irq_domain_get_of_node(h
))
118 case IRQ_TYPE_LEVEL_LOW
:
119 case IRQ_TYPE_LEVEL_HIGH
:
128 static const struct irq_domain_ops irq_domain_sdv_ops
= {
132 static int sdv_register_irqsupport(struct sdv_gpio_chip_data
*sd
,
133 struct pci_dev
*pdev
)
135 struct irq_chip_type
*ct
;
138 sd
->irq_base
= irq_alloc_descs(-1, 0, SDV_NUM_PUB_GPIOS
, -1);
139 if (sd
->irq_base
< 0)
142 /* mask + ACK all interrupt sources */
143 writel(0, sd
->gpio_pub_base
+ GPIO_INT
);
144 writel((1 << 11) - 1, sd
->gpio_pub_base
+ GPSTR
);
146 ret
= request_irq(pdev
->irq
, sdv_gpio_pub_irq_handler
, IRQF_SHARED
,
152 * This gpio irq controller latches level irqs. Testing shows that if
153 * we unmask & ACK the IRQ before the source of the interrupt is gone
154 * then the interrupt is active again.
156 sd
->gc
= irq_alloc_generic_chip("sdv-gpio", 1, sd
->irq_base
,
157 sd
->gpio_pub_base
, handle_fasteoi_irq
);
163 sd
->gc
->private = sd
;
164 ct
= sd
->gc
->chip_types
;
165 ct
->type
= IRQ_TYPE_LEVEL_HIGH
| IRQ_TYPE_LEVEL_LOW
;
166 ct
->regs
.eoi
= GPSTR
;
167 ct
->regs
.mask
= GPIO_INT
;
168 ct
->chip
.irq_mask
= irq_gc_mask_clr_bit
;
169 ct
->chip
.irq_unmask
= irq_gc_mask_set_bit
;
170 ct
->chip
.irq_eoi
= irq_gc_eoi
;
171 ct
->chip
.irq_set_type
= sdv_gpio_pub_set_type
;
173 irq_setup_generic_chip(sd
->gc
, IRQ_MSK(SDV_NUM_PUB_GPIOS
),
174 IRQ_GC_INIT_MASK_CACHE
, IRQ_NOREQUEST
,
175 IRQ_LEVEL
| IRQ_NOPROBE
);
177 sd
->id
= irq_domain_add_legacy(pdev
->dev
.of_node
, SDV_NUM_PUB_GPIOS
,
178 sd
->irq_base
, 0, &irq_domain_sdv_ops
, sd
);
185 free_irq(pdev
->irq
, sd
);
187 irq_free_descs(sd
->irq_base
, SDV_NUM_PUB_GPIOS
);
191 static int sdv_gpio_probe(struct pci_dev
*pdev
,
192 const struct pci_device_id
*pci_id
)
194 struct sdv_gpio_chip_data
*sd
;
201 sd
= kzalloc(sizeof(struct sdv_gpio_chip_data
), GFP_KERNEL
);
204 ret
= pci_enable_device(pdev
);
206 dev_err(&pdev
->dev
, "can't enable device.\n");
210 ret
= pci_request_region(pdev
, GPIO_BAR
, DRV_NAME
);
212 dev_err(&pdev
->dev
, "can't alloc PCI BAR #%d\n", GPIO_BAR
);
216 addr
= pci_resource_start(pdev
, GPIO_BAR
);
221 sd
->gpio_pub_base
= ioremap(addr
, pci_resource_len(pdev
, GPIO_BAR
));
223 prop
= of_get_property(pdev
->dev
.of_node
, "intel,muxctl", &len
);
224 if (prop
&& len
== 4) {
225 mux_val
= of_read_number(prop
, 1);
226 writel(mux_val
, sd
->gpio_pub_base
+ GPMUXCTL
);
229 ret
= bgpio_init(&sd
->chip
, &pdev
->dev
, 4,
230 sd
->gpio_pub_base
+ GPINR
, sd
->gpio_pub_base
+ GPOUTR
,
231 NULL
, sd
->gpio_pub_base
+ GPOER
, NULL
, 0);
234 sd
->chip
.ngpio
= SDV_NUM_PUB_GPIOS
;
236 ret
= gpiochip_add_data(&sd
->chip
, sd
);
238 dev_err(&pdev
->dev
, "gpiochip_add() failed.\n");
242 ret
= sdv_register_irqsupport(sd
, pdev
);
246 pci_set_drvdata(pdev
, sd
);
247 dev_info(&pdev
->dev
, "Sodaville GPIO driver registered.\n");
251 iounmap(sd
->gpio_pub_base
);
253 pci_release_region(pdev
, GPIO_BAR
);
255 pci_disable_device(pdev
);
261 static const struct pci_device_id sdv_gpio_pci_ids
[] = {
262 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_SDV_GPIO
) },
266 static struct pci_driver sdv_gpio_driver
= {
268 .suppress_bind_attrs
= true,
271 .id_table
= sdv_gpio_pci_ids
,
272 .probe
= sdv_gpio_probe
,
274 builtin_pci_driver(sdv_gpio_driver
);