1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2011 The Chromium OS Authors.
11 #include <dm/device_compat.h>
14 #include <dm/pinctrl.h>
15 #include <dt-bindings/gpio/gpio.h>
16 #include <dt-bindings/gpio/sandbox-gpio.h>
20 const char *label; /* label given by requester */
21 ulong dir_flags; /* dir_flags (GPIOD_...) */
24 /* Access routines for GPIO dir flags */
25 static ulong *get_gpio_dir_flags(struct udevice *dev, unsigned int offset)
27 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
28 struct gpio_state *state = dev_get_priv(dev);
30 if (offset >= uc_priv->gpio_count) {
31 static ulong invalid_dir_flags;
32 printf("sandbox_gpio: error: invalid gpio %u\n", offset);
33 return &invalid_dir_flags;
36 return &state[offset].dir_flags;
40 static int get_gpio_flag(struct udevice *dev, unsigned int offset, ulong flag)
42 return (*get_gpio_dir_flags(dev, offset) & flag) != 0;
45 static int set_gpio_flag(struct udevice *dev, unsigned int offset, ulong flag,
48 ulong *gpio = get_gpio_dir_flags(dev, offset);
59 * Back-channel sandbox-internal-only access to GPIO state
62 int sandbox_gpio_get_value(struct udevice *dev, unsigned offset)
64 if (get_gpio_flag(dev, offset, GPIOD_IS_OUT))
65 debug("sandbox_gpio: get_value on output gpio %u\n", offset);
66 return get_gpio_flag(dev, offset, GPIOD_IS_OUT_ACTIVE);
69 int sandbox_gpio_set_value(struct udevice *dev, unsigned offset, int value)
71 return set_gpio_flag(dev, offset, GPIOD_IS_OUT_ACTIVE, value);
74 int sandbox_gpio_get_direction(struct udevice *dev, unsigned offset)
76 return get_gpio_flag(dev, offset, GPIOD_IS_OUT);
79 int sandbox_gpio_set_direction(struct udevice *dev, unsigned offset, int output)
81 set_gpio_flag(dev, offset, GPIOD_IS_OUT, output);
82 set_gpio_flag(dev, offset, GPIOD_IS_IN, !(output));
87 ulong sandbox_gpio_get_dir_flags(struct udevice *dev, unsigned int offset)
89 return *get_gpio_dir_flags(dev, offset);
92 int sandbox_gpio_set_dir_flags(struct udevice *dev, unsigned int offset,
95 *get_gpio_dir_flags(dev, offset) = flags;
101 * These functions implement the public interface within U-Boot
104 /* set GPIO port 'offset' as an input */
105 static int sb_gpio_direction_input(struct udevice *dev, unsigned offset)
107 debug("%s: offset:%u\n", __func__, offset);
109 return sandbox_gpio_set_direction(dev, offset, 0);
112 /* set GPIO port 'offset' as an output, with polarity 'value' */
113 static int sb_gpio_direction_output(struct udevice *dev, unsigned offset,
116 debug("%s: offset:%u, value = %d\n", __func__, offset, value);
118 return sandbox_gpio_set_direction(dev, offset, 1) |
119 sandbox_gpio_set_value(dev, offset, value);
122 /* read GPIO IN value of port 'offset' */
123 static int sb_gpio_get_value(struct udevice *dev, unsigned offset)
125 debug("%s: offset:%u\n", __func__, offset);
127 return sandbox_gpio_get_value(dev, offset);
130 /* write GPIO OUT value to port 'offset' */
131 static int sb_gpio_set_value(struct udevice *dev, unsigned offset, int value)
133 debug("%s: offset:%u, value = %d\n", __func__, offset, value);
135 if (!sandbox_gpio_get_direction(dev, offset)) {
136 printf("sandbox_gpio: error: set_value on input gpio %u\n",
141 return sandbox_gpio_set_value(dev, offset, value);
144 static int sb_gpio_get_function(struct udevice *dev, unsigned offset)
146 if (get_gpio_flag(dev, offset, GPIOD_IS_OUT))
148 if (get_gpio_flag(dev, offset, GPIOD_IS_IN))
151 return GPIOF_INPUT; /*GPIO is not configurated */
154 static int sb_gpio_xlate(struct udevice *dev, struct gpio_desc *desc,
155 struct ofnode_phandle_args *args)
157 desc->offset = args->args[0];
158 if (args->args_count < 2)
160 /* treat generic binding with gpio uclass */
161 gpio_xlate_offs_flags(dev, desc, args);
163 /* sandbox test specific, not defined in gpio.h */
164 if (args->args[1] & GPIO_IN)
165 desc->flags |= GPIOD_IS_IN;
167 if (args->args[1] & GPIO_OUT)
168 desc->flags |= GPIOD_IS_OUT;
170 if (args->args[1] & GPIO_OUT_ACTIVE)
171 desc->flags |= GPIOD_IS_OUT_ACTIVE;
176 static int sb_gpio_set_dir_flags(struct udevice *dev, unsigned int offset,
181 debug("%s: offset:%u, dir_flags = %lx\n", __func__, offset, flags);
183 dir_flags = get_gpio_dir_flags(dev, offset);
190 static int sb_gpio_get_dir_flags(struct udevice *dev, unsigned int offset,
193 debug("%s: offset:%u\n", __func__, offset);
194 *flags = *get_gpio_dir_flags(dev, offset);
199 static const struct dm_gpio_ops gpio_sandbox_ops = {
200 .direction_input = sb_gpio_direction_input,
201 .direction_output = sb_gpio_direction_output,
202 .get_value = sb_gpio_get_value,
203 .set_value = sb_gpio_set_value,
204 .get_function = sb_gpio_get_function,
205 .xlate = sb_gpio_xlate,
206 .set_dir_flags = sb_gpio_set_dir_flags,
207 .get_dir_flags = sb_gpio_get_dir_flags,
210 static int sandbox_gpio_ofdata_to_platdata(struct udevice *dev)
212 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
214 uc_priv->gpio_count = dev_read_u32_default(dev, "sandbox,gpio-count",
216 uc_priv->bank_name = dev_read_string(dev, "gpio-bank-name");
221 static int gpio_sandbox_probe(struct udevice *dev)
223 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
225 if (!dev_of_valid(dev))
226 /* Tell the uclass how many GPIOs we have */
227 uc_priv->gpio_count = CONFIG_SANDBOX_GPIO_COUNT;
229 dev->priv = calloc(sizeof(struct gpio_state), uc_priv->gpio_count);
234 static int gpio_sandbox_remove(struct udevice *dev)
241 static const struct udevice_id sandbox_gpio_ids[] = {
242 { .compatible = "sandbox,gpio" },
246 U_BOOT_DRIVER(gpio_sandbox) = {
247 .name = "gpio_sandbox",
249 .of_match = sandbox_gpio_ids,
250 .ofdata_to_platdata = sandbox_gpio_ofdata_to_platdata,
251 .probe = gpio_sandbox_probe,
252 .remove = gpio_sandbox_remove,
253 .ops = &gpio_sandbox_ops,
256 /* pincontrol: used only to check GPIO pin configuration (pinmux command) */
258 struct sb_pinctrl_priv {
260 struct list_head gpio_dev;
263 struct sb_gpio_bank {
264 struct udevice *gpio_dev;
265 struct list_head list;
268 static int sb_populate_gpio_dev_list(struct udevice *dev)
270 struct sb_pinctrl_priv *priv = dev_get_priv(dev);
271 struct udevice *gpio_dev;
272 struct udevice *child;
273 struct sb_gpio_bank *gpio_bank;
277 * parse pin-controller sub-nodes (ie gpio bank nodes) and fill
278 * a list with all gpio device reference which belongs to the
279 * current pin-controller. This list is used to find pin_name and
282 list_for_each_entry(child, &dev->child_head, sibling_node) {
283 ret = uclass_get_device_by_name(UCLASS_GPIO, child->name,
288 gpio_bank = malloc(sizeof(*gpio_bank));
290 dev_err(dev, "Not enough memory\n");
294 gpio_bank->gpio_dev = gpio_dev;
295 list_add_tail(&gpio_bank->list, &priv->gpio_dev);
301 static int sb_pinctrl_get_pins_count(struct udevice *dev)
303 struct sb_pinctrl_priv *priv = dev_get_priv(dev);
304 struct gpio_dev_priv *uc_priv;
305 struct sb_gpio_bank *gpio_bank;
308 * if get_pins_count has already been executed once on this
309 * pin-controller, no need to run it again
311 if (priv->pinctrl_ngpios)
312 return priv->pinctrl_ngpios;
314 if (list_empty(&priv->gpio_dev))
315 sb_populate_gpio_dev_list(dev);
317 * walk through all banks to retrieve the pin-controller
320 list_for_each_entry(gpio_bank, &priv->gpio_dev, list) {
321 uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev);
323 priv->pinctrl_ngpios += uc_priv->gpio_count;
326 return priv->pinctrl_ngpios;
329 static struct udevice *sb_pinctrl_get_gpio_dev(struct udevice *dev,
330 unsigned int selector,
333 struct sb_pinctrl_priv *priv = dev_get_priv(dev);
334 struct sb_gpio_bank *gpio_bank;
335 struct gpio_dev_priv *uc_priv;
338 if (list_empty(&priv->gpio_dev))
339 sb_populate_gpio_dev_list(dev);
341 /* look up for the bank which owns the requested pin */
342 list_for_each_entry(gpio_bank, &priv->gpio_dev, list) {
343 uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev);
345 if (selector < (pin_count + uc_priv->gpio_count)) {
347 * we found the bank, convert pin selector to
350 *idx = selector - pin_count;
352 return gpio_bank->gpio_dev;
354 pin_count += uc_priv->gpio_count;
360 static const char *sb_pinctrl_get_pin_name(struct udevice *dev,
361 unsigned int selector)
363 struct gpio_dev_priv *uc_priv;
364 struct udevice *gpio_dev;
365 unsigned int gpio_idx;
366 static char pin_name[PINNAME_SIZE];
368 /* look up for the bank which owns the requested pin */
369 gpio_dev = sb_pinctrl_get_gpio_dev(dev, selector, &gpio_idx);
371 snprintf(pin_name, PINNAME_SIZE, "Error");
373 uc_priv = dev_get_uclass_priv(gpio_dev);
375 snprintf(pin_name, PINNAME_SIZE, "%s%d",
383 static char *get_dir_flags_string(ulong flags)
385 if (flags & GPIOD_OPEN_DRAIN)
386 return "drive-open-drain";
387 if (flags & GPIOD_OPEN_SOURCE)
388 return "drive-open-source";
389 if (flags & GPIOD_PULL_UP)
390 return "bias-pull-up";
391 if (flags & GPIOD_PULL_DOWN)
392 return "bias-pull-down";
396 static int sb_pinctrl_get_pin_muxing(struct udevice *dev,
397 unsigned int selector,
400 struct udevice *gpio_dev;
401 unsigned int gpio_idx;
405 /* look up for the bank which owns the requested pin */
406 gpio_dev = sb_pinctrl_get_gpio_dev(dev, selector, &gpio_idx);
408 snprintf(buf, size, "Error");
410 function = sb_gpio_get_function(gpio_dev, gpio_idx);
411 dir_flags = *get_gpio_dir_flags(gpio_dev, gpio_idx);
413 snprintf(buf, size, "gpio %s %s",
414 function == GPIOF_OUTPUT ? "output" : "input",
415 get_dir_flags_string(dir_flags));
421 static int sandbox_pinctrl_probe(struct udevice *dev)
423 struct sb_pinctrl_priv *priv = dev_get_priv(dev);
425 INIT_LIST_HEAD(&priv->gpio_dev);
430 static struct pinctrl_ops sandbox_pinctrl_gpio_ops = {
431 .get_pin_name = sb_pinctrl_get_pin_name,
432 .get_pins_count = sb_pinctrl_get_pins_count,
433 .get_pin_muxing = sb_pinctrl_get_pin_muxing,
436 static const struct udevice_id sandbox_pinctrl_gpio_match[] = {
437 { .compatible = "sandbox,pinctrl-gpio" },
441 U_BOOT_DRIVER(sandbox_pinctrl_gpio) = {
442 .name = "sandbox_pinctrl_gpio",
443 .id = UCLASS_PINCTRL,
444 .of_match = sandbox_pinctrl_gpio_match,
445 .ops = &sandbox_pinctrl_gpio_ops,
446 .bind = dm_scan_fdt_dev,
447 .probe = sandbox_pinctrl_probe,
448 .priv_auto_alloc_size = sizeof(struct sb_pinctrl_priv),