123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629 |
- /*
- * Copyright (c) 2006-2023, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2023-09-23 GuEe-GUI first version
- */
- #include <rtthread.h>
- #include <rtservice.h>
- #define DBG_TAG "rtdm.regulator"
- #define DBG_LVL DBG_INFO
- #include <rtdbg.h>
- #include <drivers/ofw.h>
- #include <drivers/platform.h>
- #include <drivers/regulator.h>
- struct rt_regulator
- {
- struct rt_regulator_node *reg_np;
- };
- static RT_DEFINE_SPINLOCK(_regulator_lock);
- static rt_err_t regulator_enable(struct rt_regulator_node *reg_np);
- static rt_err_t regulator_disable(struct rt_regulator_node *reg_np);
- rt_err_t rt_regulator_register(struct rt_regulator_node *reg_np)
- {
- const struct rt_regulator_param *param;
- if (!reg_np || !reg_np->dev || !reg_np->param || !reg_np->ops)
- {
- return -RT_EINVAL;
- }
- rt_list_init(®_np->list);
- rt_list_init(®_np->children_nodes);
- rt_list_init(®_np->notifier_nodes);
- rt_ref_init(®_np->ref);
- rt_atomic_store(®_np->enabled_count, 0);
- param = reg_np->param;
- reg_np->parent = RT_NULL;
- #ifdef RT_USING_OFW
- if (reg_np->dev->ofw_node)
- {
- rt_ofw_data(reg_np->dev->ofw_node) = reg_np;
- }
- #endif /* RT_USING_OFW */
- if (param->boot_on || param->always_on)
- {
- regulator_enable(reg_np);
- }
- return RT_EOK;
- }
- rt_err_t rt_regulator_unregister(struct rt_regulator_node *reg_np)
- {
- rt_err_t err = RT_EOK;
- if (!reg_np)
- {
- return -RT_EINVAL;
- }
- rt_hw_spin_lock(&_regulator_lock.lock);
- if (rt_atomic_load(®_np->enabled_count) != 0)
- {
- err = -RT_EBUSY;
- LOG_E("%s was enabled by consumer", reg_np->supply_name);
- goto _unlock;
- }
- if (!(reg_np->param->boot_on || reg_np->param->always_on))
- {
- regulator_disable(reg_np);
- }
- if (!rt_list_isempty(®_np->children_nodes) || rt_ref_read(®_np->ref) > 1)
- {
- err = -RT_EBUSY;
- goto _unlock;
- }
- reg_np->parent = RT_NULL;
- rt_list_remove(®_np->list);
- _unlock:
- rt_hw_spin_unlock(&_regulator_lock.lock);
- return err;
- }
- rt_err_t rt_regulator_notifier_register(struct rt_regulator *reg,
- struct rt_regulator_notifier *notifier)
- {
- struct rt_regulator_node *reg_np;
- if (!reg || !notifier)
- {
- return -RT_EINVAL;
- }
- rt_hw_spin_lock(&_regulator_lock.lock);
- reg_np = reg->reg_np;
- notifier->regulator = reg;
- rt_list_init(¬ifier->list);
- rt_list_insert_after(®_np->notifier_nodes, ¬ifier->list);
- rt_hw_spin_unlock(&_regulator_lock.lock);
- return RT_EOK;
- }
- rt_err_t rt_regulator_notifier_unregister(struct rt_regulator *reg,
- struct rt_regulator_notifier *notifier)
- {
- if (!reg || !notifier)
- {
- return -RT_EINVAL;
- }
- rt_hw_spin_lock(&_regulator_lock.lock);
- rt_list_remove(¬ifier->list);
- rt_hw_spin_unlock(&_regulator_lock.lock);
- return RT_EOK;
- }
- static rt_err_t regulator_notifier_call_chain(struct rt_regulator_node *reg_np,
- rt_ubase_t msg, void *data)
- {
- rt_err_t err = RT_EOK;
- struct rt_regulator_notifier *notifier;
- rt_list_t *head = ®_np->notifier_nodes;
- if (rt_list_isempty(head))
- {
- return err;
- }
- rt_list_for_each_entry(notifier, head, list)
- {
- err = notifier->callback(notifier, msg, data);
- if (err == -RT_EIO)
- {
- break;
- }
- }
- return err;
- }
- static rt_uint32_t regulator_get_enable_time(struct rt_regulator_node *reg_np)
- {
- if (reg_np->param->enable_delay)
- {
- return reg_np->param->enable_delay;
- }
- if (reg_np->ops->enable_time)
- {
- return reg_np->ops->enable_time(reg_np);
- }
- return 0;
- }
- static void regulator_delay(rt_uint32_t delay)
- {
- rt_uint32_t ms = delay / 1000;
- rt_uint32_t us = delay % 1000;
- if (ms > 0)
- {
- /*
- * For small enough values, handle super-millisecond
- * delays in the usleep_range() call below.
- */
- if (ms < 20)
- {
- us += ms * 1000;
- }
- else if (rt_thread_self())
- {
- rt_thread_mdelay(ms);
- }
- else
- {
- rt_hw_us_delay(ms * 1000);
- }
- }
- /*
- * Give the scheduler some room to coalesce with any other
- * wakeup sources. For delays shorter than 10 us, don't even
- * bother setting up high-resolution timers and just busy-loop.
- */
- if (us >= 10)
- {
- rt_hw_us_delay((us + 100) >> 1);
- }
- else
- {
- rt_hw_us_delay(us);
- }
- }
- static rt_err_t regulator_enable(struct rt_regulator_node *reg_np)
- {
- rt_err_t err = RT_EOK;
- rt_uint32_t enable_delay = regulator_get_enable_time(reg_np);
- if (reg_np->ops->enable)
- {
- err = reg_np->ops->enable(reg_np);
- if (!err)
- {
- if (enable_delay)
- {
- regulator_delay(enable_delay);
- }
- rt_atomic_add(®_np->enabled_count, 1);
- err = regulator_notifier_call_chain(reg_np, RT_REGULATOR_MSG_ENABLE, RT_NULL);
- }
- }
- if (!err && reg_np->parent)
- {
- err = regulator_enable(reg_np->parent);
- }
- return err;
- }
- rt_err_t rt_regulator_enable(struct rt_regulator *reg)
- {
- rt_err_t err;
- if (!reg)
- {
- return -RT_EINVAL;
- }
- if (rt_regulator_is_enabled(reg))
- {
- return RT_EOK;
- }
- rt_hw_spin_lock(&_regulator_lock.lock);
- err = regulator_enable(reg->reg_np);
- rt_hw_spin_unlock(&_regulator_lock.lock);
- return err;
- }
- static rt_err_t regulator_disable(struct rt_regulator_node *reg_np)
- {
- rt_err_t err = RT_EOK;
- if (reg_np->ops->disable)
- {
- err = reg_np->ops->disable(reg_np);
- if (!err)
- {
- if (reg_np->param->off_on_delay)
- {
- regulator_delay(reg_np->param->off_on_delay);
- }
- err = regulator_notifier_call_chain(reg_np, RT_REGULATOR_MSG_DISABLE, RT_NULL);
- }
- }
- if (!err && reg_np->parent)
- {
- err = regulator_disable(reg_np->parent);
- }
- return err;
- }
- rt_err_t rt_regulator_disable(struct rt_regulator *reg)
- {
- rt_err_t err;
- if (!reg)
- {
- return -RT_EINVAL;
- }
- if (!rt_regulator_is_enabled(reg))
- {
- return RT_EOK;
- }
- if (rt_atomic_load(®->reg_np->enabled_count) != 0)
- {
- rt_atomic_sub(®->reg_np->enabled_count, 1);
- return RT_EOK;
- }
- rt_hw_spin_lock(&_regulator_lock.lock);
- err = regulator_disable(reg->reg_np);
- rt_hw_spin_unlock(&_regulator_lock.lock);
- return err;
- }
- rt_bool_t rt_regulator_is_enabled(struct rt_regulator *reg)
- {
- if (!reg)
- {
- return -RT_EINVAL;
- }
- if (reg->reg_np->ops->is_enabled)
- {
- return reg->reg_np->ops->is_enabled(reg->reg_np);
- }
- return rt_atomic_load(®->reg_np->enabled_count) > 0;
- }
- static rt_err_t regulator_set_voltage(struct rt_regulator_node *reg_np, int min_uvolt, int max_uvolt)
- {
- rt_err_t err = RT_EOK;
- if (reg_np->ops->set_voltage)
- {
- union rt_regulator_notifier_args args;
- RT_ASSERT(reg_np->ops->get_voltage != RT_NULL);
- args.old_uvolt = reg_np->ops->get_voltage(reg_np);
- args.min_uvolt = min_uvolt;
- args.max_uvolt = max_uvolt;
- err = regulator_notifier_call_chain(reg_np, RT_REGULATOR_MSG_VOLTAGE_CHANGE, &args);
- if (!err)
- {
- err = reg_np->ops->set_voltage(reg_np, min_uvolt, max_uvolt);
- }
- if (err)
- {
- regulator_notifier_call_chain(reg_np, RT_REGULATOR_MSG_VOLTAGE_CHANGE_ERR,
- (void *)(rt_base_t)args.old_uvolt);
- }
- }
- if (!err && reg_np->parent)
- {
- err = regulator_set_voltage(reg_np->parent, min_uvolt, max_uvolt);
- }
- return err;
- }
- rt_bool_t rt_regulator_is_supported_voltage(struct rt_regulator *reg, int min_uvolt, int max_uvolt)
- {
- const struct rt_regulator_param *param;
- RT_ASSERT(reg != RT_NULL);
- param = reg->reg_np->param;
- if (!param)
- {
- return RT_FALSE;
- }
- return param->min_uvolt <= min_uvolt && param->max_uvolt >= max_uvolt;
- }
- rt_err_t rt_regulator_set_voltage(struct rt_regulator *reg, int min_uvolt, int max_uvolt)
- {
- rt_err_t err;
- if (!reg)
- {
- return -RT_EINVAL;
- }
- rt_hw_spin_lock(&_regulator_lock.lock);
- err = regulator_set_voltage(reg->reg_np, min_uvolt, max_uvolt);
- rt_hw_spin_unlock(&_regulator_lock.lock);
- return err;
- }
- int rt_regulator_get_voltage(struct rt_regulator *reg)
- {
- int uvolt = RT_REGULATOR_UVOLT_INVALID;
- struct rt_regulator_node *reg_np;
- if (!reg)
- {
- return -RT_EINVAL;
- }
- rt_hw_spin_lock(&_regulator_lock.lock);
- reg_np = reg->reg_np;
- if (reg_np->ops->get_voltage)
- {
- uvolt = reg_np->ops->get_voltage(reg->reg_np);
- }
- else
- {
- uvolt = -RT_ENOSYS;
- }
- rt_hw_spin_unlock(&_regulator_lock.lock);
- return uvolt;
- }
- rt_err_t rt_regulator_set_mode(struct rt_regulator *reg, rt_uint32_t mode)
- {
- rt_err_t err;
- struct rt_regulator_node *reg_np;
- if (!reg)
- {
- return -RT_EINVAL;
- }
- rt_hw_spin_lock(&_regulator_lock.lock);
- reg_np = reg->reg_np;
- if (reg_np->ops->set_mode)
- {
- err = reg_np->ops->set_mode(reg_np, mode);
- }
- else
- {
- err = -RT_ENOSYS;
- }
- rt_hw_spin_unlock(&_regulator_lock.lock);
- return err;
- }
- rt_int32_t rt_regulator_get_mode(struct rt_regulator *reg)
- {
- rt_int32_t mode;
- struct rt_regulator_node *reg_np;
- if (!reg)
- {
- return -RT_EINVAL;
- }
- rt_hw_spin_lock(&_regulator_lock.lock);
- reg_np = reg->reg_np;
- if (reg_np->ops->get_mode)
- {
- mode = reg_np->ops->get_mode(reg_np);
- }
- else
- {
- mode = -RT_ENOSYS;
- }
- rt_hw_spin_unlock(&_regulator_lock.lock);
- return mode;
- }
- static void regulator_check_parent(struct rt_regulator_node *reg_np)
- {
- if (reg_np->parent)
- {
- return;
- }
- else
- {
- #ifdef RT_USING_OFW
- rt_phandle parent_phandle = 0;
- struct rt_ofw_node *np = reg_np->dev->ofw_node;
- while (np)
- {
- if (rt_ofw_prop_read_u32(np, "vin-supply", &parent_phandle))
- {
- break;
- }
- if (!(np = rt_ofw_find_node_by_phandle(parent_phandle)))
- {
- break;
- }
- if (!(reg_np->parent = rt_ofw_data(np)))
- {
- LOG_W("%s parent ofw node = %s not init",
- reg_np->supply_name, rt_ofw_node_full_name(np));
- rt_ofw_node_put(np);
- break;
- }
- rt_list_insert_after(®_np->parent->children_nodes, ®_np->list);
- rt_ofw_node_put(np);
- }
- #endif
- }
- }
- struct rt_regulator *rt_regulator_get(struct rt_device *dev, const char *id)
- {
- struct rt_regulator *reg = RT_NULL;
- struct rt_regulator_node *reg_np = RT_NULL;
- if (!dev || !id)
- {
- reg = rt_err_ptr(-RT_EINVAL);
- goto _end;
- }
- #ifdef RT_USING_OFW
- if (dev->ofw_node)
- {
- rt_phandle supply_phandle;
- struct rt_ofw_node *np = dev->ofw_node;
- char supply_name[64];
- rt_snprintf(supply_name, sizeof(supply_name), "%s-supply", id);
- if (rt_ofw_prop_read_u32(np, supply_name, &supply_phandle))
- {
- goto _end;
- }
- if (!(np = rt_ofw_find_node_by_phandle(supply_phandle)))
- {
- reg = rt_err_ptr(-RT_EIO);
- goto _end;
- }
- if (!rt_ofw_data(np))
- {
- rt_platform_ofw_request(np);
- }
- reg_np = rt_ofw_data(np);
- rt_ofw_node_put(np);
- }
- #endif
- if (!reg_np)
- {
- reg = rt_err_ptr(-RT_ENOSYS);
- goto _end;
- }
- rt_hw_spin_lock(&_regulator_lock.lock);
- regulator_check_parent(reg_np);
- rt_hw_spin_unlock(&_regulator_lock.lock);
- reg = rt_calloc(1, sizeof(*reg));
- if (!reg)
- {
- reg = rt_err_ptr(-RT_ENOMEM);
- goto _end;
- }
- reg->reg_np = reg_np;
- rt_ref_get(®_np->ref);
- _end:
- return reg;
- }
- static void regulator_release(struct rt_ref *r)
- {
- struct rt_regulator_node *reg_np = rt_container_of(r, struct rt_regulator_node, ref);
- rt_regulator_unregister(reg_np);
- }
- void rt_regulator_put(struct rt_regulator *reg)
- {
- if (!reg)
- {
- return;
- }
- rt_ref_put(®->reg_np->ref, ®ulator_release);
- rt_free(reg);
- }
|