mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-30 13:03:01 +00:00

The DE33 is a newer version of the Allwinner Display Engine IP block, found in the H616, H618, H700 and T507 SoCs. DE2 and DE3 are already supported by the mainline driver. The DE33 in the H616 has mixer0 and writeback units. The clocks and resets required are identical to the H3 and H5 respectively, so use those existing structs for the H616 description. There are two additional 32-bit registers (at offsets 0x24 and 0x28) which require clearing and setting respectively to bring up the hardware. The function of these registers is currently unknown, and the values are taken from the out-of-tree driver. Add the required clock description struct and compatible string to the DE2 driver. Signed-off-by: Ryan Walklin <ryan@testtoast.com> Link: https://patch.msgid.link/20250511104042.24249-9-ryan@testtoast.com Signed-off-by: Chen-Yu Tsai <wens@csie.org>
379 lines
10 KiB
C
379 lines
10 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (c) 2017 Icenowy Zheng <icenowy@aosc.io>
|
|
*/
|
|
|
|
#include <linux/clk.h>
|
|
#include <linux/clk-provider.h>
|
|
#include <linux/io.h>
|
|
#include <linux/module.h>
|
|
#include <linux/of.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/reset.h>
|
|
|
|
#include "ccu_common.h"
|
|
#include "ccu_div.h"
|
|
#include "ccu_gate.h"
|
|
#include "ccu_reset.h"
|
|
|
|
#include "ccu-sun8i-de2.h"
|
|
|
|
static SUNXI_CCU_GATE(bus_mixer0_clk, "bus-mixer0", "bus-de",
|
|
0x04, BIT(0), 0);
|
|
static SUNXI_CCU_GATE(bus_mixer1_clk, "bus-mixer1", "bus-de",
|
|
0x04, BIT(1), 0);
|
|
static SUNXI_CCU_GATE(bus_wb_clk, "bus-wb", "bus-de",
|
|
0x04, BIT(2), 0);
|
|
static SUNXI_CCU_GATE(bus_rot_clk, "bus-rot", "bus-de",
|
|
0x04, BIT(3), 0);
|
|
|
|
static SUNXI_CCU_GATE(mixer0_clk, "mixer0", "mixer0-div",
|
|
0x00, BIT(0), CLK_SET_RATE_PARENT);
|
|
static SUNXI_CCU_GATE(mixer1_clk, "mixer1", "mixer1-div",
|
|
0x00, BIT(1), CLK_SET_RATE_PARENT);
|
|
static SUNXI_CCU_GATE(wb_clk, "wb", "wb-div",
|
|
0x00, BIT(2), CLK_SET_RATE_PARENT);
|
|
static SUNXI_CCU_GATE(rot_clk, "rot", "rot-div",
|
|
0x00, BIT(3), CLK_SET_RATE_PARENT);
|
|
|
|
static SUNXI_CCU_M(mixer0_div_clk, "mixer0-div", "de", 0x0c, 0, 4,
|
|
CLK_SET_RATE_PARENT);
|
|
static SUNXI_CCU_M(mixer1_div_clk, "mixer1-div", "de", 0x0c, 4, 4,
|
|
CLK_SET_RATE_PARENT);
|
|
static SUNXI_CCU_M(wb_div_clk, "wb-div", "de", 0x0c, 8, 4,
|
|
CLK_SET_RATE_PARENT);
|
|
static SUNXI_CCU_M(rot_div_clk, "rot-div", "de", 0x0c, 0x0c, 4,
|
|
CLK_SET_RATE_PARENT);
|
|
|
|
static SUNXI_CCU_M(mixer0_div_a83_clk, "mixer0-div", "pll-de", 0x0c, 0, 4,
|
|
CLK_SET_RATE_PARENT);
|
|
static SUNXI_CCU_M(mixer1_div_a83_clk, "mixer1-div", "pll-de", 0x0c, 4, 4,
|
|
CLK_SET_RATE_PARENT);
|
|
static SUNXI_CCU_M(wb_div_a83_clk, "wb-div", "pll-de", 0x0c, 8, 4,
|
|
CLK_SET_RATE_PARENT);
|
|
static SUNXI_CCU_M(rot_div_a83_clk, "rot-div", "pll-de", 0x0c, 0x0c, 4,
|
|
CLK_SET_RATE_PARENT);
|
|
|
|
static struct ccu_common *sun8i_de2_ccu_clks[] = {
|
|
&mixer0_clk.common,
|
|
&mixer1_clk.common,
|
|
&wb_clk.common,
|
|
&rot_clk.common,
|
|
|
|
&bus_mixer0_clk.common,
|
|
&bus_mixer1_clk.common,
|
|
&bus_wb_clk.common,
|
|
&bus_rot_clk.common,
|
|
|
|
&mixer0_div_clk.common,
|
|
&mixer1_div_clk.common,
|
|
&wb_div_clk.common,
|
|
&rot_div_clk.common,
|
|
|
|
&mixer0_div_a83_clk.common,
|
|
&mixer1_div_a83_clk.common,
|
|
&wb_div_a83_clk.common,
|
|
&rot_div_a83_clk.common,
|
|
};
|
|
|
|
static struct clk_hw_onecell_data sun8i_a83t_de2_hw_clks = {
|
|
.hws = {
|
|
[CLK_MIXER0] = &mixer0_clk.common.hw,
|
|
[CLK_MIXER1] = &mixer1_clk.common.hw,
|
|
[CLK_WB] = &wb_clk.common.hw,
|
|
[CLK_ROT] = &rot_clk.common.hw,
|
|
|
|
[CLK_BUS_MIXER0] = &bus_mixer0_clk.common.hw,
|
|
[CLK_BUS_MIXER1] = &bus_mixer1_clk.common.hw,
|
|
[CLK_BUS_WB] = &bus_wb_clk.common.hw,
|
|
[CLK_BUS_ROT] = &bus_rot_clk.common.hw,
|
|
|
|
[CLK_MIXER0_DIV] = &mixer0_div_a83_clk.common.hw,
|
|
[CLK_MIXER1_DIV] = &mixer1_div_a83_clk.common.hw,
|
|
[CLK_WB_DIV] = &wb_div_a83_clk.common.hw,
|
|
[CLK_ROT_DIV] = &rot_div_a83_clk.common.hw,
|
|
},
|
|
.num = CLK_NUMBER_WITH_ROT,
|
|
};
|
|
|
|
static struct clk_hw_onecell_data sun8i_h3_de2_hw_clks = {
|
|
.hws = {
|
|
[CLK_MIXER0] = &mixer0_clk.common.hw,
|
|
[CLK_MIXER1] = &mixer1_clk.common.hw,
|
|
[CLK_WB] = &wb_clk.common.hw,
|
|
|
|
[CLK_BUS_MIXER0] = &bus_mixer0_clk.common.hw,
|
|
[CLK_BUS_MIXER1] = &bus_mixer1_clk.common.hw,
|
|
[CLK_BUS_WB] = &bus_wb_clk.common.hw,
|
|
|
|
[CLK_MIXER0_DIV] = &mixer0_div_clk.common.hw,
|
|
[CLK_MIXER1_DIV] = &mixer1_div_clk.common.hw,
|
|
[CLK_WB_DIV] = &wb_div_clk.common.hw,
|
|
},
|
|
.num = CLK_NUMBER_WITHOUT_ROT,
|
|
};
|
|
|
|
static struct clk_hw_onecell_data sun8i_v3s_de2_hw_clks = {
|
|
.hws = {
|
|
[CLK_MIXER0] = &mixer0_clk.common.hw,
|
|
[CLK_WB] = &wb_clk.common.hw,
|
|
|
|
[CLK_BUS_MIXER0] = &bus_mixer0_clk.common.hw,
|
|
[CLK_BUS_WB] = &bus_wb_clk.common.hw,
|
|
|
|
[CLK_MIXER0_DIV] = &mixer0_div_clk.common.hw,
|
|
[CLK_WB_DIV] = &wb_div_clk.common.hw,
|
|
},
|
|
.num = CLK_NUMBER_WITHOUT_ROT,
|
|
};
|
|
|
|
static struct clk_hw_onecell_data sun50i_a64_de2_hw_clks = {
|
|
.hws = {
|
|
[CLK_MIXER0] = &mixer0_clk.common.hw,
|
|
[CLK_MIXER1] = &mixer1_clk.common.hw,
|
|
[CLK_WB] = &wb_clk.common.hw,
|
|
[CLK_ROT] = &rot_clk.common.hw,
|
|
|
|
[CLK_BUS_MIXER0] = &bus_mixer0_clk.common.hw,
|
|
[CLK_BUS_MIXER1] = &bus_mixer1_clk.common.hw,
|
|
[CLK_BUS_WB] = &bus_wb_clk.common.hw,
|
|
[CLK_BUS_ROT] = &bus_rot_clk.common.hw,
|
|
|
|
[CLK_MIXER0_DIV] = &mixer0_div_clk.common.hw,
|
|
[CLK_MIXER1_DIV] = &mixer1_div_clk.common.hw,
|
|
[CLK_WB_DIV] = &wb_div_clk.common.hw,
|
|
[CLK_ROT_DIV] = &rot_div_clk.common.hw,
|
|
},
|
|
.num = CLK_NUMBER_WITH_ROT,
|
|
};
|
|
|
|
static const struct ccu_reset_map sun8i_a83t_de2_resets[] = {
|
|
[RST_MIXER0] = { 0x08, BIT(0) },
|
|
/*
|
|
* Mixer1 reset line is shared with wb, so only RST_WB is
|
|
* exported here.
|
|
*/
|
|
[RST_WB] = { 0x08, BIT(2) },
|
|
[RST_ROT] = { 0x08, BIT(3) },
|
|
};
|
|
|
|
static const struct ccu_reset_map sun8i_h3_de2_resets[] = {
|
|
[RST_MIXER0] = { 0x08, BIT(0) },
|
|
/*
|
|
* Mixer1 reset line is shared with wb, so only RST_WB is
|
|
* exported here.
|
|
* V3s doesn't have mixer1, so it also shares this struct.
|
|
*/
|
|
[RST_WB] = { 0x08, BIT(2) },
|
|
};
|
|
|
|
static const struct ccu_reset_map sun50i_a64_de2_resets[] = {
|
|
[RST_MIXER0] = { 0x08, BIT(0) },
|
|
[RST_MIXER1] = { 0x08, BIT(1) },
|
|
[RST_WB] = { 0x08, BIT(2) },
|
|
[RST_ROT] = { 0x08, BIT(3) },
|
|
};
|
|
|
|
static const struct ccu_reset_map sun50i_h5_de2_resets[] = {
|
|
[RST_MIXER0] = { 0x08, BIT(0) },
|
|
[RST_MIXER1] = { 0x08, BIT(1) },
|
|
[RST_WB] = { 0x08, BIT(2) },
|
|
};
|
|
|
|
static const struct sunxi_ccu_desc sun8i_a83t_de2_clk_desc = {
|
|
.ccu_clks = sun8i_de2_ccu_clks,
|
|
.num_ccu_clks = ARRAY_SIZE(sun8i_de2_ccu_clks),
|
|
|
|
.hw_clks = &sun8i_a83t_de2_hw_clks,
|
|
|
|
.resets = sun8i_a83t_de2_resets,
|
|
.num_resets = ARRAY_SIZE(sun8i_a83t_de2_resets),
|
|
};
|
|
|
|
static const struct sunxi_ccu_desc sun8i_h3_de2_clk_desc = {
|
|
.ccu_clks = sun8i_de2_ccu_clks,
|
|
.num_ccu_clks = ARRAY_SIZE(sun8i_de2_ccu_clks),
|
|
|
|
.hw_clks = &sun8i_h3_de2_hw_clks,
|
|
|
|
.resets = sun8i_h3_de2_resets,
|
|
.num_resets = ARRAY_SIZE(sun8i_h3_de2_resets),
|
|
};
|
|
|
|
static const struct sunxi_ccu_desc sun8i_r40_de2_clk_desc = {
|
|
.ccu_clks = sun8i_de2_ccu_clks,
|
|
.num_ccu_clks = ARRAY_SIZE(sun8i_de2_ccu_clks),
|
|
|
|
.hw_clks = &sun50i_a64_de2_hw_clks,
|
|
|
|
.resets = sun8i_a83t_de2_resets,
|
|
.num_resets = ARRAY_SIZE(sun8i_a83t_de2_resets),
|
|
};
|
|
|
|
static const struct sunxi_ccu_desc sun8i_v3s_de2_clk_desc = {
|
|
.ccu_clks = sun8i_de2_ccu_clks,
|
|
.num_ccu_clks = ARRAY_SIZE(sun8i_de2_ccu_clks),
|
|
|
|
.hw_clks = &sun8i_v3s_de2_hw_clks,
|
|
|
|
.resets = sun8i_a83t_de2_resets,
|
|
.num_resets = ARRAY_SIZE(sun8i_a83t_de2_resets),
|
|
};
|
|
|
|
static const struct sunxi_ccu_desc sun50i_a64_de2_clk_desc = {
|
|
.ccu_clks = sun8i_de2_ccu_clks,
|
|
.num_ccu_clks = ARRAY_SIZE(sun8i_de2_ccu_clks),
|
|
|
|
.hw_clks = &sun50i_a64_de2_hw_clks,
|
|
|
|
.resets = sun50i_a64_de2_resets,
|
|
.num_resets = ARRAY_SIZE(sun50i_a64_de2_resets),
|
|
};
|
|
|
|
static const struct sunxi_ccu_desc sun50i_h5_de2_clk_desc = {
|
|
.ccu_clks = sun8i_de2_ccu_clks,
|
|
.num_ccu_clks = ARRAY_SIZE(sun8i_de2_ccu_clks),
|
|
|
|
.hw_clks = &sun8i_h3_de2_hw_clks,
|
|
|
|
.resets = sun50i_h5_de2_resets,
|
|
.num_resets = ARRAY_SIZE(sun50i_h5_de2_resets),
|
|
};
|
|
|
|
static const struct sunxi_ccu_desc sun50i_h616_de33_clk_desc = {
|
|
.ccu_clks = sun8i_de2_ccu_clks,
|
|
.num_ccu_clks = ARRAY_SIZE(sun8i_de2_ccu_clks),
|
|
|
|
.hw_clks = &sun8i_h3_de2_hw_clks,
|
|
|
|
.resets = sun50i_h5_de2_resets,
|
|
.num_resets = ARRAY_SIZE(sun50i_h5_de2_resets),
|
|
};
|
|
|
|
static int sunxi_de2_clk_probe(struct platform_device *pdev)
|
|
{
|
|
struct clk *bus_clk, *mod_clk;
|
|
struct reset_control *rstc;
|
|
void __iomem *reg;
|
|
const struct sunxi_ccu_desc *ccu_desc;
|
|
int ret;
|
|
|
|
ccu_desc = of_device_get_match_data(&pdev->dev);
|
|
if (!ccu_desc)
|
|
return -EINVAL;
|
|
|
|
reg = devm_platform_ioremap_resource(pdev, 0);
|
|
if (IS_ERR(reg))
|
|
return PTR_ERR(reg);
|
|
|
|
bus_clk = devm_clk_get(&pdev->dev, "bus");
|
|
if (IS_ERR(bus_clk))
|
|
return dev_err_probe(&pdev->dev, PTR_ERR(bus_clk),
|
|
"Couldn't get bus clk\n");
|
|
|
|
mod_clk = devm_clk_get(&pdev->dev, "mod");
|
|
if (IS_ERR(mod_clk))
|
|
return dev_err_probe(&pdev->dev, PTR_ERR(mod_clk),
|
|
"Couldn't get mod clk\n");
|
|
|
|
rstc = devm_reset_control_get_exclusive(&pdev->dev, NULL);
|
|
if (IS_ERR(rstc))
|
|
return dev_err_probe(&pdev->dev, PTR_ERR(rstc),
|
|
"Couldn't get reset control\n");
|
|
|
|
/* The clocks need to be enabled for us to access the registers */
|
|
ret = clk_prepare_enable(bus_clk);
|
|
if (ret) {
|
|
dev_err(&pdev->dev, "Couldn't enable bus clk: %d\n", ret);
|
|
return ret;
|
|
}
|
|
|
|
ret = clk_prepare_enable(mod_clk);
|
|
if (ret) {
|
|
dev_err(&pdev->dev, "Couldn't enable mod clk: %d\n", ret);
|
|
goto err_disable_bus_clk;
|
|
}
|
|
|
|
/* The reset control needs to be asserted for the controls to work */
|
|
ret = reset_control_deassert(rstc);
|
|
if (ret) {
|
|
dev_err(&pdev->dev,
|
|
"Couldn't deassert reset control: %d\n", ret);
|
|
goto err_disable_mod_clk;
|
|
}
|
|
|
|
/*
|
|
* The DE33 requires these additional (unknown) registers set
|
|
* during initialisation.
|
|
*/
|
|
if (of_device_is_compatible(pdev->dev.of_node,
|
|
"allwinner,sun50i-h616-de33-clk")) {
|
|
writel(0, reg + 0x24);
|
|
writel(0x0000a980, reg + 0x28);
|
|
}
|
|
|
|
ret = devm_sunxi_ccu_probe(&pdev->dev, reg, ccu_desc);
|
|
if (ret)
|
|
goto err_assert_reset;
|
|
|
|
return 0;
|
|
|
|
err_assert_reset:
|
|
reset_control_assert(rstc);
|
|
err_disable_mod_clk:
|
|
clk_disable_unprepare(mod_clk);
|
|
err_disable_bus_clk:
|
|
clk_disable_unprepare(bus_clk);
|
|
return ret;
|
|
}
|
|
|
|
static const struct of_device_id sunxi_de2_clk_ids[] = {
|
|
{
|
|
.compatible = "allwinner,sun8i-a83t-de2-clk",
|
|
.data = &sun8i_a83t_de2_clk_desc,
|
|
},
|
|
{
|
|
.compatible = "allwinner,sun8i-h3-de2-clk",
|
|
.data = &sun8i_h3_de2_clk_desc,
|
|
},
|
|
{
|
|
.compatible = "allwinner,sun8i-r40-de2-clk",
|
|
.data = &sun8i_r40_de2_clk_desc,
|
|
},
|
|
{
|
|
.compatible = "allwinner,sun8i-v3s-de2-clk",
|
|
.data = &sun8i_v3s_de2_clk_desc,
|
|
},
|
|
{
|
|
.compatible = "allwinner,sun50i-a64-de2-clk",
|
|
.data = &sun50i_a64_de2_clk_desc,
|
|
},
|
|
{
|
|
.compatible = "allwinner,sun50i-h5-de2-clk",
|
|
.data = &sun50i_h5_de2_clk_desc,
|
|
},
|
|
{
|
|
.compatible = "allwinner,sun50i-h6-de3-clk",
|
|
.data = &sun50i_h5_de2_clk_desc,
|
|
},
|
|
{
|
|
.compatible = "allwinner,sun50i-h616-de33-clk",
|
|
.data = &sun50i_h616_de33_clk_desc,
|
|
},
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(of, sunxi_de2_clk_ids);
|
|
|
|
static struct platform_driver sunxi_de2_clk_driver = {
|
|
.probe = sunxi_de2_clk_probe,
|
|
.driver = {
|
|
.name = "sunxi-de2-clks",
|
|
.of_match_table = sunxi_de2_clk_ids,
|
|
},
|
|
};
|
|
module_platform_driver(sunxi_de2_clk_driver);
|
|
|
|
MODULE_IMPORT_NS("SUNXI_CCU");
|
|
MODULE_DESCRIPTION("Support for the Allwinner SoCs DE2 CCU");
|
|
MODULE_LICENSE("GPL");
|