@@ -16,6 +16,7 @@
#include "sun8i_tcon_top.h"
struct sun8i_tcon_top_quirks {
+ bool has_tcon_tv0;
bool has_tcon_tv1;
bool has_dsi;
};
@@ -191,10 +192,11 @@ static int sun8i_tcon_top_bind(struct device *dev, struct device *master,
* to TVE clock parent.
*/
i = 0;
- clk_data->hws[CLK_TCON_TOP_TV0] =
- sun8i_tcon_top_register_gate(dev, "tcon-tv0", regs,
- &tcon_top->reg_lock,
- TCON_TOP_TCON_TV0_GATE, i++);
+ if (quirks->has_tcon_tv0)
+ clk_data->hws[CLK_TCON_TOP_TV0] =
+ sun8i_tcon_top_register_gate(dev, "tcon-tv0", regs,
+ &tcon_top->reg_lock,
+ TCON_TOP_TCON_TV0_GATE, i++);
if (quirks->has_tcon_tv1)
clk_data->hws[CLK_TCON_TOP_TV1] =
@@ -208,16 +210,18 @@ static int sun8i_tcon_top_bind(struct device *dev, struct device *master,
&tcon_top->reg_lock,
TCON_TOP_TCON_DSI_GATE, i++);
- for (i = 0; i < CLK_NUM; i++)
- if (IS_ERR(clk_data->hws[i])) {
- ret = PTR_ERR(clk_data->hws[i]);
- goto err_unregister_gates;
- }
+ if (i) {
+ for (i = 0; i < CLK_NUM; i++)
+ if (IS_ERR(clk_data->hws[i])) {
+ ret = PTR_ERR(clk_data->hws[i]);
+ goto err_unregister_gates;
+ }
- ret = of_clk_add_hw_provider(dev->of_node, of_clk_hw_onecell_get,
- clk_data);
- if (ret)
- goto err_unregister_gates;
+ ret = of_clk_add_hw_provider(dev->of_node, of_clk_hw_onecell_get,
+ clk_data);
+ if (ret)
+ goto err_unregister_gates;
+ }
dev_set_drvdata(dev, tcon_top);
@@ -266,16 +270,18 @@ static void sun8i_tcon_top_remove(struct platform_device *pdev)
}
static const struct sun8i_tcon_top_quirks sun8i_r40_tcon_top_quirks = {
+ .has_tcon_tv0 = true,
.has_tcon_tv1 = true,
.has_dsi = true,
};
static const struct sun8i_tcon_top_quirks sun20i_d1_tcon_top_quirks = {
+ .has_tcon_tv0 = true,
.has_dsi = true,
};
static const struct sun8i_tcon_top_quirks sun50i_h6_tcon_top_quirks = {
- /* Nothing special */
+ .has_tcon_tv0 = true,
};
/* sun4i_drv uses this list to check if a device node is a TCON TOP */
current implementation of tcon top assumes tv0 is always present, which isn't case in A100/A133 SoC's. Make tv0 optional by introducing another control similar to tv1 and make existing users with true/present. Signed-off-by: Parthiban Nallathambi <parthiban@linumiz.com> --- drivers/gpu/drm/sun4i/sun8i_tcon_top.c | 34 ++++++++++++++++++++-------------- 1 file changed, 20 insertions(+), 14 deletions(-)