123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573 |
- /*
- * Copyright (c) 2006-2022, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2022-08-25 GuEe-GUI first version
- */
- #include <rtthread.h>
- #include <rtdevice.h>
- #define DBG_TAG "rtdm.ofw"
- #define DBG_LVL DBG_INFO
- #include <rtdbg.h>
- #include "ofw_internal.h"
- struct rt_ofw_stub *rt_ofw_stub_probe_range(struct rt_ofw_node *np,
- const struct rt_ofw_stub *stub_start, const struct rt_ofw_stub *stub_end)
- {
- const struct rt_ofw_stub *stub = RT_NULL;
- if (np && stub_start && stub_end &&
- !rt_ofw_node_test_flag(np, RT_OFW_F_READLY) &&
- !rt_ofw_node_test_flag(np, RT_OFW_F_SYSTEM))
- {
- struct rt_ofw_prop *compat_prop = rt_ofw_get_prop(np, "compatible", RT_NULL);
- if (compat_prop)
- {
- rt_ofw_foreach_stub(stub, stub_start, stub_end)
- {
- struct rt_ofw_node_id *id;
- if (!stub->ids)
- {
- continue;
- }
- id = rt_ofw_prop_match(compat_prop, stub->ids);
- if (id)
- {
- if (!stub->handler(np, id))
- {
- rt_ofw_node_set_flag(np, RT_OFW_F_READLY);
- }
- break;
- }
- }
- }
- }
- return (struct rt_ofw_stub *)stub;
- }
- static const char *ofw_console_serial_find(char *dst_con, struct rt_ofw_node *np)
- {
- rt_object_t rt_obj;
- const char *ofw_name = RT_NULL;
- struct rt_serial_device *rt_serial = rt_ofw_data(np);
- if (rt_serial)
- {
- rt_obj = &rt_serial->parent.parent;
- }
- /*
- * This is a dangerous behavior because rt_data can be modified by other
- * user. But fortunately, we can check if the rt_data is a rt_device or
- * rt_serial_device.
- */
- if (rt_obj && rt_object_get_type(rt_obj) == RT_Object_Class_Device &&
- rt_serial->parent.type == RT_Device_Class_Char)
- {
- ofw_name = np->full_name;
- rt_strncpy(dst_con, rt_obj->name, RT_NAME_MAX);
- }
- return ofw_name;
- }
- static const char *ofw_console_tty_find(char *dst_con, const char *con)
- {
- const char *ofw_name = RT_NULL;
- static rt_bus_t platform_bus = RT_NULL;
- if (!platform_bus)
- {
- platform_bus = rt_bus_find_by_name("platform");
- }
- if (platform_bus)
- {
- rt_device_t dev;
- rt_ubase_t level;
- const char *console = con;
- int tty_idx = 0, tty_id = 0, tty_name_len;
- con += sizeof("tty") - 1;
- while (*con && !(*con >= '0' && *con <= '9'))
- {
- ++con;
- }
- tty_name_len = con - console;
- while (*con && *con >= '0' && *con <= '9')
- {
- tty_id *= 10;
- tty_id += *con - '0';
- ++con;
- }
- level = rt_spin_lock_irqsave(&platform_bus->spinlock);
- rt_list_for_each_entry(dev, &platform_bus->dev_list, node)
- {
- struct rt_platform_device *pdev = rt_container_of(dev, struct rt_platform_device, parent);
- const struct rt_ofw_node_id *id = pdev->id;
- if (id && id->type[0] && !rt_strncmp(id->type, console, tty_name_len))
- {
- if (tty_idx == tty_id)
- {
- ofw_name = ofw_console_serial_find(dst_con, pdev->parent.ofw_node);
- break;
- }
- ++tty_idx;
- }
- }
- rt_spin_unlock_irqrestore(&platform_bus->spinlock, level);
- }
- return ofw_name;
- }
- rt_err_t rt_ofw_console_setup(void)
- {
- rt_err_t err = -RT_ENOSYS;
- char con_name[RT_NAME_MAX];
- const char *ofw_name = RT_NULL, *stdout_path, *con;
- /* chosen.console > chosen.stdout-path > RT_CONSOLE_DEVICE_NAME */
- con = rt_ofw_bootargs_select("console=", 0);
- for (int i = 1; con; ++i)
- {
- if (!rt_strncmp(con, "uart", sizeof("uart") - 1))
- {
- rt_strncpy(con_name, con, RT_NAME_MAX);
- err = RT_EOK;
- break;
- }
- else if (!rt_strncmp(con, "tty", sizeof("tty") - 1))
- {
- ofw_name = ofw_console_tty_find(con_name, con);
- if (ofw_name)
- {
- err = RT_EOK;
- break;
- }
- }
- con = rt_ofw_bootargs_select("console=", i);
- }
- if (err == -RT_ENOSYS && !rt_ofw_prop_read_string(ofw_node_chosen, "stdout-path", &stdout_path))
- {
- struct rt_ofw_node *stdout_np = rt_ofw_find_node_by_path(stdout_path);
- if (stdout_np && (ofw_name = ofw_console_serial_find(con_name, stdout_np)))
- {
- err = RT_EOK;
- }
- }
- if (err == -RT_ENOSYS)
- {
- rt_device_t serial = rt_device_find(RT_CONSOLE_DEVICE_NAME);
- if (serial)
- {
- ofw_name = rt_ofw_node_full_name(serial->ofw_node);
- con = RT_CONSOLE_DEVICE_NAME;
- }
- else
- {
- LOG_W("Console will probably fail to setup");
- }
- }
- else
- {
- con = con_name;
- }
- rt_console_set_device(con);
- rt_fdt_earlycon_kick(FDT_EARLYCON_KICK_COMPLETED);
- LOG_I("Console: %s (%s)", con, ofw_name ? ofw_name : "<unknown>");
- return err;
- }
- const char *rt_ofw_bootargs_select(const char *key, int index)
- {
- const char *value = RT_NULL;
- if (key && index >= 0)
- {
- static char **values = RT_NULL;
- static rt_size_t bootargs_nr = 1;
- const char *bootargs = RT_NULL, *ch;
- if (bootargs_nr && !values &&
- (bootargs_nr = 0, !rt_ofw_prop_read_string(ofw_node_chosen, "bootargs", &bootargs)) &&
- bootargs && (bootargs = rt_strdup(bootargs)))
- {
- rt_bool_t quotes = RT_TRUE;
- rt_size_t length = rt_strlen(bootargs);
- const char *bootargs_end = bootargs + length;
- for (ch = bootargs; ch < bootargs_end; ++ch)
- {
- if (*ch == '"')
- {
- quotes = !quotes;
- continue;
- }
- if (*ch != ' ' || !quotes)
- {
- continue;
- }
- ++bootargs_nr;
- while (*ch == ' ' && ch < bootargs_end)
- {
- *(char *)ch++ = '\0';
- }
- --ch;
- }
- if (bootargs_nr)
- {
- /* last arg */
- ++bootargs_nr;
- values = rt_malloc(sizeof(char *) * bootargs_nr);
- }
- if (values)
- {
- int idx = 0;
- for (int i = 0; i < length; ++i)
- {
- for (; i < length && !bootargs[i]; ++i)
- {
- }
- if (i < length)
- {
- values[idx++] = (char *)&bootargs[i];
- }
- for (; i < length && bootargs[i]; ++i)
- {
- }
- }
- }
- else
- {
- rt_free((char *)bootargs);
- }
- }
- if (values)
- {
- int keylen = rt_strlen(key);
- for (int idx = 0, count = 0; idx < bootargs_nr; ++idx)
- {
- if (!rt_strncmp(values[idx], key, keylen))
- {
- if (count == index)
- {
- value = values[idx] + keylen;
- break;
- }
- ++count;
- }
- }
- }
- }
- return value;
- }
- #ifdef RT_USING_CONSOLE
- static void dts_put_depth(int depth)
- {
- while (depth --> 0)
- {
- rt_kputs(" ");
- }
- }
- static rt_bool_t dts_test_string_list(const void *value, int size)
- {
- const char *str, *str_start, *str_end;
- if (!size)
- {
- return RT_FALSE;
- }
- str = value;
- /* String end with '\0' */
- if (str[size - 1] != '\0')
- {
- return RT_FALSE;
- }
- /* Get string list end */
- str_end = str + size;
- while (str < str_end)
- {
- str_start = str;
- /* Before string list end, not '\0' and a printable characters */
- while (str < str_end && *str && ((unsigned char)*str >= ' ' && (unsigned char)*str <= '~'))
- {
- ++str;
- }
- /* Not zero, or not increased */
- if (*str != '\0' || str == str_start)
- {
- return RT_FALSE;
- }
- /* Next string */
- ++str;
- }
- return RT_TRUE;
- }
- static void ofw_node_dump_dts(struct rt_ofw_node *np, rt_bool_t sibling_too)
- {
- int depth = 0;
- struct rt_ofw_prop *prop;
- struct rt_ofw_node *org_np = np;
- while (np)
- {
- dts_put_depth(depth);
- rt_kputs(np->full_name);
- rt_kputs(" {\n");
- prop = np->props;
- /* Print prop start */
- ++depth;
- while (prop)
- {
- dts_put_depth(depth);
- rt_kputs(prop->name);
- /* Have value? */
- if (prop->length > 0)
- {
- int length = prop->length;
- void *value = prop->value;
- rt_kputs(" = ");
- if (dts_test_string_list(value, length))
- {
- /* String list */
- char *str = value;
- do {
- rt_kputs("\"");
- rt_kputs(str);
- rt_kputs("\", ");
- str += rt_strlen(str) + 1;
- } while (str < (char *)value + length);
- rt_kputs("\b\b");
- }
- else if ((length % 4) == 0)
- {
- /* u32 data in <?> */
- fdt32_t *cell = value;
- rt_kputs("<");
- length /= 4;
- for (int i = 0; i < length; ++i)
- {
- rt_kprintf("0x%02x ", fdt32_to_cpu(cell[i]));
- }
- rt_kputs("\b>");
- }
- else
- {
- /* Byte data in [?] */
- rt_uint8_t *byte = value;
- rt_kputs("[");
- for (int i = 0; i < length; ++i)
- {
- rt_kprintf("%02x ", *byte++);
- }
- rt_kputs("\b]");
- }
- }
- rt_kputs(";\n");
- prop = prop->next;
- }
- --depth;
- /* Print prop end */
- if (np->child)
- {
- rt_kputs("\n");
- np = np->child;
- ++depth;
- }
- else
- {
- dts_put_depth(depth);
- rt_kputs("};\n");
- while (np->parent && !np->sibling)
- {
- np = np->parent;
- --depth;
- if (depth >= 0)
- {
- dts_put_depth(depth);
- rt_kputs("};\n");
- }
- }
- if (!sibling_too && org_np == np)
- {
- break;
- }
- np = np->sibling;
- if (np)
- {
- rt_kputs("\n");
- }
- }
- }
- }
- void rt_ofw_node_dump_dts(struct rt_ofw_node *np, rt_bool_t sibling_too)
- {
- if (np)
- {
- if (!rt_strcmp(np->name, "/"))
- {
- struct fdt_info *header = (struct fdt_info *)np->name;
- struct fdt_reserve_entry *rsvmap = header->rsvmap;
- rt_kprintf("/dts-v%x/;\n\n", fdt_version(header->fdt));
- for (int i = header->rsvmap_nr - 1; i >= 0; --i)
- {
- rt_kprintf("/memreserve/\t%p %p;\n",
- ofw_static_cast(rt_size_t, fdt64_to_cpu(rsvmap->address)),
- ofw_static_cast(rt_size_t, fdt64_to_cpu(rsvmap->size)));
- ++rsvmap;
- }
- rt_kputs(np->name);
- }
- ofw_node_dump_dts(np, sibling_too);
- }
- }
- #ifdef RT_USING_MSH
- static void ofw_dts(int argc, char**argv)
- {
- if (ofw_node_root)
- {
- if (argc == 1)
- {
- rt_ofw_node_dump_dts(ofw_node_root, RT_TRUE);
- }
- else if (argv[1][0] == '/')
- {
- struct rt_ofw_node *np = rt_ofw_find_node_by_path(argv[1]);
- if (np)
- {
- rt_ofw_node_dump_dts(np, RT_FALSE);
- }
- else
- {
- rt_kprintf("%s not found.\n", argv[1]);
- }
- }
- else if (argc >= 2 && !rt_strcmp(argv[1], "list") && argv[2][0] == '/')
- {
- struct rt_ofw_node *np = rt_ofw_find_node_by_path(argv[2]);
- if (np)
- {
- const char *split = np == ofw_node_root ? "" : "/";
- np = np->child;
- while (np)
- {
- rt_kprintf("%s%s%s\n", argv[2], split, np->full_name);
- np = np->sibling;
- }
- }
- else
- {
- rt_kprintf("%s not found.\n", argv[2]);
- }
- }
- else
- {
- rt_kprintf("Usage: %s {list} {path}\n", __func__);
- }
- }
- else
- {
- rt_kprintf("\"/\" path not found.");
- }
- }
- MSH_CMD_EXPORT(ofw_dts, dump the dts or node for this platform);
- #endif /* RT_USING_MSH */
- #endif /* RT_USING_CONSOLE */
|