1 // SPDX-License-Identifier: GPL-2.0
3 * GPIO interface for Intel Poulsbo SCH
5 * Copyright (c) 2010 CompuLab Ltd
6 * Author: Denis Turischev <denis@compulab.co.il>
9 #include <linux/acpi.h>
10 #include <linux/bitops.h>
11 #include <linux/errno.h>
12 #include <linux/gpio/driver.h>
14 #include <linux/irq.h>
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/pci_ids.h>
18 #include <linux/platform_device.h>
19 #include <linux/types.h>
30 #define CORE_BANK_OFFSET 0x00
31 #define RESUME_BANK_OFFSET 0x20
34 * iLB datasheet describes GPE0BLK registers, in particular GPE0E.GPIO bit.
35 * Document Number: 328195-001
40 struct gpio_chip chip;
42 unsigned short iobase;
43 unsigned short resume_base;
47 acpi_gpe_handler gpe_handler;
50 static unsigned int sch_gpio_offset(struct sch_gpio *sch, unsigned int gpio,
53 unsigned int base = CORE_BANK_OFFSET;
55 if (gpio >= sch->resume_base) {
56 gpio -= sch->resume_base;
57 base = RESUME_BANK_OFFSET;
60 return base + reg + gpio / 8;
63 static unsigned int sch_gpio_bit(struct sch_gpio *sch, unsigned int gpio)
65 if (gpio >= sch->resume_base)
66 gpio -= sch->resume_base;
70 static int sch_gpio_reg_get(struct sch_gpio *sch, unsigned int gpio, unsigned int reg)
72 unsigned short offset, bit;
75 offset = sch_gpio_offset(sch, gpio, reg);
76 bit = sch_gpio_bit(sch, gpio);
78 reg_val = !!(inb(sch->iobase + offset) & BIT(bit));
83 static void sch_gpio_reg_set(struct sch_gpio *sch, unsigned int gpio, unsigned int reg,
86 unsigned short offset, bit;
89 offset = sch_gpio_offset(sch, gpio, reg);
90 bit = sch_gpio_bit(sch, gpio);
92 reg_val = inb(sch->iobase + offset);
95 outb(reg_val | BIT(bit), sch->iobase + offset);
97 outb((reg_val & ~BIT(bit)), sch->iobase + offset);
100 static int sch_gpio_direction_in(struct gpio_chip *gc, unsigned int gpio_num)
102 struct sch_gpio *sch = gpiochip_get_data(gc);
105 spin_lock_irqsave(&sch->lock, flags);
106 sch_gpio_reg_set(sch, gpio_num, GIO, 1);
107 spin_unlock_irqrestore(&sch->lock, flags);
111 static int sch_gpio_get(struct gpio_chip *gc, unsigned int gpio_num)
113 struct sch_gpio *sch = gpiochip_get_data(gc);
115 return sch_gpio_reg_get(sch, gpio_num, GLV);
118 static void sch_gpio_set(struct gpio_chip *gc, unsigned int gpio_num, int val)
120 struct sch_gpio *sch = gpiochip_get_data(gc);
123 spin_lock_irqsave(&sch->lock, flags);
124 sch_gpio_reg_set(sch, gpio_num, GLV, val);
125 spin_unlock_irqrestore(&sch->lock, flags);
128 static int sch_gpio_direction_out(struct gpio_chip *gc, unsigned int gpio_num,
131 struct sch_gpio *sch = gpiochip_get_data(gc);
134 spin_lock_irqsave(&sch->lock, flags);
135 sch_gpio_reg_set(sch, gpio_num, GIO, 0);
136 spin_unlock_irqrestore(&sch->lock, flags);
139 * according to the datasheet, writing to the level register has no
140 * effect when GPIO is programmed as input.
141 * Actually the level register is read-only when configured as input.
142 * Thus presetting the output level before switching to output is _NOT_ possible.
143 * Hence we set the level after configuring the GPIO as output.
144 * But we cannot prevent a short low pulse if direction is set to high
145 * and an external pull-up is connected.
147 sch_gpio_set(gc, gpio_num, val);
151 static int sch_gpio_get_direction(struct gpio_chip *gc, unsigned int gpio_num)
153 struct sch_gpio *sch = gpiochip_get_data(gc);
155 if (sch_gpio_reg_get(sch, gpio_num, GIO))
156 return GPIO_LINE_DIRECTION_IN;
158 return GPIO_LINE_DIRECTION_OUT;
161 static const struct gpio_chip sch_gpio_chip = {
163 .owner = THIS_MODULE,
164 .direction_input = sch_gpio_direction_in,
166 .direction_output = sch_gpio_direction_out,
168 .get_direction = sch_gpio_get_direction,
171 static int sch_irq_type(struct irq_data *d, unsigned int type)
173 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
174 struct sch_gpio *sch = gpiochip_get_data(gc);
175 irq_hw_number_t gpio_num = irqd_to_hwirq(d);
179 switch (type & IRQ_TYPE_SENSE_MASK) {
180 case IRQ_TYPE_EDGE_RISING:
184 case IRQ_TYPE_EDGE_FALLING:
188 case IRQ_TYPE_EDGE_BOTH:
196 spin_lock_irqsave(&sch->lock, flags);
198 sch_gpio_reg_set(sch, gpio_num, GTPE, rising);
199 sch_gpio_reg_set(sch, gpio_num, GTNE, falling);
201 irq_set_handler_locked(d, handle_edge_irq);
203 spin_unlock_irqrestore(&sch->lock, flags);
208 static void sch_irq_ack(struct irq_data *d)
210 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
211 struct sch_gpio *sch = gpiochip_get_data(gc);
212 irq_hw_number_t gpio_num = irqd_to_hwirq(d);
215 spin_lock_irqsave(&sch->lock, flags);
216 sch_gpio_reg_set(sch, gpio_num, GTS, 1);
217 spin_unlock_irqrestore(&sch->lock, flags);
220 static void sch_irq_mask_unmask(struct gpio_chip *gc, irq_hw_number_t gpio_num, int val)
222 struct sch_gpio *sch = gpiochip_get_data(gc);
225 spin_lock_irqsave(&sch->lock, flags);
226 sch_gpio_reg_set(sch, gpio_num, GGPE, val);
227 spin_unlock_irqrestore(&sch->lock, flags);
230 static void sch_irq_mask(struct irq_data *d)
232 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
233 irq_hw_number_t gpio_num = irqd_to_hwirq(d);
235 sch_irq_mask_unmask(gc, gpio_num, 0);
236 gpiochip_disable_irq(gc, gpio_num);
239 static void sch_irq_unmask(struct irq_data *d)
241 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
242 irq_hw_number_t gpio_num = irqd_to_hwirq(d);
244 gpiochip_enable_irq(gc, gpio_num);
245 sch_irq_mask_unmask(gc, gpio_num, 1);
248 static const struct irq_chip sch_irqchip = {
250 .irq_ack = sch_irq_ack,
251 .irq_mask = sch_irq_mask,
252 .irq_unmask = sch_irq_unmask,
253 .irq_set_type = sch_irq_type,
254 .flags = IRQCHIP_IMMUTABLE,
255 GPIOCHIP_IRQ_RESOURCE_HELPERS,
258 static u32 sch_gpio_gpe_handler(acpi_handle gpe_device, u32 gpe, void *context)
260 struct sch_gpio *sch = context;
261 struct gpio_chip *gc = &sch->chip;
262 unsigned long core_status, resume_status;
263 unsigned long pending;
268 spin_lock_irqsave(&sch->lock, flags);
270 core_status = inl(sch->iobase + CORE_BANK_OFFSET + GTS);
271 resume_status = inl(sch->iobase + RESUME_BANK_OFFSET + GTS);
273 spin_unlock_irqrestore(&sch->lock, flags);
275 pending = (resume_status << sch->resume_base) | core_status;
276 for_each_set_bit(offset, &pending, sch->chip.ngpio)
277 generic_handle_domain_irq(gc->irq.domain, offset);
279 /* Set returning value depending on whether we handled an interrupt */
280 ret = pending ? ACPI_INTERRUPT_HANDLED : ACPI_INTERRUPT_NOT_HANDLED;
282 /* Acknowledge GPE to ACPICA */
283 ret |= ACPI_REENABLE_GPE;
288 static void sch_gpio_remove_gpe_handler(void *data)
290 struct sch_gpio *sch = data;
292 acpi_disable_gpe(NULL, sch->gpe);
293 acpi_remove_gpe_handler(NULL, sch->gpe, sch->gpe_handler);
296 static int sch_gpio_install_gpe_handler(struct sch_gpio *sch)
298 struct device *dev = sch->chip.parent;
301 status = acpi_install_gpe_handler(NULL, sch->gpe, ACPI_GPE_LEVEL_TRIGGERED,
302 sch->gpe_handler, sch);
303 if (ACPI_FAILURE(status)) {
304 dev_err(dev, "Failed to install GPE handler for %u: %s\n",
305 sch->gpe, acpi_format_exception(status));
309 status = acpi_enable_gpe(NULL, sch->gpe);
310 if (ACPI_FAILURE(status)) {
311 dev_err(dev, "Failed to enable GPE handler for %u: %s\n",
312 sch->gpe, acpi_format_exception(status));
313 acpi_remove_gpe_handler(NULL, sch->gpe, sch->gpe_handler);
317 return devm_add_action_or_reset(dev, sch_gpio_remove_gpe_handler, sch);
320 static int sch_gpio_probe(struct platform_device *pdev)
322 struct gpio_irq_chip *girq;
323 struct sch_gpio *sch;
324 struct resource *res;
327 sch = devm_kzalloc(&pdev->dev, sizeof(*sch), GFP_KERNEL);
331 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
335 if (!devm_request_region(&pdev->dev, res->start, resource_size(res),
339 spin_lock_init(&sch->lock);
340 sch->iobase = res->start;
341 sch->chip = sch_gpio_chip;
342 sch->chip.label = dev_name(&pdev->dev);
343 sch->chip.parent = &pdev->dev;
346 case PCI_DEVICE_ID_INTEL_SCH_LPC:
347 sch->resume_base = 10;
348 sch->chip.ngpio = 14;
351 * GPIO[6:0] enabled by default
352 * GPIO7 is configured by the CMC as SLPIOVR
353 * Enable GPIO[9:8] core powered gpios explicitly
355 sch_gpio_reg_set(sch, 8, GEN, 1);
356 sch_gpio_reg_set(sch, 9, GEN, 1);
358 * SUS_GPIO[2:0] enabled by default
359 * Enable SUS_GPIO3 resume powered gpio explicitly
361 sch_gpio_reg_set(sch, 13, GEN, 1);
364 case PCI_DEVICE_ID_INTEL_ITC_LPC:
365 sch->resume_base = 5;
366 sch->chip.ngpio = 14;
369 case PCI_DEVICE_ID_INTEL_CENTERTON_ILB:
370 sch->resume_base = 21;
371 sch->chip.ngpio = 30;
374 case PCI_DEVICE_ID_INTEL_QUARK_X1000_ILB:
375 sch->resume_base = 2;
383 girq = &sch->chip.irq;
384 gpio_irq_chip_set_chip(girq, &sch_irqchip);
385 girq->num_parents = 0;
386 girq->parents = NULL;
387 girq->parent_handler = NULL;
388 girq->default_type = IRQ_TYPE_NONE;
389 girq->handler = handle_bad_irq;
391 /* GPE setup is optional */
392 sch->gpe = GPE0E_GPIO;
393 sch->gpe_handler = sch_gpio_gpe_handler;
395 ret = sch_gpio_install_gpe_handler(sch);
397 dev_warn(&pdev->dev, "Can't setup GPE, no IRQ support\n");
399 return devm_gpiochip_add_data(&pdev->dev, &sch->chip, sch);
402 static struct platform_driver sch_gpio_driver = {
406 .probe = sch_gpio_probe,
409 module_platform_driver(sch_gpio_driver);
411 MODULE_AUTHOR("Denis Turischev <denis@compulab.co.il>");
412 MODULE_DESCRIPTION("GPIO interface for Intel Poulsbo SCH");
413 MODULE_LICENSE("GPL v2");
414 MODULE_ALIAS("platform:sch_gpio");