/* * we have some non-atomic read/write * operations behind it, so let's * take one lock for handling autoidle * of all clocks
*/ static DEFINE_SPINLOCK(autoidle_spinlock);
if (clk->flags & AUTOIDLE_LOW)
val |= (1 << clk->shift); else
val &= ~(1 << clk->shift);
ti_clk_ll_ops->clk_writel(val, &clk->reg);
}
/** * _clk_generic_allow_autoidle_all - enable autoidle for all clocks * * Enables hardware autoidle for all registered DT clocks, which have * the feature.
*/ staticvoid _clk_generic_allow_autoidle_all(void)
{ struct clk_ti_autoidle *c;
/** * _clk_generic_deny_autoidle_all - disable autoidle for all clocks * * Disables hardware autoidle for all registered DT clocks, which have * the feature.
*/ staticvoid _clk_generic_deny_autoidle_all(void)
{ struct clk_ti_autoidle *c;
/** * of_ti_clk_autoidle_setup - sets up hardware autoidle for a clock * @node: pointer to the clock device node * * Checks if a clock has hardware autoidle support or not (check * for presence of 'ti,autoidle-shift' property in the device tree * node) and sets up the hardware autoidle feature for the clock * if available. If autoidle is available, the clock is also added * to the autoidle list for later processing. Returns 0 on success, * negative error value on failure.
*/ int __init of_ti_clk_autoidle_setup(struct device_node *node)
{
u32 shift; struct clk_ti_autoidle *clk; int ret;
/* Check if this clock has autoidle support or not */ if (of_property_read_u32(node, "ti,autoidle-shift", &shift)) return 0;
clk = kzalloc(sizeof(*clk), GFP_KERNEL);
if (!clk) return -ENOMEM;
clk->shift = shift;
clk->name = ti_dt_clk_name(node);
ret = ti_clk_get_reg_addr(node, 0, &clk->reg); if (ret) {
kfree(clk); return ret;
}
if (of_property_read_bool(node, "ti,invert-autoidle-bit"))
clk->flags |= AUTOIDLE_LOW;
list_add(&clk->node, &autoidle_clks);
return 0;
}
/** * omap2_clk_enable_autoidle_all - enable autoidle on all OMAP clocks that * support it * * Enable clock autoidle on all OMAP clocks that have allow_idle * function pointers associated with them. This function is intended * to be temporary until support for this is added to the common clock * code. Returns 0.
*/ int omap2_clk_enable_autoidle_all(void)
{ int ret;
ret = omap2_clk_for_each(_omap2_clk_allow_idle); if (ret) return ret;
_clk_generic_allow_autoidle_all();
return 0;
}
/** * omap2_clk_disable_autoidle_all - disable autoidle on all OMAP clocks that * support it * * Disable clock autoidle on all OMAP clocks that have allow_idle * function pointers associated with them. This function is intended * to be temporary until support for this is added to the common clock * code. Returns 0.
*/ int omap2_clk_disable_autoidle_all(void)
{ int ret;
ret = omap2_clk_for_each(_omap2_clk_deny_idle); if (ret) return ret;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.