Skip to content

Commit 81279f5

Browse files
SFxingyuwuConchuOD
authored andcommitted
clk: starfive: Add StarFive JH7110 Image-Signal-Process clock driver
Add driver for the StarFive JH7110 Image-Signal-Process clock controller. And these clock controllers should power on and enable the clocks from SYSCRG before registering. Acked-by: Palmer Dabbelt <palmer@rivosinc.com> Reviewed-by: Emil Renner Berthing <emil.renner.berthing@canonical.com> Reviewed-by: Hal Feng <hal.feng@starfivetech.com> Signed-off-by: Xingyu Wu <xingyu.wu@starfivetech.com> Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
1 parent 7c53b44 commit 81279f5

File tree

4 files changed

+247
-0
lines changed

4 files changed

+247
-0
lines changed

drivers/clk/starfive/Kconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,11 @@ config CLK_STARFIVE_JH7110_STG
5656
help
5757
Say yes here to support the System-Top-Group clock controller
5858
on the StarFive JH7110 SoC.
59+
60+
config CLK_STARFIVE_JH7110_ISP
61+
tristate "StarFive JH7110 Image-Signal-Process clock support"
62+
depends on CLK_STARFIVE_JH7110_SYS && JH71XX_PMU
63+
default m if ARCH_STARFIVE
64+
help
65+
Say yes here to support the Image-Signal-Process clock controller
66+
on the StarFive JH7110 SoC.

drivers/clk/starfive/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ obj-$(CONFIG_CLK_STARFIVE_JH7110_PLL) += clk-starfive-jh7110-pll.o
88
obj-$(CONFIG_CLK_STARFIVE_JH7110_SYS) += clk-starfive-jh7110-sys.o
99
obj-$(CONFIG_CLK_STARFIVE_JH7110_AON) += clk-starfive-jh7110-aon.o
1010
obj-$(CONFIG_CLK_STARFIVE_JH7110_STG) += clk-starfive-jh7110-stg.o
11+
obj-$(CONFIG_CLK_STARFIVE_JH7110_ISP) += clk-starfive-jh7110-isp.o
Lines changed: 232 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,232 @@
1+
// SPDX-License-Identifier: GPL-2.0
2+
/*
3+
* StarFive JH7110 Image-Signal-Process Clock Driver
4+
*
5+
* Copyright (C) 2022-2023 StarFive Technology Co., Ltd.
6+
*/
7+
8+
#include <linux/clk.h>
9+
#include <linux/clk-provider.h>
10+
#include <linux/io.h>
11+
#include <linux/platform_device.h>
12+
#include <linux/pm_runtime.h>
13+
#include <linux/reset.h>
14+
15+
#include <dt-bindings/clock/starfive,jh7110-crg.h>
16+
17+
#include "clk-starfive-jh7110.h"
18+
19+
/* external clocks */
20+
#define JH7110_ISPCLK_ISP_TOP_CORE (JH7110_ISPCLK_END + 0)
21+
#define JH7110_ISPCLK_ISP_TOP_AXI (JH7110_ISPCLK_END + 1)
22+
#define JH7110_ISPCLK_NOC_BUS_ISP_AXI (JH7110_ISPCLK_END + 2)
23+
#define JH7110_ISPCLK_DVP_CLK (JH7110_ISPCLK_END + 3)
24+
#define JH7110_ISPCLK_EXT_END (JH7110_ISPCLK_END + 4)
25+
26+
static struct clk_bulk_data jh7110_isp_top_clks[] = {
27+
{ .id = "isp_top_core" },
28+
{ .id = "isp_top_axi" }
29+
};
30+
31+
static const struct jh71x0_clk_data jh7110_ispclk_data[] = {
32+
/* syscon */
33+
JH71X0__DIV(JH7110_ISPCLK_DOM4_APB_FUNC, "dom4_apb_func", 15,
34+
JH7110_ISPCLK_ISP_TOP_AXI),
35+
JH71X0__DIV(JH7110_ISPCLK_MIPI_RX0_PXL, "mipi_rx0_pxl", 8,
36+
JH7110_ISPCLK_ISP_TOP_CORE),
37+
JH71X0__INV(JH7110_ISPCLK_DVP_INV, "dvp_inv", JH7110_ISPCLK_DVP_CLK),
38+
/* vin */
39+
JH71X0__DIV(JH7110_ISPCLK_M31DPHY_CFG_IN, "m31dphy_cfg_in", 16,
40+
JH7110_ISPCLK_ISP_TOP_CORE),
41+
JH71X0__DIV(JH7110_ISPCLK_M31DPHY_REF_IN, "m31dphy_ref_in", 16,
42+
JH7110_ISPCLK_ISP_TOP_CORE),
43+
JH71X0__DIV(JH7110_ISPCLK_M31DPHY_TX_ESC_LAN0, "m31dphy_tx_esc_lan0", 60,
44+
JH7110_ISPCLK_ISP_TOP_CORE),
45+
JH71X0_GATE(JH7110_ISPCLK_VIN_APB, "vin_apb", 0,
46+
JH7110_ISPCLK_DOM4_APB_FUNC),
47+
JH71X0__DIV(JH7110_ISPCLK_VIN_SYS, "vin_sys", 8, JH7110_ISPCLK_ISP_TOP_CORE),
48+
JH71X0_GATE(JH7110_ISPCLK_VIN_PIXEL_IF0, "vin_pixel_if0", 0,
49+
JH7110_ISPCLK_MIPI_RX0_PXL),
50+
JH71X0_GATE(JH7110_ISPCLK_VIN_PIXEL_IF1, "vin_pixel_if1", 0,
51+
JH7110_ISPCLK_MIPI_RX0_PXL),
52+
JH71X0_GATE(JH7110_ISPCLK_VIN_PIXEL_IF2, "vin_pixel_if2", 0,
53+
JH7110_ISPCLK_MIPI_RX0_PXL),
54+
JH71X0_GATE(JH7110_ISPCLK_VIN_PIXEL_IF3, "vin_pixel_if3", 0,
55+
JH7110_ISPCLK_MIPI_RX0_PXL),
56+
JH71X0__MUX(JH7110_ISPCLK_VIN_P_AXI_WR, "vin_p_axi_wr", 2,
57+
JH7110_ISPCLK_MIPI_RX0_PXL,
58+
JH7110_ISPCLK_DVP_INV),
59+
/* ispv2_top_wrapper */
60+
JH71X0_GMUX(JH7110_ISPCLK_ISPV2_TOP_WRAPPER_C, "ispv2_top_wrapper_c", 0, 2,
61+
JH7110_ISPCLK_MIPI_RX0_PXL,
62+
JH7110_ISPCLK_DVP_INV),
63+
};
64+
65+
static inline int jh7110_isp_top_rst_init(struct jh71x0_clk_priv *priv)
66+
{
67+
struct reset_control *top_rsts;
68+
69+
/* The resets should be shared and other ISP modules will use its. */
70+
top_rsts = devm_reset_control_array_get_shared(priv->dev);
71+
if (IS_ERR(top_rsts))
72+
return dev_err_probe(priv->dev, PTR_ERR(top_rsts),
73+
"failed to get top resets\n");
74+
75+
return reset_control_deassert(top_rsts);
76+
}
77+
78+
static struct clk_hw *jh7110_ispclk_get(struct of_phandle_args *clkspec, void *data)
79+
{
80+
struct jh71x0_clk_priv *priv = data;
81+
unsigned int idx = clkspec->args[0];
82+
83+
if (idx < JH7110_ISPCLK_END)
84+
return &priv->reg[idx].hw;
85+
86+
return ERR_PTR(-EINVAL);
87+
}
88+
89+
#ifdef CONFIG_PM
90+
static int jh7110_ispcrg_suspend(struct device *dev)
91+
{
92+
struct jh7110_top_sysclk *top = dev_get_drvdata(dev);
93+
94+
clk_bulk_disable_unprepare(top->top_clks_num, top->top_clks);
95+
96+
return 0;
97+
}
98+
99+
static int jh7110_ispcrg_resume(struct device *dev)
100+
{
101+
struct jh7110_top_sysclk *top = dev_get_drvdata(dev);
102+
103+
return clk_bulk_prepare_enable(top->top_clks_num, top->top_clks);
104+
}
105+
106+
static const struct dev_pm_ops jh7110_ispcrg_pm_ops = {
107+
RUNTIME_PM_OPS(jh7110_ispcrg_suspend, jh7110_ispcrg_resume, NULL)
108+
};
109+
#endif
110+
111+
static int jh7110_ispcrg_probe(struct platform_device *pdev)
112+
{
113+
struct jh71x0_clk_priv *priv;
114+
struct jh7110_top_sysclk *top;
115+
unsigned int idx;
116+
int ret;
117+
118+
priv = devm_kzalloc(&pdev->dev,
119+
struct_size(priv, reg, JH7110_ISPCLK_END),
120+
GFP_KERNEL);
121+
if (!priv)
122+
return -ENOMEM;
123+
124+
top = devm_kzalloc(&pdev->dev, sizeof(*top), GFP_KERNEL);
125+
if (!top)
126+
return -ENOMEM;
127+
128+
spin_lock_init(&priv->rmw_lock);
129+
priv->dev = &pdev->dev;
130+
priv->base = devm_platform_ioremap_resource(pdev, 0);
131+
if (IS_ERR(priv->base))
132+
return PTR_ERR(priv->base);
133+
134+
top->top_clks = jh7110_isp_top_clks;
135+
top->top_clks_num = ARRAY_SIZE(jh7110_isp_top_clks);
136+
ret = devm_clk_bulk_get(priv->dev, top->top_clks_num, top->top_clks);
137+
if (ret)
138+
return dev_err_probe(priv->dev, ret, "failed to get main clocks\n");
139+
dev_set_drvdata(priv->dev, top);
140+
141+
/* enable power domain and clocks */
142+
pm_runtime_enable(priv->dev);
143+
ret = pm_runtime_get_sync(priv->dev);
144+
if (ret < 0)
145+
return dev_err_probe(priv->dev, ret, "failed to turn on power\n");
146+
147+
ret = jh7110_isp_top_rst_init(priv);
148+
if (ret)
149+
goto err_exit;
150+
151+
for (idx = 0; idx < JH7110_ISPCLK_END; idx++) {
152+
u32 max = jh7110_ispclk_data[idx].max;
153+
struct clk_parent_data parents[4] = {};
154+
struct clk_init_data init = {
155+
.name = jh7110_ispclk_data[idx].name,
156+
.ops = starfive_jh71x0_clk_ops(max),
157+
.parent_data = parents,
158+
.num_parents =
159+
((max & JH71X0_CLK_MUX_MASK) >> JH71X0_CLK_MUX_SHIFT) + 1,
160+
.flags = jh7110_ispclk_data[idx].flags,
161+
};
162+
struct jh71x0_clk *clk = &priv->reg[idx];
163+
unsigned int i;
164+
const char *fw_name[JH7110_ISPCLK_EXT_END - JH7110_ISPCLK_END] = {
165+
"isp_top_core",
166+
"isp_top_axi",
167+
"noc_bus_isp_axi",
168+
"dvp_clk"
169+
};
170+
171+
for (i = 0; i < init.num_parents; i++) {
172+
unsigned int pidx = jh7110_ispclk_data[idx].parents[i];
173+
174+
if (pidx < JH7110_ISPCLK_END)
175+
parents[i].hw = &priv->reg[pidx].hw;
176+
else
177+
parents[i].fw_name = fw_name[pidx - JH7110_ISPCLK_END];
178+
}
179+
180+
clk->hw.init = &init;
181+
clk->idx = idx;
182+
clk->max_div = max & JH71X0_CLK_DIV_MASK;
183+
184+
ret = devm_clk_hw_register(&pdev->dev, &clk->hw);
185+
if (ret)
186+
goto err_exit;
187+
}
188+
189+
ret = devm_of_clk_add_hw_provider(&pdev->dev, jh7110_ispclk_get, priv);
190+
if (ret)
191+
goto err_exit;
192+
193+
ret = jh7110_reset_controller_register(priv, "rst-isp", 3);
194+
if (ret)
195+
goto err_exit;
196+
197+
return 0;
198+
199+
err_exit:
200+
pm_runtime_put_sync(priv->dev);
201+
pm_runtime_disable(priv->dev);
202+
return ret;
203+
}
204+
205+
static int jh7110_ispcrg_remove(struct platform_device *pdev)
206+
{
207+
pm_runtime_put_sync(&pdev->dev);
208+
pm_runtime_disable(&pdev->dev);
209+
210+
return 0;
211+
}
212+
213+
static const struct of_device_id jh7110_ispcrg_match[] = {
214+
{ .compatible = "starfive,jh7110-ispcrg" },
215+
{ /* sentinel */ }
216+
};
217+
MODULE_DEVICE_TABLE(of, jh7110_ispcrg_match);
218+
219+
static struct platform_driver jh7110_ispcrg_driver = {
220+
.probe = jh7110_ispcrg_probe,
221+
.remove = jh7110_ispcrg_remove,
222+
.driver = {
223+
.name = "clk-starfive-jh7110-isp",
224+
.of_match_table = jh7110_ispcrg_match,
225+
.pm = pm_ptr(&jh7110_ispcrg_pm_ops),
226+
},
227+
};
228+
module_platform_driver(jh7110_ispcrg_driver);
229+
230+
MODULE_AUTHOR("Xingyu Wu <xingyu.wu@starfivetech.com>");
231+
MODULE_DESCRIPTION("StarFive JH7110 Image-Signal-Process clock driver");
232+
MODULE_LICENSE("GPL");

drivers/clk/starfive/clk-starfive-jh7110.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
#include "clk-starfive-jh71x0.h"
66

7+
/* top clocks of ISP/VOUT domain from JH7110 SYSCRG */
8+
struct jh7110_top_sysclk {
9+
struct clk_bulk_data *top_clks;
10+
int top_clks_num;
11+
};
12+
713
int jh7110_reset_controller_register(struct jh71x0_clk_priv *priv,
814
const char *adev_name,
915
u32 adev_id);

0 commit comments

Comments
 (0)