1 // SPDX-License-Identifier: GPL-2.0-only OR BSD-3-Clause
2 /* Copyright (C) 2022 NVIDIA CORPORATION & AFFILIATES */
4 #include <linux/bitfield.h>
5 #include <linux/bitops.h>
6 #include <linux/device.h>
8 #include <linux/gpio/driver.h>
9 #include <linux/interrupt.h>
11 #include <linux/module.h>
12 #include <linux/platform_device.h>
13 #include <linux/spinlock.h>
14 #include <linux/types.h>
17 * There are 2 YU GPIO blocks:
18 * gpio[0]: HOST_GPIO0->HOST_GPIO31
19 * gpio[1]: HOST_GPIO32->HOST_GPIO55
21 #define MLXBF3_GPIO_MAX_PINS_PER_BLOCK 32
22 #define MLXBF3_GPIO_MAX_PINS_BLOCK0 32
23 #define MLXBF3_GPIO_MAX_PINS_BLOCK1 24
26 * fw_gpio[x] block registers and their offset
28 #define MLXBF_GPIO_FW_OUTPUT_ENABLE_SET 0x00
29 #define MLXBF_GPIO_FW_DATA_OUT_SET 0x04
31 #define MLXBF_GPIO_FW_OUTPUT_ENABLE_CLEAR 0x00
32 #define MLXBF_GPIO_FW_DATA_OUT_CLEAR 0x04
34 #define MLXBF_GPIO_CAUSE_RISE_EN 0x00
35 #define MLXBF_GPIO_CAUSE_FALL_EN 0x04
36 #define MLXBF_GPIO_READ_DATA_IN 0x08
38 #define MLXBF_GPIO_CAUSE_OR_CAUSE_EVTEN0 0x00
39 #define MLXBF_GPIO_CAUSE_OR_EVTEN0 0x14
40 #define MLXBF_GPIO_CAUSE_OR_CLRCAUSE 0x18
42 struct mlxbf3_gpio_context {
45 /* YU GPIO block address */
46 void __iomem *gpio_set_io;
47 void __iomem *gpio_clr_io;
48 void __iomem *gpio_io;
50 /* YU GPIO cause block address */
51 void __iomem *gpio_cause_io;
54 static void mlxbf3_gpio_irq_enable(struct irq_data *irqd)
56 struct gpio_chip *gc = irq_data_get_irq_chip_data(irqd);
57 struct mlxbf3_gpio_context *gs = gpiochip_get_data(gc);
58 irq_hw_number_t offset = irqd_to_hwirq(irqd);
62 gpiochip_enable_irq(gc, offset);
64 raw_spin_lock_irqsave(&gs->gc.bgpio_lock, flags);
65 writel(BIT(offset), gs->gpio_cause_io + MLXBF_GPIO_CAUSE_OR_CLRCAUSE);
67 val = readl(gs->gpio_cause_io + MLXBF_GPIO_CAUSE_OR_EVTEN0);
69 writel(val, gs->gpio_cause_io + MLXBF_GPIO_CAUSE_OR_EVTEN0);
70 raw_spin_unlock_irqrestore(&gs->gc.bgpio_lock, flags);
73 static void mlxbf3_gpio_irq_disable(struct irq_data *irqd)
75 struct gpio_chip *gc = irq_data_get_irq_chip_data(irqd);
76 struct mlxbf3_gpio_context *gs = gpiochip_get_data(gc);
77 irq_hw_number_t offset = irqd_to_hwirq(irqd);
81 raw_spin_lock_irqsave(&gs->gc.bgpio_lock, flags);
82 val = readl(gs->gpio_cause_io + MLXBF_GPIO_CAUSE_OR_EVTEN0);
84 writel(val, gs->gpio_cause_io + MLXBF_GPIO_CAUSE_OR_EVTEN0);
85 raw_spin_unlock_irqrestore(&gs->gc.bgpio_lock, flags);
87 gpiochip_disable_irq(gc, offset);
90 static irqreturn_t mlxbf3_gpio_irq_handler(int irq, void *ptr)
92 struct mlxbf3_gpio_context *gs = ptr;
93 struct gpio_chip *gc = &gs->gc;
94 unsigned long pending;
97 pending = readl(gs->gpio_cause_io + MLXBF_GPIO_CAUSE_OR_CAUSE_EVTEN0);
98 writel(pending, gs->gpio_cause_io + MLXBF_GPIO_CAUSE_OR_CLRCAUSE);
100 for_each_set_bit(level, &pending, gc->ngpio)
101 generic_handle_domain_irq(gc->irq.domain, level);
103 return IRQ_RETVAL(pending);
107 mlxbf3_gpio_irq_set_type(struct irq_data *irqd, unsigned int type)
109 struct gpio_chip *gc = irq_data_get_irq_chip_data(irqd);
110 struct mlxbf3_gpio_context *gs = gpiochip_get_data(gc);
111 irq_hw_number_t offset = irqd_to_hwirq(irqd);
115 raw_spin_lock_irqsave(&gs->gc.bgpio_lock, flags);
117 switch (type & IRQ_TYPE_SENSE_MASK) {
118 case IRQ_TYPE_EDGE_BOTH:
119 val = readl(gs->gpio_io + MLXBF_GPIO_CAUSE_FALL_EN);
121 writel(val, gs->gpio_io + MLXBF_GPIO_CAUSE_FALL_EN);
122 val = readl(gs->gpio_io + MLXBF_GPIO_CAUSE_RISE_EN);
124 writel(val, gs->gpio_io + MLXBF_GPIO_CAUSE_RISE_EN);
126 case IRQ_TYPE_EDGE_RISING:
127 val = readl(gs->gpio_io + MLXBF_GPIO_CAUSE_RISE_EN);
129 writel(val, gs->gpio_io + MLXBF_GPIO_CAUSE_RISE_EN);
131 case IRQ_TYPE_EDGE_FALLING:
132 val = readl(gs->gpio_io + MLXBF_GPIO_CAUSE_FALL_EN);
134 writel(val, gs->gpio_io + MLXBF_GPIO_CAUSE_FALL_EN);
137 raw_spin_unlock_irqrestore(&gs->gc.bgpio_lock, flags);
141 raw_spin_unlock_irqrestore(&gs->gc.bgpio_lock, flags);
143 irq_set_handler_locked(irqd, handle_edge_irq);
148 /* This function needs to be defined for handle_edge_irq() */
149 static void mlxbf3_gpio_irq_ack(struct irq_data *data)
153 static const struct irq_chip gpio_mlxbf3_irqchip = {
155 .irq_ack = mlxbf3_gpio_irq_ack,
156 .irq_set_type = mlxbf3_gpio_irq_set_type,
157 .irq_enable = mlxbf3_gpio_irq_enable,
158 .irq_disable = mlxbf3_gpio_irq_disable,
159 .flags = IRQCHIP_IMMUTABLE,
160 GPIOCHIP_IRQ_RESOURCE_HELPERS,
163 static int mlxbf3_gpio_add_pin_ranges(struct gpio_chip *chip)
167 switch(chip->ngpio) {
168 case MLXBF3_GPIO_MAX_PINS_BLOCK0:
171 case MLXBF3_GPIO_MAX_PINS_BLOCK1:
178 return gpiochip_add_pin_range(chip, "MLNXBF34:00",
179 chip->base, id * MLXBF3_GPIO_MAX_PINS_PER_BLOCK,
183 static int mlxbf3_gpio_probe(struct platform_device *pdev)
185 struct device *dev = &pdev->dev;
186 struct mlxbf3_gpio_context *gs;
187 struct gpio_irq_chip *girq;
188 struct gpio_chip *gc;
191 gs = devm_kzalloc(dev, sizeof(*gs), GFP_KERNEL);
195 gs->gpio_io = devm_platform_ioremap_resource(pdev, 0);
196 if (IS_ERR(gs->gpio_io))
197 return PTR_ERR(gs->gpio_io);
199 gs->gpio_cause_io = devm_platform_ioremap_resource(pdev, 1);
200 if (IS_ERR(gs->gpio_cause_io))
201 return PTR_ERR(gs->gpio_cause_io);
203 gs->gpio_set_io = devm_platform_ioremap_resource(pdev, 2);
204 if (IS_ERR(gs->gpio_set_io))
205 return PTR_ERR(gs->gpio_set_io);
207 gs->gpio_clr_io = devm_platform_ioremap_resource(pdev, 3);
208 if (IS_ERR(gs->gpio_clr_io))
209 return PTR_ERR(gs->gpio_clr_io);
212 ret = bgpio_init(gc, dev, 4,
213 gs->gpio_io + MLXBF_GPIO_READ_DATA_IN,
214 gs->gpio_set_io + MLXBF_GPIO_FW_DATA_OUT_SET,
215 gs->gpio_clr_io + MLXBF_GPIO_FW_DATA_OUT_CLEAR,
216 gs->gpio_set_io + MLXBF_GPIO_FW_OUTPUT_ENABLE_SET,
217 gs->gpio_clr_io + MLXBF_GPIO_FW_OUTPUT_ENABLE_CLEAR, 0);
219 gc->request = gpiochip_generic_request;
220 gc->free = gpiochip_generic_free;
221 gc->owner = THIS_MODULE;
222 gc->add_pin_ranges = mlxbf3_gpio_add_pin_ranges;
224 irq = platform_get_irq(pdev, 0);
227 gpio_irq_chip_set_chip(girq, &gpio_mlxbf3_irqchip);
228 girq->default_type = IRQ_TYPE_NONE;
229 /* This will let us handle the parent IRQ in the driver */
230 girq->num_parents = 0;
231 girq->parents = NULL;
232 girq->parent_handler = NULL;
233 girq->handler = handle_bad_irq;
236 * Directly request the irq here instead of passing
237 * a flow-handler because the irq is shared.
239 ret = devm_request_irq(dev, irq, mlxbf3_gpio_irq_handler,
240 IRQF_SHARED, dev_name(dev), gs);
242 return dev_err_probe(dev, ret, "failed to request IRQ");
245 platform_set_drvdata(pdev, gs);
247 ret = devm_gpiochip_add_data(dev, &gs->gc, gs);
249 dev_err_probe(dev, ret, "Failed adding memory mapped gpiochip\n");
254 static const struct acpi_device_id mlxbf3_gpio_acpi_match[] = {
258 MODULE_DEVICE_TABLE(acpi, mlxbf3_gpio_acpi_match);
260 static struct platform_driver mlxbf3_gpio_driver = {
262 .name = "mlxbf3_gpio",
263 .acpi_match_table = mlxbf3_gpio_acpi_match,
265 .probe = mlxbf3_gpio_probe,
267 module_platform_driver(mlxbf3_gpio_driver);
269 MODULE_SOFTDEP("pre: pinctrl-mlxbf3");
270 MODULE_DESCRIPTION("NVIDIA BlueField-3 GPIO Driver");
271 MODULE_AUTHOR("Asmaa Mnebhi <asmaa@nvidia.com>");
272 MODULE_LICENSE("Dual BSD/GPL");