Skip to content

Commit 12dc8d3

Browse files
alexandrebellonibebarino
authored andcommitted
clk: at91: add at91sam9g45 pmc driver
Add a driver for the PMC clocks of the at91sam9g45 family. Signed-off-by: Alexandre Belloni <[email protected]> Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Stephen Boyd <[email protected]>
1 parent 9962fb0 commit 12dc8d3

File tree

2 files changed

+221
-0
lines changed

2 files changed

+221
-0
lines changed

drivers/clk/at91/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ obj-$(CONFIG_HAVE_AT91_GENERATED_CLK) += clk-generated.o
1616
obj-$(CONFIG_HAVE_AT91_I2S_MUX_CLK) += clk-i2s-mux.o
1717
obj-$(CONFIG_HAVE_AT91_SAM9X60_PLL) += clk-sam9x60-pll.o
1818
obj-$(CONFIG_SOC_AT91SAM9) += at91sam9260.o at91sam9rl.o at91sam9x5.o
19+
obj-$(CONFIG_SOC_AT91SAM9) += at91sam9g45.o
1920
obj-$(CONFIG_SOC_SAM9X60) += sam9x60.o
2021
obj-$(CONFIG_SOC_SAMA5D4) += sama5d4.o
2122
obj-$(CONFIG_SOC_SAMA5D2) += sama5d2.o

drivers/clk/at91/at91sam9g45.c

Lines changed: 220 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,220 @@
1+
// SPDX-License-Identifier: GPL-2.0
2+
#include <linux/clk-provider.h>
3+
#include <linux/mfd/syscon.h>
4+
#include <linux/slab.h>
5+
6+
#include <dt-bindings/clock/at91.h>
7+
8+
#include "pmc.h"
9+
10+
static const struct clk_master_characteristics mck_characteristics = {
11+
.output = { .min = 0, .max = 133333333 },
12+
.divisors = { 1, 2, 4, 3 },
13+
};
14+
15+
static u8 plla_out[] = { 0, 1, 2, 3, 0, 1, 2, 3 };
16+
17+
static u16 plla_icpll[] = { 0, 0, 0, 0, 1, 1, 1, 1 };
18+
19+
static const struct clk_range plla_outputs[] = {
20+
{ .min = 745000000, .max = 800000000 },
21+
{ .min = 695000000, .max = 750000000 },
22+
{ .min = 645000000, .max = 700000000 },
23+
{ .min = 595000000, .max = 650000000 },
24+
{ .min = 545000000, .max = 600000000 },
25+
{ .min = 495000000, .max = 555000000 },
26+
{ .min = 445000000, .max = 500000000 },
27+
{ .min = 400000000, .max = 450000000 },
28+
};
29+
30+
static const struct clk_pll_characteristics plla_characteristics = {
31+
.input = { .min = 2000000, .max = 32000000 },
32+
.num_output = ARRAY_SIZE(plla_outputs),
33+
.output = plla_outputs,
34+
.icpll = plla_icpll,
35+
.out = plla_out,
36+
};
37+
38+
static const struct {
39+
char *n;
40+
char *p;
41+
u8 id;
42+
} at91sam9g45_systemck[] = {
43+
{ .n = "ddrck", .p = "masterck", .id = 2 },
44+
{ .n = "uhpck", .p = "usbck", .id = 6 },
45+
{ .n = "pck0", .p = "prog0", .id = 8 },
46+
{ .n = "pck1", .p = "prog1", .id = 9 },
47+
};
48+
49+
static const struct clk_pcr_layout at91sam9g45_pcr_layout = {
50+
.offset = 0x10c,
51+
.cmd = BIT(12),
52+
.pid_mask = GENMASK(5, 0),
53+
.div_mask = GENMASK(17, 16),
54+
};
55+
56+
struct pck {
57+
char *n;
58+
u8 id;
59+
};
60+
61+
static const struct pck at91sam9g45_periphck[] = {
62+
{ .n = "pioA_clk", .id = 2, },
63+
{ .n = "pioB_clk", .id = 3, },
64+
{ .n = "pioC_clk", .id = 4, },
65+
{ .n = "pioDE_clk", .id = 5, },
66+
{ .n = "trng_clk", .id = 6, },
67+
{ .n = "usart0_clk", .id = 7, },
68+
{ .n = "usart1_clk", .id = 8, },
69+
{ .n = "usart2_clk", .id = 9, },
70+
{ .n = "usart3_clk", .id = 10, },
71+
{ .n = "mci0_clk", .id = 11, },
72+
{ .n = "twi0_clk", .id = 12, },
73+
{ .n = "twi1_clk", .id = 13, },
74+
{ .n = "spi0_clk", .id = 14, },
75+
{ .n = "spi1_clk", .id = 15, },
76+
{ .n = "ssc0_clk", .id = 16, },
77+
{ .n = "ssc1_clk", .id = 17, },
78+
{ .n = "tcb0_clk", .id = 18, },
79+
{ .n = "pwm_clk", .id = 19, },
80+
{ .n = "adc_clk", .id = 20, },
81+
{ .n = "dma0_clk", .id = 21, },
82+
{ .n = "uhphs_clk", .id = 22, },
83+
{ .n = "lcd_clk", .id = 23, },
84+
{ .n = "ac97_clk", .id = 24, },
85+
{ .n = "macb0_clk", .id = 25, },
86+
{ .n = "isi_clk", .id = 26, },
87+
{ .n = "udphs_clk", .id = 27, },
88+
{ .n = "aestdessha_clk", .id = 28, },
89+
{ .n = "mci1_clk", .id = 29, },
90+
{ .n = "vdec_clk", .id = 30, },
91+
};
92+
93+
static void __init at91sam9g45_pmc_setup(struct device_node *np)
94+
{
95+
const char *slck_name, *mainxtal_name;
96+
struct pmc_data *at91sam9g45_pmc;
97+
const char *parent_names[6];
98+
struct regmap *regmap;
99+
struct clk_hw *hw;
100+
int i;
101+
bool bypass;
102+
103+
i = of_property_match_string(np, "clock-names", "slow_clk");
104+
if (i < 0)
105+
return;
106+
107+
slck_name = of_clk_get_parent_name(np, i);
108+
109+
i = of_property_match_string(np, "clock-names", "main_xtal");
110+
if (i < 0)
111+
return;
112+
mainxtal_name = of_clk_get_parent_name(np, i);
113+
114+
regmap = syscon_node_to_regmap(np);
115+
if (IS_ERR(regmap))
116+
return;
117+
118+
at91sam9g45_pmc = pmc_data_allocate(PMC_MAIN + 1,
119+
nck(at91sam9g45_systemck),
120+
nck(at91sam9g45_periphck), 0);
121+
if (!at91sam9g45_pmc)
122+
return;
123+
124+
bypass = of_property_read_bool(np, "atmel,osc-bypass");
125+
126+
hw = at91_clk_register_main_osc(regmap, "main_osc", mainxtal_name,
127+
bypass);
128+
if (IS_ERR(hw))
129+
goto err_free;
130+
131+
hw = at91_clk_register_rm9200_main(regmap, "mainck", "main_osc");
132+
if (IS_ERR(hw))
133+
goto err_free;
134+
135+
at91sam9g45_pmc->chws[PMC_MAIN] = hw;
136+
137+
hw = at91_clk_register_pll(regmap, "pllack", "mainck", 0,
138+
&at91rm9200_pll_layout, &plla_characteristics);
139+
if (IS_ERR(hw))
140+
goto err_free;
141+
142+
hw = at91_clk_register_plldiv(regmap, "plladivck", "pllack");
143+
if (IS_ERR(hw))
144+
goto err_free;
145+
146+
hw = at91_clk_register_utmi(regmap, NULL, "utmick", "mainck");
147+
if (IS_ERR(hw))
148+
goto err_free;
149+
150+
at91sam9g45_pmc->chws[PMC_UTMI] = hw;
151+
152+
parent_names[0] = slck_name;
153+
parent_names[1] = "mainck";
154+
parent_names[2] = "plladivck";
155+
parent_names[3] = "utmick";
156+
hw = at91_clk_register_master(regmap, "masterck", 4, parent_names,
157+
&at91rm9200_master_layout,
158+
&mck_characteristics);
159+
if (IS_ERR(hw))
160+
goto err_free;
161+
162+
at91sam9g45_pmc->chws[PMC_MCK] = hw;
163+
164+
parent_names[0] = "plladivck";
165+
parent_names[1] = "utmick";
166+
hw = at91sam9x5_clk_register_usb(regmap, "usbck", parent_names, 2);
167+
if (IS_ERR(hw))
168+
goto err_free;
169+
170+
parent_names[0] = slck_name;
171+
parent_names[1] = "mainck";
172+
parent_names[2] = "plladivck";
173+
parent_names[3] = "utmick";
174+
parent_names[4] = "masterck";
175+
for (i = 0; i < 2; i++) {
176+
char name[6];
177+
178+
snprintf(name, sizeof(name), "prog%d", i);
179+
180+
hw = at91_clk_register_programmable(regmap, name,
181+
parent_names, 5, i,
182+
&at91sam9g45_programmable_layout);
183+
if (IS_ERR(hw))
184+
goto err_free;
185+
}
186+
187+
for (i = 0; i < ARRAY_SIZE(at91sam9g45_systemck); i++) {
188+
hw = at91_clk_register_system(regmap, at91sam9g45_systemck[i].n,
189+
at91sam9g45_systemck[i].p,
190+
at91sam9g45_systemck[i].id);
191+
if (IS_ERR(hw))
192+
goto err_free;
193+
194+
at91sam9g45_pmc->shws[at91sam9g45_systemck[i].id] = hw;
195+
}
196+
197+
for (i = 0; i < ARRAY_SIZE(at91sam9g45_periphck); i++) {
198+
hw = at91_clk_register_peripheral(regmap,
199+
at91sam9g45_periphck[i].n,
200+
"masterck",
201+
at91sam9g45_periphck[i].id);
202+
if (IS_ERR(hw))
203+
goto err_free;
204+
205+
at91sam9g45_pmc->phws[at91sam9g45_periphck[i].id] = hw;
206+
}
207+
208+
of_clk_add_hw_provider(np, of_clk_hw_pmc_get, at91sam9g45_pmc);
209+
210+
return;
211+
212+
err_free:
213+
pmc_data_free(at91sam9g45_pmc);
214+
}
215+
/*
216+
* The TCB is used as the clocksource so its clock is needed early. This means
217+
* this can't be a platform driver.
218+
*/
219+
CLK_OF_DECLARE_DRIVER(at91sam9g45_pmc, "atmel,at91sam9g45-pmc",
220+
at91sam9g45_pmc_setup);

0 commit comments

Comments
 (0)