blob: d0e365a54b01dac6767a9e4269d1e7e29ef159b8 [file] [log] [blame]
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +01001/*
2 * Copyright (C) 2009
3 * Guennadi Liakhovetski, DENX Software Engineering, <lg@denx.de>
4 *
Stefano Babicd8e0ca82011-08-21 10:45:44 +02005 * Copyright (C) 2011
6 * Stefano Babic, DENX Software Engineering, <sbabic@denx.de>
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +01009 */
10#include <common.h>
Simon Glass441d0cf2014-10-01 19:57:26 -060011#include <errno.h>
12#include <dm.h>
13#include <malloc.h>
Stefano Babicc4ea1422010-07-06 17:05:06 +020014#include <asm/arch/imx-regs.h>
Stefano Babicd8e0ca82011-08-21 10:45:44 +020015#include <asm/gpio.h>
Stefano Babicc4ea1422010-07-06 17:05:06 +020016#include <asm/io.h>
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010017
Stefano Babicd8e0ca82011-08-21 10:45:44 +020018enum mxc_gpio_direction {
19 MXC_GPIO_DIRECTION_IN,
20 MXC_GPIO_DIRECTION_OUT,
21};
22
Simon Glass441d0cf2014-10-01 19:57:26 -060023#define GPIO_PER_BANK 32
24
25struct mxc_gpio_plat {
Peng Fan637a7692015-02-10 14:46:33 +080026 int bank_index;
Simon Glass441d0cf2014-10-01 19:57:26 -060027 struct gpio_regs *regs;
28};
29
30struct mxc_bank_info {
Simon Glass441d0cf2014-10-01 19:57:26 -060031 struct gpio_regs *regs;
32};
33
34#ifndef CONFIG_DM_GPIO
Vikram Narayanan8d28c212012-04-10 04:26:08 +000035#define GPIO_TO_PORT(n) (n / 32)
Stefano Babicd8e0ca82011-08-21 10:45:44 +020036
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010037/* GPIO port description */
38static unsigned long gpio_ports[] = {
Stefano Babicc4ea1422010-07-06 17:05:06 +020039 [0] = GPIO1_BASE_ADDR,
40 [1] = GPIO2_BASE_ADDR,
41 [2] = GPIO3_BASE_ADDR,
treme71c39d2012-08-25 05:30:33 +000042#if defined(CONFIG_MX25) || defined(CONFIG_MX27) || defined(CONFIG_MX51) || \
Adrian Alonso26dd3462015-08-11 11:19:51 -050043 defined(CONFIG_MX53) || defined(CONFIG_MX6) || \
Peng Fan8953d862018-01-10 13:20:42 +080044 defined(CONFIG_MX7) || defined(CONFIG_MX8M)
Stefano Babicc4ea1422010-07-06 17:05:06 +020045 [3] = GPIO4_BASE_ADDR,
46#endif
Adrian Alonso26dd3462015-08-11 11:19:51 -050047#if defined(CONFIG_MX27) || defined(CONFIG_MX53) || defined(CONFIG_MX6) || \
Peng Fan8953d862018-01-10 13:20:42 +080048 defined(CONFIG_MX7) || defined(CONFIG_MX8M)
Liu Hui-R6434301643ec2011-01-03 22:27:38 +000049 [4] = GPIO5_BASE_ADDR,
Peng Fan8953d862018-01-10 13:20:42 +080050#if !(defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL) || defined(CONFIG_MX8M))
Liu Hui-R6434301643ec2011-01-03 22:27:38 +000051 [5] = GPIO6_BASE_ADDR,
treme71c39d2012-08-25 05:30:33 +000052#endif
Peng Fanf2753b02015-07-20 19:28:31 +080053#endif
Adrian Alonso26dd3462015-08-11 11:19:51 -050054#if defined(CONFIG_MX53) || defined(CONFIG_MX6) || defined(CONFIG_MX7)
Fabio Estevam290e7cf2018-01-03 12:33:05 -020055#if !(defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL))
Liu Hui-R6434301643ec2011-01-03 22:27:38 +000056 [6] = GPIO7_BASE_ADDR,
57#endif
Peng Fanf2753b02015-07-20 19:28:31 +080058#endif
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010059};
60
Stefano Babicd8e0ca82011-08-21 10:45:44 +020061static int mxc_gpio_direction(unsigned int gpio,
62 enum mxc_gpio_direction direction)
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010063{
Vikram Narayananbe282552012-04-10 04:26:20 +000064 unsigned int port = GPIO_TO_PORT(gpio);
Stefano Babicc4ea1422010-07-06 17:05:06 +020065 struct gpio_regs *regs;
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010066 u32 l;
67
68 if (port >= ARRAY_SIZE(gpio_ports))
Joe Hershberger365d6072011-11-11 15:55:36 -060069 return -1;
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010070
71 gpio &= 0x1f;
72
Stefano Babicc4ea1422010-07-06 17:05:06 +020073 regs = (struct gpio_regs *)gpio_ports[port];
74
75 l = readl(&regs->gpio_dir);
76
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010077 switch (direction) {
Stefano Babicc4ea1422010-07-06 17:05:06 +020078 case MXC_GPIO_DIRECTION_OUT:
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010079 l |= 1 << gpio;
80 break;
Stefano Babicc4ea1422010-07-06 17:05:06 +020081 case MXC_GPIO_DIRECTION_IN:
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010082 l &= ~(1 << gpio);
83 }
Stefano Babicc4ea1422010-07-06 17:05:06 +020084 writel(l, &regs->gpio_dir);
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010085
86 return 0;
87}
88
Joe Hershberger365d6072011-11-11 15:55:36 -060089int gpio_set_value(unsigned gpio, int value)
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010090{
Vikram Narayananbe282552012-04-10 04:26:20 +000091 unsigned int port = GPIO_TO_PORT(gpio);
Stefano Babicc4ea1422010-07-06 17:05:06 +020092 struct gpio_regs *regs;
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010093 u32 l;
94
95 if (port >= ARRAY_SIZE(gpio_ports))
Joe Hershberger365d6072011-11-11 15:55:36 -060096 return -1;
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010097
98 gpio &= 0x1f;
99
Stefano Babicc4ea1422010-07-06 17:05:06 +0200100 regs = (struct gpio_regs *)gpio_ports[port];
101
102 l = readl(&regs->gpio_dr);
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +0100103 if (value)
104 l |= 1 << gpio;
105 else
106 l &= ~(1 << gpio);
Stefano Babicc4ea1422010-07-06 17:05:06 +0200107 writel(l, &regs->gpio_dr);
Joe Hershberger365d6072011-11-11 15:55:36 -0600108
109 return 0;
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +0100110}
Stefano Babic7d27cd02010-04-13 12:07:00 +0200111
Joe Hershberger365d6072011-11-11 15:55:36 -0600112int gpio_get_value(unsigned gpio)
Stefano Babic7d27cd02010-04-13 12:07:00 +0200113{
Vikram Narayananbe282552012-04-10 04:26:20 +0000114 unsigned int port = GPIO_TO_PORT(gpio);
Stefano Babicc4ea1422010-07-06 17:05:06 +0200115 struct gpio_regs *regs;
Joe Hershberger365d6072011-11-11 15:55:36 -0600116 u32 val;
Stefano Babic7d27cd02010-04-13 12:07:00 +0200117
118 if (port >= ARRAY_SIZE(gpio_ports))
Joe Hershberger365d6072011-11-11 15:55:36 -0600119 return -1;
Stefano Babic7d27cd02010-04-13 12:07:00 +0200120
121 gpio &= 0x1f;
122
Stefano Babicc4ea1422010-07-06 17:05:06 +0200123 regs = (struct gpio_regs *)gpio_ports[port];
124
Benoît Thébaudeau5dafa452012-08-20 10:55:41 +0000125 val = (readl(&regs->gpio_psr) >> gpio) & 0x01;
Stefano Babic7d27cd02010-04-13 12:07:00 +0200126
Joe Hershberger365d6072011-11-11 15:55:36 -0600127 return val;
Stefano Babic7d27cd02010-04-13 12:07:00 +0200128}
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200129
Joe Hershberger365d6072011-11-11 15:55:36 -0600130int gpio_request(unsigned gpio, const char *label)
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200131{
Vikram Narayananbe282552012-04-10 04:26:20 +0000132 unsigned int port = GPIO_TO_PORT(gpio);
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200133 if (port >= ARRAY_SIZE(gpio_ports))
Joe Hershberger365d6072011-11-11 15:55:36 -0600134 return -1;
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200135 return 0;
136}
137
Joe Hershberger365d6072011-11-11 15:55:36 -0600138int gpio_free(unsigned gpio)
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200139{
Joe Hershberger365d6072011-11-11 15:55:36 -0600140 return 0;
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200141}
142
Joe Hershberger365d6072011-11-11 15:55:36 -0600143int gpio_direction_input(unsigned gpio)
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200144{
Joe Hershberger365d6072011-11-11 15:55:36 -0600145 return mxc_gpio_direction(gpio, MXC_GPIO_DIRECTION_IN);
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200146}
147
Joe Hershberger365d6072011-11-11 15:55:36 -0600148int gpio_direction_output(unsigned gpio, int value)
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200149{
Dirk Behme04c79cb2013-07-15 15:58:27 +0200150 int ret = gpio_set_value(gpio, value);
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200151
152 if (ret < 0)
153 return ret;
154
Dirk Behme04c79cb2013-07-15 15:58:27 +0200155 return mxc_gpio_direction(gpio, MXC_GPIO_DIRECTION_OUT);
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200156}
Simon Glass441d0cf2014-10-01 19:57:26 -0600157#endif
158
159#ifdef CONFIG_DM_GPIO
Peng Fan99c0ae12015-02-10 14:46:34 +0800160#include <fdtdec.h>
161DECLARE_GLOBAL_DATA_PTR;
162
Simon Glass441d0cf2014-10-01 19:57:26 -0600163static int mxc_gpio_is_output(struct gpio_regs *regs, int offset)
164{
165 u32 val;
166
167 val = readl(&regs->gpio_dir);
168
169 return val & (1 << offset) ? 1 : 0;
170}
171
172static void mxc_gpio_bank_direction(struct gpio_regs *regs, int offset,
173 enum mxc_gpio_direction direction)
174{
175 u32 l;
176
177 l = readl(&regs->gpio_dir);
178
179 switch (direction) {
180 case MXC_GPIO_DIRECTION_OUT:
181 l |= 1 << offset;
182 break;
183 case MXC_GPIO_DIRECTION_IN:
184 l &= ~(1 << offset);
185 }
186 writel(l, &regs->gpio_dir);
187}
188
189static void mxc_gpio_bank_set_value(struct gpio_regs *regs, int offset,
190 int value)
191{
192 u32 l;
193
194 l = readl(&regs->gpio_dr);
195 if (value)
196 l |= 1 << offset;
197 else
198 l &= ~(1 << offset);
199 writel(l, &regs->gpio_dr);
200}
201
202static int mxc_gpio_bank_get_value(struct gpio_regs *regs, int offset)
203{
204 return (readl(&regs->gpio_psr) >> offset) & 0x01;
205}
206
Simon Glass441d0cf2014-10-01 19:57:26 -0600207/* set GPIO pin 'gpio' as an input */
208static int mxc_gpio_direction_input(struct udevice *dev, unsigned offset)
209{
210 struct mxc_bank_info *bank = dev_get_priv(dev);
Simon Glass441d0cf2014-10-01 19:57:26 -0600211
212 /* Configure GPIO direction as input. */
213 mxc_gpio_bank_direction(bank->regs, offset, MXC_GPIO_DIRECTION_IN);
214
215 return 0;
216}
217
218/* set GPIO pin 'gpio' as an output, with polarity 'value' */
219static int mxc_gpio_direction_output(struct udevice *dev, unsigned offset,
220 int value)
221{
222 struct mxc_bank_info *bank = dev_get_priv(dev);
Simon Glass441d0cf2014-10-01 19:57:26 -0600223
224 /* Configure GPIO output value. */
225 mxc_gpio_bank_set_value(bank->regs, offset, value);
226
227 /* Configure GPIO direction as output. */
228 mxc_gpio_bank_direction(bank->regs, offset, MXC_GPIO_DIRECTION_OUT);
229
230 return 0;
231}
232
233/* read GPIO IN value of pin 'gpio' */
234static int mxc_gpio_get_value(struct udevice *dev, unsigned offset)
235{
236 struct mxc_bank_info *bank = dev_get_priv(dev);
Simon Glass441d0cf2014-10-01 19:57:26 -0600237
238 return mxc_gpio_bank_get_value(bank->regs, offset);
239}
240
241/* write GPIO OUT value to pin 'gpio' */
242static int mxc_gpio_set_value(struct udevice *dev, unsigned offset,
243 int value)
244{
245 struct mxc_bank_info *bank = dev_get_priv(dev);
Simon Glass441d0cf2014-10-01 19:57:26 -0600246
247 mxc_gpio_bank_set_value(bank->regs, offset, value);
248
249 return 0;
250}
251
Simon Glass441d0cf2014-10-01 19:57:26 -0600252static int mxc_gpio_get_function(struct udevice *dev, unsigned offset)
253{
254 struct mxc_bank_info *bank = dev_get_priv(dev);
255
Simon Glass441d0cf2014-10-01 19:57:26 -0600256 /* GPIOF_FUNC is not implemented yet */
257 if (mxc_gpio_is_output(bank->regs, offset))
258 return GPIOF_OUTPUT;
259 else
260 return GPIOF_INPUT;
261}
262
263static const struct dm_gpio_ops gpio_mxc_ops = {
Simon Glass441d0cf2014-10-01 19:57:26 -0600264 .direction_input = mxc_gpio_direction_input,
265 .direction_output = mxc_gpio_direction_output,
266 .get_value = mxc_gpio_get_value,
267 .set_value = mxc_gpio_set_value,
268 .get_function = mxc_gpio_get_function,
Simon Glass441d0cf2014-10-01 19:57:26 -0600269};
270
Simon Glass441d0cf2014-10-01 19:57:26 -0600271static int mxc_gpio_probe(struct udevice *dev)
272{
273 struct mxc_bank_info *bank = dev_get_priv(dev);
274 struct mxc_gpio_plat *plat = dev_get_platdata(dev);
Simon Glasse564f052015-03-05 12:25:20 -0700275 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glass441d0cf2014-10-01 19:57:26 -0600276 int banknum;
277 char name[18], *str;
278
Peng Fan637a7692015-02-10 14:46:33 +0800279 banknum = plat->bank_index;
Simon Glass441d0cf2014-10-01 19:57:26 -0600280 sprintf(name, "GPIO%d_", banknum + 1);
281 str = strdup(name);
282 if (!str)
283 return -ENOMEM;
284 uc_priv->bank_name = str;
285 uc_priv->gpio_count = GPIO_PER_BANK;
286 bank->regs = plat->regs;
287
288 return 0;
289}
290
Peng Fan99c0ae12015-02-10 14:46:34 +0800291static int mxc_gpio_bind(struct udevice *dev)
292{
293 struct mxc_gpio_plat *plat = dev->platdata;
294 fdt_addr_t addr;
295
296 /*
297 * If platdata already exsits, directly return.
298 * Actually only when DT is not supported, platdata
299 * is statically initialized in U_BOOT_DEVICES.Here
300 * will return.
301 */
302 if (plat)
303 return 0;
304
Simon Glassa821c4a2017-05-17 17:18:05 -0600305 addr = devfdt_get_addr(dev);
Peng Fan99c0ae12015-02-10 14:46:34 +0800306 if (addr == FDT_ADDR_T_NONE)
Simon Glass7c843192017-09-17 16:54:53 -0600307 return -EINVAL;
Peng Fan99c0ae12015-02-10 14:46:34 +0800308
309 /*
310 * TODO:
311 * When every board is converted to driver model and DT is supported,
312 * this can be done by auto-alloc feature, but not using calloc
313 * to alloc memory for platdata.
Simon Glass4d686042017-09-17 16:54:52 -0600314 *
315 * For example mxc_plat below uses platform data rather than device
316 * tree.
317 *
318 * NOTE: DO NOT COPY this code if you are using device tree.
Peng Fan99c0ae12015-02-10 14:46:34 +0800319 */
320 plat = calloc(1, sizeof(*plat));
321 if (!plat)
322 return -ENOMEM;
323
324 plat->regs = (struct gpio_regs *)addr;
325 plat->bank_index = dev->req_seq;
326 dev->platdata = plat;
327
328 return 0;
329}
330
331static const struct udevice_id mxc_gpio_ids[] = {
332 { .compatible = "fsl,imx35-gpio" },
333 { }
334};
335
Simon Glass441d0cf2014-10-01 19:57:26 -0600336U_BOOT_DRIVER(gpio_mxc) = {
337 .name = "gpio_mxc",
338 .id = UCLASS_GPIO,
339 .ops = &gpio_mxc_ops,
340 .probe = mxc_gpio_probe,
341 .priv_auto_alloc_size = sizeof(struct mxc_bank_info),
Peng Fan99c0ae12015-02-10 14:46:34 +0800342 .of_match = mxc_gpio_ids,
343 .bind = mxc_gpio_bind,
344};
345
Masahiro Yamada0f925822015-08-12 07:31:55 +0900346#if !CONFIG_IS_ENABLED(OF_CONTROL)
Peng Fan99c0ae12015-02-10 14:46:34 +0800347static const struct mxc_gpio_plat mxc_plat[] = {
348 { 0, (struct gpio_regs *)GPIO1_BASE_ADDR },
349 { 1, (struct gpio_regs *)GPIO2_BASE_ADDR },
350 { 2, (struct gpio_regs *)GPIO3_BASE_ADDR },
351#if defined(CONFIG_MX25) || defined(CONFIG_MX27) || defined(CONFIG_MX51) || \
Peng Fan8953d862018-01-10 13:20:42 +0800352 defined(CONFIG_MX53) || defined(CONFIG_MX6) || \
353 defined(CONFIG_MX8M)
Peng Fan99c0ae12015-02-10 14:46:34 +0800354 { 3, (struct gpio_regs *)GPIO4_BASE_ADDR },
355#endif
Peng Fan8953d862018-01-10 13:20:42 +0800356#if defined(CONFIG_MX27) || defined(CONFIG_MX53) || defined(CONFIG_MX6) || \
357 defined(CONFIG_MX8M)
Peng Fan99c0ae12015-02-10 14:46:34 +0800358 { 4, (struct gpio_regs *)GPIO5_BASE_ADDR },
Peng Fan8953d862018-01-10 13:20:42 +0800359#ifndef CONFIG_MX8M
Peng Fan99c0ae12015-02-10 14:46:34 +0800360 { 5, (struct gpio_regs *)GPIO6_BASE_ADDR },
361#endif
Peng Fan8953d862018-01-10 13:20:42 +0800362#endif
Peng Fan99c0ae12015-02-10 14:46:34 +0800363#if defined(CONFIG_MX53) || defined(CONFIG_MX6)
364 { 6, (struct gpio_regs *)GPIO7_BASE_ADDR },
365#endif
Simon Glass441d0cf2014-10-01 19:57:26 -0600366};
367
368U_BOOT_DEVICES(mxc_gpios) = {
369 { "gpio_mxc", &mxc_plat[0] },
370 { "gpio_mxc", &mxc_plat[1] },
371 { "gpio_mxc", &mxc_plat[2] },
372#if defined(CONFIG_MX25) || defined(CONFIG_MX27) || defined(CONFIG_MX51) || \
Peng Fan8953d862018-01-10 13:20:42 +0800373 defined(CONFIG_MX53) || defined(CONFIG_MX6) || \
374 defined(CONFIG_MX8M)
Simon Glass441d0cf2014-10-01 19:57:26 -0600375 { "gpio_mxc", &mxc_plat[3] },
376#endif
Peng Fan8953d862018-01-10 13:20:42 +0800377#if defined(CONFIG_MX27) || defined(CONFIG_MX53) || defined(CONFIG_MX6) || \
378 defined(CONFIG_MX8M)
Simon Glass441d0cf2014-10-01 19:57:26 -0600379 { "gpio_mxc", &mxc_plat[4] },
Peng Fan8953d862018-01-10 13:20:42 +0800380#ifndef CONFIG_MX8M
Simon Glass441d0cf2014-10-01 19:57:26 -0600381 { "gpio_mxc", &mxc_plat[5] },
382#endif
Peng Fan8953d862018-01-10 13:20:42 +0800383#endif
Simon Glass441d0cf2014-10-01 19:57:26 -0600384#if defined(CONFIG_MX53) || defined(CONFIG_MX6)
385 { "gpio_mxc", &mxc_plat[6] },
386#endif
387};
388#endif
Peng Fan99c0ae12015-02-10 14:46:34 +0800389#endif