Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2015 Marek Vasut <marex@denx.de> |
| 4 | * |
| 5 | * DesignWare APB GPIO driver |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <malloc.h> |
| 10 | #include <asm/arch/gpio.h> |
| 11 | #include <asm/gpio.h> |
| 12 | #include <asm/io.h> |
| 13 | #include <dm.h> |
| 14 | #include <dm/device-internal.h> |
| 15 | #include <dm/lists.h> |
| 16 | #include <dm/root.h> |
| 17 | #include <errno.h> |
| 18 | |
| 19 | DECLARE_GLOBAL_DATA_PTR; |
| 20 | |
Phil Edworthy | 2d0c2c4 | 2016-11-03 11:05:12 +0000 | [diff] [blame] | 21 | #define GPIO_SWPORT_DR(p) (0x00 + (p) * 0xc) |
| 22 | #define GPIO_SWPORT_DDR(p) (0x04 + (p) * 0xc) |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 23 | #define GPIO_INTEN 0x30 |
| 24 | #define GPIO_INTMASK 0x34 |
| 25 | #define GPIO_INTTYPE_LEVEL 0x38 |
| 26 | #define GPIO_INT_POLARITY 0x3c |
| 27 | #define GPIO_INTSTATUS 0x40 |
| 28 | #define GPIO_PORTA_DEBOUNCE 0x48 |
| 29 | #define GPIO_PORTA_EOI 0x4c |
Phil Edworthy | 2d0c2c4 | 2016-11-03 11:05:12 +0000 | [diff] [blame] | 30 | #define GPIO_EXT_PORT(p) (0x50 + (p) * 4) |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 31 | |
| 32 | struct gpio_dwapb_platdata { |
| 33 | const char *name; |
| 34 | int bank; |
| 35 | int pins; |
| 36 | fdt_addr_t base; |
| 37 | }; |
| 38 | |
| 39 | static int dwapb_gpio_direction_input(struct udevice *dev, unsigned pin) |
| 40 | { |
| 41 | struct gpio_dwapb_platdata *plat = dev_get_platdata(dev); |
| 42 | |
Phil Edworthy | 2d0c2c4 | 2016-11-03 11:05:12 +0000 | [diff] [blame] | 43 | clrbits_le32(plat->base + GPIO_SWPORT_DDR(plat->bank), 1 << pin); |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 44 | return 0; |
| 45 | } |
| 46 | |
| 47 | static int dwapb_gpio_direction_output(struct udevice *dev, unsigned pin, |
| 48 | int val) |
| 49 | { |
| 50 | struct gpio_dwapb_platdata *plat = dev_get_platdata(dev); |
| 51 | |
Phil Edworthy | 2d0c2c4 | 2016-11-03 11:05:12 +0000 | [diff] [blame] | 52 | setbits_le32(plat->base + GPIO_SWPORT_DDR(plat->bank), 1 << pin); |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 53 | |
| 54 | if (val) |
Phil Edworthy | 2d0c2c4 | 2016-11-03 11:05:12 +0000 | [diff] [blame] | 55 | setbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin); |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 56 | else |
Phil Edworthy | 2d0c2c4 | 2016-11-03 11:05:12 +0000 | [diff] [blame] | 57 | clrbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin); |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 58 | |
| 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | static int dwapb_gpio_get_value(struct udevice *dev, unsigned pin) |
| 63 | { |
| 64 | struct gpio_dwapb_platdata *plat = dev_get_platdata(dev); |
Phil Edworthy | 2d0c2c4 | 2016-11-03 11:05:12 +0000 | [diff] [blame] | 65 | return !!(readl(plat->base + GPIO_EXT_PORT(plat->bank)) & (1 << pin)); |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | |
| 69 | static int dwapb_gpio_set_value(struct udevice *dev, unsigned pin, int val) |
| 70 | { |
| 71 | struct gpio_dwapb_platdata *plat = dev_get_platdata(dev); |
| 72 | |
| 73 | if (val) |
Phil Edworthy | 2d0c2c4 | 2016-11-03 11:05:12 +0000 | [diff] [blame] | 74 | setbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin); |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 75 | else |
Phil Edworthy | 2d0c2c4 | 2016-11-03 11:05:12 +0000 | [diff] [blame] | 76 | clrbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin); |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 77 | |
| 78 | return 0; |
| 79 | } |
| 80 | |
| 81 | static const struct dm_gpio_ops gpio_dwapb_ops = { |
| 82 | .direction_input = dwapb_gpio_direction_input, |
| 83 | .direction_output = dwapb_gpio_direction_output, |
| 84 | .get_value = dwapb_gpio_get_value, |
| 85 | .set_value = dwapb_gpio_set_value, |
| 86 | }; |
| 87 | |
| 88 | static int gpio_dwapb_probe(struct udevice *dev) |
| 89 | { |
| 90 | struct gpio_dev_priv *priv = dev_get_uclass_priv(dev); |
| 91 | struct gpio_dwapb_platdata *plat = dev->platdata; |
| 92 | |
| 93 | if (!plat) |
| 94 | return 0; |
| 95 | |
| 96 | priv->gpio_count = plat->pins; |
| 97 | priv->bank_name = plat->name; |
| 98 | |
| 99 | return 0; |
| 100 | } |
| 101 | |
| 102 | static int gpio_dwapb_bind(struct udevice *dev) |
| 103 | { |
| 104 | struct gpio_dwapb_platdata *plat = dev_get_platdata(dev); |
| 105 | const void *blob = gd->fdt_blob; |
| 106 | struct udevice *subdev; |
| 107 | fdt_addr_t base; |
| 108 | int ret, node, bank = 0; |
| 109 | |
| 110 | /* If this is a child device, there is nothing to do here */ |
| 111 | if (plat) |
| 112 | return 0; |
| 113 | |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 114 | base = fdtdec_get_addr(blob, dev_of_offset(dev), "reg"); |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 115 | if (base == FDT_ADDR_T_NONE) { |
| 116 | debug("Can't get the GPIO register base address\n"); |
| 117 | return -ENXIO; |
| 118 | } |
| 119 | |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 120 | for (node = fdt_first_subnode(blob, dev_of_offset(dev)); |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 121 | node > 0; |
| 122 | node = fdt_next_subnode(blob, node)) { |
| 123 | if (!fdtdec_get_bool(blob, node, "gpio-controller")) |
| 124 | continue; |
| 125 | |
| 126 | plat = NULL; |
| 127 | plat = calloc(1, sizeof(*plat)); |
| 128 | if (!plat) |
| 129 | return -ENOMEM; |
| 130 | |
| 131 | plat->base = base; |
| 132 | plat->bank = bank; |
| 133 | plat->pins = fdtdec_get_int(blob, node, "snps,nr-gpios", 0); |
Simon Glass | b02e404 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 134 | plat->name = fdt_stringlist_get(blob, node, "bank-name", 0, |
| 135 | NULL); |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 136 | if (ret) |
| 137 | goto err; |
| 138 | |
| 139 | ret = device_bind(dev, dev->driver, plat->name, |
| 140 | plat, -1, &subdev); |
| 141 | if (ret) |
| 142 | goto err; |
| 143 | |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 144 | dev_set_of_offset(subdev, node); |
Marek Vasut | e30a70c | 2015-06-23 15:54:19 +0200 | [diff] [blame] | 145 | bank++; |
| 146 | } |
| 147 | |
| 148 | return 0; |
| 149 | |
| 150 | err: |
| 151 | free(plat); |
| 152 | return ret; |
| 153 | } |
| 154 | |
| 155 | static const struct udevice_id gpio_dwapb_ids[] = { |
| 156 | { .compatible = "snps,dw-apb-gpio" }, |
| 157 | { } |
| 158 | }; |
| 159 | |
| 160 | U_BOOT_DRIVER(gpio_dwapb) = { |
| 161 | .name = "gpio-dwapb", |
| 162 | .id = UCLASS_GPIO, |
| 163 | .of_match = gpio_dwapb_ids, |
| 164 | .ops = &gpio_dwapb_ops, |
| 165 | .bind = gpio_dwapb_bind, |
| 166 | .probe = gpio_dwapb_probe, |
| 167 | }; |