Skip to content

Commit a8f1f03

Browse files
cristiccbebarino
authored andcommitted
clk: actions: Fix bisp_factor_table based clocks on Owl S500 SoC
The following clocks of the Actions Semi Owl S500 SoC have been defined to use a shared clock factor table 'bisp_factor_table[]': DE[1-2], VCE, VDE, BISP, SENSOR[0-1] There are several issues involved in this approach: * 'bisp_factor_table[]' describes the configuration of a regular 8-rates divider, so its usage is redundant. Additionally, judging by the BISP clock context, it is incomplete since it maps only 8 out of 12 possible entries. * The clocks mentioned above are not identical in terms of the available rates, therefore cannot rely on the same factor table. Specifically, BISP and SENSOR* are standard 12-rate dividers so their configuration should rely on a proper clock div table, while VCE and VDE require a factor table that is a actually a subset of the one needed for DE[1-2] clocks. Let's fix this by implementing the following: * Add new factor tables 'de_factor_table' and 'hde_factor_table' to properly handle DE[1-2], VCE and VDE clocks. * Add a common div table 'std12rate_div_table' for BISP and SENSOR[0-1] clocks converted to OWL_COMP_DIV. * Drop the now unused 'bisp_factor_table[]'. Additionally, drop the CLK_IGNORE_UNUSED flag for SENSOR[0-1] since there is no reason to always keep ON those clocks. Fixes: ed6b479 ("clk: actions: Add clock driver for S500 SoC") Signed-off-by: Cristian Ciocaltea <[email protected]> Reviewed-by: Manivannan Sadhasivam <[email protected]> Link: https://lore.kernel.org/r/e675820a46cd9930d8d576c6cae61d41c1a8416f.1623354574.git.cristian.ciocaltea@gmail.com Signed-off-by: Stephen Boyd <[email protected]>
1 parent fe1f71e commit a8f1f03

File tree

1 file changed

+29
-15
lines changed

1 file changed

+29
-15
lines changed

drivers/clk/actions/owl-s500.c

Lines changed: 29 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,16 @@ static struct clk_factor_table sd_factor_table[] = {
140140
{ 0, 0, 0 },
141141
};
142142

143-
static struct clk_factor_table bisp_factor_table[] = {
144-
{ 0, 1, 1 }, { 1, 1, 2 }, { 2, 1, 3 }, { 3, 1, 4 },
145-
{ 4, 1, 5 }, { 5, 1, 6 }, { 6, 1, 7 }, { 7, 1, 8 },
143+
static struct clk_factor_table de_factor_table[] = {
144+
{ 0, 1, 1 }, { 1, 2, 3 }, { 2, 1, 2 }, { 3, 2, 5 },
145+
{ 4, 1, 3 }, { 5, 1, 4 }, { 6, 1, 6 }, { 7, 1, 8 },
146+
{ 8, 1, 12 },
147+
{ 0, 0, 0 },
148+
};
149+
150+
static struct clk_factor_table hde_factor_table[] = {
151+
{ 0, 1, 1 }, { 1, 2, 3 }, { 2, 1, 2 }, { 3, 2, 5 },
152+
{ 4, 1, 3 }, { 5, 1, 4 }, { 6, 1, 6 }, { 7, 1, 8 },
146153
{ 0, 0, 0 },
147154
};
148155

@@ -156,6 +163,13 @@ static struct clk_div_table rmii_ref_div_table[] = {
156163
{ 0, 0 },
157164
};
158165

166+
static struct clk_div_table std12rate_div_table[] = {
167+
{ 0, 1 }, { 1, 2 }, { 2, 3 }, { 3, 4 },
168+
{ 4, 5 }, { 5, 6 }, { 6, 7 }, { 7, 8 },
169+
{ 8, 9 }, { 9, 10 }, { 10, 11 }, { 11, 12 },
170+
{ 0, 0 },
171+
};
172+
159173
static struct clk_div_table i2s_div_table[] = {
160174
{ 0, 1 }, { 1, 2 }, { 2, 3 }, { 3, 4 },
161175
{ 4, 6 }, { 5, 8 }, { 6, 12 }, { 7, 16 },
@@ -191,39 +205,39 @@ static OWL_DIVIDER(rmii_ref_clk, "rmii_ref_clk", "ethernet_pll_clk", CMU_ETHERNE
191205

192206
/* factor clocks */
193207
static OWL_FACTOR(ahb_clk, "ahb_clk", "h_clk", CMU_BUSCLK1, 2, 2, ahb_factor_table, 0, 0);
194-
static OWL_FACTOR(de1_clk, "de_clk1", "de_clk", CMU_DECLK, 0, 3, bisp_factor_table, 0, 0);
195-
static OWL_FACTOR(de2_clk, "de_clk2", "de_clk", CMU_DECLK, 4, 3, bisp_factor_table, 0, 0);
208+
static OWL_FACTOR(de1_clk, "de_clk1", "de_clk", CMU_DECLK, 0, 4, de_factor_table, 0, 0);
209+
static OWL_FACTOR(de2_clk, "de_clk2", "de_clk", CMU_DECLK, 4, 4, de_factor_table, 0, 0);
196210

197211
/* composite clocks */
198212
static OWL_COMP_FACTOR(vce_clk, "vce_clk", hde_clk_mux_p,
199213
OWL_MUX_HW(CMU_VCECLK, 4, 2),
200214
OWL_GATE_HW(CMU_DEVCLKEN0, 26, 0),
201-
OWL_FACTOR_HW(CMU_VCECLK, 0, 3, 0, bisp_factor_table),
215+
OWL_FACTOR_HW(CMU_VCECLK, 0, 3, 0, hde_factor_table),
202216
0);
203217

204218
static OWL_COMP_FACTOR(vde_clk, "vde_clk", hde_clk_mux_p,
205219
OWL_MUX_HW(CMU_VDECLK, 4, 2),
206220
OWL_GATE_HW(CMU_DEVCLKEN0, 25, 0),
207-
OWL_FACTOR_HW(CMU_VDECLK, 0, 3, 0, bisp_factor_table),
221+
OWL_FACTOR_HW(CMU_VDECLK, 0, 3, 0, hde_factor_table),
208222
0);
209223

210-
static OWL_COMP_FACTOR(bisp_clk, "bisp_clk", bisp_clk_mux_p,
224+
static OWL_COMP_DIV(bisp_clk, "bisp_clk", bisp_clk_mux_p,
211225
OWL_MUX_HW(CMU_BISPCLK, 4, 1),
212226
OWL_GATE_HW(CMU_DEVCLKEN0, 14, 0),
213-
OWL_FACTOR_HW(CMU_BISPCLK, 0, 3, 0, bisp_factor_table),
227+
OWL_DIVIDER_HW(CMU_BISPCLK, 0, 4, 0, std12rate_div_table),
214228
0);
215229

216-
static OWL_COMP_FACTOR(sensor0_clk, "sensor0_clk", sensor_clk_mux_p,
230+
static OWL_COMP_DIV(sensor0_clk, "sensor0_clk", sensor_clk_mux_p,
217231
OWL_MUX_HW(CMU_SENSORCLK, 4, 1),
218232
OWL_GATE_HW(CMU_DEVCLKEN0, 14, 0),
219-
OWL_FACTOR_HW(CMU_SENSORCLK, 0, 3, 0, bisp_factor_table),
220-
CLK_IGNORE_UNUSED);
233+
OWL_DIVIDER_HW(CMU_SENSORCLK, 0, 4, 0, std12rate_div_table),
234+
0);
221235

222-
static OWL_COMP_FACTOR(sensor1_clk, "sensor1_clk", sensor_clk_mux_p,
236+
static OWL_COMP_DIV(sensor1_clk, "sensor1_clk", sensor_clk_mux_p,
223237
OWL_MUX_HW(CMU_SENSORCLK, 4, 1),
224238
OWL_GATE_HW(CMU_DEVCLKEN0, 14, 0),
225-
OWL_FACTOR_HW(CMU_SENSORCLK, 8, 3, 0, bisp_factor_table),
226-
CLK_IGNORE_UNUSED);
239+
OWL_DIVIDER_HW(CMU_SENSORCLK, 8, 4, 0, std12rate_div_table),
240+
0);
227241

228242
static OWL_COMP_FACTOR(sd0_clk, "sd0_clk", sd_clk_mux_p,
229243
OWL_MUX_HW(CMU_SD0CLK, 9, 1),

0 commit comments

Comments
 (0)