dm: serial: Add ->getconfig() callback
[oweals/u-boot.git] / drivers / serial / serial-uclass.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2014 The Chromium OS Authors.
4  */
5
6 #include <common.h>
7 #include <dm.h>
8 #include <environment.h>
9 #include <errno.h>
10 #include <os.h>
11 #include <serial.h>
12 #include <stdio_dev.h>
13 #include <watchdog.h>
14 #include <dm/lists.h>
15 #include <dm/device-internal.h>
16 #include <dm/of_access.h>
17
18 DECLARE_GLOBAL_DATA_PTR;
19
20 /*
21  * Table with supported baudrates (defined in config_xyz.h)
22  */
23 static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
24
25 #if !CONFIG_VAL(SYS_MALLOC_F_LEN)
26 #error "Serial is required before relocation - define CONFIG_$(SPL_)SYS_MALLOC_F_LEN to make this work"
27 #endif
28
29 #if CONFIG_IS_ENABLED(SERIAL_PRESENT)
30 static int serial_check_stdout(const void *blob, struct udevice **devp)
31 {
32         int node;
33
34         /* Check for a chosen console */
35         node = fdtdec_get_chosen_node(blob, "stdout-path");
36         if (node < 0) {
37                 const char *str, *p, *name;
38
39                 /*
40                  * Deal with things like
41                  *      stdout-path = "serial0:115200n8";
42                  *
43                  * We need to look up the alias and then follow it to the
44                  * correct node.
45                  */
46                 str = fdtdec_get_chosen_prop(blob, "stdout-path");
47                 if (str) {
48                         p = strchr(str, ':');
49                         name = fdt_get_alias_namelen(blob, str,
50                                         p ? p - str : strlen(str));
51                         if (name)
52                                 node = fdt_path_offset(blob, name);
53                 }
54         }
55         if (node < 0)
56                 node = fdt_path_offset(blob, "console");
57         if (!uclass_get_device_by_of_offset(UCLASS_SERIAL, node, devp))
58                 return 0;
59
60         /*
61          * If the console is not marked to be bound before relocation, bind it
62          * anyway.
63          */
64         if (node > 0 && !lists_bind_fdt(gd->dm_root, offset_to_ofnode(node),
65                                         devp, false)) {
66                 if (!device_probe(*devp))
67                         return 0;
68         }
69
70         return -ENODEV;
71 }
72
73 static void serial_find_console_or_panic(void)
74 {
75         const void *blob = gd->fdt_blob;
76         struct udevice *dev;
77 #ifdef CONFIG_SERIAL_SEARCH_ALL
78         int ret;
79 #endif
80
81         if (CONFIG_IS_ENABLED(OF_PLATDATA)) {
82                 uclass_first_device(UCLASS_SERIAL, &dev);
83                 if (dev) {
84                         gd->cur_serial_dev = dev;
85                         return;
86                 }
87         } else if (CONFIG_IS_ENABLED(OF_CONTROL) && blob) {
88                 /* Live tree has support for stdout */
89                 if (of_live_active()) {
90                         struct device_node *np = of_get_stdout();
91
92                         if (np && !uclass_get_device_by_ofnode(UCLASS_SERIAL,
93                                         np_to_ofnode(np), &dev)) {
94                                 gd->cur_serial_dev = dev;
95                                 return;
96                         }
97                 } else {
98                         if (!serial_check_stdout(blob, &dev)) {
99                                 gd->cur_serial_dev = dev;
100                                 return;
101                         }
102                 }
103         }
104         if (!SPL_BUILD || !CONFIG_IS_ENABLED(OF_CONTROL) || !blob) {
105                 /*
106                  * Try to use CONFIG_CONS_INDEX if available (it is numbered
107                  * from 1!).
108                  *
109                  * Failing that, get the device with sequence number 0, or in
110                  * extremis just the first working serial device we can find.
111                  * But we insist on having a console (even if it is silent).
112                  */
113 #ifdef CONFIG_CONS_INDEX
114 #define INDEX (CONFIG_CONS_INDEX - 1)
115 #else
116 #define INDEX 0
117 #endif
118
119 #ifdef CONFIG_SERIAL_SEARCH_ALL
120                 if (!uclass_get_device_by_seq(UCLASS_SERIAL, INDEX, &dev) ||
121                     !uclass_get_device(UCLASS_SERIAL, INDEX, &dev)) {
122                         if (dev->flags & DM_FLAG_ACTIVATED) {
123                                 gd->cur_serial_dev = dev;
124                                 return;
125                         }
126                 }
127
128                 /* Search for any working device */
129                 for (ret = uclass_first_device_check(UCLASS_SERIAL, &dev);
130                      dev;
131                      ret = uclass_next_device_check(&dev)) {
132                         if (!ret) {
133                                 /* Device did succeed probing */
134                                 gd->cur_serial_dev = dev;
135                                 return;
136                         }
137                 }
138 #else
139                 if (!uclass_get_device_by_seq(UCLASS_SERIAL, INDEX, &dev) ||
140                     !uclass_get_device(UCLASS_SERIAL, INDEX, &dev) ||
141                     (!uclass_first_device(UCLASS_SERIAL, &dev) && dev)) {
142                         gd->cur_serial_dev = dev;
143                         return;
144                 }
145 #endif
146
147 #undef INDEX
148         }
149
150 #ifdef CONFIG_REQUIRE_SERIAL_CONSOLE
151         panic_str("No serial driver found");
152 #endif
153 }
154 #endif /* CONFIG_SERIAL_PRESENT */
155
156 /* Called prior to relocation */
157 int serial_init(void)
158 {
159 #if CONFIG_IS_ENABLED(SERIAL_PRESENT)
160         serial_find_console_or_panic();
161         gd->flags |= GD_FLG_SERIAL_READY;
162 #endif
163
164         return 0;
165 }
166
167 /* Called after relocation */
168 void serial_initialize(void)
169 {
170         serial_init();
171 }
172
173 static void _serial_putc(struct udevice *dev, char ch)
174 {
175         struct dm_serial_ops *ops = serial_get_ops(dev);
176         int err;
177
178         if (ch == '\n')
179                 _serial_putc(dev, '\r');
180
181         do {
182                 err = ops->putc(dev, ch);
183         } while (err == -EAGAIN);
184 }
185
186 static void _serial_puts(struct udevice *dev, const char *str)
187 {
188         while (*str)
189                 _serial_putc(dev, *str++);
190 }
191
192 static int __serial_getc(struct udevice *dev)
193 {
194         struct dm_serial_ops *ops = serial_get_ops(dev);
195         int err;
196
197         do {
198                 err = ops->getc(dev);
199                 if (err == -EAGAIN)
200                         WATCHDOG_RESET();
201         } while (err == -EAGAIN);
202
203         return err >= 0 ? err : 0;
204 }
205
206 static int __serial_tstc(struct udevice *dev)
207 {
208         struct dm_serial_ops *ops = serial_get_ops(dev);
209
210         if (ops->pending)
211                 return ops->pending(dev, true);
212
213         return 1;
214 }
215
216 #if CONFIG_IS_ENABLED(SERIAL_RX_BUFFER)
217 static int _serial_tstc(struct udevice *dev)
218 {
219         struct serial_dev_priv *upriv = dev_get_uclass_priv(dev);
220
221         /* Read all available chars into the RX buffer */
222         while (__serial_tstc(dev)) {
223                 upriv->buf[upriv->wr_ptr++] = __serial_getc(dev);
224                 upriv->wr_ptr %= CONFIG_SERIAL_RX_BUFFER_SIZE;
225         }
226
227         return upriv->rd_ptr != upriv->wr_ptr ? 1 : 0;
228 }
229
230 static int _serial_getc(struct udevice *dev)
231 {
232         struct serial_dev_priv *upriv = dev_get_uclass_priv(dev);
233         char val;
234
235         if (upriv->rd_ptr == upriv->wr_ptr)
236                 return __serial_getc(dev);
237
238         val = upriv->buf[upriv->rd_ptr++];
239         upriv->rd_ptr %= CONFIG_SERIAL_RX_BUFFER_SIZE;
240
241         return val;
242 }
243
244 #else /* CONFIG_IS_ENABLED(SERIAL_RX_BUFFER) */
245
246 static int _serial_getc(struct udevice *dev)
247 {
248         return __serial_getc(dev);
249 }
250
251 static int _serial_tstc(struct udevice *dev)
252 {
253         return __serial_tstc(dev);
254 }
255 #endif /* CONFIG_IS_ENABLED(SERIAL_RX_BUFFER) */
256
257 void serial_putc(char ch)
258 {
259         if (gd->cur_serial_dev)
260                 _serial_putc(gd->cur_serial_dev, ch);
261 }
262
263 void serial_puts(const char *str)
264 {
265         if (gd->cur_serial_dev)
266                 _serial_puts(gd->cur_serial_dev, str);
267 }
268
269 int serial_getc(void)
270 {
271         if (!gd->cur_serial_dev)
272                 return 0;
273
274         return _serial_getc(gd->cur_serial_dev);
275 }
276
277 int serial_tstc(void)
278 {
279         if (!gd->cur_serial_dev)
280                 return 0;
281
282         return _serial_tstc(gd->cur_serial_dev);
283 }
284
285 void serial_setbrg(void)
286 {
287         struct dm_serial_ops *ops;
288
289         if (!gd->cur_serial_dev)
290                 return;
291
292         ops = serial_get_ops(gd->cur_serial_dev);
293         if (ops->setbrg)
294                 ops->setbrg(gd->cur_serial_dev, gd->baudrate);
295 }
296
297 int serial_getconfig(uint *config)
298 {
299         struct dm_serial_ops *ops;
300
301         if (!gd->cur_serial_dev)
302                 return 0;
303
304         ops = serial_get_ops(gd->cur_serial_dev);
305         if (ops->getconfig)
306                 return ops->getconfig(gd->cur_serial_dev, config);
307
308         return 0;
309 }
310
311 int serial_setconfig(uint config)
312 {
313         struct dm_serial_ops *ops;
314
315         if (!gd->cur_serial_dev)
316                 return 0;
317
318         ops = serial_get_ops(gd->cur_serial_dev);
319         if (ops->setconfig)
320                 return ops->setconfig(gd->cur_serial_dev, config);
321
322         return 0;
323 }
324
325 void serial_stdio_init(void)
326 {
327 }
328
329 #if defined(CONFIG_DM_STDIO)
330
331 #if CONFIG_IS_ENABLED(SERIAL_PRESENT)
332 static void serial_stub_putc(struct stdio_dev *sdev, const char ch)
333 {
334         _serial_putc(sdev->priv, ch);
335 }
336 #endif
337
338 static void serial_stub_puts(struct stdio_dev *sdev, const char *str)
339 {
340         _serial_puts(sdev->priv, str);
341 }
342
343 static int serial_stub_getc(struct stdio_dev *sdev)
344 {
345         return _serial_getc(sdev->priv);
346 }
347
348 static int serial_stub_tstc(struct stdio_dev *sdev)
349 {
350         return _serial_tstc(sdev->priv);
351 }
352 #endif
353
354 /**
355  * on_baudrate() - Update the actual baudrate when the env var changes
356  *
357  * This will check for a valid baudrate and only apply it if valid.
358  */
359 static int on_baudrate(const char *name, const char *value, enum env_op op,
360         int flags)
361 {
362         int i;
363         int baudrate;
364
365         switch (op) {
366         case env_op_create:
367         case env_op_overwrite:
368                 /*
369                  * Switch to new baudrate if new baudrate is supported
370                  */
371                 baudrate = simple_strtoul(value, NULL, 10);
372
373                 /* Not actually changing */
374                 if (gd->baudrate == baudrate)
375                         return 0;
376
377                 for (i = 0; i < ARRAY_SIZE(baudrate_table); ++i) {
378                         if (baudrate == baudrate_table[i])
379                                 break;
380                 }
381                 if (i == ARRAY_SIZE(baudrate_table)) {
382                         if ((flags & H_FORCE) == 0)
383                                 printf("## Baudrate %d bps not supported\n",
384                                        baudrate);
385                         return 1;
386                 }
387                 if ((flags & H_INTERACTIVE) != 0) {
388                         printf("## Switch baudrate to %d bps and press ENTER ...\n",
389                                baudrate);
390                         udelay(50000);
391                 }
392
393                 gd->baudrate = baudrate;
394
395                 serial_setbrg();
396
397                 udelay(50000);
398
399                 if ((flags & H_INTERACTIVE) != 0)
400                         while (1) {
401                                 if (getc() == '\r')
402                                         break;
403                         }
404
405                 return 0;
406         case env_op_delete:
407                 printf("## Baudrate may not be deleted\n");
408                 return 1;
409         default:
410                 return 0;
411         }
412 }
413 U_BOOT_ENV_CALLBACK(baudrate, on_baudrate);
414
415 #if CONFIG_IS_ENABLED(SERIAL_PRESENT)
416 static int serial_post_probe(struct udevice *dev)
417 {
418         struct dm_serial_ops *ops = serial_get_ops(dev);
419 #ifdef CONFIG_DM_STDIO
420         struct serial_dev_priv *upriv = dev_get_uclass_priv(dev);
421         struct stdio_dev sdev;
422 #endif
423         int ret;
424
425 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
426         if (ops->setbrg)
427                 ops->setbrg += gd->reloc_off;
428         if (ops->getc)
429                 ops->getc += gd->reloc_off;
430         if (ops->putc)
431                 ops->putc += gd->reloc_off;
432         if (ops->pending)
433                 ops->pending += gd->reloc_off;
434         if (ops->clear)
435                 ops->clear += gd->reloc_off;
436         if (ops->getconfig)
437                 ops->getconfig += gd->reloc_off;
438         if (ops->setconfig)
439                 ops->setconfig += gd->reloc_off;
440 #if CONFIG_POST & CONFIG_SYS_POST_UART
441         if (ops->loop)
442                 ops->loop += gd->reloc_off;
443 #endif
444 #endif
445         /* Set the baud rate */
446         if (ops->setbrg) {
447                 ret = ops->setbrg(dev, gd->baudrate);
448                 if (ret)
449                         return ret;
450         }
451
452 #ifdef CONFIG_DM_STDIO
453         if (!(gd->flags & GD_FLG_RELOC))
454                 return 0;
455         memset(&sdev, '\0', sizeof(sdev));
456
457         strncpy(sdev.name, dev->name, sizeof(sdev.name));
458         sdev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT | DEV_FLAGS_DM;
459         sdev.priv = dev;
460         sdev.putc = serial_stub_putc;
461         sdev.puts = serial_stub_puts;
462         sdev.getc = serial_stub_getc;
463         sdev.tstc = serial_stub_tstc;
464
465 #if CONFIG_IS_ENABLED(SERIAL_RX_BUFFER)
466         /* Allocate the RX buffer */
467         upriv->buf = malloc(CONFIG_SERIAL_RX_BUFFER_SIZE);
468 #endif
469
470         stdio_register_dev(&sdev, &upriv->sdev);
471 #endif
472         return 0;
473 }
474
475 static int serial_pre_remove(struct udevice *dev)
476 {
477 #if CONFIG_IS_ENABLED(SYS_STDIO_DEREGISTER)
478         struct serial_dev_priv *upriv = dev_get_uclass_priv(dev);
479
480         if (stdio_deregister_dev(upriv->sdev, true))
481                 return -EPERM;
482 #endif
483
484         return 0;
485 }
486
487 UCLASS_DRIVER(serial) = {
488         .id             = UCLASS_SERIAL,
489         .name           = "serial",
490         .flags          = DM_UC_FLAG_SEQ_ALIAS,
491         .post_probe     = serial_post_probe,
492         .pre_remove     = serial_pre_remove,
493         .per_device_auto_alloc_size = sizeof(struct serial_dev_priv),
494 };
495 #endif