buildman: Update the TODO items
[oweals/u-boot.git] / drivers / gpio / sandbox.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2011 The Chromium OS Authors.
4  */
5
6 #include <common.h>
7 #include <dm.h>
8 #include <fdtdec.h>
9 #include <malloc.h>
10 #include <asm/gpio.h>
11 #include <dm/device_compat.h>
12 #include <dm/lists.h>
13 #include <dm/of.h>
14 #include <dm/pinctrl.h>
15 #include <dt-bindings/gpio/gpio.h>
16 #include <dt-bindings/gpio/sandbox-gpio.h>
17
18
19 struct gpio_state {
20         const char *label;      /* label given by requester */
21         ulong dir_flags;        /* dir_flags (GPIOD_...) */
22 };
23
24 /* Access routines for GPIO dir flags */
25 static ulong *get_gpio_dir_flags(struct udevice *dev, unsigned int offset)
26 {
27         struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
28         struct gpio_state *state = dev_get_priv(dev);
29
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;
34         }
35
36         return &state[offset].dir_flags;
37
38 }
39
40 static int get_gpio_flag(struct udevice *dev, unsigned int offset, ulong flag)
41 {
42         return (*get_gpio_dir_flags(dev, offset) & flag) != 0;
43 }
44
45 static int set_gpio_flag(struct udevice *dev, unsigned int offset, ulong flag,
46                          int value)
47 {
48         ulong *gpio = get_gpio_dir_flags(dev, offset);
49
50         if (value)
51                 *gpio |= flag;
52         else
53                 *gpio &= ~flag;
54
55         return 0;
56 }
57
58 /*
59  * Back-channel sandbox-internal-only access to GPIO state
60  */
61
62 int sandbox_gpio_get_value(struct udevice *dev, unsigned offset)
63 {
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);
67 }
68
69 int sandbox_gpio_set_value(struct udevice *dev, unsigned offset, int value)
70 {
71         return set_gpio_flag(dev, offset, GPIOD_IS_OUT_ACTIVE, value);
72 }
73
74 int sandbox_gpio_get_direction(struct udevice *dev, unsigned offset)
75 {
76         return get_gpio_flag(dev, offset, GPIOD_IS_OUT);
77 }
78
79 int sandbox_gpio_set_direction(struct udevice *dev, unsigned offset, int output)
80 {
81         set_gpio_flag(dev, offset, GPIOD_IS_OUT, output);
82         set_gpio_flag(dev, offset, GPIOD_IS_IN, !(output));
83
84         return 0;
85 }
86
87 ulong sandbox_gpio_get_dir_flags(struct udevice *dev, unsigned int offset)
88 {
89         return *get_gpio_dir_flags(dev, offset);
90 }
91
92 int sandbox_gpio_set_dir_flags(struct udevice *dev, unsigned int offset,
93                                ulong flags)
94 {
95         *get_gpio_dir_flags(dev, offset) = flags;
96
97         return 0;
98 }
99
100 /*
101  * These functions implement the public interface within U-Boot
102  */
103
104 /* set GPIO port 'offset' as an input */
105 static int sb_gpio_direction_input(struct udevice *dev, unsigned offset)
106 {
107         debug("%s: offset:%u\n", __func__, offset);
108
109         return sandbox_gpio_set_direction(dev, offset, 0);
110 }
111
112 /* set GPIO port 'offset' as an output, with polarity 'value' */
113 static int sb_gpio_direction_output(struct udevice *dev, unsigned offset,
114                                     int value)
115 {
116         debug("%s: offset:%u, value = %d\n", __func__, offset, value);
117
118         return sandbox_gpio_set_direction(dev, offset, 1) |
119                 sandbox_gpio_set_value(dev, offset, value);
120 }
121
122 /* read GPIO IN value of port 'offset' */
123 static int sb_gpio_get_value(struct udevice *dev, unsigned offset)
124 {
125         debug("%s: offset:%u\n", __func__, offset);
126
127         return sandbox_gpio_get_value(dev, offset);
128 }
129
130 /* write GPIO OUT value to port 'offset' */
131 static int sb_gpio_set_value(struct udevice *dev, unsigned offset, int value)
132 {
133         debug("%s: offset:%u, value = %d\n", __func__, offset, value);
134
135         if (!sandbox_gpio_get_direction(dev, offset)) {
136                 printf("sandbox_gpio: error: set_value on input gpio %u\n",
137                        offset);
138                 return -1;
139         }
140
141         return sandbox_gpio_set_value(dev, offset, value);
142 }
143
144 static int sb_gpio_get_function(struct udevice *dev, unsigned offset)
145 {
146         if (get_gpio_flag(dev, offset, GPIOD_IS_OUT))
147                 return GPIOF_OUTPUT;
148         if (get_gpio_flag(dev, offset, GPIOD_IS_IN))
149                 return GPIOF_INPUT;
150
151         return GPIOF_INPUT; /*GPIO is not configurated */
152 }
153
154 static int sb_gpio_xlate(struct udevice *dev, struct gpio_desc *desc,
155                          struct ofnode_phandle_args *args)
156 {
157         desc->offset = args->args[0];
158         if (args->args_count < 2)
159                 return 0;
160         /* treat generic binding with gpio uclass */
161         gpio_xlate_offs_flags(dev, desc, args);
162
163         /* sandbox test specific, not defined in gpio.h */
164         if (args->args[1] & GPIO_IN)
165                 desc->flags |= GPIOD_IS_IN;
166
167         if (args->args[1] & GPIO_OUT)
168                 desc->flags |= GPIOD_IS_OUT;
169
170         if (args->args[1] & GPIO_OUT_ACTIVE)
171                 desc->flags |= GPIOD_IS_OUT_ACTIVE;
172
173         return 0;
174 }
175
176 static int sb_gpio_set_dir_flags(struct udevice *dev, unsigned int offset,
177                                  ulong flags)
178 {
179         ulong *dir_flags;
180
181         debug("%s: offset:%u, dir_flags = %lx\n", __func__, offset, flags);
182
183         dir_flags = get_gpio_dir_flags(dev, offset);
184
185         *dir_flags = flags;
186
187         return 0;
188 }
189
190 static int sb_gpio_get_dir_flags(struct udevice *dev, unsigned int offset,
191                                  ulong *flags)
192 {
193         debug("%s: offset:%u\n", __func__, offset);
194         *flags = *get_gpio_dir_flags(dev, offset);
195
196         return 0;
197 }
198
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,
208 };
209
210 static int sandbox_gpio_ofdata_to_platdata(struct udevice *dev)
211 {
212         struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
213
214         uc_priv->gpio_count = dev_read_u32_default(dev, "sandbox,gpio-count",
215                                                    0);
216         uc_priv->bank_name = dev_read_string(dev, "gpio-bank-name");
217
218         return 0;
219 }
220
221 static int gpio_sandbox_probe(struct udevice *dev)
222 {
223         struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
224
225         if (!dev_of_valid(dev))
226                 /* Tell the uclass how many GPIOs we have */
227                 uc_priv->gpio_count = CONFIG_SANDBOX_GPIO_COUNT;
228
229         dev->priv = calloc(sizeof(struct gpio_state), uc_priv->gpio_count);
230
231         return 0;
232 }
233
234 static int gpio_sandbox_remove(struct udevice *dev)
235 {
236         free(dev->priv);
237
238         return 0;
239 }
240
241 static const struct udevice_id sandbox_gpio_ids[] = {
242         { .compatible = "sandbox,gpio" },
243         { }
244 };
245
246 U_BOOT_DRIVER(gpio_sandbox) = {
247         .name   = "gpio_sandbox",
248         .id     = UCLASS_GPIO,
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,
254 };
255
256 /* pincontrol: used only to check GPIO pin configuration (pinmux command) */
257
258 struct sb_pinctrl_priv {
259         int pinctrl_ngpios;
260         struct list_head gpio_dev;
261 };
262
263 struct sb_gpio_bank {
264         struct udevice *gpio_dev;
265         struct list_head list;
266 };
267
268 static int sb_populate_gpio_dev_list(struct udevice *dev)
269 {
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;
274         int ret;
275
276         /*
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
280          * pin muxing
281          */
282         list_for_each_entry(child, &dev->child_head, sibling_node) {
283                 ret = uclass_get_device_by_name(UCLASS_GPIO, child->name,
284                                                 &gpio_dev);
285                 if (ret < 0)
286                         continue;
287
288                 gpio_bank = malloc(sizeof(*gpio_bank));
289                 if (!gpio_bank) {
290                         dev_err(dev, "Not enough memory\n");
291                         return -ENOMEM;
292                 }
293
294                 gpio_bank->gpio_dev = gpio_dev;
295                 list_add_tail(&gpio_bank->list, &priv->gpio_dev);
296         }
297
298         return 0;
299 }
300
301 static int sb_pinctrl_get_pins_count(struct udevice *dev)
302 {
303         struct sb_pinctrl_priv *priv = dev_get_priv(dev);
304         struct gpio_dev_priv *uc_priv;
305         struct sb_gpio_bank *gpio_bank;
306
307         /*
308          * if get_pins_count has already been executed once on this
309          * pin-controller, no need to run it again
310          */
311         if (priv->pinctrl_ngpios)
312                 return priv->pinctrl_ngpios;
313
314         if (list_empty(&priv->gpio_dev))
315                 sb_populate_gpio_dev_list(dev);
316         /*
317          * walk through all banks to retrieve the pin-controller
318          * pins number
319          */
320         list_for_each_entry(gpio_bank, &priv->gpio_dev, list) {
321                 uc_priv = dev_get_uclass_priv(gpio_bank->gpio_dev);
322
323                 priv->pinctrl_ngpios += uc_priv->gpio_count;
324         }
325
326         return priv->pinctrl_ngpios;
327 }
328
329 static struct udevice *sb_pinctrl_get_gpio_dev(struct udevice *dev,
330                                                unsigned int selector,
331                                                unsigned int *idx)
332 {
333         struct sb_pinctrl_priv *priv = dev_get_priv(dev);
334         struct sb_gpio_bank *gpio_bank;
335         struct gpio_dev_priv *uc_priv;
336         int pin_count = 0;
337
338         if (list_empty(&priv->gpio_dev))
339                 sb_populate_gpio_dev_list(dev);
340
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);
344
345                 if (selector < (pin_count + uc_priv->gpio_count)) {
346                         /*
347                          * we found the bank, convert pin selector to
348                          * gpio bank index
349                          */
350                         *idx = selector - pin_count;
351
352                         return gpio_bank->gpio_dev;
353                 }
354                 pin_count += uc_priv->gpio_count;
355         }
356
357         return NULL;
358 }
359
360 static const char *sb_pinctrl_get_pin_name(struct udevice *dev,
361                                            unsigned int selector)
362 {
363         struct gpio_dev_priv *uc_priv;
364         struct udevice *gpio_dev;
365         unsigned int gpio_idx;
366         static char pin_name[PINNAME_SIZE];
367
368         /* look up for the bank which owns the requested pin */
369         gpio_dev = sb_pinctrl_get_gpio_dev(dev, selector, &gpio_idx);
370         if (!gpio_dev) {
371                 snprintf(pin_name, PINNAME_SIZE, "Error");
372         } else {
373                 uc_priv = dev_get_uclass_priv(gpio_dev);
374
375                 snprintf(pin_name, PINNAME_SIZE, "%s%d",
376                          uc_priv->bank_name,
377                          gpio_idx);
378         }
379
380         return pin_name;
381 }
382
383 static char *get_dir_flags_string(ulong flags)
384 {
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";
393         return ".";
394 }
395
396 static int sb_pinctrl_get_pin_muxing(struct udevice *dev,
397                                      unsigned int selector,
398                                      char *buf, int size)
399 {
400         struct udevice *gpio_dev;
401         unsigned int gpio_idx;
402         ulong dir_flags;
403         int function;
404
405         /* look up for the bank which owns the requested pin */
406         gpio_dev = sb_pinctrl_get_gpio_dev(dev, selector, &gpio_idx);
407         if (!gpio_dev) {
408                 snprintf(buf, size, "Error");
409         } else {
410                 function = sb_gpio_get_function(gpio_dev, gpio_idx);
411                 dir_flags = *get_gpio_dir_flags(gpio_dev, gpio_idx);
412
413                 snprintf(buf, size, "gpio %s %s",
414                          function == GPIOF_OUTPUT ? "output" : "input",
415                          get_dir_flags_string(dir_flags));
416         }
417
418         return 0;
419 }
420
421 static int sandbox_pinctrl_probe(struct udevice *dev)
422 {
423         struct sb_pinctrl_priv *priv = dev_get_priv(dev);
424
425         INIT_LIST_HEAD(&priv->gpio_dev);
426
427         return 0;
428 }
429
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,
434 };
435
436 static const struct udevice_id sandbox_pinctrl_gpio_match[] = {
437         { .compatible = "sandbox,pinctrl-gpio" },
438         { /* sentinel */ }
439 };
440
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),
449 };