blob: 700098446b501c5578913c57b2d1fa948e4b1d44 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassb43d0442012-02-15 15:51:13 -08002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glassb43d0442012-02-15 15:51:13 -08004 */
5
6#include <common.h>
Simon Glassb4d70702014-02-26 15:59:25 -07007#include <dm.h>
8#include <fdtdec.h>
Simon Glass0f2af882020-05-10 11:40:05 -06009#include <log.h>
Simon Glassb4d70702014-02-26 15:59:25 -070010#include <malloc.h>
Simon Glass3176b6c2020-07-07 13:11:44 -060011#include <acpi/acpi_device.h>
Simon Glassb43d0442012-02-15 15:51:13 -080012#include <asm/gpio.h>
Simon Glass3176b6c2020-07-07 13:11:44 -060013#include <dm/acpi.h>
Simon Glass95588622020-12-22 19:30:28 -070014#include <dm/device-internal.h>
Patrick Delaunay1b4a22f2020-01-13 11:35:15 +010015#include <dm/device_compat.h>
Patrick Delaunay28bdaa52020-01-13 11:35:14 +010016#include <dm/lists.h>
Simon Glass12faa022017-05-18 20:09:18 -060017#include <dm/of.h>
Patrick Delaunay28bdaa52020-01-13 11:35:14 +010018#include <dm/pinctrl.h>
Simon Glass16e10402015-01-05 20:05:29 -070019#include <dt-bindings/gpio/gpio.h>
Patrick Delaunay23aee612020-01-13 11:35:13 +010020#include <dt-bindings/gpio/sandbox-gpio.h>
Simon Glassb43d0442012-02-15 15:51:13 -080021
Simon Glassb43d0442012-02-15 15:51:13 -080022
23struct gpio_state {
24 const char *label; /* label given by requester */
Simon Glass3f2d5752021-02-04 21:21:59 -070025 ulong flags; /* flags (GPIOD_...) */
Simon Glassb43d0442012-02-15 15:51:13 -080026};
27
Simon Glass3f2d5752021-02-04 21:21:59 -070028/* Access routines for GPIO info */
29static struct gpio_state *get_gpio_state(struct udevice *dev, uint offset)
Simon Glassb43d0442012-02-15 15:51:13 -080030{
Simon Glassde0977b2015-03-05 12:25:20 -070031 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glassb4d70702014-02-26 15:59:25 -070032 struct gpio_state *state = dev_get_priv(dev);
33
34 if (offset >= uc_priv->gpio_count) {
Simon Glassb4d70702014-02-26 15:59:25 -070035 printf("sandbox_gpio: error: invalid gpio %u\n", offset);
Simon Glass3f2d5752021-02-04 21:21:59 -070036 return NULL;
Simon Glassb43d0442012-02-15 15:51:13 -080037 }
38
Simon Glass3f2d5752021-02-04 21:21:59 -070039 return &state[offset];
40}
41
42/* Access routines for GPIO flags */
43static ulong *get_gpio_flags(struct udevice *dev, unsigned int offset)
44{
45 struct gpio_state *state = get_gpio_state(dev, offset);
46
47 if (!state)
48 return NULL;
49
50 return &state->flags;
Patrick Delaunay28bdaa52020-01-13 11:35:14 +010051
Simon Glassb43d0442012-02-15 15:51:13 -080052}
53
Patrick Delaunay28bdaa52020-01-13 11:35:14 +010054static int get_gpio_flag(struct udevice *dev, unsigned int offset, ulong flag)
Simon Glassb43d0442012-02-15 15:51:13 -080055{
Simon Glass3f2d5752021-02-04 21:21:59 -070056 return (*get_gpio_flags(dev, offset) & flag) != 0;
Simon Glassb43d0442012-02-15 15:51:13 -080057}
58
Patrick Delaunay28bdaa52020-01-13 11:35:14 +010059static int set_gpio_flag(struct udevice *dev, unsigned int offset, ulong flag,
Simon Glassb4d70702014-02-26 15:59:25 -070060 int value)
Simon Glassb43d0442012-02-15 15:51:13 -080061{
Simon Glass44a1a5b2021-02-04 21:22:00 -070062 struct gpio_state *state = get_gpio_state(dev, offset);
Simon Glassb43d0442012-02-15 15:51:13 -080063
64 if (value)
Simon Glass44a1a5b2021-02-04 21:22:00 -070065 state->flags |= flag;
Simon Glassb43d0442012-02-15 15:51:13 -080066 else
Simon Glass44a1a5b2021-02-04 21:22:00 -070067 state->flags &= ~flag;
Simon Glassb43d0442012-02-15 15:51:13 -080068
69 return 0;
70}
71
Simon Glassb43d0442012-02-15 15:51:13 -080072/*
73 * Back-channel sandbox-internal-only access to GPIO state
74 */
75
Heiko Schocherb74fcb42014-05-22 12:43:05 +020076int sandbox_gpio_get_value(struct udevice *dev, unsigned offset)
Simon Glassb43d0442012-02-15 15:51:13 -080077{
Simon Glass44a1a5b2021-02-04 21:22:00 -070078 struct gpio_state *state = get_gpio_state(dev, offset);
Simon Glass59356522021-02-04 21:22:07 -070079 bool val;
Simon Glass44a1a5b2021-02-04 21:22:00 -070080
Patrick Delaunay28bdaa52020-01-13 11:35:14 +010081 if (get_gpio_flag(dev, offset, GPIOD_IS_OUT))
Simon Glassb4d70702014-02-26 15:59:25 -070082 debug("sandbox_gpio: get_value on output gpio %u\n", offset);
Simon Glass44a1a5b2021-02-04 21:22:00 -070083
Simon Glass59356522021-02-04 21:22:07 -070084 if (state->flags & GPIOD_EXT_DRIVEN)
85 val = state->flags & GPIOD_EXT_HIGH;
86 else
87 val = false;
88
89 return val;
Simon Glassb43d0442012-02-15 15:51:13 -080090}
91
Heiko Schocherb74fcb42014-05-22 12:43:05 +020092int sandbox_gpio_set_value(struct udevice *dev, unsigned offset, int value)
Simon Glassb43d0442012-02-15 15:51:13 -080093{
Simon Glass59356522021-02-04 21:22:07 -070094 set_gpio_flag(dev, offset, GPIOD_EXT_DRIVEN | GPIOD_EXT_HIGH, value);
Simon Glass44a1a5b2021-02-04 21:22:00 -070095
96 return 0;
Simon Glassb43d0442012-02-15 15:51:13 -080097}
98
Heiko Schocherb74fcb42014-05-22 12:43:05 +020099int sandbox_gpio_get_direction(struct udevice *dev, unsigned offset)
Simon Glassb43d0442012-02-15 15:51:13 -0800100{
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100101 return get_gpio_flag(dev, offset, GPIOD_IS_OUT);
Simon Glassb43d0442012-02-15 15:51:13 -0800102}
103
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200104int sandbox_gpio_set_direction(struct udevice *dev, unsigned offset, int output)
Simon Glassb43d0442012-02-15 15:51:13 -0800105{
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100106 set_gpio_flag(dev, offset, GPIOD_IS_OUT, output);
Simon Glass44a1a5b2021-02-04 21:22:00 -0700107 set_gpio_flag(dev, offset, GPIOD_IS_IN, !output);
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100108
109 return 0;
110}
111
Simon Glass3f2d5752021-02-04 21:21:59 -0700112ulong sandbox_gpio_get_flags(struct udevice *dev, uint offset)
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100113{
Simon Glass44a1a5b2021-02-04 21:22:00 -0700114 ulong flags = *get_gpio_flags(dev, offset);
115
116 return flags & ~GPIOD_SANDBOX_MASK;
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100117}
118
Simon Glass3f2d5752021-02-04 21:21:59 -0700119int sandbox_gpio_set_flags(struct udevice *dev, uint offset, ulong flags)
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100120{
Simon Glass44a1a5b2021-02-04 21:22:00 -0700121 struct gpio_state *state = get_gpio_state(dev, offset);
122
Simon Glass4d3b73e2021-02-04 21:22:02 -0700123 state->flags = flags;
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100124
125 return 0;
Simon Glassb43d0442012-02-15 15:51:13 -0800126}
127
128/*
129 * These functions implement the public interface within U-Boot
130 */
131
Simon Glassb4d70702014-02-26 15:59:25 -0700132/* set GPIO port 'offset' as an input */
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200133static int sb_gpio_direction_input(struct udevice *dev, unsigned offset)
Simon Glassb43d0442012-02-15 15:51:13 -0800134{
Simon Glassb4d70702014-02-26 15:59:25 -0700135 debug("%s: offset:%u\n", __func__, offset);
Simon Glassb43d0442012-02-15 15:51:13 -0800136
Simon Glassb4d70702014-02-26 15:59:25 -0700137 return sandbox_gpio_set_direction(dev, offset, 0);
Simon Glassb43d0442012-02-15 15:51:13 -0800138}
139
Simon Glassb4d70702014-02-26 15:59:25 -0700140/* set GPIO port 'offset' as an output, with polarity 'value' */
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200141static int sb_gpio_direction_output(struct udevice *dev, unsigned offset,
Simon Glassb4d70702014-02-26 15:59:25 -0700142 int value)
Simon Glassb43d0442012-02-15 15:51:13 -0800143{
Simon Glassae1e85b2021-02-04 21:22:01 -0700144 int ret;
145
Simon Glassb4d70702014-02-26 15:59:25 -0700146 debug("%s: offset:%u, value = %d\n", __func__, offset, value);
Simon Glassb43d0442012-02-15 15:51:13 -0800147
Simon Glassae1e85b2021-02-04 21:22:01 -0700148 ret = sandbox_gpio_set_direction(dev, offset, 1);
149 if (ret)
150 return ret;
Simon Glass59356522021-02-04 21:22:07 -0700151 ret = set_gpio_flag(dev, offset, GPIOD_IS_OUT_ACTIVE |
152 GPIOD_EXT_DRIVEN | GPIOD_EXT_HIGH, value);
Simon Glassae1e85b2021-02-04 21:22:01 -0700153 if (ret)
154 return ret;
155
156 return 0;
Simon Glassb43d0442012-02-15 15:51:13 -0800157}
158
Simon Glassb4d70702014-02-26 15:59:25 -0700159/* read GPIO IN value of port 'offset' */
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200160static int sb_gpio_get_value(struct udevice *dev, unsigned offset)
Simon Glassb43d0442012-02-15 15:51:13 -0800161{
Simon Glassb4d70702014-02-26 15:59:25 -0700162 debug("%s: offset:%u\n", __func__, offset);
Simon Glassb43d0442012-02-15 15:51:13 -0800163
Simon Glassb4d70702014-02-26 15:59:25 -0700164 return sandbox_gpio_get_value(dev, offset);
Simon Glassb43d0442012-02-15 15:51:13 -0800165}
166
Simon Glassb4d70702014-02-26 15:59:25 -0700167/* write GPIO OUT value to port 'offset' */
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200168static int sb_gpio_set_value(struct udevice *dev, unsigned offset, int value)
Simon Glassb43d0442012-02-15 15:51:13 -0800169{
Simon Glassae1e85b2021-02-04 21:22:01 -0700170 int ret;
171
Simon Glassb4d70702014-02-26 15:59:25 -0700172 debug("%s: offset:%u, value = %d\n", __func__, offset, value);
Simon Glassb43d0442012-02-15 15:51:13 -0800173
Simon Glassb4d70702014-02-26 15:59:25 -0700174 if (!sandbox_gpio_get_direction(dev, offset)) {
175 printf("sandbox_gpio: error: set_value on input gpio %u\n",
176 offset);
Simon Glassb43d0442012-02-15 15:51:13 -0800177 return -1;
178 }
179
Simon Glass59356522021-02-04 21:22:07 -0700180 ret = set_gpio_flag(dev, offset, GPIOD_IS_OUT_ACTIVE |
181 GPIOD_EXT_DRIVEN | GPIOD_EXT_HIGH, value);
Simon Glassae1e85b2021-02-04 21:22:01 -0700182 if (ret)
183 return ret;
184
185 return 0;
Simon Glassb43d0442012-02-15 15:51:13 -0800186}
187
Simon Glass32048632014-10-04 11:29:45 -0600188static int sb_gpio_get_function(struct udevice *dev, unsigned offset)
189{
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100190 if (get_gpio_flag(dev, offset, GPIOD_IS_OUT))
Simon Glass32048632014-10-04 11:29:45 -0600191 return GPIOF_OUTPUT;
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100192 if (get_gpio_flag(dev, offset, GPIOD_IS_IN))
193 return GPIOF_INPUT;
194
195 return GPIOF_INPUT; /*GPIO is not configurated */
Simon Glass32048632014-10-04 11:29:45 -0600196}
197
Simon Glass16e10402015-01-05 20:05:29 -0700198static int sb_gpio_xlate(struct udevice *dev, struct gpio_desc *desc,
Simon Glass12faa022017-05-18 20:09:18 -0600199 struct ofnode_phandle_args *args)
Simon Glass16e10402015-01-05 20:05:29 -0700200{
201 desc->offset = args->args[0];
202 if (args->args_count < 2)
203 return 0;
Patrick Delaunay23aee612020-01-13 11:35:13 +0100204 /* treat generic binding with gpio uclass */
205 gpio_xlate_offs_flags(dev, desc, args);
206
207 /* sandbox test specific, not defined in gpio.h */
208 if (args->args[1] & GPIO_IN)
Simon Glass16e10402015-01-05 20:05:29 -0700209 desc->flags |= GPIOD_IS_IN;
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100210
Patrick Delaunay23aee612020-01-13 11:35:13 +0100211 if (args->args[1] & GPIO_OUT)
Simon Glass16e10402015-01-05 20:05:29 -0700212 desc->flags |= GPIOD_IS_OUT;
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100213
Patrick Delaunay23aee612020-01-13 11:35:13 +0100214 if (args->args[1] & GPIO_OUT_ACTIVE)
Simon Glass16e10402015-01-05 20:05:29 -0700215 desc->flags |= GPIOD_IS_OUT_ACTIVE;
216
217 return 0;
218}
219
Simon Glass54befdd2021-02-04 21:21:55 -0700220static int sb_gpio_set_flags(struct udevice *dev, unsigned int offset,
221 ulong flags)
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100222{
Simon Glass3f2d5752021-02-04 21:21:59 -0700223 debug("%s: offset:%u, flags = %lx\n", __func__, offset, flags);
Simon Glass4d3b73e2021-02-04 21:22:02 -0700224 struct gpio_state *state = get_gpio_state(dev, offset);
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100225
Simon Glass4d3b73e2021-02-04 21:22:02 -0700226 if (flags & GPIOD_IS_OUT) {
Simon Glass59356522021-02-04 21:22:07 -0700227 flags |= GPIOD_EXT_DRIVEN;
Simon Glass4d3b73e2021-02-04 21:22:02 -0700228 if (flags & GPIOD_IS_OUT_ACTIVE)
229 flags |= GPIOD_EXT_HIGH;
230 else
231 flags &= ~GPIOD_EXT_HIGH;
Simon Glass59356522021-02-04 21:22:07 -0700232 } else {
233 flags |= state->flags & GPIOD_SANDBOX_MASK;
Simon Glass4d3b73e2021-02-04 21:22:02 -0700234 }
235 state->flags = flags;
236
237 return 0;
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100238}
239
Simon Glass3f2d5752021-02-04 21:21:59 -0700240static int sb_gpio_get_flags(struct udevice *dev, uint offset, ulong *flagsp)
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100241{
242 debug("%s: offset:%u\n", __func__, offset);
Simon Glass4d3b73e2021-02-04 21:22:02 -0700243 *flagsp = *get_gpio_flags(dev, offset) & ~GPIOD_SANDBOX_MASK;
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100244
245 return 0;
246}
247
Simon Glass3176b6c2020-07-07 13:11:44 -0600248#if CONFIG_IS_ENABLED(ACPIGEN)
249static int sb_gpio_get_acpi(const struct gpio_desc *desc,
250 struct acpi_gpio *gpio)
251{
252 int ret;
253
254 /* Note that gpio_get_acpi() zeroes *gpio before calling here */
255 gpio->pin_count = 1;
256 gpio->pins[0] = desc->offset;
257 ret = acpi_device_scope(desc->dev, gpio->resource,
258 sizeof(gpio->resource));
259 if (ret)
260 return log_ret(ret);
261
262 /* All of these values are just used for testing */
263 if (desc->flags & GPIOD_ACTIVE_LOW) {
264 gpio->pin0_addr = 0x80012 + desc->offset;
265 gpio->type = ACPI_GPIO_TYPE_INTERRUPT;
266 gpio->pull = ACPI_GPIO_PULL_DOWN;
267 gpio->interrupt_debounce_timeout = 4321;
268
269 /* We use the GpioInt part */
270 gpio->irq.pin = desc->offset;
271 gpio->irq.polarity = ACPI_IRQ_ACTIVE_BOTH;
272 gpio->irq.shared = ACPI_IRQ_SHARED;
273 gpio->irq.wake = ACPI_IRQ_WAKE;
274
275 /* The GpioIo part is only used for testing */
276 gpio->polarity = ACPI_GPIO_ACTIVE_LOW;
277 } else {
278 gpio->pin0_addr = 0xc00dc + desc->offset;
279 gpio->type = ACPI_GPIO_TYPE_IO;
280 gpio->pull = ACPI_GPIO_PULL_UP;
281 gpio->interrupt_debounce_timeout = 0;
282
283 /* The GpioInt part is not used */
284
285 /* We use the GpioIo part */
286 gpio->output_drive_strength = 1234;
287 gpio->io_shared = true;
288 gpio->io_restrict = ACPI_GPIO_IO_RESTRICT_INPUT;
289 gpio->polarity = 0;
290 }
291
292 return 0;
293}
294
295static int sb_gpio_get_name(const struct udevice *dev, char *out_name)
296{
297 return acpi_copy_name(out_name, "GPIO");
298}
299
300struct acpi_ops gpio_sandbox_acpi_ops = {
301 .get_name = sb_gpio_get_name,
302};
303#endif /* ACPIGEN */
304
Simon Glassb4d70702014-02-26 15:59:25 -0700305static const struct dm_gpio_ops gpio_sandbox_ops = {
Simon Glassb4d70702014-02-26 15:59:25 -0700306 .direction_input = sb_gpio_direction_input,
307 .direction_output = sb_gpio_direction_output,
308 .get_value = sb_gpio_get_value,
309 .set_value = sb_gpio_set_value,
Simon Glass32048632014-10-04 11:29:45 -0600310 .get_function = sb_gpio_get_function,
Simon Glass16e10402015-01-05 20:05:29 -0700311 .xlate = sb_gpio_xlate,
Simon Glass54befdd2021-02-04 21:21:55 -0700312 .set_flags = sb_gpio_set_flags,
Simon Glassd063ce92021-02-04 21:21:56 -0700313 .get_flags = sb_gpio_get_flags,
Simon Glass3176b6c2020-07-07 13:11:44 -0600314#if CONFIG_IS_ENABLED(ACPIGEN)
315 .get_acpi = sb_gpio_get_acpi,
316#endif
Simon Glassb4d70702014-02-26 15:59:25 -0700317};
318
Simon Glassaad29ae2020-12-03 16:55:21 -0700319static int sandbox_gpio_of_to_plat(struct udevice *dev)
Simon Glassb43d0442012-02-15 15:51:13 -0800320{
Simon Glassde0977b2015-03-05 12:25:20 -0700321 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glassb43d0442012-02-15 15:51:13 -0800322
Simon Glass9e7ab232018-02-03 10:36:59 -0700323 uc_priv->gpio_count = dev_read_u32_default(dev, "sandbox,gpio-count",
324 0);
Simon Glass1185fcb2017-05-18 20:09:20 -0600325 uc_priv->bank_name = dev_read_string(dev, "gpio-bank-name");
Simon Glassb43d0442012-02-15 15:51:13 -0800326
Simon Glassb4d70702014-02-26 15:59:25 -0700327 return 0;
328}
Simon Glassb43d0442012-02-15 15:51:13 -0800329
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200330static int gpio_sandbox_probe(struct udevice *dev)
Simon Glassb4d70702014-02-26 15:59:25 -0700331{
Simon Glassde0977b2015-03-05 12:25:20 -0700332 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glassb4d70702014-02-26 15:59:25 -0700333
Simon Glassf1d50f72020-12-19 10:40:13 -0700334 if (!dev_has_ofnode(dev))
Simon Glassb4d70702014-02-26 15:59:25 -0700335 /* Tell the uclass how many GPIOs we have */
336 uc_priv->gpio_count = CONFIG_SANDBOX_GPIO_COUNT;
Simon Glassb4d70702014-02-26 15:59:25 -0700337
Simon Glass95588622020-12-22 19:30:28 -0700338 dev_set_priv(dev,
339 calloc(sizeof(struct gpio_state), uc_priv->gpio_count));
Simon Glassb4d70702014-02-26 15:59:25 -0700340
341 return 0;
Simon Glassb43d0442012-02-15 15:51:13 -0800342}
Simon Glassb4d70702014-02-26 15:59:25 -0700343
Simon Glassa367f1d2014-10-04 11:29:46 -0600344static int gpio_sandbox_remove(struct udevice *dev)
345{
Simon Glass95588622020-12-22 19:30:28 -0700346 free(dev_get_priv(dev));
Simon Glassa367f1d2014-10-04 11:29:46 -0600347
348 return 0;
349}
350
Simon Glass767827a2014-06-11 23:29:45 -0600351static const struct udevice_id sandbox_gpio_ids[] = {
Simon Glassb4d70702014-02-26 15:59:25 -0700352 { .compatible = "sandbox,gpio" },
353 { }
354};
355
Walter Lozano2901ac62020-06-25 01:10:04 -0300356U_BOOT_DRIVER(sandbox_gpio) = {
357 .name = "sandbox_gpio",
Simon Glassb4d70702014-02-26 15:59:25 -0700358 .id = UCLASS_GPIO,
359 .of_match = sandbox_gpio_ids,
Simon Glassaad29ae2020-12-03 16:55:21 -0700360 .of_to_plat = sandbox_gpio_of_to_plat,
Simon Glassb4d70702014-02-26 15:59:25 -0700361 .probe = gpio_sandbox_probe,
Simon Glassa367f1d2014-10-04 11:29:46 -0600362 .remove = gpio_sandbox_remove,
Simon Glassb4d70702014-02-26 15:59:25 -0700363 .ops = &gpio_sandbox_ops,
Simon Glass3176b6c2020-07-07 13:11:44 -0600364 ACPI_OPS_PTR(&gpio_sandbox_acpi_ops)
Simon Glassb4d70702014-02-26 15:59:25 -0700365};
Patrick Delaunay1b4a22f2020-01-13 11:35:15 +0100366
Simon Glassdf65db82020-12-28 20:34:57 -0700367DM_DRIVER_ALIAS(sandbox_gpio, sandbox_gpio_alias)
Walter Lozano48e5b042020-06-25 01:10:06 -0300368
Patrick Delaunay1b4a22f2020-01-13 11:35:15 +0100369/* pincontrol: used only to check GPIO pin configuration (pinmux command) */
370
371struct sb_pinctrl_priv {
372 int pinctrl_ngpios;
373 struct list_head gpio_dev;
374};
375
376struct sb_gpio_bank {
377 struct udevice *gpio_dev;
378 struct list_head list;
379};
380
381static int sb_populate_gpio_dev_list(struct udevice *dev)
382{
383 struct sb_pinctrl_priv *priv = dev_get_priv(dev);
384 struct udevice *gpio_dev;
385 struct udevice *child;
386 struct sb_gpio_bank *gpio_bank;
387 int ret;
388
389 /*
390 * parse pin-controller sub-nodes (ie gpio bank nodes) and fill
391 * a list with all gpio device reference which belongs to the
392 * current pin-controller. This list is used to find pin_name and
393 * pin muxing
394 */
395 list_for_each_entry(child, &dev->child_head, sibling_node) {
396 ret = uclass_get_device_by_name(UCLASS_GPIO, child->name,
397 &gpio_dev);
398 if (ret < 0)
399 continue;
400
401 gpio_bank = malloc(sizeof(*gpio_bank));
402 if (!gpio_bank) {
403 dev_err(dev, "Not enough memory\n");
404 return -ENOMEM;
405 }
406
407 gpio_bank->gpio_dev = gpio_dev;
408 list_add_tail(&gpio_bank->list, &priv->gpio_dev);
409 }
410
411 return 0;
412}
413
414static int sb_pinctrl_get_pins_count(struct udevice *dev)
415{
416 struct sb_pinctrl_priv *priv = dev_get_priv(dev);
417 struct gpio_dev_priv *uc_priv;
418 struct sb_gpio_bank *gpio_bank;
419
420 /*
421 * if get_pins_count has already been executed once on this
422 * pin-controller, no need to run it again
423 */
424 if (priv->pinctrl_ngpios)
425 return priv->pinctrl_ngpios;
426
427 if (list_empty(&priv->gpio_dev))
428 sb_populate_gpio_dev_list(dev);
429 /*
430 * walk through all banks to retrieve the pin-controller
431 * pins number
432 */
433 list_for_each_entry(gpio_bank, &priv->gpio_dev, list) {
434 uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev);
435
436 priv->pinctrl_ngpios += uc_priv->gpio_count;
437 }
438
439 return priv->pinctrl_ngpios;
440}
441
442static struct udevice *sb_pinctrl_get_gpio_dev(struct udevice *dev,
443 unsigned int selector,
444 unsigned int *idx)
445{
446 struct sb_pinctrl_priv *priv = dev_get_priv(dev);
447 struct sb_gpio_bank *gpio_bank;
448 struct gpio_dev_priv *uc_priv;
449 int pin_count = 0;
450
451 if (list_empty(&priv->gpio_dev))
452 sb_populate_gpio_dev_list(dev);
453
454 /* look up for the bank which owns the requested pin */
455 list_for_each_entry(gpio_bank, &priv->gpio_dev, list) {
456 uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev);
457
458 if (selector < (pin_count + uc_priv->gpio_count)) {
459 /*
460 * we found the bank, convert pin selector to
461 * gpio bank index
462 */
463 *idx = selector - pin_count;
464
465 return gpio_bank->gpio_dev;
466 }
467 pin_count += uc_priv->gpio_count;
468 }
469
470 return NULL;
471}
472
473static const char *sb_pinctrl_get_pin_name(struct udevice *dev,
474 unsigned int selector)
475{
476 struct gpio_dev_priv *uc_priv;
477 struct udevice *gpio_dev;
478 unsigned int gpio_idx;
479 static char pin_name[PINNAME_SIZE];
480
481 /* look up for the bank which owns the requested pin */
482 gpio_dev = sb_pinctrl_get_gpio_dev(dev, selector, &gpio_idx);
483 if (!gpio_dev) {
484 snprintf(pin_name, PINNAME_SIZE, "Error");
485 } else {
486 uc_priv = dev_get_uclass_priv(gpio_dev);
487
488 snprintf(pin_name, PINNAME_SIZE, "%s%d",
489 uc_priv->bank_name,
490 gpio_idx);
491 }
492
493 return pin_name;
494}
495
Simon Glass3f2d5752021-02-04 21:21:59 -0700496static char *get_flags_string(ulong flags)
Patrick Delaunay1b4a22f2020-01-13 11:35:15 +0100497{
498 if (flags & GPIOD_OPEN_DRAIN)
499 return "drive-open-drain";
500 if (flags & GPIOD_OPEN_SOURCE)
501 return "drive-open-source";
502 if (flags & GPIOD_PULL_UP)
503 return "bias-pull-up";
504 if (flags & GPIOD_PULL_DOWN)
505 return "bias-pull-down";
506 return ".";
507}
508
509static int sb_pinctrl_get_pin_muxing(struct udevice *dev,
510 unsigned int selector,
511 char *buf, int size)
512{
513 struct udevice *gpio_dev;
514 unsigned int gpio_idx;
Simon Glass3f2d5752021-02-04 21:21:59 -0700515 ulong flags;
Patrick Delaunay1b4a22f2020-01-13 11:35:15 +0100516 int function;
517
518 /* look up for the bank which owns the requested pin */
519 gpio_dev = sb_pinctrl_get_gpio_dev(dev, selector, &gpio_idx);
520 if (!gpio_dev) {
521 snprintf(buf, size, "Error");
522 } else {
523 function = sb_gpio_get_function(gpio_dev, gpio_idx);
Simon Glass3f2d5752021-02-04 21:21:59 -0700524 flags = *get_gpio_flags(gpio_dev, gpio_idx);
Patrick Delaunay1b4a22f2020-01-13 11:35:15 +0100525
526 snprintf(buf, size, "gpio %s %s",
527 function == GPIOF_OUTPUT ? "output" : "input",
Simon Glass3f2d5752021-02-04 21:21:59 -0700528 get_flags_string(flags));
Patrick Delaunay1b4a22f2020-01-13 11:35:15 +0100529 }
530
531 return 0;
532}
Simon Glass3176b6c2020-07-07 13:11:44 -0600533
534#if CONFIG_IS_ENABLED(ACPIGEN)
535static int sb_pinctrl_get_name(const struct udevice *dev, char *out_name)
536{
537 return acpi_copy_name(out_name, "PINC");
538}
539#endif
Patrick Delaunay1b4a22f2020-01-13 11:35:15 +0100540
541static int sandbox_pinctrl_probe(struct udevice *dev)
542{
543 struct sb_pinctrl_priv *priv = dev_get_priv(dev);
544
545 INIT_LIST_HEAD(&priv->gpio_dev);
546
547 return 0;
548}
549
550static struct pinctrl_ops sandbox_pinctrl_gpio_ops = {
551 .get_pin_name = sb_pinctrl_get_pin_name,
552 .get_pins_count = sb_pinctrl_get_pins_count,
553 .get_pin_muxing = sb_pinctrl_get_pin_muxing,
554};
Simon Glass3176b6c2020-07-07 13:11:44 -0600555
556#if CONFIG_IS_ENABLED(ACPIGEN)
557struct acpi_ops pinctrl_sandbox_acpi_ops = {
558 .get_name = sb_pinctrl_get_name,
559};
560#endif
Patrick Delaunay1b4a22f2020-01-13 11:35:15 +0100561
562static const struct udevice_id sandbox_pinctrl_gpio_match[] = {
563 { .compatible = "sandbox,pinctrl-gpio" },
564 { /* sentinel */ }
565};
566
567U_BOOT_DRIVER(sandbox_pinctrl_gpio) = {
568 .name = "sandbox_pinctrl_gpio",
569 .id = UCLASS_PINCTRL,
570 .of_match = sandbox_pinctrl_gpio_match,
571 .ops = &sandbox_pinctrl_gpio_ops,
572 .bind = dm_scan_fdt_dev,
573 .probe = sandbox_pinctrl_probe,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700574 .priv_auto = sizeof(struct sb_pinctrl_priv),
Simon Glass3176b6c2020-07-07 13:11:44 -0600575 ACPI_OPS_PTR(&pinctrl_sandbox_acpi_ops)
Patrick Delaunay1b4a22f2020-01-13 11:35:15 +0100576};