[U-Boot] [PATCH 3/6] clk: mediatek: add support for CLK_GATE_SETCLR_INV flag
Ryder Lee
ryder.lee at mediatek.com
Mon Feb 11 02:54:34 UTC 2019
On Mon, 2019-02-04 at 11:58 +0100, Fabien Parent wrote:
> Add the implementation for the CLK_GATE_SETCLR_INV flag.
>
> Signed-off-by: Fabien Parent <fparent at baylibre.com>
Acked-by: Ryder Lee <ryder.lee at mediatek.com>
> ---
> drivers/clk/mediatek/clk-mtk.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/clk/mediatek/clk-mtk.c b/drivers/clk/mediatek/clk-mtk.c
> index 870b14ed8b..725be031b8 100644
> --- a/drivers/clk/mediatek/clk-mtk.c
> +++ b/drivers/clk/mediatek/clk-mtk.c
> @@ -390,6 +390,9 @@ static int mtk_clk_gate_enable(struct clk *clk)
> case CLK_GATE_SETCLR:
> writel(bit, priv->base + gate->regs->clr_ofs);
> break;
> + case CLK_GATE_SETCLR_INV:
> + writel(bit, priv->base + gate->regs->set_ofs);
> + break;
> case CLK_GATE_NO_SETCLR_INV:
> clrsetbits_le32(priv->base + gate->regs->sta_ofs, bit, bit);
> break;
More information about the U-Boot
mailing list