123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432 |
- /*
- * Copyright (c) 2006-2022, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2022-11-26 GuEe-GUI first version
- */
- #include <rtthread.h>
- #include <rtservice.h>
- #define DBG_TAG "rtdm.reset"
- #define DBG_LVL DBG_INFO
- #include <rtdbg.h>
- #include <drivers/ofw.h>
- #include <drivers/misc.h>
- #include <drivers/reset.h>
- #include <drivers/platform.h>
- struct reset_control_array
- {
- struct rt_reset_control captain;
- rt_size_t count;
- struct rt_reset_control *rstcs[];
- };
- #define reset_control_to_array(rstc) rt_container_of(rstc, struct reset_control_array, captain)
- rt_err_t rt_reset_controller_register(struct rt_reset_controller *rstcer)
- {
- if (!rstcer)
- {
- return -RT_EINVAL;
- }
- #if RT_NAME_MAX > 0
- rt_strncpy(rstcer->parent.name, RT_RESET_CONTROLLER_OBJ_NAME, RT_NAME_MAX);
- #else
- rstcer->parent.name = RT_RESET_CONTROLLER_OBJ_NAME;
- #endif
- rt_list_init(&rstcer->rstc_nodes);
- rt_spin_lock_init(&rstcer->spinlock);
- if (rstcer->ofw_node)
- {
- if (!rt_ofw_data(rstcer->ofw_node))
- {
- rt_ofw_data(rstcer->ofw_node) = rstcer;
- }
- }
- return RT_EOK;
- }
- rt_err_t rt_reset_controller_unregister(struct rt_reset_controller *rstcer)
- {
- rt_err_t err = RT_EOK;
- if (!rstcer)
- {
- return -RT_EINVAL;
- }
- rt_spin_lock(&rstcer->spinlock);
- if (!rt_list_isempty(&rstcer->rstc_nodes))
- {
- err = -RT_EBUSY;
- goto _out_lock;
- }
- _out_lock:
- rt_spin_unlock(&rstcer->spinlock);
- return err;
- }
- rt_err_t rt_reset_control_reset(struct rt_reset_control *rstc)
- {
- rt_err_t err;
- if (!rstc)
- {
- return RT_EOK;
- }
- if (rstc->rstcer->ops->reset)
- {
- if ((err = rstc->rstcer->ops->reset(rstc)))
- {
- return err;
- }
- }
- if (rstc->is_array)
- {
- struct reset_control_array *rstc_arr = reset_control_to_array(rstc);
- for (int i = 0; i < rstc_arr->count; ++i)
- {
- if ((err = rt_reset_control_reset(rstc_arr->rstcs[i])))
- {
- return err;
- }
- }
- }
- return RT_EOK;
- }
- rt_err_t rt_reset_control_assert(struct rt_reset_control *rstc)
- {
- rt_err_t err;
- if (!rstc)
- {
- return RT_EOK;
- }
- if (rstc->rstcer->ops->assert)
- {
- if ((err = rstc->rstcer->ops->assert(rstc)))
- {
- return err;
- }
- }
- if (rstc->is_array)
- {
- struct reset_control_array *rstc_arr = reset_control_to_array(rstc);
- for (int i = 0; i < rstc_arr->count; ++i)
- {
- if ((err = rt_reset_control_assert(rstc_arr->rstcs[i])))
- {
- if (rstc->rstcer->ops->deassert)
- {
- rstc->rstcer->ops->deassert(rstc);
- }
- while (i --> 0)
- {
- rt_reset_control_deassert(rstc_arr->rstcs[i]);
- }
- return err;
- }
- }
- }
- return RT_EOK;
- }
- rt_err_t rt_reset_control_deassert(struct rt_reset_control *rstc)
- {
- rt_err_t err;
- if (!rstc)
- {
- return RT_EOK;
- }
- if (rstc->rstcer->ops->deassert)
- {
- if ((err = rstc->rstcer->ops->deassert(rstc)))
- {
- return err;
- }
- }
- if (rstc->is_array)
- {
- struct reset_control_array *rstc_arr = reset_control_to_array(rstc);
- for (int i = 0; i < rstc_arr->count; ++i)
- {
- if ((err = rt_reset_control_deassert(rstc_arr->rstcs[i])))
- {
- if (rstc->rstcer->ops->assert)
- {
- rstc->rstcer->ops->assert(rstc);
- }
- while (i --> 0)
- {
- rt_reset_control_assert(rstc_arr->rstcs[i]);
- }
- return err;
- }
- }
- }
- return RT_EOK;
- }
- int rt_reset_control_status(struct rt_reset_control *rstc)
- {
- if (!rstc)
- {
- return RT_EOK;
- }
- if (rstc->rstcer->ops->status)
- {
- return rstc->rstcer->ops->status(rstc);
- }
- return -RT_ENOSYS;
- }
- static void reset_free(struct rt_reset_control *rstc)
- {
- if (rstc->is_array)
- {
- struct reset_control_array *rstc_arr = reset_control_to_array(rstc);
- for (int i = 0; i < rstc_arr->count; ++i)
- {
- rt_reset_control_put(rstc_arr->rstcs[i]);
- }
- }
- rt_free(rstc);
- }
- struct rt_reset_control *rt_reset_control_get_array(struct rt_device *dev)
- {
- return rt_ofw_get_reset_control_array(dev->ofw_node);
- }
- struct rt_reset_control *rt_reset_control_get_by_index(struct rt_device *dev, int index)
- {
- return rt_ofw_get_reset_control_by_index(dev->ofw_node, index);
- }
- struct rt_reset_control *rt_reset_control_get_by_name(struct rt_device *dev, const char *name)
- {
- return rt_ofw_get_reset_control_by_name(dev->ofw_node, name);
- }
- void rt_reset_control_put(struct rt_reset_control *rstc)
- {
- struct rt_reset_controller *rstcer;
- if (!rstc)
- {
- return;
- }
- rstcer = rstc->rstcer;
- rt_spin_lock(&rstcer->spinlock);
- rt_list_remove(&rstc->list);
- rt_spin_unlock(&rstcer->spinlock);
- reset_free(rstc);
- }
- static struct rt_reset_control *ofw_get_reset_control(struct rt_ofw_node *np, int index,
- const char *name, rt_bool_t is_array)
- {
- rt_err_t err = RT_EOK;
- struct rt_reset_control *rstc;
- struct rt_ofw_cell_args reset_args = {};
- struct rt_reset_controller *rstcer = RT_NULL;
- if (is_array)
- {
- rt_size_t rstc_nr;
- struct reset_control_array *rstc_arr;
- rstc_nr = rt_ofw_count_phandle_cells(np, "resets", "#reset-cells");
- if (!rstc_nr)
- {
- return RT_NULL;
- }
- rstc_arr = rt_calloc(1, sizeof(*rstc_arr) + sizeof(struct rt_reset_control *) * rstc_nr);
- if (!rstc_arr)
- {
- LOG_E("No memory to create %s[%d] reset control",
- rt_ofw_node_full_name(np), index);
- return rt_err_ptr(-RT_ENOMEM);
- }
- rstc_arr->count = rstc_nr - 1;
- for (int i = 0; i < rstc_arr->count; ++i)
- {
- rstc_arr->rstcs[i] = ofw_get_reset_control(np, i + 1, RT_NULL, RT_FALSE);
- if (rt_is_err(rstc_arr->rstcs[i]))
- {
- err = rt_ptr_err(rstc_arr->rstcs[i]);
- while (i --> 0)
- {
- rt_reset_control_put(rstc_arr->rstcs[i]);
- }
- rt_free(rstc_arr);
- return rt_err_ptr(err);
- }
- }
- rstc = &rstc_arr->captain;
- rstc->is_array = RT_TRUE;
- }
- else
- {
- rstc = rt_calloc(1, sizeof(*rstc));
- if (!rstc)
- {
- LOG_E("No memory to create %s[%d] reset control",
- rt_ofw_node_full_name(np), index);
- return rt_err_ptr(-RT_ENOMEM);
- }
- }
- if (!rt_ofw_parse_phandle_cells(np, "resets", "#reset-cells", index, &reset_args))
- {
- void *rt_data;
- struct rt_object *obj;
- struct rt_ofw_node *reset_np = reset_args.data;
- if (!rt_ofw_data(reset_np))
- {
- rt_platform_ofw_request(reset_np);
- }
- rt_data = rt_ofw_data(reset_np);
- if (rt_data && (obj = rt_ofw_parse_object(reset_args.data,
- RT_RESET_CONTROLLER_OBJ_NAME, "#reset-cells")))
- {
- rstcer = rt_container_of(obj, struct rt_reset_controller, parent);
- }
- rt_ofw_node_put(reset_np);
- if (!rstcer)
- {
- err = -RT_EINVAL;
- goto _fail;
- }
- }
- else
- {
- /* Not reset */
- goto _fail;
- }
- if (!name && rt_ofw_prop_read_bool(np, "reset-names"))
- {
- rt_ofw_prop_read_string_index(np, "reset-names", index, &name);
- }
- rstc->con_id = name;
- rstc->rstcer = rstcer;
- if (rstcer->ops->ofw_parse)
- {
- err = rstcer->ops->ofw_parse(rstc, &reset_args);
- if (err)
- {
- LOG_E("Parse %s reset control error = %s",
- rt_ofw_node_full_name(np), rt_strerror(err));
- goto _fail;
- }
- }
- rstc->id = reset_args.args[0];
- rt_list_init(&rstc->list);
- rt_spin_lock(&rstcer->spinlock);
- rt_list_insert_after(&rstcer->rstc_nodes, &rstc->list);
- rt_spin_unlock(&rstcer->spinlock);
- return rstc;
- _fail:
- if (rstc && !rstc->is_array)
- {
- rt_free(rstc);
- }
- return rt_err_ptr(err);
- }
- struct rt_reset_control *rt_ofw_get_reset_control_array(struct rt_ofw_node *np)
- {
- return ofw_get_reset_control(np, 0, RT_NULL, RT_TRUE);
- }
- struct rt_reset_control *rt_ofw_get_reset_control_by_index(struct rt_ofw_node *np, int index)
- {
- return ofw_get_reset_control(np, index, RT_NULL, RT_FALSE);
- }
- struct rt_reset_control *rt_ofw_get_reset_control_by_name(struct rt_ofw_node *np, const char *name)
- {
- if (np)
- {
- int index = rt_ofw_prop_index_of_string(np, "reset-names", name);
- if (index >= 0)
- {
- return ofw_get_reset_control(np, index, name, RT_FALSE);
- }
- }
- return RT_NULL;
- }
|