2 * Broadcom specific AMBA
5 * Copyright 2011, Broadcom Corporation
6 * Copyright 2012, Hauke Mehrtens <hauke@hauke-m.de>
8 * Licensed under the GNU/GPL. See COPYING for details.
11 #include <linux/gpio/driver.h>
12 #include <linux/interrupt.h>
13 #include <linux/export.h>
14 #include <linux/property.h>
16 #include <linux/bcma/bcma.h>
18 #include "bcma_private.h"
20 #define BCMA_GPIO_MAX_PINS 32
22 static int bcma_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
24 struct bcma_drv_cc *cc = gpiochip_get_data(chip);
26 return !!bcma_chipco_gpio_in(cc, 1 << gpio);
29 static void bcma_gpio_set_value(struct gpio_chip *chip, unsigned gpio,
32 struct bcma_drv_cc *cc = gpiochip_get_data(chip);
34 bcma_chipco_gpio_out(cc, 1 << gpio, value ? 1 << gpio : 0);
37 static int bcma_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
39 struct bcma_drv_cc *cc = gpiochip_get_data(chip);
41 bcma_chipco_gpio_outen(cc, 1 << gpio, 0);
45 static int bcma_gpio_direction_output(struct gpio_chip *chip, unsigned gpio,
48 struct bcma_drv_cc *cc = gpiochip_get_data(chip);
50 bcma_chipco_gpio_outen(cc, 1 << gpio, 1 << gpio);
51 bcma_chipco_gpio_out(cc, 1 << gpio, value ? 1 << gpio : 0);
55 static int bcma_gpio_request(struct gpio_chip *chip, unsigned gpio)
57 struct bcma_drv_cc *cc = gpiochip_get_data(chip);
59 bcma_chipco_gpio_control(cc, 1 << gpio, 0);
61 bcma_chipco_gpio_pulldown(cc, 1 << gpio, 0);
63 bcma_chipco_gpio_pullup(cc, 1 << gpio, 1 << gpio);
68 static void bcma_gpio_free(struct gpio_chip *chip, unsigned gpio)
70 struct bcma_drv_cc *cc = gpiochip_get_data(chip);
73 bcma_chipco_gpio_pullup(cc, 1 << gpio, 0);
76 #if IS_BUILTIN(CONFIG_BCM47XX) || IS_BUILTIN(CONFIG_ARCH_BCM_5301X)
78 static void bcma_gpio_irq_unmask(struct irq_data *d)
80 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
81 struct bcma_drv_cc *cc = gpiochip_get_data(gc);
82 int gpio = irqd_to_hwirq(d);
83 u32 val = bcma_chipco_gpio_in(cc, BIT(gpio));
85 bcma_chipco_gpio_polarity(cc, BIT(gpio), val);
86 bcma_chipco_gpio_intmask(cc, BIT(gpio), BIT(gpio));
89 static void bcma_gpio_irq_mask(struct irq_data *d)
91 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
92 struct bcma_drv_cc *cc = gpiochip_get_data(gc);
93 int gpio = irqd_to_hwirq(d);
95 bcma_chipco_gpio_intmask(cc, BIT(gpio), 0);
98 static struct irq_chip bcma_gpio_irq_chip = {
100 .irq_mask = bcma_gpio_irq_mask,
101 .irq_unmask = bcma_gpio_irq_unmask,
104 static irqreturn_t bcma_gpio_irq_handler(int irq, void *dev_id)
106 struct bcma_drv_cc *cc = dev_id;
107 struct gpio_chip *gc = &cc->gpio;
108 u32 val = bcma_cc_read32(cc, BCMA_CC_GPIOIN);
109 u32 mask = bcma_cc_read32(cc, BCMA_CC_GPIOIRQ);
110 u32 pol = bcma_cc_read32(cc, BCMA_CC_GPIOPOL);
111 unsigned long irqs = (val ^ pol) & mask;
117 for_each_set_bit(gpio, &irqs, gc->ngpio)
118 generic_handle_irq(irq_find_mapping(gc->irq.domain, gpio));
119 bcma_chipco_gpio_polarity(cc, irqs, val & irqs);
124 static int bcma_gpio_irq_init(struct bcma_drv_cc *cc)
126 struct gpio_chip *chip = &cc->gpio;
127 struct gpio_irq_chip *girq = &chip->irq;
130 if (cc->core->bus->hosttype != BCMA_HOSTTYPE_SOC)
133 hwirq = bcma_core_irq(cc->core, 0);
134 err = request_irq(hwirq, bcma_gpio_irq_handler, IRQF_SHARED, "gpio",
139 bcma_chipco_gpio_intmask(cc, ~0, 0);
140 bcma_cc_set32(cc, BCMA_CC_IRQMASK, BCMA_CC_IRQ_GPIO);
142 girq->chip = &bcma_gpio_irq_chip;
143 /* This will let us handle the parent IRQ in the driver */
144 girq->parent_handler = NULL;
145 girq->num_parents = 0;
146 girq->parents = NULL;
147 girq->default_type = IRQ_TYPE_NONE;
148 girq->handler = handle_simple_irq;
153 static void bcma_gpio_irq_exit(struct bcma_drv_cc *cc)
155 if (cc->core->bus->hosttype != BCMA_HOSTTYPE_SOC)
158 bcma_cc_mask32(cc, BCMA_CC_IRQMASK, ~BCMA_CC_IRQ_GPIO);
159 free_irq(bcma_core_irq(cc->core, 0), cc);
162 static int bcma_gpio_irq_init(struct bcma_drv_cc *cc)
167 static void bcma_gpio_irq_exit(struct bcma_drv_cc *cc)
172 int bcma_gpio_init(struct bcma_drv_cc *cc)
174 struct bcma_bus *bus = cc->core->bus;
175 struct gpio_chip *chip = &cc->gpio;
178 chip->label = "bcma_gpio";
179 chip->owner = THIS_MODULE;
180 chip->request = bcma_gpio_request;
181 chip->free = bcma_gpio_free;
182 chip->get = bcma_gpio_get_value;
183 chip->set = bcma_gpio_set_value;
184 chip->direction_input = bcma_gpio_direction_input;
185 chip->direction_output = bcma_gpio_direction_output;
186 chip->parent = bus->dev;
187 chip->fwnode = dev_fwnode(&cc->core->dev);
189 switch (bus->chipinfo.id) {
190 case BCMA_CHIP_ID_BCM4707:
191 case BCMA_CHIP_ID_BCM5357:
192 case BCMA_CHIP_ID_BCM53572:
193 case BCMA_CHIP_ID_BCM53573:
194 case BCMA_CHIP_ID_BCM47094:
202 * Register SoC GPIO devices with absolute GPIO pin base.
203 * On MIPS, we don't have Device Tree and we can't use relative (per chip)
205 * On some ARM devices, user space may want to access some system GPIO
206 * pins directly, which is easier to do with a predictable GPIO base.
208 if (IS_BUILTIN(CONFIG_BCM47XX) ||
209 cc->core->bus->hosttype == BCMA_HOSTTYPE_SOC)
210 chip->base = bus->num * BCMA_GPIO_MAX_PINS;
214 err = bcma_gpio_irq_init(cc);
218 err = gpiochip_add_data(chip, cc);
220 bcma_gpio_irq_exit(cc);
227 int bcma_gpio_unregister(struct bcma_drv_cc *cc)
229 bcma_gpio_irq_exit(cc);
230 gpiochip_remove(&cc->gpio);