1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2016-2017 NVIDIA Corporation
8 #include <linux/gpio/driver.h>
9 #include <linux/interrupt.h>
10 #include <linux/irq.h>
11 #include <linux/module.h>
12 #include <linux/of_device.h>
13 #include <linux/platform_device.h>
15 #include <dt-bindings/gpio/tegra186-gpio.h>
16 #include <dt-bindings/gpio/tegra194-gpio.h>
18 /* security registers */
19 #define TEGRA186_GPIO_CTL_SCR 0x0c
20 #define TEGRA186_GPIO_CTL_SCR_SEC_WEN BIT(28)
21 #define TEGRA186_GPIO_CTL_SCR_SEC_REN BIT(27)
23 #define TEGRA186_GPIO_INT_ROUTE_MAPPING(p, x) (0x14 + (p) * 0x20 + (x) * 4)
25 /* control registers */
26 #define TEGRA186_GPIO_ENABLE_CONFIG 0x00
27 #define TEGRA186_GPIO_ENABLE_CONFIG_ENABLE BIT(0)
28 #define TEGRA186_GPIO_ENABLE_CONFIG_OUT BIT(1)
29 #define TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_TYPE_NONE (0x0 << 2)
30 #define TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_TYPE_LEVEL (0x1 << 2)
31 #define TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_TYPE_SINGLE_EDGE (0x2 << 2)
32 #define TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_TYPE_DOUBLE_EDGE (0x3 << 2)
33 #define TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_TYPE_MASK (0x3 << 2)
34 #define TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_LEVEL BIT(4)
35 #define TEGRA186_GPIO_ENABLE_CONFIG_DEBOUNCE BIT(5)
36 #define TEGRA186_GPIO_ENABLE_CONFIG_INTERRUPT BIT(6)
38 #define TEGRA186_GPIO_DEBOUNCE_CONTROL 0x04
39 #define TEGRA186_GPIO_DEBOUNCE_CONTROL_THRESHOLD(x) ((x) & 0xff)
41 #define TEGRA186_GPIO_INPUT 0x08
42 #define TEGRA186_GPIO_INPUT_HIGH BIT(0)
44 #define TEGRA186_GPIO_OUTPUT_CONTROL 0x0c
45 #define TEGRA186_GPIO_OUTPUT_CONTROL_FLOATED BIT(0)
47 #define TEGRA186_GPIO_OUTPUT_VALUE 0x10
48 #define TEGRA186_GPIO_OUTPUT_VALUE_HIGH BIT(0)
50 #define TEGRA186_GPIO_INTERRUPT_CLEAR 0x14
52 #define TEGRA186_GPIO_INTERRUPT_STATUS(x) (0x100 + (x) * 4)
54 struct tegra_gpio_port {
61 struct tegra186_pin_range {
66 struct tegra_gpio_soc {
67 const struct tegra_gpio_port *ports;
68 unsigned int num_ports;
70 unsigned int instance;
72 const struct tegra186_pin_range *pin_ranges;
73 unsigned int num_pin_ranges;
78 struct gpio_chip gpio;
83 const struct tegra_gpio_soc *soc;
89 static const struct tegra_gpio_port *
90 tegra186_gpio_get_port(struct tegra_gpio *gpio, unsigned int *pin)
92 unsigned int start = 0, i;
94 for (i = 0; i < gpio->soc->num_ports; i++) {
95 const struct tegra_gpio_port *port = &gpio->soc->ports[i];
97 if (*pin >= start && *pin < start + port->pins) {
108 static void __iomem *tegra186_gpio_get_base(struct tegra_gpio *gpio,
111 const struct tegra_gpio_port *port;
114 port = tegra186_gpio_get_port(gpio, &pin);
118 offset = port->bank * 0x1000 + port->port * 0x200;
120 return gpio->base + offset + pin * 0x20;
123 static int tegra186_gpio_get_direction(struct gpio_chip *chip,
126 struct tegra_gpio *gpio = gpiochip_get_data(chip);
130 base = tegra186_gpio_get_base(gpio, offset);
131 if (WARN_ON(base == NULL))
134 value = readl(base + TEGRA186_GPIO_ENABLE_CONFIG);
135 if (value & TEGRA186_GPIO_ENABLE_CONFIG_OUT)
136 return GPIO_LINE_DIRECTION_OUT;
138 return GPIO_LINE_DIRECTION_IN;
141 static int tegra186_gpio_direction_input(struct gpio_chip *chip,
144 struct tegra_gpio *gpio = gpiochip_get_data(chip);
148 base = tegra186_gpio_get_base(gpio, offset);
149 if (WARN_ON(base == NULL))
152 value = readl(base + TEGRA186_GPIO_OUTPUT_CONTROL);
153 value |= TEGRA186_GPIO_OUTPUT_CONTROL_FLOATED;
154 writel(value, base + TEGRA186_GPIO_OUTPUT_CONTROL);
156 value = readl(base + TEGRA186_GPIO_ENABLE_CONFIG);
157 value |= TEGRA186_GPIO_ENABLE_CONFIG_ENABLE;
158 value &= ~TEGRA186_GPIO_ENABLE_CONFIG_OUT;
159 writel(value, base + TEGRA186_GPIO_ENABLE_CONFIG);
164 static int tegra186_gpio_direction_output(struct gpio_chip *chip,
165 unsigned int offset, int level)
167 struct tegra_gpio *gpio = gpiochip_get_data(chip);
171 /* configure output level first */
172 chip->set(chip, offset, level);
174 base = tegra186_gpio_get_base(gpio, offset);
175 if (WARN_ON(base == NULL))
178 /* set the direction */
179 value = readl(base + TEGRA186_GPIO_OUTPUT_CONTROL);
180 value &= ~TEGRA186_GPIO_OUTPUT_CONTROL_FLOATED;
181 writel(value, base + TEGRA186_GPIO_OUTPUT_CONTROL);
183 value = readl(base + TEGRA186_GPIO_ENABLE_CONFIG);
184 value |= TEGRA186_GPIO_ENABLE_CONFIG_ENABLE;
185 value |= TEGRA186_GPIO_ENABLE_CONFIG_OUT;
186 writel(value, base + TEGRA186_GPIO_ENABLE_CONFIG);
191 static int tegra186_gpio_get(struct gpio_chip *chip, unsigned int offset)
193 struct tegra_gpio *gpio = gpiochip_get_data(chip);
197 base = tegra186_gpio_get_base(gpio, offset);
198 if (WARN_ON(base == NULL))
201 value = readl(base + TEGRA186_GPIO_ENABLE_CONFIG);
202 if (value & TEGRA186_GPIO_ENABLE_CONFIG_OUT)
203 value = readl(base + TEGRA186_GPIO_OUTPUT_VALUE);
205 value = readl(base + TEGRA186_GPIO_INPUT);
207 return value & BIT(0);
210 static void tegra186_gpio_set(struct gpio_chip *chip, unsigned int offset,
213 struct tegra_gpio *gpio = gpiochip_get_data(chip);
217 base = tegra186_gpio_get_base(gpio, offset);
218 if (WARN_ON(base == NULL))
221 value = readl(base + TEGRA186_GPIO_OUTPUT_VALUE);
223 value &= ~TEGRA186_GPIO_OUTPUT_VALUE_HIGH;
225 value |= TEGRA186_GPIO_OUTPUT_VALUE_HIGH;
227 writel(value, base + TEGRA186_GPIO_OUTPUT_VALUE);
230 static int tegra186_gpio_set_config(struct gpio_chip *chip,
232 unsigned long config)
234 struct tegra_gpio *gpio = gpiochip_get_data(chip);
238 base = tegra186_gpio_get_base(gpio, offset);
242 if (pinconf_to_config_param(config) != PIN_CONFIG_INPUT_DEBOUNCE)
245 debounce = pinconf_to_config_argument(config);
248 * The Tegra186 GPIO controller supports a maximum of 255 ms debounce
251 if (debounce > 255000)
254 debounce = DIV_ROUND_UP(debounce, USEC_PER_MSEC);
256 value = TEGRA186_GPIO_DEBOUNCE_CONTROL_THRESHOLD(debounce);
257 writel(value, base + TEGRA186_GPIO_DEBOUNCE_CONTROL);
259 value = readl(base + TEGRA186_GPIO_ENABLE_CONFIG);
260 value |= TEGRA186_GPIO_ENABLE_CONFIG_DEBOUNCE;
261 writel(value, base + TEGRA186_GPIO_ENABLE_CONFIG);
266 static int tegra186_gpio_add_pin_ranges(struct gpio_chip *chip)
268 struct tegra_gpio *gpio = gpiochip_get_data(chip);
269 struct pinctrl_dev *pctldev;
270 struct device_node *np;
274 if (!gpio->soc->pinmux || gpio->soc->num_pin_ranges == 0)
277 np = of_find_compatible_node(NULL, NULL, gpio->soc->pinmux);
281 pctldev = of_pinctrl_get(np);
284 return -EPROBE_DEFER;
286 for (i = 0; i < gpio->soc->num_pin_ranges; i++) {
287 unsigned int pin = gpio->soc->pin_ranges[i].offset, port;
288 const char *group = gpio->soc->pin_ranges[i].group;
293 if (port >= gpio->soc->num_ports) {
294 dev_warn(chip->parent, "invalid port %u for %s\n",
299 for (j = 0; j < port; j++)
300 pin += gpio->soc->ports[j].pins;
302 err = gpiochip_add_pingroup_range(chip, pctldev, pin, group);
310 static int tegra186_gpio_of_xlate(struct gpio_chip *chip,
311 const struct of_phandle_args *spec,
314 struct tegra_gpio *gpio = gpiochip_get_data(chip);
315 unsigned int port, pin, i, offset = 0;
317 if (WARN_ON(chip->of_gpio_n_cells < 2))
320 if (WARN_ON(spec->args_count < chip->of_gpio_n_cells))
323 port = spec->args[0] / 8;
324 pin = spec->args[0] % 8;
326 if (port >= gpio->soc->num_ports) {
327 dev_err(chip->parent, "invalid port number: %u\n", port);
331 for (i = 0; i < port; i++)
332 offset += gpio->soc->ports[i].pins;
335 *flags = spec->args[1];
340 static void tegra186_irq_ack(struct irq_data *data)
342 struct tegra_gpio *gpio = irq_data_get_irq_chip_data(data);
345 base = tegra186_gpio_get_base(gpio, data->hwirq);
346 if (WARN_ON(base == NULL))
349 writel(1, base + TEGRA186_GPIO_INTERRUPT_CLEAR);
352 static void tegra186_irq_mask(struct irq_data *data)
354 struct tegra_gpio *gpio = irq_data_get_irq_chip_data(data);
358 base = tegra186_gpio_get_base(gpio, data->hwirq);
359 if (WARN_ON(base == NULL))
362 value = readl(base + TEGRA186_GPIO_ENABLE_CONFIG);
363 value &= ~TEGRA186_GPIO_ENABLE_CONFIG_INTERRUPT;
364 writel(value, base + TEGRA186_GPIO_ENABLE_CONFIG);
367 static void tegra186_irq_unmask(struct irq_data *data)
369 struct tegra_gpio *gpio = irq_data_get_irq_chip_data(data);
373 base = tegra186_gpio_get_base(gpio, data->hwirq);
374 if (WARN_ON(base == NULL))
377 value = readl(base + TEGRA186_GPIO_ENABLE_CONFIG);
378 value |= TEGRA186_GPIO_ENABLE_CONFIG_INTERRUPT;
379 writel(value, base + TEGRA186_GPIO_ENABLE_CONFIG);
382 static int tegra186_irq_set_type(struct irq_data *data, unsigned int type)
384 struct tegra_gpio *gpio = irq_data_get_irq_chip_data(data);
388 base = tegra186_gpio_get_base(gpio, data->hwirq);
389 if (WARN_ON(base == NULL))
392 value = readl(base + TEGRA186_GPIO_ENABLE_CONFIG);
393 value &= ~TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_TYPE_MASK;
394 value &= ~TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_LEVEL;
396 switch (type & IRQ_TYPE_SENSE_MASK) {
400 case IRQ_TYPE_EDGE_RISING:
401 value |= TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_TYPE_SINGLE_EDGE;
402 value |= TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_LEVEL;
405 case IRQ_TYPE_EDGE_FALLING:
406 value |= TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_TYPE_SINGLE_EDGE;
409 case IRQ_TYPE_EDGE_BOTH:
410 value |= TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_TYPE_DOUBLE_EDGE;
413 case IRQ_TYPE_LEVEL_HIGH:
414 value |= TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_TYPE_LEVEL;
415 value |= TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_LEVEL;
418 case IRQ_TYPE_LEVEL_LOW:
419 value |= TEGRA186_GPIO_ENABLE_CONFIG_TRIGGER_TYPE_LEVEL;
426 writel(value, base + TEGRA186_GPIO_ENABLE_CONFIG);
428 if ((type & IRQ_TYPE_EDGE_BOTH) == 0)
429 irq_set_handler_locked(data, handle_level_irq);
431 irq_set_handler_locked(data, handle_edge_irq);
433 return irq_chip_set_type_parent(data, type);
436 static void tegra186_gpio_irq(struct irq_desc *desc)
438 struct tegra_gpio *gpio = irq_desc_get_handler_data(desc);
439 struct irq_domain *domain = gpio->gpio.irq.domain;
440 struct irq_chip *chip = irq_desc_get_chip(desc);
441 unsigned int parent = irq_desc_get_irq(desc);
442 unsigned int i, offset = 0;
444 chained_irq_enter(chip, desc);
446 for (i = 0; i < gpio->soc->num_ports; i++) {
447 const struct tegra_gpio_port *port = &gpio->soc->ports[i];
448 unsigned int pin, irq;
452 base = gpio->base + port->bank * 0x1000 + port->port * 0x200;
454 /* skip ports that are not associated with this bank */
455 if (parent != gpio->irq[port->bank])
458 value = readl(base + TEGRA186_GPIO_INTERRUPT_STATUS(1));
460 for_each_set_bit(pin, &value, port->pins) {
461 irq = irq_find_mapping(domain, offset + pin);
462 if (WARN_ON(irq == 0))
465 generic_handle_irq(irq);
469 offset += port->pins;
472 chained_irq_exit(chip, desc);
475 static int tegra186_gpio_irq_domain_translate(struct irq_domain *domain,
476 struct irq_fwspec *fwspec,
477 unsigned long *hwirq,
480 struct tegra_gpio *gpio = gpiochip_get_data(domain->host_data);
481 unsigned int port, pin, i, offset = 0;
483 if (WARN_ON(gpio->gpio.of_gpio_n_cells < 2))
486 if (WARN_ON(fwspec->param_count < gpio->gpio.of_gpio_n_cells))
489 port = fwspec->param[0] / 8;
490 pin = fwspec->param[0] % 8;
492 if (port >= gpio->soc->num_ports)
495 for (i = 0; i < port; i++)
496 offset += gpio->soc->ports[i].pins;
498 *type = fwspec->param[1] & IRQ_TYPE_SENSE_MASK;
499 *hwirq = offset + pin;
504 static void *tegra186_gpio_populate_parent_fwspec(struct gpio_chip *chip,
505 unsigned int parent_hwirq,
506 unsigned int parent_type)
508 struct tegra_gpio *gpio = gpiochip_get_data(chip);
509 struct irq_fwspec *fwspec;
511 fwspec = kmalloc(sizeof(*fwspec), GFP_KERNEL);
515 fwspec->fwnode = chip->irq.parent_domain->fwnode;
516 fwspec->param_count = 3;
517 fwspec->param[0] = gpio->soc->instance;
518 fwspec->param[1] = parent_hwirq;
519 fwspec->param[2] = parent_type;
524 static int tegra186_gpio_child_to_parent_hwirq(struct gpio_chip *chip,
527 unsigned int *parent_hwirq,
528 unsigned int *parent_type)
530 *parent_hwirq = chip->irq.child_offset_to_irq(chip, hwirq);
536 static unsigned int tegra186_gpio_child_offset_to_irq(struct gpio_chip *chip,
539 struct tegra_gpio *gpio = gpiochip_get_data(chip);
542 for (i = 0; i < gpio->soc->num_ports; i++) {
543 if (offset < gpio->soc->ports[i].pins)
546 offset -= gpio->soc->ports[i].pins;
549 return offset + i * 8;
552 static const struct of_device_id tegra186_pmc_of_match[] = {
553 { .compatible = "nvidia,tegra186-pmc" },
554 { .compatible = "nvidia,tegra194-pmc" },
558 static void tegra186_gpio_init_route_mapping(struct tegra_gpio *gpio)
563 for (i = 0; i < gpio->soc->num_ports; i++) {
564 const struct tegra_gpio_port *port = &gpio->soc->ports[i];
565 unsigned int offset, p = port->port;
568 base = gpio->secure + port->bank * 0x1000 + 0x800;
570 value = readl(base + TEGRA186_GPIO_CTL_SCR);
573 * For controllers that haven't been locked down yet, make
574 * sure to program the default interrupt route mapping.
576 if ((value & TEGRA186_GPIO_CTL_SCR_SEC_REN) == 0 &&
577 (value & TEGRA186_GPIO_CTL_SCR_SEC_WEN) == 0) {
578 for (j = 0; j < 8; j++) {
579 offset = TEGRA186_GPIO_INT_ROUTE_MAPPING(p, j);
581 value = readl(base + offset);
582 value = BIT(port->pins) - 1;
583 writel(value, base + offset);
589 static int tegra186_gpio_probe(struct platform_device *pdev)
591 unsigned int i, j, offset;
592 struct gpio_irq_chip *irq;
593 struct tegra_gpio *gpio;
594 struct device_node *np;
598 gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
602 gpio->soc = of_device_get_match_data(&pdev->dev);
604 gpio->secure = devm_platform_ioremap_resource_byname(pdev, "security");
605 if (IS_ERR(gpio->secure))
606 return PTR_ERR(gpio->secure);
608 gpio->base = devm_platform_ioremap_resource_byname(pdev, "gpio");
609 if (IS_ERR(gpio->base))
610 return PTR_ERR(gpio->base);
612 err = platform_irq_count(pdev);
618 gpio->irq = devm_kcalloc(&pdev->dev, gpio->num_irq, sizeof(*gpio->irq),
623 for (i = 0; i < gpio->num_irq; i++) {
624 err = platform_get_irq(pdev, i);
631 gpio->gpio.label = gpio->soc->name;
632 gpio->gpio.parent = &pdev->dev;
634 gpio->gpio.request = gpiochip_generic_request;
635 gpio->gpio.free = gpiochip_generic_free;
636 gpio->gpio.get_direction = tegra186_gpio_get_direction;
637 gpio->gpio.direction_input = tegra186_gpio_direction_input;
638 gpio->gpio.direction_output = tegra186_gpio_direction_output;
639 gpio->gpio.get = tegra186_gpio_get,
640 gpio->gpio.set = tegra186_gpio_set;
641 gpio->gpio.set_config = tegra186_gpio_set_config;
642 gpio->gpio.add_pin_ranges = tegra186_gpio_add_pin_ranges;
644 gpio->gpio.base = -1;
646 for (i = 0; i < gpio->soc->num_ports; i++)
647 gpio->gpio.ngpio += gpio->soc->ports[i].pins;
649 names = devm_kcalloc(gpio->gpio.parent, gpio->gpio.ngpio,
650 sizeof(*names), GFP_KERNEL);
654 for (i = 0, offset = 0; i < gpio->soc->num_ports; i++) {
655 const struct tegra_gpio_port *port = &gpio->soc->ports[i];
658 for (j = 0; j < port->pins; j++) {
659 name = devm_kasprintf(gpio->gpio.parent, GFP_KERNEL,
660 "P%s.%02x", port->name, j);
664 names[offset + j] = name;
667 offset += port->pins;
670 gpio->gpio.names = (const char * const *)names;
672 gpio->gpio.of_node = pdev->dev.of_node;
673 gpio->gpio.of_gpio_n_cells = 2;
674 gpio->gpio.of_xlate = tegra186_gpio_of_xlate;
676 gpio->intc.name = pdev->dev.of_node->name;
677 gpio->intc.irq_ack = tegra186_irq_ack;
678 gpio->intc.irq_mask = tegra186_irq_mask;
679 gpio->intc.irq_unmask = tegra186_irq_unmask;
680 gpio->intc.irq_set_type = tegra186_irq_set_type;
681 gpio->intc.irq_set_wake = irq_chip_set_wake_parent;
683 irq = &gpio->gpio.irq;
684 irq->chip = &gpio->intc;
685 irq->fwnode = of_node_to_fwnode(pdev->dev.of_node);
686 irq->child_to_parent_hwirq = tegra186_gpio_child_to_parent_hwirq;
687 irq->populate_parent_alloc_arg = tegra186_gpio_populate_parent_fwspec;
688 irq->child_offset_to_irq = tegra186_gpio_child_offset_to_irq;
689 irq->child_irq_domain_ops.translate = tegra186_gpio_irq_domain_translate;
690 irq->handler = handle_simple_irq;
691 irq->default_type = IRQ_TYPE_NONE;
692 irq->parent_handler = tegra186_gpio_irq;
693 irq->parent_handler_data = gpio;
694 irq->num_parents = gpio->num_irq;
695 irq->parents = gpio->irq;
697 np = of_find_matching_node(NULL, tegra186_pmc_of_match);
699 irq->parent_domain = irq_find_host(np);
702 if (!irq->parent_domain)
703 return -EPROBE_DEFER;
706 tegra186_gpio_init_route_mapping(gpio);
708 irq->map = devm_kcalloc(&pdev->dev, gpio->gpio.ngpio,
709 sizeof(*irq->map), GFP_KERNEL);
713 for (i = 0, offset = 0; i < gpio->soc->num_ports; i++) {
714 const struct tegra_gpio_port *port = &gpio->soc->ports[i];
716 for (j = 0; j < port->pins; j++)
717 irq->map[offset + j] = irq->parents[port->bank];
719 offset += port->pins;
722 platform_set_drvdata(pdev, gpio);
724 err = devm_gpiochip_add_data(&pdev->dev, &gpio->gpio, gpio);
731 static int tegra186_gpio_remove(struct platform_device *pdev)
736 #define TEGRA186_MAIN_GPIO_PORT(_name, _bank, _port, _pins) \
737 [TEGRA186_MAIN_GPIO_PORT_##_name] = { \
744 static const struct tegra_gpio_port tegra186_main_ports[] = {
745 TEGRA186_MAIN_GPIO_PORT( A, 2, 0, 7),
746 TEGRA186_MAIN_GPIO_PORT( B, 3, 0, 7),
747 TEGRA186_MAIN_GPIO_PORT( C, 3, 1, 7),
748 TEGRA186_MAIN_GPIO_PORT( D, 3, 2, 6),
749 TEGRA186_MAIN_GPIO_PORT( E, 2, 1, 8),
750 TEGRA186_MAIN_GPIO_PORT( F, 2, 2, 6),
751 TEGRA186_MAIN_GPIO_PORT( G, 4, 1, 6),
752 TEGRA186_MAIN_GPIO_PORT( H, 1, 0, 7),
753 TEGRA186_MAIN_GPIO_PORT( I, 0, 4, 8),
754 TEGRA186_MAIN_GPIO_PORT( J, 5, 0, 8),
755 TEGRA186_MAIN_GPIO_PORT( K, 5, 1, 1),
756 TEGRA186_MAIN_GPIO_PORT( L, 1, 1, 8),
757 TEGRA186_MAIN_GPIO_PORT( M, 5, 3, 6),
758 TEGRA186_MAIN_GPIO_PORT( N, 0, 0, 7),
759 TEGRA186_MAIN_GPIO_PORT( O, 0, 1, 4),
760 TEGRA186_MAIN_GPIO_PORT( P, 4, 0, 7),
761 TEGRA186_MAIN_GPIO_PORT( Q, 0, 2, 6),
762 TEGRA186_MAIN_GPIO_PORT( R, 0, 5, 6),
763 TEGRA186_MAIN_GPIO_PORT( T, 0, 3, 4),
764 TEGRA186_MAIN_GPIO_PORT( X, 1, 2, 8),
765 TEGRA186_MAIN_GPIO_PORT( Y, 1, 3, 7),
766 TEGRA186_MAIN_GPIO_PORT(BB, 2, 3, 2),
767 TEGRA186_MAIN_GPIO_PORT(CC, 5, 2, 4),
770 static const struct tegra_gpio_soc tegra186_main_soc = {
771 .num_ports = ARRAY_SIZE(tegra186_main_ports),
772 .ports = tegra186_main_ports,
773 .name = "tegra186-gpio",
777 #define TEGRA186_AON_GPIO_PORT(_name, _bank, _port, _pins) \
778 [TEGRA186_AON_GPIO_PORT_##_name] = { \
785 static const struct tegra_gpio_port tegra186_aon_ports[] = {
786 TEGRA186_AON_GPIO_PORT( S, 0, 1, 5),
787 TEGRA186_AON_GPIO_PORT( U, 0, 2, 6),
788 TEGRA186_AON_GPIO_PORT( V, 0, 4, 8),
789 TEGRA186_AON_GPIO_PORT( W, 0, 5, 8),
790 TEGRA186_AON_GPIO_PORT( Z, 0, 7, 4),
791 TEGRA186_AON_GPIO_PORT(AA, 0, 6, 8),
792 TEGRA186_AON_GPIO_PORT(EE, 0, 3, 3),
793 TEGRA186_AON_GPIO_PORT(FF, 0, 0, 5),
796 static const struct tegra_gpio_soc tegra186_aon_soc = {
797 .num_ports = ARRAY_SIZE(tegra186_aon_ports),
798 .ports = tegra186_aon_ports,
799 .name = "tegra186-gpio-aon",
803 #define TEGRA194_MAIN_GPIO_PORT(_name, _bank, _port, _pins) \
804 [TEGRA194_MAIN_GPIO_PORT_##_name] = { \
811 static const struct tegra_gpio_port tegra194_main_ports[] = {
812 TEGRA194_MAIN_GPIO_PORT( A, 1, 2, 8),
813 TEGRA194_MAIN_GPIO_PORT( B, 4, 7, 2),
814 TEGRA194_MAIN_GPIO_PORT( C, 4, 3, 8),
815 TEGRA194_MAIN_GPIO_PORT( D, 4, 4, 4),
816 TEGRA194_MAIN_GPIO_PORT( E, 4, 5, 8),
817 TEGRA194_MAIN_GPIO_PORT( F, 4, 6, 6),
818 TEGRA194_MAIN_GPIO_PORT( G, 4, 0, 8),
819 TEGRA194_MAIN_GPIO_PORT( H, 4, 1, 8),
820 TEGRA194_MAIN_GPIO_PORT( I, 4, 2, 5),
821 TEGRA194_MAIN_GPIO_PORT( J, 5, 1, 6),
822 TEGRA194_MAIN_GPIO_PORT( K, 3, 0, 8),
823 TEGRA194_MAIN_GPIO_PORT( L, 3, 1, 4),
824 TEGRA194_MAIN_GPIO_PORT( M, 2, 3, 8),
825 TEGRA194_MAIN_GPIO_PORT( N, 2, 4, 3),
826 TEGRA194_MAIN_GPIO_PORT( O, 5, 0, 6),
827 TEGRA194_MAIN_GPIO_PORT( P, 2, 5, 8),
828 TEGRA194_MAIN_GPIO_PORT( Q, 2, 6, 8),
829 TEGRA194_MAIN_GPIO_PORT( R, 2, 7, 6),
830 TEGRA194_MAIN_GPIO_PORT( S, 3, 3, 8),
831 TEGRA194_MAIN_GPIO_PORT( T, 3, 4, 8),
832 TEGRA194_MAIN_GPIO_PORT( U, 3, 5, 1),
833 TEGRA194_MAIN_GPIO_PORT( V, 1, 0, 8),
834 TEGRA194_MAIN_GPIO_PORT( W, 1, 1, 2),
835 TEGRA194_MAIN_GPIO_PORT( X, 2, 0, 8),
836 TEGRA194_MAIN_GPIO_PORT( Y, 2, 1, 8),
837 TEGRA194_MAIN_GPIO_PORT( Z, 2, 2, 8),
838 TEGRA194_MAIN_GPIO_PORT(FF, 3, 2, 2),
839 TEGRA194_MAIN_GPIO_PORT(GG, 0, 0, 2)
842 static const struct tegra186_pin_range tegra194_main_pin_ranges[] = {
843 { TEGRA194_MAIN_GPIO(GG, 0), "pex_l5_clkreq_n_pgg0" },
844 { TEGRA194_MAIN_GPIO(GG, 1), "pex_l5_rst_n_pgg1" },
847 static const struct tegra_gpio_soc tegra194_main_soc = {
848 .num_ports = ARRAY_SIZE(tegra194_main_ports),
849 .ports = tegra194_main_ports,
850 .name = "tegra194-gpio",
852 .num_pin_ranges = ARRAY_SIZE(tegra194_main_pin_ranges),
853 .pin_ranges = tegra194_main_pin_ranges,
854 .pinmux = "nvidia,tegra194-pinmux",
857 #define TEGRA194_AON_GPIO_PORT(_name, _bank, _port, _pins) \
858 [TEGRA194_AON_GPIO_PORT_##_name] = { \
865 static const struct tegra_gpio_port tegra194_aon_ports[] = {
866 TEGRA194_AON_GPIO_PORT(AA, 0, 3, 8),
867 TEGRA194_AON_GPIO_PORT(BB, 0, 4, 4),
868 TEGRA194_AON_GPIO_PORT(CC, 0, 1, 8),
869 TEGRA194_AON_GPIO_PORT(DD, 0, 2, 3),
870 TEGRA194_AON_GPIO_PORT(EE, 0, 0, 7)
873 static const struct tegra_gpio_soc tegra194_aon_soc = {
874 .num_ports = ARRAY_SIZE(tegra194_aon_ports),
875 .ports = tegra194_aon_ports,
876 .name = "tegra194-gpio-aon",
880 static const struct of_device_id tegra186_gpio_of_match[] = {
882 .compatible = "nvidia,tegra186-gpio",
883 .data = &tegra186_main_soc
885 .compatible = "nvidia,tegra186-gpio-aon",
886 .data = &tegra186_aon_soc
888 .compatible = "nvidia,tegra194-gpio",
889 .data = &tegra194_main_soc
891 .compatible = "nvidia,tegra194-gpio-aon",
892 .data = &tegra194_aon_soc
898 static struct platform_driver tegra186_gpio_driver = {
900 .name = "tegra186-gpio",
901 .of_match_table = tegra186_gpio_of_match,
903 .probe = tegra186_gpio_probe,
904 .remove = tegra186_gpio_remove,
906 module_platform_driver(tegra186_gpio_driver);
908 MODULE_DESCRIPTION("NVIDIA Tegra186 GPIO controller driver");
910 MODULE_LICENSE("GPL v2");