mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-08 08:16:59 +02:00
clk: add clk_release_all()
Add clk_release_all() method which Disable/Free an array of clocks that has been previously requested by clk_request/get_by_*() Signed-off-by: Patrice Chotard <patrice.chotard@st.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
3b9d1bdd4e
commit
82a8a669b4
@ -65,6 +65,8 @@ int clk_get_by_index(struct udevice *dev, int index, struct clk *clk)
|
|||||||
debug("%s(dev=%p, index=%d, clk=%p)\n", __func__, dev, index, clk);
|
debug("%s(dev=%p, index=%d, clk=%p)\n", __func__, dev, index, clk);
|
||||||
|
|
||||||
assert(clk);
|
assert(clk);
|
||||||
|
clk->dev = NULL;
|
||||||
|
|
||||||
ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0,
|
ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0,
|
||||||
index, &args);
|
index, &args);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
@ -102,6 +104,7 @@ int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk)
|
|||||||
int index;
|
int index;
|
||||||
|
|
||||||
debug("%s(dev=%p, name=%s, clk=%p)\n", __func__, dev, name, clk);
|
debug("%s(dev=%p, name=%s, clk=%p)\n", __func__, dev, name, clk);
|
||||||
|
clk->dev = NULL;
|
||||||
|
|
||||||
index = dev_read_stringlist_search(dev, "clock-names", name);
|
index = dev_read_stringlist_search(dev, "clock-names", name);
|
||||||
if (index < 0) {
|
if (index < 0) {
|
||||||
@ -187,6 +190,29 @@ int clk_disable(struct clk *clk)
|
|||||||
return ops->disable(clk);
|
return ops->disable(clk);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int clk_release_all(struct clk *clk, int count)
|
||||||
|
{
|
||||||
|
int i, ret;
|
||||||
|
|
||||||
|
for (i = 0; i < count; i++) {
|
||||||
|
debug("%s(clk[%d]=%p)\n", __func__, i, &clk[i]);
|
||||||
|
|
||||||
|
/* check if clock has been previously requested */
|
||||||
|
if (!clk[i].dev)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
ret = clk_disable(&clk[i]);
|
||||||
|
if (ret && ret != -ENOSYS)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
ret = clk_free(&clk[i]);
|
||||||
|
if (ret && ret != -ENOSYS)
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
UCLASS_DRIVER(clk) = {
|
UCLASS_DRIVER(clk) = {
|
||||||
.id = UCLASS_CLK,
|
.id = UCLASS_CLK,
|
||||||
.name = "clk",
|
.name = "clk",
|
||||||
|
@ -174,6 +174,20 @@ int clk_enable(struct clk *clk);
|
|||||||
*/
|
*/
|
||||||
int clk_disable(struct clk *clk);
|
int clk_disable(struct clk *clk);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* clk_release_all() - Disable (turn off)/Free an array of previously
|
||||||
|
* requested clocks.
|
||||||
|
*
|
||||||
|
* For each clock contained in the clock array, this function will check if
|
||||||
|
* clock has been previously requested and then will disable and free it.
|
||||||
|
*
|
||||||
|
* @clk: A clock struct array that was previously successfully
|
||||||
|
* requested by clk_request/get_by_*().
|
||||||
|
* @count Number of clock contained in the array
|
||||||
|
* @return zero on success, or -ve error code.
|
||||||
|
*/
|
||||||
|
int clk_release_all(struct clk *clk, int count);
|
||||||
|
|
||||||
int soc_clk_dump(void);
|
int soc_clk_dump(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user