arm: bcm283x: serial: Move ofdata reading to probe() method
[oweals/u-boot.git] / drivers / serial / serial-uclass.c
index d4488a2cc288a55c977825a4c92d575388e9a41f..7703c674929ceae005cf7e71d41f88fc9475f68c 100644 (file)
@@ -5,8 +5,9 @@
 
 #include <common.h>
 #include <dm.h>
-#include <environment.h>
+#include <env_internal.h>
 #include <errno.h>
+#include <malloc.h>
 #include <os.h>
 #include <serial.h>
 #include <stdio_dev.h>
@@ -29,29 +30,31 @@ static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
 #if CONFIG_IS_ENABLED(SERIAL_PRESENT)
 static int serial_check_stdout(const void *blob, struct udevice **devp)
 {
-       int node;
+       int node = -1;
+       const char *str, *p, *name;
+       int namelen;
 
        /* Check for a chosen console */
-       node = fdtdec_get_chosen_node(blob, "stdout-path");
-       if (node < 0) {
-               const char *str, *p, *name;
-
-               /*
-                * Deal with things like
-                *      stdout-path = "serial0:115200n8";
-                *
-                * We need to look up the alias and then follow it to the
-                * correct node.
-                */
-               str = fdtdec_get_chosen_prop(blob, "stdout-path");
-               if (str) {
-                       p = strchr(str, ':');
-                       name = fdt_get_alias_namelen(blob, str,
-                                       p ? p - str : strlen(str));
+       str = fdtdec_get_chosen_prop(blob, "stdout-path");
+       if (str) {
+               p = strchr(str, ':');
+               namelen = p ? p - str : strlen(str);
+               node = fdt_path_offset_namelen(blob, str, namelen);
+
+               if (node < 0) {
+                       /*
+                        * Deal with things like
+                        *      stdout-path = "serial0:115200n8";
+                        *
+                        * We need to look up the alias and then follow it to
+                        * the correct node.
+                        */
+                       name = fdt_get_alias_namelen(blob, str, namelen);
                        if (name)
                                node = fdt_path_offset(blob, name);
                }
        }
+
        if (node < 0)
                node = fdt_path_offset(blob, "console");
        if (!uclass_get_device_by_of_offset(UCLASS_SERIAL, node, devp))
@@ -159,6 +162,7 @@ int serial_init(void)
 #if CONFIG_IS_ENABLED(SERIAL_PRESENT)
        serial_find_console_or_panic();
        gd->flags |= GD_FLG_SERIAL_READY;
+       serial_setbrg();
 #endif
 
        return 0;