2 * Marvell Dove SoC clocks
4 * Copyright (C) 2012 Marvell
6 * Gregory CLEMENT <gregory.clement@free-electrons.com>
7 * Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
8 * Andrew Lunn <andrew@lunn.ch>
10 * This file is licensed under the terms of the GNU General Public
11 * License version 2. This program is licensed "as is" without any
12 * warranty of any kind, whether express or implied.
15 #include <linux/kernel.h>
16 #include <linux/clk-provider.h>
20 #include "dove-divider.h"
25 * Dove PLL sample-at-reset configuration
27 * SAR0[8:5] : CPU frequency
41 * SAR0[11:9] : CPU to L2 Clock divider ratio
48 * SAR0[15:12] : CPU to DDR DRAM Clock divider ratio
61 * SAR0[24:23] : TCLK frequency
67 #define SAR_DOVE_CPU_FREQ 5
68 #define SAR_DOVE_CPU_FREQ_MASK 0xf
69 #define SAR_DOVE_L2_RATIO 9
70 #define SAR_DOVE_L2_RATIO_MASK 0x7
71 #define SAR_DOVE_DDR_RATIO 12
72 #define SAR_DOVE_DDR_RATIO_MASK 0xf
73 #define SAR_DOVE_TCLK_FREQ 23
74 #define SAR_DOVE_TCLK_FREQ_MASK 0x3
76 enum { DOVE_CPU_TO_L2
, DOVE_CPU_TO_DDR
};
78 static const struct coreclk_ratio dove_coreclk_ratios
[] __initconst
= {
79 { .id
= DOVE_CPU_TO_L2
, .name
= "l2clk", },
80 { .id
= DOVE_CPU_TO_DDR
, .name
= "ddrclk", }
83 static const u32 dove_tclk_freqs
[] __initconst
= {
89 static u32 __init
dove_get_tclk_freq(void __iomem
*sar
)
91 u32 opt
= (readl(sar
) >> SAR_DOVE_TCLK_FREQ
) &
92 SAR_DOVE_TCLK_FREQ_MASK
;
93 return dove_tclk_freqs
[opt
];
96 static const u32 dove_cpu_freqs
[] __initconst
= {
100 800000000, 800000000, 800000000,
108 static u32 __init
dove_get_cpu_freq(void __iomem
*sar
)
110 u32 opt
= (readl(sar
) >> SAR_DOVE_CPU_FREQ
) &
111 SAR_DOVE_CPU_FREQ_MASK
;
112 return dove_cpu_freqs
[opt
];
115 static const int dove_cpu_l2_ratios
[8][2] __initconst
= {
116 { 1, 1 }, { 0, 1 }, { 1, 2 }, { 0, 1 },
117 { 1, 3 }, { 0, 1 }, { 1, 4 }, { 0, 1 }
120 static const int dove_cpu_ddr_ratios
[16][2] __initconst
= {
121 { 1, 1 }, { 0, 1 }, { 1, 2 }, { 2, 5 },
122 { 1, 3 }, { 0, 1 }, { 1, 4 }, { 0, 1 },
123 { 1, 5 }, { 0, 1 }, { 1, 6 }, { 0, 1 },
124 { 1, 7 }, { 0, 1 }, { 1, 8 }, { 1, 10 }
127 static void __init
dove_get_clk_ratio(
128 void __iomem
*sar
, int id
, int *mult
, int *div
)
133 u32 opt
= (readl(sar
) >> SAR_DOVE_L2_RATIO
) &
134 SAR_DOVE_L2_RATIO_MASK
;
135 *mult
= dove_cpu_l2_ratios
[opt
][0];
136 *div
= dove_cpu_l2_ratios
[opt
][1];
139 case DOVE_CPU_TO_DDR
:
141 u32 opt
= (readl(sar
) >> SAR_DOVE_DDR_RATIO
) &
142 SAR_DOVE_DDR_RATIO_MASK
;
143 *mult
= dove_cpu_ddr_ratios
[opt
][0];
144 *div
= dove_cpu_ddr_ratios
[opt
][1];
150 static const struct coreclk_soc_desc dove_coreclks
= {
151 .get_tclk_freq
= dove_get_tclk_freq
,
152 .get_cpu_freq
= dove_get_cpu_freq
,
153 .get_clk_ratio
= dove_get_clk_ratio
,
154 .ratios
= dove_coreclk_ratios
,
155 .num_ratios
= ARRAY_SIZE(dove_coreclk_ratios
),
159 * Clock Gating Control
162 static const struct clk_gating_soc_desc dove_gating_desc
[] __initconst
= {
163 { "usb0", NULL
, 0, 0 },
164 { "usb1", NULL
, 1, 0 },
165 { "ge", "gephy", 2, 0 },
166 { "sata", NULL
, 3, 0 },
167 { "pex0", NULL
, 4, 0 },
168 { "pex1", NULL
, 5, 0 },
169 { "sdio0", NULL
, 8, 0 },
170 { "sdio1", NULL
, 9, 0 },
171 { "nand", NULL
, 10, 0 },
172 { "camera", NULL
, 11, 0 },
173 { "i2s0", NULL
, 12, 0 },
174 { "i2s1", NULL
, 13, 0 },
175 { "crypto", NULL
, 15, 0 },
176 { "ac97", NULL
, 21, 0 },
177 { "pdma", NULL
, 22, 0 },
178 { "xor0", NULL
, 23, 0 },
179 { "xor1", NULL
, 24, 0 },
180 { "gephy", NULL
, 30, 0 },
184 static void __init
dove_clk_init(struct device_node
*np
)
186 struct device_node
*cgnp
=
187 of_find_compatible_node(NULL
, NULL
, "marvell,dove-gating-clock");
188 struct device_node
*ddnp
=
189 of_find_compatible_node(NULL
, NULL
, "marvell,dove-divider-clock");
191 mvebu_coreclk_setup(np
, &dove_coreclks
);
194 dove_divider_clk_init(ddnp
);
197 mvebu_clk_gating_setup(cgnp
, dove_gating_desc
);
199 CLK_OF_DECLARE(dove_clk
, "marvell,dove-core-clock", dove_clk_init
);