123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- /*
- * Copyright (c) 2006-2024, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2023-06-04 GuEe-GUI the first version
- */
- #include <rtthread.h>
- #define DBG_TAG "drv.platform"
- #define DBG_LVL DBG_INFO
- #include <rtdbg.h>
- #include <drivers/ofw_io.h>
- #include <drivers/ofw_fdt.h>
- #include <drivers/platform.h>
- #include <drivers/core/bus.h>
- #include <drivers/core/dm.h>
- #include "../ofw/ofw_internal.h"
- static const struct rt_ofw_node_id platform_ofw_ids[] =
- {
- { .compatible = "simple-bus", },
- #ifdef RT_USING_MFD
- { .compatible = "simple-mfd", },
- #endif
- #ifdef RT_USING_ISA
- { .compatible = "isa", },
- #endif
- #ifdef RT_USING_AMBA_BUS
- /*
- * Maybe ARM has replaced it with compatible: "arm,primecell" and will not
- * used anymore in the future.
- */
- { .compatible = "arm,amba-bus", },
- #endif
- { /* sentinel */ }
- };
- static void ofw_device_rename(struct rt_device *dev)
- {
- rt_uint32_t mask;
- rt_uint64_t addr;
- const char *dev_name = dev->parent.name;
- struct rt_ofw_node *np = dev->ofw_node;
- #if RT_NAME_MAX > 0
- if (dev_name[0] == '\0')
- {
- dev_name = RT_NULL;
- }
- #endif
- while (np->parent)
- {
- if (!rt_ofw_get_address(np, 0, &addr, RT_NULL))
- {
- const char *node_name = rt_fdt_node_name(np->full_name);
- rt_size_t tag_len = strchrnul(node_name, '@') - node_name;
- if (!rt_ofw_prop_read_u32(np, "mask", &mask))
- {
- rt_dm_dev_set_name(dev, dev_name ? "%lx.%x.%.*s:%s" : "%lx.%x.%.*s",
- addr, __rt_ffs(mask) - 1, tag_len, node_name, dev_name);
- }
- else
- {
- rt_dm_dev_set_name(dev, dev_name ? "%lx.%.*s:%s" : "%lx.%.*s",
- addr, tag_len, node_name, dev_name);
- }
- return;
- }
- rt_dm_dev_set_name(dev, dev_name ? "%s:%s" : "%s",
- rt_fdt_node_name(np->full_name), dev_name);
- np = np->parent;
- }
- }
- static struct rt_platform_device *alloc_ofw_platform_device(struct rt_ofw_node *np)
- {
- struct rt_platform_device *pdev = rt_platform_device_alloc("");
- if (pdev)
- {
- /* inc reference of dt-node */
- rt_ofw_node_get(np);
- rt_ofw_node_set_flag(np, RT_OFW_F_PLATFORM);
- pdev->parent.ofw_node = np;
- ofw_device_rename(&pdev->parent);
- }
- else
- {
- LOG_E("Alloc device fail for %s", rt_ofw_node_full_name(np));
- }
- return pdev;
- }
- static rt_err_t platform_ofw_device_probe_once(struct rt_ofw_node *parent_np)
- {
- rt_err_t err = RT_EOK;
- struct rt_ofw_node *np;
- struct rt_platform_device *pdev;
- rt_ofw_foreach_available_child_node(parent_np, np)
- {
- const char *name;
- struct rt_ofw_node_id *id;
- struct rt_ofw_prop *compat_prop = RT_NULL;
- if (np->dev)
- {
- /* Check first */
- continue;
- }
- LOG_D("%s found in %s", np->full_name, parent_np->full_name);
- /* Is system node or have driver */
- if (rt_ofw_node_test_flag(np, RT_OFW_F_SYSTEM) ||
- rt_ofw_node_test_flag(np, RT_OFW_F_READLY))
- {
- continue;
- }
- compat_prop = rt_ofw_get_prop(np, "compatible", RT_NULL);
- name = rt_ofw_node_name(np);
- /* Not have name and compatible */
- if (!compat_prop && (name == (const char *)"<NULL>" || !rt_strcmp(name, "<NULL>")))
- {
- continue;
- }
- id = rt_ofw_prop_match(compat_prop, platform_ofw_ids);
- if (id && np->child)
- {
- /* scan next level */
- err = platform_ofw_device_probe_once(np);
- if (err)
- {
- rt_ofw_node_put(np);
- LOG_E("%s bus probe fail", np->full_name);
- break;
- }
- }
- if (np->dev)
- {
- /* Maybe the childs have requested this node */
- continue;
- }
- pdev = alloc_ofw_platform_device(np);
- if (!pdev)
- {
- rt_ofw_node_put(np);
- err = -RT_ENOMEM;
- break;
- }
- pdev->dev_id = ofw_alias_node_id(np);
- np->dev = &pdev->parent;
- LOG_D("%s register to bus", np->full_name);
- rt_platform_device_register(pdev);
- }
- return err;
- }
- rt_err_t rt_platform_ofw_device_probe_child(struct rt_ofw_node *np)
- {
- rt_err_t err;
- struct rt_ofw_node *parent = rt_ofw_get_parent(np);
- if (parent && rt_strcmp(parent->name, "/") &&
- rt_ofw_get_prop(np, "compatible", RT_NULL) &&
- !rt_ofw_node_test_flag(np, RT_OFW_F_PLATFORM))
- {
- struct rt_platform_device *pdev = alloc_ofw_platform_device(np);
- if (pdev)
- {
- err = rt_platform_device_register(pdev);
- }
- else
- {
- err = -RT_ENOMEM;
- }
- }
- else
- {
- err = -RT_EINVAL;
- }
- rt_ofw_node_put(parent);
- return err;
- }
- rt_err_t rt_platform_ofw_request(struct rt_ofw_node *np)
- {
- rt_err_t err;
- if (np)
- {
- struct rt_device *dev = np->dev;
- if (dev)
- {
- /* Was create */
- if (dev->drv)
- {
- /* Was probe OK */
- err = RT_EOK;
- }
- else
- {
- err = rt_bus_reload_driver_device(dev->bus, dev);
- }
- }
- else
- {
- struct rt_platform_device *pdev = alloc_ofw_platform_device(np);
- if (pdev)
- {
- pdev->dev_id = ofw_alias_node_id(np);
- np->dev = &pdev->parent;
- LOG_D("%s register to bus", np->full_name);
- err = rt_platform_device_register(pdev);
- }
- else
- {
- err = -RT_ENOMEM;
- }
- }
- }
- else
- {
- err = -RT_EINVAL;
- }
- return err;
- }
- static int platform_ofw_device_probe(void)
- {
- rt_err_t err = RT_EOK;
- struct rt_ofw_node *node;
- if (ofw_node_root)
- {
- rt_ofw_node_get(ofw_node_root);
- err = platform_ofw_device_probe_once(ofw_node_root);
- rt_ofw_node_put(ofw_node_root);
- if ((node = rt_ofw_find_node_by_path("/firmware")))
- {
- platform_ofw_device_probe_once(node);
- rt_ofw_node_put(node);
- }
- if ((node = rt_ofw_find_node_by_path("/clocks")))
- {
- platform_ofw_device_probe_once(node);
- rt_ofw_node_put(node);
- }
- rt_ofw_node_get(ofw_node_chosen);
- if ((node = rt_ofw_get_child_by_compatible(ofw_node_chosen, "simple-framebuffer")))
- {
- platform_ofw_device_probe_once(node);
- rt_ofw_node_put(node);
- }
- rt_ofw_node_get(ofw_node_chosen);
- }
- else
- {
- err = -RT_ENOSYS;
- }
- return (int)err;
- }
- INIT_PLATFORM_EXPORT(platform_ofw_device_probe);
- rt_err_t rt_platform_ofw_free(struct rt_platform_device *pdev)
- {
- rt_err_t err = RT_EOK;
- if (pdev)
- {
- struct rt_ofw_node *np = pdev->parent.ofw_node;
- if (np)
- {
- rt_ofw_node_clear_flag(np, RT_OFW_F_PLATFORM);
- rt_ofw_node_put(np);
- rt_free(pdev);
- }
- }
- else
- {
- err = -RT_EINVAL;
- }
- return err;
- }
|