blob: 42844d46056936ee303aacb09fbade951ff8fd2b [file] [log] [blame]
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +03001/*
2 * Synopsys HSDK SDP CGU clock driver
3 *
4 * Copyright (C) 2017 Synopsys
5 * Author: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
6 *
7 * This file is licensed under the terms of the GNU General Public
8 * License version 2. This program is licensed "as is" without any
9 * warranty of any kind, whether express or implied.
10 */
11
12#include <common.h>
13#include <clk-uclass.h>
14#include <div64.h>
15#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -060016#include <log.h>
Simon Glassc06c1be2020-05-10 11:40:08 -060017#include <linux/bug.h>
Simon Glassdbd79542020-05-10 11:40:11 -060018#include <linux/delay.h>
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +030019#include <linux/io.h>
Eugeniy Paltsev6bd63fc2020-05-07 22:20:10 +030020#include <asm/arcregs.h>
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +030021
Eugeniy Paltsev7aa8c092020-05-07 20:31:01 +030022#include <dt-bindings/clock/snps,hsdk-cgu.h>
23
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +030024/*
25 * Synopsys ARC HSDK clock tree.
26 *
27 * ------------------
28 * | 33.33 MHz xtal |
29 * ------------------
30 * |
31 * | -----------
32 * |-->| ARC PLL |
33 * | -----------
34 * | |
35 * | |-->|CGU_ARC_IDIV|----------->
36 * | |-->|CREG_CORE_IF_DIV|------->
37 * |
38 * | --------------
39 * |-->| SYSTEM PLL |
40 * | --------------
41 * | |
42 * | |-->|CGU_SYS_IDIV_APB|------->
43 * | |-->|CGU_SYS_IDIV_AXI|------->
44 * | |-->|CGU_SYS_IDIV_*|--------->
45 * | |-->|CGU_SYS_IDIV_EBI_REF|--->
46 * |
47 * | --------------
48 * |-->| TUNNEL PLL |
49 * | --------------
50 * | |
Eugeniy Paltsev74514242018-01-16 20:44:25 +030051 * | |-->|CGU_TUN_IDIV_TUN|----------->
52 * | |-->|CGU_TUN_IDIV_ROM|----------->
53 * | |-->|CGU_TUN_IDIV_PWM|----------->
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +030054 * |
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +030055 * | -----------
56 * |-->| DDR PLL |
57 * -----------
58 * |
59 * |---------------------------->
Eugeniy Paltsev5872fc62020-01-29 14:08:30 +030060 *
61 * ------------------
62 * | 27.00 MHz xtal |
63 * ------------------
64 * |
65 * | ------------
66 * |-->| HDMI PLL |
67 * ------------
68 * |
69 * |-->|CGU_HDMI_IDIV_APB|------>
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +030070 */
71
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +030072#define CGU_ARC_IDIV 0x080
Eugeniy Paltsev74514242018-01-16 20:44:25 +030073#define CGU_TUN_IDIV_TUN 0x380
74#define CGU_TUN_IDIV_ROM 0x390
75#define CGU_TUN_IDIV_PWM 0x3A0
Eugeniy Paltsev65757132020-04-23 14:50:50 +030076#define CGU_TUN_IDIV_TIMER 0x3B0
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +030077#define CGU_HDMI_IDIV_APB 0x480
78#define CGU_SYS_IDIV_APB 0x180
79#define CGU_SYS_IDIV_AXI 0x190
80#define CGU_SYS_IDIV_ETH 0x1A0
81#define CGU_SYS_IDIV_USB 0x1B0
82#define CGU_SYS_IDIV_SDIO 0x1C0
83#define CGU_SYS_IDIV_HDMI 0x1D0
84#define CGU_SYS_IDIV_GFX_CORE 0x1E0
85#define CGU_SYS_IDIV_GFX_DMA 0x1F0
86#define CGU_SYS_IDIV_GFX_CFG 0x200
87#define CGU_SYS_IDIV_DMAC_CORE 0x210
88#define CGU_SYS_IDIV_DMAC_CFG 0x220
89#define CGU_SYS_IDIV_SDIO_REF 0x230
90#define CGU_SYS_IDIV_SPI_REF 0x240
91#define CGU_SYS_IDIV_I2C_REF 0x250
92#define CGU_SYS_IDIV_UART_REF 0x260
93#define CGU_SYS_IDIV_EBI_REF 0x270
94
95#define CGU_IDIV_MASK 0xFF /* All idiv have 8 significant bits */
96
97#define CGU_ARC_PLL 0x0
98#define CGU_SYS_PLL 0x10
99#define CGU_DDR_PLL 0x20
100#define CGU_TUN_PLL 0x30
101#define CGU_HDMI_PLL 0x40
102
103#define CGU_PLL_CTRL 0x000 /* ARC PLL control register */
104#define CGU_PLL_STATUS 0x004 /* ARC PLL status register */
105#define CGU_PLL_FMEAS 0x008 /* ARC PLL frequency measurement register */
106#define CGU_PLL_MON 0x00C /* ARC PLL monitor register */
107
108#define CGU_PLL_CTRL_ODIV_SHIFT 2
109#define CGU_PLL_CTRL_IDIV_SHIFT 4
110#define CGU_PLL_CTRL_FBDIV_SHIFT 9
111#define CGU_PLL_CTRL_BAND_SHIFT 20
112
113#define CGU_PLL_CTRL_ODIV_MASK GENMASK(3, CGU_PLL_CTRL_ODIV_SHIFT)
114#define CGU_PLL_CTRL_IDIV_MASK GENMASK(8, CGU_PLL_CTRL_IDIV_SHIFT)
115#define CGU_PLL_CTRL_FBDIV_MASK GENMASK(15, CGU_PLL_CTRL_FBDIV_SHIFT)
116
117#define CGU_PLL_CTRL_PD BIT(0)
118#define CGU_PLL_CTRL_BYPASS BIT(1)
119
120#define CGU_PLL_STATUS_LOCK BIT(0)
121#define CGU_PLL_STATUS_ERR BIT(1)
122
123#define HSDK_PLL_MAX_LOCK_TIME 100 /* 100 us */
124
125#define CREG_CORE_IF_DIV 0x000 /* ARC CORE interface divider */
126#define CORE_IF_CLK_THRESHOLD_HZ 500000000
127#define CREG_CORE_IF_CLK_DIV_1 0x0
128#define CREG_CORE_IF_CLK_DIV_2 0x1
129
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300130#define MIN_PLL_RATE 100000000 /* 100 MHz */
Eugeniy Paltsev5872fc62020-01-29 14:08:30 +0300131#define PARENT_RATE_33 33333333 /* fixed clock - xtal */
132#define PARENT_RATE_27 27000000 /* fixed clock - xtal */
Eugeniy Paltsev65757132020-04-23 14:50:50 +0300133#define CGU_MAX_CLOCKS 27
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300134
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300135#define MAX_FREQ_VARIATIONS 6
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300136
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300137struct hsdk_idiv_cfg {
Eugeniy Paltsev0b8ac7c2020-05-07 17:52:11 +0300138 const u32 oft;
139 const u8 val[MAX_FREQ_VARIATIONS];
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300140};
141
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300142struct hsdk_div_full_cfg {
143 const u32 clk_rate[MAX_FREQ_VARIATIONS];
144 const u32 pll_rate[MAX_FREQ_VARIATIONS];
145 const struct hsdk_idiv_cfg idiv[];
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300146};
147
Eugeniy Paltsev6bd63fc2020-05-07 22:20:10 +0300148static const struct hsdk_div_full_cfg hsdk_4xd_tun_clk_cfg = {
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300149 { 25000000, 50000000, 75000000, 100000000, 125000000, 150000000 },
Eugeniy Paltsevc6f15de2020-04-16 22:35:11 +0300150 { 600000000, 600000000, 600000000, 600000000, 750000000, 600000000 }, {
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300151 { CGU_TUN_IDIV_TUN, { 24, 12, 8, 6, 6, 4 } },
152 { CGU_TUN_IDIV_ROM, { 4, 4, 4, 4, 5, 4 } },
Eugeniy Paltsev65757132020-04-23 14:50:50 +0300153 { CGU_TUN_IDIV_PWM, { 8, 8, 8, 8, 10, 8 } },
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300154 { CGU_TUN_IDIV_TIMER, { 12, 12, 12, 12, 15, 12 } },
155 { /* last one */ }
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300156 }
157};
158
Eugeniy Paltsev6bd63fc2020-05-07 22:20:10 +0300159static const struct hsdk_div_full_cfg hsdk_tun_clk_cfg = {
160 { 25000000, 50000000, 75000000, 100000000, 125000000, 150000000 },
161 { 600000000, 600000000, 600000000, 600000000, 750000000, 600000000 }, {
162 { CGU_TUN_IDIV_TUN, { 24, 12, 8, 6, 6, 4 } },
163 { CGU_TUN_IDIV_ROM, { 4, 4, 4, 4, 5, 4 } },
164 { CGU_TUN_IDIV_PWM, { 8, 8, 8, 8, 10, 8 } },
165 { /* last one */ }
166 }
167};
168
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300169static const struct hsdk_div_full_cfg axi_clk_cfg = {
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300170 { 200000000, 400000000, 600000000, 800000000 },
171 { 800000000, 800000000, 600000000, 800000000 }, {
172 { CGU_SYS_IDIV_APB, { 4, 4, 3, 4 } }, /* APB */
173 { CGU_SYS_IDIV_AXI, { 4, 2, 1, 1 } }, /* AXI */
174 { CGU_SYS_IDIV_ETH, { 2, 2, 2, 2 } }, /* ETH */
175 { CGU_SYS_IDIV_USB, { 2, 2, 2, 2 } }, /* USB */
176 { CGU_SYS_IDIV_SDIO, { 2, 2, 2, 2 } }, /* SDIO */
177 { CGU_SYS_IDIV_HDMI, { 2, 2, 2, 2 } }, /* HDMI */
178 { CGU_SYS_IDIV_GFX_CORE, { 1, 1, 1, 1 } }, /* GPU-CORE */
179 { CGU_SYS_IDIV_GFX_DMA, { 2, 2, 2, 2 } }, /* GPU-DMA */
180 { CGU_SYS_IDIV_GFX_CFG, { 4, 4, 3, 4 } }, /* GPU-CFG */
181 { CGU_SYS_IDIV_DMAC_CORE,{ 2, 2, 2, 2 } }, /* DMAC-CORE */
182 { CGU_SYS_IDIV_DMAC_CFG, { 4, 4, 3, 4 } }, /* DMAC-CFG */
183 { CGU_SYS_IDIV_SDIO_REF, { 8, 8, 6, 8 } }, /* SDIO-REF */
184 { CGU_SYS_IDIV_SPI_REF, { 24, 24, 18, 24 } }, /* SPI-REF */
185 { CGU_SYS_IDIV_I2C_REF, { 4, 4, 3, 4 } }, /* I2C-REF */
186 { CGU_SYS_IDIV_UART_REF, { 24, 24, 18, 24 } }, /* UART-REF */
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300187 { CGU_SYS_IDIV_EBI_REF, { 16, 16, 12, 16 } }, /* EBI-REF */
188 { /* last one */ }
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300189 }
190};
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300191
192struct hsdk_pll_cfg {
Eugeniy Paltsev0b8ac7c2020-05-07 17:52:11 +0300193 const u32 rate;
194 const u8 idiv;
195 const u8 fbdiv;
196 const u8 odiv;
197 const u8 band;
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300198};
199
200static const struct hsdk_pll_cfg asdt_pll_cfg[] = {
201 { 100000000, 0, 11, 3, 0 },
202 { 125000000, 0, 14, 3, 0 },
203 { 133000000, 0, 15, 3, 0 },
204 { 150000000, 0, 17, 3, 0 },
205 { 200000000, 1, 47, 3, 0 },
206 { 233000000, 1, 27, 2, 0 },
207 { 300000000, 1, 35, 2, 0 },
208 { 333000000, 1, 39, 2, 0 },
209 { 400000000, 1, 47, 2, 0 },
210 { 500000000, 0, 14, 1, 0 },
211 { 600000000, 0, 17, 1, 0 },
212 { 700000000, 0, 20, 1, 0 },
Eugeniy Paltsevc6f15de2020-04-16 22:35:11 +0300213 { 750000000, 1, 44, 1, 0 },
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300214 { 800000000, 0, 23, 1, 0 },
215 { 900000000, 1, 26, 0, 0 },
216 { 1000000000, 1, 29, 0, 0 },
217 { 1100000000, 1, 32, 0, 0 },
218 { 1200000000, 1, 35, 0, 0 },
219 { 1300000000, 1, 38, 0, 0 },
220 { 1400000000, 1, 41, 0, 0 },
221 { 1500000000, 1, 44, 0, 0 },
222 { 1600000000, 1, 47, 0, 0 },
223 {}
224};
225
226static const struct hsdk_pll_cfg hdmi_pll_cfg[] = {
227 { 297000000, 0, 21, 2, 0 },
228 { 540000000, 0, 19, 1, 0 },
229 { 594000000, 0, 21, 1, 0 },
230 {}
231};
232
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300233struct hsdk_cgu_domain {
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300234 /* PLLs registers */
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300235 void __iomem *pll_regs;
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300236 /* PLLs special registers */
237 void __iomem *spec_regs;
238 /* PLLs devdata */
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300239 const struct hsdk_pll_devdata *pll;
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300240
241 /* Dividers registers */
242 void __iomem *idiv_regs;
243};
244
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300245struct hsdk_cgu_clk {
Eugeniy Paltsev089c8e92020-05-07 20:10:30 +0300246 const struct cgu_clk_map *map;
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300247 /* CGU block register */
248 void __iomem *cgu_regs;
249 /* CREG block register */
250 void __iomem *creg_regs;
251
252 /* The domain we are working with */
253 struct hsdk_cgu_domain curr_domain;
254};
255
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300256struct hsdk_pll_devdata {
Eugeniy Paltsev5872fc62020-01-29 14:08:30 +0300257 const u32 parent_rate;
Eugeniy Paltsev0b8ac7c2020-05-07 17:52:11 +0300258 const struct hsdk_pll_cfg *const pll_cfg;
259 const int (*const update_rate)(struct hsdk_cgu_clk *clk,
260 unsigned long rate,
261 const struct hsdk_pll_cfg *cfg);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300262};
263
264static int hsdk_pll_core_update_rate(struct hsdk_cgu_clk *, unsigned long,
265 const struct hsdk_pll_cfg *);
266static int hsdk_pll_comm_update_rate(struct hsdk_cgu_clk *, unsigned long,
267 const struct hsdk_pll_cfg *);
268
269static const struct hsdk_pll_devdata core_pll_dat = {
Eugeniy Paltsev5872fc62020-01-29 14:08:30 +0300270 .parent_rate = PARENT_RATE_33,
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300271 .pll_cfg = asdt_pll_cfg,
272 .update_rate = hsdk_pll_core_update_rate,
273};
274
275static const struct hsdk_pll_devdata sdt_pll_dat = {
Eugeniy Paltsev5872fc62020-01-29 14:08:30 +0300276 .parent_rate = PARENT_RATE_33,
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300277 .pll_cfg = asdt_pll_cfg,
278 .update_rate = hsdk_pll_comm_update_rate,
279};
280
281static const struct hsdk_pll_devdata hdmi_pll_dat = {
Eugeniy Paltsev5872fc62020-01-29 14:08:30 +0300282 .parent_rate = PARENT_RATE_27,
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300283 .pll_cfg = hdmi_pll_cfg,
284 .update_rate = hsdk_pll_comm_update_rate,
285};
286
287static ulong idiv_set(struct clk *, ulong);
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300288static ulong cpu_clk_set(struct clk *, ulong);
289static ulong axi_clk_set(struct clk *, ulong);
Eugeniy Paltsev6bd63fc2020-05-07 22:20:10 +0300290static ulong tun_hsdk_set(struct clk *, ulong);
291static ulong tun_h4xd_set(struct clk *, ulong);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300292static ulong idiv_get(struct clk *);
293static int idiv_off(struct clk *);
294static ulong pll_set(struct clk *, ulong);
295static ulong pll_get(struct clk *);
296
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300297struct cgu_clk_map {
Eugeniy Paltsev0b8ac7c2020-05-07 17:52:11 +0300298 const u32 cgu_pll_oft;
299 const u32 cgu_div_oft;
300 const struct hsdk_pll_devdata *const pll_devdata;
301 const ulong (*const get_rate)(struct clk *clk);
302 const ulong (*const set_rate)(struct clk *clk, ulong rate);
303 const int (*const disable)(struct clk *clk);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300304};
305
Eugeniy Paltsev6bd63fc2020-05-07 22:20:10 +0300306static const struct cgu_clk_map hsdk_clk_map[] = {
Eugeniy Paltsev7aa8c092020-05-07 20:31:01 +0300307 [CLK_ARC_PLL] = { CGU_ARC_PLL, 0, &core_pll_dat, pll_get, pll_set, NULL },
308 [CLK_ARC] = { CGU_ARC_PLL, CGU_ARC_IDIV, &core_pll_dat, idiv_get, cpu_clk_set, idiv_off },
309 [CLK_DDR_PLL] = { CGU_DDR_PLL, 0, &sdt_pll_dat, pll_get, pll_set, NULL },
310 [CLK_SYS_PLL] = { CGU_SYS_PLL, 0, &sdt_pll_dat, pll_get, pll_set, NULL },
311 [CLK_SYS_APB] = { CGU_SYS_PLL, CGU_SYS_IDIV_APB, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
312 [CLK_SYS_AXI] = { CGU_SYS_PLL, CGU_SYS_IDIV_AXI, &sdt_pll_dat, idiv_get, axi_clk_set, idiv_off },
313 [CLK_SYS_ETH] = { CGU_SYS_PLL, CGU_SYS_IDIV_ETH, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
314 [CLK_SYS_USB] = { CGU_SYS_PLL, CGU_SYS_IDIV_USB, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
315 [CLK_SYS_SDIO] = { CGU_SYS_PLL, CGU_SYS_IDIV_SDIO, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
316 [CLK_SYS_HDMI] = { CGU_SYS_PLL, CGU_SYS_IDIV_HDMI, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
317 [CLK_SYS_GFX_CORE] = { CGU_SYS_PLL, CGU_SYS_IDIV_GFX_CORE, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
318 [CLK_SYS_GFX_DMA] = { CGU_SYS_PLL, CGU_SYS_IDIV_GFX_DMA, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
319 [CLK_SYS_GFX_CFG] = { CGU_SYS_PLL, CGU_SYS_IDIV_GFX_CFG, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
320 [CLK_SYS_DMAC_CORE] = { CGU_SYS_PLL, CGU_SYS_IDIV_DMAC_CORE, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
321 [CLK_SYS_DMAC_CFG] = { CGU_SYS_PLL, CGU_SYS_IDIV_DMAC_CFG, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
322 [CLK_SYS_SDIO_REF] = { CGU_SYS_PLL, CGU_SYS_IDIV_SDIO_REF, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
323 [CLK_SYS_SPI_REF] = { CGU_SYS_PLL, CGU_SYS_IDIV_SPI_REF, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
324 [CLK_SYS_I2C_REF] = { CGU_SYS_PLL, CGU_SYS_IDIV_I2C_REF, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
325 [CLK_SYS_UART_REF] = { CGU_SYS_PLL, CGU_SYS_IDIV_UART_REF, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
326 [CLK_SYS_EBI_REF] = { CGU_SYS_PLL, CGU_SYS_IDIV_EBI_REF, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
327 [CLK_TUN_PLL] = { CGU_TUN_PLL, 0, &sdt_pll_dat, pll_get, pll_set, NULL },
Eugeniy Paltsev6bd63fc2020-05-07 22:20:10 +0300328 [CLK_TUN_TUN] = { CGU_TUN_PLL, CGU_TUN_IDIV_TUN, &sdt_pll_dat, idiv_get, tun_hsdk_set, idiv_off },
Eugeniy Paltsev7aa8c092020-05-07 20:31:01 +0300329 [CLK_TUN_ROM] = { CGU_TUN_PLL, CGU_TUN_IDIV_ROM, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
330 [CLK_TUN_PWM] = { CGU_TUN_PLL, CGU_TUN_IDIV_PWM, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
Eugeniy Paltsev6bd63fc2020-05-07 22:20:10 +0300331 [CLK_TUN_TIMER] = { /* missing in HSDK */ },
332 [CLK_HDMI_PLL] = { CGU_HDMI_PLL, 0, &hdmi_pll_dat, pll_get, pll_set, NULL },
333 [CLK_HDMI] = { CGU_HDMI_PLL, CGU_HDMI_IDIV_APB, &hdmi_pll_dat, idiv_get, idiv_set, idiv_off }
334};
335
336static const struct cgu_clk_map hsdk_4xd_clk_map[] = {
337 [CLK_ARC_PLL] = { CGU_ARC_PLL, 0, &core_pll_dat, pll_get, pll_set, NULL },
338 [CLK_ARC] = { CGU_ARC_PLL, CGU_ARC_IDIV, &core_pll_dat, idiv_get, cpu_clk_set, idiv_off },
339 [CLK_DDR_PLL] = { CGU_DDR_PLL, 0, &sdt_pll_dat, pll_get, pll_set, NULL },
340 [CLK_SYS_PLL] = { CGU_SYS_PLL, 0, &sdt_pll_dat, pll_get, pll_set, NULL },
341 [CLK_SYS_APB] = { CGU_SYS_PLL, CGU_SYS_IDIV_APB, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
342 [CLK_SYS_AXI] = { CGU_SYS_PLL, CGU_SYS_IDIV_AXI, &sdt_pll_dat, idiv_get, axi_clk_set, idiv_off },
343 [CLK_SYS_ETH] = { CGU_SYS_PLL, CGU_SYS_IDIV_ETH, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
344 [CLK_SYS_USB] = { CGU_SYS_PLL, CGU_SYS_IDIV_USB, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
345 [CLK_SYS_SDIO] = { CGU_SYS_PLL, CGU_SYS_IDIV_SDIO, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
346 [CLK_SYS_HDMI] = { CGU_SYS_PLL, CGU_SYS_IDIV_HDMI, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
347 [CLK_SYS_GFX_CORE] = { CGU_SYS_PLL, CGU_SYS_IDIV_GFX_CORE, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
348 [CLK_SYS_GFX_DMA] = { /* missing in HSDK-4xD */ },
349 [CLK_SYS_GFX_CFG] = { /* missing in HSDK-4xD */ },
350 [CLK_SYS_DMAC_CORE] = { CGU_SYS_PLL, CGU_SYS_IDIV_DMAC_CORE, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
351 [CLK_SYS_DMAC_CFG] = { CGU_SYS_PLL, CGU_SYS_IDIV_DMAC_CFG, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
352 [CLK_SYS_SDIO_REF] = { CGU_SYS_PLL, CGU_SYS_IDIV_SDIO_REF, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
353 [CLK_SYS_SPI_REF] = { CGU_SYS_PLL, CGU_SYS_IDIV_SPI_REF, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
354 [CLK_SYS_I2C_REF] = { CGU_SYS_PLL, CGU_SYS_IDIV_I2C_REF, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
355 [CLK_SYS_UART_REF] = { CGU_SYS_PLL, CGU_SYS_IDIV_UART_REF, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
356 [CLK_SYS_EBI_REF] = { CGU_SYS_PLL, CGU_SYS_IDIV_EBI_REF, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
357 [CLK_TUN_PLL] = { CGU_TUN_PLL, 0, &sdt_pll_dat, pll_get, pll_set, NULL },
358 [CLK_TUN_TUN] = { CGU_TUN_PLL, CGU_TUN_IDIV_TUN, &sdt_pll_dat, idiv_get, tun_h4xd_set, idiv_off },
359 [CLK_TUN_ROM] = { CGU_TUN_PLL, CGU_TUN_IDIV_ROM, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
360 [CLK_TUN_PWM] = { CGU_TUN_PLL, CGU_TUN_IDIV_PWM, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
Eugeniy Paltsev7aa8c092020-05-07 20:31:01 +0300361 [CLK_TUN_TIMER] = { CGU_TUN_PLL, CGU_TUN_IDIV_TIMER, &sdt_pll_dat, idiv_get, idiv_set, idiv_off },
362 [CLK_HDMI_PLL] = { CGU_HDMI_PLL, 0, &hdmi_pll_dat, pll_get, pll_set, NULL },
363 [CLK_HDMI] = { CGU_HDMI_PLL, CGU_HDMI_IDIV_APB, &hdmi_pll_dat, idiv_get, idiv_set, idiv_off }
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300364};
365
366static inline void hsdk_idiv_write(struct hsdk_cgu_clk *clk, u32 val)
367{
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300368 iowrite32(val, clk->curr_domain.idiv_regs);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300369}
370
371static inline u32 hsdk_idiv_read(struct hsdk_cgu_clk *clk)
372{
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300373 return ioread32(clk->curr_domain.idiv_regs);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300374}
375
376static inline void hsdk_pll_write(struct hsdk_cgu_clk *clk, u32 reg, u32 val)
377{
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300378 iowrite32(val, clk->curr_domain.pll_regs + reg);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300379}
380
381static inline u32 hsdk_pll_read(struct hsdk_cgu_clk *clk, u32 reg)
382{
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300383 return ioread32(clk->curr_domain.pll_regs + reg);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300384}
385
386static inline void hsdk_pll_spcwrite(struct hsdk_cgu_clk *clk, u32 reg, u32 val)
387{
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300388 iowrite32(val, clk->curr_domain.spec_regs + reg);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300389}
390
391static inline u32 hsdk_pll_spcread(struct hsdk_cgu_clk *clk, u32 reg)
392{
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300393 return ioread32(clk->curr_domain.spec_regs + reg);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300394}
395
396static inline void hsdk_pll_set_cfg(struct hsdk_cgu_clk *clk,
397 const struct hsdk_pll_cfg *cfg)
398{
399 u32 val = 0;
400
401 /* Powerdown and Bypass bits should be cleared */
Eugeniy Paltsev0b8ac7c2020-05-07 17:52:11 +0300402 val |= (u32)cfg->idiv << CGU_PLL_CTRL_IDIV_SHIFT;
403 val |= (u32)cfg->fbdiv << CGU_PLL_CTRL_FBDIV_SHIFT;
404 val |= (u32)cfg->odiv << CGU_PLL_CTRL_ODIV_SHIFT;
405 val |= (u32)cfg->band << CGU_PLL_CTRL_BAND_SHIFT;
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300406
407 pr_debug("write configurarion: %#x\n", val);
408
409 hsdk_pll_write(clk, CGU_PLL_CTRL, val);
410}
411
412static inline bool hsdk_pll_is_locked(struct hsdk_cgu_clk *clk)
413{
414 return !!(hsdk_pll_read(clk, CGU_PLL_STATUS) & CGU_PLL_STATUS_LOCK);
415}
416
417static inline bool hsdk_pll_is_err(struct hsdk_cgu_clk *clk)
418{
419 return !!(hsdk_pll_read(clk, CGU_PLL_STATUS) & CGU_PLL_STATUS_ERR);
420}
421
422static ulong pll_get(struct clk *sclk)
423{
424 u32 val;
425 u64 rate;
426 u32 idiv, fbdiv, odiv;
427 struct hsdk_cgu_clk *clk = dev_get_priv(sclk->dev);
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300428 u32 parent_rate = clk->curr_domain.pll->parent_rate;
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300429
430 val = hsdk_pll_read(clk, CGU_PLL_CTRL);
431
432 pr_debug("current configurarion: %#x\n", val);
433
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300434 /* Check if PLL is bypassed */
435 if (val & CGU_PLL_CTRL_BYPASS)
Eugeniy Paltsev5872fc62020-01-29 14:08:30 +0300436 return parent_rate;
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300437
Eugeniy Paltsev9d70c9c2020-01-29 14:08:29 +0300438 /* Check if PLL is disabled */
439 if (val & CGU_PLL_CTRL_PD)
440 return 0;
441
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300442 /* input divider = reg.idiv + 1 */
443 idiv = 1 + ((val & CGU_PLL_CTRL_IDIV_MASK) >> CGU_PLL_CTRL_IDIV_SHIFT);
444 /* fb divider = 2*(reg.fbdiv + 1) */
445 fbdiv = 2 * (1 + ((val & CGU_PLL_CTRL_FBDIV_MASK) >> CGU_PLL_CTRL_FBDIV_SHIFT));
446 /* output divider = 2^(reg.odiv) */
447 odiv = 1 << ((val & CGU_PLL_CTRL_ODIV_MASK) >> CGU_PLL_CTRL_ODIV_SHIFT);
448
Eugeniy Paltsev5872fc62020-01-29 14:08:30 +0300449 rate = (u64)parent_rate * fbdiv;
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300450 do_div(rate, idiv * odiv);
451
452 return rate;
453}
454
455static unsigned long hsdk_pll_round_rate(struct clk *sclk, unsigned long rate)
456{
457 int i;
458 unsigned long best_rate;
459 struct hsdk_cgu_clk *clk = dev_get_priv(sclk->dev);
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300460 const struct hsdk_pll_cfg *pll_cfg = clk->curr_domain.pll->pll_cfg;
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300461
462 if (pll_cfg[0].rate == 0)
463 return -EINVAL;
464
465 best_rate = pll_cfg[0].rate;
466
467 for (i = 1; pll_cfg[i].rate != 0; i++) {
468 if (abs(rate - pll_cfg[i].rate) < abs(rate - best_rate))
469 best_rate = pll_cfg[i].rate;
470 }
471
472 pr_debug("chosen best rate: %lu\n", best_rate);
473
474 return best_rate;
475}
476
477static int hsdk_pll_comm_update_rate(struct hsdk_cgu_clk *clk,
478 unsigned long rate,
479 const struct hsdk_pll_cfg *cfg)
480{
481 hsdk_pll_set_cfg(clk, cfg);
482
483 /*
484 * Wait until CGU relocks and check error status.
485 * If after timeout CGU is unlocked yet return error.
486 */
487 udelay(HSDK_PLL_MAX_LOCK_TIME);
488 if (!hsdk_pll_is_locked(clk))
489 return -ETIMEDOUT;
490
491 if (hsdk_pll_is_err(clk))
492 return -EINVAL;
493
494 return 0;
495}
496
497static int hsdk_pll_core_update_rate(struct hsdk_cgu_clk *clk,
498 unsigned long rate,
499 const struct hsdk_pll_cfg *cfg)
500{
501 /*
502 * When core clock exceeds 500MHz, the divider for the interface
503 * clock must be programmed to div-by-2.
504 */
505 if (rate > CORE_IF_CLK_THRESHOLD_HZ)
506 hsdk_pll_spcwrite(clk, CREG_CORE_IF_DIV, CREG_CORE_IF_CLK_DIV_2);
507
508 hsdk_pll_set_cfg(clk, cfg);
509
510 /*
511 * Wait until CGU relocks and check error status.
512 * If after timeout CGU is unlocked yet return error.
513 */
514 udelay(HSDK_PLL_MAX_LOCK_TIME);
515 if (!hsdk_pll_is_locked(clk))
516 return -ETIMEDOUT;
517
518 if (hsdk_pll_is_err(clk))
519 return -EINVAL;
520
521 /*
522 * Program divider to div-by-1 if we succesfuly set core clock below
523 * 500MHz threshold.
524 */
525 if (rate <= CORE_IF_CLK_THRESHOLD_HZ)
526 hsdk_pll_spcwrite(clk, CREG_CORE_IF_DIV, CREG_CORE_IF_CLK_DIV_1);
527
528 return 0;
529}
530
531static ulong pll_set(struct clk *sclk, ulong rate)
532{
533 int i;
534 unsigned long best_rate;
535 struct hsdk_cgu_clk *clk = dev_get_priv(sclk->dev);
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300536 const struct hsdk_pll_devdata *pll = clk->curr_domain.pll;
537 const struct hsdk_pll_cfg *pll_cfg = pll->pll_cfg;
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300538
539 best_rate = hsdk_pll_round_rate(sclk, rate);
540
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300541 for (i = 0; pll_cfg[i].rate != 0; i++)
542 if (pll_cfg[i].rate == best_rate)
543 return pll->update_rate(clk, best_rate, &pll_cfg[i]);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300544
Eugeniy Paltsev5872fc62020-01-29 14:08:30 +0300545 pr_err("invalid rate=%ld Hz, parent_rate=%d Hz\n", best_rate,
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300546 pll->parent_rate);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300547
548 return -EINVAL;
549}
550
551static int idiv_off(struct clk *sclk)
552{
553 struct hsdk_cgu_clk *clk = dev_get_priv(sclk->dev);
554
555 hsdk_idiv_write(clk, 0);
556
557 return 0;
558}
559
560static ulong idiv_get(struct clk *sclk)
561{
562 struct hsdk_cgu_clk *clk = dev_get_priv(sclk->dev);
563 ulong parent_rate = pll_get(sclk);
564 u32 div_factor = hsdk_idiv_read(clk);
565
566 div_factor &= CGU_IDIV_MASK;
567
568 pr_debug("current configurarion: %#x (%d)\n", div_factor, div_factor);
569
570 if (div_factor == 0)
571 return 0;
572
573 return parent_rate / div_factor;
574}
575
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300576/* Special behavior: wen we set this clock we set both idiv and pll */
577static ulong cpu_clk_set(struct clk *sclk, ulong rate)
578{
579 ulong ret;
580
581 ret = pll_set(sclk, rate);
582 idiv_set(sclk, rate);
583
584 return ret;
585}
586
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300587/*
588 * Special behavior:
589 * when we set these clocks we set both PLL and all idiv dividers related to
590 * this PLL domain.
591 */
592static ulong common_div_clk_set(struct clk *sclk, ulong rate,
593 const struct hsdk_div_full_cfg *cfg)
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300594{
595 struct hsdk_cgu_clk *clk = dev_get_priv(sclk->dev);
596 ulong pll_rate;
597 int i, freq_idx = -1;
598 ulong ret = 0;
599
600 pll_rate = pll_get(sclk);
601
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300602 for (i = 0; i < MAX_FREQ_VARIATIONS; i++) {
603 /* unused freq variations are filled with 0 */
604 if (!cfg->clk_rate[i])
605 break;
606
607 if (cfg->clk_rate[i] == rate) {
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300608 freq_idx = i;
609 break;
610 }
611 }
612
613 if (freq_idx < 0) {
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300614 pr_err("clk: invalid rate=%ld Hz\n", rate);
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300615 return -EINVAL;
616 }
617
618 /* configure PLL before dividers */
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300619 if (cfg->pll_rate[freq_idx] < pll_rate)
620 ret = pll_set(sclk, cfg->pll_rate[freq_idx]);
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300621
622 /* configure SYS dividers */
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300623 for (i = 0; cfg->idiv[i].oft != 0; i++) {
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300624 clk->curr_domain.idiv_regs = clk->cgu_regs + cfg->idiv[i].oft;
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300625 hsdk_idiv_write(clk, cfg->idiv[i].val[freq_idx]);
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300626 }
627
628 /* configure PLL after dividers */
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300629 if (cfg->pll_rate[freq_idx] >= pll_rate)
630 ret = pll_set(sclk, cfg->pll_rate[freq_idx]);
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300631
632 return ret;
633}
634
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300635static ulong axi_clk_set(struct clk *sclk, ulong rate)
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300636{
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300637 return common_div_clk_set(sclk, rate, &axi_clk_cfg);
638}
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300639
Eugeniy Paltsev6bd63fc2020-05-07 22:20:10 +0300640static ulong tun_hsdk_set(struct clk *sclk, ulong rate)
641{
642 return common_div_clk_set(sclk, rate, &hsdk_tun_clk_cfg);
643}
644
645static ulong tun_h4xd_set(struct clk *sclk, ulong rate)
Eugeniy Paltsev42da3942020-05-07 16:59:54 +0300646{
Eugeniy Paltsev6bd63fc2020-05-07 22:20:10 +0300647 return common_div_clk_set(sclk, rate, &hsdk_4xd_tun_clk_cfg);
Eugeniy Paltsev74514242018-01-16 20:44:25 +0300648}
649
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300650static ulong idiv_set(struct clk *sclk, ulong rate)
651{
652 struct hsdk_cgu_clk *clk = dev_get_priv(sclk->dev);
653 ulong parent_rate = pll_get(sclk);
654 u32 div_factor;
655
656 div_factor = parent_rate / rate;
657 if (abs(rate - parent_rate / (div_factor + 1)) <=
658 abs(rate - parent_rate / div_factor)) {
659 div_factor += 1;
660 }
661
662 if (div_factor & ~CGU_IDIV_MASK) {
Eugeniy Paltsev7d7d9f22018-01-16 20:44:27 +0300663 pr_err("invalid rate=%ld Hz, parent_rate=%ld Hz, div=%d: max divider valie is%d\n",
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300664 rate, parent_rate, div_factor, CGU_IDIV_MASK);
665
666 div_factor = CGU_IDIV_MASK;
667 }
668
669 if (div_factor == 0) {
Eugeniy Paltsev7d7d9f22018-01-16 20:44:27 +0300670 pr_err("invalid rate=%ld Hz, parent_rate=%ld Hz, div=%d: min divider valie is 1\n",
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300671 rate, parent_rate, div_factor);
672
673 div_factor = 1;
674 }
675
676 hsdk_idiv_write(clk, div_factor);
677
678 return 0;
679}
680
681static int hsdk_prepare_clock_tree_branch(struct clk *sclk)
682{
683 struct hsdk_cgu_clk *clk = dev_get_priv(sclk->dev);
684
685 if (sclk->id >= CGU_MAX_CLOCKS)
686 return -EINVAL;
687
Eugeniy Paltsev089c8e92020-05-07 20:10:30 +0300688 /* clocks missing in current map have their entry zeroed */
689 if (!clk->map[sclk->id].pll_devdata)
690 return -EINVAL;
691
692 clk->curr_domain.pll = clk->map[sclk->id].pll_devdata;
693 clk->curr_domain.pll_regs = clk->cgu_regs + clk->map[sclk->id].cgu_pll_oft;
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300694 clk->curr_domain.spec_regs = clk->creg_regs;
Eugeniy Paltsev089c8e92020-05-07 20:10:30 +0300695 clk->curr_domain.idiv_regs = clk->cgu_regs + clk->map[sclk->id].cgu_div_oft;
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300696
697 return 0;
698}
699
700static ulong hsdk_cgu_get_rate(struct clk *sclk)
701{
Eugeniy Paltsev089c8e92020-05-07 20:10:30 +0300702 struct hsdk_cgu_clk *clk = dev_get_priv(sclk->dev);
703
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300704 if (hsdk_prepare_clock_tree_branch(sclk))
705 return -EINVAL;
706
Eugeniy Paltsev089c8e92020-05-07 20:10:30 +0300707 return clk->map[sclk->id].get_rate(sclk);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300708}
709
710static ulong hsdk_cgu_set_rate(struct clk *sclk, ulong rate)
711{
Eugeniy Paltsev089c8e92020-05-07 20:10:30 +0300712 struct hsdk_cgu_clk *clk = dev_get_priv(sclk->dev);
713
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300714 if (hsdk_prepare_clock_tree_branch(sclk))
715 return -EINVAL;
716
Eugeniy Paltsev87b0d192020-05-07 20:18:41 +0300717 if (clk->map[sclk->id].set_rate)
718 return clk->map[sclk->id].set_rate(sclk, rate);
719
720 return -ENOTSUPP;
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300721}
722
723static int hsdk_cgu_disable(struct clk *sclk)
724{
Eugeniy Paltsev089c8e92020-05-07 20:10:30 +0300725 struct hsdk_cgu_clk *clk = dev_get_priv(sclk->dev);
726
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300727 if (hsdk_prepare_clock_tree_branch(sclk))
728 return -EINVAL;
729
Eugeniy Paltsev089c8e92020-05-07 20:10:30 +0300730 if (clk->map[sclk->id].disable)
731 return clk->map[sclk->id].disable(sclk);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300732
733 return -ENOTSUPP;
734}
735
736static const struct clk_ops hsdk_cgu_ops = {
737 .set_rate = hsdk_cgu_set_rate,
738 .get_rate = hsdk_cgu_get_rate,
739 .disable = hsdk_cgu_disable,
740};
741
742static int hsdk_cgu_clk_probe(struct udevice *dev)
743{
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300744 struct hsdk_cgu_clk *hsdk_clk = dev_get_priv(dev);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300745
Eugeniy Paltsev6bd63fc2020-05-07 22:20:10 +0300746 BUILD_BUG_ON(ARRAY_SIZE(hsdk_clk_map) != CGU_MAX_CLOCKS);
747 BUILD_BUG_ON(ARRAY_SIZE(hsdk_4xd_clk_map) != CGU_MAX_CLOCKS);
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300748
Eugeniy Paltsev6bd63fc2020-05-07 22:20:10 +0300749 /* Choose which clock map to use in runtime */
750 if ((read_aux_reg(ARC_AUX_IDENTITY) & 0xFF) == 0x52)
751 hsdk_clk->map = hsdk_clk_map;
752 else
753 hsdk_clk->map = hsdk_4xd_clk_map;
Eugeniy Paltsev089c8e92020-05-07 20:10:30 +0300754
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300755 hsdk_clk->cgu_regs = (void __iomem *)devfdt_get_addr_index(dev, 0);
756 if (!hsdk_clk->cgu_regs)
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300757 return -EINVAL;
758
Eugeniy Paltsev9264fdf2020-05-07 19:00:08 +0300759 hsdk_clk->creg_regs = (void __iomem *)devfdt_get_addr_index(dev, 1);
760 if (!hsdk_clk->creg_regs)
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300761 return -EINVAL;
762
763 return 0;
764}
765
766static const struct udevice_id hsdk_cgu_clk_id[] = {
767 { .compatible = "snps,hsdk-cgu-clock" },
768 { }
769};
770
771U_BOOT_DRIVER(hsdk_cgu_clk) = {
772 .name = "hsdk-cgu-clk",
773 .id = UCLASS_CLK,
774 .of_match = hsdk_cgu_clk_id,
775 .probe = hsdk_cgu_clk_probe,
Eugeniy Paltseva5a238f2018-01-16 20:44:26 +0300776 .priv_auto_alloc_size = sizeof(struct hsdk_cgu_clk),
Eugeniy Paltsev7e1fb092017-12-10 21:20:08 +0300777 .ops = &hsdk_cgu_ops,
778};