Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2009 |
| 4 | * Guennadi Liakhovetski, DENX Software Engineering, <lg@denx.de> |
| 5 | * |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 6 | * Copyright (C) 2011 |
| 7 | * Stefano Babic, DENX Software Engineering, <sbabic@denx.de> |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 8 | */ |
| 9 | #include <common.h> |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 10 | #include <errno.h> |
| 11 | #include <dm.h> |
| 12 | #include <malloc.h> |
Stefano Babic | c4ea142 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 13 | #include <asm/arch/imx-regs.h> |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 14 | #include <asm/gpio.h> |
Stefano Babic | c4ea142 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 15 | #include <asm/io.h> |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 16 | |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 17 | enum mxc_gpio_direction { |
| 18 | MXC_GPIO_DIRECTION_IN, |
| 19 | MXC_GPIO_DIRECTION_OUT, |
| 20 | }; |
| 21 | |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 22 | #define GPIO_PER_BANK 32 |
| 23 | |
| 24 | struct mxc_gpio_plat { |
Peng Fan | 637a769 | 2015-02-10 14:46:33 +0800 | [diff] [blame] | 25 | int bank_index; |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 26 | struct gpio_regs *regs; |
| 27 | }; |
| 28 | |
| 29 | struct mxc_bank_info { |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 30 | struct gpio_regs *regs; |
| 31 | }; |
| 32 | |
| 33 | #ifndef CONFIG_DM_GPIO |
Vikram Narayanan | 8d28c21 | 2012-04-10 04:26:08 +0000 | [diff] [blame] | 34 | #define GPIO_TO_PORT(n) (n / 32) |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 35 | |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 36 | /* GPIO port description */ |
| 37 | static unsigned long gpio_ports[] = { |
Stefano Babic | c4ea142 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 38 | [0] = GPIO1_BASE_ADDR, |
| 39 | [1] = GPIO2_BASE_ADDR, |
| 40 | [2] = GPIO3_BASE_ADDR, |
trem | e71c39d | 2012-08-25 05:30:33 +0000 | [diff] [blame] | 41 | #if defined(CONFIG_MX25) || defined(CONFIG_MX27) || defined(CONFIG_MX51) || \ |
Adrian Alonso | 26dd346 | 2015-08-11 11:19:51 -0500 | [diff] [blame] | 42 | defined(CONFIG_MX53) || defined(CONFIG_MX6) || \ |
Peng Fan | 8953d86 | 2018-01-10 13:20:42 +0800 | [diff] [blame] | 43 | defined(CONFIG_MX7) || defined(CONFIG_MX8M) |
Stefano Babic | c4ea142 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 44 | [3] = GPIO4_BASE_ADDR, |
| 45 | #endif |
Adrian Alonso | 26dd346 | 2015-08-11 11:19:51 -0500 | [diff] [blame] | 46 | #if defined(CONFIG_MX27) || defined(CONFIG_MX53) || defined(CONFIG_MX6) || \ |
Peng Fan | 8953d86 | 2018-01-10 13:20:42 +0800 | [diff] [blame] | 47 | defined(CONFIG_MX7) || defined(CONFIG_MX8M) |
Liu Hui-R64343 | 01643ec | 2011-01-03 22:27:38 +0000 | [diff] [blame] | 48 | [4] = GPIO5_BASE_ADDR, |
Peng Fan | 8953d86 | 2018-01-10 13:20:42 +0800 | [diff] [blame] | 49 | #if !(defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL) || defined(CONFIG_MX8M)) |
Liu Hui-R64343 | 01643ec | 2011-01-03 22:27:38 +0000 | [diff] [blame] | 50 | [5] = GPIO6_BASE_ADDR, |
trem | e71c39d | 2012-08-25 05:30:33 +0000 | [diff] [blame] | 51 | #endif |
Peng Fan | f2753b0 | 2015-07-20 19:28:31 +0800 | [diff] [blame] | 52 | #endif |
Adrian Alonso | 26dd346 | 2015-08-11 11:19:51 -0500 | [diff] [blame] | 53 | #if defined(CONFIG_MX53) || defined(CONFIG_MX6) || defined(CONFIG_MX7) |
Fabio Estevam | 290e7cf | 2018-01-03 12:33:05 -0200 | [diff] [blame] | 54 | #if !(defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL)) |
Liu Hui-R64343 | 01643ec | 2011-01-03 22:27:38 +0000 | [diff] [blame] | 55 | [6] = GPIO7_BASE_ADDR, |
| 56 | #endif |
Peng Fan | f2753b0 | 2015-07-20 19:28:31 +0800 | [diff] [blame] | 57 | #endif |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 58 | }; |
| 59 | |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 60 | static int mxc_gpio_direction(unsigned int gpio, |
| 61 | enum mxc_gpio_direction direction) |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 62 | { |
Vikram Narayanan | be28255 | 2012-04-10 04:26:20 +0000 | [diff] [blame] | 63 | unsigned int port = GPIO_TO_PORT(gpio); |
Stefano Babic | c4ea142 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 64 | struct gpio_regs *regs; |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 65 | u32 l; |
| 66 | |
| 67 | if (port >= ARRAY_SIZE(gpio_ports)) |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 68 | return -1; |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 69 | |
| 70 | gpio &= 0x1f; |
| 71 | |
Stefano Babic | c4ea142 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 72 | regs = (struct gpio_regs *)gpio_ports[port]; |
| 73 | |
| 74 | l = readl(®s->gpio_dir); |
| 75 | |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 76 | switch (direction) { |
Stefano Babic | c4ea142 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 77 | case MXC_GPIO_DIRECTION_OUT: |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 78 | l |= 1 << gpio; |
| 79 | break; |
Stefano Babic | c4ea142 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 80 | case MXC_GPIO_DIRECTION_IN: |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 81 | l &= ~(1 << gpio); |
| 82 | } |
Stefano Babic | c4ea142 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 83 | writel(l, ®s->gpio_dir); |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 84 | |
| 85 | return 0; |
| 86 | } |
| 87 | |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 88 | int gpio_set_value(unsigned gpio, int value) |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 89 | { |
Vikram Narayanan | be28255 | 2012-04-10 04:26:20 +0000 | [diff] [blame] | 90 | unsigned int port = GPIO_TO_PORT(gpio); |
Stefano Babic | c4ea142 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 91 | struct gpio_regs *regs; |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 92 | u32 l; |
| 93 | |
| 94 | if (port >= ARRAY_SIZE(gpio_ports)) |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 95 | return -1; |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 96 | |
| 97 | gpio &= 0x1f; |
| 98 | |
Stefano Babic | c4ea142 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 99 | regs = (struct gpio_regs *)gpio_ports[port]; |
| 100 | |
| 101 | l = readl(®s->gpio_dr); |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 102 | if (value) |
| 103 | l |= 1 << gpio; |
| 104 | else |
| 105 | l &= ~(1 << gpio); |
Stefano Babic | c4ea142 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 106 | writel(l, ®s->gpio_dr); |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 107 | |
| 108 | return 0; |
Guennadi Liakhovetski | b30de3c | 2009-02-07 01:18:07 +0100 | [diff] [blame] | 109 | } |
Stefano Babic | 7d27cd0 | 2010-04-13 12:07:00 +0200 | [diff] [blame] | 110 | |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 111 | int gpio_get_value(unsigned gpio) |
Stefano Babic | 7d27cd0 | 2010-04-13 12:07:00 +0200 | [diff] [blame] | 112 | { |
Vikram Narayanan | be28255 | 2012-04-10 04:26:20 +0000 | [diff] [blame] | 113 | unsigned int port = GPIO_TO_PORT(gpio); |
Stefano Babic | c4ea142 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 114 | struct gpio_regs *regs; |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 115 | u32 val; |
Stefano Babic | 7d27cd0 | 2010-04-13 12:07:00 +0200 | [diff] [blame] | 116 | |
| 117 | if (port >= ARRAY_SIZE(gpio_ports)) |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 118 | return -1; |
Stefano Babic | 7d27cd0 | 2010-04-13 12:07:00 +0200 | [diff] [blame] | 119 | |
| 120 | gpio &= 0x1f; |
| 121 | |
Stefano Babic | c4ea142 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 122 | regs = (struct gpio_regs *)gpio_ports[port]; |
| 123 | |
Benoît Thébaudeau | 5dafa45 | 2012-08-20 10:55:41 +0000 | [diff] [blame] | 124 | val = (readl(®s->gpio_psr) >> gpio) & 0x01; |
Stefano Babic | 7d27cd0 | 2010-04-13 12:07:00 +0200 | [diff] [blame] | 125 | |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 126 | return val; |
Stefano Babic | 7d27cd0 | 2010-04-13 12:07:00 +0200 | [diff] [blame] | 127 | } |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 128 | |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 129 | int gpio_request(unsigned gpio, const char *label) |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 130 | { |
Vikram Narayanan | be28255 | 2012-04-10 04:26:20 +0000 | [diff] [blame] | 131 | unsigned int port = GPIO_TO_PORT(gpio); |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 132 | if (port >= ARRAY_SIZE(gpio_ports)) |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 133 | return -1; |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 134 | return 0; |
| 135 | } |
| 136 | |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 137 | int gpio_free(unsigned gpio) |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 138 | { |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 139 | return 0; |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 140 | } |
| 141 | |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 142 | int gpio_direction_input(unsigned gpio) |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 143 | { |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 144 | return mxc_gpio_direction(gpio, MXC_GPIO_DIRECTION_IN); |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 145 | } |
| 146 | |
Joe Hershberger | 365d607 | 2011-11-11 15:55:36 -0600 | [diff] [blame] | 147 | int gpio_direction_output(unsigned gpio, int value) |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 148 | { |
Dirk Behme | 04c79cb | 2013-07-15 15:58:27 +0200 | [diff] [blame] | 149 | int ret = gpio_set_value(gpio, value); |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 150 | |
| 151 | if (ret < 0) |
| 152 | return ret; |
| 153 | |
Dirk Behme | 04c79cb | 2013-07-15 15:58:27 +0200 | [diff] [blame] | 154 | return mxc_gpio_direction(gpio, MXC_GPIO_DIRECTION_OUT); |
Stefano Babic | d8e0ca8 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 155 | } |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 156 | #endif |
| 157 | |
| 158 | #ifdef CONFIG_DM_GPIO |
Peng Fan | 99c0ae1 | 2015-02-10 14:46:34 +0800 | [diff] [blame] | 159 | #include <fdtdec.h> |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 160 | static int mxc_gpio_is_output(struct gpio_regs *regs, int offset) |
| 161 | { |
| 162 | u32 val; |
| 163 | |
| 164 | val = readl(®s->gpio_dir); |
| 165 | |
| 166 | return val & (1 << offset) ? 1 : 0; |
| 167 | } |
| 168 | |
| 169 | static void mxc_gpio_bank_direction(struct gpio_regs *regs, int offset, |
| 170 | enum mxc_gpio_direction direction) |
| 171 | { |
| 172 | u32 l; |
| 173 | |
| 174 | l = readl(®s->gpio_dir); |
| 175 | |
| 176 | switch (direction) { |
| 177 | case MXC_GPIO_DIRECTION_OUT: |
| 178 | l |= 1 << offset; |
| 179 | break; |
| 180 | case MXC_GPIO_DIRECTION_IN: |
| 181 | l &= ~(1 << offset); |
| 182 | } |
| 183 | writel(l, ®s->gpio_dir); |
| 184 | } |
| 185 | |
| 186 | static void mxc_gpio_bank_set_value(struct gpio_regs *regs, int offset, |
| 187 | int value) |
| 188 | { |
| 189 | u32 l; |
| 190 | |
| 191 | l = readl(®s->gpio_dr); |
| 192 | if (value) |
| 193 | l |= 1 << offset; |
| 194 | else |
| 195 | l &= ~(1 << offset); |
| 196 | writel(l, ®s->gpio_dr); |
| 197 | } |
| 198 | |
| 199 | static int mxc_gpio_bank_get_value(struct gpio_regs *regs, int offset) |
| 200 | { |
| 201 | return (readl(®s->gpio_psr) >> offset) & 0x01; |
| 202 | } |
| 203 | |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 204 | /* set GPIO pin 'gpio' as an input */ |
| 205 | static int mxc_gpio_direction_input(struct udevice *dev, unsigned offset) |
| 206 | { |
| 207 | struct mxc_bank_info *bank = dev_get_priv(dev); |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 208 | |
| 209 | /* Configure GPIO direction as input. */ |
| 210 | mxc_gpio_bank_direction(bank->regs, offset, MXC_GPIO_DIRECTION_IN); |
| 211 | |
| 212 | return 0; |
| 213 | } |
| 214 | |
| 215 | /* set GPIO pin 'gpio' as an output, with polarity 'value' */ |
| 216 | static int mxc_gpio_direction_output(struct udevice *dev, unsigned offset, |
| 217 | int value) |
| 218 | { |
| 219 | struct mxc_bank_info *bank = dev_get_priv(dev); |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 220 | |
| 221 | /* Configure GPIO output value. */ |
| 222 | mxc_gpio_bank_set_value(bank->regs, offset, value); |
| 223 | |
| 224 | /* Configure GPIO direction as output. */ |
| 225 | mxc_gpio_bank_direction(bank->regs, offset, MXC_GPIO_DIRECTION_OUT); |
| 226 | |
| 227 | return 0; |
| 228 | } |
| 229 | |
| 230 | /* read GPIO IN value of pin 'gpio' */ |
| 231 | static int mxc_gpio_get_value(struct udevice *dev, unsigned offset) |
| 232 | { |
| 233 | struct mxc_bank_info *bank = dev_get_priv(dev); |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 234 | |
| 235 | return mxc_gpio_bank_get_value(bank->regs, offset); |
| 236 | } |
| 237 | |
| 238 | /* write GPIO OUT value to pin 'gpio' */ |
| 239 | static int mxc_gpio_set_value(struct udevice *dev, unsigned offset, |
| 240 | int value) |
| 241 | { |
| 242 | struct mxc_bank_info *bank = dev_get_priv(dev); |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 243 | |
| 244 | mxc_gpio_bank_set_value(bank->regs, offset, value); |
| 245 | |
| 246 | return 0; |
| 247 | } |
| 248 | |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 249 | static int mxc_gpio_get_function(struct udevice *dev, unsigned offset) |
| 250 | { |
| 251 | struct mxc_bank_info *bank = dev_get_priv(dev); |
| 252 | |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 253 | /* GPIOF_FUNC is not implemented yet */ |
| 254 | if (mxc_gpio_is_output(bank->regs, offset)) |
| 255 | return GPIOF_OUTPUT; |
| 256 | else |
| 257 | return GPIOF_INPUT; |
| 258 | } |
| 259 | |
| 260 | static const struct dm_gpio_ops gpio_mxc_ops = { |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 261 | .direction_input = mxc_gpio_direction_input, |
| 262 | .direction_output = mxc_gpio_direction_output, |
| 263 | .get_value = mxc_gpio_get_value, |
| 264 | .set_value = mxc_gpio_set_value, |
| 265 | .get_function = mxc_gpio_get_function, |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 266 | }; |
| 267 | |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 268 | static int mxc_gpio_probe(struct udevice *dev) |
| 269 | { |
| 270 | struct mxc_bank_info *bank = dev_get_priv(dev); |
| 271 | struct mxc_gpio_plat *plat = dev_get_platdata(dev); |
Simon Glass | e564f05 | 2015-03-05 12:25:20 -0700 | [diff] [blame] | 272 | struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev); |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 273 | int banknum; |
| 274 | char name[18], *str; |
| 275 | |
Peng Fan | 637a769 | 2015-02-10 14:46:33 +0800 | [diff] [blame] | 276 | banknum = plat->bank_index; |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 277 | sprintf(name, "GPIO%d_", banknum + 1); |
| 278 | str = strdup(name); |
| 279 | if (!str) |
| 280 | return -ENOMEM; |
| 281 | uc_priv->bank_name = str; |
| 282 | uc_priv->gpio_count = GPIO_PER_BANK; |
| 283 | bank->regs = plat->regs; |
| 284 | |
| 285 | return 0; |
| 286 | } |
| 287 | |
Peng Fan | 99c0ae1 | 2015-02-10 14:46:34 +0800 | [diff] [blame] | 288 | static int mxc_gpio_bind(struct udevice *dev) |
| 289 | { |
| 290 | struct mxc_gpio_plat *plat = dev->platdata; |
| 291 | fdt_addr_t addr; |
| 292 | |
| 293 | /* |
| 294 | * If platdata already exsits, directly return. |
| 295 | * Actually only when DT is not supported, platdata |
| 296 | * is statically initialized in U_BOOT_DEVICES.Here |
| 297 | * will return. |
| 298 | */ |
| 299 | if (plat) |
| 300 | return 0; |
| 301 | |
Simon Glass | a821c4a | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 302 | addr = devfdt_get_addr(dev); |
Peng Fan | 99c0ae1 | 2015-02-10 14:46:34 +0800 | [diff] [blame] | 303 | if (addr == FDT_ADDR_T_NONE) |
Simon Glass | 7c84319 | 2017-09-17 16:54:53 -0600 | [diff] [blame] | 304 | return -EINVAL; |
Peng Fan | 99c0ae1 | 2015-02-10 14:46:34 +0800 | [diff] [blame] | 305 | |
| 306 | /* |
| 307 | * TODO: |
| 308 | * When every board is converted to driver model and DT is supported, |
| 309 | * this can be done by auto-alloc feature, but not using calloc |
| 310 | * to alloc memory for platdata. |
Simon Glass | 4d68604 | 2017-09-17 16:54:52 -0600 | [diff] [blame] | 311 | * |
| 312 | * For example mxc_plat below uses platform data rather than device |
| 313 | * tree. |
| 314 | * |
| 315 | * NOTE: DO NOT COPY this code if you are using device tree. |
Peng Fan | 99c0ae1 | 2015-02-10 14:46:34 +0800 | [diff] [blame] | 316 | */ |
| 317 | plat = calloc(1, sizeof(*plat)); |
| 318 | if (!plat) |
| 319 | return -ENOMEM; |
| 320 | |
| 321 | plat->regs = (struct gpio_regs *)addr; |
| 322 | plat->bank_index = dev->req_seq; |
| 323 | dev->platdata = plat; |
| 324 | |
| 325 | return 0; |
| 326 | } |
| 327 | |
| 328 | static const struct udevice_id mxc_gpio_ids[] = { |
| 329 | { .compatible = "fsl,imx35-gpio" }, |
| 330 | { } |
| 331 | }; |
| 332 | |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 333 | U_BOOT_DRIVER(gpio_mxc) = { |
| 334 | .name = "gpio_mxc", |
| 335 | .id = UCLASS_GPIO, |
| 336 | .ops = &gpio_mxc_ops, |
| 337 | .probe = mxc_gpio_probe, |
| 338 | .priv_auto_alloc_size = sizeof(struct mxc_bank_info), |
Peng Fan | 99c0ae1 | 2015-02-10 14:46:34 +0800 | [diff] [blame] | 339 | .of_match = mxc_gpio_ids, |
| 340 | .bind = mxc_gpio_bind, |
| 341 | }; |
| 342 | |
Masahiro Yamada | 0f92582 | 2015-08-12 07:31:55 +0900 | [diff] [blame] | 343 | #if !CONFIG_IS_ENABLED(OF_CONTROL) |
Peng Fan | 99c0ae1 | 2015-02-10 14:46:34 +0800 | [diff] [blame] | 344 | static const struct mxc_gpio_plat mxc_plat[] = { |
| 345 | { 0, (struct gpio_regs *)GPIO1_BASE_ADDR }, |
| 346 | { 1, (struct gpio_regs *)GPIO2_BASE_ADDR }, |
| 347 | { 2, (struct gpio_regs *)GPIO3_BASE_ADDR }, |
| 348 | #if defined(CONFIG_MX25) || defined(CONFIG_MX27) || defined(CONFIG_MX51) || \ |
Peng Fan | 8953d86 | 2018-01-10 13:20:42 +0800 | [diff] [blame] | 349 | defined(CONFIG_MX53) || defined(CONFIG_MX6) || \ |
| 350 | defined(CONFIG_MX8M) |
Peng Fan | 99c0ae1 | 2015-02-10 14:46:34 +0800 | [diff] [blame] | 351 | { 3, (struct gpio_regs *)GPIO4_BASE_ADDR }, |
| 352 | #endif |
Peng Fan | 8953d86 | 2018-01-10 13:20:42 +0800 | [diff] [blame] | 353 | #if defined(CONFIG_MX27) || defined(CONFIG_MX53) || defined(CONFIG_MX6) || \ |
| 354 | defined(CONFIG_MX8M) |
Peng Fan | 99c0ae1 | 2015-02-10 14:46:34 +0800 | [diff] [blame] | 355 | { 4, (struct gpio_regs *)GPIO5_BASE_ADDR }, |
Peng Fan | 8953d86 | 2018-01-10 13:20:42 +0800 | [diff] [blame] | 356 | #ifndef CONFIG_MX8M |
Peng Fan | 99c0ae1 | 2015-02-10 14:46:34 +0800 | [diff] [blame] | 357 | { 5, (struct gpio_regs *)GPIO6_BASE_ADDR }, |
| 358 | #endif |
Peng Fan | 8953d86 | 2018-01-10 13:20:42 +0800 | [diff] [blame] | 359 | #endif |
Peng Fan | 99c0ae1 | 2015-02-10 14:46:34 +0800 | [diff] [blame] | 360 | #if defined(CONFIG_MX53) || defined(CONFIG_MX6) |
| 361 | { 6, (struct gpio_regs *)GPIO7_BASE_ADDR }, |
| 362 | #endif |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 363 | }; |
| 364 | |
| 365 | U_BOOT_DEVICES(mxc_gpios) = { |
| 366 | { "gpio_mxc", &mxc_plat[0] }, |
| 367 | { "gpio_mxc", &mxc_plat[1] }, |
| 368 | { "gpio_mxc", &mxc_plat[2] }, |
| 369 | #if defined(CONFIG_MX25) || defined(CONFIG_MX27) || defined(CONFIG_MX51) || \ |
Peng Fan | 8953d86 | 2018-01-10 13:20:42 +0800 | [diff] [blame] | 370 | defined(CONFIG_MX53) || defined(CONFIG_MX6) || \ |
| 371 | defined(CONFIG_MX8M) |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 372 | { "gpio_mxc", &mxc_plat[3] }, |
| 373 | #endif |
Peng Fan | 8953d86 | 2018-01-10 13:20:42 +0800 | [diff] [blame] | 374 | #if defined(CONFIG_MX27) || defined(CONFIG_MX53) || defined(CONFIG_MX6) || \ |
| 375 | defined(CONFIG_MX8M) |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 376 | { "gpio_mxc", &mxc_plat[4] }, |
Peng Fan | 8953d86 | 2018-01-10 13:20:42 +0800 | [diff] [blame] | 377 | #ifndef CONFIG_MX8M |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 378 | { "gpio_mxc", &mxc_plat[5] }, |
| 379 | #endif |
Peng Fan | 8953d86 | 2018-01-10 13:20:42 +0800 | [diff] [blame] | 380 | #endif |
Simon Glass | 441d0cf | 2014-10-01 19:57:26 -0600 | [diff] [blame] | 381 | #if defined(CONFIG_MX53) || defined(CONFIG_MX6) |
| 382 | { "gpio_mxc", &mxc_plat[6] }, |
| 383 | #endif |
| 384 | }; |
| 385 | #endif |
Peng Fan | 99c0ae1 | 2015-02-10 14:46:34 +0800 | [diff] [blame] | 386 | #endif |