blob: 49b1054660ac81d467c6f0d7684d8269ff8a1092 [file] [log] [blame]
Minkyu Kangab693e92010-02-12 18:17:52 +09001/*
2 * (C) Copyright 2009 Samsung Electronics
3 * Minkyu Kang <mk7.kang@samsung.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Minkyu Kangab693e92010-02-12 18:17:52 +09006 */
7
8#include <common.h>
Simon Glassb8809e62014-10-20 19:48:40 -06009#include <dm.h>
10#include <errno.h>
11#include <fdtdec.h>
12#include <malloc.h>
Minkyu Kangab693e92010-02-12 18:17:52 +090013#include <asm/io.h>
Joe Hershberger365d6072011-11-11 15:55:36 -060014#include <asm/gpio.h>
Simon Glassb8809e62014-10-20 19:48:40 -060015#include <dm/device-internal.h>
Simon Glass1d08b4b2015-01-05 20:05:34 -070016#include <dt-bindings/gpio/gpio.h>
Simon Glassb8809e62014-10-20 19:48:40 -060017
18DECLARE_GLOBAL_DATA_PTR;
Minkyu Kangab693e92010-02-12 18:17:52 +090019
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +053020#define S5P_GPIO_GET_PIN(x) (x % GPIO_PER_BANK)
Przemyslaw Marczak8475c862014-01-22 11:24:10 +010021
Simon Glass3a233db2014-10-20 19:48:38 -060022#define CON_MASK(val) (0xf << ((val) << 2))
23#define CON_SFR(gpio, cfg) ((cfg) << ((gpio) << 2))
24#define CON_SFR_UNSHIFT(val, gpio) ((val) >> ((gpio) << 2))
Minkyu Kangab693e92010-02-12 18:17:52 +090025
Simon Glass3a233db2014-10-20 19:48:38 -060026#define DAT_MASK(gpio) (0x1 << (gpio))
27#define DAT_SET(gpio) (0x1 << (gpio))
Minkyu Kangab693e92010-02-12 18:17:52 +090028
Simon Glass3a233db2014-10-20 19:48:38 -060029#define PULL_MASK(gpio) (0x3 << ((gpio) << 1))
30#define PULL_MODE(gpio, pull) ((pull) << ((gpio) << 1))
Minkyu Kangab693e92010-02-12 18:17:52 +090031
Simon Glass3a233db2014-10-20 19:48:38 -060032#define DRV_MASK(gpio) (0x3 << ((gpio) << 1))
33#define DRV_SET(gpio, mode) ((mode) << ((gpio) << 1))
34#define RATE_MASK(gpio) (0x1 << (gpio + 16))
35#define RATE_SET(gpio) (0x1 << (gpio + 16))
Minkyu Kangab693e92010-02-12 18:17:52 +090036
Simon Glassb8809e62014-10-20 19:48:40 -060037/* Platform data for each bank */
38struct exynos_gpio_platdata {
39 struct s5p_gpio_bank *bank;
40 const char *bank_name; /* Name of port, e.g. 'gpa0" */
41};
42
43/* Information about each bank at run-time */
44struct exynos_bank_info {
Simon Glassb8809e62014-10-20 19:48:40 -060045 struct s5p_gpio_bank *bank;
46};
47
48static struct s5p_gpio_bank *s5p_gpio_get_bank(unsigned int gpio)
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +053049{
Simon Glassb8809e62014-10-20 19:48:40 -060050 const struct gpio_info *data;
51 unsigned int upto;
52 int i, count;
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +053053
Simon Glassb8809e62014-10-20 19:48:40 -060054 data = get_gpio_data();
55 count = get_bank_num();
56 upto = 0;
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +053057
Simon Glassb8809e62014-10-20 19:48:40 -060058 for (i = 0; i < count; i++) {
59 debug("i=%d, upto=%d\n", i, upto);
60 if (gpio < data->max_gpio) {
61 struct s5p_gpio_bank *bank;
62 bank = (struct s5p_gpio_bank *)data->reg_addr;
63 bank += (gpio - upto) / GPIO_PER_BANK;
64 debug("gpio=%d, bank=%p\n", gpio, bank);
65 return bank;
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +053066 }
Simon Glassb8809e62014-10-20 19:48:40 -060067
68 upto = data->max_gpio;
69 data++;
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +053070 }
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +053071
Simon Glassb8809e62014-10-20 19:48:40 -060072 return NULL;
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +053073}
74
75static void s5p_gpio_cfg_pin(struct s5p_gpio_bank *bank, int gpio, int cfg)
Minkyu Kangab693e92010-02-12 18:17:52 +090076{
77 unsigned int value;
78
79 value = readl(&bank->con);
80 value &= ~CON_MASK(gpio);
81 value |= CON_SFR(gpio, cfg);
82 writel(value, &bank->con);
83}
84
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +053085static void s5p_gpio_set_value(struct s5p_gpio_bank *bank, int gpio, int en)
Minkyu Kangab693e92010-02-12 18:17:52 +090086{
87 unsigned int value;
88
89 value = readl(&bank->dat);
90 value &= ~DAT_MASK(gpio);
91 if (en)
92 value |= DAT_SET(gpio);
93 writel(value, &bank->dat);
94}
95
Simon Glassb8809e62014-10-20 19:48:40 -060096#ifdef CONFIG_SPL_BUILD
97/* Common GPIO API - SPL does not support driver model yet */
98int gpio_set_value(unsigned gpio, int value)
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +053099{
Simon Glassb8809e62014-10-20 19:48:40 -0600100 s5p_gpio_set_value(s5p_gpio_get_bank(gpio),
101 s5p_gpio_get_pin(gpio), value);
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530102
Simon Glassb8809e62014-10-20 19:48:40 -0600103 return 0;
104}
105#else
106static int s5p_gpio_get_cfg_pin(struct s5p_gpio_bank *bank, int gpio)
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530107{
Simon Glassb8809e62014-10-20 19:48:40 -0600108 unsigned int value;
109
110 value = readl(&bank->con);
111 value &= CON_MASK(gpio);
112 return CON_SFR_UNSHIFT(value, gpio);
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530113}
114
115static unsigned int s5p_gpio_get_value(struct s5p_gpio_bank *bank, int gpio)
Minkyu Kangab693e92010-02-12 18:17:52 +0900116{
117 unsigned int value;
118
119 value = readl(&bank->dat);
120 return !!(value & DAT_MASK(gpio));
121}
Simon Glassb8809e62014-10-20 19:48:40 -0600122#endif /* CONFIG_SPL_BUILD */
Minkyu Kangab693e92010-02-12 18:17:52 +0900123
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530124static void s5p_gpio_set_pull(struct s5p_gpio_bank *bank, int gpio, int mode)
Minkyu Kangab693e92010-02-12 18:17:52 +0900125{
126 unsigned int value;
127
128 value = readl(&bank->pull);
129 value &= ~PULL_MASK(gpio);
130
131 switch (mode) {
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530132 case S5P_GPIO_PULL_DOWN:
133 case S5P_GPIO_PULL_UP:
Minkyu Kangab693e92010-02-12 18:17:52 +0900134 value |= PULL_MODE(gpio, mode);
135 break;
136 default:
Minkyu Kangffb4b022010-05-28 12:34:29 +0900137 break;
Minkyu Kangab693e92010-02-12 18:17:52 +0900138 }
139
140 writel(value, &bank->pull);
141}
142
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530143static void s5p_gpio_set_drv(struct s5p_gpio_bank *bank, int gpio, int mode)
Minkyu Kangab693e92010-02-12 18:17:52 +0900144{
145 unsigned int value;
146
147 value = readl(&bank->drv);
148 value &= ~DRV_MASK(gpio);
149
150 switch (mode) {
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530151 case S5P_GPIO_DRV_1X:
152 case S5P_GPIO_DRV_2X:
153 case S5P_GPIO_DRV_3X:
154 case S5P_GPIO_DRV_4X:
Minkyu Kangab693e92010-02-12 18:17:52 +0900155 value |= DRV_SET(gpio, mode);
156 break;
157 default:
158 return;
159 }
160
161 writel(value, &bank->drv);
162}
163
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530164static void s5p_gpio_set_rate(struct s5p_gpio_bank *bank, int gpio, int mode)
Minkyu Kangab693e92010-02-12 18:17:52 +0900165{
166 unsigned int value;
167
168 value = readl(&bank->drv);
169 value &= ~RATE_MASK(gpio);
170
171 switch (mode) {
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530172 case S5P_GPIO_DRV_FAST:
173 case S5P_GPIO_DRV_SLOW:
Minkyu Kangab693e92010-02-12 18:17:52 +0900174 value |= RATE_SET(gpio);
175 break;
176 default:
177 return;
178 }
179
180 writel(value, &bank->drv);
181}
Łukasz Majewski9f15bc02011-08-22 22:34:58 +0000182
Joe Hershberger365d6072011-11-11 15:55:36 -0600183int s5p_gpio_get_pin(unsigned gpio)
Łukasz Majewski9f15bc02011-08-22 22:34:58 +0000184{
Przemyslaw Marczak8475c862014-01-22 11:24:10 +0100185 return S5P_GPIO_GET_PIN(gpio);
Łukasz Majewski9f15bc02011-08-22 22:34:58 +0000186}
187
Simon Glassb8809e62014-10-20 19:48:40 -0600188/* Driver model interface */
189#ifndef CONFIG_SPL_BUILD
Simon Glassb8809e62014-10-20 19:48:40 -0600190/* set GPIO pin 'gpio' as an input */
191static int exynos_gpio_direction_input(struct udevice *dev, unsigned offset)
192{
193 struct exynos_bank_info *state = dev_get_priv(dev);
Simon Glassb8809e62014-10-20 19:48:40 -0600194
195 /* Configure GPIO direction as input. */
196 s5p_gpio_cfg_pin(state->bank, offset, S5P_GPIO_INPUT);
197
198 return 0;
199}
200
201/* set GPIO pin 'gpio' as an output, with polarity 'value' */
202static int exynos_gpio_direction_output(struct udevice *dev, unsigned offset,
203 int value)
204{
205 struct exynos_bank_info *state = dev_get_priv(dev);
Simon Glassb8809e62014-10-20 19:48:40 -0600206
207 /* Configure GPIO output value. */
208 s5p_gpio_set_value(state->bank, offset, value);
209
210 /* Configure GPIO direction as output. */
211 s5p_gpio_cfg_pin(state->bank, offset, S5P_GPIO_OUTPUT);
212
213 return 0;
214}
215
216/* read GPIO IN value of pin 'gpio' */
217static int exynos_gpio_get_value(struct udevice *dev, unsigned offset)
218{
219 struct exynos_bank_info *state = dev_get_priv(dev);
Simon Glassb8809e62014-10-20 19:48:40 -0600220
221 return s5p_gpio_get_value(state->bank, offset);
222}
223
224/* write GPIO OUT value to pin 'gpio' */
225static int exynos_gpio_set_value(struct udevice *dev, unsigned offset,
226 int value)
227{
228 struct exynos_bank_info *state = dev_get_priv(dev);
Simon Glassb8809e62014-10-20 19:48:40 -0600229
230 s5p_gpio_set_value(state->bank, offset, value);
231
232 return 0;
233}
Simon Glassb8809e62014-10-20 19:48:40 -0600234#endif /* nCONFIG_SPL_BUILD */
235
236/*
237 * There is no common GPIO API for pull, drv, pin, rate (yet). These
238 * functions are kept here to preserve function ordering for review.
239 */
Akshay Saraswatf6ae1ca2014-05-13 10:30:14 +0530240void gpio_set_pull(int gpio, int mode)
241{
242 s5p_gpio_set_pull(s5p_gpio_get_bank(gpio),
243 s5p_gpio_get_pin(gpio), mode);
244}
245
246void gpio_set_drv(int gpio, int mode)
247{
248 s5p_gpio_set_drv(s5p_gpio_get_bank(gpio),
249 s5p_gpio_get_pin(gpio), mode);
250}
251
252void gpio_cfg_pin(int gpio, int cfg)
253{
254 s5p_gpio_cfg_pin(s5p_gpio_get_bank(gpio),
255 s5p_gpio_get_pin(gpio), cfg);
256}
257
258void gpio_set_rate(int gpio, int mode)
259{
260 s5p_gpio_set_rate(s5p_gpio_get_bank(gpio),
261 s5p_gpio_get_pin(gpio), mode);
262}
Simon Glassb8809e62014-10-20 19:48:40 -0600263
264#ifndef CONFIG_SPL_BUILD
265static int exynos_gpio_get_function(struct udevice *dev, unsigned offset)
266{
267 struct exynos_bank_info *state = dev_get_priv(dev);
268 int cfg;
269
Simon Glassb8809e62014-10-20 19:48:40 -0600270 cfg = s5p_gpio_get_cfg_pin(state->bank, offset);
271 if (cfg == S5P_GPIO_OUTPUT)
272 return GPIOF_OUTPUT;
273 else if (cfg == S5P_GPIO_INPUT)
274 return GPIOF_INPUT;
275 else
276 return GPIOF_FUNC;
277}
278
Simon Glass1d08b4b2015-01-05 20:05:34 -0700279static int exynos_gpio_xlate(struct udevice *dev, struct gpio_desc *desc,
280 struct fdtdec_phandle_args *args)
281{
282 desc->offset = args->args[0];
283 desc->flags = args->args[1] & GPIO_ACTIVE_LOW ? GPIOD_ACTIVE_LOW : 0;
284
285 return 0;
286}
287
Simon Glassb8809e62014-10-20 19:48:40 -0600288static const struct dm_gpio_ops gpio_exynos_ops = {
Simon Glassb8809e62014-10-20 19:48:40 -0600289 .direction_input = exynos_gpio_direction_input,
290 .direction_output = exynos_gpio_direction_output,
291 .get_value = exynos_gpio_get_value,
292 .set_value = exynos_gpio_set_value,
293 .get_function = exynos_gpio_get_function,
Simon Glass1d08b4b2015-01-05 20:05:34 -0700294 .xlate = exynos_gpio_xlate,
Simon Glassb8809e62014-10-20 19:48:40 -0600295};
296
297static int gpio_exynos_probe(struct udevice *dev)
298{
Simon Glasse564f052015-03-05 12:25:20 -0700299 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glassb8809e62014-10-20 19:48:40 -0600300 struct exynos_bank_info *priv = dev->priv;
301 struct exynos_gpio_platdata *plat = dev->platdata;
302
303 /* Only child devices have ports */
304 if (!plat)
305 return 0;
306
307 priv->bank = plat->bank;
308
309 uc_priv->gpio_count = GPIO_PER_BANK;
310 uc_priv->bank_name = plat->bank_name;
311
312 return 0;
313}
314
315/**
316 * We have a top-level GPIO device with no actual GPIOs. It has a child
317 * device for each Exynos GPIO bank.
318 */
319static int gpio_exynos_bind(struct udevice *parent)
320{
321 struct exynos_gpio_platdata *plat = parent->platdata;
322 struct s5p_gpio_bank *bank, *base;
323 const void *blob = gd->fdt_blob;
324 int node;
325
326 /* If this is a child device, there is nothing to do here */
327 if (plat)
328 return 0;
329
330 base = (struct s5p_gpio_bank *)fdtdec_get_addr(gd->fdt_blob,
331 parent->of_offset, "reg");
332 for (node = fdt_first_subnode(blob, parent->of_offset), bank = base;
333 node > 0;
334 node = fdt_next_subnode(blob, node), bank++) {
335 struct exynos_gpio_platdata *plat;
336 struct udevice *dev;
337 fdt_addr_t reg;
338 int ret;
339
340 if (!fdtdec_get_bool(blob, node, "gpio-controller"))
341 continue;
342 plat = calloc(1, sizeof(*plat));
343 if (!plat)
344 return -ENOMEM;
345 reg = fdtdec_get_addr(blob, node, "reg");
346 if (reg != FDT_ADDR_T_NONE)
347 bank = (struct s5p_gpio_bank *)((ulong)base + reg);
348 plat->bank = bank;
349 plat->bank_name = fdt_get_name(blob, node, NULL);
350 debug("dev at %p: %s\n", bank, plat->bank_name);
351
352 ret = device_bind(parent, parent->driver,
353 plat->bank_name, plat, -1, &dev);
354 if (ret)
355 return ret;
Simon Glass1d08b4b2015-01-05 20:05:34 -0700356 dev->of_offset = node;
Simon Glassb8809e62014-10-20 19:48:40 -0600357 }
358
359 return 0;
360}
361
362static const struct udevice_id exynos_gpio_ids[] = {
363 { .compatible = "samsung,s5pc100-pinctrl" },
364 { .compatible = "samsung,s5pc110-pinctrl" },
365 { .compatible = "samsung,exynos4210-pinctrl" },
366 { .compatible = "samsung,exynos4x12-pinctrl" },
367 { .compatible = "samsung,exynos5250-pinctrl" },
368 { .compatible = "samsung,exynos5420-pinctrl" },
369 { }
370};
371
372U_BOOT_DRIVER(gpio_exynos) = {
373 .name = "gpio_exynos",
374 .id = UCLASS_GPIO,
375 .of_match = exynos_gpio_ids,
376 .bind = gpio_exynos_bind,
377 .probe = gpio_exynos_probe,
378 .priv_auto_alloc_size = sizeof(struct exynos_bank_info),
379 .ops = &gpio_exynos_ops,
380};
381#endif