blob: 72f4dd2466e119466735294cb3cb16708d7c6bd8 [file] [log] [blame]
Joey Goulya0f160f2021-10-26 18:58:14 +01001// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Apple SoC pinctrl+GPIO+external IRQ driver
4 *
5 * Copyright (C) The Asahi Linux Contributors
6 * Copyright (C) 2020 Corellium LLC
7 *
8 * Based on: pinctrl-pistachio.c
9 * Copyright (C) 2014 Imagination Technologies Ltd.
10 * Copyright (C) 2014 Google, Inc.
11 */
12
13#include <dt-bindings/pinctrl/apple.h>
Joey Gouly7c06f082021-11-21 16:56:35 +000014#include <linux/bits.h>
Joey Goulya0f160f2021-10-26 18:58:14 +010015#include <linux/gpio/driver.h>
16#include <linux/interrupt.h>
17#include <linux/irq.h>
18#include <linux/module.h>
19#include <linux/of.h>
20#include <linux/of_irq.h>
21#include <linux/pinctrl/pinctrl.h>
22#include <linux/pinctrl/pinmux.h>
23#include <linux/platform_device.h>
24#include <linux/regmap.h>
25
26#include "pinctrl-utils.h"
27#include "core.h"
28#include "pinmux.h"
29
30struct apple_gpio_pinctrl {
31 struct device *dev;
32 struct pinctrl_dev *pctldev;
33
34 void __iomem *base;
35 struct regmap *map;
36
37 struct pinctrl_desc pinctrl_desc;
38 struct gpio_chip gpio_chip;
39 struct irq_chip irq_chip;
kernel test robotf3e3e632021-11-27 19:01:04 +010040 u8 irqgrps[];
Joey Goulya0f160f2021-10-26 18:58:14 +010041};
42
43#define REG_GPIO(x) (4 * (x))
44#define REG_GPIOx_DATA BIT(0)
45#define REG_GPIOx_MODE GENMASK(3, 1)
46#define REG_GPIOx_OUT 1
47#define REG_GPIOx_IN_IRQ_HI 2
48#define REG_GPIOx_IN_IRQ_LO 3
49#define REG_GPIOx_IN_IRQ_UP 4
50#define REG_GPIOx_IN_IRQ_DN 5
51#define REG_GPIOx_IN_IRQ_ANY 6
52#define REG_GPIOx_IN_IRQ_OFF 7
53#define REG_GPIOx_PERIPH GENMASK(6, 5)
54#define REG_GPIOx_PULL GENMASK(8, 7)
55#define REG_GPIOx_PULL_OFF 0
56#define REG_GPIOx_PULL_DOWN 1
57#define REG_GPIOx_PULL_UP_STRONG 2
58#define REG_GPIOx_PULL_UP 3
59#define REG_GPIOx_INPUT_ENABLE BIT(9)
60#define REG_GPIOx_DRIVE_STRENGTH0 GENMASK(11, 10)
61#define REG_GPIOx_SCHMITT BIT(15)
62#define REG_GPIOx_GRP GENMASK(18, 16)
63#define REG_GPIOx_LOCK BIT(21)
64#define REG_GPIOx_DRIVE_STRENGTH1 GENMASK(23, 22)
65#define REG_IRQ(g, x) (0x800 + 0x40 * (g) + 4 * ((x) >> 5))
66
67struct regmap_config regmap_config = {
68 .reg_bits = 32,
69 .val_bits = 32,
70 .reg_stride = 4,
71 .cache_type = REGCACHE_FLAT,
72 .max_register = 512 * sizeof(u32),
73 .num_reg_defaults_raw = 512,
Joey Gouly5ad69732021-11-21 16:56:33 +000074 .use_relaxed_mmio = true,
Joey Goulya0f160f2021-10-26 18:58:14 +010075};
76
Joey Gouly67a6c282021-11-21 16:56:34 +000077/* No locking needed to mask/unmask IRQs as the interrupt mode is per pin-register. */
Joey Goulya0f160f2021-10-26 18:58:14 +010078static void apple_gpio_set_reg(struct apple_gpio_pinctrl *pctl,
Joey Gouly361856d2021-11-21 16:56:32 +000079 unsigned int pin, u32 mask, u32 value)
Joey Goulya0f160f2021-10-26 18:58:14 +010080{
81 regmap_update_bits(pctl->map, REG_GPIO(pin), mask, value);
82}
83
Joey Gouly3605f102021-11-21 16:56:36 +000084static u32 apple_gpio_get_reg(struct apple_gpio_pinctrl *pctl,
Joey Gouly361856d2021-11-21 16:56:32 +000085 unsigned int pin)
Joey Goulya0f160f2021-10-26 18:58:14 +010086{
Joey Gouly3605f102021-11-21 16:56:36 +000087 int ret;
88 u32 val;
Joey Goulya0f160f2021-10-26 18:58:14 +010089
Joey Gouly3605f102021-11-21 16:56:36 +000090 ret = regmap_read(pctl->map, REG_GPIO(pin), &val);
91 if (ret)
92 return 0;
93
Joey Goulya0f160f2021-10-26 18:58:14 +010094 return val;
95}
96
97/* Pin controller functions */
98
99static int apple_gpio_dt_node_to_map(struct pinctrl_dev *pctldev,
Joey Gouly361856d2021-11-21 16:56:32 +0000100 struct device_node *node,
101 struct pinctrl_map **map,
102 unsigned *num_maps)
Joey Goulya0f160f2021-10-26 18:58:14 +0100103{
104 unsigned reserved_maps;
105 struct apple_gpio_pinctrl *pctl;
106 u32 pinfunc, pin, func;
107 int num_pins, i, ret;
108 const char *group_name;
109 const char *function_name;
110
111 *map = NULL;
112 *num_maps = 0;
113 reserved_maps = 0;
114
115 pctl = pinctrl_dev_get_drvdata(pctldev);
116
117 ret = of_property_count_u32_elems(node, "pinmux");
118 if (ret <= 0) {
119 dev_err(pctl->dev,
120 "missing or empty pinmux property in node %pOFn.\n",
121 node);
Joey Gouly839930c2021-11-21 16:56:42 +0000122 return ret ? ret : -EINVAL;
Joey Goulya0f160f2021-10-26 18:58:14 +0100123 }
124
125 num_pins = ret;
126
Joey Gouly361856d2021-11-21 16:56:32 +0000127 ret = pinctrl_utils_reserve_map(pctldev, map, &reserved_maps, num_maps, num_pins);
Joey Goulya0f160f2021-10-26 18:58:14 +0100128 if (ret)
129 return ret;
130
131 for (i = 0; i < num_pins; i++) {
132 ret = of_property_read_u32_index(node, "pinmux", i, &pinfunc);
133 if (ret)
134 goto free_map;
135
136 pin = APPLE_PIN(pinfunc);
137 func = APPLE_FUNC(pinfunc);
138
139 if (func >= pinmux_generic_get_function_count(pctldev)) {
140 ret = -EINVAL;
141 goto free_map;
142 }
143
144 group_name = pinctrl_generic_get_group_name(pctldev, pin);
Joey Gouly361856d2021-11-21 16:56:32 +0000145 function_name = pinmux_generic_get_function_name(pctl->pctldev, func);
Joey Goulya0f160f2021-10-26 18:58:14 +0100146 ret = pinctrl_utils_add_map_mux(pctl->pctldev, map,
Joey Gouly361856d2021-11-21 16:56:32 +0000147 &reserved_maps, num_maps,
148 group_name, function_name);
Joey Goulya0f160f2021-10-26 18:58:14 +0100149 if (ret)
150 goto free_map;
151 }
152
153free_map:
154 if (ret < 0)
155 pinctrl_utils_free_map(pctldev, *map, *num_maps);
156
157 return ret;
158}
159
160static const struct pinctrl_ops apple_gpio_pinctrl_ops = {
161 .get_groups_count = pinctrl_generic_get_group_count,
162 .get_group_name = pinctrl_generic_get_group_name,
163 .get_group_pins = pinctrl_generic_get_group_pins,
164 .dt_node_to_map = apple_gpio_dt_node_to_map,
165 .dt_free_map = pinctrl_utils_free_map,
166};
167
168/* Pin multiplexer functions */
169
170static int apple_gpio_pinmux_set(struct pinctrl_dev *pctldev, unsigned func,
Joey Gouly361856d2021-11-21 16:56:32 +0000171 unsigned group)
Joey Goulya0f160f2021-10-26 18:58:14 +0100172{
173 struct apple_gpio_pinctrl *pctl = pinctrl_dev_get_drvdata(pctldev);
174
175 apple_gpio_set_reg(
176 pctl, group, REG_GPIOx_PERIPH | REG_GPIOx_INPUT_ENABLE,
177 FIELD_PREP(REG_GPIOx_PERIPH, func) | REG_GPIOx_INPUT_ENABLE);
178
179 return 0;
180}
181
182static const struct pinmux_ops apple_gpio_pinmux_ops = {
183 .get_functions_count = pinmux_generic_get_function_count,
184 .get_function_name = pinmux_generic_get_function_name,
185 .get_function_groups = pinmux_generic_get_function_groups,
186 .set_mux = apple_gpio_pinmux_set,
187 .strict = true,
188};
189
190/* GPIO chip functions */
191
Joey Gouly361856d2021-11-21 16:56:32 +0000192static int apple_gpio_get_direction(struct gpio_chip *chip, unsigned int offset)
Joey Goulya0f160f2021-10-26 18:58:14 +0100193{
194 struct apple_gpio_pinctrl *pctl = gpiochip_get_data(chip);
195 unsigned int reg = apple_gpio_get_reg(pctl, offset);
196
Joey Gouly7d264912021-11-21 16:56:37 +0000197 if (FIELD_GET(REG_GPIOx_MODE, reg) == REG_GPIOx_OUT)
198 return GPIO_LINE_DIRECTION_OUT;
199 return GPIO_LINE_DIRECTION_IN;
Joey Goulya0f160f2021-10-26 18:58:14 +0100200}
201
202static int apple_gpio_get(struct gpio_chip *chip, unsigned offset)
203{
204 struct apple_gpio_pinctrl *pctl = gpiochip_get_data(chip);
205 unsigned int reg = apple_gpio_get_reg(pctl, offset);
206
207 /*
208 * If this is an input GPIO, read the actual value (not the
209 * cached regmap value)
210 */
211 if (FIELD_GET(REG_GPIOx_MODE, reg) != REG_GPIOx_OUT)
212 reg = readl_relaxed(pctl->base + REG_GPIO(offset));
213
214 return !!(reg & REG_GPIOx_DATA);
215}
216
Joey Gouly361856d2021-11-21 16:56:32 +0000217static void apple_gpio_set(struct gpio_chip *chip, unsigned int offset, int value)
Joey Goulya0f160f2021-10-26 18:58:14 +0100218{
219 struct apple_gpio_pinctrl *pctl = gpiochip_get_data(chip);
220
Joey Gouly361856d2021-11-21 16:56:32 +0000221 apple_gpio_set_reg(pctl, offset, REG_GPIOx_DATA, value ? REG_GPIOx_DATA : 0);
Joey Goulya0f160f2021-10-26 18:58:14 +0100222}
223
Joey Gouly361856d2021-11-21 16:56:32 +0000224static int apple_gpio_direction_input(struct gpio_chip *chip, unsigned int offset)
Joey Goulya0f160f2021-10-26 18:58:14 +0100225{
226 struct apple_gpio_pinctrl *pctl = gpiochip_get_data(chip);
227
228 apple_gpio_set_reg(pctl, offset,
229 REG_GPIOx_PERIPH | REG_GPIOx_MODE | REG_GPIOx_DATA |
230 REG_GPIOx_INPUT_ENABLE,
231 FIELD_PREP(REG_GPIOx_MODE, REG_GPIOx_IN_IRQ_OFF) |
232 REG_GPIOx_INPUT_ENABLE);
233 return 0;
234}
235
236static int apple_gpio_direction_output(struct gpio_chip *chip,
Joey Gouly361856d2021-11-21 16:56:32 +0000237 unsigned int offset, int value)
Joey Goulya0f160f2021-10-26 18:58:14 +0100238{
239 struct apple_gpio_pinctrl *pctl = gpiochip_get_data(chip);
240
241 apple_gpio_set_reg(pctl, offset,
242 REG_GPIOx_PERIPH | REG_GPIOx_MODE | REG_GPIOx_DATA,
243 FIELD_PREP(REG_GPIOx_MODE, REG_GPIOx_OUT) |
244 (value ? REG_GPIOx_DATA : 0));
245 return 0;
246}
247
248/* IRQ chip functions */
249
250static void apple_gpio_irq_ack(struct irq_data *data)
251{
Joey Gouly361856d2021-11-21 16:56:32 +0000252 struct apple_gpio_pinctrl *pctl = gpiochip_get_data(irq_data_get_irq_chip_data(data));
253 unsigned int irqgrp = FIELD_GET(REG_GPIOx_GRP, apple_gpio_get_reg(pctl, data->hwirq));
Joey Goulya0f160f2021-10-26 18:58:14 +0100254
Joey Gouly077db342021-11-21 16:56:41 +0000255 writel(BIT(data->hwirq % 32), pctl->base + REG_IRQ(irqgrp, data->hwirq));
Joey Goulya0f160f2021-10-26 18:58:14 +0100256}
257
Sven Peter9b3b94e2021-11-01 16:06:40 +0100258static unsigned int apple_gpio_irq_type(unsigned int type)
Joey Goulya0f160f2021-10-26 18:58:14 +0100259{
260 switch (type & IRQ_TYPE_SENSE_MASK) {
261 case IRQ_TYPE_EDGE_RISING:
262 return REG_GPIOx_IN_IRQ_UP;
263 case IRQ_TYPE_EDGE_FALLING:
264 return REG_GPIOx_IN_IRQ_DN;
265 case IRQ_TYPE_EDGE_BOTH:
266 return REG_GPIOx_IN_IRQ_ANY;
267 case IRQ_TYPE_LEVEL_HIGH:
268 return REG_GPIOx_IN_IRQ_HI;
269 case IRQ_TYPE_LEVEL_LOW:
270 return REG_GPIOx_IN_IRQ_LO;
271 default:
Sven Peter9b3b94e2021-11-01 16:06:40 +0100272 return REG_GPIOx_IN_IRQ_OFF;
Joey Goulya0f160f2021-10-26 18:58:14 +0100273 }
274}
275
276static void apple_gpio_irq_mask(struct irq_data *data)
277{
Joey Gouly361856d2021-11-21 16:56:32 +0000278 struct apple_gpio_pinctrl *pctl = gpiochip_get_data(irq_data_get_irq_chip_data(data));
279
Joey Goulya0f160f2021-10-26 18:58:14 +0100280 apple_gpio_set_reg(pctl, data->hwirq, REG_GPIOx_MODE,
Joey Gouly361856d2021-11-21 16:56:32 +0000281 FIELD_PREP(REG_GPIOx_MODE, REG_GPIOx_IN_IRQ_OFF));
Joey Goulya0f160f2021-10-26 18:58:14 +0100282}
283
284static void apple_gpio_irq_unmask(struct irq_data *data)
285{
Joey Gouly361856d2021-11-21 16:56:32 +0000286 struct apple_gpio_pinctrl *pctl = gpiochip_get_data(irq_data_get_irq_chip_data(data));
Sven Peter9b3b94e2021-11-01 16:06:40 +0100287 unsigned int irqtype = apple_gpio_irq_type(irqd_get_trigger_type(data));
Joey Goulya0f160f2021-10-26 18:58:14 +0100288
289 apple_gpio_set_reg(pctl, data->hwirq, REG_GPIOx_MODE,
Joey Gouly361856d2021-11-21 16:56:32 +0000290 FIELD_PREP(REG_GPIOx_MODE, irqtype));
Joey Goulya0f160f2021-10-26 18:58:14 +0100291}
292
293static unsigned int apple_gpio_irq_startup(struct irq_data *data)
294{
295 struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
296 struct apple_gpio_pinctrl *pctl = gpiochip_get_data(chip);
297
298 apple_gpio_set_reg(pctl, data->hwirq, REG_GPIOx_GRP,
Joey Gouly361856d2021-11-21 16:56:32 +0000299 FIELD_PREP(REG_GPIOx_GRP, 0));
Joey Goulya0f160f2021-10-26 18:58:14 +0100300
301 apple_gpio_direction_input(chip, data->hwirq);
302 apple_gpio_irq_unmask(data);
303
304 return 0;
305}
306
Joey Gouly361856d2021-11-21 16:56:32 +0000307static int apple_gpio_irq_set_type(struct irq_data *data, unsigned int type)
Joey Goulya0f160f2021-10-26 18:58:14 +0100308{
Joey Gouly361856d2021-11-21 16:56:32 +0000309 struct apple_gpio_pinctrl *pctl = gpiochip_get_data(irq_data_get_irq_chip_data(data));
Sven Peter9b3b94e2021-11-01 16:06:40 +0100310 unsigned int irqtype = apple_gpio_irq_type(type);
Joey Goulya0f160f2021-10-26 18:58:14 +0100311
Sven Peter9b3b94e2021-11-01 16:06:40 +0100312 if (irqtype == REG_GPIOx_IN_IRQ_OFF)
313 return -EINVAL;
Joey Goulya0f160f2021-10-26 18:58:14 +0100314
315 apple_gpio_set_reg(pctl, data->hwirq, REG_GPIOx_MODE,
Joey Gouly361856d2021-11-21 16:56:32 +0000316 FIELD_PREP(REG_GPIOx_MODE, irqtype));
Joey Goulya0f160f2021-10-26 18:58:14 +0100317
318 if (type & IRQ_TYPE_LEVEL_MASK)
319 irq_set_handler_locked(data, handle_level_irq);
320 else
321 irq_set_handler_locked(data, handle_edge_irq);
322 return 0;
323}
324
325static void apple_gpio_irq_handler(struct irq_desc *desc)
326{
327 struct irq_chip *chip = irq_desc_get_chip(desc);
328 u8 *grpp = irq_desc_get_handler_data(desc);
329 struct apple_gpio_pinctrl *pctl;
330 unsigned int pinh, pinl;
331 unsigned long pending;
332 struct gpio_chip *gc;
333
334 pctl = container_of(grpp - *grpp, typeof(*pctl), irqgrps[0]);
335 gc = &pctl->gpio_chip;
336
337 chained_irq_enter(chip, desc);
338 for (pinh = 0; pinh < gc->ngpio; pinh += 32) {
339 pending = readl_relaxed(pctl->base + REG_IRQ(*grpp, pinh));
340 for_each_set_bit(pinl, &pending, 32)
341 generic_handle_domain_irq(gc->irq.domain, pinh + pinl);
342 }
343 chained_irq_exit(chip, desc);
344}
345
346static struct irq_chip apple_gpio_irqchip = {
347 .name = "Apple-GPIO",
348 .irq_startup = apple_gpio_irq_startup,
349 .irq_ack = apple_gpio_irq_ack,
350 .irq_mask = apple_gpio_irq_mask,
351 .irq_unmask = apple_gpio_irq_unmask,
352 .irq_set_type = apple_gpio_irq_set_type,
353};
354
355/* Probe & register */
356
357static int apple_gpio_register(struct apple_gpio_pinctrl *pctl)
358{
359 struct gpio_irq_chip *girq = &pctl->gpio_chip.irq;
360 void **irq_data = NULL;
361 int ret;
362
Joey Goulya0f160f2021-10-26 18:58:14 +0100363 pctl->irq_chip = apple_gpio_irqchip;
364
365 pctl->gpio_chip.label = dev_name(pctl->dev);
366 pctl->gpio_chip.request = gpiochip_generic_request;
367 pctl->gpio_chip.free = gpiochip_generic_free;
368 pctl->gpio_chip.get_direction = apple_gpio_get_direction;
369 pctl->gpio_chip.direction_input = apple_gpio_direction_input;
370 pctl->gpio_chip.direction_output = apple_gpio_direction_output;
371 pctl->gpio_chip.get = apple_gpio_get;
372 pctl->gpio_chip.set = apple_gpio_set;
373 pctl->gpio_chip.base = -1;
374 pctl->gpio_chip.ngpio = pctl->pinctrl_desc.npins;
375 pctl->gpio_chip.parent = pctl->dev;
Joey Goulya0f160f2021-10-26 18:58:14 +0100376
377 if (girq->num_parents) {
378 int i;
379
380 girq->chip = &pctl->irq_chip;
381 girq->parent_handler = apple_gpio_irq_handler;
382
383 girq->parents = kmalloc_array(girq->num_parents,
384 sizeof(*girq->parents),
385 GFP_KERNEL);
386 irq_data = kmalloc_array(girq->num_parents, sizeof(*irq_data),
387 GFP_KERNEL);
388 if (!girq->parents || !irq_data) {
389 ret = -ENOMEM;
Joey Goulya8888e62021-11-21 16:56:38 +0000390 goto out_free_irq_data;
Joey Goulya0f160f2021-10-26 18:58:14 +0100391 }
392
393 for (i = 0; i < girq->num_parents; i++) {
Joey Gouly361856d2021-11-21 16:56:32 +0000394 ret = platform_get_irq(to_platform_device(pctl->dev), i);
Joey Goulya0f160f2021-10-26 18:58:14 +0100395 if (ret < 0)
Joey Goulya8888e62021-11-21 16:56:38 +0000396 goto out_free_irq_data;
Joey Goulya0f160f2021-10-26 18:58:14 +0100397
398 girq->parents[i] = ret;
399 pctl->irqgrps[i] = i;
400 irq_data[i] = &pctl->irqgrps[i];
401 }
402
403 girq->parent_handler_data_array = irq_data;
404 girq->per_parent_data = true;
405 girq->default_type = IRQ_TYPE_NONE;
406 girq->handler = handle_level_irq;
407 }
408
409 ret = devm_gpiochip_add_data(pctl->dev, &pctl->gpio_chip, pctl);
Joey Goulya8888e62021-11-21 16:56:38 +0000410
411out_free_irq_data:
Joey Goulya0f160f2021-10-26 18:58:14 +0100412 kfree(girq->parents);
413 kfree(irq_data);
414
415 return ret;
416}
417
418static int apple_gpio_pinctrl_probe(struct platform_device *pdev)
419{
420 struct apple_gpio_pinctrl *pctl;
421 struct pinctrl_pin_desc *pins;
422 unsigned int npins;
423 const char **pin_names;
424 unsigned int *pin_nums;
425 static const char* pinmux_functions[] = {
426 "gpio", "periph1", "periph2", "periph3"
427 };
428 unsigned int i, nirqs = 0;
429 int res;
430
431 if (of_property_read_bool(pdev->dev.of_node, "interrupt-controller")) {
432 res = platform_irq_count(pdev);
433 if (res > 0)
434 nirqs = res;
435 }
436
437 pctl = devm_kzalloc(&pdev->dev, struct_size(pctl, irqgrps, nirqs),
438 GFP_KERNEL);
439 if (!pctl)
440 return -ENOMEM;
441 pctl->dev = &pdev->dev;
442 pctl->gpio_chip.irq.num_parents = nirqs;
443 dev_set_drvdata(&pdev->dev, pctl);
444
445 if (of_property_read_u32(pdev->dev.of_node, "apple,npins", &npins))
446 return dev_err_probe(&pdev->dev, -EINVAL,
447 "apple,npins property not found\n");
448
449 pins = devm_kmalloc_array(&pdev->dev, npins, sizeof(pins[0]),
450 GFP_KERNEL);
451 pin_names = devm_kmalloc_array(&pdev->dev, npins, sizeof(pin_names[0]),
452 GFP_KERNEL);
453 pin_nums = devm_kmalloc_array(&pdev->dev, npins, sizeof(pin_nums[0]),
454 GFP_KERNEL);
455 if (!pins || !pin_names || !pin_nums)
456 return -ENOMEM;
457
458 pctl->base = devm_platform_ioremap_resource(pdev, 0);
459 if (IS_ERR(pctl->base))
460 return PTR_ERR(pctl->base);
461
462 pctl->map = devm_regmap_init_mmio(&pdev->dev, pctl->base, &regmap_config);
463 if (IS_ERR(pctl->map))
464 return dev_err_probe(&pdev->dev, PTR_ERR(pctl->map),
465 "Failed to create regmap\n");
466
467 for (i = 0; i < npins; i++) {
468 pins[i].number = i;
469 pins[i].name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "PIN%u", i);
470 pins[i].drv_data = pctl;
471 pin_names[i] = pins[i].name;
472 pin_nums[i] = i;
473 }
474
475 pctl->pinctrl_desc.name = dev_name(pctl->dev);
476 pctl->pinctrl_desc.pins = pins;
477 pctl->pinctrl_desc.npins = npins;
478 pctl->pinctrl_desc.pctlops = &apple_gpio_pinctrl_ops;
479 pctl->pinctrl_desc.pmxops = &apple_gpio_pinmux_ops;
480
481 pctl->pctldev = devm_pinctrl_register(&pdev->dev, &pctl->pinctrl_desc, pctl);
482 if (IS_ERR(pctl->pctldev))
483 return dev_err_probe(&pdev->dev, PTR_ERR(pctl->pctldev),
484 "Failed to register pinctrl device.\n");
485
486 for (i = 0; i < npins; i++) {
487 res = pinctrl_generic_add_group(pctl->pctldev, pins[i].name,
488 pin_nums + i, 1, pctl);
489 if (res < 0)
490 return dev_err_probe(pctl->dev, res,
491 "Failed to register group");
492 }
493
494 for (i = 0; i < ARRAY_SIZE(pinmux_functions); ++i) {
495 res = pinmux_generic_add_function(pctl->pctldev, pinmux_functions[i],
496 pin_names, npins, pctl);
497 if (res < 0)
498 return dev_err_probe(pctl->dev, res,
499 "Failed to register function.");
500 }
501
502 return apple_gpio_register(pctl);
503}
504
505static const struct of_device_id apple_gpio_pinctrl_of_match[] = {
506 { .compatible = "apple,pinctrl", },
507 { }
508};
509
510static struct platform_driver apple_gpio_pinctrl_driver = {
511 .driver = {
512 .name = "apple-gpio-pinctrl",
513 .of_match_table = apple_gpio_pinctrl_of_match,
514 .suppress_bind_attrs = true,
515 },
516 .probe = apple_gpio_pinctrl_probe,
517};
518module_platform_driver(apple_gpio_pinctrl_driver);
519
520MODULE_DESCRIPTION("Apple pinctrl/GPIO driver");
521MODULE_AUTHOR("Stan Skowronek <stan@corellium.com>");
522MODULE_AUTHOR("Joey Gouly <joey.gouly@arm.com>");
523MODULE_LICENSE("GPL v2");