1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2011 LAPIS Semiconductor Co., Ltd.
5 #include <linux/bits.h>
6 #include <linux/gpio/driver.h>
7 #include <linux/interrupt.h>
9 #include <linux/kernel.h>
10 #include <linux/module.h>
11 #include <linux/pci.h>
12 #include <linux/slab.h>
14 #define PCH_EDGE_FALLING 0
15 #define PCH_EDGE_RISING 1
18 #define PCH_EDGE_BOTH 4
19 #define PCH_IM_MASK GENMASK(2, 0)
21 #define PCH_IRQ_BASE 24
40 #define PCI_DEVICE_ID_INTEL_EG20T_PCH 0x8803
41 #define PCI_DEVICE_ID_ROHM_ML7223m_IOH 0x8014
42 #define PCI_DEVICE_ID_ROHM_ML7223n_IOH 0x8043
43 #define PCI_DEVICE_ID_ROHM_EG20T_PCH 0x8803
47 OKISEMI_ML7223m_IOH
, /* LAPIS Semiconductor ML7223 IOH PCIe Bus-m */
48 OKISEMI_ML7223n_IOH
/* LAPIS Semiconductor ML7223 IOH PCIe Bus-n */
51 /* Specifies number of GPIO PINS */
52 static int gpio_pins
[] = {
53 [INTEL_EG20T_PCH
] = 12,
54 [OKISEMI_ML7223m_IOH
] = 8,
55 [OKISEMI_ML7223n_IOH
] = 8,
59 * struct pch_gpio_reg_data - The register store data.
60 * @ien_reg: To store contents of IEN register.
61 * @imask_reg: To store contents of IMASK register.
62 * @po_reg: To store contents of PO register.
63 * @pm_reg: To store contents of PM register.
64 * @im0_reg: To store contents of IM0 register.
65 * @im1_reg: To store contents of IM1 register.
66 * @gpio_use_sel_reg : To store contents of GPIO_USE_SEL register.
69 struct pch_gpio_reg_data
{
80 * struct pch_gpio - GPIO private data structure.
81 * @base: PCI base address of Memory mapped I/O register.
82 * @reg: Memory mapped PCH GPIO register list.
83 * @dev: Pointer to device structure.
84 * @gpio: Data for GPIO infrastructure.
85 * @pch_gpio_reg: Memory mapped Register data is saved here
87 * @irq_base: Save base of IRQ number for interrupt
89 * @spinlock: Used for register access protection
93 struct pch_regs __iomem
*reg
;
95 struct gpio_chip gpio
;
96 struct pch_gpio_reg_data pch_gpio_reg
;
102 static void pch_gpio_set(struct gpio_chip
*gpio
, unsigned int nr
, int val
)
105 struct pch_gpio
*chip
= gpiochip_get_data(gpio
);
108 spin_lock_irqsave(&chip
->spinlock
, flags
);
109 reg_val
= ioread32(&chip
->reg
->po
);
115 iowrite32(reg_val
, &chip
->reg
->po
);
116 spin_unlock_irqrestore(&chip
->spinlock
, flags
);
119 static int pch_gpio_get(struct gpio_chip
*gpio
, unsigned int nr
)
121 struct pch_gpio
*chip
= gpiochip_get_data(gpio
);
123 return !!(ioread32(&chip
->reg
->pi
) & BIT(nr
));
126 static int pch_gpio_direction_output(struct gpio_chip
*gpio
, unsigned int nr
,
129 struct pch_gpio
*chip
= gpiochip_get_data(gpio
);
134 spin_lock_irqsave(&chip
->spinlock
, flags
);
136 reg_val
= ioread32(&chip
->reg
->po
);
141 iowrite32(reg_val
, &chip
->reg
->po
);
143 pm
= ioread32(&chip
->reg
->pm
);
144 pm
&= BIT(gpio_pins
[chip
->ioh
]) - 1;
146 iowrite32(pm
, &chip
->reg
->pm
);
148 spin_unlock_irqrestore(&chip
->spinlock
, flags
);
153 static int pch_gpio_direction_input(struct gpio_chip
*gpio
, unsigned int nr
)
155 struct pch_gpio
*chip
= gpiochip_get_data(gpio
);
159 spin_lock_irqsave(&chip
->spinlock
, flags
);
160 pm
= ioread32(&chip
->reg
->pm
);
161 pm
&= BIT(gpio_pins
[chip
->ioh
]) - 1;
163 iowrite32(pm
, &chip
->reg
->pm
);
164 spin_unlock_irqrestore(&chip
->spinlock
, flags
);
170 * Save register configuration and disable interrupts.
172 static void __maybe_unused
pch_gpio_save_reg_conf(struct pch_gpio
*chip
)
174 chip
->pch_gpio_reg
.ien_reg
= ioread32(&chip
->reg
->ien
);
175 chip
->pch_gpio_reg
.imask_reg
= ioread32(&chip
->reg
->imask
);
176 chip
->pch_gpio_reg
.po_reg
= ioread32(&chip
->reg
->po
);
177 chip
->pch_gpio_reg
.pm_reg
= ioread32(&chip
->reg
->pm
);
178 chip
->pch_gpio_reg
.im0_reg
= ioread32(&chip
->reg
->im0
);
179 if (chip
->ioh
== INTEL_EG20T_PCH
)
180 chip
->pch_gpio_reg
.im1_reg
= ioread32(&chip
->reg
->im1
);
181 if (chip
->ioh
== OKISEMI_ML7223n_IOH
)
182 chip
->pch_gpio_reg
.gpio_use_sel_reg
= ioread32(&chip
->reg
->gpio_use_sel
);
186 * This function restores the register configuration of the GPIO device.
188 static void __maybe_unused
pch_gpio_restore_reg_conf(struct pch_gpio
*chip
)
190 iowrite32(chip
->pch_gpio_reg
.ien_reg
, &chip
->reg
->ien
);
191 iowrite32(chip
->pch_gpio_reg
.imask_reg
, &chip
->reg
->imask
);
192 /* to store contents of PO register */
193 iowrite32(chip
->pch_gpio_reg
.po_reg
, &chip
->reg
->po
);
194 /* to store contents of PM register */
195 iowrite32(chip
->pch_gpio_reg
.pm_reg
, &chip
->reg
->pm
);
196 iowrite32(chip
->pch_gpio_reg
.im0_reg
, &chip
->reg
->im0
);
197 if (chip
->ioh
== INTEL_EG20T_PCH
)
198 iowrite32(chip
->pch_gpio_reg
.im1_reg
, &chip
->reg
->im1
);
199 if (chip
->ioh
== OKISEMI_ML7223n_IOH
)
200 iowrite32(chip
->pch_gpio_reg
.gpio_use_sel_reg
, &chip
->reg
->gpio_use_sel
);
203 static int pch_gpio_to_irq(struct gpio_chip
*gpio
, unsigned int offset
)
205 struct pch_gpio
*chip
= gpiochip_get_data(gpio
);
207 return chip
->irq_base
+ offset
;
210 static void pch_gpio_setup(struct pch_gpio
*chip
)
212 struct gpio_chip
*gpio
= &chip
->gpio
;
214 gpio
->label
= dev_name(chip
->dev
);
215 gpio
->parent
= chip
->dev
;
216 gpio
->owner
= THIS_MODULE
;
217 gpio
->direction_input
= pch_gpio_direction_input
;
218 gpio
->get
= pch_gpio_get
;
219 gpio
->direction_output
= pch_gpio_direction_output
;
220 gpio
->set
= pch_gpio_set
;
222 gpio
->ngpio
= gpio_pins
[chip
->ioh
];
223 gpio
->can_sleep
= false;
224 gpio
->to_irq
= pch_gpio_to_irq
;
227 static int pch_irq_type(struct irq_data
*d
, unsigned int type
)
229 struct irq_chip_generic
*gc
= irq_data_get_irq_chip_data(d
);
230 struct pch_gpio
*chip
= gc
->private;
234 int ch
, irq
= d
->irq
;
236 ch
= irq
- chip
->irq_base
;
237 if (irq
< chip
->irq_base
+ 8) {
238 im_reg
= &chip
->reg
->im0
;
241 im_reg
= &chip
->reg
->im1
;
244 dev_dbg(chip
->dev
, "irq=%d type=%d ch=%d pos=%d\n", irq
, type
, ch
, im_pos
);
247 case IRQ_TYPE_EDGE_RISING
:
248 val
= PCH_EDGE_RISING
;
250 case IRQ_TYPE_EDGE_FALLING
:
251 val
= PCH_EDGE_FALLING
;
253 case IRQ_TYPE_EDGE_BOTH
:
256 case IRQ_TYPE_LEVEL_HIGH
:
259 case IRQ_TYPE_LEVEL_LOW
:
266 spin_lock_irqsave(&chip
->spinlock
, flags
);
268 /* Set interrupt mode */
269 im
= ioread32(im_reg
) & ~(PCH_IM_MASK
<< (im_pos
* 4));
270 iowrite32(im
| (val
<< (im_pos
* 4)), im_reg
);
272 /* And the handler */
273 if (type
& IRQ_TYPE_LEVEL_MASK
)
274 irq_set_handler_locked(d
, handle_level_irq
);
275 else if (type
& IRQ_TYPE_EDGE_BOTH
)
276 irq_set_handler_locked(d
, handle_edge_irq
);
278 spin_unlock_irqrestore(&chip
->spinlock
, flags
);
282 static void pch_irq_unmask(struct irq_data
*d
)
284 struct irq_chip_generic
*gc
= irq_data_get_irq_chip_data(d
);
285 struct pch_gpio
*chip
= gc
->private;
287 iowrite32(BIT(d
->irq
- chip
->irq_base
), &chip
->reg
->imaskclr
);
290 static void pch_irq_mask(struct irq_data
*d
)
292 struct irq_chip_generic
*gc
= irq_data_get_irq_chip_data(d
);
293 struct pch_gpio
*chip
= gc
->private;
295 iowrite32(BIT(d
->irq
- chip
->irq_base
), &chip
->reg
->imask
);
298 static void pch_irq_ack(struct irq_data
*d
)
300 struct irq_chip_generic
*gc
= irq_data_get_irq_chip_data(d
);
301 struct pch_gpio
*chip
= gc
->private;
303 iowrite32(BIT(d
->irq
- chip
->irq_base
), &chip
->reg
->iclr
);
306 static irqreturn_t
pch_gpio_handler(int irq
, void *dev_id
)
308 struct pch_gpio
*chip
= dev_id
;
309 unsigned long reg_val
= ioread32(&chip
->reg
->istatus
);
312 dev_vdbg(chip
->dev
, "irq=%d status=0x%lx\n", irq
, reg_val
);
314 reg_val
&= BIT(gpio_pins
[chip
->ioh
]) - 1;
316 for_each_set_bit(i
, ®_val
, gpio_pins
[chip
->ioh
])
317 generic_handle_irq(chip
->irq_base
+ i
);
319 return IRQ_RETVAL(reg_val
);
322 static int pch_gpio_alloc_generic_chip(struct pch_gpio
*chip
,
323 unsigned int irq_start
,
326 struct irq_chip_generic
*gc
;
327 struct irq_chip_type
*ct
;
330 gc
= devm_irq_alloc_generic_chip(chip
->dev
, "pch_gpio", 1, irq_start
,
331 chip
->base
, handle_simple_irq
);
338 ct
->chip
.irq_ack
= pch_irq_ack
;
339 ct
->chip
.irq_mask
= pch_irq_mask
;
340 ct
->chip
.irq_unmask
= pch_irq_unmask
;
341 ct
->chip
.irq_set_type
= pch_irq_type
;
343 rv
= devm_irq_setup_generic_chip(chip
->dev
, gc
, IRQ_MSK(num
),
344 IRQ_GC_INIT_MASK_CACHE
,
345 IRQ_NOREQUEST
| IRQ_NOPROBE
, 0);
350 static int pch_gpio_probe(struct pci_dev
*pdev
,
351 const struct pci_device_id
*id
)
353 struct device
*dev
= &pdev
->dev
;
355 struct pch_gpio
*chip
;
358 chip
= devm_kzalloc(dev
, sizeof(*chip
), GFP_KERNEL
);
363 ret
= pcim_enable_device(pdev
);
365 return dev_err_probe(dev
, ret
, "Failed to enable PCI device\n");
367 ret
= pcim_iomap_regions(pdev
, BIT(1), KBUILD_MODNAME
);
369 return dev_err_probe(dev
, ret
, "Failed to request and map PCI regions\n");
371 chip
->base
= pcim_iomap_table(pdev
)[1];
372 chip
->ioh
= id
->driver_data
;
373 chip
->reg
= chip
->base
;
374 pci_set_drvdata(pdev
, chip
);
375 spin_lock_init(&chip
->spinlock
);
376 pch_gpio_setup(chip
);
378 ret
= devm_gpiochip_add_data(dev
, &chip
->gpio
, chip
);
380 return dev_err_probe(dev
, ret
, "Failed to register GPIO\n");
382 irq_base
= devm_irq_alloc_descs(dev
, -1, 0,
383 gpio_pins
[chip
->ioh
], NUMA_NO_NODE
);
385 dev_warn(dev
, "PCH gpio: Failed to get IRQ base num\n");
389 chip
->irq_base
= irq_base
;
391 /* Mask all interrupts, but enable them */
392 iowrite32(BIT(gpio_pins
[chip
->ioh
]) - 1, &chip
->reg
->imask
);
393 iowrite32(BIT(gpio_pins
[chip
->ioh
]) - 1, &chip
->reg
->ien
);
395 ret
= devm_request_irq(dev
, pdev
->irq
, pch_gpio_handler
,
396 IRQF_SHARED
, KBUILD_MODNAME
, chip
);
398 return dev_err_probe(dev
, ret
, "Failed to request IRQ\n");
400 return pch_gpio_alloc_generic_chip(chip
, irq_base
, gpio_pins
[chip
->ioh
]);
403 static int __maybe_unused
pch_gpio_suspend(struct device
*dev
)
405 struct pch_gpio
*chip
= dev_get_drvdata(dev
);
408 spin_lock_irqsave(&chip
->spinlock
, flags
);
409 pch_gpio_save_reg_conf(chip
);
410 spin_unlock_irqrestore(&chip
->spinlock
, flags
);
415 static int __maybe_unused
pch_gpio_resume(struct device
*dev
)
417 struct pch_gpio
*chip
= dev_get_drvdata(dev
);
420 spin_lock_irqsave(&chip
->spinlock
, flags
);
421 iowrite32(0x01, &chip
->reg
->reset
);
422 iowrite32(0x00, &chip
->reg
->reset
);
423 pch_gpio_restore_reg_conf(chip
);
424 spin_unlock_irqrestore(&chip
->spinlock
, flags
);
429 static SIMPLE_DEV_PM_OPS(pch_gpio_pm_ops
, pch_gpio_suspend
, pch_gpio_resume
);
431 static const struct pci_device_id pch_gpio_pcidev_id
[] = {
432 { PCI_DEVICE_DATA(INTEL
, EG20T_PCH
, INTEL_EG20T_PCH
) },
433 { PCI_DEVICE_DATA(ROHM
, ML7223m_IOH
, OKISEMI_ML7223m_IOH
) },
434 { PCI_DEVICE_DATA(ROHM
, ML7223n_IOH
, OKISEMI_ML7223n_IOH
) },
435 { PCI_DEVICE_DATA(ROHM
, EG20T_PCH
, INTEL_EG20T_PCH
) },
438 MODULE_DEVICE_TABLE(pci
, pch_gpio_pcidev_id
);
440 static struct pci_driver pch_gpio_driver
= {
442 .id_table
= pch_gpio_pcidev_id
,
443 .probe
= pch_gpio_probe
,
445 .pm
= &pch_gpio_pm_ops
,
449 module_pci_driver(pch_gpio_driver
);
451 MODULE_DESCRIPTION("PCH GPIO PCI Driver");
452 MODULE_LICENSE("GPL v2");