diff options
author | Tero Kristo <t-kristo@ti.com> | 2019-10-07 14:26:04 +0200 |
---|---|---|
committer | Tero Kristo <t-kristo@ti.com> | 2019-10-31 14:18:29 +0100 |
commit | ece3e465b80a05c994783c7161e3d49035064f71 (patch) | |
tree | 213ab05eab4b3de5b2434f7a86731c0951787ed2 /drivers/clk/ti | |
parent | clk: ti: am33xx: drop idlest polling from gfx clock (diff) | |
download | linux-ece3e465b80a05c994783c7161e3d49035064f71.tar.xz linux-ece3e465b80a05c994783c7161e3d49035064f71.zip |
clk: ti: am43xx: drop idlest polling from gfx clock
Due to the way ti sysc and hardreset line control is now implemented,
it is not possible to poll the clock status for gfx clock independent
of hardreset line control. Thus, add a flag to prevent handling this
status bit from clock driver. Correct sequencing of events is guaranteed
by ti-sysc bus driver.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Diffstat (limited to 'drivers/clk/ti')
-rw-r--r-- | drivers/clk/ti/clk-43xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/ti/clk-43xx.c b/drivers/clk/ti/clk-43xx.c index 7ec8fe6aa7c1..af3e7805769e 100644 --- a/drivers/clk/ti/clk-43xx.c +++ b/drivers/clk/ti/clk-43xx.c @@ -73,7 +73,7 @@ static const struct omap_clkctrl_reg_data am4_mpu_clkctrl_regs[] __initconst = { }; static const struct omap_clkctrl_reg_data am4_gfx_l3_clkctrl_regs[] __initconst = { - { AM4_GFX_L3_GFX_CLKCTRL, NULL, CLKF_SW_SUP, "gfx_fck_div_ck" }, + { AM4_GFX_L3_GFX_CLKCTRL, NULL, CLKF_SW_SUP | CLKF_NO_IDLEST, "gfx_fck_div_ck" }, { 0 }, }; |