xref: /openbmc/linux/drivers/clk/tegra/clk-tegra210.c (revision 9a85eb4d62425555ccdc774d906e6bbca5ffccc0)
19952f691SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
26b301a05SRhyland Klein /*
36b301a05SRhyland Klein  * Copyright (c) 2012-2014 NVIDIA CORPORATION.  All rights reserved.
46b301a05SRhyland Klein  */
56b301a05SRhyland Klein 
66b301a05SRhyland Klein #include <linux/io.h>
76b301a05SRhyland Klein #include <linux/clk.h>
86b301a05SRhyland Klein #include <linux/clk-provider.h>
96b301a05SRhyland Klein #include <linux/clkdev.h>
106b301a05SRhyland Klein #include <linux/of.h>
116b301a05SRhyland Klein #include <linux/of_address.h>
12535f296dSSowjanya Komatineni #include <linux/syscore_ops.h>
136b301a05SRhyland Klein #include <linux/delay.h>
146b301a05SRhyland Klein #include <linux/export.h>
15e403d005SPeter De Schrijver #include <linux/mutex.h>
166b301a05SRhyland Klein #include <linux/clk/tegra.h>
176b301a05SRhyland Klein #include <dt-bindings/clock/tegra210-car.h>
1868d724ceSPeter De Schrijver #include <dt-bindings/reset/tegra210-car.h>
19c8da78e8SStephen Boyd #include <linux/sizes.h>
20e403d005SPeter De Schrijver #include <soc/tegra/pmc.h>
216b301a05SRhyland Klein 
226b301a05SRhyland Klein #include "clk.h"
236b301a05SRhyland Klein #include "clk-id.h"
246b301a05SRhyland Klein 
256b301a05SRhyland Klein /*
266b301a05SRhyland Klein  * TEGRA210_CAR_BANK_COUNT: the number of peripheral clock register
276b301a05SRhyland Klein  * banks present in the Tegra210 CAR IP block.  The banks are
286b301a05SRhyland Klein  * identified by single letters, e.g.: L, H, U, V, W, X, Y.  See
296b301a05SRhyland Klein  * periph_regs[] in drivers/clk/tegra/clk.c
306b301a05SRhyland Klein  */
316b301a05SRhyland Klein #define TEGRA210_CAR_BANK_COUNT			7
326b301a05SRhyland Klein 
336b301a05SRhyland Klein #define CLK_SOURCE_CSITE 0x1d4
346b301a05SRhyland Klein #define CLK_SOURCE_EMC 0x19c
35bc2e4d29SThierry Reding #define CLK_SOURCE_SOR1 0x410
3605308d7eSThierry Reding #define CLK_SOURCE_SOR0 0x414
3789e423c3SPeter De Schrijver #define CLK_SOURCE_LA 0x1f8
38c76a69e4SPeter De-Schrijver #define CLK_SOURCE_SDMMC2 0x154
39c76a69e4SPeter De-Schrijver #define CLK_SOURCE_SDMMC4 0x164
406b301a05SRhyland Klein 
416b301a05SRhyland Klein #define PLLC_BASE 0x80
426b301a05SRhyland Klein #define PLLC_OUT 0x84
436b301a05SRhyland Klein #define PLLC_MISC0 0x88
446b301a05SRhyland Klein #define PLLC_MISC1 0x8c
456b301a05SRhyland Klein #define PLLC_MISC2 0x5d0
466b301a05SRhyland Klein #define PLLC_MISC3 0x5d4
476b301a05SRhyland Klein 
486b301a05SRhyland Klein #define PLLC2_BASE 0x4e8
496b301a05SRhyland Klein #define PLLC2_MISC0 0x4ec
506b301a05SRhyland Klein #define PLLC2_MISC1 0x4f0
516b301a05SRhyland Klein #define PLLC2_MISC2 0x4f4
526b301a05SRhyland Klein #define PLLC2_MISC3 0x4f8
536b301a05SRhyland Klein 
546b301a05SRhyland Klein #define PLLC3_BASE 0x4fc
556b301a05SRhyland Klein #define PLLC3_MISC0 0x500
566b301a05SRhyland Klein #define PLLC3_MISC1 0x504
576b301a05SRhyland Klein #define PLLC3_MISC2 0x508
586b301a05SRhyland Klein #define PLLC3_MISC3 0x50c
596b301a05SRhyland Klein 
606b301a05SRhyland Klein #define PLLM_BASE 0x90
616b301a05SRhyland Klein #define PLLM_MISC1 0x98
62474f2ba2SRhyland Klein #define PLLM_MISC2 0x9c
636b301a05SRhyland Klein #define PLLP_BASE 0xa0
646b301a05SRhyland Klein #define PLLP_MISC0 0xac
656b301a05SRhyland Klein #define PLLP_MISC1 0x680
666b301a05SRhyland Klein #define PLLA_BASE 0xb0
676b301a05SRhyland Klein #define PLLA_MISC0 0xbc
686b301a05SRhyland Klein #define PLLA_MISC1 0xb8
696b301a05SRhyland Klein #define PLLA_MISC2 0x5d8
706b301a05SRhyland Klein #define PLLD_BASE 0xd0
716b301a05SRhyland Klein #define PLLD_MISC0 0xdc
726b301a05SRhyland Klein #define PLLD_MISC1 0xd8
736b301a05SRhyland Klein #define PLLU_BASE 0xc0
746b301a05SRhyland Klein #define PLLU_OUTA 0xc4
756b301a05SRhyland Klein #define PLLU_MISC0 0xcc
766b301a05SRhyland Klein #define PLLU_MISC1 0xc8
776b301a05SRhyland Klein #define PLLX_BASE 0xe0
786b301a05SRhyland Klein #define PLLX_MISC0 0xe4
796b301a05SRhyland Klein #define PLLX_MISC1 0x510
806b301a05SRhyland Klein #define PLLX_MISC2 0x514
816b301a05SRhyland Klein #define PLLX_MISC3 0x518
826b301a05SRhyland Klein #define PLLX_MISC4 0x5f0
836b301a05SRhyland Klein #define PLLX_MISC5 0x5f4
846b301a05SRhyland Klein #define PLLE_BASE 0xe8
856b301a05SRhyland Klein #define PLLE_MISC0 0xec
866b301a05SRhyland Klein #define PLLD2_BASE 0x4b8
876b301a05SRhyland Klein #define PLLD2_MISC0 0x4bc
886b301a05SRhyland Klein #define PLLD2_MISC1 0x570
896b301a05SRhyland Klein #define PLLD2_MISC2 0x574
906b301a05SRhyland Klein #define PLLD2_MISC3 0x578
916b301a05SRhyland Klein #define PLLE_AUX 0x48c
926b301a05SRhyland Klein #define PLLRE_BASE 0x4c4
936b301a05SRhyland Klein #define PLLRE_MISC0 0x4c8
94926655f9SRhyland Klein #define PLLRE_OUT1 0x4cc
956b301a05SRhyland Klein #define PLLDP_BASE 0x590
966b301a05SRhyland Klein #define PLLDP_MISC 0x594
976b301a05SRhyland Klein 
986b301a05SRhyland Klein #define PLLC4_BASE 0x5a4
996b301a05SRhyland Klein #define PLLC4_MISC0 0x5a8
1006b301a05SRhyland Klein #define PLLC4_OUT 0x5e4
1016b301a05SRhyland Klein #define PLLMB_BASE 0x5e8
102474f2ba2SRhyland Klein #define PLLMB_MISC1 0x5ec
1036b301a05SRhyland Klein #define PLLA1_BASE 0x6a4
1046b301a05SRhyland Klein #define PLLA1_MISC0 0x6a8
1056b301a05SRhyland Klein #define PLLA1_MISC1 0x6ac
1066b301a05SRhyland Klein #define PLLA1_MISC2 0x6b0
1076b301a05SRhyland Klein #define PLLA1_MISC3 0x6b4
1086b301a05SRhyland Klein 
1096b301a05SRhyland Klein #define PLLU_IDDQ_BIT 31
1106b301a05SRhyland Klein #define PLLCX_IDDQ_BIT 27
1116b301a05SRhyland Klein #define PLLRE_IDDQ_BIT 24
1126b301a05SRhyland Klein #define PLLA_IDDQ_BIT 25
1136b301a05SRhyland Klein #define PLLD_IDDQ_BIT 20
1146b301a05SRhyland Klein #define PLLSS_IDDQ_BIT 18
1156b301a05SRhyland Klein #define PLLM_IDDQ_BIT 5
1166b301a05SRhyland Klein #define PLLMB_IDDQ_BIT 17
1176b301a05SRhyland Klein #define PLLXP_IDDQ_BIT 3
1186b301a05SRhyland Klein 
1196b301a05SRhyland Klein #define PLLCX_RESET_BIT 30
1206b301a05SRhyland Klein 
1216b301a05SRhyland Klein #define PLL_BASE_LOCK BIT(27)
1226b301a05SRhyland Klein #define PLLCX_BASE_LOCK BIT(26)
1236b301a05SRhyland Klein #define PLLE_MISC_LOCK BIT(11)
1246b301a05SRhyland Klein #define PLLRE_MISC_LOCK BIT(27)
1256b301a05SRhyland Klein 
1266b301a05SRhyland Klein #define PLL_MISC_LOCK_ENABLE 18
1276b301a05SRhyland Klein #define PLLC_MISC_LOCK_ENABLE 24
1286b301a05SRhyland Klein #define PLLDU_MISC_LOCK_ENABLE 22
1296b301a05SRhyland Klein #define PLLU_MISC_LOCK_ENABLE 29
1306b301a05SRhyland Klein #define PLLE_MISC_LOCK_ENABLE 9
1316b301a05SRhyland Klein #define PLLRE_MISC_LOCK_ENABLE 30
1326b301a05SRhyland Klein #define PLLSS_MISC_LOCK_ENABLE 30
1336b301a05SRhyland Klein #define PLLP_MISC_LOCK_ENABLE 18
1346b301a05SRhyland Klein #define PLLM_MISC_LOCK_ENABLE 4
1356b301a05SRhyland Klein #define PLLMB_MISC_LOCK_ENABLE 16
1366b301a05SRhyland Klein #define PLLA_MISC_LOCK_ENABLE 28
1376b301a05SRhyland Klein #define PLLU_MISC_LOCK_ENABLE 29
1386b301a05SRhyland Klein #define PLLD_MISC_LOCK_ENABLE 18
1396b301a05SRhyland Klein 
1406b301a05SRhyland Klein #define PLLA_SDM_DIN_MASK 0xffff
1416b301a05SRhyland Klein #define PLLA_SDM_EN_MASK BIT(26)
1426b301a05SRhyland Klein 
1436b301a05SRhyland Klein #define PLLD_SDM_EN_MASK BIT(16)
1446b301a05SRhyland Klein 
1456b301a05SRhyland Klein #define PLLD2_SDM_EN_MASK BIT(31)
146030999feSPeter De Schrijver #define PLLD2_SSC_EN_MASK 0
1476b301a05SRhyland Klein 
1486b301a05SRhyland Klein #define PLLDP_SS_CFG	0x598
1496b301a05SRhyland Klein #define PLLDP_SDM_EN_MASK BIT(31)
1506b301a05SRhyland Klein #define PLLDP_SSC_EN_MASK BIT(30)
1516b301a05SRhyland Klein #define PLLDP_SS_CTRL1	0x59c
1526b301a05SRhyland Klein #define PLLDP_SS_CTRL2	0x5a0
1536b301a05SRhyland Klein 
1546b301a05SRhyland Klein #define PMC_PLLM_WB0_OVERRIDE 0x1dc
1556b301a05SRhyland Klein #define PMC_PLLM_WB0_OVERRIDE_2 0x2b0
1566b301a05SRhyland Klein 
157e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2 0x488
158e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_STABLE_COUNT(x) (((x) & 0xfff) << 6)
159e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_ACTIVE_DLY_COUNT(x) (((x) & 0x3f) << 18)
160e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_A_POWERDOWN BIT(0)
161e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_A_POWERUP BIT(1)
162e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_B_POWERDOWN BIT(2)
163e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_B_POWERUP BIT(3)
164e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_C_POWERDOWN BIT(4)
165e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_C_POWERUP BIT(5)
166e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_D_POWERDOWN BIT(24)
167e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_D_POWERUP BIT(25)
168e745f992SPeter De Schrijver 
169e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1 0x484
170e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_ENABLE_DLY_COUNT(x) (((x) & 0x1f) << 27)
171e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_XTAL_FREQ_COUNT(x) (((x) & 0xfff) << 0)
172e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLLU_POWERUP BIT(17)
173e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLLU_POWERDOWN BIT(16)
174e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERUP BIT(15)
175e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERDOWN BIT(14)
176e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLL_ACTIVE_POWERDOWN BIT(12)
177e745f992SPeter De Schrijver 
1783358d2d9SAndrew Bresticker #define SATA_PLL_CFG0				0x490
1793358d2d9SAndrew Bresticker #define SATA_PLL_CFG0_PADPLL_RESET_SWCTL	BIT(0)
1803358d2d9SAndrew Bresticker #define SATA_PLL_CFG0_PADPLL_USE_LOCKDET	BIT(2)
18159af78d7SPeter De Schrijver #define SATA_PLL_CFG0_SATA_SEQ_IN_SWCTL		BIT(4)
18259af78d7SPeter De Schrijver #define SATA_PLL_CFG0_SATA_SEQ_RESET_INPUT_VALUE	BIT(5)
18359af78d7SPeter De Schrijver #define SATA_PLL_CFG0_SATA_SEQ_LANE_PD_INPUT_VALUE	BIT(6)
18459af78d7SPeter De Schrijver #define SATA_PLL_CFG0_SATA_SEQ_PADPLL_PD_INPUT_VALUE	BIT(7)
18559af78d7SPeter De Schrijver 
1863358d2d9SAndrew Bresticker #define SATA_PLL_CFG0_PADPLL_SLEEP_IDDQ		BIT(13)
1873358d2d9SAndrew Bresticker #define SATA_PLL_CFG0_SEQ_ENABLE		BIT(24)
1883358d2d9SAndrew Bresticker 
1893358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0				0x51c
1903358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_PADPLL_RESET_SWCTL	BIT(0)
1913358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_CLK_ENABLE_SWCTL	BIT(2)
1923358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_PADPLL_USE_LOCKDET	BIT(6)
1933358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_PADPLL_SLEEP_IDDQ	BIT(13)
1943358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_SEQ_ENABLE		BIT(24)
1953358d2d9SAndrew Bresticker 
1966b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0			0x52c
1976b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_UTMIPLL_LOCK	BIT(31)
1986b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_SEQ_START_STATE	BIT(25)
1996b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_SEQ_ENABLE	BIT(24)
2006b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_IDDQ_PD_INCLUDE	BIT(7)
2016b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_USE_LOCKDET	BIT(6)
2026b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_SEQ_RESET_INPUT_VALUE	BIT(5)
2036b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_SEQ_IN_SWCTL	BIT(4)
2046b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_CLK_ENABLE_SWCTL	BIT(2)
2056b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_IDDQ_OVERRIDE	BIT(1)
2066b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_IDDQ_SWCTL	BIT(0)
2076b301a05SRhyland Klein 
2086b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0			0x530
2096b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_IDDQ_PD_INCLUDE	BIT(28)
2106b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_SEQ_ENABLE		BIT(24)
2116b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_USE_SWITCH_DETECT	BIT(7)
2126b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_USE_LOCKDET		BIT(6)
2136b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_CLK_ENABLE_SWCTL	BIT(2)
2146b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_CLK_SWITCH_SWCTL	BIT(0)
2156b301a05SRhyland Klein 
2166b301a05SRhyland Klein #define XUSB_PLL_CFG0				0x534
2176b301a05SRhyland Klein #define XUSB_PLL_CFG0_UTMIPLL_LOCK_DLY		0x3ff
2186b301a05SRhyland Klein #define XUSB_PLL_CFG0_PLLU_LOCK_DLY_MASK	(0x3ff << 14)
2196b301a05SRhyland Klein 
2206b301a05SRhyland Klein #define SPARE_REG0 0x55c
2216b301a05SRhyland Klein #define CLK_M_DIVISOR_SHIFT 2
2226b301a05SRhyland Klein #define CLK_M_DIVISOR_MASK 0x3
2236b301a05SRhyland Klein 
224535f296dSSowjanya Komatineni #define CLK_MASK_ARM	0x44
225535f296dSSowjanya Komatineni #define MISC_CLK_ENB	0x48
226535f296dSSowjanya Komatineni 
22768d724ceSPeter De Schrijver #define RST_DFLL_DVCO 0x2f4
22868d724ceSPeter De Schrijver #define DVFS_DFLL_RESET_SHIFT 0
22968d724ceSPeter De Schrijver 
23068d724ceSPeter De Schrijver #define CLK_RST_CONTROLLER_RST_DEV_Y_SET 0x2a8
23168d724ceSPeter De Schrijver #define CLK_RST_CONTROLLER_RST_DEV_Y_CLR 0x2ac
232535f296dSSowjanya Komatineni #define CPU_SOFTRST_CTRL 0x380
23368d724ceSPeter De Schrijver 
234e403d005SPeter De Schrijver #define LVL2_CLK_GATE_OVRA 0xf8
235e403d005SPeter De Schrijver #define LVL2_CLK_GATE_OVRC 0x3a0
236e403d005SPeter De Schrijver #define LVL2_CLK_GATE_OVRD 0x3a4
237e403d005SPeter De Schrijver #define LVL2_CLK_GATE_OVRE 0x554
238e403d005SPeter De Schrijver 
239e403d005SPeter De Schrijver /* I2S registers to handle during APE MBIST WAR */
240e403d005SPeter De Schrijver #define TEGRA210_I2S_BASE  0x1000
241e403d005SPeter De Schrijver #define TEGRA210_I2S_SIZE  0x100
242e403d005SPeter De Schrijver #define TEGRA210_I2S_CTRLS 5
243e403d005SPeter De Schrijver #define TEGRA210_I2S_CG    0x88
244e403d005SPeter De Schrijver #define TEGRA210_I2S_CTRL  0xa0
245e403d005SPeter De Schrijver 
246e403d005SPeter De Schrijver /* DISPA registers to handle during MBIST WAR */
247e403d005SPeter De Schrijver #define DC_CMD_DISPLAY_COMMAND 0xc8
248e403d005SPeter De Schrijver #define DC_COM_DSC_TOP_CTL 0xcf8
249e403d005SPeter De Schrijver 
250e403d005SPeter De Schrijver /* VIC register to handle during MBIST WAR */
251e403d005SPeter De Schrijver #define NV_PVIC_THI_SLCG_OVERRIDE_LOW 0x8c
252e403d005SPeter De Schrijver 
253e403d005SPeter De Schrijver /* APE, DISPA and VIC base addesses needed for MBIST WAR */
254e403d005SPeter De Schrijver #define TEGRA210_AHUB_BASE  0x702d0000
255e403d005SPeter De Schrijver #define TEGRA210_DISPA_BASE 0x54200000
256e403d005SPeter De Schrijver #define TEGRA210_VIC_BASE  0x54340000
257e403d005SPeter De Schrijver 
2586b301a05SRhyland Klein /*
2596b301a05SRhyland Klein  * SDM fractional divisor is 16-bit 2's complement signed number within
2606b301a05SRhyland Klein  * (-2^12 ... 2^12-1) range. Represented in PLL data structure as unsigned
2616b301a05SRhyland Klein  * 16-bit value, with "0" divisor mapped to 0xFFFF. Data "0" is used to
2626b301a05SRhyland Klein  * indicate that SDM is disabled.
2636b301a05SRhyland Klein  *
2646b301a05SRhyland Klein  * Effective ndiv value when SDM is enabled: ndiv + 1/2 + sdm_din/2^13
2656b301a05SRhyland Klein  */
2666b301a05SRhyland Klein #define PLL_SDM_COEFF BIT(13)
2676b301a05SRhyland Klein #define sdin_din_to_data(din)	((u16)((din) ? : 0xFFFFU))
2686b301a05SRhyland Klein #define sdin_data_to_din(dat)	(((dat) == 0xFFFFU) ? 0 : (s16)dat)
269a851ea2bSAlex Frid /* This macro returns ndiv effective scaled to SDM range */
270a851ea2bSAlex Frid #define sdin_get_n_eff(cfg)	((cfg)->n * PLL_SDM_COEFF + ((cfg)->sdm_data ? \
271a851ea2bSAlex Frid 		(PLL_SDM_COEFF/2 + sdin_data_to_din((cfg)->sdm_data)) : 0))
2726b301a05SRhyland Klein 
2736b301a05SRhyland Klein /* Tegra CPU clock and reset control regs */
2746b301a05SRhyland Klein #define CLK_RST_CONTROLLER_CPU_CMPLX_STATUS	0x470
2756b301a05SRhyland Klein 
2766b301a05SRhyland Klein #ifdef CONFIG_PM_SLEEP
2776b301a05SRhyland Klein static struct cpu_clk_suspend_context {
2786b301a05SRhyland Klein 	u32 clk_csite_src;
2796b301a05SRhyland Klein } tegra210_cpu_clk_sctx;
2806b301a05SRhyland Klein #endif
2816b301a05SRhyland Klein 
282e403d005SPeter De Schrijver struct tegra210_domain_mbist_war {
283e403d005SPeter De Schrijver 	void (*handle_lvl2_ovr)(struct tegra210_domain_mbist_war *mbist);
284e403d005SPeter De Schrijver 	const u32 lvl2_offset;
285e403d005SPeter De Schrijver 	const u32 lvl2_mask;
286e403d005SPeter De Schrijver 	const unsigned int num_clks;
287e403d005SPeter De Schrijver 	const unsigned int *clk_init_data;
288e403d005SPeter De Schrijver 	struct clk_bulk_data *clks;
289e403d005SPeter De Schrijver };
290e403d005SPeter De Schrijver 
291e403d005SPeter De Schrijver static struct clk **clks;
292e403d005SPeter De Schrijver 
2936b301a05SRhyland Klein static void __iomem *clk_base;
2946b301a05SRhyland Klein static void __iomem *pmc_base;
295e403d005SPeter De Schrijver static void __iomem *ahub_base;
296e403d005SPeter De Schrijver static void __iomem *dispa_base;
297e403d005SPeter De Schrijver static void __iomem *vic_base;
2986b301a05SRhyland Klein 
2996b301a05SRhyland Klein static unsigned long osc_freq;
3006b301a05SRhyland Klein static unsigned long pll_ref_freq;
3016b301a05SRhyland Klein 
3026b301a05SRhyland Klein static DEFINE_SPINLOCK(pll_d_lock);
3036b301a05SRhyland Klein static DEFINE_SPINLOCK(pll_e_lock);
3046b301a05SRhyland Klein static DEFINE_SPINLOCK(pll_re_lock);
3056b301a05SRhyland Klein static DEFINE_SPINLOCK(pll_u_lock);
30605308d7eSThierry Reding static DEFINE_SPINLOCK(sor0_lock);
307bc2e4d29SThierry Reding static DEFINE_SPINLOCK(sor1_lock);
3086b301a05SRhyland Klein static DEFINE_SPINLOCK(emc_lock);
309e403d005SPeter De Schrijver static DEFINE_MUTEX(lvl2_ovr_lock);
3106b301a05SRhyland Klein 
3116b301a05SRhyland Klein /* possible OSC frequencies in Hz */
3126b301a05SRhyland Klein static unsigned long tegra210_input_freq[] = {
3136b301a05SRhyland Klein 	[5] = 38400000,
3146b301a05SRhyland Klein 	[8] = 12000000,
3156b301a05SRhyland Klein };
3166b301a05SRhyland Klein 
3176b301a05SRhyland Klein static const char *mux_pllmcp_clkm[] = {
3184f8d4440SJon Hunter 	"pll_m", "pll_c", "pll_p", "clk_m", "pll_m_ud", "pll_mb", "pll_mb",
3194f8d4440SJon Hunter 	"pll_p",
3206b301a05SRhyland Klein };
3216b301a05SRhyland Klein #define mux_pllmcp_clkm_idx NULL
3226b301a05SRhyland Klein 
3236b301a05SRhyland Klein #define PLL_ENABLE			(1 << 30)
3246b301a05SRhyland Klein 
3256b301a05SRhyland Klein #define PLLCX_MISC1_IDDQ		(1 << 27)
3266b301a05SRhyland Klein #define PLLCX_MISC0_RESET		(1 << 30)
3276b301a05SRhyland Klein 
3286b301a05SRhyland Klein #define PLLCX_MISC0_DEFAULT_VALUE	0x40080000
3296b301a05SRhyland Klein #define PLLCX_MISC0_WRITE_MASK		0x400ffffb
3306b301a05SRhyland Klein #define PLLCX_MISC1_DEFAULT_VALUE	0x08000000
3316b301a05SRhyland Klein #define PLLCX_MISC1_WRITE_MASK		0x08003cff
3326b301a05SRhyland Klein #define PLLCX_MISC2_DEFAULT_VALUE	0x1f720f05
3336b301a05SRhyland Klein #define PLLCX_MISC2_WRITE_MASK		0xffffff17
3346b301a05SRhyland Klein #define PLLCX_MISC3_DEFAULT_VALUE	0x000000c4
3356b301a05SRhyland Klein #define PLLCX_MISC3_WRITE_MASK		0x00ffffff
3366b301a05SRhyland Klein 
3376b301a05SRhyland Klein /* PLLA */
3386b301a05SRhyland Klein #define PLLA_BASE_IDDQ			(1 << 25)
3396b301a05SRhyland Klein #define PLLA_BASE_LOCK			(1 << 27)
3406b301a05SRhyland Klein 
3416b301a05SRhyland Klein #define PLLA_MISC0_LOCK_ENABLE		(1 << 28)
3426b301a05SRhyland Klein #define PLLA_MISC0_LOCK_OVERRIDE	(1 << 27)
3436b301a05SRhyland Klein 
3446b301a05SRhyland Klein #define PLLA_MISC2_EN_SDM		(1 << 26)
3456b301a05SRhyland Klein #define PLLA_MISC2_EN_DYNRAMP		(1 << 25)
3466b301a05SRhyland Klein 
3476b301a05SRhyland Klein #define PLLA_MISC0_DEFAULT_VALUE	0x12000020
3486b301a05SRhyland Klein #define PLLA_MISC0_WRITE_MASK		0x7fffffff
3496b301a05SRhyland Klein #define PLLA_MISC2_DEFAULT_VALUE	0x0
3506b301a05SRhyland Klein #define PLLA_MISC2_WRITE_MASK		0x06ffffff
3516b301a05SRhyland Klein 
3526b301a05SRhyland Klein /* PLLD */
353e403d005SPeter De Schrijver #define PLLD_BASE_CSI_CLKSOURCE		(1 << 23)
354e403d005SPeter De Schrijver 
3556b301a05SRhyland Klein #define PLLD_MISC0_EN_SDM		(1 << 16)
3566b301a05SRhyland Klein #define PLLD_MISC0_LOCK_OVERRIDE	(1 << 17)
3576b301a05SRhyland Klein #define PLLD_MISC0_LOCK_ENABLE		(1 << 18)
3586b301a05SRhyland Klein #define PLLD_MISC0_IDDQ			(1 << 20)
3596b301a05SRhyland Klein #define PLLD_MISC0_DSI_CLKENABLE	(1 << 21)
3606b301a05SRhyland Klein 
3616b301a05SRhyland Klein #define PLLD_MISC0_DEFAULT_VALUE	0x00140000
3626b301a05SRhyland Klein #define PLLD_MISC0_WRITE_MASK		0x3ff7ffff
3636b301a05SRhyland Klein #define PLLD_MISC1_DEFAULT_VALUE	0x20
3646b301a05SRhyland Klein #define PLLD_MISC1_WRITE_MASK		0x00ffffff
3656b301a05SRhyland Klein 
3666b301a05SRhyland Klein /* PLLD2 and PLLDP  and PLLC4 */
3676b301a05SRhyland Klein #define PLLDSS_BASE_LOCK		(1 << 27)
3686b301a05SRhyland Klein #define PLLDSS_BASE_LOCK_OVERRIDE	(1 << 24)
3696b301a05SRhyland Klein #define PLLDSS_BASE_IDDQ		(1 << 18)
3706b301a05SRhyland Klein #define PLLDSS_BASE_REF_SEL_SHIFT	25
3716b301a05SRhyland Klein #define PLLDSS_BASE_REF_SEL_MASK	(0x3 << PLLDSS_BASE_REF_SEL_SHIFT)
3726b301a05SRhyland Klein 
3736b301a05SRhyland Klein #define PLLDSS_MISC0_LOCK_ENABLE	(1 << 30)
3746b301a05SRhyland Klein 
3756b301a05SRhyland Klein #define PLLDSS_MISC1_CFG_EN_SDM		(1 << 31)
3766b301a05SRhyland Klein #define PLLDSS_MISC1_CFG_EN_SSC		(1 << 30)
3776b301a05SRhyland Klein 
3786b301a05SRhyland Klein #define PLLD2_MISC0_DEFAULT_VALUE	0x40000020
3796b301a05SRhyland Klein #define PLLD2_MISC1_CFG_DEFAULT_VALUE	0x10000000
3806b301a05SRhyland Klein #define PLLD2_MISC2_CTRL1_DEFAULT_VALUE	0x0
3816b301a05SRhyland Klein #define PLLD2_MISC3_CTRL2_DEFAULT_VALUE	0x0
3826b301a05SRhyland Klein 
3836b301a05SRhyland Klein #define PLLDP_MISC0_DEFAULT_VALUE	0x40000020
3846b301a05SRhyland Klein #define PLLDP_MISC1_CFG_DEFAULT_VALUE	0xc0000000
3856b301a05SRhyland Klein #define PLLDP_MISC2_CTRL1_DEFAULT_VALUE	0xf400f0da
3866b301a05SRhyland Klein #define PLLDP_MISC3_CTRL2_DEFAULT_VALUE	0x2004f400
3876b301a05SRhyland Klein 
3886b301a05SRhyland Klein #define PLLDSS_MISC0_WRITE_MASK		0x47ffffff
3896b301a05SRhyland Klein #define PLLDSS_MISC1_CFG_WRITE_MASK	0xf8000000
3906b301a05SRhyland Klein #define PLLDSS_MISC2_CTRL1_WRITE_MASK	0xffffffff
3916b301a05SRhyland Klein #define PLLDSS_MISC3_CTRL2_WRITE_MASK	0xffffffff
3926b301a05SRhyland Klein 
3936b301a05SRhyland Klein #define PLLC4_MISC0_DEFAULT_VALUE	0x40000000
3946b301a05SRhyland Klein 
3956b301a05SRhyland Klein /* PLLRE */
3966b301a05SRhyland Klein #define PLLRE_MISC0_LOCK_ENABLE		(1 << 30)
3976b301a05SRhyland Klein #define PLLRE_MISC0_LOCK_OVERRIDE	(1 << 29)
3986b301a05SRhyland Klein #define PLLRE_MISC0_LOCK		(1 << 27)
3996b301a05SRhyland Klein #define PLLRE_MISC0_IDDQ		(1 << 24)
4006b301a05SRhyland Klein 
4016b301a05SRhyland Klein #define PLLRE_BASE_DEFAULT_VALUE	0x0
4026b301a05SRhyland Klein #define PLLRE_MISC0_DEFAULT_VALUE	0x41000000
4036b301a05SRhyland Klein 
4046b301a05SRhyland Klein #define PLLRE_BASE_DEFAULT_MASK		0x1c000000
4056b301a05SRhyland Klein #define PLLRE_MISC0_WRITE_MASK		0x67ffffff
4066b301a05SRhyland Klein 
4076b301a05SRhyland Klein /* PLLX */
4086b301a05SRhyland Klein #define PLLX_USE_DYN_RAMP		1
4096b301a05SRhyland Klein #define PLLX_BASE_LOCK			(1 << 27)
4106b301a05SRhyland Klein 
4116b301a05SRhyland Klein #define PLLX_MISC0_FO_G_DISABLE		(0x1 << 28)
4126b301a05SRhyland Klein #define PLLX_MISC0_LOCK_ENABLE		(0x1 << 18)
4136b301a05SRhyland Klein 
4146b301a05SRhyland Klein #define PLLX_MISC2_DYNRAMP_STEPB_SHIFT	24
4156b301a05SRhyland Klein #define PLLX_MISC2_DYNRAMP_STEPB_MASK	(0xFF << PLLX_MISC2_DYNRAMP_STEPB_SHIFT)
4166b301a05SRhyland Klein #define PLLX_MISC2_DYNRAMP_STEPA_SHIFT	16
4176b301a05SRhyland Klein #define PLLX_MISC2_DYNRAMP_STEPA_MASK	(0xFF << PLLX_MISC2_DYNRAMP_STEPA_SHIFT)
4186b301a05SRhyland Klein #define PLLX_MISC2_NDIV_NEW_SHIFT	8
4196b301a05SRhyland Klein #define PLLX_MISC2_NDIV_NEW_MASK	(0xFF << PLLX_MISC2_NDIV_NEW_SHIFT)
4206b301a05SRhyland Klein #define PLLX_MISC2_LOCK_OVERRIDE	(0x1 << 4)
4216b301a05SRhyland Klein #define PLLX_MISC2_DYNRAMP_DONE		(0x1 << 2)
4226b301a05SRhyland Klein #define PLLX_MISC2_EN_DYNRAMP		(0x1 << 0)
4236b301a05SRhyland Klein 
4246b301a05SRhyland Klein #define PLLX_MISC3_IDDQ			(0x1 << 3)
4256b301a05SRhyland Klein 
4266b301a05SRhyland Klein #define PLLX_MISC0_DEFAULT_VALUE	PLLX_MISC0_LOCK_ENABLE
4276b301a05SRhyland Klein #define PLLX_MISC0_WRITE_MASK		0x10c40000
4286b301a05SRhyland Klein #define PLLX_MISC1_DEFAULT_VALUE	0x20
4296b301a05SRhyland Klein #define PLLX_MISC1_WRITE_MASK		0x00ffffff
4306b301a05SRhyland Klein #define PLLX_MISC2_DEFAULT_VALUE	0x0
4316b301a05SRhyland Klein #define PLLX_MISC2_WRITE_MASK		0xffffff11
4326b301a05SRhyland Klein #define PLLX_MISC3_DEFAULT_VALUE	PLLX_MISC3_IDDQ
4336b301a05SRhyland Klein #define PLLX_MISC3_WRITE_MASK		0x01ff0f0f
4346b301a05SRhyland Klein #define PLLX_MISC4_DEFAULT_VALUE	0x0
4356b301a05SRhyland Klein #define PLLX_MISC4_WRITE_MASK		0x8000ffff
4366b301a05SRhyland Klein #define PLLX_MISC5_DEFAULT_VALUE	0x0
4376b301a05SRhyland Klein #define PLLX_MISC5_WRITE_MASK		0x0000ffff
4386b301a05SRhyland Klein 
4396b301a05SRhyland Klein #define PLLX_HW_CTRL_CFG		0x548
4406b301a05SRhyland Klein #define PLLX_HW_CTRL_CFG_SWCTRL		(0x1 << 0)
4416b301a05SRhyland Klein 
4426b301a05SRhyland Klein /* PLLMB */
4436b301a05SRhyland Klein #define PLLMB_BASE_LOCK			(1 << 27)
4446b301a05SRhyland Klein 
445474f2ba2SRhyland Klein #define PLLMB_MISC1_LOCK_OVERRIDE	(1 << 18)
446474f2ba2SRhyland Klein #define PLLMB_MISC1_IDDQ		(1 << 17)
447474f2ba2SRhyland Klein #define PLLMB_MISC1_LOCK_ENABLE		(1 << 16)
4486b301a05SRhyland Klein 
449474f2ba2SRhyland Klein #define PLLMB_MISC1_DEFAULT_VALUE	0x00030000
450474f2ba2SRhyland Klein #define PLLMB_MISC1_WRITE_MASK		0x0007ffff
4516b301a05SRhyland Klein 
4526b301a05SRhyland Klein /* PLLP */
4536b301a05SRhyland Klein #define PLLP_BASE_OVERRIDE		(1 << 28)
4546b301a05SRhyland Klein #define PLLP_BASE_LOCK			(1 << 27)
4556b301a05SRhyland Klein 
4566b301a05SRhyland Klein #define PLLP_MISC0_LOCK_ENABLE		(1 << 18)
4576b301a05SRhyland Klein #define PLLP_MISC0_LOCK_OVERRIDE	(1 << 17)
4586b301a05SRhyland Klein #define PLLP_MISC0_IDDQ			(1 << 3)
4596b301a05SRhyland Klein 
4606b301a05SRhyland Klein #define PLLP_MISC1_HSIO_EN_SHIFT	29
4616b301a05SRhyland Klein #define PLLP_MISC1_HSIO_EN		(1 << PLLP_MISC1_HSIO_EN_SHIFT)
4626b301a05SRhyland Klein #define PLLP_MISC1_XUSB_EN_SHIFT	28
4636b301a05SRhyland Klein #define PLLP_MISC1_XUSB_EN		(1 << PLLP_MISC1_XUSB_EN_SHIFT)
4646b301a05SRhyland Klein 
4656b301a05SRhyland Klein #define PLLP_MISC0_DEFAULT_VALUE	0x00040008
4666b301a05SRhyland Klein #define PLLP_MISC1_DEFAULT_VALUE	0x0
4676b301a05SRhyland Klein 
4686b301a05SRhyland Klein #define PLLP_MISC0_WRITE_MASK		0xdc6000f
4696b301a05SRhyland Klein #define PLLP_MISC1_WRITE_MASK		0x70ffffff
4706b301a05SRhyland Klein 
4716b301a05SRhyland Klein /* PLLU */
4726b301a05SRhyland Klein #define PLLU_BASE_LOCK			(1 << 27)
4736b301a05SRhyland Klein #define PLLU_BASE_OVERRIDE		(1 << 24)
4746b301a05SRhyland Klein #define PLLU_BASE_CLKENABLE_USB		(1 << 21)
4756b301a05SRhyland Klein #define PLLU_BASE_CLKENABLE_HSIC	(1 << 22)
4766b301a05SRhyland Klein #define PLLU_BASE_CLKENABLE_ICUSB	(1 << 23)
4776b301a05SRhyland Klein #define PLLU_BASE_CLKENABLE_48M		(1 << 25)
4786b301a05SRhyland Klein #define PLLU_BASE_CLKENABLE_ALL		(PLLU_BASE_CLKENABLE_USB |\
4796b301a05SRhyland Klein 					 PLLU_BASE_CLKENABLE_HSIC |\
4806b301a05SRhyland Klein 					 PLLU_BASE_CLKENABLE_ICUSB |\
4816b301a05SRhyland Klein 					 PLLU_BASE_CLKENABLE_48M)
4826b301a05SRhyland Klein 
4836b301a05SRhyland Klein #define PLLU_MISC0_IDDQ			(1 << 31)
4846b301a05SRhyland Klein #define PLLU_MISC0_LOCK_ENABLE		(1 << 29)
4856b301a05SRhyland Klein #define PLLU_MISC1_LOCK_OVERRIDE	(1 << 0)
4866b301a05SRhyland Klein 
4876b301a05SRhyland Klein #define PLLU_MISC0_DEFAULT_VALUE	0xa0000000
4886b301a05SRhyland Klein #define PLLU_MISC1_DEFAULT_VALUE	0x0
4896b301a05SRhyland Klein 
4906b301a05SRhyland Klein #define PLLU_MISC0_WRITE_MASK		0xbfffffff
4916b301a05SRhyland Klein #define PLLU_MISC1_WRITE_MASK		0x00000007
4926b301a05SRhyland Klein 
4933358d2d9SAndrew Bresticker void tegra210_xusb_pll_hw_control_enable(void)
4943358d2d9SAndrew Bresticker {
4953358d2d9SAndrew Bresticker 	u32 val;
4963358d2d9SAndrew Bresticker 
4973358d2d9SAndrew Bresticker 	val = readl_relaxed(clk_base + XUSBIO_PLL_CFG0);
4983358d2d9SAndrew Bresticker 	val &= ~(XUSBIO_PLL_CFG0_CLK_ENABLE_SWCTL |
4993358d2d9SAndrew Bresticker 		 XUSBIO_PLL_CFG0_PADPLL_RESET_SWCTL);
5003358d2d9SAndrew Bresticker 	val |= XUSBIO_PLL_CFG0_PADPLL_USE_LOCKDET |
5013358d2d9SAndrew Bresticker 	       XUSBIO_PLL_CFG0_PADPLL_SLEEP_IDDQ;
5023358d2d9SAndrew Bresticker 	writel_relaxed(val, clk_base + XUSBIO_PLL_CFG0);
5033358d2d9SAndrew Bresticker }
5043358d2d9SAndrew Bresticker EXPORT_SYMBOL_GPL(tegra210_xusb_pll_hw_control_enable);
5053358d2d9SAndrew Bresticker 
5063358d2d9SAndrew Bresticker void tegra210_xusb_pll_hw_sequence_start(void)
5073358d2d9SAndrew Bresticker {
5083358d2d9SAndrew Bresticker 	u32 val;
5093358d2d9SAndrew Bresticker 
5103358d2d9SAndrew Bresticker 	val = readl_relaxed(clk_base + XUSBIO_PLL_CFG0);
5113358d2d9SAndrew Bresticker 	val |= XUSBIO_PLL_CFG0_SEQ_ENABLE;
5123358d2d9SAndrew Bresticker 	writel_relaxed(val, clk_base + XUSBIO_PLL_CFG0);
5133358d2d9SAndrew Bresticker }
5143358d2d9SAndrew Bresticker EXPORT_SYMBOL_GPL(tegra210_xusb_pll_hw_sequence_start);
5153358d2d9SAndrew Bresticker 
5163358d2d9SAndrew Bresticker void tegra210_sata_pll_hw_control_enable(void)
5173358d2d9SAndrew Bresticker {
5183358d2d9SAndrew Bresticker 	u32 val;
5193358d2d9SAndrew Bresticker 
5203358d2d9SAndrew Bresticker 	val = readl_relaxed(clk_base + SATA_PLL_CFG0);
5213358d2d9SAndrew Bresticker 	val &= ~SATA_PLL_CFG0_PADPLL_RESET_SWCTL;
5223358d2d9SAndrew Bresticker 	val |= SATA_PLL_CFG0_PADPLL_USE_LOCKDET |
5233358d2d9SAndrew Bresticker 	       SATA_PLL_CFG0_PADPLL_SLEEP_IDDQ;
5243358d2d9SAndrew Bresticker 	writel_relaxed(val, clk_base + SATA_PLL_CFG0);
5253358d2d9SAndrew Bresticker }
5263358d2d9SAndrew Bresticker EXPORT_SYMBOL_GPL(tegra210_sata_pll_hw_control_enable);
5273358d2d9SAndrew Bresticker 
5283358d2d9SAndrew Bresticker void tegra210_sata_pll_hw_sequence_start(void)
5293358d2d9SAndrew Bresticker {
5303358d2d9SAndrew Bresticker 	u32 val;
5313358d2d9SAndrew Bresticker 
5323358d2d9SAndrew Bresticker 	val = readl_relaxed(clk_base + SATA_PLL_CFG0);
5333358d2d9SAndrew Bresticker 	val |= SATA_PLL_CFG0_SEQ_ENABLE;
5343358d2d9SAndrew Bresticker 	writel_relaxed(val, clk_base + SATA_PLL_CFG0);
5353358d2d9SAndrew Bresticker }
5363358d2d9SAndrew Bresticker EXPORT_SYMBOL_GPL(tegra210_sata_pll_hw_sequence_start);
5373358d2d9SAndrew Bresticker 
53859af78d7SPeter De Schrijver void tegra210_set_sata_pll_seq_sw(bool state)
53959af78d7SPeter De Schrijver {
54059af78d7SPeter De Schrijver 	u32 val;
54159af78d7SPeter De Schrijver 
54259af78d7SPeter De Schrijver 	val = readl_relaxed(clk_base + SATA_PLL_CFG0);
54359af78d7SPeter De Schrijver 	if (state) {
54459af78d7SPeter De Schrijver 		val |= SATA_PLL_CFG0_SATA_SEQ_IN_SWCTL;
54559af78d7SPeter De Schrijver 		val |= SATA_PLL_CFG0_SATA_SEQ_RESET_INPUT_VALUE;
54659af78d7SPeter De Schrijver 		val |= SATA_PLL_CFG0_SATA_SEQ_LANE_PD_INPUT_VALUE;
54759af78d7SPeter De Schrijver 		val |= SATA_PLL_CFG0_SATA_SEQ_PADPLL_PD_INPUT_VALUE;
54859af78d7SPeter De Schrijver 	} else {
54959af78d7SPeter De Schrijver 		val &= ~SATA_PLL_CFG0_SATA_SEQ_IN_SWCTL;
55059af78d7SPeter De Schrijver 		val &= ~SATA_PLL_CFG0_SATA_SEQ_RESET_INPUT_VALUE;
55159af78d7SPeter De Schrijver 		val &= ~SATA_PLL_CFG0_SATA_SEQ_LANE_PD_INPUT_VALUE;
55259af78d7SPeter De Schrijver 		val &= ~SATA_PLL_CFG0_SATA_SEQ_PADPLL_PD_INPUT_VALUE;
55359af78d7SPeter De Schrijver 	}
55459af78d7SPeter De Schrijver 	writel_relaxed(val, clk_base + SATA_PLL_CFG0);
55559af78d7SPeter De Schrijver }
55659af78d7SPeter De Schrijver EXPORT_SYMBOL_GPL(tegra210_set_sata_pll_seq_sw);
55759af78d7SPeter De Schrijver 
558e403d005SPeter De Schrijver static void tegra210_generic_mbist_war(struct tegra210_domain_mbist_war *mbist)
559e403d005SPeter De Schrijver {
560e403d005SPeter De Schrijver 	u32 val;
561e403d005SPeter De Schrijver 
562e403d005SPeter De Schrijver 	val = readl_relaxed(clk_base + mbist->lvl2_offset);
563e403d005SPeter De Schrijver 	writel_relaxed(val | mbist->lvl2_mask, clk_base + mbist->lvl2_offset);
564e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
565e403d005SPeter De Schrijver 	writel_relaxed(val, clk_base + mbist->lvl2_offset);
566e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
567e403d005SPeter De Schrijver }
568e403d005SPeter De Schrijver 
569e403d005SPeter De Schrijver static void tegra210_venc_mbist_war(struct tegra210_domain_mbist_war *mbist)
570e403d005SPeter De Schrijver {
571e403d005SPeter De Schrijver 	u32 csi_src, ovra, ovre;
572e403d005SPeter De Schrijver 	unsigned long flags = 0;
573e403d005SPeter De Schrijver 
574e403d005SPeter De Schrijver 	spin_lock_irqsave(&pll_d_lock, flags);
575e403d005SPeter De Schrijver 
576e403d005SPeter De Schrijver 	csi_src = readl_relaxed(clk_base + PLLD_BASE);
577e403d005SPeter De Schrijver 	writel_relaxed(csi_src | PLLD_BASE_CSI_CLKSOURCE, clk_base + PLLD_BASE);
578e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
579e403d005SPeter De Schrijver 
580e403d005SPeter De Schrijver 	ovra = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRA);
581e403d005SPeter De Schrijver 	writel_relaxed(ovra | BIT(15), clk_base + LVL2_CLK_GATE_OVRA);
582e403d005SPeter De Schrijver 	ovre = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRE);
583e403d005SPeter De Schrijver 	writel_relaxed(ovre | BIT(3), clk_base + LVL2_CLK_GATE_OVRE);
584e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
585e403d005SPeter De Schrijver 
586e403d005SPeter De Schrijver 	writel_relaxed(ovra, clk_base + LVL2_CLK_GATE_OVRA);
587e403d005SPeter De Schrijver 	writel_relaxed(ovre, clk_base + LVL2_CLK_GATE_OVRE);
588e403d005SPeter De Schrijver 	writel_relaxed(csi_src, clk_base + PLLD_BASE);
589e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
590e403d005SPeter De Schrijver 
591e403d005SPeter De Schrijver 	spin_unlock_irqrestore(&pll_d_lock, flags);
592e403d005SPeter De Schrijver }
593e403d005SPeter De Schrijver 
594e403d005SPeter De Schrijver static void tegra210_disp_mbist_war(struct tegra210_domain_mbist_war *mbist)
595e403d005SPeter De Schrijver {
596e403d005SPeter De Schrijver 	u32 ovra, dsc_top_ctrl;
597e403d005SPeter De Schrijver 
598e403d005SPeter De Schrijver 	ovra = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRA);
599e403d005SPeter De Schrijver 	writel_relaxed(ovra | BIT(1), clk_base + LVL2_CLK_GATE_OVRA);
600e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
601e403d005SPeter De Schrijver 
602e403d005SPeter De Schrijver 	dsc_top_ctrl = readl_relaxed(dispa_base + DC_COM_DSC_TOP_CTL);
603e403d005SPeter De Schrijver 	writel_relaxed(dsc_top_ctrl | BIT(2), dispa_base + DC_COM_DSC_TOP_CTL);
604e403d005SPeter De Schrijver 	readl_relaxed(dispa_base + DC_CMD_DISPLAY_COMMAND);
605e403d005SPeter De Schrijver 	writel_relaxed(dsc_top_ctrl, dispa_base + DC_COM_DSC_TOP_CTL);
606e403d005SPeter De Schrijver 	readl_relaxed(dispa_base + DC_CMD_DISPLAY_COMMAND);
607e403d005SPeter De Schrijver 
608e403d005SPeter De Schrijver 	writel_relaxed(ovra, clk_base + LVL2_CLK_GATE_OVRA);
609e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
610e403d005SPeter De Schrijver }
611e403d005SPeter De Schrijver 
612e403d005SPeter De Schrijver static void tegra210_vic_mbist_war(struct tegra210_domain_mbist_war *mbist)
613e403d005SPeter De Schrijver {
614e403d005SPeter De Schrijver 	u32 ovre, val;
615e403d005SPeter De Schrijver 
616e403d005SPeter De Schrijver 	ovre = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRE);
617e403d005SPeter De Schrijver 	writel_relaxed(ovre | BIT(5), clk_base + LVL2_CLK_GATE_OVRE);
618e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
619e403d005SPeter De Schrijver 
620e403d005SPeter De Schrijver 	val = readl_relaxed(vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW);
621e403d005SPeter De Schrijver 	writel_relaxed(val | BIT(0) | GENMASK(7, 2) | BIT(24),
622e403d005SPeter De Schrijver 			vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW);
623e403d005SPeter De Schrijver 	fence_udelay(1, vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW);
624e403d005SPeter De Schrijver 
625e403d005SPeter De Schrijver 	writel_relaxed(val, vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW);
626e403d005SPeter De Schrijver 	readl(vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW);
627e403d005SPeter De Schrijver 
628e403d005SPeter De Schrijver 	writel_relaxed(ovre, clk_base + LVL2_CLK_GATE_OVRE);
629e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
630e403d005SPeter De Schrijver }
631e403d005SPeter De Schrijver 
632e403d005SPeter De Schrijver static void tegra210_ape_mbist_war(struct tegra210_domain_mbist_war *mbist)
633e403d005SPeter De Schrijver {
634e403d005SPeter De Schrijver 	void __iomem *i2s_base;
635e403d005SPeter De Schrijver 	unsigned int i;
636e403d005SPeter De Schrijver 	u32 ovrc, ovre;
637e403d005SPeter De Schrijver 
638e403d005SPeter De Schrijver 	ovrc = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRC);
639e403d005SPeter De Schrijver 	ovre = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRE);
640e403d005SPeter De Schrijver 	writel_relaxed(ovrc | BIT(1), clk_base + LVL2_CLK_GATE_OVRC);
641e403d005SPeter De Schrijver 	writel_relaxed(ovre | BIT(10) | BIT(11),
642e403d005SPeter De Schrijver 			clk_base + LVL2_CLK_GATE_OVRE);
643e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
644e403d005SPeter De Schrijver 
645e403d005SPeter De Schrijver 	i2s_base = ahub_base + TEGRA210_I2S_BASE;
646e403d005SPeter De Schrijver 
647e403d005SPeter De Schrijver 	for (i = 0; i < TEGRA210_I2S_CTRLS; i++) {
648e403d005SPeter De Schrijver 		u32 i2s_ctrl;
649e403d005SPeter De Schrijver 
650e403d005SPeter De Schrijver 		i2s_ctrl = readl_relaxed(i2s_base + TEGRA210_I2S_CTRL);
651e403d005SPeter De Schrijver 		writel_relaxed(i2s_ctrl | BIT(10),
652e403d005SPeter De Schrijver 				i2s_base + TEGRA210_I2S_CTRL);
653e403d005SPeter De Schrijver 		writel_relaxed(0, i2s_base + TEGRA210_I2S_CG);
654e403d005SPeter De Schrijver 		readl(i2s_base + TEGRA210_I2S_CG);
655e403d005SPeter De Schrijver 		writel_relaxed(1, i2s_base + TEGRA210_I2S_CG);
656e403d005SPeter De Schrijver 		writel_relaxed(i2s_ctrl, i2s_base + TEGRA210_I2S_CTRL);
657e403d005SPeter De Schrijver 		readl(i2s_base + TEGRA210_I2S_CTRL);
658e403d005SPeter De Schrijver 
659e403d005SPeter De Schrijver 		i2s_base += TEGRA210_I2S_SIZE;
660e403d005SPeter De Schrijver 	}
661e403d005SPeter De Schrijver 
662e403d005SPeter De Schrijver 	writel_relaxed(ovrc, clk_base + LVL2_CLK_GATE_OVRC);
663e403d005SPeter De Schrijver 	writel_relaxed(ovre, clk_base + LVL2_CLK_GATE_OVRE);
664e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
665e403d005SPeter De Schrijver }
666e403d005SPeter De Schrijver 
6676b301a05SRhyland Klein static inline void _pll_misc_chk_default(void __iomem *base,
6686b301a05SRhyland Klein 					struct tegra_clk_pll_params *params,
6696b301a05SRhyland Klein 					u8 misc_num, u32 default_val, u32 mask)
6706b301a05SRhyland Klein {
6716b301a05SRhyland Klein 	u32 boot_val = readl_relaxed(base + params->ext_misc_reg[misc_num]);
6726b301a05SRhyland Klein 
6736b301a05SRhyland Klein 	boot_val &= mask;
6746b301a05SRhyland Klein 	default_val &= mask;
6756b301a05SRhyland Klein 	if (boot_val != default_val) {
6766b301a05SRhyland Klein 		pr_warn("boot misc%d 0x%x: expected 0x%x\n",
6776b301a05SRhyland Klein 			misc_num, boot_val, default_val);
6786b301a05SRhyland Klein 		pr_warn(" (comparison mask = 0x%x)\n", mask);
6796b301a05SRhyland Klein 		params->defaults_set = false;
6806b301a05SRhyland Klein 	}
6816b301a05SRhyland Klein }
6826b301a05SRhyland Klein 
6836b301a05SRhyland Klein /*
6846b301a05SRhyland Klein  * PLLCX: PLLC, PLLC2, PLLC3, PLLA1
6856b301a05SRhyland Klein  * Hybrid PLLs with dynamic ramp. Dynamic ramp is allowed for any transition
6866b301a05SRhyland Klein  * that changes NDIV only, while PLL is already locked.
6876b301a05SRhyland Klein  */
6886b301a05SRhyland Klein static void pllcx_check_defaults(struct tegra_clk_pll_params *params)
6896b301a05SRhyland Klein {
6906b301a05SRhyland Klein 	u32 default_val;
6916b301a05SRhyland Klein 
6926b301a05SRhyland Klein 	default_val = PLLCX_MISC0_DEFAULT_VALUE & (~PLLCX_MISC0_RESET);
6936b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, params, 0, default_val,
6946b301a05SRhyland Klein 			PLLCX_MISC0_WRITE_MASK);
6956b301a05SRhyland Klein 
6966b301a05SRhyland Klein 	default_val = PLLCX_MISC1_DEFAULT_VALUE & (~PLLCX_MISC1_IDDQ);
6976b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, params, 1, default_val,
6986b301a05SRhyland Klein 			PLLCX_MISC1_WRITE_MASK);
6996b301a05SRhyland Klein 
7006b301a05SRhyland Klein 	default_val = PLLCX_MISC2_DEFAULT_VALUE;
7016b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, params, 2, default_val,
7026b301a05SRhyland Klein 			PLLCX_MISC2_WRITE_MASK);
7036b301a05SRhyland Klein 
7046b301a05SRhyland Klein 	default_val = PLLCX_MISC3_DEFAULT_VALUE;
7056b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, params, 3, default_val,
7066b301a05SRhyland Klein 			PLLCX_MISC3_WRITE_MASK);
7076b301a05SRhyland Klein }
7086b301a05SRhyland Klein 
709fd360e20SJon Hunter static void tegra210_pllcx_set_defaults(const char *name,
710fd360e20SJon Hunter 					struct tegra_clk_pll *pllcx)
7116b301a05SRhyland Klein {
7126b301a05SRhyland Klein 	pllcx->params->defaults_set = true;
7136b301a05SRhyland Klein 
7141116d5a7SJon Hunter 	if (readl_relaxed(clk_base + pllcx->params->base_reg) & PLL_ENABLE) {
7156b301a05SRhyland Klein 		/* PLL is ON: only check if defaults already set */
7166b301a05SRhyland Klein 		pllcx_check_defaults(pllcx->params);
7171116d5a7SJon Hunter 		if (!pllcx->params->defaults_set)
7186b301a05SRhyland Klein 			pr_warn("%s already enabled. Postponing set full defaults\n",
7196b301a05SRhyland Klein 				name);
7206b301a05SRhyland Klein 		return;
7216b301a05SRhyland Klein 	}
7226b301a05SRhyland Klein 
7236b301a05SRhyland Klein 	/* Defaults assert PLL reset, and set IDDQ */
7246b301a05SRhyland Klein 	writel_relaxed(PLLCX_MISC0_DEFAULT_VALUE,
7256b301a05SRhyland Klein 			clk_base + pllcx->params->ext_misc_reg[0]);
7266b301a05SRhyland Klein 	writel_relaxed(PLLCX_MISC1_DEFAULT_VALUE,
7276b301a05SRhyland Klein 			clk_base + pllcx->params->ext_misc_reg[1]);
7286b301a05SRhyland Klein 	writel_relaxed(PLLCX_MISC2_DEFAULT_VALUE,
7296b301a05SRhyland Klein 			clk_base + pllcx->params->ext_misc_reg[2]);
7306b301a05SRhyland Klein 	writel_relaxed(PLLCX_MISC3_DEFAULT_VALUE,
7316b301a05SRhyland Klein 			clk_base + pllcx->params->ext_misc_reg[3]);
7326b301a05SRhyland Klein 	udelay(1);
7336b301a05SRhyland Klein }
7346b301a05SRhyland Klein 
735fd360e20SJon Hunter static void _pllc_set_defaults(struct tegra_clk_pll *pllcx)
7366b301a05SRhyland Klein {
7376b301a05SRhyland Klein 	tegra210_pllcx_set_defaults("PLL_C", pllcx);
7386b301a05SRhyland Klein }
7396b301a05SRhyland Klein 
740fd360e20SJon Hunter static void _pllc2_set_defaults(struct tegra_clk_pll *pllcx)
7416b301a05SRhyland Klein {
7426b301a05SRhyland Klein 	tegra210_pllcx_set_defaults("PLL_C2", pllcx);
7436b301a05SRhyland Klein }
7446b301a05SRhyland Klein 
745fd360e20SJon Hunter static void _pllc3_set_defaults(struct tegra_clk_pll *pllcx)
7466b301a05SRhyland Klein {
7476b301a05SRhyland Klein 	tegra210_pllcx_set_defaults("PLL_C3", pllcx);
7486b301a05SRhyland Klein }
7496b301a05SRhyland Klein 
750fd360e20SJon Hunter static void _plla1_set_defaults(struct tegra_clk_pll *pllcx)
7516b301a05SRhyland Klein {
7526b301a05SRhyland Klein 	tegra210_pllcx_set_defaults("PLL_A1", pllcx);
7536b301a05SRhyland Klein }
7546b301a05SRhyland Klein 
7556b301a05SRhyland Klein /*
7566b301a05SRhyland Klein  * PLLA
7576b301a05SRhyland Klein  * PLL with dynamic ramp and fractional SDM. Dynamic ramp is not used.
7586b301a05SRhyland Klein  * Fractional SDM is allowed to provide exact audio rates.
7596b301a05SRhyland Klein  */
760fd360e20SJon Hunter static void tegra210_plla_set_defaults(struct tegra_clk_pll *plla)
7616b301a05SRhyland Klein {
7626b301a05SRhyland Klein 	u32 mask;
7636b301a05SRhyland Klein 	u32 val = readl_relaxed(clk_base + plla->params->base_reg);
7646b301a05SRhyland Klein 
7656b301a05SRhyland Klein 	plla->params->defaults_set = true;
7666b301a05SRhyland Klein 
7676b301a05SRhyland Klein 	if (val & PLL_ENABLE) {
7686b301a05SRhyland Klein 		/*
7696b301a05SRhyland Klein 		 * PLL is ON: check if defaults already set, then set those
7706b301a05SRhyland Klein 		 * that can be updated in flight.
7716b301a05SRhyland Klein 		 */
7726b301a05SRhyland Klein 		if (val & PLLA_BASE_IDDQ) {
7736b301a05SRhyland Klein 			pr_warn("PLL_A boot enabled with IDDQ set\n");
7746b301a05SRhyland Klein 			plla->params->defaults_set = false;
7756b301a05SRhyland Klein 		}
7766b301a05SRhyland Klein 
7776b301a05SRhyland Klein 		pr_warn("PLL_A already enabled. Postponing set full defaults\n");
7786b301a05SRhyland Klein 
7796b301a05SRhyland Klein 		val = PLLA_MISC0_DEFAULT_VALUE;	/* ignore lock enable */
7806b301a05SRhyland Klein 		mask = PLLA_MISC0_LOCK_ENABLE | PLLA_MISC0_LOCK_OVERRIDE;
7816b301a05SRhyland Klein 		_pll_misc_chk_default(clk_base, plla->params, 0, val,
7826b301a05SRhyland Klein 				~mask & PLLA_MISC0_WRITE_MASK);
7836b301a05SRhyland Klein 
7846b301a05SRhyland Klein 		val = PLLA_MISC2_DEFAULT_VALUE; /* ignore all but control bit */
7856b301a05SRhyland Klein 		_pll_misc_chk_default(clk_base, plla->params, 2, val,
7866b301a05SRhyland Klein 				PLLA_MISC2_EN_DYNRAMP);
7876b301a05SRhyland Klein 
7886b301a05SRhyland Klein 		/* Enable lock detect */
7896b301a05SRhyland Klein 		val = readl_relaxed(clk_base + plla->params->ext_misc_reg[0]);
7906b301a05SRhyland Klein 		val &= ~mask;
7916b301a05SRhyland Klein 		val |= PLLA_MISC0_DEFAULT_VALUE & mask;
7926b301a05SRhyland Klein 		writel_relaxed(val, clk_base + plla->params->ext_misc_reg[0]);
7936b301a05SRhyland Klein 		udelay(1);
7946b301a05SRhyland Klein 
7956b301a05SRhyland Klein 		return;
7966b301a05SRhyland Klein 	}
7976b301a05SRhyland Klein 
7986b301a05SRhyland Klein 	/* set IDDQ, enable lock detect, disable dynamic ramp and SDM */
7996b301a05SRhyland Klein 	val |= PLLA_BASE_IDDQ;
8006b301a05SRhyland Klein 	writel_relaxed(val, clk_base + plla->params->base_reg);
8016b301a05SRhyland Klein 	writel_relaxed(PLLA_MISC0_DEFAULT_VALUE,
8026b301a05SRhyland Klein 			clk_base + plla->params->ext_misc_reg[0]);
8036b301a05SRhyland Klein 	writel_relaxed(PLLA_MISC2_DEFAULT_VALUE,
8046b301a05SRhyland Klein 			clk_base + plla->params->ext_misc_reg[2]);
8056b301a05SRhyland Klein 	udelay(1);
8066b301a05SRhyland Klein }
8076b301a05SRhyland Klein 
8086b301a05SRhyland Klein /*
8096b301a05SRhyland Klein  * PLLD
8106b301a05SRhyland Klein  * PLL with fractional SDM.
8116b301a05SRhyland Klein  */
812fd360e20SJon Hunter static void tegra210_plld_set_defaults(struct tegra_clk_pll *plld)
8136b301a05SRhyland Klein {
8146b301a05SRhyland Klein 	u32 val;
8156b301a05SRhyland Klein 	u32 mask = 0xffff;
8166b301a05SRhyland Klein 
8176b301a05SRhyland Klein 	plld->params->defaults_set = true;
8186b301a05SRhyland Klein 
8196b301a05SRhyland Klein 	if (readl_relaxed(clk_base + plld->params->base_reg) &
8206b301a05SRhyland Klein 			PLL_ENABLE) {
8216b301a05SRhyland Klein 
8226b301a05SRhyland Klein 		/*
8236b301a05SRhyland Klein 		 * PLL is ON: check if defaults already set, then set those
8246b301a05SRhyland Klein 		 * that can be updated in flight.
8256b301a05SRhyland Klein 		 */
8266b301a05SRhyland Klein 		val = PLLD_MISC1_DEFAULT_VALUE;
8276b301a05SRhyland Klein 		_pll_misc_chk_default(clk_base, plld->params, 1,
8286b301a05SRhyland Klein 				val, PLLD_MISC1_WRITE_MASK);
8296b301a05SRhyland Klein 
8306b301a05SRhyland Klein 		/* ignore lock, DSI and SDM controls, make sure IDDQ not set */
8316b301a05SRhyland Klein 		val = PLLD_MISC0_DEFAULT_VALUE & (~PLLD_MISC0_IDDQ);
8326b301a05SRhyland Klein 		mask |= PLLD_MISC0_DSI_CLKENABLE | PLLD_MISC0_LOCK_ENABLE |
8336b301a05SRhyland Klein 			PLLD_MISC0_LOCK_OVERRIDE | PLLD_MISC0_EN_SDM;
8346b301a05SRhyland Klein 		_pll_misc_chk_default(clk_base, plld->params, 0, val,
8356b301a05SRhyland Klein 				~mask & PLLD_MISC0_WRITE_MASK);
8366b301a05SRhyland Klein 
8378dce89a1SPeter De Schrijver 		if (!plld->params->defaults_set)
8388dce89a1SPeter De Schrijver 			pr_warn("PLL_D already enabled. Postponing set full defaults\n");
8398dce89a1SPeter De Schrijver 
8406b301a05SRhyland Klein 		/* Enable lock detect */
8416b301a05SRhyland Klein 		mask = PLLD_MISC0_LOCK_ENABLE | PLLD_MISC0_LOCK_OVERRIDE;
8426b301a05SRhyland Klein 		val = readl_relaxed(clk_base + plld->params->ext_misc_reg[0]);
8436b301a05SRhyland Klein 		val &= ~mask;
8446b301a05SRhyland Klein 		val |= PLLD_MISC0_DEFAULT_VALUE & mask;
8456b301a05SRhyland Klein 		writel_relaxed(val, clk_base + plld->params->ext_misc_reg[0]);
8466b301a05SRhyland Klein 		udelay(1);
8476b301a05SRhyland Klein 
8486b301a05SRhyland Klein 		return;
8496b301a05SRhyland Klein 	}
8506b301a05SRhyland Klein 
8516b301a05SRhyland Klein 	val = readl_relaxed(clk_base + plld->params->ext_misc_reg[0]);
8526b301a05SRhyland Klein 	val &= PLLD_MISC0_DSI_CLKENABLE;
8536b301a05SRhyland Klein 	val |= PLLD_MISC0_DEFAULT_VALUE;
8546b301a05SRhyland Klein 	/* set IDDQ, enable lock detect, disable SDM */
8556b301a05SRhyland Klein 	writel_relaxed(val, clk_base + plld->params->ext_misc_reg[0]);
8566b301a05SRhyland Klein 	writel_relaxed(PLLD_MISC1_DEFAULT_VALUE, clk_base +
8576b301a05SRhyland Klein 			plld->params->ext_misc_reg[1]);
8586b301a05SRhyland Klein 	udelay(1);
8596b301a05SRhyland Klein }
8606b301a05SRhyland Klein 
8616b301a05SRhyland Klein /*
8626b301a05SRhyland Klein  * PLLD2, PLLDP
8636b301a05SRhyland Klein  * PLL with fractional SDM and Spread Spectrum (SDM is a must if SSC is used).
8646b301a05SRhyland Klein  */
8656b301a05SRhyland Klein static void plldss_defaults(const char *pll_name, struct tegra_clk_pll *plldss,
8666b301a05SRhyland Klein 		u32 misc0_val, u32 misc1_val, u32 misc2_val, u32 misc3_val)
8676b301a05SRhyland Klein {
8686b301a05SRhyland Klein 	u32 default_val;
8696b301a05SRhyland Klein 	u32 val = readl_relaxed(clk_base + plldss->params->base_reg);
8706b301a05SRhyland Klein 
8716b301a05SRhyland Klein 	plldss->params->defaults_set = true;
8726b301a05SRhyland Klein 
8736b301a05SRhyland Klein 	if (val & PLL_ENABLE) {
8746b301a05SRhyland Klein 
8756b301a05SRhyland Klein 		/*
8766b301a05SRhyland Klein 		 * PLL is ON: check if defaults already set, then set those
8776b301a05SRhyland Klein 		 * that can be updated in flight.
8786b301a05SRhyland Klein 		 */
8796b301a05SRhyland Klein 		if (val & PLLDSS_BASE_IDDQ) {
8806b301a05SRhyland Klein 			pr_warn("plldss boot enabled with IDDQ set\n");
8816b301a05SRhyland Klein 			plldss->params->defaults_set = false;
8826b301a05SRhyland Klein 		}
8836b301a05SRhyland Klein 
8846b301a05SRhyland Klein 		/* ignore lock enable */
8856b301a05SRhyland Klein 		default_val = misc0_val;
8866b301a05SRhyland Klein 		_pll_misc_chk_default(clk_base, plldss->params, 0, default_val,
8876b301a05SRhyland Klein 				     PLLDSS_MISC0_WRITE_MASK &
8886b301a05SRhyland Klein 				     (~PLLDSS_MISC0_LOCK_ENABLE));
8896b301a05SRhyland Klein 
8906b301a05SRhyland Klein 		/*
8916b301a05SRhyland Klein 		 * If SSC is used, check all settings, otherwise just confirm
8926b301a05SRhyland Klein 		 * that SSC is not used on boot as well. Do nothing when using
8936b301a05SRhyland Klein 		 * this function for PLLC4 that has only MISC0.
8946b301a05SRhyland Klein 		 */
8956b301a05SRhyland Klein 		if (plldss->params->ssc_ctrl_en_mask) {
8966b301a05SRhyland Klein 			default_val = misc1_val;
8976b301a05SRhyland Klein 			_pll_misc_chk_default(clk_base, plldss->params, 1,
8986b301a05SRhyland Klein 				default_val, PLLDSS_MISC1_CFG_WRITE_MASK);
8996b301a05SRhyland Klein 			default_val = misc2_val;
9006b301a05SRhyland Klein 			_pll_misc_chk_default(clk_base, plldss->params, 2,
9016b301a05SRhyland Klein 				default_val, PLLDSS_MISC2_CTRL1_WRITE_MASK);
9026b301a05SRhyland Klein 			default_val = misc3_val;
9036b301a05SRhyland Klein 			_pll_misc_chk_default(clk_base, plldss->params, 3,
9046b301a05SRhyland Klein 				default_val, PLLDSS_MISC3_CTRL2_WRITE_MASK);
9056b301a05SRhyland Klein 		} else if (plldss->params->ext_misc_reg[1]) {
9066b301a05SRhyland Klein 			default_val = misc1_val;
9076b301a05SRhyland Klein 			_pll_misc_chk_default(clk_base, plldss->params, 1,
9086b301a05SRhyland Klein 				default_val, PLLDSS_MISC1_CFG_WRITE_MASK &
9096b301a05SRhyland Klein 				(~PLLDSS_MISC1_CFG_EN_SDM));
9106b301a05SRhyland Klein 		}
9116b301a05SRhyland Klein 
9121934ffd0SPeter De Schrijver 		if (!plldss->params->defaults_set)
9131934ffd0SPeter De Schrijver 			pr_warn("%s already enabled. Postponing set full defaults\n",
9141934ffd0SPeter De Schrijver 				 pll_name);
9151934ffd0SPeter De Schrijver 
9166b301a05SRhyland Klein 		/* Enable lock detect */
9176b301a05SRhyland Klein 		if (val & PLLDSS_BASE_LOCK_OVERRIDE) {
9186b301a05SRhyland Klein 			val &= ~PLLDSS_BASE_LOCK_OVERRIDE;
9196b301a05SRhyland Klein 			writel_relaxed(val, clk_base +
9206b301a05SRhyland Klein 					plldss->params->base_reg);
9216b301a05SRhyland Klein 		}
9226b301a05SRhyland Klein 
9236b301a05SRhyland Klein 		val = readl_relaxed(clk_base + plldss->params->ext_misc_reg[0]);
9246b301a05SRhyland Klein 		val &= ~PLLDSS_MISC0_LOCK_ENABLE;
9256b301a05SRhyland Klein 		val |= misc0_val & PLLDSS_MISC0_LOCK_ENABLE;
9266b301a05SRhyland Klein 		writel_relaxed(val, clk_base + plldss->params->ext_misc_reg[0]);
9276b301a05SRhyland Klein 		udelay(1);
9286b301a05SRhyland Klein 
9296b301a05SRhyland Klein 		return;
9306b301a05SRhyland Klein 	}
9316b301a05SRhyland Klein 
9326b301a05SRhyland Klein 	/* set IDDQ, enable lock detect, configure SDM/SSC  */
9336b301a05SRhyland Klein 	val |= PLLDSS_BASE_IDDQ;
9346b301a05SRhyland Klein 	val &= ~PLLDSS_BASE_LOCK_OVERRIDE;
9356b301a05SRhyland Klein 	writel_relaxed(val, clk_base + plldss->params->base_reg);
9366b301a05SRhyland Klein 
9376b301a05SRhyland Klein 	/* When using this function for PLLC4 exit here */
9386b301a05SRhyland Klein 	if (!plldss->params->ext_misc_reg[1]) {
9396b301a05SRhyland Klein 		writel_relaxed(misc0_val, clk_base +
9406b301a05SRhyland Klein 				plldss->params->ext_misc_reg[0]);
9416b301a05SRhyland Klein 		udelay(1);
9426b301a05SRhyland Klein 		return;
9436b301a05SRhyland Klein 	}
9446b301a05SRhyland Klein 
9456b301a05SRhyland Klein 	writel_relaxed(misc0_val, clk_base +
9466b301a05SRhyland Klein 			plldss->params->ext_misc_reg[0]);
9476b301a05SRhyland Klein 	/* if SSC used set by 1st enable */
9486b301a05SRhyland Klein 	writel_relaxed(misc1_val & (~PLLDSS_MISC1_CFG_EN_SSC),
9496b301a05SRhyland Klein 			clk_base + plldss->params->ext_misc_reg[1]);
9506b301a05SRhyland Klein 	writel_relaxed(misc2_val, clk_base + plldss->params->ext_misc_reg[2]);
9516b301a05SRhyland Klein 	writel_relaxed(misc3_val, clk_base + plldss->params->ext_misc_reg[3]);
9526b301a05SRhyland Klein 	udelay(1);
9536b301a05SRhyland Klein }
9546b301a05SRhyland Klein 
955fd360e20SJon Hunter static void tegra210_plld2_set_defaults(struct tegra_clk_pll *plld2)
9566b301a05SRhyland Klein {
9576b301a05SRhyland Klein 	plldss_defaults("PLL_D2", plld2, PLLD2_MISC0_DEFAULT_VALUE,
9586b301a05SRhyland Klein 			PLLD2_MISC1_CFG_DEFAULT_VALUE,
9596b301a05SRhyland Klein 			PLLD2_MISC2_CTRL1_DEFAULT_VALUE,
9606b301a05SRhyland Klein 			PLLD2_MISC3_CTRL2_DEFAULT_VALUE);
9616b301a05SRhyland Klein }
9626b301a05SRhyland Klein 
963fd360e20SJon Hunter static void tegra210_plldp_set_defaults(struct tegra_clk_pll *plldp)
9646b301a05SRhyland Klein {
9656b301a05SRhyland Klein 	plldss_defaults("PLL_DP", plldp, PLLDP_MISC0_DEFAULT_VALUE,
9666b301a05SRhyland Klein 			PLLDP_MISC1_CFG_DEFAULT_VALUE,
9676b301a05SRhyland Klein 			PLLDP_MISC2_CTRL1_DEFAULT_VALUE,
9686b301a05SRhyland Klein 			PLLDP_MISC3_CTRL2_DEFAULT_VALUE);
9696b301a05SRhyland Klein }
9706b301a05SRhyland Klein 
9716b301a05SRhyland Klein /*
9726b301a05SRhyland Klein  * PLLC4
9736b301a05SRhyland Klein  * Base and misc0 layout is the same as PLLD2/PLLDP, but no SDM/SSC support.
9746b301a05SRhyland Klein  * VCO is exposed to the clock tree via fixed 1/3 and 1/5 dividers.
9756b301a05SRhyland Klein  */
976fd360e20SJon Hunter static void tegra210_pllc4_set_defaults(struct tegra_clk_pll *pllc4)
9776b301a05SRhyland Klein {
9786b301a05SRhyland Klein 	plldss_defaults("PLL_C4", pllc4, PLLC4_MISC0_DEFAULT_VALUE, 0, 0, 0);
9796b301a05SRhyland Klein }
9806b301a05SRhyland Klein 
9816b301a05SRhyland Klein /*
9826b301a05SRhyland Klein  * PLLRE
9836b301a05SRhyland Klein  * VCO is exposed to the clock tree directly along with post-divider output
9846b301a05SRhyland Klein  */
985fd360e20SJon Hunter static void tegra210_pllre_set_defaults(struct tegra_clk_pll *pllre)
9866b301a05SRhyland Klein {
9876b301a05SRhyland Klein 	u32 mask;
9886b301a05SRhyland Klein 	u32 val = readl_relaxed(clk_base + pllre->params->base_reg);
9896b301a05SRhyland Klein 
9906b301a05SRhyland Klein 	pllre->params->defaults_set = true;
9916b301a05SRhyland Klein 
9926b301a05SRhyland Klein 	if (val & PLL_ENABLE) {
9936b301a05SRhyland Klein 		/*
9946b301a05SRhyland Klein 		 * PLL is ON: check if defaults already set, then set those
9956b301a05SRhyland Klein 		 * that can be updated in flight.
9966b301a05SRhyland Klein 		 */
9976b301a05SRhyland Klein 		val &= PLLRE_BASE_DEFAULT_MASK;
9986b301a05SRhyland Klein 		if (val != PLLRE_BASE_DEFAULT_VALUE) {
9996b301a05SRhyland Klein 			pr_warn("pllre boot base 0x%x : expected 0x%x\n",
10006b301a05SRhyland Klein 				val, PLLRE_BASE_DEFAULT_VALUE);
10016b301a05SRhyland Klein 			pr_warn("(comparison mask = 0x%x)\n",
10026b301a05SRhyland Klein 				PLLRE_BASE_DEFAULT_MASK);
10036b301a05SRhyland Klein 			pllre->params->defaults_set = false;
10046b301a05SRhyland Klein 		}
10056b301a05SRhyland Klein 
10066b301a05SRhyland Klein 		/* Ignore lock enable */
10076b301a05SRhyland Klein 		val = PLLRE_MISC0_DEFAULT_VALUE & (~PLLRE_MISC0_IDDQ);
10086b301a05SRhyland Klein 		mask = PLLRE_MISC0_LOCK_ENABLE | PLLRE_MISC0_LOCK_OVERRIDE;
10096b301a05SRhyland Klein 		_pll_misc_chk_default(clk_base, pllre->params, 0, val,
10106b301a05SRhyland Klein 				~mask & PLLRE_MISC0_WRITE_MASK);
10116b301a05SRhyland Klein 
1012c1139d20SThierry Reding 		/* The PLL doesn't work if it's in IDDQ. */
10136b301a05SRhyland Klein 		val = readl_relaxed(clk_base + pllre->params->ext_misc_reg[0]);
1014c1139d20SThierry Reding 		if (val & PLLRE_MISC0_IDDQ)
1015c1139d20SThierry Reding 			pr_warn("unexpected IDDQ bit set for enabled clock\n");
1016c1139d20SThierry Reding 
1017c1139d20SThierry Reding 		/* Enable lock detect */
10186b301a05SRhyland Klein 		val &= ~mask;
10196b301a05SRhyland Klein 		val |= PLLRE_MISC0_DEFAULT_VALUE & mask;
10206b301a05SRhyland Klein 		writel_relaxed(val, clk_base + pllre->params->ext_misc_reg[0]);
10216b301a05SRhyland Klein 		udelay(1);
10226b301a05SRhyland Klein 
102320675070SThierry Reding 		if (!pllre->params->defaults_set)
102420675070SThierry Reding 			pr_warn("PLL_RE already enabled. Postponing set full defaults\n");
102520675070SThierry Reding 
10266b301a05SRhyland Klein 		return;
10276b301a05SRhyland Klein 	}
10286b301a05SRhyland Klein 
10296b301a05SRhyland Klein 	/* set IDDQ, enable lock detect */
10306b301a05SRhyland Klein 	val &= ~PLLRE_BASE_DEFAULT_MASK;
10316b301a05SRhyland Klein 	val |= PLLRE_BASE_DEFAULT_VALUE & PLLRE_BASE_DEFAULT_MASK;
10326b301a05SRhyland Klein 	writel_relaxed(val, clk_base + pllre->params->base_reg);
10336b301a05SRhyland Klein 	writel_relaxed(PLLRE_MISC0_DEFAULT_VALUE,
10346b301a05SRhyland Klein 			clk_base + pllre->params->ext_misc_reg[0]);
10356b301a05SRhyland Klein 	udelay(1);
10366b301a05SRhyland Klein }
10376b301a05SRhyland Klein 
10386b301a05SRhyland Klein static void pllx_get_dyn_steps(struct clk_hw *hw, u32 *step_a, u32 *step_b)
10396b301a05SRhyland Klein {
10406b301a05SRhyland Klein 	unsigned long input_rate;
10416b301a05SRhyland Klein 
10426b301a05SRhyland Klein 	/* cf rate */
10433dad5c5fSRhyland Klein 	if (!IS_ERR_OR_NULL(hw->clk))
10443dad5c5fSRhyland Klein 		input_rate = clk_hw_get_rate(clk_hw_get_parent(hw));
10453dad5c5fSRhyland Klein 	else
10466b301a05SRhyland Klein 		input_rate = 38400000;
10473dad5c5fSRhyland Klein 
10483dad5c5fSRhyland Klein 	input_rate /= tegra_pll_get_fixed_mdiv(hw, input_rate);
10496b301a05SRhyland Klein 
10506b301a05SRhyland Klein 	switch (input_rate) {
10516b301a05SRhyland Klein 	case 12000000:
10526b301a05SRhyland Klein 	case 12800000:
10536b301a05SRhyland Klein 	case 13000000:
10546b301a05SRhyland Klein 		*step_a = 0x2B;
10556b301a05SRhyland Klein 		*step_b = 0x0B;
10566b301a05SRhyland Klein 		return;
10576b301a05SRhyland Klein 	case 19200000:
10586b301a05SRhyland Klein 		*step_a = 0x12;
10596b301a05SRhyland Klein 		*step_b = 0x08;
10606b301a05SRhyland Klein 		return;
10616b301a05SRhyland Klein 	case 38400000:
10626b301a05SRhyland Klein 		*step_a = 0x04;
10636b301a05SRhyland Klein 		*step_b = 0x05;
10646b301a05SRhyland Klein 		return;
10656b301a05SRhyland Klein 	default:
10666b301a05SRhyland Klein 		pr_err("%s: Unexpected reference rate %lu\n",
10676b301a05SRhyland Klein 			__func__, input_rate);
10686b301a05SRhyland Klein 		BUG();
10696b301a05SRhyland Klein 	}
10706b301a05SRhyland Klein }
10716b301a05SRhyland Klein 
10726b301a05SRhyland Klein static void pllx_check_defaults(struct tegra_clk_pll *pll)
10736b301a05SRhyland Klein {
10746b301a05SRhyland Klein 	u32 default_val;
10756b301a05SRhyland Klein 
10766b301a05SRhyland Klein 	default_val = PLLX_MISC0_DEFAULT_VALUE;
10776b301a05SRhyland Klein 	/* ignore lock enable */
10786b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, pll->params, 0, default_val,
10796b301a05SRhyland Klein 			PLLX_MISC0_WRITE_MASK & (~PLLX_MISC0_LOCK_ENABLE));
10806b301a05SRhyland Klein 
10816b301a05SRhyland Klein 	default_val = PLLX_MISC1_DEFAULT_VALUE;
10826b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, pll->params, 1, default_val,
10836b301a05SRhyland Klein 			PLLX_MISC1_WRITE_MASK);
10846b301a05SRhyland Klein 
10856b301a05SRhyland Klein 	/* ignore all but control bit */
10866b301a05SRhyland Klein 	default_val = PLLX_MISC2_DEFAULT_VALUE;
10876b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, pll->params, 2,
10886b301a05SRhyland Klein 			default_val, PLLX_MISC2_EN_DYNRAMP);
10896b301a05SRhyland Klein 
10906b301a05SRhyland Klein 	default_val = PLLX_MISC3_DEFAULT_VALUE & (~PLLX_MISC3_IDDQ);
10916b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, pll->params, 3, default_val,
10926b301a05SRhyland Klein 			PLLX_MISC3_WRITE_MASK);
10936b301a05SRhyland Klein 
10946b301a05SRhyland Klein 	default_val = PLLX_MISC4_DEFAULT_VALUE;
10956b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, pll->params, 4, default_val,
10966b301a05SRhyland Klein 			PLLX_MISC4_WRITE_MASK);
10976b301a05SRhyland Klein 
10986b301a05SRhyland Klein 	default_val = PLLX_MISC5_DEFAULT_VALUE;
10996b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, pll->params, 5, default_val,
11006b301a05SRhyland Klein 			PLLX_MISC5_WRITE_MASK);
11016b301a05SRhyland Klein }
11026b301a05SRhyland Klein 
1103fd360e20SJon Hunter static void tegra210_pllx_set_defaults(struct tegra_clk_pll *pllx)
11046b301a05SRhyland Klein {
11056b301a05SRhyland Klein 	u32 val;
11066b301a05SRhyland Klein 	u32 step_a, step_b;
11076b301a05SRhyland Klein 
11086b301a05SRhyland Klein 	pllx->params->defaults_set = true;
11096b301a05SRhyland Klein 
11106b301a05SRhyland Klein 	/* Get ready dyn ramp state machine settings */
11116b301a05SRhyland Klein 	pllx_get_dyn_steps(&pllx->hw, &step_a, &step_b);
11126b301a05SRhyland Klein 	val = PLLX_MISC2_DEFAULT_VALUE & (~PLLX_MISC2_DYNRAMP_STEPA_MASK) &
11136b301a05SRhyland Klein 		(~PLLX_MISC2_DYNRAMP_STEPB_MASK);
11146b301a05SRhyland Klein 	val |= step_a << PLLX_MISC2_DYNRAMP_STEPA_SHIFT;
11156b301a05SRhyland Klein 	val |= step_b << PLLX_MISC2_DYNRAMP_STEPB_SHIFT;
11166b301a05SRhyland Klein 
11176b301a05SRhyland Klein 	if (readl_relaxed(clk_base + pllx->params->base_reg) & PLL_ENABLE) {
11186b301a05SRhyland Klein 
11196b301a05SRhyland Klein 		/*
11206b301a05SRhyland Klein 		 * PLL is ON: check if defaults already set, then set those
11216b301a05SRhyland Klein 		 * that can be updated in flight.
11226b301a05SRhyland Klein 		 */
11236b301a05SRhyland Klein 		pllx_check_defaults(pllx);
11246b301a05SRhyland Klein 
11258dce89a1SPeter De Schrijver 		if (!pllx->params->defaults_set)
11268dce89a1SPeter De Schrijver 			pr_warn("PLL_X already enabled. Postponing set full defaults\n");
11276b301a05SRhyland Klein 		/* Configure dyn ramp, disable lock override */
11286b301a05SRhyland Klein 		writel_relaxed(val, clk_base + pllx->params->ext_misc_reg[2]);
11296b301a05SRhyland Klein 
11306b301a05SRhyland Klein 		/* Enable lock detect */
11316b301a05SRhyland Klein 		val = readl_relaxed(clk_base + pllx->params->ext_misc_reg[0]);
11326b301a05SRhyland Klein 		val &= ~PLLX_MISC0_LOCK_ENABLE;
11336b301a05SRhyland Klein 		val |= PLLX_MISC0_DEFAULT_VALUE & PLLX_MISC0_LOCK_ENABLE;
11346b301a05SRhyland Klein 		writel_relaxed(val, clk_base + pllx->params->ext_misc_reg[0]);
11356b301a05SRhyland Klein 		udelay(1);
11366b301a05SRhyland Klein 
11376b301a05SRhyland Klein 		return;
11386b301a05SRhyland Klein 	}
11396b301a05SRhyland Klein 
11406b301a05SRhyland Klein 	/* Enable lock detect and CPU output */
11416b301a05SRhyland Klein 	writel_relaxed(PLLX_MISC0_DEFAULT_VALUE, clk_base +
11426b301a05SRhyland Klein 			pllx->params->ext_misc_reg[0]);
11436b301a05SRhyland Klein 
11446b301a05SRhyland Klein 	/* Setup */
11456b301a05SRhyland Klein 	writel_relaxed(PLLX_MISC1_DEFAULT_VALUE, clk_base +
11466b301a05SRhyland Klein 			pllx->params->ext_misc_reg[1]);
11476b301a05SRhyland Klein 
11486b301a05SRhyland Klein 	/* Configure dyn ramp state machine, disable lock override */
11496b301a05SRhyland Klein 	writel_relaxed(val, clk_base + pllx->params->ext_misc_reg[2]);
11506b301a05SRhyland Klein 
11516b301a05SRhyland Klein 	/* Set IDDQ */
11526b301a05SRhyland Klein 	writel_relaxed(PLLX_MISC3_DEFAULT_VALUE, clk_base +
11536b301a05SRhyland Klein 			pllx->params->ext_misc_reg[3]);
11546b301a05SRhyland Klein 
11556b301a05SRhyland Klein 	/* Disable SDM */
11566b301a05SRhyland Klein 	writel_relaxed(PLLX_MISC4_DEFAULT_VALUE, clk_base +
11576b301a05SRhyland Klein 			pllx->params->ext_misc_reg[4]);
11586b301a05SRhyland Klein 	writel_relaxed(PLLX_MISC5_DEFAULT_VALUE, clk_base +
11596b301a05SRhyland Klein 			pllx->params->ext_misc_reg[5]);
11606b301a05SRhyland Klein 	udelay(1);
11616b301a05SRhyland Klein }
11626b301a05SRhyland Klein 
11636b301a05SRhyland Klein /* PLLMB */
1164fd360e20SJon Hunter static void tegra210_pllmb_set_defaults(struct tegra_clk_pll *pllmb)
11656b301a05SRhyland Klein {
11666b301a05SRhyland Klein 	u32 mask, val = readl_relaxed(clk_base + pllmb->params->base_reg);
11676b301a05SRhyland Klein 
11686b301a05SRhyland Klein 	pllmb->params->defaults_set = true;
11696b301a05SRhyland Klein 
11706b301a05SRhyland Klein 	if (val & PLL_ENABLE) {
11716b301a05SRhyland Klein 
11726b301a05SRhyland Klein 		/*
11736b301a05SRhyland Klein 		 * PLL is ON: check if defaults already set, then set those
11746b301a05SRhyland Klein 		 * that can be updated in flight.
11756b301a05SRhyland Klein 		 */
1176474f2ba2SRhyland Klein 		val = PLLMB_MISC1_DEFAULT_VALUE & (~PLLMB_MISC1_IDDQ);
1177474f2ba2SRhyland Klein 		mask = PLLMB_MISC1_LOCK_ENABLE | PLLMB_MISC1_LOCK_OVERRIDE;
11786b301a05SRhyland Klein 		_pll_misc_chk_default(clk_base, pllmb->params, 0, val,
1179474f2ba2SRhyland Klein 				~mask & PLLMB_MISC1_WRITE_MASK);
11806b301a05SRhyland Klein 
11818dce89a1SPeter De Schrijver 		if (!pllmb->params->defaults_set)
11828dce89a1SPeter De Schrijver 			pr_warn("PLL_MB already enabled. Postponing set full defaults\n");
11836b301a05SRhyland Klein 		/* Enable lock detect */
11846b301a05SRhyland Klein 		val = readl_relaxed(clk_base + pllmb->params->ext_misc_reg[0]);
11856b301a05SRhyland Klein 		val &= ~mask;
1186474f2ba2SRhyland Klein 		val |= PLLMB_MISC1_DEFAULT_VALUE & mask;
11876b301a05SRhyland Klein 		writel_relaxed(val, clk_base + pllmb->params->ext_misc_reg[0]);
11886b301a05SRhyland Klein 		udelay(1);
11896b301a05SRhyland Klein 
11906b301a05SRhyland Klein 		return;
11916b301a05SRhyland Klein 	}
11926b301a05SRhyland Klein 
11936b301a05SRhyland Klein 	/* set IDDQ, enable lock detect */
1194474f2ba2SRhyland Klein 	writel_relaxed(PLLMB_MISC1_DEFAULT_VALUE,
11956b301a05SRhyland Klein 			clk_base + pllmb->params->ext_misc_reg[0]);
11966b301a05SRhyland Klein 	udelay(1);
11976b301a05SRhyland Klein }
11986b301a05SRhyland Klein 
11996b301a05SRhyland Klein /*
12006b301a05SRhyland Klein  * PLLP
12016b301a05SRhyland Klein  * VCO is exposed to the clock tree directly along with post-divider output.
12026b301a05SRhyland Klein  * Both VCO and post-divider output rates are fixed at 408MHz and 204MHz,
12036b301a05SRhyland Klein  * respectively.
12046b301a05SRhyland Klein  */
12056b301a05SRhyland Klein static void pllp_check_defaults(struct tegra_clk_pll *pll, bool enabled)
12066b301a05SRhyland Klein {
12076b301a05SRhyland Klein 	u32 val, mask;
12086b301a05SRhyland Klein 
12096b301a05SRhyland Klein 	/* Ignore lock enable (will be set), make sure not in IDDQ if enabled */
12106b301a05SRhyland Klein 	val = PLLP_MISC0_DEFAULT_VALUE & (~PLLP_MISC0_IDDQ);
12116b301a05SRhyland Klein 	mask = PLLP_MISC0_LOCK_ENABLE | PLLP_MISC0_LOCK_OVERRIDE;
12126b301a05SRhyland Klein 	if (!enabled)
12136b301a05SRhyland Klein 		mask |= PLLP_MISC0_IDDQ;
12146b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, pll->params, 0, val,
12156b301a05SRhyland Klein 			~mask & PLLP_MISC0_WRITE_MASK);
12166b301a05SRhyland Klein 
12176b301a05SRhyland Klein 	/* Ignore branch controls */
12186b301a05SRhyland Klein 	val = PLLP_MISC1_DEFAULT_VALUE;
12196b301a05SRhyland Klein 	mask = PLLP_MISC1_HSIO_EN | PLLP_MISC1_XUSB_EN;
12206b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, pll->params, 1, val,
12216b301a05SRhyland Klein 			~mask & PLLP_MISC1_WRITE_MASK);
12226b301a05SRhyland Klein }
12236b301a05SRhyland Klein 
1224fd360e20SJon Hunter static void tegra210_pllp_set_defaults(struct tegra_clk_pll *pllp)
12256b301a05SRhyland Klein {
12266b301a05SRhyland Klein 	u32 mask;
12276b301a05SRhyland Klein 	u32 val = readl_relaxed(clk_base + pllp->params->base_reg);
12286b301a05SRhyland Klein 
12296b301a05SRhyland Klein 	pllp->params->defaults_set = true;
12306b301a05SRhyland Klein 
12316b301a05SRhyland Klein 	if (val & PLL_ENABLE) {
12326b301a05SRhyland Klein 
12336b301a05SRhyland Klein 		/*
12346b301a05SRhyland Klein 		 * PLL is ON: check if defaults already set, then set those
12356b301a05SRhyland Klein 		 * that can be updated in flight.
12366b301a05SRhyland Klein 		 */
12376b301a05SRhyland Klein 		pllp_check_defaults(pllp, true);
12388dce89a1SPeter De Schrijver 		if (!pllp->params->defaults_set)
12398dce89a1SPeter De Schrijver 			pr_warn("PLL_P already enabled. Postponing set full defaults\n");
12406b301a05SRhyland Klein 
12416b301a05SRhyland Klein 		/* Enable lock detect */
12426b301a05SRhyland Klein 		val = readl_relaxed(clk_base + pllp->params->ext_misc_reg[0]);
12436b301a05SRhyland Klein 		mask = PLLP_MISC0_LOCK_ENABLE | PLLP_MISC0_LOCK_OVERRIDE;
12446b301a05SRhyland Klein 		val &= ~mask;
12456b301a05SRhyland Klein 		val |= PLLP_MISC0_DEFAULT_VALUE & mask;
12466b301a05SRhyland Klein 		writel_relaxed(val, clk_base + pllp->params->ext_misc_reg[0]);
12476b301a05SRhyland Klein 		udelay(1);
12486b301a05SRhyland Klein 
12496b301a05SRhyland Klein 		return;
12506b301a05SRhyland Klein 	}
12516b301a05SRhyland Klein 
12526b301a05SRhyland Klein 	/* set IDDQ, enable lock detect */
12536b301a05SRhyland Klein 	writel_relaxed(PLLP_MISC0_DEFAULT_VALUE,
12546b301a05SRhyland Klein 			clk_base + pllp->params->ext_misc_reg[0]);
12556b301a05SRhyland Klein 
12566b301a05SRhyland Klein 	/* Preserve branch control */
12576b301a05SRhyland Klein 	val = readl_relaxed(clk_base + pllp->params->ext_misc_reg[1]);
12586b301a05SRhyland Klein 	mask = PLLP_MISC1_HSIO_EN | PLLP_MISC1_XUSB_EN;
12596b301a05SRhyland Klein 	val &= mask;
12606b301a05SRhyland Klein 	val |= ~mask & PLLP_MISC1_DEFAULT_VALUE;
12616b301a05SRhyland Klein 	writel_relaxed(val, clk_base + pllp->params->ext_misc_reg[1]);
12626b301a05SRhyland Klein 	udelay(1);
12636b301a05SRhyland Klein }
12646b301a05SRhyland Klein 
12656b301a05SRhyland Klein /*
12666b301a05SRhyland Klein  * PLLU
12676b301a05SRhyland Klein  * VCO is exposed to the clock tree directly along with post-divider output.
12686b301a05SRhyland Klein  * Both VCO and post-divider output rates are fixed at 480MHz and 240MHz,
12696b301a05SRhyland Klein  * respectively.
12706b301a05SRhyland Klein  */
1271e745f992SPeter De Schrijver static void pllu_check_defaults(struct tegra_clk_pll_params *params,
1272e745f992SPeter De Schrijver 				bool hw_control)
12736b301a05SRhyland Klein {
12746b301a05SRhyland Klein 	u32 val, mask;
12756b301a05SRhyland Klein 
12766b301a05SRhyland Klein 	/* Ignore lock enable (will be set) and IDDQ if under h/w control */
12776b301a05SRhyland Klein 	val = PLLU_MISC0_DEFAULT_VALUE & (~PLLU_MISC0_IDDQ);
12786b301a05SRhyland Klein 	mask = PLLU_MISC0_LOCK_ENABLE | (hw_control ? PLLU_MISC0_IDDQ : 0);
1279e745f992SPeter De Schrijver 	_pll_misc_chk_default(clk_base, params, 0, val,
12806b301a05SRhyland Klein 			~mask & PLLU_MISC0_WRITE_MASK);
12816b301a05SRhyland Klein 
12826b301a05SRhyland Klein 	val = PLLU_MISC1_DEFAULT_VALUE;
12836b301a05SRhyland Klein 	mask = PLLU_MISC1_LOCK_OVERRIDE;
1284e745f992SPeter De Schrijver 	_pll_misc_chk_default(clk_base, params, 1, val,
12856b301a05SRhyland Klein 			~mask & PLLU_MISC1_WRITE_MASK);
12866b301a05SRhyland Klein }
12876b301a05SRhyland Klein 
1288e745f992SPeter De Schrijver static void tegra210_pllu_set_defaults(struct tegra_clk_pll_params *pllu)
12896b301a05SRhyland Klein {
1290e745f992SPeter De Schrijver 	u32 val = readl_relaxed(clk_base + pllu->base_reg);
12916b301a05SRhyland Klein 
1292e745f992SPeter De Schrijver 	pllu->defaults_set = true;
12936b301a05SRhyland Klein 
12946b301a05SRhyland Klein 	if (val & PLL_ENABLE) {
12956b301a05SRhyland Klein 
12966b301a05SRhyland Klein 		/*
12976b301a05SRhyland Klein 		 * PLL is ON: check if defaults already set, then set those
12986b301a05SRhyland Klein 		 * that can be updated in flight.
12996b301a05SRhyland Klein 		 */
13006b301a05SRhyland Klein 		pllu_check_defaults(pllu, false);
1301e745f992SPeter De Schrijver 		if (!pllu->defaults_set)
13028dce89a1SPeter De Schrijver 			pr_warn("PLL_U already enabled. Postponing set full defaults\n");
13036b301a05SRhyland Klein 
13046b301a05SRhyland Klein 		/* Enable lock detect */
1305e745f992SPeter De Schrijver 		val = readl_relaxed(clk_base + pllu->ext_misc_reg[0]);
13066b301a05SRhyland Klein 		val &= ~PLLU_MISC0_LOCK_ENABLE;
13076b301a05SRhyland Klein 		val |= PLLU_MISC0_DEFAULT_VALUE & PLLU_MISC0_LOCK_ENABLE;
1308e745f992SPeter De Schrijver 		writel_relaxed(val, clk_base + pllu->ext_misc_reg[0]);
13096b301a05SRhyland Klein 
1310e745f992SPeter De Schrijver 		val = readl_relaxed(clk_base + pllu->ext_misc_reg[1]);
13116b301a05SRhyland Klein 		val &= ~PLLU_MISC1_LOCK_OVERRIDE;
13126b301a05SRhyland Klein 		val |= PLLU_MISC1_DEFAULT_VALUE & PLLU_MISC1_LOCK_OVERRIDE;
1313e745f992SPeter De Schrijver 		writel_relaxed(val, clk_base + pllu->ext_misc_reg[1]);
13146b301a05SRhyland Klein 		udelay(1);
13156b301a05SRhyland Klein 
13166b301a05SRhyland Klein 		return;
13176b301a05SRhyland Klein 	}
13186b301a05SRhyland Klein 
13196b301a05SRhyland Klein 	/* set IDDQ, enable lock detect */
13206b301a05SRhyland Klein 	writel_relaxed(PLLU_MISC0_DEFAULT_VALUE,
1321e745f992SPeter De Schrijver 			clk_base + pllu->ext_misc_reg[0]);
13226b301a05SRhyland Klein 	writel_relaxed(PLLU_MISC1_DEFAULT_VALUE,
1323e745f992SPeter De Schrijver 			clk_base + pllu->ext_misc_reg[1]);
13246b301a05SRhyland Klein 	udelay(1);
13256b301a05SRhyland Klein }
13266b301a05SRhyland Klein 
13276b301a05SRhyland Klein #define mask(w) ((1 << (w)) - 1)
13286b301a05SRhyland Klein #define divm_mask(p) mask(p->params->div_nmp->divm_width)
13296b301a05SRhyland Klein #define divn_mask(p) mask(p->params->div_nmp->divn_width)
13306b301a05SRhyland Klein #define divp_mask(p) (p->params->flags & TEGRA_PLLU ? PLLU_POST_DIVP_MASK :\
13316b301a05SRhyland Klein 		      mask(p->params->div_nmp->divp_width))
13326b301a05SRhyland Klein 
13336b301a05SRhyland Klein #define divm_shift(p) ((p)->params->div_nmp->divm_shift)
13346b301a05SRhyland Klein #define divn_shift(p) ((p)->params->div_nmp->divn_shift)
13356b301a05SRhyland Klein #define divp_shift(p) ((p)->params->div_nmp->divp_shift)
13366b301a05SRhyland Klein 
13376b301a05SRhyland Klein #define divm_mask_shifted(p) (divm_mask(p) << divm_shift(p))
13386b301a05SRhyland Klein #define divn_mask_shifted(p) (divn_mask(p) << divn_shift(p))
13396b301a05SRhyland Klein #define divp_mask_shifted(p) (divp_mask(p) << divp_shift(p))
13406b301a05SRhyland Klein 
13416b301a05SRhyland Klein #define PLL_LOCKDET_DELAY 2	/* Lock detection safety delays */
13426b301a05SRhyland Klein static int tegra210_wait_for_mask(struct tegra_clk_pll *pll,
13436b301a05SRhyland Klein 				  u32 reg, u32 mask)
13446b301a05SRhyland Klein {
13456b301a05SRhyland Klein 	int i;
13466b301a05SRhyland Klein 	u32 val = 0;
13476b301a05SRhyland Klein 
13486b301a05SRhyland Klein 	for (i = 0; i < pll->params->lock_delay / PLL_LOCKDET_DELAY + 1; i++) {
13496b301a05SRhyland Klein 		udelay(PLL_LOCKDET_DELAY);
13506b301a05SRhyland Klein 		val = readl_relaxed(clk_base + reg);
13516b301a05SRhyland Klein 		if ((val & mask) == mask) {
13526b301a05SRhyland Klein 			udelay(PLL_LOCKDET_DELAY);
13536b301a05SRhyland Klein 			return 0;
13546b301a05SRhyland Klein 		}
13556b301a05SRhyland Klein 	}
13566b301a05SRhyland Klein 	return -ETIMEDOUT;
13576b301a05SRhyland Klein }
13586b301a05SRhyland Klein 
13596b301a05SRhyland Klein static int tegra210_pllx_dyn_ramp(struct tegra_clk_pll *pllx,
13606b301a05SRhyland Klein 		struct tegra_clk_pll_freq_table *cfg)
13616b301a05SRhyland Klein {
13626b301a05SRhyland Klein 	u32 val, base, ndiv_new_mask;
13636b301a05SRhyland Klein 
13646b301a05SRhyland Klein 	ndiv_new_mask = (divn_mask(pllx) >> pllx->params->div_nmp->divn_shift)
13656b301a05SRhyland Klein 			 << PLLX_MISC2_NDIV_NEW_SHIFT;
13666b301a05SRhyland Klein 
13676b301a05SRhyland Klein 	val = readl_relaxed(clk_base + pllx->params->ext_misc_reg[2]);
13686b301a05SRhyland Klein 	val &= (~ndiv_new_mask);
13696b301a05SRhyland Klein 	val |= cfg->n << PLLX_MISC2_NDIV_NEW_SHIFT;
13706b301a05SRhyland Klein 	writel_relaxed(val, clk_base + pllx->params->ext_misc_reg[2]);
13716b301a05SRhyland Klein 	udelay(1);
13726b301a05SRhyland Klein 
13736b301a05SRhyland Klein 	val = readl_relaxed(clk_base + pllx->params->ext_misc_reg[2]);
13746b301a05SRhyland Klein 	val |= PLLX_MISC2_EN_DYNRAMP;
13756b301a05SRhyland Klein 	writel_relaxed(val, clk_base + pllx->params->ext_misc_reg[2]);
13766b301a05SRhyland Klein 	udelay(1);
13776b301a05SRhyland Klein 
13786b301a05SRhyland Klein 	tegra210_wait_for_mask(pllx, pllx->params->ext_misc_reg[2],
13796b301a05SRhyland Klein 			       PLLX_MISC2_DYNRAMP_DONE);
13806b301a05SRhyland Klein 
13816b301a05SRhyland Klein 	base = readl_relaxed(clk_base + pllx->params->base_reg) &
13826b301a05SRhyland Klein 		(~divn_mask_shifted(pllx));
13836b301a05SRhyland Klein 	base |= cfg->n << pllx->params->div_nmp->divn_shift;
13846b301a05SRhyland Klein 	writel_relaxed(base, clk_base + pllx->params->base_reg);
13856b301a05SRhyland Klein 	udelay(1);
13866b301a05SRhyland Klein 
13876b301a05SRhyland Klein 	val &= ~PLLX_MISC2_EN_DYNRAMP;
13886b301a05SRhyland Klein 	writel_relaxed(val, clk_base + pllx->params->ext_misc_reg[2]);
13896b301a05SRhyland Klein 	udelay(1);
13906b301a05SRhyland Klein 
13916b301a05SRhyland Klein 	pr_debug("%s: dynamic ramp to m = %u n = %u p = %u, Fout = %lu kHz\n",
13926b301a05SRhyland Klein 		 __clk_get_name(pllx->hw.clk), cfg->m, cfg->n, cfg->p,
13936b301a05SRhyland Klein 		 cfg->input_rate / cfg->m * cfg->n /
13946b301a05SRhyland Klein 		 pllx->params->pdiv_tohw[cfg->p].pdiv / 1000);
13956b301a05SRhyland Klein 
13966b301a05SRhyland Klein 	return 0;
13976b301a05SRhyland Klein }
13986b301a05SRhyland Klein 
13996b301a05SRhyland Klein /*
14006b301a05SRhyland Klein  * Common configuration for PLLs with fixed input divider policy:
14016b301a05SRhyland Klein  * - always set fixed M-value based on the reference rate
14026b301a05SRhyland Klein  * - always set P-value value 1:1 for output rates above VCO minimum, and
14036b301a05SRhyland Klein  *   choose minimum necessary P-value for output rates below VCO maximum
14046b301a05SRhyland Klein  * - calculate N-value based on selected M and P
14056b301a05SRhyland Klein  * - calculate SDM_DIN fractional part
14066b301a05SRhyland Klein  */
14076b301a05SRhyland Klein static int tegra210_pll_fixed_mdiv_cfg(struct clk_hw *hw,
14086b301a05SRhyland Klein 			       struct tegra_clk_pll_freq_table *cfg,
14096b301a05SRhyland Klein 			       unsigned long rate, unsigned long input_rate)
14106b301a05SRhyland Klein {
14116b301a05SRhyland Klein 	struct tegra_clk_pll *pll = to_clk_pll(hw);
14126b301a05SRhyland Klein 	struct tegra_clk_pll_params *params = pll->params;
14136b301a05SRhyland Klein 	int p;
14146b301a05SRhyland Klein 	unsigned long cf, p_rate;
14156b301a05SRhyland Klein 	u32 pdiv;
14166b301a05SRhyland Klein 
14176b301a05SRhyland Klein 	if (!rate)
14186b301a05SRhyland Klein 		return -EINVAL;
14196b301a05SRhyland Klein 
14206b301a05SRhyland Klein 	if (!(params->flags & TEGRA_PLL_VCO_OUT)) {
14216b301a05SRhyland Klein 		p = DIV_ROUND_UP(params->vco_min, rate);
14226b301a05SRhyland Klein 		p = params->round_p_to_pdiv(p, &pdiv);
14236b301a05SRhyland Klein 	} else {
14246b301a05SRhyland Klein 		p = rate >= params->vco_min ? 1 : -EINVAL;
14256b301a05SRhyland Klein 	}
14266b301a05SRhyland Klein 
1427287980e4SArnd Bergmann 	if (p < 0)
14286b301a05SRhyland Klein 		return -EINVAL;
14296b301a05SRhyland Klein 
14306b301a05SRhyland Klein 	cfg->m = tegra_pll_get_fixed_mdiv(hw, input_rate);
14316b301a05SRhyland Klein 	cfg->p = p;
14326b301a05SRhyland Klein 
14336b301a05SRhyland Klein 	/* Store P as HW value, as that is what is expected */
14346b301a05SRhyland Klein 	cfg->p = tegra_pll_p_div_to_hw(pll, cfg->p);
14356b301a05SRhyland Klein 
14366b301a05SRhyland Klein 	p_rate = rate * p;
14376b301a05SRhyland Klein 	if (p_rate > params->vco_max)
14386b301a05SRhyland Klein 		p_rate = params->vco_max;
14396b301a05SRhyland Klein 	cf = input_rate / cfg->m;
14406b301a05SRhyland Klein 	cfg->n = p_rate / cf;
14416b301a05SRhyland Klein 
14426b301a05SRhyland Klein 	cfg->sdm_data = 0;
1443ef6ed2b9SPeter De Schrijver 	cfg->output_rate = input_rate;
14446b301a05SRhyland Klein 	if (params->sdm_ctrl_reg) {
14456b301a05SRhyland Klein 		unsigned long rem = p_rate - cf * cfg->n;
14466b301a05SRhyland Klein 		/* If ssc is enabled SDM enabled as well, even for integer n */
14476b301a05SRhyland Klein 		if (rem || params->ssc_ctrl_reg) {
14486b301a05SRhyland Klein 			u64 s = rem * PLL_SDM_COEFF;
14496b301a05SRhyland Klein 
14506b301a05SRhyland Klein 			do_div(s, cf);
14516b301a05SRhyland Klein 			s -= PLL_SDM_COEFF / 2;
14526b301a05SRhyland Klein 			cfg->sdm_data = sdin_din_to_data(s);
14536b301a05SRhyland Klein 		}
1454a851ea2bSAlex Frid 		cfg->output_rate *= sdin_get_n_eff(cfg);
1455ef6ed2b9SPeter De Schrijver 		cfg->output_rate /= p * cfg->m * PLL_SDM_COEFF;
1456ef6ed2b9SPeter De Schrijver 	} else {
1457ef6ed2b9SPeter De Schrijver 		cfg->output_rate *= cfg->n;
1458ef6ed2b9SPeter De Schrijver 		cfg->output_rate /= p * cfg->m;
14596b301a05SRhyland Klein 	}
14606b301a05SRhyland Klein 
14616b301a05SRhyland Klein 	cfg->input_rate = input_rate;
14626b301a05SRhyland Klein 
14636b301a05SRhyland Klein 	return 0;
14646b301a05SRhyland Klein }
14656b301a05SRhyland Klein 
14666b301a05SRhyland Klein /*
14676b301a05SRhyland Klein  * clk_pll_set_gain - set gain to m, n to calculate correct VCO rate
14686b301a05SRhyland Klein  *
14696b301a05SRhyland Klein  * @cfg: struct tegra_clk_pll_freq_table * cfg
14706b301a05SRhyland Klein  *
14716b301a05SRhyland Klein  * For Normal mode:
14726b301a05SRhyland Klein  *     Fvco = Fref * NDIV / MDIV
14736b301a05SRhyland Klein  *
14746b301a05SRhyland Klein  * For fractional mode:
14756b301a05SRhyland Klein  *     Fvco = Fref * (NDIV + 0.5 + SDM_DIN / PLL_SDM_COEFF) / MDIV
14766b301a05SRhyland Klein  */
14776b301a05SRhyland Klein static void tegra210_clk_pll_set_gain(struct tegra_clk_pll_freq_table *cfg)
14786b301a05SRhyland Klein {
1479a851ea2bSAlex Frid 	cfg->n = sdin_get_n_eff(cfg);
14806b301a05SRhyland Klein 	cfg->m *= PLL_SDM_COEFF;
14816b301a05SRhyland Klein }
14826b301a05SRhyland Klein 
1483fd360e20SJon Hunter static unsigned long
1484fd360e20SJon Hunter tegra210_clk_adjust_vco_min(struct tegra_clk_pll_params *params,
14856b301a05SRhyland Klein 			    unsigned long parent_rate)
14866b301a05SRhyland Klein {
14876b301a05SRhyland Klein 	unsigned long vco_min = params->vco_min;
14886b301a05SRhyland Klein 
14896b301a05SRhyland Klein 	params->vco_min += DIV_ROUND_UP(parent_rate, PLL_SDM_COEFF);
14906b301a05SRhyland Klein 	vco_min = min(vco_min, params->vco_min);
14916b301a05SRhyland Klein 
14926b301a05SRhyland Klein 	return vco_min;
14936b301a05SRhyland Klein }
14946b301a05SRhyland Klein 
14956b301a05SRhyland Klein static struct div_nmp pllx_nmp = {
14966b301a05SRhyland Klein 	.divm_shift = 0,
14976b301a05SRhyland Klein 	.divm_width = 8,
14986b301a05SRhyland Klein 	.divn_shift = 8,
14996b301a05SRhyland Klein 	.divn_width = 8,
15006b301a05SRhyland Klein 	.divp_shift = 20,
15016b301a05SRhyland Klein 	.divp_width = 5,
15026b301a05SRhyland Klein };
15036b301a05SRhyland Klein /*
15046b301a05SRhyland Klein  * PLL post divider maps - two types: quasi-linear and exponential
15056b301a05SRhyland Klein  * post divider.
15066b301a05SRhyland Klein  */
15076b301a05SRhyland Klein #define PLL_QLIN_PDIV_MAX	16
15086b301a05SRhyland Klein static const struct pdiv_map pll_qlin_pdiv_to_hw[] = {
15096b301a05SRhyland Klein 	{ .pdiv =  1, .hw_val =  0 },
15106b301a05SRhyland Klein 	{ .pdiv =  2, .hw_val =  1 },
15116b301a05SRhyland Klein 	{ .pdiv =  3, .hw_val =  2 },
15126b301a05SRhyland Klein 	{ .pdiv =  4, .hw_val =  3 },
15136b301a05SRhyland Klein 	{ .pdiv =  5, .hw_val =  4 },
15146b301a05SRhyland Klein 	{ .pdiv =  6, .hw_val =  5 },
15156b301a05SRhyland Klein 	{ .pdiv =  8, .hw_val =  6 },
15166b301a05SRhyland Klein 	{ .pdiv =  9, .hw_val =  7 },
15176b301a05SRhyland Klein 	{ .pdiv = 10, .hw_val =  8 },
15186b301a05SRhyland Klein 	{ .pdiv = 12, .hw_val =  9 },
15196b301a05SRhyland Klein 	{ .pdiv = 15, .hw_val = 10 },
15206b301a05SRhyland Klein 	{ .pdiv = 16, .hw_val = 11 },
15216b301a05SRhyland Klein 	{ .pdiv = 18, .hw_val = 12 },
15226b301a05SRhyland Klein 	{ .pdiv = 20, .hw_val = 13 },
15236b301a05SRhyland Klein 	{ .pdiv = 24, .hw_val = 14 },
15246b301a05SRhyland Klein 	{ .pdiv = 30, .hw_val = 15 },
15256b301a05SRhyland Klein 	{ .pdiv = 32, .hw_val = 16 },
15266b301a05SRhyland Klein };
15276b301a05SRhyland Klein 
15286b301a05SRhyland Klein static u32 pll_qlin_p_to_pdiv(u32 p, u32 *pdiv)
15296b301a05SRhyland Klein {
15306b301a05SRhyland Klein 	int i;
15316b301a05SRhyland Klein 
15326b301a05SRhyland Klein 	if (p) {
15336b301a05SRhyland Klein 		for (i = 0; i <= PLL_QLIN_PDIV_MAX; i++) {
15346b301a05SRhyland Klein 			if (p <= pll_qlin_pdiv_to_hw[i].pdiv) {
15356b301a05SRhyland Klein 				if (pdiv)
15366b301a05SRhyland Klein 					*pdiv = i;
15376b301a05SRhyland Klein 				return pll_qlin_pdiv_to_hw[i].pdiv;
15386b301a05SRhyland Klein 			}
15396b301a05SRhyland Klein 		}
15406b301a05SRhyland Klein 	}
15416b301a05SRhyland Klein 
15426b301a05SRhyland Klein 	return -EINVAL;
15436b301a05SRhyland Klein }
15446b301a05SRhyland Klein 
15456b301a05SRhyland Klein #define PLL_EXPO_PDIV_MAX	7
15466b301a05SRhyland Klein static const struct pdiv_map pll_expo_pdiv_to_hw[] = {
15476b301a05SRhyland Klein 	{ .pdiv =   1, .hw_val = 0 },
15486b301a05SRhyland Klein 	{ .pdiv =   2, .hw_val = 1 },
15496b301a05SRhyland Klein 	{ .pdiv =   4, .hw_val = 2 },
15506b301a05SRhyland Klein 	{ .pdiv =   8, .hw_val = 3 },
15516b301a05SRhyland Klein 	{ .pdiv =  16, .hw_val = 4 },
15526b301a05SRhyland Klein 	{ .pdiv =  32, .hw_val = 5 },
15536b301a05SRhyland Klein 	{ .pdiv =  64, .hw_val = 6 },
15546b301a05SRhyland Klein 	{ .pdiv = 128, .hw_val = 7 },
15556b301a05SRhyland Klein };
15566b301a05SRhyland Klein 
15576b301a05SRhyland Klein static u32 pll_expo_p_to_pdiv(u32 p, u32 *pdiv)
15586b301a05SRhyland Klein {
15596b301a05SRhyland Klein 	if (p) {
15606b301a05SRhyland Klein 		u32 i = fls(p);
15616b301a05SRhyland Klein 
15626b301a05SRhyland Klein 		if (i == ffs(p))
15636b301a05SRhyland Klein 			i--;
15646b301a05SRhyland Klein 
15656b301a05SRhyland Klein 		if (i <= PLL_EXPO_PDIV_MAX) {
15666b301a05SRhyland Klein 			if (pdiv)
15676b301a05SRhyland Klein 				*pdiv = i;
15686b301a05SRhyland Klein 			return 1 << i;
15696b301a05SRhyland Klein 		}
15706b301a05SRhyland Klein 	}
15716b301a05SRhyland Klein 	return -EINVAL;
15726b301a05SRhyland Klein }
15736b301a05SRhyland Klein 
15746b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_x_freq_table[] = {
15756b301a05SRhyland Klein 	/* 1 GHz */
1576eddb65e7SThierry Reding 	{ 12000000, 1000000000, 166, 1, 2, 0 }, /* actual: 996.0 MHz */
1577eddb65e7SThierry Reding 	{ 13000000, 1000000000, 153, 1, 2, 0 }, /* actual: 994.0 MHz */
1578eddb65e7SThierry Reding 	{ 38400000, 1000000000, 156, 3, 2, 0 }, /* actual: 998.4 MHz */
15796b301a05SRhyland Klein 	{        0,          0,   0, 0, 0, 0 },
15806b301a05SRhyland Klein };
15816b301a05SRhyland Klein 
15826b301a05SRhyland Klein static struct tegra_clk_pll_params pll_x_params = {
15836b301a05SRhyland Klein 	.input_min = 12000000,
15846b301a05SRhyland Klein 	.input_max = 800000000,
15856b301a05SRhyland Klein 	.cf_min = 12000000,
15866b301a05SRhyland Klein 	.cf_max = 38400000,
15876b301a05SRhyland Klein 	.vco_min = 1350000000,
15886b301a05SRhyland Klein 	.vco_max = 3000000000UL,
15896b301a05SRhyland Klein 	.base_reg = PLLX_BASE,
15906b301a05SRhyland Klein 	.misc_reg = PLLX_MISC0,
15916b301a05SRhyland Klein 	.lock_mask = PLL_BASE_LOCK,
15926b301a05SRhyland Klein 	.lock_enable_bit_idx = PLL_MISC_LOCK_ENABLE,
15936b301a05SRhyland Klein 	.lock_delay = 300,
15946b301a05SRhyland Klein 	.ext_misc_reg[0] = PLLX_MISC0,
15956b301a05SRhyland Klein 	.ext_misc_reg[1] = PLLX_MISC1,
15966b301a05SRhyland Klein 	.ext_misc_reg[2] = PLLX_MISC2,
15976b301a05SRhyland Klein 	.ext_misc_reg[3] = PLLX_MISC3,
15986b301a05SRhyland Klein 	.ext_misc_reg[4] = PLLX_MISC4,
15996b301a05SRhyland Klein 	.ext_misc_reg[5] = PLLX_MISC5,
16006b301a05SRhyland Klein 	.iddq_reg = PLLX_MISC3,
16016b301a05SRhyland Klein 	.iddq_bit_idx = PLLXP_IDDQ_BIT,
16026b301a05SRhyland Klein 	.max_p = PLL_QLIN_PDIV_MAX,
16036b301a05SRhyland Klein 	.mdiv_default = 2,
16046b301a05SRhyland Klein 	.dyn_ramp_reg = PLLX_MISC2,
16056b301a05SRhyland Klein 	.stepa_shift = 16,
16066b301a05SRhyland Klein 	.stepb_shift = 24,
16076b301a05SRhyland Klein 	.round_p_to_pdiv = pll_qlin_p_to_pdiv,
16086b301a05SRhyland Klein 	.pdiv_tohw = pll_qlin_pdiv_to_hw,
16096b301a05SRhyland Klein 	.div_nmp = &pllx_nmp,
16106b301a05SRhyland Klein 	.freq_table = pll_x_freq_table,
16116b301a05SRhyland Klein 	.flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_HAS_LOCK_ENABLE,
16126b301a05SRhyland Klein 	.dyn_ramp = tegra210_pllx_dyn_ramp,
16136b301a05SRhyland Klein 	.set_defaults = tegra210_pllx_set_defaults,
16146b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
16156b301a05SRhyland Klein };
16166b301a05SRhyland Klein 
16176b301a05SRhyland Klein static struct div_nmp pllc_nmp = {
16186b301a05SRhyland Klein 	.divm_shift = 0,
16196b301a05SRhyland Klein 	.divm_width = 8,
16206b301a05SRhyland Klein 	.divn_shift = 10,
16216b301a05SRhyland Klein 	.divn_width = 8,
16226b301a05SRhyland Klein 	.divp_shift = 20,
16236b301a05SRhyland Klein 	.divp_width = 5,
16246b301a05SRhyland Klein };
16256b301a05SRhyland Klein 
16266b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_cx_freq_table[] = {
1627eddb65e7SThierry Reding 	{ 12000000, 510000000, 85, 1, 2, 0 },
1628eddb65e7SThierry Reding 	{ 13000000, 510000000, 78, 1, 2, 0 }, /* actual: 507.0 MHz */
1629eddb65e7SThierry Reding 	{ 38400000, 510000000, 79, 3, 2, 0 }, /* actual: 505.6 MHz */
16306b301a05SRhyland Klein 	{        0,         0,  0, 0, 0, 0 },
16316b301a05SRhyland Klein };
16326b301a05SRhyland Klein 
16336b301a05SRhyland Klein static struct tegra_clk_pll_params pll_c_params = {
16346b301a05SRhyland Klein 	.input_min = 12000000,
16356b301a05SRhyland Klein 	.input_max = 700000000,
16366b301a05SRhyland Klein 	.cf_min = 12000000,
16376b301a05SRhyland Klein 	.cf_max = 50000000,
16386b301a05SRhyland Klein 	.vco_min = 600000000,
16396b301a05SRhyland Klein 	.vco_max = 1200000000,
16406b301a05SRhyland Klein 	.base_reg = PLLC_BASE,
16416b301a05SRhyland Klein 	.misc_reg = PLLC_MISC0,
16426b301a05SRhyland Klein 	.lock_mask = PLL_BASE_LOCK,
16436b301a05SRhyland Klein 	.lock_delay = 300,
16446b301a05SRhyland Klein 	.iddq_reg = PLLC_MISC1,
16456b301a05SRhyland Klein 	.iddq_bit_idx = PLLCX_IDDQ_BIT,
16466b301a05SRhyland Klein 	.reset_reg = PLLC_MISC0,
16476b301a05SRhyland Klein 	.reset_bit_idx = PLLCX_RESET_BIT,
16486b301a05SRhyland Klein 	.max_p = PLL_QLIN_PDIV_MAX,
16496b301a05SRhyland Klein 	.ext_misc_reg[0] = PLLC_MISC0,
16506b301a05SRhyland Klein 	.ext_misc_reg[1] = PLLC_MISC1,
16516b301a05SRhyland Klein 	.ext_misc_reg[2] = PLLC_MISC2,
16526b301a05SRhyland Klein 	.ext_misc_reg[3] = PLLC_MISC3,
16536b301a05SRhyland Klein 	.round_p_to_pdiv = pll_qlin_p_to_pdiv,
16546b301a05SRhyland Klein 	.pdiv_tohw = pll_qlin_pdiv_to_hw,
16556b301a05SRhyland Klein 	.mdiv_default = 3,
16566b301a05SRhyland Klein 	.div_nmp = &pllc_nmp,
16576b301a05SRhyland Klein 	.freq_table = pll_cx_freq_table,
165814050118SRhyland Klein 	.flags = TEGRA_PLL_USE_LOCK,
16596b301a05SRhyland Klein 	.set_defaults = _pllc_set_defaults,
16606b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
16616b301a05SRhyland Klein };
16626b301a05SRhyland Klein 
16636b301a05SRhyland Klein static struct div_nmp pllcx_nmp = {
16646b301a05SRhyland Klein 	.divm_shift = 0,
16656b301a05SRhyland Klein 	.divm_width = 8,
16666b301a05SRhyland Klein 	.divn_shift = 10,
16676b301a05SRhyland Klein 	.divn_width = 8,
16686b301a05SRhyland Klein 	.divp_shift = 20,
16696b301a05SRhyland Klein 	.divp_width = 5,
16706b301a05SRhyland Klein };
16716b301a05SRhyland Klein 
16726b301a05SRhyland Klein static struct tegra_clk_pll_params pll_c2_params = {
16736b301a05SRhyland Klein 	.input_min = 12000000,
16746b301a05SRhyland Klein 	.input_max = 700000000,
16756b301a05SRhyland Klein 	.cf_min = 12000000,
16766b301a05SRhyland Klein 	.cf_max = 50000000,
16776b301a05SRhyland Klein 	.vco_min = 600000000,
16786b301a05SRhyland Klein 	.vco_max = 1200000000,
16796b301a05SRhyland Klein 	.base_reg = PLLC2_BASE,
16806b301a05SRhyland Klein 	.misc_reg = PLLC2_MISC0,
16816b301a05SRhyland Klein 	.iddq_reg = PLLC2_MISC1,
16826b301a05SRhyland Klein 	.iddq_bit_idx = PLLCX_IDDQ_BIT,
16836b301a05SRhyland Klein 	.reset_reg = PLLC2_MISC0,
16846b301a05SRhyland Klein 	.reset_bit_idx = PLLCX_RESET_BIT,
16856b301a05SRhyland Klein 	.lock_mask = PLLCX_BASE_LOCK,
16866b301a05SRhyland Klein 	.lock_delay = 300,
16876b301a05SRhyland Klein 	.round_p_to_pdiv = pll_qlin_p_to_pdiv,
16886b301a05SRhyland Klein 	.pdiv_tohw = pll_qlin_pdiv_to_hw,
16896b301a05SRhyland Klein 	.mdiv_default = 3,
16906b301a05SRhyland Klein 	.div_nmp = &pllcx_nmp,
16916b301a05SRhyland Klein 	.max_p = PLL_QLIN_PDIV_MAX,
16926b301a05SRhyland Klein 	.ext_misc_reg[0] = PLLC2_MISC0,
16936b301a05SRhyland Klein 	.ext_misc_reg[1] = PLLC2_MISC1,
16946b301a05SRhyland Klein 	.ext_misc_reg[2] = PLLC2_MISC2,
16956b301a05SRhyland Klein 	.ext_misc_reg[3] = PLLC2_MISC3,
16966b301a05SRhyland Klein 	.freq_table = pll_cx_freq_table,
169714050118SRhyland Klein 	.flags = TEGRA_PLL_USE_LOCK,
16986b301a05SRhyland Klein 	.set_defaults = _pllc2_set_defaults,
16996b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
17006b301a05SRhyland Klein };
17016b301a05SRhyland Klein 
17026b301a05SRhyland Klein static struct tegra_clk_pll_params pll_c3_params = {
17036b301a05SRhyland Klein 	.input_min = 12000000,
17046b301a05SRhyland Klein 	.input_max = 700000000,
17056b301a05SRhyland Klein 	.cf_min = 12000000,
17066b301a05SRhyland Klein 	.cf_max = 50000000,
17076b301a05SRhyland Klein 	.vco_min = 600000000,
17086b301a05SRhyland Klein 	.vco_max = 1200000000,
17096b301a05SRhyland Klein 	.base_reg = PLLC3_BASE,
17106b301a05SRhyland Klein 	.misc_reg = PLLC3_MISC0,
17116b301a05SRhyland Klein 	.lock_mask = PLLCX_BASE_LOCK,
17126b301a05SRhyland Klein 	.lock_delay = 300,
17136b301a05SRhyland Klein 	.iddq_reg = PLLC3_MISC1,
17146b301a05SRhyland Klein 	.iddq_bit_idx = PLLCX_IDDQ_BIT,
17156b301a05SRhyland Klein 	.reset_reg = PLLC3_MISC0,
17166b301a05SRhyland Klein 	.reset_bit_idx = PLLCX_RESET_BIT,
17176b301a05SRhyland Klein 	.round_p_to_pdiv = pll_qlin_p_to_pdiv,
17186b301a05SRhyland Klein 	.pdiv_tohw = pll_qlin_pdiv_to_hw,
17196b301a05SRhyland Klein 	.mdiv_default = 3,
17206b301a05SRhyland Klein 	.div_nmp = &pllcx_nmp,
17216b301a05SRhyland Klein 	.max_p = PLL_QLIN_PDIV_MAX,
17226b301a05SRhyland Klein 	.ext_misc_reg[0] = PLLC3_MISC0,
17236b301a05SRhyland Klein 	.ext_misc_reg[1] = PLLC3_MISC1,
17246b301a05SRhyland Klein 	.ext_misc_reg[2] = PLLC3_MISC2,
17256b301a05SRhyland Klein 	.ext_misc_reg[3] = PLLC3_MISC3,
17266b301a05SRhyland Klein 	.freq_table = pll_cx_freq_table,
172714050118SRhyland Klein 	.flags = TEGRA_PLL_USE_LOCK,
17286b301a05SRhyland Klein 	.set_defaults = _pllc3_set_defaults,
17296b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
17306b301a05SRhyland Klein };
17316b301a05SRhyland Klein 
17326b301a05SRhyland Klein static struct div_nmp pllss_nmp = {
17336b301a05SRhyland Klein 	.divm_shift = 0,
17346b301a05SRhyland Klein 	.divm_width = 8,
17356b301a05SRhyland Klein 	.divn_shift = 8,
17366b301a05SRhyland Klein 	.divn_width = 8,
17376b301a05SRhyland Klein 	.divp_shift = 19,
17386b301a05SRhyland Klein 	.divp_width = 5,
17396b301a05SRhyland Klein };
17406b301a05SRhyland Klein 
17416b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_c4_vco_freq_table[] = {
1742eddb65e7SThierry Reding 	{ 12000000, 600000000, 50, 1, 1, 0 },
1743eddb65e7SThierry Reding 	{ 13000000, 600000000, 46, 1, 1, 0 }, /* actual: 598.0 MHz */
1744eddb65e7SThierry Reding 	{ 38400000, 600000000, 62, 4, 1, 0 }, /* actual: 595.2 MHz */
17456b301a05SRhyland Klein 	{        0,         0,  0, 0, 0, 0 },
17466b301a05SRhyland Klein };
17476b301a05SRhyland Klein 
17486b301a05SRhyland Klein static const struct clk_div_table pll_vco_post_div_table[] = {
17496b301a05SRhyland Klein 	{ .val =  0, .div =  1 },
17506b301a05SRhyland Klein 	{ .val =  1, .div =  2 },
17516b301a05SRhyland Klein 	{ .val =  2, .div =  3 },
17526b301a05SRhyland Klein 	{ .val =  3, .div =  4 },
17536b301a05SRhyland Klein 	{ .val =  4, .div =  5 },
17546b301a05SRhyland Klein 	{ .val =  5, .div =  6 },
17556b301a05SRhyland Klein 	{ .val =  6, .div =  8 },
17566b301a05SRhyland Klein 	{ .val =  7, .div = 10 },
17576b301a05SRhyland Klein 	{ .val =  8, .div = 12 },
17586b301a05SRhyland Klein 	{ .val =  9, .div = 16 },
17596b301a05SRhyland Klein 	{ .val = 10, .div = 12 },
17606b301a05SRhyland Klein 	{ .val = 11, .div = 16 },
17616b301a05SRhyland Klein 	{ .val = 12, .div = 20 },
17626b301a05SRhyland Klein 	{ .val = 13, .div = 24 },
17636b301a05SRhyland Klein 	{ .val = 14, .div = 32 },
17646b301a05SRhyland Klein 	{ .val =  0, .div =  0 },
17656b301a05SRhyland Klein };
17666b301a05SRhyland Klein 
17676b301a05SRhyland Klein static struct tegra_clk_pll_params pll_c4_vco_params = {
17686b301a05SRhyland Klein 	.input_min = 9600000,
17696b301a05SRhyland Klein 	.input_max = 800000000,
17706b301a05SRhyland Klein 	.cf_min = 9600000,
17716b301a05SRhyland Klein 	.cf_max = 19200000,
17726b301a05SRhyland Klein 	.vco_min = 500000000,
17736b301a05SRhyland Klein 	.vco_max = 1080000000,
17746b301a05SRhyland Klein 	.base_reg = PLLC4_BASE,
17756b301a05SRhyland Klein 	.misc_reg = PLLC4_MISC0,
17766b301a05SRhyland Klein 	.lock_mask = PLL_BASE_LOCK,
17776b301a05SRhyland Klein 	.lock_delay = 300,
17786b301a05SRhyland Klein 	.max_p = PLL_QLIN_PDIV_MAX,
17796b301a05SRhyland Klein 	.ext_misc_reg[0] = PLLC4_MISC0,
17806b301a05SRhyland Klein 	.iddq_reg = PLLC4_BASE,
17816b301a05SRhyland Klein 	.iddq_bit_idx = PLLSS_IDDQ_BIT,
17826b301a05SRhyland Klein 	.round_p_to_pdiv = pll_qlin_p_to_pdiv,
17836b301a05SRhyland Klein 	.pdiv_tohw = pll_qlin_pdiv_to_hw,
17846b301a05SRhyland Klein 	.mdiv_default = 3,
17856b301a05SRhyland Klein 	.div_nmp = &pllss_nmp,
17866b301a05SRhyland Klein 	.freq_table = pll_c4_vco_freq_table,
17876b301a05SRhyland Klein 	.set_defaults = tegra210_pllc4_set_defaults,
178814050118SRhyland Klein 	.flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_VCO_OUT,
17896b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
17906b301a05SRhyland Klein };
17916b301a05SRhyland Klein 
17926b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_m_freq_table[] = {
1793eddb65e7SThierry Reding 	{ 12000000,  800000000,  66, 1, 1, 0 }, /* actual: 792.0 MHz */
1794eddb65e7SThierry Reding 	{ 13000000,  800000000,  61, 1, 1, 0 }, /* actual: 793.0 MHz */
1795eddb65e7SThierry Reding 	{ 38400000,  297600000,  93, 4, 3, 0 },
1796eddb65e7SThierry Reding 	{ 38400000,  400000000, 125, 4, 3, 0 },
1797eddb65e7SThierry Reding 	{ 38400000,  532800000, 111, 4, 2, 0 },
1798eddb65e7SThierry Reding 	{ 38400000,  665600000, 104, 3, 2, 0 },
1799eddb65e7SThierry Reding 	{ 38400000,  800000000, 125, 3, 2, 0 },
1800eddb65e7SThierry Reding 	{ 38400000,  931200000,  97, 4, 1, 0 },
1801eddb65e7SThierry Reding 	{ 38400000, 1065600000, 111, 4, 1, 0 },
1802eddb65e7SThierry Reding 	{ 38400000, 1200000000, 125, 4, 1, 0 },
1803eddb65e7SThierry Reding 	{ 38400000, 1331200000, 104, 3, 1, 0 },
1804eddb65e7SThierry Reding 	{ 38400000, 1459200000,  76, 2, 1, 0 },
1805eddb65e7SThierry Reding 	{ 38400000, 1600000000, 125, 3, 1, 0 },
18066b301a05SRhyland Klein 	{        0,          0,   0, 0, 0, 0 },
18076b301a05SRhyland Klein };
18086b301a05SRhyland Klein 
18096b301a05SRhyland Klein static struct div_nmp pllm_nmp = {
18106b301a05SRhyland Klein 	.divm_shift = 0,
18116b301a05SRhyland Klein 	.divm_width = 8,
18126b301a05SRhyland Klein 	.override_divm_shift = 0,
18136b301a05SRhyland Klein 	.divn_shift = 8,
18146b301a05SRhyland Klein 	.divn_width = 8,
18156b301a05SRhyland Klein 	.override_divn_shift = 8,
18166b301a05SRhyland Klein 	.divp_shift = 20,
18176b301a05SRhyland Klein 	.divp_width = 5,
18186b301a05SRhyland Klein 	.override_divp_shift = 27,
18196b301a05SRhyland Klein };
18206b301a05SRhyland Klein 
18216b301a05SRhyland Klein static struct tegra_clk_pll_params pll_m_params = {
18226b301a05SRhyland Klein 	.input_min = 9600000,
18236b301a05SRhyland Klein 	.input_max = 500000000,
18246b301a05SRhyland Klein 	.cf_min = 9600000,
18256b301a05SRhyland Klein 	.cf_max = 19200000,
18266b301a05SRhyland Klein 	.vco_min = 800000000,
18276b301a05SRhyland Klein 	.vco_max = 1866000000,
18286b301a05SRhyland Klein 	.base_reg = PLLM_BASE,
1829474f2ba2SRhyland Klein 	.misc_reg = PLLM_MISC2,
18306b301a05SRhyland Klein 	.lock_mask = PLL_BASE_LOCK,
18316b301a05SRhyland Klein 	.lock_enable_bit_idx = PLLM_MISC_LOCK_ENABLE,
18326b301a05SRhyland Klein 	.lock_delay = 300,
1833474f2ba2SRhyland Klein 	.iddq_reg = PLLM_MISC2,
18346b301a05SRhyland Klein 	.iddq_bit_idx = PLLM_IDDQ_BIT,
18356b301a05SRhyland Klein 	.max_p = PLL_QLIN_PDIV_MAX,
1836474f2ba2SRhyland Klein 	.ext_misc_reg[0] = PLLM_MISC2,
1837d9e65791SJon Hunter 	.ext_misc_reg[1] = PLLM_MISC1,
18386b301a05SRhyland Klein 	.round_p_to_pdiv = pll_qlin_p_to_pdiv,
18396b301a05SRhyland Klein 	.pdiv_tohw = pll_qlin_pdiv_to_hw,
18406b301a05SRhyland Klein 	.div_nmp = &pllm_nmp,
18416b301a05SRhyland Klein 	.pmc_divnm_reg = PMC_PLLM_WB0_OVERRIDE,
18426b301a05SRhyland Klein 	.pmc_divp_reg = PMC_PLLM_WB0_OVERRIDE_2,
18436b301a05SRhyland Klein 	.freq_table = pll_m_freq_table,
18446b301a05SRhyland Klein 	.flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_HAS_LOCK_ENABLE,
18456b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
18466b301a05SRhyland Klein };
18476b301a05SRhyland Klein 
18486b301a05SRhyland Klein static struct tegra_clk_pll_params pll_mb_params = {
18496b301a05SRhyland Klein 	.input_min = 9600000,
18506b301a05SRhyland Klein 	.input_max = 500000000,
18516b301a05SRhyland Klein 	.cf_min = 9600000,
18526b301a05SRhyland Klein 	.cf_max = 19200000,
18536b301a05SRhyland Klein 	.vco_min = 800000000,
18546b301a05SRhyland Klein 	.vco_max = 1866000000,
18556b301a05SRhyland Klein 	.base_reg = PLLMB_BASE,
1856474f2ba2SRhyland Klein 	.misc_reg = PLLMB_MISC1,
18576b301a05SRhyland Klein 	.lock_mask = PLL_BASE_LOCK,
18586b301a05SRhyland Klein 	.lock_delay = 300,
1859474f2ba2SRhyland Klein 	.iddq_reg = PLLMB_MISC1,
18606b301a05SRhyland Klein 	.iddq_bit_idx = PLLMB_IDDQ_BIT,
18616b301a05SRhyland Klein 	.max_p = PLL_QLIN_PDIV_MAX,
1862474f2ba2SRhyland Klein 	.ext_misc_reg[0] = PLLMB_MISC1,
18636b301a05SRhyland Klein 	.round_p_to_pdiv = pll_qlin_p_to_pdiv,
18646b301a05SRhyland Klein 	.pdiv_tohw = pll_qlin_pdiv_to_hw,
18656b301a05SRhyland Klein 	.div_nmp = &pllm_nmp,
18666b301a05SRhyland Klein 	.freq_table = pll_m_freq_table,
186714050118SRhyland Klein 	.flags = TEGRA_PLL_USE_LOCK,
18686b301a05SRhyland Klein 	.set_defaults = tegra210_pllmb_set_defaults,
18696b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
18706b301a05SRhyland Klein };
18716b301a05SRhyland Klein 
18726b301a05SRhyland Klein 
18736b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_e_freq_table[] = {
18746b301a05SRhyland Klein 	/* PLLE special case: use cpcon field to store cml divider value */
18756b301a05SRhyland Klein 	{ 672000000, 100000000, 125, 42, 0, 13 },
18766b301a05SRhyland Klein 	{ 624000000, 100000000, 125, 39, 0, 13 },
18776b301a05SRhyland Klein 	{ 336000000, 100000000, 125, 21, 0, 13 },
18786b301a05SRhyland Klein 	{ 312000000, 100000000, 200, 26, 0, 14 },
18796b301a05SRhyland Klein 	{  38400000, 100000000, 125,  2, 0, 14 },
18806b301a05SRhyland Klein 	{  12000000, 100000000, 200,  1, 0, 14 },
18816b301a05SRhyland Klein 	{         0,         0,   0,  0, 0,  0 },
18826b301a05SRhyland Klein };
18836b301a05SRhyland Klein 
18846b301a05SRhyland Klein static struct div_nmp plle_nmp = {
18856b301a05SRhyland Klein 	.divm_shift = 0,
18866b301a05SRhyland Klein 	.divm_width = 8,
18876b301a05SRhyland Klein 	.divn_shift = 8,
18886b301a05SRhyland Klein 	.divn_width = 8,
18896b301a05SRhyland Klein 	.divp_shift = 24,
18906b301a05SRhyland Klein 	.divp_width = 5,
18916b301a05SRhyland Klein };
18926b301a05SRhyland Klein 
18936b301a05SRhyland Klein static struct tegra_clk_pll_params pll_e_params = {
18946b301a05SRhyland Klein 	.input_min = 12000000,
18956b301a05SRhyland Klein 	.input_max = 800000000,
18966b301a05SRhyland Klein 	.cf_min = 12000000,
18976b301a05SRhyland Klein 	.cf_max = 38400000,
18986b301a05SRhyland Klein 	.vco_min = 1600000000,
18996b301a05SRhyland Klein 	.vco_max = 2500000000U,
19006b301a05SRhyland Klein 	.base_reg = PLLE_BASE,
19016b301a05SRhyland Klein 	.misc_reg = PLLE_MISC0,
19026b301a05SRhyland Klein 	.aux_reg = PLLE_AUX,
19036b301a05SRhyland Klein 	.lock_mask = PLLE_MISC_LOCK,
19046b301a05SRhyland Klein 	.lock_enable_bit_idx = PLLE_MISC_LOCK_ENABLE,
19056b301a05SRhyland Klein 	.lock_delay = 300,
19066b301a05SRhyland Klein 	.div_nmp = &plle_nmp,
19076b301a05SRhyland Klein 	.freq_table = pll_e_freq_table,
19086b301a05SRhyland Klein 	.flags = TEGRA_PLL_FIXED | TEGRA_PLL_LOCK_MISC | TEGRA_PLL_USE_LOCK |
19096b301a05SRhyland Klein 		 TEGRA_PLL_HAS_LOCK_ENABLE,
19106b301a05SRhyland Klein 	.fixed_rate = 100000000,
19116b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
19126b301a05SRhyland Klein };
19136b301a05SRhyland Klein 
19146b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_re_vco_freq_table[] = {
1915eddb65e7SThierry Reding 	{ 12000000, 672000000, 56, 1, 1, 0 },
1916eddb65e7SThierry Reding 	{ 13000000, 672000000, 51, 1, 1, 0 }, /* actual: 663.0 MHz */
1917eddb65e7SThierry Reding 	{ 38400000, 672000000, 70, 4, 1, 0 },
19186b301a05SRhyland Klein 	{        0,         0,  0, 0, 0, 0 },
19196b301a05SRhyland Klein };
19206b301a05SRhyland Klein 
19216b301a05SRhyland Klein static struct div_nmp pllre_nmp = {
19226b301a05SRhyland Klein 	.divm_shift = 0,
19236b301a05SRhyland Klein 	.divm_width = 8,
19246b301a05SRhyland Klein 	.divn_shift = 8,
19256b301a05SRhyland Klein 	.divn_width = 8,
19266b301a05SRhyland Klein 	.divp_shift = 16,
19276b301a05SRhyland Klein 	.divp_width = 5,
19286b301a05SRhyland Klein };
19296b301a05SRhyland Klein 
19306b301a05SRhyland Klein static struct tegra_clk_pll_params pll_re_vco_params = {
19316b301a05SRhyland Klein 	.input_min = 9600000,
19326b301a05SRhyland Klein 	.input_max = 800000000,
19336b301a05SRhyland Klein 	.cf_min = 9600000,
19346b301a05SRhyland Klein 	.cf_max = 19200000,
19356b301a05SRhyland Klein 	.vco_min = 350000000,
19366b301a05SRhyland Klein 	.vco_max = 700000000,
19376b301a05SRhyland Klein 	.base_reg = PLLRE_BASE,
19386b301a05SRhyland Klein 	.misc_reg = PLLRE_MISC0,
19396b301a05SRhyland Klein 	.lock_mask = PLLRE_MISC_LOCK,
19406b301a05SRhyland Klein 	.lock_delay = 300,
19416b301a05SRhyland Klein 	.max_p = PLL_QLIN_PDIV_MAX,
19426b301a05SRhyland Klein 	.ext_misc_reg[0] = PLLRE_MISC0,
19436b301a05SRhyland Klein 	.iddq_reg = PLLRE_MISC0,
19446b301a05SRhyland Klein 	.iddq_bit_idx = PLLRE_IDDQ_BIT,
19456b301a05SRhyland Klein 	.round_p_to_pdiv = pll_qlin_p_to_pdiv,
19466b301a05SRhyland Klein 	.pdiv_tohw = pll_qlin_pdiv_to_hw,
19476b301a05SRhyland Klein 	.div_nmp = &pllre_nmp,
19486b301a05SRhyland Klein 	.freq_table = pll_re_vco_freq_table,
194914050118SRhyland Klein 	.flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_LOCK_MISC | TEGRA_PLL_VCO_OUT,
19506b301a05SRhyland Klein 	.set_defaults = tegra210_pllre_set_defaults,
19516b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
19526b301a05SRhyland Klein };
19536b301a05SRhyland Klein 
19546b301a05SRhyland Klein static struct div_nmp pllp_nmp = {
19556b301a05SRhyland Klein 	.divm_shift = 0,
19566b301a05SRhyland Klein 	.divm_width = 8,
19576b301a05SRhyland Klein 	.divn_shift = 10,
19586b301a05SRhyland Klein 	.divn_width = 8,
19596b301a05SRhyland Klein 	.divp_shift = 20,
19606b301a05SRhyland Klein 	.divp_width = 5,
19616b301a05SRhyland Klein };
19626b301a05SRhyland Klein 
19636b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_p_freq_table[] = {
1964eddb65e7SThierry Reding 	{ 12000000, 408000000, 34, 1, 1, 0 },
1965eddb65e7SThierry Reding 	{ 38400000, 408000000, 85, 8, 1, 0 }, /* cf = 4.8MHz, allowed exception */
19666b301a05SRhyland Klein 	{        0,         0,  0, 0, 0, 0 },
19676b301a05SRhyland Klein };
19686b301a05SRhyland Klein 
19696b301a05SRhyland Klein static struct tegra_clk_pll_params pll_p_params = {
19706b301a05SRhyland Klein 	.input_min = 9600000,
19716b301a05SRhyland Klein 	.input_max = 800000000,
19726b301a05SRhyland Klein 	.cf_min = 9600000,
19736b301a05SRhyland Klein 	.cf_max = 19200000,
19746b301a05SRhyland Klein 	.vco_min = 350000000,
19756b301a05SRhyland Klein 	.vco_max = 700000000,
19766b301a05SRhyland Klein 	.base_reg = PLLP_BASE,
19776b301a05SRhyland Klein 	.misc_reg = PLLP_MISC0,
19786b301a05SRhyland Klein 	.lock_mask = PLL_BASE_LOCK,
19796b301a05SRhyland Klein 	.lock_delay = 300,
19806b301a05SRhyland Klein 	.iddq_reg = PLLP_MISC0,
19816b301a05SRhyland Klein 	.iddq_bit_idx = PLLXP_IDDQ_BIT,
19826b301a05SRhyland Klein 	.ext_misc_reg[0] = PLLP_MISC0,
19836b301a05SRhyland Klein 	.ext_misc_reg[1] = PLLP_MISC1,
19846b301a05SRhyland Klein 	.div_nmp = &pllp_nmp,
19856b301a05SRhyland Klein 	.freq_table = pll_p_freq_table,
19866b301a05SRhyland Klein 	.fixed_rate = 408000000,
198714050118SRhyland Klein 	.flags = TEGRA_PLL_FIXED | TEGRA_PLL_USE_LOCK | TEGRA_PLL_VCO_OUT,
19886b301a05SRhyland Klein 	.set_defaults = tegra210_pllp_set_defaults,
19896b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
19906b301a05SRhyland Klein };
19916b301a05SRhyland Klein 
19926b301a05SRhyland Klein static struct tegra_clk_pll_params pll_a1_params = {
19936b301a05SRhyland Klein 	.input_min = 12000000,
19946b301a05SRhyland Klein 	.input_max = 700000000,
19956b301a05SRhyland Klein 	.cf_min = 12000000,
19966b301a05SRhyland Klein 	.cf_max = 50000000,
19976b301a05SRhyland Klein 	.vco_min = 600000000,
19986b301a05SRhyland Klein 	.vco_max = 1200000000,
19996b301a05SRhyland Klein 	.base_reg = PLLA1_BASE,
20006b301a05SRhyland Klein 	.misc_reg = PLLA1_MISC0,
20016b301a05SRhyland Klein 	.lock_mask = PLLCX_BASE_LOCK,
20026b301a05SRhyland Klein 	.lock_delay = 300,
20039326947fSPeter De Schrijver 	.iddq_reg = PLLA1_MISC1,
20046b301a05SRhyland Klein 	.iddq_bit_idx = PLLCX_IDDQ_BIT,
20056b301a05SRhyland Klein 	.reset_reg = PLLA1_MISC0,
20066b301a05SRhyland Klein 	.reset_bit_idx = PLLCX_RESET_BIT,
20076b301a05SRhyland Klein 	.round_p_to_pdiv = pll_qlin_p_to_pdiv,
20086b301a05SRhyland Klein 	.pdiv_tohw = pll_qlin_pdiv_to_hw,
20096b301a05SRhyland Klein 	.div_nmp = &pllc_nmp,
20106b301a05SRhyland Klein 	.ext_misc_reg[0] = PLLA1_MISC0,
20116b301a05SRhyland Klein 	.ext_misc_reg[1] = PLLA1_MISC1,
20126b301a05SRhyland Klein 	.ext_misc_reg[2] = PLLA1_MISC2,
20136b301a05SRhyland Klein 	.ext_misc_reg[3] = PLLA1_MISC3,
20146b301a05SRhyland Klein 	.freq_table = pll_cx_freq_table,
201514050118SRhyland Klein 	.flags = TEGRA_PLL_USE_LOCK,
20166b301a05SRhyland Klein 	.set_defaults = _plla1_set_defaults,
20176b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
20186b301a05SRhyland Klein };
20196b301a05SRhyland Klein 
20206b301a05SRhyland Klein static struct div_nmp plla_nmp = {
20216b301a05SRhyland Klein 	.divm_shift = 0,
20226b301a05SRhyland Klein 	.divm_width = 8,
20236b301a05SRhyland Klein 	.divn_shift = 8,
20246b301a05SRhyland Klein 	.divn_width = 8,
20256b301a05SRhyland Klein 	.divp_shift = 20,
20266b301a05SRhyland Klein 	.divp_width = 5,
20276b301a05SRhyland Klein };
20286b301a05SRhyland Klein 
20296b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_a_freq_table[] = {
2030eddb65e7SThierry Reding 	{ 12000000, 282240000, 47, 1, 2, 1, 0xf148 }, /* actual: 282240234 */
2031eddb65e7SThierry Reding 	{ 12000000, 368640000, 61, 1, 2, 1, 0xfe15 }, /* actual: 368640381 */
2032eddb65e7SThierry Reding 	{ 12000000, 240000000, 60, 1, 3, 1,      0 },
2033eddb65e7SThierry Reding 	{ 13000000, 282240000, 43, 1, 2, 1, 0xfd7d }, /* actual: 282239807 */
2034eddb65e7SThierry Reding 	{ 13000000, 368640000, 56, 1, 2, 1, 0x06d8 }, /* actual: 368640137 */
2035eddb65e7SThierry Reding 	{ 13000000, 240000000, 55, 1, 3, 1,      0 }, /* actual: 238.3 MHz */
2036eddb65e7SThierry Reding 	{ 38400000, 282240000, 44, 3, 2, 1, 0xf333 }, /* actual: 282239844 */
2037eddb65e7SThierry Reding 	{ 38400000, 368640000, 57, 3, 2, 1, 0x0333 }, /* actual: 368639844 */
20386b301a05SRhyland Klein 	{ 38400000, 240000000, 75, 3, 3, 1,      0 },
20396b301a05SRhyland Klein 	{        0,         0,  0, 0, 0, 0,      0 },
20406b301a05SRhyland Klein };
20416b301a05SRhyland Klein 
20426b301a05SRhyland Klein static struct tegra_clk_pll_params pll_a_params = {
20436b301a05SRhyland Klein 	.input_min = 12000000,
20446b301a05SRhyland Klein 	.input_max = 800000000,
20456b301a05SRhyland Klein 	.cf_min = 12000000,
20466b301a05SRhyland Klein 	.cf_max = 19200000,
20476b301a05SRhyland Klein 	.vco_min = 500000000,
20486b301a05SRhyland Klein 	.vco_max = 1000000000,
20496b301a05SRhyland Klein 	.base_reg = PLLA_BASE,
20506b301a05SRhyland Klein 	.misc_reg = PLLA_MISC0,
20516b301a05SRhyland Klein 	.lock_mask = PLL_BASE_LOCK,
20526b301a05SRhyland Klein 	.lock_delay = 300,
20536b301a05SRhyland Klein 	.round_p_to_pdiv = pll_qlin_p_to_pdiv,
20546b301a05SRhyland Klein 	.pdiv_tohw = pll_qlin_pdiv_to_hw,
20556b301a05SRhyland Klein 	.iddq_reg = PLLA_BASE,
20566b301a05SRhyland Klein 	.iddq_bit_idx = PLLA_IDDQ_BIT,
20576b301a05SRhyland Klein 	.div_nmp = &plla_nmp,
20586b301a05SRhyland Klein 	.sdm_din_reg = PLLA_MISC1,
20596b301a05SRhyland Klein 	.sdm_din_mask = PLLA_SDM_DIN_MASK,
20606b301a05SRhyland Klein 	.sdm_ctrl_reg = PLLA_MISC2,
20616b301a05SRhyland Klein 	.sdm_ctrl_en_mask = PLLA_SDM_EN_MASK,
20626b301a05SRhyland Klein 	.ext_misc_reg[0] = PLLA_MISC0,
20636b301a05SRhyland Klein 	.ext_misc_reg[1] = PLLA_MISC1,
20646b301a05SRhyland Klein 	.ext_misc_reg[2] = PLLA_MISC2,
20656b301a05SRhyland Klein 	.freq_table = pll_a_freq_table,
206614050118SRhyland Klein 	.flags = TEGRA_PLL_USE_LOCK | TEGRA_MDIV_NEW,
20676b301a05SRhyland Klein 	.set_defaults = tegra210_plla_set_defaults,
20686b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
20696b301a05SRhyland Klein 	.set_gain = tegra210_clk_pll_set_gain,
20706b301a05SRhyland Klein 	.adjust_vco = tegra210_clk_adjust_vco_min,
20716b301a05SRhyland Klein };
20726b301a05SRhyland Klein 
20736b301a05SRhyland Klein static struct div_nmp plld_nmp = {
20746b301a05SRhyland Klein 	.divm_shift = 0,
20756b301a05SRhyland Klein 	.divm_width = 8,
20766b301a05SRhyland Klein 	.divn_shift = 11,
20776b301a05SRhyland Klein 	.divn_width = 8,
20786b301a05SRhyland Klein 	.divp_shift = 20,
20796b301a05SRhyland Klein 	.divp_width = 3,
20806b301a05SRhyland Klein };
20816b301a05SRhyland Klein 
20826b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_d_freq_table[] = {
2083eddb65e7SThierry Reding 	{ 12000000, 594000000, 99, 1, 2, 0,      0 },
2084eddb65e7SThierry Reding 	{ 13000000, 594000000, 91, 1, 2, 0, 0xfc4f }, /* actual: 594000183 */
2085eddb65e7SThierry Reding 	{ 38400000, 594000000, 30, 1, 2, 0, 0x0e00 },
20866b301a05SRhyland Klein 	{        0,         0,  0, 0, 0, 0,      0 },
20876b301a05SRhyland Klein };
20886b301a05SRhyland Klein 
20896b301a05SRhyland Klein static struct tegra_clk_pll_params pll_d_params = {
20906b301a05SRhyland Klein 	.input_min = 12000000,
20916b301a05SRhyland Klein 	.input_max = 800000000,
20926b301a05SRhyland Klein 	.cf_min = 12000000,
20936b301a05SRhyland Klein 	.cf_max = 38400000,
20946b301a05SRhyland Klein 	.vco_min = 750000000,
20956b301a05SRhyland Klein 	.vco_max = 1500000000,
20966b301a05SRhyland Klein 	.base_reg = PLLD_BASE,
20976b301a05SRhyland Klein 	.misc_reg = PLLD_MISC0,
20986b301a05SRhyland Klein 	.lock_mask = PLL_BASE_LOCK,
20996b301a05SRhyland Klein 	.lock_delay = 1000,
21006b301a05SRhyland Klein 	.iddq_reg = PLLD_MISC0,
21016b301a05SRhyland Klein 	.iddq_bit_idx = PLLD_IDDQ_BIT,
21026b301a05SRhyland Klein 	.round_p_to_pdiv = pll_expo_p_to_pdiv,
21036b301a05SRhyland Klein 	.pdiv_tohw = pll_expo_pdiv_to_hw,
21046b301a05SRhyland Klein 	.div_nmp = &plld_nmp,
21056b301a05SRhyland Klein 	.sdm_din_reg = PLLD_MISC0,
21066b301a05SRhyland Klein 	.sdm_din_mask = PLLA_SDM_DIN_MASK,
21076b301a05SRhyland Klein 	.sdm_ctrl_reg = PLLD_MISC0,
21086b301a05SRhyland Klein 	.sdm_ctrl_en_mask = PLLD_SDM_EN_MASK,
21096b301a05SRhyland Klein 	.ext_misc_reg[0] = PLLD_MISC0,
21106b301a05SRhyland Klein 	.ext_misc_reg[1] = PLLD_MISC1,
21116b301a05SRhyland Klein 	.freq_table = pll_d_freq_table,
211214050118SRhyland Klein 	.flags = TEGRA_PLL_USE_LOCK,
21136b301a05SRhyland Klein 	.mdiv_default = 1,
21146b301a05SRhyland Klein 	.set_defaults = tegra210_plld_set_defaults,
21156b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
21166b301a05SRhyland Klein 	.set_gain = tegra210_clk_pll_set_gain,
21176b301a05SRhyland Klein 	.adjust_vco = tegra210_clk_adjust_vco_min,
21186b301a05SRhyland Klein };
21196b301a05SRhyland Klein 
21206b301a05SRhyland Klein static struct tegra_clk_pll_freq_table tegra210_pll_d2_freq_table[] = {
2121eddb65e7SThierry Reding 	{ 12000000, 594000000, 99, 1, 2, 0, 0xf000 },
2122eddb65e7SThierry Reding 	{ 13000000, 594000000, 91, 1, 2, 0, 0xfc4f }, /* actual: 594000183 */
2123eddb65e7SThierry Reding 	{ 38400000, 594000000, 30, 1, 2, 0, 0x0e00 },
21246b301a05SRhyland Klein 	{        0,         0,  0, 0, 0, 0,      0 },
21256b301a05SRhyland Klein };
21266b301a05SRhyland Klein 
21276b301a05SRhyland Klein /* s/w policy, always tegra_pll_ref */
21286b301a05SRhyland Klein static struct tegra_clk_pll_params pll_d2_params = {
21296b301a05SRhyland Klein 	.input_min = 12000000,
21306b301a05SRhyland Klein 	.input_max = 800000000,
21316b301a05SRhyland Klein 	.cf_min = 12000000,
21326b301a05SRhyland Klein 	.cf_max = 38400000,
21336b301a05SRhyland Klein 	.vco_min = 750000000,
21346b301a05SRhyland Klein 	.vco_max = 1500000000,
21356b301a05SRhyland Klein 	.base_reg = PLLD2_BASE,
21366b301a05SRhyland Klein 	.misc_reg = PLLD2_MISC0,
21376b301a05SRhyland Klein 	.lock_mask = PLL_BASE_LOCK,
21386b301a05SRhyland Klein 	.lock_delay = 300,
21396b301a05SRhyland Klein 	.iddq_reg = PLLD2_BASE,
21406b301a05SRhyland Klein 	.iddq_bit_idx = PLLSS_IDDQ_BIT,
21416b301a05SRhyland Klein 	.sdm_din_reg = PLLD2_MISC3,
21426b301a05SRhyland Klein 	.sdm_din_mask = PLLA_SDM_DIN_MASK,
21436b301a05SRhyland Klein 	.sdm_ctrl_reg = PLLD2_MISC1,
21446b301a05SRhyland Klein 	.sdm_ctrl_en_mask = PLLD2_SDM_EN_MASK,
2145e2f71656SThierry Reding 	/* disable spread-spectrum for pll_d2 */
2146e2f71656SThierry Reding 	.ssc_ctrl_reg = 0,
2147e2f71656SThierry Reding 	.ssc_ctrl_en_mask = 0,
21486b301a05SRhyland Klein 	.round_p_to_pdiv = pll_qlin_p_to_pdiv,
21496b301a05SRhyland Klein 	.pdiv_tohw = pll_qlin_pdiv_to_hw,
21506b301a05SRhyland Klein 	.div_nmp = &pllss_nmp,
21516b301a05SRhyland Klein 	.ext_misc_reg[0] = PLLD2_MISC0,
21526b301a05SRhyland Klein 	.ext_misc_reg[1] = PLLD2_MISC1,
21536b301a05SRhyland Klein 	.ext_misc_reg[2] = PLLD2_MISC2,
21546b301a05SRhyland Klein 	.ext_misc_reg[3] = PLLD2_MISC3,
21556b301a05SRhyland Klein 	.max_p = PLL_QLIN_PDIV_MAX,
21566b301a05SRhyland Klein 	.mdiv_default = 1,
21576b301a05SRhyland Klein 	.freq_table = tegra210_pll_d2_freq_table,
21586b301a05SRhyland Klein 	.set_defaults = tegra210_plld2_set_defaults,
215914050118SRhyland Klein 	.flags = TEGRA_PLL_USE_LOCK,
21606b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
21616b301a05SRhyland Klein 	.set_gain = tegra210_clk_pll_set_gain,
21626b301a05SRhyland Klein 	.adjust_vco = tegra210_clk_adjust_vco_min,
21636b301a05SRhyland Klein };
21646b301a05SRhyland Klein 
21656b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_dp_freq_table[] = {
2166eddb65e7SThierry Reding 	{ 12000000, 270000000, 90, 1, 4, 0, 0xf000 },
2167eddb65e7SThierry Reding 	{ 13000000, 270000000, 83, 1, 4, 0, 0xf000 }, /* actual: 269.8 MHz */
2168eddb65e7SThierry Reding 	{ 38400000, 270000000, 28, 1, 4, 0, 0xf400 },
21696b301a05SRhyland Klein 	{        0,         0,  0, 0, 0, 0,      0 },
21706b301a05SRhyland Klein };
21716b301a05SRhyland Klein 
21726b301a05SRhyland Klein static struct tegra_clk_pll_params pll_dp_params = {
21736b301a05SRhyland Klein 	.input_min = 12000000,
21746b301a05SRhyland Klein 	.input_max = 800000000,
21756b301a05SRhyland Klein 	.cf_min = 12000000,
21766b301a05SRhyland Klein 	.cf_max = 38400000,
21776b301a05SRhyland Klein 	.vco_min = 750000000,
21786b301a05SRhyland Klein 	.vco_max = 1500000000,
21796b301a05SRhyland Klein 	.base_reg = PLLDP_BASE,
21806b301a05SRhyland Klein 	.misc_reg = PLLDP_MISC,
21816b301a05SRhyland Klein 	.lock_mask = PLL_BASE_LOCK,
21826b301a05SRhyland Klein 	.lock_delay = 300,
21836b301a05SRhyland Klein 	.iddq_reg = PLLDP_BASE,
21846b301a05SRhyland Klein 	.iddq_bit_idx = PLLSS_IDDQ_BIT,
21856b301a05SRhyland Klein 	.sdm_din_reg = PLLDP_SS_CTRL2,
21866b301a05SRhyland Klein 	.sdm_din_mask = PLLA_SDM_DIN_MASK,
21876b301a05SRhyland Klein 	.sdm_ctrl_reg = PLLDP_SS_CFG,
21886b301a05SRhyland Klein 	.sdm_ctrl_en_mask = PLLDP_SDM_EN_MASK,
21896b301a05SRhyland Klein 	.ssc_ctrl_reg = PLLDP_SS_CFG,
21906b301a05SRhyland Klein 	.ssc_ctrl_en_mask = PLLDP_SSC_EN_MASK,
21916b301a05SRhyland Klein 	.round_p_to_pdiv = pll_qlin_p_to_pdiv,
21926b301a05SRhyland Klein 	.pdiv_tohw = pll_qlin_pdiv_to_hw,
21936b301a05SRhyland Klein 	.div_nmp = &pllss_nmp,
21946b301a05SRhyland Klein 	.ext_misc_reg[0] = PLLDP_MISC,
21956b301a05SRhyland Klein 	.ext_misc_reg[1] = PLLDP_SS_CFG,
21966b301a05SRhyland Klein 	.ext_misc_reg[2] = PLLDP_SS_CTRL1,
21976b301a05SRhyland Klein 	.ext_misc_reg[3] = PLLDP_SS_CTRL2,
21986b301a05SRhyland Klein 	.max_p = PLL_QLIN_PDIV_MAX,
21996b301a05SRhyland Klein 	.mdiv_default = 1,
22006b301a05SRhyland Klein 	.freq_table = pll_dp_freq_table,
22016b301a05SRhyland Klein 	.set_defaults = tegra210_plldp_set_defaults,
220214050118SRhyland Klein 	.flags = TEGRA_PLL_USE_LOCK,
22036b301a05SRhyland Klein 	.calc_rate = tegra210_pll_fixed_mdiv_cfg,
22046b301a05SRhyland Klein 	.set_gain = tegra210_clk_pll_set_gain,
22056b301a05SRhyland Klein 	.adjust_vco = tegra210_clk_adjust_vco_min,
22066b301a05SRhyland Klein };
22076b301a05SRhyland Klein 
22086b301a05SRhyland Klein static struct div_nmp pllu_nmp = {
22096b301a05SRhyland Klein 	.divm_shift = 0,
22106b301a05SRhyland Klein 	.divm_width = 8,
22116b301a05SRhyland Klein 	.divn_shift = 8,
22126b301a05SRhyland Klein 	.divn_width = 8,
22136b301a05SRhyland Klein 	.divp_shift = 16,
22146b301a05SRhyland Klein 	.divp_width = 5,
22156b301a05SRhyland Klein };
22166b301a05SRhyland Klein 
22176b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_u_freq_table[] = {
22180d34dfbfSJC Kuo 	{ 12000000, 480000000, 40, 1, 1, 0 },
22190d34dfbfSJC Kuo 	{ 13000000, 480000000, 36, 1, 1, 0 }, /* actual: 468.0 MHz */
22200d34dfbfSJC Kuo 	{ 38400000, 480000000, 25, 2, 1, 0 },
22216b301a05SRhyland Klein 	{        0,         0,  0, 0, 0, 0 },
22226b301a05SRhyland Klein };
22236b301a05SRhyland Klein 
22246b301a05SRhyland Klein static struct tegra_clk_pll_params pll_u_vco_params = {
22256b301a05SRhyland Klein 	.input_min = 9600000,
22266b301a05SRhyland Klein 	.input_max = 800000000,
22276b301a05SRhyland Klein 	.cf_min = 9600000,
22286b301a05SRhyland Klein 	.cf_max = 19200000,
22296b301a05SRhyland Klein 	.vco_min = 350000000,
22306b301a05SRhyland Klein 	.vco_max = 700000000,
22316b301a05SRhyland Klein 	.base_reg = PLLU_BASE,
22326b301a05SRhyland Klein 	.misc_reg = PLLU_MISC0,
22336b301a05SRhyland Klein 	.lock_mask = PLL_BASE_LOCK,
22346b301a05SRhyland Klein 	.lock_delay = 1000,
22356b301a05SRhyland Klein 	.iddq_reg = PLLU_MISC0,
22366b301a05SRhyland Klein 	.iddq_bit_idx = PLLU_IDDQ_BIT,
22376b301a05SRhyland Klein 	.ext_misc_reg[0] = PLLU_MISC0,
22386b301a05SRhyland Klein 	.ext_misc_reg[1] = PLLU_MISC1,
22396b301a05SRhyland Klein 	.round_p_to_pdiv = pll_qlin_p_to_pdiv,
22406b301a05SRhyland Klein 	.pdiv_tohw = pll_qlin_pdiv_to_hw,
22416b301a05SRhyland Klein 	.div_nmp = &pllu_nmp,
22426b301a05SRhyland Klein 	.freq_table = pll_u_freq_table,
224314050118SRhyland Klein 	.flags = TEGRA_PLLU | TEGRA_PLL_USE_LOCK | TEGRA_PLL_VCO_OUT,
2244e745f992SPeter De Schrijver };
2245e745f992SPeter De Schrijver 
2246e745f992SPeter De Schrijver struct utmi_clk_param {
2247e745f992SPeter De Schrijver 	/* Oscillator Frequency in KHz */
2248e745f992SPeter De Schrijver 	u32 osc_frequency;
2249e745f992SPeter De Schrijver 	/* UTMIP PLL Enable Delay Count  */
2250e745f992SPeter De Schrijver 	u8 enable_delay_count;
2251e745f992SPeter De Schrijver 	/* UTMIP PLL Stable count */
2252e745f992SPeter De Schrijver 	u16 stable_count;
2253e745f992SPeter De Schrijver 	/*  UTMIP PLL Active delay count */
2254e745f992SPeter De Schrijver 	u8 active_delay_count;
2255e745f992SPeter De Schrijver 	/* UTMIP PLL Xtal frequency count */
2256e745f992SPeter De Schrijver 	u16 xtal_freq_count;
2257e745f992SPeter De Schrijver };
2258e745f992SPeter De Schrijver 
2259e745f992SPeter De Schrijver static const struct utmi_clk_param utmi_parameters[] = {
2260e745f992SPeter De Schrijver 	{
2261e745f992SPeter De Schrijver 		.osc_frequency = 38400000, .enable_delay_count = 0x0,
2262e745f992SPeter De Schrijver 		.stable_count = 0x0, .active_delay_count = 0x6,
2263e745f992SPeter De Schrijver 		.xtal_freq_count = 0x80
2264e745f992SPeter De Schrijver 	}, {
2265e745f992SPeter De Schrijver 		.osc_frequency = 13000000, .enable_delay_count = 0x02,
2266e745f992SPeter De Schrijver 		.stable_count = 0x33, .active_delay_count = 0x05,
2267e745f992SPeter De Schrijver 		.xtal_freq_count = 0x7f
2268e745f992SPeter De Schrijver 	}, {
2269e745f992SPeter De Schrijver 		.osc_frequency = 19200000, .enable_delay_count = 0x03,
2270e745f992SPeter De Schrijver 		.stable_count = 0x4b, .active_delay_count = 0x06,
2271e745f992SPeter De Schrijver 		.xtal_freq_count = 0xbb
2272e745f992SPeter De Schrijver 	}, {
2273e745f992SPeter De Schrijver 		.osc_frequency = 12000000, .enable_delay_count = 0x02,
2274e745f992SPeter De Schrijver 		.stable_count = 0x2f, .active_delay_count = 0x08,
2275e745f992SPeter De Schrijver 		.xtal_freq_count = 0x76
2276e745f992SPeter De Schrijver 	}, {
2277e745f992SPeter De Schrijver 		.osc_frequency = 26000000, .enable_delay_count = 0x04,
2278e745f992SPeter De Schrijver 		.stable_count = 0x66, .active_delay_count = 0x09,
2279e745f992SPeter De Schrijver 		.xtal_freq_count = 0xfe
2280e745f992SPeter De Schrijver 	}, {
2281e745f992SPeter De Schrijver 		.osc_frequency = 16800000, .enable_delay_count = 0x03,
2282e745f992SPeter De Schrijver 		.stable_count = 0x41, .active_delay_count = 0x0a,
2283e745f992SPeter De Schrijver 		.xtal_freq_count = 0xa4
2284e745f992SPeter De Schrijver 	},
22856b301a05SRhyland Klein };
22866b301a05SRhyland Klein 
22876b301a05SRhyland Klein static struct tegra_clk tegra210_clks[tegra_clk_max] __initdata = {
22886b301a05SRhyland Klein 	[tegra_clk_ispb] = { .dt_id = TEGRA210_CLK_ISPB, .present = true },
22896b301a05SRhyland Klein 	[tegra_clk_rtc] = { .dt_id = TEGRA210_CLK_RTC, .present = true },
22906b301a05SRhyland Klein 	[tegra_clk_timer] = { .dt_id = TEGRA210_CLK_TIMER, .present = true },
22916b301a05SRhyland Klein 	[tegra_clk_uarta_8] = { .dt_id = TEGRA210_CLK_UARTA, .present = true },
22926b301a05SRhyland Klein 	[tegra_clk_i2s1] = { .dt_id = TEGRA210_CLK_I2S1, .present = true },
22936b301a05SRhyland Klein 	[tegra_clk_i2c1] = { .dt_id = TEGRA210_CLK_I2C1, .present = true },
22946b301a05SRhyland Klein 	[tegra_clk_sdmmc1_9] = { .dt_id = TEGRA210_CLK_SDMMC1, .present = true },
22956b301a05SRhyland Klein 	[tegra_clk_pwm] = { .dt_id = TEGRA210_CLK_PWM, .present = true },
22966b301a05SRhyland Klein 	[tegra_clk_i2s2] = { .dt_id = TEGRA210_CLK_I2S2, .present = true },
22976b301a05SRhyland Klein 	[tegra_clk_usbd] = { .dt_id = TEGRA210_CLK_USBD, .present = true },
22986b301a05SRhyland Klein 	[tegra_clk_isp_9] = { .dt_id = TEGRA210_CLK_ISP, .present = true },
22996b301a05SRhyland Klein 	[tegra_clk_disp2_8] = { .dt_id = TEGRA210_CLK_DISP2, .present = true },
23006b301a05SRhyland Klein 	[tegra_clk_disp1_8] = { .dt_id = TEGRA210_CLK_DISP1, .present = true },
23016b301a05SRhyland Klein 	[tegra_clk_host1x_9] = { .dt_id = TEGRA210_CLK_HOST1X, .present = true },
23026b301a05SRhyland Klein 	[tegra_clk_i2s0] = { .dt_id = TEGRA210_CLK_I2S0, .present = true },
23036b301a05SRhyland Klein 	[tegra_clk_apbdma] = { .dt_id = TEGRA210_CLK_APBDMA, .present = true },
23046b301a05SRhyland Klein 	[tegra_clk_kfuse] = { .dt_id = TEGRA210_CLK_KFUSE, .present = true },
23056b301a05SRhyland Klein 	[tegra_clk_sbc1_9] = { .dt_id = TEGRA210_CLK_SBC1, .present = true },
23066b301a05SRhyland Klein 	[tegra_clk_sbc2_9] = { .dt_id = TEGRA210_CLK_SBC2, .present = true },
23076b301a05SRhyland Klein 	[tegra_clk_sbc3_9] = { .dt_id = TEGRA210_CLK_SBC3, .present = true },
23086b301a05SRhyland Klein 	[tegra_clk_i2c5] = { .dt_id = TEGRA210_CLK_I2C5, .present = true },
23096b301a05SRhyland Klein 	[tegra_clk_csi] = { .dt_id = TEGRA210_CLK_CSI, .present = true },
23106b301a05SRhyland Klein 	[tegra_clk_i2c2] = { .dt_id = TEGRA210_CLK_I2C2, .present = true },
23116b301a05SRhyland Klein 	[tegra_clk_uartc_8] = { .dt_id = TEGRA210_CLK_UARTC, .present = true },
23126b301a05SRhyland Klein 	[tegra_clk_mipi_cal] = { .dt_id = TEGRA210_CLK_MIPI_CAL, .present = true },
23136b301a05SRhyland Klein 	[tegra_clk_emc] = { .dt_id = TEGRA210_CLK_EMC, .present = true },
23146b301a05SRhyland Klein 	[tegra_clk_usb2] = { .dt_id = TEGRA210_CLK_USB2, .present = true },
23156b301a05SRhyland Klein 	[tegra_clk_bsev] = { .dt_id = TEGRA210_CLK_BSEV, .present = true },
23166b301a05SRhyland Klein 	[tegra_clk_uartd_8] = { .dt_id = TEGRA210_CLK_UARTD, .present = true },
23176b301a05SRhyland Klein 	[tegra_clk_i2c3] = { .dt_id = TEGRA210_CLK_I2C3, .present = true },
23186b301a05SRhyland Klein 	[tegra_clk_sbc4_9] = { .dt_id = TEGRA210_CLK_SBC4, .present = true },
23196b301a05SRhyland Klein 	[tegra_clk_sdmmc3_9] = { .dt_id = TEGRA210_CLK_SDMMC3, .present = true },
23206b301a05SRhyland Klein 	[tegra_clk_pcie] = { .dt_id = TEGRA210_CLK_PCIE, .present = true },
23216b301a05SRhyland Klein 	[tegra_clk_owr_8] = { .dt_id = TEGRA210_CLK_OWR, .present = true },
23226b301a05SRhyland Klein 	[tegra_clk_afi] = { .dt_id = TEGRA210_CLK_AFI, .present = true },
23236b301a05SRhyland Klein 	[tegra_clk_csite_8] = { .dt_id = TEGRA210_CLK_CSITE, .present = true },
23246b301a05SRhyland Klein 	[tegra_clk_soc_therm_8] = { .dt_id = TEGRA210_CLK_SOC_THERM, .present = true },
23256b301a05SRhyland Klein 	[tegra_clk_dtv] = { .dt_id = TEGRA210_CLK_DTV, .present = true },
23266b301a05SRhyland Klein 	[tegra_clk_i2cslow] = { .dt_id = TEGRA210_CLK_I2CSLOW, .present = true },
23276b301a05SRhyland Klein 	[tegra_clk_tsec_8] = { .dt_id = TEGRA210_CLK_TSEC, .present = true },
23286b301a05SRhyland Klein 	[tegra_clk_xusb_host] = { .dt_id = TEGRA210_CLK_XUSB_HOST, .present = true },
23296b301a05SRhyland Klein 	[tegra_clk_csus] = { .dt_id = TEGRA210_CLK_CSUS, .present = true },
23306b301a05SRhyland Klein 	[tegra_clk_mselect] = { .dt_id = TEGRA210_CLK_MSELECT, .present = true },
23316b301a05SRhyland Klein 	[tegra_clk_tsensor] = { .dt_id = TEGRA210_CLK_TSENSOR, .present = true },
23326b301a05SRhyland Klein 	[tegra_clk_i2s3] = { .dt_id = TEGRA210_CLK_I2S3, .present = true },
23336b301a05SRhyland Klein 	[tegra_clk_i2s4] = { .dt_id = TEGRA210_CLK_I2S4, .present = true },
23346b301a05SRhyland Klein 	[tegra_clk_i2c4] = { .dt_id = TEGRA210_CLK_I2C4, .present = true },
23356b301a05SRhyland Klein 	[tegra_clk_d_audio] = { .dt_id = TEGRA210_CLK_D_AUDIO, .present = true },
23366b301a05SRhyland Klein 	[tegra_clk_hda2codec_2x_8] = { .dt_id = TEGRA210_CLK_HDA2CODEC_2X, .present = true },
23376b301a05SRhyland Klein 	[tegra_clk_spdif_2x] = { .dt_id = TEGRA210_CLK_SPDIF_2X, .present = true },
23386b301a05SRhyland Klein 	[tegra_clk_actmon] = { .dt_id = TEGRA210_CLK_ACTMON, .present = true },
23396b301a05SRhyland Klein 	[tegra_clk_extern1] = { .dt_id = TEGRA210_CLK_EXTERN1, .present = true },
23406b301a05SRhyland Klein 	[tegra_clk_extern2] = { .dt_id = TEGRA210_CLK_EXTERN2, .present = true },
23416b301a05SRhyland Klein 	[tegra_clk_extern3] = { .dt_id = TEGRA210_CLK_EXTERN3, .present = true },
23426b301a05SRhyland Klein 	[tegra_clk_sata_oob_8] = { .dt_id = TEGRA210_CLK_SATA_OOB, .present = true },
23436b301a05SRhyland Klein 	[tegra_clk_sata_8] = { .dt_id = TEGRA210_CLK_SATA, .present = true },
23446b301a05SRhyland Klein 	[tegra_clk_hda_8] = { .dt_id = TEGRA210_CLK_HDA, .present = true },
23456b301a05SRhyland Klein 	[tegra_clk_hda2hdmi] = { .dt_id = TEGRA210_CLK_HDA2HDMI, .present = true },
23466b301a05SRhyland Klein 	[tegra_clk_cilab] = { .dt_id = TEGRA210_CLK_CILAB, .present = true },
23476b301a05SRhyland Klein 	[tegra_clk_cilcd] = { .dt_id = TEGRA210_CLK_CILCD, .present = true },
23486b301a05SRhyland Klein 	[tegra_clk_cile] = { .dt_id = TEGRA210_CLK_CILE, .present = true },
23496b301a05SRhyland Klein 	[tegra_clk_dsialp] = { .dt_id = TEGRA210_CLK_DSIALP, .present = true },
23506b301a05SRhyland Klein 	[tegra_clk_dsiblp] = { .dt_id = TEGRA210_CLK_DSIBLP, .present = true },
23516b301a05SRhyland Klein 	[tegra_clk_entropy_8] = { .dt_id = TEGRA210_CLK_ENTROPY, .present = true },
23526b301a05SRhyland Klein 	[tegra_clk_xusb_ss] = { .dt_id = TEGRA210_CLK_XUSB_SS, .present = true },
23536b301a05SRhyland Klein 	[tegra_clk_i2c6] = { .dt_id = TEGRA210_CLK_I2C6, .present = true },
23546b301a05SRhyland Klein 	[tegra_clk_vim2_clk] = { .dt_id = TEGRA210_CLK_VIM2_CLK, .present = true },
23556b301a05SRhyland Klein 	[tegra_clk_clk72Mhz_8] = { .dt_id = TEGRA210_CLK_CLK72MHZ, .present = true },
23566b301a05SRhyland Klein 	[tegra_clk_vic03_8] = { .dt_id = TEGRA210_CLK_VIC03, .present = true },
23576b301a05SRhyland Klein 	[tegra_clk_dpaux] = { .dt_id = TEGRA210_CLK_DPAUX, .present = true },
235898c4b366SThierry Reding 	[tegra_clk_dpaux1] = { .dt_id = TEGRA210_CLK_DPAUX1, .present = true },
23596b301a05SRhyland Klein 	[tegra_clk_sor0] = { .dt_id = TEGRA210_CLK_SOR0, .present = true },
2360da8d1a35SThierry Reding 	[tegra_clk_sor0_out] = { .dt_id = TEGRA210_CLK_SOR0_OUT, .present = true },
2361e452b818SThierry Reding 	[tegra_clk_sor1] = { .dt_id = TEGRA210_CLK_SOR1, .present = true },
2362991a051eSThierry Reding 	[tegra_clk_sor1_out] = { .dt_id = TEGRA210_CLK_SOR1_OUT, .present = true },
23636b301a05SRhyland Klein 	[tegra_clk_gpu] = { .dt_id = TEGRA210_CLK_GPU, .present = true },
23646b301a05SRhyland Klein 	[tegra_clk_pll_g_ref] = { .dt_id = TEGRA210_CLK_PLL_G_REF, .present = true, },
23656b301a05SRhyland Klein 	[tegra_clk_uartb_8] = { .dt_id = TEGRA210_CLK_UARTB, .present = true },
23666b301a05SRhyland Klein 	[tegra_clk_spdif_in_8] = { .dt_id = TEGRA210_CLK_SPDIF_IN, .present = true },
23676b301a05SRhyland Klein 	[tegra_clk_spdif_out] = { .dt_id = TEGRA210_CLK_SPDIF_OUT, .present = true },
23686b301a05SRhyland Klein 	[tegra_clk_vi_10] = { .dt_id = TEGRA210_CLK_VI, .present = true },
23696b301a05SRhyland Klein 	[tegra_clk_vi_sensor_8] = { .dt_id = TEGRA210_CLK_VI_SENSOR, .present = true },
23706b301a05SRhyland Klein 	[tegra_clk_fuse] = { .dt_id = TEGRA210_CLK_FUSE, .present = true },
23716b301a05SRhyland Klein 	[tegra_clk_fuse_burn] = { .dt_id = TEGRA210_CLK_FUSE_BURN, .present = true },
23726b301a05SRhyland Klein 	[tegra_clk_clk_32k] = { .dt_id = TEGRA210_CLK_CLK_32K, .present = true },
23736b301a05SRhyland Klein 	[tegra_clk_clk_m] = { .dt_id = TEGRA210_CLK_CLK_M, .present = true },
23746b301a05SRhyland Klein 	[tegra_clk_clk_m_div2] = { .dt_id = TEGRA210_CLK_CLK_M_DIV2, .present = true },
23756b301a05SRhyland Klein 	[tegra_clk_clk_m_div4] = { .dt_id = TEGRA210_CLK_CLK_M_DIV4, .present = true },
2376*9a85eb4dSSowjanya Komatineni 	[tegra_clk_osc_div2] = { .dt_id = TEGRA210_CLK_OSC_DIV2, .present = true },
2377*9a85eb4dSSowjanya Komatineni 	[tegra_clk_osc_div4] = { .dt_id = TEGRA210_CLK_OSC_DIV4, .present = true },
23786b301a05SRhyland Klein 	[tegra_clk_pll_ref] = { .dt_id = TEGRA210_CLK_PLL_REF, .present = true },
23796b301a05SRhyland Klein 	[tegra_clk_pll_c] = { .dt_id = TEGRA210_CLK_PLL_C, .present = true },
23806b301a05SRhyland Klein 	[tegra_clk_pll_c_out1] = { .dt_id = TEGRA210_CLK_PLL_C_OUT1, .present = true },
23816b301a05SRhyland Klein 	[tegra_clk_pll_c2] = { .dt_id = TEGRA210_CLK_PLL_C2, .present = true },
23826b301a05SRhyland Klein 	[tegra_clk_pll_c3] = { .dt_id = TEGRA210_CLK_PLL_C3, .present = true },
23836b301a05SRhyland Klein 	[tegra_clk_pll_m] = { .dt_id = TEGRA210_CLK_PLL_M, .present = true },
23846b301a05SRhyland Klein 	[tegra_clk_pll_p] = { .dt_id = TEGRA210_CLK_PLL_P, .present = true },
23856b301a05SRhyland Klein 	[tegra_clk_pll_p_out1] = { .dt_id = TEGRA210_CLK_PLL_P_OUT1, .present = true },
23866b301a05SRhyland Klein 	[tegra_clk_pll_p_out3] = { .dt_id = TEGRA210_CLK_PLL_P_OUT3, .present = true },
23876b301a05SRhyland Klein 	[tegra_clk_pll_p_out4_cpu] = { .dt_id = TEGRA210_CLK_PLL_P_OUT4, .present = true },
23886b301a05SRhyland Klein 	[tegra_clk_pll_p_out_hsio] = { .dt_id = TEGRA210_CLK_PLL_P_OUT_HSIO, .present = true },
23896b301a05SRhyland Klein 	[tegra_clk_pll_p_out_xusb] = { .dt_id = TEGRA210_CLK_PLL_P_OUT_XUSB, .present = true },
23906b301a05SRhyland Klein 	[tegra_clk_pll_p_out_cpu] = { .dt_id = TEGRA210_CLK_PLL_P_OUT_CPU, .present = true },
23916b301a05SRhyland Klein 	[tegra_clk_pll_p_out_adsp] = { .dt_id = TEGRA210_CLK_PLL_P_OUT_ADSP, .present = true },
23926b301a05SRhyland Klein 	[tegra_clk_pll_a] = { .dt_id = TEGRA210_CLK_PLL_A, .present = true },
23936b301a05SRhyland Klein 	[tegra_clk_pll_a_out0] = { .dt_id = TEGRA210_CLK_PLL_A_OUT0, .present = true },
23946b301a05SRhyland Klein 	[tegra_clk_pll_d] = { .dt_id = TEGRA210_CLK_PLL_D, .present = true },
23956b301a05SRhyland Klein 	[tegra_clk_pll_d_out0] = { .dt_id = TEGRA210_CLK_PLL_D_OUT0, .present = true },
23966b301a05SRhyland Klein 	[tegra_clk_pll_d2] = { .dt_id = TEGRA210_CLK_PLL_D2, .present = true },
23976b301a05SRhyland Klein 	[tegra_clk_pll_d2_out0] = { .dt_id = TEGRA210_CLK_PLL_D2_OUT0, .present = true },
23986b301a05SRhyland Klein 	[tegra_clk_pll_u] = { .dt_id = TEGRA210_CLK_PLL_U, .present = true },
23996b301a05SRhyland Klein 	[tegra_clk_pll_u_out] = { .dt_id = TEGRA210_CLK_PLL_U_OUT, .present = true },
24006b301a05SRhyland Klein 	[tegra_clk_pll_u_out1] = { .dt_id = TEGRA210_CLK_PLL_U_OUT1, .present = true },
24016b301a05SRhyland Klein 	[tegra_clk_pll_u_out2] = { .dt_id = TEGRA210_CLK_PLL_U_OUT2, .present = true },
24026b301a05SRhyland Klein 	[tegra_clk_pll_u_480m] = { .dt_id = TEGRA210_CLK_PLL_U_480M, .present = true },
24036b301a05SRhyland Klein 	[tegra_clk_pll_u_60m] = { .dt_id = TEGRA210_CLK_PLL_U_60M, .present = true },
24046b301a05SRhyland Klein 	[tegra_clk_pll_u_48m] = { .dt_id = TEGRA210_CLK_PLL_U_48M, .present = true },
24056b301a05SRhyland Klein 	[tegra_clk_pll_x] = { .dt_id = TEGRA210_CLK_PLL_X, .present = true },
24066b301a05SRhyland Klein 	[tegra_clk_pll_x_out0] = { .dt_id = TEGRA210_CLK_PLL_X_OUT0, .present = true },
24076b301a05SRhyland Klein 	[tegra_clk_pll_re_vco] = { .dt_id = TEGRA210_CLK_PLL_RE_VCO, .present = true },
24086b301a05SRhyland Klein 	[tegra_clk_pll_re_out] = { .dt_id = TEGRA210_CLK_PLL_RE_OUT, .present = true },
24096b301a05SRhyland Klein 	[tegra_clk_spdif_in_sync] = { .dt_id = TEGRA210_CLK_SPDIF_IN_SYNC, .present = true },
24106b301a05SRhyland Klein 	[tegra_clk_i2s0_sync] = { .dt_id = TEGRA210_CLK_I2S0_SYNC, .present = true },
24116b301a05SRhyland Klein 	[tegra_clk_i2s1_sync] = { .dt_id = TEGRA210_CLK_I2S1_SYNC, .present = true },
24126b301a05SRhyland Klein 	[tegra_clk_i2s2_sync] = { .dt_id = TEGRA210_CLK_I2S2_SYNC, .present = true },
24136b301a05SRhyland Klein 	[tegra_clk_i2s3_sync] = { .dt_id = TEGRA210_CLK_I2S3_SYNC, .present = true },
24146b301a05SRhyland Klein 	[tegra_clk_i2s4_sync] = { .dt_id = TEGRA210_CLK_I2S4_SYNC, .present = true },
24156b301a05SRhyland Klein 	[tegra_clk_vimclk_sync] = { .dt_id = TEGRA210_CLK_VIMCLK_SYNC, .present = true },
24166b301a05SRhyland Klein 	[tegra_clk_audio0] = { .dt_id = TEGRA210_CLK_AUDIO0, .present = true },
24176b301a05SRhyland Klein 	[tegra_clk_audio1] = { .dt_id = TEGRA210_CLK_AUDIO1, .present = true },
24186b301a05SRhyland Klein 	[tegra_clk_audio2] = { .dt_id = TEGRA210_CLK_AUDIO2, .present = true },
24196b301a05SRhyland Klein 	[tegra_clk_audio3] = { .dt_id = TEGRA210_CLK_AUDIO3, .present = true },
24206b301a05SRhyland Klein 	[tegra_clk_audio4] = { .dt_id = TEGRA210_CLK_AUDIO4, .present = true },
24216b301a05SRhyland Klein 	[tegra_clk_spdif] = { .dt_id = TEGRA210_CLK_SPDIF, .present = true },
24226b301a05SRhyland Klein 	[tegra_clk_clk_out_1] = { .dt_id = TEGRA210_CLK_CLK_OUT_1, .present = true },
24236b301a05SRhyland Klein 	[tegra_clk_clk_out_2] = { .dt_id = TEGRA210_CLK_CLK_OUT_2, .present = true },
24246b301a05SRhyland Klein 	[tegra_clk_clk_out_3] = { .dt_id = TEGRA210_CLK_CLK_OUT_3, .present = true },
24256b301a05SRhyland Klein 	[tegra_clk_blink] = { .dt_id = TEGRA210_CLK_BLINK, .present = true },
24266b301a05SRhyland Klein 	[tegra_clk_xusb_gate] = { .dt_id = TEGRA210_CLK_XUSB_GATE, .present = true },
24276b301a05SRhyland Klein 	[tegra_clk_xusb_host_src_8] = { .dt_id = TEGRA210_CLK_XUSB_HOST_SRC, .present = true },
24286b301a05SRhyland Klein 	[tegra_clk_xusb_falcon_src_8] = { .dt_id = TEGRA210_CLK_XUSB_FALCON_SRC, .present = true },
24296b301a05SRhyland Klein 	[tegra_clk_xusb_fs_src] = { .dt_id = TEGRA210_CLK_XUSB_FS_SRC, .present = true },
24306b301a05SRhyland Klein 	[tegra_clk_xusb_ss_src_8] = { .dt_id = TEGRA210_CLK_XUSB_SS_SRC, .present = true },
24316b301a05SRhyland Klein 	[tegra_clk_xusb_ss_div2] = { .dt_id = TEGRA210_CLK_XUSB_SS_DIV2, .present = true },
24326b301a05SRhyland Klein 	[tegra_clk_xusb_dev_src_8] = { .dt_id = TEGRA210_CLK_XUSB_DEV_SRC, .present = true },
24336b301a05SRhyland Klein 	[tegra_clk_xusb_dev] = { .dt_id = TEGRA210_CLK_XUSB_DEV, .present = true },
24346b301a05SRhyland Klein 	[tegra_clk_xusb_hs_src_4] = { .dt_id = TEGRA210_CLK_XUSB_HS_SRC, .present = true },
24356b301a05SRhyland Klein 	[tegra_clk_xusb_ssp_src] = { .dt_id = TEGRA210_CLK_XUSB_SSP_SRC, .present = true },
24366b301a05SRhyland Klein 	[tegra_clk_usb2_hsic_trk] = { .dt_id = TEGRA210_CLK_USB2_HSIC_TRK, .present = true },
24376b301a05SRhyland Klein 	[tegra_clk_hsic_trk] = { .dt_id = TEGRA210_CLK_HSIC_TRK, .present = true },
24386b301a05SRhyland Klein 	[tegra_clk_usb2_trk] = { .dt_id = TEGRA210_CLK_USB2_TRK, .present = true },
24396b301a05SRhyland Klein 	[tegra_clk_sclk] = { .dt_id = TEGRA210_CLK_SCLK, .present = true },
24406b301a05SRhyland Klein 	[tegra_clk_sclk_mux] = { .dt_id = TEGRA210_CLK_SCLK_MUX, .present = true },
24416b301a05SRhyland Klein 	[tegra_clk_hclk] = { .dt_id = TEGRA210_CLK_HCLK, .present = true },
24426b301a05SRhyland Klein 	[tegra_clk_pclk] = { .dt_id = TEGRA210_CLK_PCLK, .present = true },
24436b301a05SRhyland Klein 	[tegra_clk_cclk_g] = { .dt_id = TEGRA210_CLK_CCLK_G, .present = true },
24446b301a05SRhyland Klein 	[tegra_clk_cclk_lp] = { .dt_id = TEGRA210_CLK_CCLK_LP, .present = true },
24456b301a05SRhyland Klein 	[tegra_clk_dfll_ref] = { .dt_id = TEGRA210_CLK_DFLL_REF, .present = true },
24466b301a05SRhyland Klein 	[tegra_clk_dfll_soc] = { .dt_id = TEGRA210_CLK_DFLL_SOC, .present = true },
24476b301a05SRhyland Klein 	[tegra_clk_vi_sensor2_8] = { .dt_id = TEGRA210_CLK_VI_SENSOR2, .present = true },
24486b301a05SRhyland Klein 	[tegra_clk_pll_p_out5] = { .dt_id = TEGRA210_CLK_PLL_P_OUT5, .present = true },
24496b301a05SRhyland Klein 	[tegra_clk_pll_c4] = { .dt_id = TEGRA210_CLK_PLL_C4, .present = true },
24506b301a05SRhyland Klein 	[tegra_clk_pll_dp] = { .dt_id = TEGRA210_CLK_PLL_DP, .present = true },
24516b301a05SRhyland Klein 	[tegra_clk_audio0_mux] = { .dt_id = TEGRA210_CLK_AUDIO0_MUX, .present = true },
24526b301a05SRhyland Klein 	[tegra_clk_audio1_mux] = { .dt_id = TEGRA210_CLK_AUDIO1_MUX, .present = true },
24536b301a05SRhyland Klein 	[tegra_clk_audio2_mux] = { .dt_id = TEGRA210_CLK_AUDIO2_MUX, .present = true },
24546b301a05SRhyland Klein 	[tegra_clk_audio3_mux] = { .dt_id = TEGRA210_CLK_AUDIO3_MUX, .present = true },
24556b301a05SRhyland Klein 	[tegra_clk_audio4_mux] = { .dt_id = TEGRA210_CLK_AUDIO4_MUX, .present = true },
24566b301a05SRhyland Klein 	[tegra_clk_spdif_mux] = { .dt_id = TEGRA210_CLK_SPDIF_MUX, .present = true },
24576b301a05SRhyland Klein 	[tegra_clk_clk_out_1_mux] = { .dt_id = TEGRA210_CLK_CLK_OUT_1_MUX, .present = true },
24586b301a05SRhyland Klein 	[tegra_clk_clk_out_2_mux] = { .dt_id = TEGRA210_CLK_CLK_OUT_2_MUX, .present = true },
24596b301a05SRhyland Klein 	[tegra_clk_clk_out_3_mux] = { .dt_id = TEGRA210_CLK_CLK_OUT_3_MUX, .present = true },
24606b301a05SRhyland Klein 	[tegra_clk_maud] = { .dt_id = TEGRA210_CLK_MAUD, .present = true },
24616b301a05SRhyland Klein 	[tegra_clk_mipibif] = { .dt_id = TEGRA210_CLK_MIPIBIF, .present = true },
24626b301a05SRhyland Klein 	[tegra_clk_qspi] = { .dt_id = TEGRA210_CLK_QSPI, .present = true },
24636b301a05SRhyland Klein 	[tegra_clk_sdmmc_legacy] = { .dt_id = TEGRA210_CLK_SDMMC_LEGACY, .present = true },
24646b301a05SRhyland Klein 	[tegra_clk_tsecb] = { .dt_id = TEGRA210_CLK_TSECB, .present = true },
24656b301a05SRhyland Klein 	[tegra_clk_uartape] = { .dt_id = TEGRA210_CLK_UARTAPE, .present = true },
24666b301a05SRhyland Klein 	[tegra_clk_vi_i2c] = { .dt_id = TEGRA210_CLK_VI_I2C, .present = true },
24676b301a05SRhyland Klein 	[tegra_clk_ape] = { .dt_id = TEGRA210_CLK_APE, .present = true },
24686b301a05SRhyland Klein 	[tegra_clk_dbgapb] = { .dt_id = TEGRA210_CLK_DBGAPB, .present = true },
24696b301a05SRhyland Klein 	[tegra_clk_nvdec] = { .dt_id = TEGRA210_CLK_NVDEC, .present = true },
24706b301a05SRhyland Klein 	[tegra_clk_nvenc] = { .dt_id = TEGRA210_CLK_NVENC, .present = true },
24716b301a05SRhyland Klein 	[tegra_clk_nvjpg] = { .dt_id = TEGRA210_CLK_NVJPG, .present = true },
24726b301a05SRhyland Klein 	[tegra_clk_pll_c4_out0] = { .dt_id = TEGRA210_CLK_PLL_C4_OUT0, .present = true },
24736b301a05SRhyland Klein 	[tegra_clk_pll_c4_out1] = { .dt_id = TEGRA210_CLK_PLL_C4_OUT1, .present = true },
24746b301a05SRhyland Klein 	[tegra_clk_pll_c4_out2] = { .dt_id = TEGRA210_CLK_PLL_C4_OUT2, .present = true },
24756b301a05SRhyland Klein 	[tegra_clk_pll_c4_out3] = { .dt_id = TEGRA210_CLK_PLL_C4_OUT3, .present = true },
247629569941SJon Hunter 	[tegra_clk_apb2ape] = { .dt_id = TEGRA210_CLK_APB2APE, .present = true },
24779326947fSPeter De Schrijver 	[tegra_clk_pll_a1] = { .dt_id = TEGRA210_CLK_PLL_A1, .present = true },
247834ac2c27SPeter De Schrijver 	[tegra_clk_ispa] = { .dt_id = TEGRA210_CLK_ISPA, .present = true },
2479bfa34832SPeter De Schrijver 	[tegra_clk_cec] = { .dt_id = TEGRA210_CLK_CEC, .present = true },
24806cfc8bc9SPeter De Schrijver 	[tegra_clk_dmic1] = { .dt_id = TEGRA210_CLK_DMIC1, .present = true },
24816cfc8bc9SPeter De Schrijver 	[tegra_clk_dmic2] = { .dt_id = TEGRA210_CLK_DMIC2, .present = true },
24826cfc8bc9SPeter De Schrijver 	[tegra_clk_dmic3] = { .dt_id = TEGRA210_CLK_DMIC3, .present = true },
2483319af797SPeter De Schrijver 	[tegra_clk_dmic1_sync_clk] = { .dt_id = TEGRA210_CLK_DMIC1_SYNC_CLK, .present = true },
2484319af797SPeter De Schrijver 	[tegra_clk_dmic2_sync_clk] = { .dt_id = TEGRA210_CLK_DMIC2_SYNC_CLK, .present = true },
2485319af797SPeter De Schrijver 	[tegra_clk_dmic3_sync_clk] = { .dt_id = TEGRA210_CLK_DMIC3_SYNC_CLK, .present = true },
2486319af797SPeter De Schrijver 	[tegra_clk_dmic1_sync_clk_mux] = { .dt_id = TEGRA210_CLK_DMIC1_SYNC_CLK_MUX, .present = true },
2487319af797SPeter De Schrijver 	[tegra_clk_dmic2_sync_clk_mux] = { .dt_id = TEGRA210_CLK_DMIC2_SYNC_CLK_MUX, .present = true },
2488319af797SPeter De Schrijver 	[tegra_clk_dmic3_sync_clk_mux] = { .dt_id = TEGRA210_CLK_DMIC3_SYNC_CLK_MUX, .present = true },
248988da44c5SPeter De Schrijver 	[tegra_clk_dp2] = { .dt_id = TEGRA210_CLK_DP2, .present = true },
249088da44c5SPeter De Schrijver 	[tegra_clk_iqc1] = { .dt_id = TEGRA210_CLK_IQC1, .present = true },
249188da44c5SPeter De Schrijver 	[tegra_clk_iqc2] = { .dt_id = TEGRA210_CLK_IQC2, .present = true },
249288da44c5SPeter De Schrijver 	[tegra_clk_pll_a_out_adsp] = { .dt_id = TEGRA210_CLK_PLL_A_OUT_ADSP, .present = true },
249388da44c5SPeter De Schrijver 	[tegra_clk_pll_a_out0_out_adsp] = { .dt_id = TEGRA210_CLK_PLL_A_OUT0_OUT_ADSP, .present = true },
249488da44c5SPeter De Schrijver 	[tegra_clk_adsp] = { .dt_id = TEGRA210_CLK_ADSP, .present = true },
249588da44c5SPeter De Schrijver 	[tegra_clk_adsp_neon] = { .dt_id = TEGRA210_CLK_ADSP_NEON, .present = true },
24966b301a05SRhyland Klein };
24976b301a05SRhyland Klein 
24986b301a05SRhyland Klein static struct tegra_devclk devclks[] __initdata = {
24996b301a05SRhyland Klein 	{ .con_id = "clk_m", .dt_id = TEGRA210_CLK_CLK_M },
25006b301a05SRhyland Klein 	{ .con_id = "pll_ref", .dt_id = TEGRA210_CLK_PLL_REF },
25016b301a05SRhyland Klein 	{ .con_id = "clk_32k", .dt_id = TEGRA210_CLK_CLK_32K },
25026b301a05SRhyland Klein 	{ .con_id = "clk_m_div2", .dt_id = TEGRA210_CLK_CLK_M_DIV2 },
25036b301a05SRhyland Klein 	{ .con_id = "clk_m_div4", .dt_id = TEGRA210_CLK_CLK_M_DIV4 },
2504*9a85eb4dSSowjanya Komatineni 	{ .con_id = "osc_div2", .dt_id = TEGRA210_CLK_OSC_DIV2 },
2505*9a85eb4dSSowjanya Komatineni 	{ .con_id = "osc_div4", .dt_id = TEGRA210_CLK_OSC_DIV4 },
25066b301a05SRhyland Klein 	{ .con_id = "pll_c", .dt_id = TEGRA210_CLK_PLL_C },
25076b301a05SRhyland Klein 	{ .con_id = "pll_c_out1", .dt_id = TEGRA210_CLK_PLL_C_OUT1 },
25086b301a05SRhyland Klein 	{ .con_id = "pll_c2", .dt_id = TEGRA210_CLK_PLL_C2 },
25096b301a05SRhyland Klein 	{ .con_id = "pll_c3", .dt_id = TEGRA210_CLK_PLL_C3 },
25106b301a05SRhyland Klein 	{ .con_id = "pll_p", .dt_id = TEGRA210_CLK_PLL_P },
25116b301a05SRhyland Klein 	{ .con_id = "pll_p_out1", .dt_id = TEGRA210_CLK_PLL_P_OUT1 },
25126b301a05SRhyland Klein 	{ .con_id = "pll_p_out2", .dt_id = TEGRA210_CLK_PLL_P_OUT2 },
25136b301a05SRhyland Klein 	{ .con_id = "pll_p_out3", .dt_id = TEGRA210_CLK_PLL_P_OUT3 },
25146b301a05SRhyland Klein 	{ .con_id = "pll_p_out4", .dt_id = TEGRA210_CLK_PLL_P_OUT4 },
25156b301a05SRhyland Klein 	{ .con_id = "pll_m", .dt_id = TEGRA210_CLK_PLL_M },
25166b301a05SRhyland Klein 	{ .con_id = "pll_x", .dt_id = TEGRA210_CLK_PLL_X },
25176b301a05SRhyland Klein 	{ .con_id = "pll_x_out0", .dt_id = TEGRA210_CLK_PLL_X_OUT0 },
25186b301a05SRhyland Klein 	{ .con_id = "pll_u", .dt_id = TEGRA210_CLK_PLL_U },
25196b301a05SRhyland Klein 	{ .con_id = "pll_u_out", .dt_id = TEGRA210_CLK_PLL_U_OUT },
25206b301a05SRhyland Klein 	{ .con_id = "pll_u_out1", .dt_id = TEGRA210_CLK_PLL_U_OUT1 },
25216b301a05SRhyland Klein 	{ .con_id = "pll_u_out2", .dt_id = TEGRA210_CLK_PLL_U_OUT2 },
25226b301a05SRhyland Klein 	{ .con_id = "pll_u_480M", .dt_id = TEGRA210_CLK_PLL_U_480M },
25236b301a05SRhyland Klein 	{ .con_id = "pll_u_60M", .dt_id = TEGRA210_CLK_PLL_U_60M },
25246b301a05SRhyland Klein 	{ .con_id = "pll_u_48M", .dt_id = TEGRA210_CLK_PLL_U_48M },
25256b301a05SRhyland Klein 	{ .con_id = "pll_d", .dt_id = TEGRA210_CLK_PLL_D },
25266b301a05SRhyland Klein 	{ .con_id = "pll_d_out0", .dt_id = TEGRA210_CLK_PLL_D_OUT0 },
25276b301a05SRhyland Klein 	{ .con_id = "pll_d2", .dt_id = TEGRA210_CLK_PLL_D2 },
25286b301a05SRhyland Klein 	{ .con_id = "pll_d2_out0", .dt_id = TEGRA210_CLK_PLL_D2_OUT0 },
25296b301a05SRhyland Klein 	{ .con_id = "pll_a", .dt_id = TEGRA210_CLK_PLL_A },
25306b301a05SRhyland Klein 	{ .con_id = "pll_a_out0", .dt_id = TEGRA210_CLK_PLL_A_OUT0 },
25316b301a05SRhyland Klein 	{ .con_id = "pll_re_vco", .dt_id = TEGRA210_CLK_PLL_RE_VCO },
25326b301a05SRhyland Klein 	{ .con_id = "pll_re_out", .dt_id = TEGRA210_CLK_PLL_RE_OUT },
25336b301a05SRhyland Klein 	{ .con_id = "spdif_in_sync", .dt_id = TEGRA210_CLK_SPDIF_IN_SYNC },
25346b301a05SRhyland Klein 	{ .con_id = "i2s0_sync", .dt_id = TEGRA210_CLK_I2S0_SYNC },
25356b301a05SRhyland Klein 	{ .con_id = "i2s1_sync", .dt_id = TEGRA210_CLK_I2S1_SYNC },
25366b301a05SRhyland Klein 	{ .con_id = "i2s2_sync", .dt_id = TEGRA210_CLK_I2S2_SYNC },
25376b301a05SRhyland Klein 	{ .con_id = "i2s3_sync", .dt_id = TEGRA210_CLK_I2S3_SYNC },
25386b301a05SRhyland Klein 	{ .con_id = "i2s4_sync", .dt_id = TEGRA210_CLK_I2S4_SYNC },
25396b301a05SRhyland Klein 	{ .con_id = "vimclk_sync", .dt_id = TEGRA210_CLK_VIMCLK_SYNC },
25406b301a05SRhyland Klein 	{ .con_id = "audio0", .dt_id = TEGRA210_CLK_AUDIO0 },
25416b301a05SRhyland Klein 	{ .con_id = "audio1", .dt_id = TEGRA210_CLK_AUDIO1 },
25426b301a05SRhyland Klein 	{ .con_id = "audio2", .dt_id = TEGRA210_CLK_AUDIO2 },
25436b301a05SRhyland Klein 	{ .con_id = "audio3", .dt_id = TEGRA210_CLK_AUDIO3 },
25446b301a05SRhyland Klein 	{ .con_id = "audio4", .dt_id = TEGRA210_CLK_AUDIO4 },
25456b301a05SRhyland Klein 	{ .con_id = "spdif", .dt_id = TEGRA210_CLK_SPDIF },
25466b301a05SRhyland Klein 	{ .con_id = "spdif_2x", .dt_id = TEGRA210_CLK_SPDIF_2X },
25476b301a05SRhyland Klein 	{ .con_id = "extern1", .dev_id = "clk_out_1", .dt_id = TEGRA210_CLK_EXTERN1 },
25486b301a05SRhyland Klein 	{ .con_id = "extern2", .dev_id = "clk_out_2", .dt_id = TEGRA210_CLK_EXTERN2 },
25496b301a05SRhyland Klein 	{ .con_id = "extern3", .dev_id = "clk_out_3", .dt_id = TEGRA210_CLK_EXTERN3 },
25506b301a05SRhyland Klein 	{ .con_id = "blink", .dt_id = TEGRA210_CLK_BLINK },
25516b301a05SRhyland Klein 	{ .con_id = "cclk_g", .dt_id = TEGRA210_CLK_CCLK_G },
25526b301a05SRhyland Klein 	{ .con_id = "cclk_lp", .dt_id = TEGRA210_CLK_CCLK_LP },
25536b301a05SRhyland Klein 	{ .con_id = "sclk", .dt_id = TEGRA210_CLK_SCLK },
25546b301a05SRhyland Klein 	{ .con_id = "hclk", .dt_id = TEGRA210_CLK_HCLK },
25556b301a05SRhyland Klein 	{ .con_id = "pclk", .dt_id = TEGRA210_CLK_PCLK },
25566b301a05SRhyland Klein 	{ .con_id = "fuse", .dt_id = TEGRA210_CLK_FUSE },
25576b301a05SRhyland Klein 	{ .dev_id = "rtc-tegra", .dt_id = TEGRA210_CLK_RTC },
25586b301a05SRhyland Klein 	{ .dev_id = "timer", .dt_id = TEGRA210_CLK_TIMER },
25596b301a05SRhyland Klein 	{ .con_id = "pll_c4_out0", .dt_id = TEGRA210_CLK_PLL_C4_OUT0 },
25606b301a05SRhyland Klein 	{ .con_id = "pll_c4_out1", .dt_id = TEGRA210_CLK_PLL_C4_OUT1 },
25616b301a05SRhyland Klein 	{ .con_id = "pll_c4_out2", .dt_id = TEGRA210_CLK_PLL_C4_OUT2 },
25626b301a05SRhyland Klein 	{ .con_id = "pll_c4_out3", .dt_id = TEGRA210_CLK_PLL_C4_OUT3 },
25636b301a05SRhyland Klein 	{ .con_id = "dpaux", .dt_id = TEGRA210_CLK_DPAUX },
25646b301a05SRhyland Klein };
25656b301a05SRhyland Klein 
25666b301a05SRhyland Klein static struct tegra_audio_clk_info tegra210_audio_plls[] = {
25676b301a05SRhyland Klein 	{ "pll_a", &pll_a_params, tegra_clk_pll_a, "pll_ref" },
25686b301a05SRhyland Klein 	{ "pll_a1", &pll_a1_params, tegra_clk_pll_a1, "pll_ref" },
25696b301a05SRhyland Klein };
25706b301a05SRhyland Klein 
257124c3ebefSPeter De Schrijver static const char * const aclk_parents[] = {
257224c3ebefSPeter De Schrijver 	"pll_a1", "pll_c", "pll_p", "pll_a_out0", "pll_c2", "pll_c3",
257324c3ebefSPeter De Schrijver 	"clk_m"
257424c3ebefSPeter De Schrijver };
257524c3ebefSPeter De Schrijver 
2576e403d005SPeter De Schrijver static const unsigned int nvjpg_slcg_clkids[] = { TEGRA210_CLK_NVDEC };
2577e403d005SPeter De Schrijver static const unsigned int nvdec_slcg_clkids[] = { TEGRA210_CLK_NVJPG };
2578e403d005SPeter De Schrijver static const unsigned int sor_slcg_clkids[] = { TEGRA210_CLK_HDA2CODEC_2X,
2579e403d005SPeter De Schrijver 	TEGRA210_CLK_HDA2HDMI, TEGRA210_CLK_DISP1, TEGRA210_CLK_DISP2 };
2580e403d005SPeter De Schrijver static const unsigned int disp_slcg_clkids[] = { TEGRA210_CLK_LA,
2581e403d005SPeter De Schrijver 	TEGRA210_CLK_HOST1X};
2582e403d005SPeter De Schrijver static const unsigned int xusba_slcg_clkids[] = { TEGRA210_CLK_XUSB_HOST,
2583e403d005SPeter De Schrijver 	TEGRA210_CLK_XUSB_DEV };
2584e403d005SPeter De Schrijver static const unsigned int xusbb_slcg_clkids[] = { TEGRA210_CLK_XUSB_HOST,
2585e403d005SPeter De Schrijver 	TEGRA210_CLK_XUSB_SS };
2586e403d005SPeter De Schrijver static const unsigned int xusbc_slcg_clkids[] = { TEGRA210_CLK_XUSB_DEV,
2587e403d005SPeter De Schrijver 	TEGRA210_CLK_XUSB_SS };
2588e403d005SPeter De Schrijver static const unsigned int venc_slcg_clkids[] = { TEGRA210_CLK_HOST1X,
2589e403d005SPeter De Schrijver 	TEGRA210_CLK_PLL_D };
2590e403d005SPeter De Schrijver static const unsigned int ape_slcg_clkids[] = { TEGRA210_CLK_ACLK,
2591e403d005SPeter De Schrijver 	TEGRA210_CLK_I2S0, TEGRA210_CLK_I2S1, TEGRA210_CLK_I2S2,
2592e403d005SPeter De Schrijver 	TEGRA210_CLK_I2S3, TEGRA210_CLK_I2S4, TEGRA210_CLK_SPDIF_OUT,
2593e403d005SPeter De Schrijver 	TEGRA210_CLK_D_AUDIO };
2594e403d005SPeter De Schrijver static const unsigned int vic_slcg_clkids[] = { TEGRA210_CLK_HOST1X };
2595e403d005SPeter De Schrijver 
2596e403d005SPeter De Schrijver static struct tegra210_domain_mbist_war tegra210_pg_mbist_war[] = {
2597e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_VENC] = {
2598e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_venc_mbist_war,
2599e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(venc_slcg_clkids),
2600e403d005SPeter De Schrijver 		.clk_init_data = venc_slcg_clkids,
2601e403d005SPeter De Schrijver 	},
2602e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_SATA] = {
2603e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2604e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRC,
2605e403d005SPeter De Schrijver 		.lvl2_mask = BIT(0) | BIT(17) | BIT(19),
2606e403d005SPeter De Schrijver 	},
2607e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_MPE] = {
2608e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2609e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRE,
2610a4dbbceeSJoseph Lo 		.lvl2_mask = BIT(29),
2611e403d005SPeter De Schrijver 	},
2612e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_SOR] = {
2613e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2614e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(sor_slcg_clkids),
2615e403d005SPeter De Schrijver 		.clk_init_data = sor_slcg_clkids,
2616e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRA,
2617e403d005SPeter De Schrijver 		.lvl2_mask = BIT(1) | BIT(2),
2618e403d005SPeter De Schrijver 	},
2619e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_DIS] = {
2620e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_disp_mbist_war,
2621e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(disp_slcg_clkids),
2622e403d005SPeter De Schrijver 		.clk_init_data = disp_slcg_clkids,
2623e403d005SPeter De Schrijver 	},
2624e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_DISB] = {
2625e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(disp_slcg_clkids),
2626e403d005SPeter De Schrijver 		.clk_init_data = disp_slcg_clkids,
2627e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2628e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRA,
2629e403d005SPeter De Schrijver 		.lvl2_mask = BIT(2),
2630e403d005SPeter De Schrijver 	},
2631e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_XUSBA] = {
2632e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(xusba_slcg_clkids),
2633e403d005SPeter De Schrijver 		.clk_init_data = xusba_slcg_clkids,
2634e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2635e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRC,
2636e403d005SPeter De Schrijver 		.lvl2_mask = BIT(30) | BIT(31),
2637e403d005SPeter De Schrijver 	},
2638e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_XUSBB] = {
2639e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(xusbb_slcg_clkids),
2640e403d005SPeter De Schrijver 		.clk_init_data = xusbb_slcg_clkids,
2641e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2642e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRC,
2643e403d005SPeter De Schrijver 		.lvl2_mask = BIT(30) | BIT(31),
2644e403d005SPeter De Schrijver 	},
2645e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_XUSBC] = {
2646e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(xusbc_slcg_clkids),
2647e403d005SPeter De Schrijver 		.clk_init_data = xusbc_slcg_clkids,
2648e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2649e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRC,
2650e403d005SPeter De Schrijver 		.lvl2_mask = BIT(30) | BIT(31),
2651e403d005SPeter De Schrijver 	},
2652e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_VIC] = {
2653e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(vic_slcg_clkids),
2654e403d005SPeter De Schrijver 		.clk_init_data = vic_slcg_clkids,
2655e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_vic_mbist_war,
2656e403d005SPeter De Schrijver 	},
2657e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_NVDEC] = {
2658e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(nvdec_slcg_clkids),
2659e403d005SPeter De Schrijver 		.clk_init_data = nvdec_slcg_clkids,
2660e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2661a4dbbceeSJoseph Lo 		.lvl2_offset = LVL2_CLK_GATE_OVRE,
2662e403d005SPeter De Schrijver 		.lvl2_mask = BIT(9) | BIT(31),
2663e403d005SPeter De Schrijver 	},
2664e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_NVJPG] = {
2665e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(nvjpg_slcg_clkids),
2666e403d005SPeter De Schrijver 		.clk_init_data = nvjpg_slcg_clkids,
2667e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2668a4dbbceeSJoseph Lo 		.lvl2_offset = LVL2_CLK_GATE_OVRE,
2669e403d005SPeter De Schrijver 		.lvl2_mask = BIT(9) | BIT(31),
2670e403d005SPeter De Schrijver 	},
2671e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_AUD] = {
2672e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(ape_slcg_clkids),
2673e403d005SPeter De Schrijver 		.clk_init_data = ape_slcg_clkids,
2674e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_ape_mbist_war,
2675e403d005SPeter De Schrijver 	},
2676e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_VE2] = {
2677e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2678e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRD,
2679e403d005SPeter De Schrijver 		.lvl2_mask = BIT(22),
2680e403d005SPeter De Schrijver 	},
2681e403d005SPeter De Schrijver };
2682e403d005SPeter De Schrijver 
2683e403d005SPeter De Schrijver int tegra210_clk_handle_mbist_war(unsigned int id)
2684e403d005SPeter De Schrijver {
2685e403d005SPeter De Schrijver 	int err;
2686e403d005SPeter De Schrijver 	struct tegra210_domain_mbist_war *mbist_war;
2687e403d005SPeter De Schrijver 
2688e403d005SPeter De Schrijver 	if (id >= ARRAY_SIZE(tegra210_pg_mbist_war)) {
2689e403d005SPeter De Schrijver 		WARN(1, "unknown domain id in MBIST WAR handler\n");
2690e403d005SPeter De Schrijver 		return -EINVAL;
2691e403d005SPeter De Schrijver 	}
2692e403d005SPeter De Schrijver 
2693e403d005SPeter De Schrijver 	mbist_war = &tegra210_pg_mbist_war[id];
2694e403d005SPeter De Schrijver 	if (!mbist_war->handle_lvl2_ovr)
2695e403d005SPeter De Schrijver 		return 0;
2696e403d005SPeter De Schrijver 
2697e403d005SPeter De Schrijver 	if (mbist_war->num_clks && !mbist_war->clks)
2698e403d005SPeter De Schrijver 		return -ENODEV;
2699e403d005SPeter De Schrijver 
2700e403d005SPeter De Schrijver 	err = clk_bulk_prepare_enable(mbist_war->num_clks, mbist_war->clks);
2701e403d005SPeter De Schrijver 	if (err < 0)
2702e403d005SPeter De Schrijver 		return err;
2703e403d005SPeter De Schrijver 
2704e403d005SPeter De Schrijver 	mutex_lock(&lvl2_ovr_lock);
2705e403d005SPeter De Schrijver 
2706e403d005SPeter De Schrijver 	mbist_war->handle_lvl2_ovr(mbist_war);
2707e403d005SPeter De Schrijver 
2708e403d005SPeter De Schrijver 	mutex_unlock(&lvl2_ovr_lock);
2709e403d005SPeter De Schrijver 
2710e403d005SPeter De Schrijver 	clk_bulk_disable_unprepare(mbist_war->num_clks, mbist_war->clks);
2711e403d005SPeter De Schrijver 
2712e403d005SPeter De Schrijver 	return 0;
2713e403d005SPeter De Schrijver }
2714e403d005SPeter De Schrijver 
27153843832fSPeter De Schrijver void tegra210_put_utmipll_in_iddq(void)
27163843832fSPeter De Schrijver {
27173843832fSPeter De Schrijver 	u32 reg;
27183843832fSPeter De Schrijver 
27193843832fSPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0);
27203843832fSPeter De Schrijver 
27213843832fSPeter De Schrijver 	if (reg & UTMIPLL_HW_PWRDN_CFG0_UTMIPLL_LOCK) {
27223843832fSPeter De Schrijver 		pr_err("trying to assert IDDQ while UTMIPLL is locked\n");
27233843832fSPeter De Schrijver 		return;
27243843832fSPeter De Schrijver 	}
27253843832fSPeter De Schrijver 
27263843832fSPeter De Schrijver 	reg |= UTMIPLL_HW_PWRDN_CFG0_IDDQ_OVERRIDE;
27273843832fSPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0);
27283843832fSPeter De Schrijver }
27293843832fSPeter De Schrijver EXPORT_SYMBOL_GPL(tegra210_put_utmipll_in_iddq);
27303843832fSPeter De Schrijver 
27313843832fSPeter De Schrijver void tegra210_put_utmipll_out_iddq(void)
27323843832fSPeter De Schrijver {
27333843832fSPeter De Schrijver 	u32 reg;
27343843832fSPeter De Schrijver 
27353843832fSPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0);
27363843832fSPeter De Schrijver 	reg &= ~UTMIPLL_HW_PWRDN_CFG0_IDDQ_OVERRIDE;
27373843832fSPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0);
27383843832fSPeter De Schrijver }
27393843832fSPeter De Schrijver EXPORT_SYMBOL_GPL(tegra210_put_utmipll_out_iddq);
27403843832fSPeter De Schrijver 
2741e745f992SPeter De Schrijver static void tegra210_utmi_param_configure(void)
2742e745f992SPeter De Schrijver {
2743e745f992SPeter De Schrijver 	u32 reg;
2744e745f992SPeter De Schrijver 	int i;
2745e745f992SPeter De Schrijver 
2746e745f992SPeter De Schrijver 	for (i = 0; i < ARRAY_SIZE(utmi_parameters); i++) {
2747e745f992SPeter De Schrijver 		if (osc_freq == utmi_parameters[i].osc_frequency)
2748e745f992SPeter De Schrijver 			break;
2749e745f992SPeter De Schrijver 	}
2750e745f992SPeter De Schrijver 
2751e745f992SPeter De Schrijver 	if (i >= ARRAY_SIZE(utmi_parameters)) {
2752e745f992SPeter De Schrijver 		pr_err("%s: Unexpected oscillator freq %lu\n", __func__,
2753e745f992SPeter De Schrijver 			osc_freq);
2754e745f992SPeter De Schrijver 		return;
2755e745f992SPeter De Schrijver 	}
2756e745f992SPeter De Schrijver 
2757e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0);
2758e745f992SPeter De Schrijver 	reg &= ~UTMIPLL_HW_PWRDN_CFG0_IDDQ_OVERRIDE;
2759e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0);
2760e745f992SPeter De Schrijver 
2761e745f992SPeter De Schrijver 	udelay(10);
2762e745f992SPeter De Schrijver 
2763e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIP_PLL_CFG2);
2764e745f992SPeter De Schrijver 
2765e745f992SPeter De Schrijver 	/* Program UTMIP PLL stable and active counts */
2766e745f992SPeter De Schrijver 	/* [FIXME] arclk_rst.h says WRONG! This should be 1ms -> 0x50 Check! */
2767e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG2_STABLE_COUNT(~0);
2768e745f992SPeter De Schrijver 	reg |= UTMIP_PLL_CFG2_STABLE_COUNT(utmi_parameters[i].stable_count);
2769e745f992SPeter De Schrijver 
2770e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG2_ACTIVE_DLY_COUNT(~0);
2771e745f992SPeter De Schrijver 	reg |=
2772e745f992SPeter De Schrijver 	UTMIP_PLL_CFG2_ACTIVE_DLY_COUNT(utmi_parameters[i].active_delay_count);
2773e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIP_PLL_CFG2);
2774e745f992SPeter De Schrijver 
2775e745f992SPeter De Schrijver 	/* Program UTMIP PLL delay and oscillator frequency counts */
2776e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIP_PLL_CFG1);
2777e745f992SPeter De Schrijver 
277871422dbbSAlex Frid 	reg &= ~UTMIP_PLL_CFG1_ENABLE_DLY_COUNT(~0);
2779e745f992SPeter De Schrijver 	reg |=
2780e745f992SPeter De Schrijver 	UTMIP_PLL_CFG1_ENABLE_DLY_COUNT(utmi_parameters[i].enable_delay_count);
2781e745f992SPeter De Schrijver 
2782e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG1_XTAL_FREQ_COUNT(~0);
2783e745f992SPeter De Schrijver 	reg |=
2784e745f992SPeter De Schrijver 	UTMIP_PLL_CFG1_XTAL_FREQ_COUNT(utmi_parameters[i].xtal_freq_count);
2785e745f992SPeter De Schrijver 
2786e745f992SPeter De Schrijver 	reg |= UTMIP_PLL_CFG1_FORCE_PLLU_POWERDOWN;
2787e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIP_PLL_CFG1);
2788e745f992SPeter De Schrijver 
2789e745f992SPeter De Schrijver 	/* Remove power downs from UTMIP PLL control bits */
2790e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIP_PLL_CFG1);
2791e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERDOWN;
2792e745f992SPeter De Schrijver 	reg |= UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERUP;
2793e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIP_PLL_CFG1);
279471422dbbSAlex Frid 
279571422dbbSAlex Frid 	udelay(20);
2796e745f992SPeter De Schrijver 
2797e745f992SPeter De Schrijver 	/* Enable samplers for SNPS, XUSB_HOST, XUSB_DEV */
2798e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIP_PLL_CFG2);
2799e745f992SPeter De Schrijver 	reg |= UTMIP_PLL_CFG2_FORCE_PD_SAMP_A_POWERUP;
2800e745f992SPeter De Schrijver 	reg |= UTMIP_PLL_CFG2_FORCE_PD_SAMP_B_POWERUP;
2801e745f992SPeter De Schrijver 	reg |= UTMIP_PLL_CFG2_FORCE_PD_SAMP_D_POWERUP;
2802e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG2_FORCE_PD_SAMP_A_POWERDOWN;
2803e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG2_FORCE_PD_SAMP_B_POWERDOWN;
2804e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG2_FORCE_PD_SAMP_D_POWERDOWN;
2805e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIP_PLL_CFG2);
2806e745f992SPeter De Schrijver 
2807e745f992SPeter De Schrijver 	/* Setup HW control of UTMIPLL */
2808e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIP_PLL_CFG1);
2809e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERDOWN;
2810e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERUP;
2811e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIP_PLL_CFG1);
2812e745f992SPeter De Schrijver 
2813e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0);
2814e745f992SPeter De Schrijver 	reg |= UTMIPLL_HW_PWRDN_CFG0_USE_LOCKDET;
2815e745f992SPeter De Schrijver 	reg &= ~UTMIPLL_HW_PWRDN_CFG0_CLK_ENABLE_SWCTL;
2816e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0);
2817e745f992SPeter De Schrijver 
2818e745f992SPeter De Schrijver 	udelay(1);
2819e745f992SPeter De Schrijver 
2820e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + XUSB_PLL_CFG0);
2821e745f992SPeter De Schrijver 	reg &= ~XUSB_PLL_CFG0_UTMIPLL_LOCK_DLY;
2822e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + XUSB_PLL_CFG0);
2823e745f992SPeter De Schrijver 
2824e745f992SPeter De Schrijver 	udelay(1);
2825e745f992SPeter De Schrijver 
2826e745f992SPeter De Schrijver 	/* Enable HW control UTMIPLL */
2827e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0);
2828e745f992SPeter De Schrijver 	reg |= UTMIPLL_HW_PWRDN_CFG0_SEQ_ENABLE;
2829e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0);
2830e745f992SPeter De Schrijver }
2831e745f992SPeter De Schrijver 
2832e745f992SPeter De Schrijver static int tegra210_enable_pllu(void)
2833e745f992SPeter De Schrijver {
2834e745f992SPeter De Schrijver 	struct tegra_clk_pll_freq_table *fentry;
2835e745f992SPeter De Schrijver 	struct tegra_clk_pll pllu;
2836e745f992SPeter De Schrijver 	u32 reg;
2837535f296dSSowjanya Komatineni 	int ret;
2838e745f992SPeter De Schrijver 
2839e745f992SPeter De Schrijver 	for (fentry = pll_u_freq_table; fentry->input_rate; fentry++) {
2840e745f992SPeter De Schrijver 		if (fentry->input_rate == pll_ref_freq)
2841e745f992SPeter De Schrijver 			break;
2842e745f992SPeter De Schrijver 	}
2843e745f992SPeter De Schrijver 
2844e745f992SPeter De Schrijver 	if (!fentry->input_rate) {
2845e745f992SPeter De Schrijver 		pr_err("Unknown PLL_U reference frequency %lu\n", pll_ref_freq);
2846e745f992SPeter De Schrijver 		return -EINVAL;
2847e745f992SPeter De Schrijver 	}
2848e745f992SPeter De Schrijver 
2849e745f992SPeter De Schrijver 	/* clear IDDQ bit */
2850e745f992SPeter De Schrijver 	pllu.params = &pll_u_vco_params;
2851e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + pllu.params->ext_misc_reg[0]);
2852e745f992SPeter De Schrijver 	reg &= ~BIT(pllu.params->iddq_bit_idx);
2853e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + pllu.params->ext_misc_reg[0]);
2854f68cbb35SSowjanya Komatineni 	fence_udelay(5, clk_base);
2855e745f992SPeter De Schrijver 
2856e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + PLLU_BASE);
2857e745f992SPeter De Schrijver 	reg &= ~GENMASK(20, 0);
2858e745f992SPeter De Schrijver 	reg |= fentry->m;
2859e745f992SPeter De Schrijver 	reg |= fentry->n << 8;
2860e745f992SPeter De Schrijver 	reg |= fentry->p << 16;
2861e745f992SPeter De Schrijver 	writel(reg, clk_base + PLLU_BASE);
2862f68cbb35SSowjanya Komatineni 	fence_udelay(1, clk_base);
2863e745f992SPeter De Schrijver 	reg |= PLL_ENABLE;
2864e745f992SPeter De Schrijver 	writel(reg, clk_base + PLLU_BASE);
2865e745f992SPeter De Schrijver 
2866535f296dSSowjanya Komatineni 	/*
2867535f296dSSowjanya Komatineni 	 * During clocks resume, same PLLU init and enable sequence get
2868535f296dSSowjanya Komatineni 	 * executed. So, readx_poll_timeout_atomic can't be used here as it
2869535f296dSSowjanya Komatineni 	 * uses ktime_get() and timekeeping resume doesn't happen by that
2870535f296dSSowjanya Komatineni 	 * time. So, using tegra210_wait_for_mask for PLL LOCK.
2871535f296dSSowjanya Komatineni 	 */
2872535f296dSSowjanya Komatineni 	ret = tegra210_wait_for_mask(&pllu, PLLU_BASE, PLL_BASE_LOCK);
2873535f296dSSowjanya Komatineni 	if (ret) {
2874e745f992SPeter De Schrijver 		pr_err("Timed out waiting for PLL_U to lock\n");
2875e745f992SPeter De Schrijver 		return -ETIMEDOUT;
2876e745f992SPeter De Schrijver 	}
2877e745f992SPeter De Schrijver 
2878e745f992SPeter De Schrijver 	return 0;
2879e745f992SPeter De Schrijver }
2880e745f992SPeter De Schrijver 
2881e745f992SPeter De Schrijver static int tegra210_init_pllu(void)
2882e745f992SPeter De Schrijver {
2883e745f992SPeter De Schrijver 	u32 reg;
2884e745f992SPeter De Schrijver 	int err;
2885e745f992SPeter De Schrijver 
2886e745f992SPeter De Schrijver 	tegra210_pllu_set_defaults(&pll_u_vco_params);
2887e745f992SPeter De Schrijver 	/* skip initialization when pllu is in hw controlled mode */
2888e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + PLLU_BASE);
2889e745f992SPeter De Schrijver 	if (reg & PLLU_BASE_OVERRIDE) {
2890e745f992SPeter De Schrijver 		if (!(reg & PLL_ENABLE)) {
2891e745f992SPeter De Schrijver 			err = tegra210_enable_pllu();
2892e745f992SPeter De Schrijver 			if (err < 0) {
2893e745f992SPeter De Schrijver 				WARN_ON(1);
2894e745f992SPeter De Schrijver 				return err;
2895e745f992SPeter De Schrijver 			}
2896e745f992SPeter De Schrijver 		}
2897e745f992SPeter De Schrijver 		/* enable hw controlled mode */
2898e745f992SPeter De Schrijver 		reg = readl_relaxed(clk_base + PLLU_BASE);
2899e745f992SPeter De Schrijver 		reg &= ~PLLU_BASE_OVERRIDE;
2900e745f992SPeter De Schrijver 		writel(reg, clk_base + PLLU_BASE);
2901e745f992SPeter De Schrijver 
2902e745f992SPeter De Schrijver 		reg = readl_relaxed(clk_base + PLLU_HW_PWRDN_CFG0);
2903e745f992SPeter De Schrijver 		reg |= PLLU_HW_PWRDN_CFG0_IDDQ_PD_INCLUDE |
2904e745f992SPeter De Schrijver 		       PLLU_HW_PWRDN_CFG0_USE_SWITCH_DETECT |
2905e745f992SPeter De Schrijver 		       PLLU_HW_PWRDN_CFG0_USE_LOCKDET;
2906e745f992SPeter De Schrijver 		reg &= ~(PLLU_HW_PWRDN_CFG0_CLK_ENABLE_SWCTL |
2907e745f992SPeter De Schrijver 			PLLU_HW_PWRDN_CFG0_CLK_SWITCH_SWCTL);
2908e745f992SPeter De Schrijver 		writel_relaxed(reg, clk_base + PLLU_HW_PWRDN_CFG0);
2909e745f992SPeter De Schrijver 
2910e745f992SPeter De Schrijver 		reg = readl_relaxed(clk_base + XUSB_PLL_CFG0);
2911e745f992SPeter De Schrijver 		reg &= ~XUSB_PLL_CFG0_PLLU_LOCK_DLY_MASK;
2912e745f992SPeter De Schrijver 		writel_relaxed(reg, clk_base + XUSB_PLL_CFG0);
2913f68cbb35SSowjanya Komatineni 		fence_udelay(1, clk_base);
2914e745f992SPeter De Schrijver 
2915e745f992SPeter De Schrijver 		reg = readl_relaxed(clk_base + PLLU_HW_PWRDN_CFG0);
2916e745f992SPeter De Schrijver 		reg |= PLLU_HW_PWRDN_CFG0_SEQ_ENABLE;
2917e745f992SPeter De Schrijver 		writel_relaxed(reg, clk_base + PLLU_HW_PWRDN_CFG0);
2918f68cbb35SSowjanya Komatineni 		fence_udelay(1, clk_base);
2919e745f992SPeter De Schrijver 
2920e745f992SPeter De Schrijver 		reg = readl_relaxed(clk_base + PLLU_BASE);
2921e745f992SPeter De Schrijver 		reg &= ~PLLU_BASE_CLKENABLE_USB;
2922e745f992SPeter De Schrijver 		writel_relaxed(reg, clk_base + PLLU_BASE);
2923e745f992SPeter De Schrijver 	}
2924e745f992SPeter De Schrijver 
2925e745f992SPeter De Schrijver 	/* enable UTMIPLL hw control if not yet done by the bootloader */
2926e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0);
2927e745f992SPeter De Schrijver 	if (!(reg & UTMIPLL_HW_PWRDN_CFG0_SEQ_ENABLE))
2928e745f992SPeter De Schrijver 		tegra210_utmi_param_configure();
2929e745f992SPeter De Schrijver 
2930e745f992SPeter De Schrijver 	return 0;
2931e745f992SPeter De Schrijver }
2932e745f992SPeter De Schrijver 
2933bc2e4d29SThierry Reding /*
293405308d7eSThierry Reding  * The SOR hardware blocks are driven by two clocks: a module clock that is
293505308d7eSThierry Reding  * used to access registers and a pixel clock that is sourced from the same
293605308d7eSThierry Reding  * pixel clock that also drives the head attached to the SOR. The module
293705308d7eSThierry Reding  * clock is typically called sorX (with X being the SOR instance) and the
293805308d7eSThierry Reding  * pixel clock is called sorX_out. The source for the SOR pixel clock is
293905308d7eSThierry Reding  * referred to as the "parent" clock.
294005308d7eSThierry Reding  *
294105308d7eSThierry Reding  * On Tegra186 and newer, clocks are provided by the BPMP. Unfortunately the
294205308d7eSThierry Reding  * BPMP implementation for the SOR clocks doesn't exactly match the above in
294305308d7eSThierry Reding  * some aspects. For example, the SOR module is really clocked by the pad or
294405308d7eSThierry Reding  * sor_safe clocks, but BPMP models the sorX clock as being sourced by the
294505308d7eSThierry Reding  * pixel clocks. Conversely the sorX_out clock is sourced by the sor_safe or
294605308d7eSThierry Reding  * pad clocks on BPMP.
294705308d7eSThierry Reding  *
294805308d7eSThierry Reding  * In order to allow the display driver to deal with all SoC generations in
294905308d7eSThierry Reding  * a unified way, implement the BPMP semantics in this driver.
2950bc2e4d29SThierry Reding  */
295105308d7eSThierry Reding 
295205308d7eSThierry Reding static const char * const sor0_parents[] = {
295305308d7eSThierry Reding 	"pll_d_out0",
295405308d7eSThierry Reding };
295505308d7eSThierry Reding 
295605308d7eSThierry Reding static const char * const sor0_out_parents[] = {
295705308d7eSThierry Reding 	"sor_safe", "sor0_pad_clkout",
2958bc2e4d29SThierry Reding };
2959bc2e4d29SThierry Reding 
2960bc2e4d29SThierry Reding static const char * const sor1_parents[] = {
2961bc2e4d29SThierry Reding 	"pll_p", "pll_d_out0", "pll_d2_out0", "clk_m",
2962bc2e4d29SThierry Reding };
2963bc2e4d29SThierry Reding 
2964bc2e4d29SThierry Reding static u32 sor1_parents_idx[] = { 0, 2, 5, 6 };
2965bc2e4d29SThierry Reding 
296605308d7eSThierry Reding static const char * const sor1_out_parents[] = {
296705308d7eSThierry Reding 	/*
296805308d7eSThierry Reding 	 * Bit 0 of the mux selects sor1_pad_clkout, irrespective of bit 1, so
296905308d7eSThierry Reding 	 * the sor1_pad_clkout parent appears twice in the list below. This is
297005308d7eSThierry Reding 	 * merely to support clk_get_parent() if firmware happened to set
297105308d7eSThierry Reding 	 * these bits to 0b11. While not an invalid setting, code should
297205308d7eSThierry Reding 	 * always set the bits to 0b01 to select sor1_pad_clkout.
297305308d7eSThierry Reding 	 */
297405308d7eSThierry Reding 	"sor_safe", "sor1_pad_clkout", "sor1_out", "sor1_pad_clkout",
297505308d7eSThierry Reding };
297605308d7eSThierry Reding 
2977bc2e4d29SThierry Reding static struct tegra_periph_init_data tegra210_periph[] = {
297805308d7eSThierry Reding 	/*
297905308d7eSThierry Reding 	 * On Tegra210, the sor0 clock doesn't have a mux it bitfield 31:29,
298005308d7eSThierry Reding 	 * but it is hardwired to the pll_d_out0 clock.
298105308d7eSThierry Reding 	 */
298205308d7eSThierry Reding 	TEGRA_INIT_DATA_TABLE("sor0", NULL, NULL, sor0_parents,
298305308d7eSThierry Reding 			      CLK_SOURCE_SOR0, 29, 0x0, 0, 0, 0, 0,
298405308d7eSThierry Reding 			      0, 182, 0, tegra_clk_sor0, NULL, 0,
298505308d7eSThierry Reding 			      &sor0_lock),
298605308d7eSThierry Reding 	TEGRA_INIT_DATA_TABLE("sor0_out", NULL, NULL, sor0_out_parents,
298705308d7eSThierry Reding 			      CLK_SOURCE_SOR0, 14, 0x1, 0, 0, 0, 0,
298805308d7eSThierry Reding 			      0, 0, TEGRA_PERIPH_NO_GATE, tegra_clk_sor0_out,
298905308d7eSThierry Reding 			      NULL, 0, &sor0_lock),
2990bc2e4d29SThierry Reding 	TEGRA_INIT_DATA_TABLE("sor1", NULL, NULL, sor1_parents,
2991bc2e4d29SThierry Reding 			      CLK_SOURCE_SOR1, 29, 0x7, 0, 0, 8, 1,
299205308d7eSThierry Reding 			      TEGRA_DIVIDER_ROUND_UP, 183, 0,
299305308d7eSThierry Reding 			      tegra_clk_sor1, sor1_parents_idx, 0,
299405308d7eSThierry Reding 			      &sor1_lock),
299505308d7eSThierry Reding 	TEGRA_INIT_DATA_TABLE("sor1_out", NULL, NULL, sor1_out_parents,
299605308d7eSThierry Reding 			      CLK_SOURCE_SOR1, 14, 0x3, 0, 0, 0, 0,
299705308d7eSThierry Reding 			      0, 0, TEGRA_PERIPH_NO_GATE,
299805308d7eSThierry Reding 			      tegra_clk_sor1_out, NULL, 0, &sor1_lock),
2999bc2e4d29SThierry Reding };
3000bc2e4d29SThierry Reding 
300189e423c3SPeter De Schrijver static const char * const la_parents[] = {
300289e423c3SPeter De Schrijver 	"pll_p", "pll_c2", "pll_c", "pll_c3", "pll_re_out1", "pll_a1", "clk_m", "pll_c4_out0"
300389e423c3SPeter De Schrijver };
300489e423c3SPeter De Schrijver 
300589e423c3SPeter De Schrijver static struct tegra_clk_periph tegra210_la =
300689e423c3SPeter De Schrijver 	TEGRA_CLK_PERIPH(29, 7, 9, 0, 8, 1, TEGRA_DIVIDER_ROUND_UP, 76, 0, NULL, 0);
300789e423c3SPeter De Schrijver 
30086b301a05SRhyland Klein static __init void tegra210_periph_clk_init(void __iomem *clk_base,
30096b301a05SRhyland Klein 					    void __iomem *pmc_base)
30106b301a05SRhyland Klein {
30116b301a05SRhyland Klein 	struct clk *clk;
3012bc2e4d29SThierry Reding 	unsigned int i;
30136b301a05SRhyland Klein 
30146b301a05SRhyland Klein 	/* xusb_ss_div2 */
30156b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "xusb_ss_div2", "xusb_ss_src", 0,
30166b301a05SRhyland Klein 					1, 2);
30176b301a05SRhyland Klein 	clks[TEGRA210_CLK_XUSB_SS_DIV2] = clk;
30186b301a05SRhyland Klein 
301974d3ba0bSThierry Reding 	clk = tegra_clk_register_periph_fixed("sor_safe", "pll_p", 0, clk_base,
302074d3ba0bSThierry Reding 					      1, 17, 222);
302174d3ba0bSThierry Reding 	clks[TEGRA210_CLK_SOR_SAFE] = clk;
302274d3ba0bSThierry Reding 
30232e34c2acSThierry Reding 	clk = tegra_clk_register_periph_fixed("dpaux", "sor_safe", 0, clk_base,
3024eede7113SThierry Reding 					      1, 17, 181);
3025eede7113SThierry Reding 	clks[TEGRA210_CLK_DPAUX] = clk;
3026eede7113SThierry Reding 
30272e34c2acSThierry Reding 	clk = tegra_clk_register_periph_fixed("dpaux1", "sor_safe", 0, clk_base,
3028eede7113SThierry Reding 					      1, 17, 207);
3029eede7113SThierry Reding 	clks[TEGRA210_CLK_DPAUX1] = clk;
3030eede7113SThierry Reding 
30316b301a05SRhyland Klein 	/* pll_d_dsi_out */
30326b301a05SRhyland Klein 	clk = clk_register_gate(NULL, "pll_d_dsi_out", "pll_d_out0", 0,
30336b301a05SRhyland Klein 				clk_base + PLLD_MISC0, 21, 0, &pll_d_lock);
30346b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_D_DSI_OUT] = clk;
30356b301a05SRhyland Klein 
30366b301a05SRhyland Klein 	/* dsia */
30376b301a05SRhyland Klein 	clk = tegra_clk_register_periph_gate("dsia", "pll_d_dsi_out", 0,
30386b301a05SRhyland Klein 					     clk_base, 0, 48,
30396b301a05SRhyland Klein 					     periph_clk_enb_refcnt);
30406b301a05SRhyland Klein 	clks[TEGRA210_CLK_DSIA] = clk;
30416b301a05SRhyland Klein 
30426b301a05SRhyland Klein 	/* dsib */
30436b301a05SRhyland Klein 	clk = tegra_clk_register_periph_gate("dsib", "pll_d_dsi_out", 0,
30446b301a05SRhyland Klein 					     clk_base, 0, 82,
30456b301a05SRhyland Klein 					     periph_clk_enb_refcnt);
30466b301a05SRhyland Klein 	clks[TEGRA210_CLK_DSIB] = clk;
30476b301a05SRhyland Klein 
304889e423c3SPeter De Schrijver 	/* la */
304989e423c3SPeter De Schrijver 	clk = tegra_clk_register_periph("la", la_parents,
305089e423c3SPeter De Schrijver 			ARRAY_SIZE(la_parents), &tegra210_la, clk_base,
305189e423c3SPeter De Schrijver 			CLK_SOURCE_LA, 0);
305289e423c3SPeter De Schrijver 	clks[TEGRA210_CLK_LA] = clk;
305389e423c3SPeter De Schrijver 
30546b301a05SRhyland Klein 	/* emc mux */
30556b301a05SRhyland Klein 	clk = clk_register_mux(NULL, "emc_mux", mux_pllmcp_clkm,
30566b301a05SRhyland Klein 			       ARRAY_SIZE(mux_pllmcp_clkm), 0,
30576b301a05SRhyland Klein 			       clk_base + CLK_SOURCE_EMC,
30586b301a05SRhyland Klein 			       29, 3, 0, &emc_lock);
30596b301a05SRhyland Klein 
30606b301a05SRhyland Klein 	clk = tegra_clk_register_mc("mc", "emc_mux", clk_base + CLK_SOURCE_EMC,
30616b301a05SRhyland Klein 				    &emc_lock);
30626b301a05SRhyland Klein 	clks[TEGRA210_CLK_MC] = clk;
30636b301a05SRhyland Klein 
30646b301a05SRhyland Klein 	/* cml0 */
30656b301a05SRhyland Klein 	clk = clk_register_gate(NULL, "cml0", "pll_e", 0, clk_base + PLLE_AUX,
30666b301a05SRhyland Klein 				0, 0, &pll_e_lock);
30676b301a05SRhyland Klein 	clk_register_clkdev(clk, "cml0", NULL);
30686b301a05SRhyland Klein 	clks[TEGRA210_CLK_CML0] = clk;
30696b301a05SRhyland Klein 
30706b301a05SRhyland Klein 	/* cml1 */
30716b301a05SRhyland Klein 	clk = clk_register_gate(NULL, "cml1", "pll_e", 0, clk_base + PLLE_AUX,
30726b301a05SRhyland Klein 				1, 0, &pll_e_lock);
30736b301a05SRhyland Klein 	clk_register_clkdev(clk, "cml1", NULL);
30746b301a05SRhyland Klein 	clks[TEGRA210_CLK_CML1] = clk;
30756b301a05SRhyland Klein 
307624c3ebefSPeter De Schrijver 	clk = tegra_clk_register_super_clk("aclk", aclk_parents,
307724c3ebefSPeter De Schrijver 				ARRAY_SIZE(aclk_parents), 0, clk_base + 0x6e0,
307824c3ebefSPeter De Schrijver 				0, NULL);
307924c3ebefSPeter De Schrijver 	clks[TEGRA210_CLK_ACLK] = clk;
308024c3ebefSPeter De Schrijver 
3081c76a69e4SPeter De-Schrijver 	clk = tegra_clk_register_sdmmc_mux_div("sdmmc2", clk_base,
3082c76a69e4SPeter De-Schrijver 					    CLK_SOURCE_SDMMC2, 9,
3083c76a69e4SPeter De-Schrijver 					    TEGRA_DIVIDER_ROUND_UP, 0, NULL);
3084c76a69e4SPeter De-Schrijver 	clks[TEGRA210_CLK_SDMMC2] = clk;
3085c76a69e4SPeter De-Schrijver 
3086c76a69e4SPeter De-Schrijver 	clk = tegra_clk_register_sdmmc_mux_div("sdmmc4", clk_base,
3087c76a69e4SPeter De-Schrijver 					    CLK_SOURCE_SDMMC4, 15,
3088c76a69e4SPeter De-Schrijver 					    TEGRA_DIVIDER_ROUND_UP, 0, NULL);
3089c76a69e4SPeter De-Schrijver 	clks[TEGRA210_CLK_SDMMC4] = clk;
3090c76a69e4SPeter De-Schrijver 
3091bc2e4d29SThierry Reding 	for (i = 0; i < ARRAY_SIZE(tegra210_periph); i++) {
3092bc2e4d29SThierry Reding 		struct tegra_periph_init_data *init = &tegra210_periph[i];
3093bc2e4d29SThierry Reding 		struct clk **clkp;
3094bc2e4d29SThierry Reding 
3095bc2e4d29SThierry Reding 		clkp = tegra_lookup_dt_id(init->clk_id, tegra210_clks);
3096bc2e4d29SThierry Reding 		if (!clkp) {
3097bc2e4d29SThierry Reding 			pr_warn("clock %u not found\n", init->clk_id);
3098bc2e4d29SThierry Reding 			continue;
3099bc2e4d29SThierry Reding 		}
3100bc2e4d29SThierry Reding 
3101bc2e4d29SThierry Reding 		clk = tegra_clk_register_periph_data(clk_base, init);
3102bc2e4d29SThierry Reding 		*clkp = clk;
3103bc2e4d29SThierry Reding 	}
3104bc2e4d29SThierry Reding 
31056b301a05SRhyland Klein 	tegra_periph_clk_init(clk_base, pmc_base, tegra210_clks, &pll_p_params);
31066b301a05SRhyland Klein }
31076b301a05SRhyland Klein 
31086b301a05SRhyland Klein static void __init tegra210_pll_init(void __iomem *clk_base,
31096b301a05SRhyland Klein 				     void __iomem *pmc)
31106b301a05SRhyland Klein {
31116b301a05SRhyland Klein 	struct clk *clk;
31126b301a05SRhyland Klein 
31136b301a05SRhyland Klein 	/* PLLC */
3114ac99afe5SAlex Frid 	clk = tegra_clk_register_pllc_tegra210("pll_c", "pll_ref", clk_base,
31156b301a05SRhyland Klein 			pmc, 0, &pll_c_params, NULL);
31166b301a05SRhyland Klein 	if (!WARN_ON(IS_ERR(clk)))
31176b301a05SRhyland Klein 		clk_register_clkdev(clk, "pll_c", NULL);
31186b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C] = clk;
31196b301a05SRhyland Klein 
31206b301a05SRhyland Klein 	/* PLLC_OUT1 */
31216b301a05SRhyland Klein 	clk = tegra_clk_register_divider("pll_c_out1_div", "pll_c",
31226b301a05SRhyland Klein 			clk_base + PLLC_OUT, 0, TEGRA_DIVIDER_ROUND_UP,
31236b301a05SRhyland Klein 			8, 8, 1, NULL);
31246b301a05SRhyland Klein 	clk = tegra_clk_register_pll_out("pll_c_out1", "pll_c_out1_div",
31256b301a05SRhyland Klein 				clk_base + PLLC_OUT, 1, 0,
31266b301a05SRhyland Klein 				CLK_SET_RATE_PARENT, 0, NULL);
31276b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c_out1", NULL);
31286b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C_OUT1] = clk;
31296b301a05SRhyland Klein 
31306b301a05SRhyland Klein 	/* PLLC_UD */
31316b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "pll_c_ud", "pll_c",
31326b301a05SRhyland Klein 					CLK_SET_RATE_PARENT, 1, 1);
31336b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c_ud", NULL);
31346b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C_UD] = clk;
31356b301a05SRhyland Klein 
31366b301a05SRhyland Klein 	/* PLLC2 */
31376b301a05SRhyland Klein 	clk = tegra_clk_register_pllc_tegra210("pll_c2", "pll_ref", clk_base,
31386b301a05SRhyland Klein 			     pmc, 0, &pll_c2_params, NULL);
31396b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c2", NULL);
31406b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C2] = clk;
31416b301a05SRhyland Klein 
31426b301a05SRhyland Klein 	/* PLLC3 */
31436b301a05SRhyland Klein 	clk = tegra_clk_register_pllc_tegra210("pll_c3", "pll_ref", clk_base,
31446b301a05SRhyland Klein 			     pmc, 0, &pll_c3_params, NULL);
31456b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c3", NULL);
31466b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C3] = clk;
31476b301a05SRhyland Klein 
31486b301a05SRhyland Klein 	/* PLLM */
31496b301a05SRhyland Klein 	clk = tegra_clk_register_pllm("pll_m", "osc", clk_base, pmc,
31506b301a05SRhyland Klein 			     CLK_SET_RATE_GATE, &pll_m_params, NULL);
31516b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_m", NULL);
31526b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_M] = clk;
31536b301a05SRhyland Klein 
31546b301a05SRhyland Klein 	/* PLLMB */
31556b301a05SRhyland Klein 	clk = tegra_clk_register_pllmb("pll_mb", "osc", clk_base, pmc,
31566b301a05SRhyland Klein 			     CLK_SET_RATE_GATE, &pll_mb_params, NULL);
31576b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_mb", NULL);
31586b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_MB] = clk;
31596b301a05SRhyland Klein 
31606b301a05SRhyland Klein 	/* PLLM_UD */
31616b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "pll_m_ud", "pll_m",
31626b301a05SRhyland Klein 					CLK_SET_RATE_PARENT, 1, 1);
31636b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_m_ud", NULL);
31646b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_M_UD] = clk;
31656b301a05SRhyland Klein 
31666b301a05SRhyland Klein 	/* PLLU_VCO */
3167e745f992SPeter De Schrijver 	if (!tegra210_init_pllu()) {
3168e745f992SPeter De Schrijver 		clk = clk_register_fixed_rate(NULL, "pll_u_vco", "pll_ref", 0,
3169e745f992SPeter De Schrijver 					      480*1000*1000);
31706b301a05SRhyland Klein 		clk_register_clkdev(clk, "pll_u_vco", NULL);
31716b301a05SRhyland Klein 		clks[TEGRA210_CLK_PLL_U] = clk;
3172e745f992SPeter De Schrijver 	}
31736b301a05SRhyland Klein 
31746b301a05SRhyland Klein 	/* PLLU_OUT */
31756b301a05SRhyland Klein 	clk = clk_register_divider_table(NULL, "pll_u_out", "pll_u_vco", 0,
31766b301a05SRhyland Klein 					 clk_base + PLLU_BASE, 16, 4, 0,
31776b301a05SRhyland Klein 					 pll_vco_post_div_table, NULL);
31786b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_u_out", NULL);
31796b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_U_OUT] = clk;
31806b301a05SRhyland Klein 
31816b301a05SRhyland Klein 	/* PLLU_OUT1 */
31826b301a05SRhyland Klein 	clk = tegra_clk_register_divider("pll_u_out1_div", "pll_u_out",
31836b301a05SRhyland Klein 				clk_base + PLLU_OUTA, 0,
31846b301a05SRhyland Klein 				TEGRA_DIVIDER_ROUND_UP,
31856b301a05SRhyland Klein 				8, 8, 1, &pll_u_lock);
31866b301a05SRhyland Klein 	clk = tegra_clk_register_pll_out("pll_u_out1", "pll_u_out1_div",
31876b301a05SRhyland Klein 				clk_base + PLLU_OUTA, 1, 0,
31886b301a05SRhyland Klein 				CLK_SET_RATE_PARENT, 0, &pll_u_lock);
31896b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_u_out1", NULL);
31906b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_U_OUT1] = clk;
31916b301a05SRhyland Klein 
31926b301a05SRhyland Klein 	/* PLLU_OUT2 */
31936b301a05SRhyland Klein 	clk = tegra_clk_register_divider("pll_u_out2_div", "pll_u_out",
31946b301a05SRhyland Klein 				clk_base + PLLU_OUTA, 0,
31956b301a05SRhyland Klein 				TEGRA_DIVIDER_ROUND_UP,
31966b301a05SRhyland Klein 				24, 8, 1, &pll_u_lock);
31976b301a05SRhyland Klein 	clk = tegra_clk_register_pll_out("pll_u_out2", "pll_u_out2_div",
31986b301a05SRhyland Klein 				clk_base + PLLU_OUTA, 17, 16,
31996b301a05SRhyland Klein 				CLK_SET_RATE_PARENT, 0, &pll_u_lock);
32006b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_u_out2", NULL);
32016b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_U_OUT2] = clk;
32026b301a05SRhyland Klein 
32036b301a05SRhyland Klein 	/* PLLU_480M */
32046b301a05SRhyland Klein 	clk = clk_register_gate(NULL, "pll_u_480M", "pll_u_vco",
32056b301a05SRhyland Klein 				CLK_SET_RATE_PARENT, clk_base + PLLU_BASE,
32066b301a05SRhyland Klein 				22, 0, &pll_u_lock);
32076b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_u_480M", NULL);
32086b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_U_480M] = clk;
32096b301a05SRhyland Klein 
32106b301a05SRhyland Klein 	/* PLLU_60M */
32116b301a05SRhyland Klein 	clk = clk_register_gate(NULL, "pll_u_60M", "pll_u_out2",
32126b301a05SRhyland Klein 				CLK_SET_RATE_PARENT, clk_base + PLLU_BASE,
32137157c69aSAlex Frid 				23, 0, &pll_u_lock);
32146b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_u_60M", NULL);
32156b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_U_60M] = clk;
32166b301a05SRhyland Klein 
32176b301a05SRhyland Klein 	/* PLLU_48M */
32186b301a05SRhyland Klein 	clk = clk_register_gate(NULL, "pll_u_48M", "pll_u_out1",
32196b301a05SRhyland Klein 				CLK_SET_RATE_PARENT, clk_base + PLLU_BASE,
32207157c69aSAlex Frid 				25, 0, &pll_u_lock);
32216b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_u_48M", NULL);
32226b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_U_48M] = clk;
32236b301a05SRhyland Klein 
32246b301a05SRhyland Klein 	/* PLLD */
32256b301a05SRhyland Klein 	clk = tegra_clk_register_pll("pll_d", "pll_ref", clk_base, pmc, 0,
32266b301a05SRhyland Klein 			    &pll_d_params, &pll_d_lock);
32276b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_d", NULL);
32286b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_D] = clk;
32296b301a05SRhyland Klein 
32306b301a05SRhyland Klein 	/* PLLD_OUT0 */
32316b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "pll_d_out0", "pll_d",
32326b301a05SRhyland Klein 					CLK_SET_RATE_PARENT, 1, 2);
32336b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_d_out0", NULL);
32346b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_D_OUT0] = clk;
32356b301a05SRhyland Klein 
32366b301a05SRhyland Klein 	/* PLLRE */
3237926655f9SRhyland Klein 	clk = tegra_clk_register_pllre_tegra210("pll_re_vco", "pll_ref",
3238926655f9SRhyland Klein 						clk_base, pmc, 0,
3239926655f9SRhyland Klein 						&pll_re_vco_params,
3240926655f9SRhyland Klein 						&pll_re_lock, pll_ref_freq);
32416b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_re_vco", NULL);
32426b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_RE_VCO] = clk;
32436b301a05SRhyland Klein 
32446b301a05SRhyland Klein 	clk = clk_register_divider_table(NULL, "pll_re_out", "pll_re_vco", 0,
32456b301a05SRhyland Klein 					 clk_base + PLLRE_BASE, 16, 5, 0,
32466b301a05SRhyland Klein 					 pll_vco_post_div_table, &pll_re_lock);
32476b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_re_out", NULL);
32486b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_RE_OUT] = clk;
32496b301a05SRhyland Klein 
3250926655f9SRhyland Klein 	clk = tegra_clk_register_divider("pll_re_out1_div", "pll_re_vco",
3251926655f9SRhyland Klein 					 clk_base + PLLRE_OUT1, 0,
3252926655f9SRhyland Klein 					 TEGRA_DIVIDER_ROUND_UP,
3253926655f9SRhyland Klein 					 8, 8, 1, NULL);
3254926655f9SRhyland Klein 	clk = tegra_clk_register_pll_out("pll_re_out1", "pll_re_out1_div",
3255926655f9SRhyland Klein 					 clk_base + PLLRE_OUT1, 1, 0,
3256926655f9SRhyland Klein 					 CLK_SET_RATE_PARENT, 0, NULL);
3257926655f9SRhyland Klein 	clks[TEGRA210_CLK_PLL_RE_OUT1] = clk;
3258926655f9SRhyland Klein 
32596b301a05SRhyland Klein 	/* PLLE */
32606b301a05SRhyland Klein 	clk = tegra_clk_register_plle_tegra210("pll_e", "pll_ref",
32616b301a05SRhyland Klein 				      clk_base, 0, &pll_e_params, NULL);
32626b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_e", NULL);
32636b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_E] = clk;
32646b301a05SRhyland Klein 
32656b301a05SRhyland Klein 	/* PLLC4 */
32666b301a05SRhyland Klein 	clk = tegra_clk_register_pllre("pll_c4_vco", "pll_ref", clk_base, pmc,
32676b301a05SRhyland Klein 			     0, &pll_c4_vco_params, NULL, pll_ref_freq);
32686b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c4_vco", NULL);
32696b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C4] = clk;
32706b301a05SRhyland Klein 
32716b301a05SRhyland Klein 	/* PLLC4_OUT0 */
32726b301a05SRhyland Klein 	clk = clk_register_divider_table(NULL, "pll_c4_out0", "pll_c4_vco", 0,
32736b301a05SRhyland Klein 					 clk_base + PLLC4_BASE, 19, 4, 0,
32746b301a05SRhyland Klein 					 pll_vco_post_div_table, NULL);
32756b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c4_out0", NULL);
32766b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C4_OUT0] = clk;
32776b301a05SRhyland Klein 
32786b301a05SRhyland Klein 	/* PLLC4_OUT1 */
32796b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "pll_c4_out1", "pll_c4_vco",
32806b301a05SRhyland Klein 					CLK_SET_RATE_PARENT, 1, 3);
32816b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c4_out1", NULL);
32826b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C4_OUT1] = clk;
32836b301a05SRhyland Klein 
32846b301a05SRhyland Klein 	/* PLLC4_OUT2 */
32856b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "pll_c4_out2", "pll_c4_vco",
32866b301a05SRhyland Klein 					CLK_SET_RATE_PARENT, 1, 5);
32876b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c4_out2", NULL);
32886b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C4_OUT2] = clk;
32896b301a05SRhyland Klein 
32906b301a05SRhyland Klein 	/* PLLC4_OUT3 */
32916b301a05SRhyland Klein 	clk = tegra_clk_register_divider("pll_c4_out3_div", "pll_c4_out0",
32926b301a05SRhyland Klein 			clk_base + PLLC4_OUT, 0, TEGRA_DIVIDER_ROUND_UP,
32936b301a05SRhyland Klein 			8, 8, 1, NULL);
32946b301a05SRhyland Klein 	clk = tegra_clk_register_pll_out("pll_c4_out3", "pll_c4_out3_div",
32956b301a05SRhyland Klein 				clk_base + PLLC4_OUT, 1, 0,
32966b301a05SRhyland Klein 				CLK_SET_RATE_PARENT, 0, NULL);
32976b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c4_out3", NULL);
32986b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C4_OUT3] = clk;
32996b301a05SRhyland Klein 
33006b301a05SRhyland Klein 	/* PLLDP */
33016b301a05SRhyland Klein 	clk = tegra_clk_register_pllss_tegra210("pll_dp", "pll_ref", clk_base,
33026b301a05SRhyland Klein 					0, &pll_dp_params, NULL);
33036b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_dp", NULL);
33046b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_DP] = clk;
33056b301a05SRhyland Klein 
33066b301a05SRhyland Klein 	/* PLLD2 */
33076b301a05SRhyland Klein 	clk = tegra_clk_register_pllss_tegra210("pll_d2", "pll_ref", clk_base,
33086b301a05SRhyland Klein 					0, &pll_d2_params, NULL);
33096b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_d2", NULL);
33106b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_D2] = clk;
33116b301a05SRhyland Klein 
33126b301a05SRhyland Klein 	/* PLLD2_OUT0 */
33136b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "pll_d2_out0", "pll_d2",
33146b301a05SRhyland Klein 					CLK_SET_RATE_PARENT, 1, 1);
33156b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_d2_out0", NULL);
33166b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_D2_OUT0] = clk;
33176b301a05SRhyland Klein 
33186b301a05SRhyland Klein 	/* PLLP_OUT2 */
33196b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "pll_p_out2", "pll_p",
33206b301a05SRhyland Klein 					CLK_SET_RATE_PARENT, 1, 2);
33216b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_p_out2", NULL);
33226b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_P_OUT2] = clk;
33236b301a05SRhyland Klein 
33246b301a05SRhyland Klein }
33256b301a05SRhyland Klein 
33266b301a05SRhyland Klein /* Tegra210 CPU clock and reset control functions */
33276b301a05SRhyland Klein static void tegra210_wait_cpu_in_reset(u32 cpu)
33286b301a05SRhyland Klein {
33296b301a05SRhyland Klein 	unsigned int reg;
33306b301a05SRhyland Klein 
33316b301a05SRhyland Klein 	do {
33326b301a05SRhyland Klein 		reg = readl(clk_base + CLK_RST_CONTROLLER_CPU_CMPLX_STATUS);
33336b301a05SRhyland Klein 		cpu_relax();
33346b301a05SRhyland Klein 	} while (!(reg & (1 << cpu)));  /* check CPU been reset or not */
33356b301a05SRhyland Klein }
33366b301a05SRhyland Klein 
33376b301a05SRhyland Klein static void tegra210_disable_cpu_clock(u32 cpu)
33386b301a05SRhyland Klein {
33396b301a05SRhyland Klein 	/* flow controller would take care in the power sequence. */
33406b301a05SRhyland Klein }
33416b301a05SRhyland Klein 
33426b301a05SRhyland Klein #ifdef CONFIG_PM_SLEEP
3343535f296dSSowjanya Komatineni #define car_readl(_base, _off) readl_relaxed(clk_base + (_base) + ((_off) * 4))
3344535f296dSSowjanya Komatineni #define car_writel(_val, _base, _off) \
3345535f296dSSowjanya Komatineni 		writel_relaxed(_val, clk_base + (_base) + ((_off) * 4))
3346535f296dSSowjanya Komatineni 
3347535f296dSSowjanya Komatineni static u32 spare_reg_ctx, misc_clk_enb_ctx, clk_msk_arm_ctx;
3348535f296dSSowjanya Komatineni static u32 cpu_softrst_ctx[3];
3349535f296dSSowjanya Komatineni 
3350535f296dSSowjanya Komatineni static int tegra210_clk_suspend(void)
3351535f296dSSowjanya Komatineni {
3352535f296dSSowjanya Komatineni 	unsigned int i;
3353535f296dSSowjanya Komatineni 
3354535f296dSSowjanya Komatineni 	clk_save_context();
3355535f296dSSowjanya Komatineni 
3356535f296dSSowjanya Komatineni 	/*
3357535f296dSSowjanya Komatineni 	 * Save the bootloader configured clock registers SPARE_REG0,
3358535f296dSSowjanya Komatineni 	 * MISC_CLK_ENB, CLK_MASK_ARM, CPU_SOFTRST_CTRL.
3359535f296dSSowjanya Komatineni 	 */
3360535f296dSSowjanya Komatineni 	spare_reg_ctx = readl_relaxed(clk_base + SPARE_REG0);
3361535f296dSSowjanya Komatineni 	misc_clk_enb_ctx = readl_relaxed(clk_base + MISC_CLK_ENB);
3362535f296dSSowjanya Komatineni 	clk_msk_arm_ctx = readl_relaxed(clk_base + CLK_MASK_ARM);
3363535f296dSSowjanya Komatineni 
3364535f296dSSowjanya Komatineni 	for (i = 0; i < ARRAY_SIZE(cpu_softrst_ctx); i++)
3365535f296dSSowjanya Komatineni 		cpu_softrst_ctx[i] = car_readl(CPU_SOFTRST_CTRL, i);
3366535f296dSSowjanya Komatineni 
3367535f296dSSowjanya Komatineni 	tegra_clk_periph_suspend();
3368535f296dSSowjanya Komatineni 	return 0;
3369535f296dSSowjanya Komatineni }
3370535f296dSSowjanya Komatineni 
3371535f296dSSowjanya Komatineni static void tegra210_clk_resume(void)
3372535f296dSSowjanya Komatineni {
3373535f296dSSowjanya Komatineni 	unsigned int i;
3374535f296dSSowjanya Komatineni 
3375535f296dSSowjanya Komatineni 	tegra_clk_osc_resume(clk_base);
3376535f296dSSowjanya Komatineni 
3377535f296dSSowjanya Komatineni 	/*
3378535f296dSSowjanya Komatineni 	 * Restore the bootloader configured clock registers SPARE_REG0,
3379535f296dSSowjanya Komatineni 	 * MISC_CLK_ENB, CLK_MASK_ARM, CPU_SOFTRST_CTRL from saved context.
3380535f296dSSowjanya Komatineni 	 */
3381535f296dSSowjanya Komatineni 	writel_relaxed(spare_reg_ctx, clk_base + SPARE_REG0);
3382535f296dSSowjanya Komatineni 	writel_relaxed(misc_clk_enb_ctx, clk_base + MISC_CLK_ENB);
3383535f296dSSowjanya Komatineni 	writel_relaxed(clk_msk_arm_ctx, clk_base + CLK_MASK_ARM);
3384535f296dSSowjanya Komatineni 
3385535f296dSSowjanya Komatineni 	for (i = 0; i < ARRAY_SIZE(cpu_softrst_ctx); i++)
3386535f296dSSowjanya Komatineni 		car_writel(cpu_softrst_ctx[i], CPU_SOFTRST_CTRL, i);
3387535f296dSSowjanya Komatineni 
3388535f296dSSowjanya Komatineni 	/*
3389535f296dSSowjanya Komatineni 	 * Tegra clock programming sequence recommends peripheral clock to
3390535f296dSSowjanya Komatineni 	 * be enabled prior to changing its clock source and divider to
3391535f296dSSowjanya Komatineni 	 * prevent glitchless frequency switch.
3392535f296dSSowjanya Komatineni 	 * So, enable all peripheral clocks before restoring their source
3393535f296dSSowjanya Komatineni 	 * and dividers.
3394535f296dSSowjanya Komatineni 	 */
3395535f296dSSowjanya Komatineni 	writel_relaxed(TEGRA210_CLK_ENB_VLD_MSK_L, clk_base + CLK_OUT_ENB_L);
3396535f296dSSowjanya Komatineni 	writel_relaxed(TEGRA210_CLK_ENB_VLD_MSK_H, clk_base + CLK_OUT_ENB_H);
3397535f296dSSowjanya Komatineni 	writel_relaxed(TEGRA210_CLK_ENB_VLD_MSK_U, clk_base + CLK_OUT_ENB_U);
3398535f296dSSowjanya Komatineni 	writel_relaxed(TEGRA210_CLK_ENB_VLD_MSK_V, clk_base + CLK_OUT_ENB_V);
3399535f296dSSowjanya Komatineni 	writel_relaxed(TEGRA210_CLK_ENB_VLD_MSK_W, clk_base + CLK_OUT_ENB_W);
3400535f296dSSowjanya Komatineni 	writel_relaxed(TEGRA210_CLK_ENB_VLD_MSK_X, clk_base + CLK_OUT_ENB_X);
3401535f296dSSowjanya Komatineni 	writel_relaxed(TEGRA210_CLK_ENB_VLD_MSK_Y, clk_base + CLK_OUT_ENB_Y);
3402535f296dSSowjanya Komatineni 
3403535f296dSSowjanya Komatineni 	/* wait for all writes to happen to have all the clocks enabled */
3404535f296dSSowjanya Komatineni 	fence_udelay(2, clk_base);
3405535f296dSSowjanya Komatineni 
3406535f296dSSowjanya Komatineni 	/* restore PLLs and all peripheral clock rates */
3407535f296dSSowjanya Komatineni 	tegra210_init_pllu();
3408535f296dSSowjanya Komatineni 	clk_restore_context();
3409535f296dSSowjanya Komatineni 
3410535f296dSSowjanya Komatineni 	/* restore saved context of peripheral clocks and reset state */
3411535f296dSSowjanya Komatineni 	tegra_clk_periph_resume();
3412535f296dSSowjanya Komatineni }
3413535f296dSSowjanya Komatineni 
34146b301a05SRhyland Klein static void tegra210_cpu_clock_suspend(void)
34156b301a05SRhyland Klein {
34166b301a05SRhyland Klein 	/* switch coresite to clk_m, save off original source */
34176b301a05SRhyland Klein 	tegra210_cpu_clk_sctx.clk_csite_src =
34186b301a05SRhyland Klein 				readl(clk_base + CLK_SOURCE_CSITE);
34196b301a05SRhyland Klein 	writel(3 << 30, clk_base + CLK_SOURCE_CSITE);
34206b301a05SRhyland Klein }
34216b301a05SRhyland Klein 
34226b301a05SRhyland Klein static void tegra210_cpu_clock_resume(void)
34236b301a05SRhyland Klein {
34246b301a05SRhyland Klein 	writel(tegra210_cpu_clk_sctx.clk_csite_src,
34256b301a05SRhyland Klein 				clk_base + CLK_SOURCE_CSITE);
34266b301a05SRhyland Klein }
34276b301a05SRhyland Klein #endif
34286b301a05SRhyland Klein 
3429535f296dSSowjanya Komatineni static struct syscore_ops tegra_clk_syscore_ops = {
343007b293c5SYueHaibing #ifdef CONFIG_PM_SLEEP
3431535f296dSSowjanya Komatineni 	.suspend = tegra210_clk_suspend,
3432535f296dSSowjanya Komatineni 	.resume = tegra210_clk_resume,
343307b293c5SYueHaibing #endif
3434535f296dSSowjanya Komatineni };
3435535f296dSSowjanya Komatineni 
34366b301a05SRhyland Klein static struct tegra_cpu_car_ops tegra210_cpu_car_ops = {
34376b301a05SRhyland Klein 	.wait_for_reset	= tegra210_wait_cpu_in_reset,
34386b301a05SRhyland Klein 	.disable_clock	= tegra210_disable_cpu_clock,
34396b301a05SRhyland Klein #ifdef CONFIG_PM_SLEEP
34406b301a05SRhyland Klein 	.suspend	= tegra210_cpu_clock_suspend,
34416b301a05SRhyland Klein 	.resume		= tegra210_cpu_clock_resume,
34426b301a05SRhyland Klein #endif
34436b301a05SRhyland Klein };
34446b301a05SRhyland Klein 
34456b301a05SRhyland Klein static const struct of_device_id pmc_match[] __initconst = {
34466b301a05SRhyland Klein 	{ .compatible = "nvidia,tegra210-pmc" },
34476b301a05SRhyland Klein 	{ },
34486b301a05SRhyland Klein };
34496b301a05SRhyland Klein 
34506b301a05SRhyland Klein static struct tegra_clk_init_table init_table[] __initdata = {
34516b301a05SRhyland Klein 	{ TEGRA210_CLK_UARTA, TEGRA210_CLK_PLL_P, 408000000, 0 },
34526b301a05SRhyland Klein 	{ TEGRA210_CLK_UARTB, TEGRA210_CLK_PLL_P, 408000000, 0 },
34536b301a05SRhyland Klein 	{ TEGRA210_CLK_UARTC, TEGRA210_CLK_PLL_P, 408000000, 0 },
34546b301a05SRhyland Klein 	{ TEGRA210_CLK_UARTD, TEGRA210_CLK_PLL_P, 408000000, 0 },
34556b301a05SRhyland Klein 	{ TEGRA210_CLK_PLL_A, TEGRA210_CLK_CLK_MAX, 564480000, 1 },
34566b301a05SRhyland Klein 	{ TEGRA210_CLK_PLL_A_OUT0, TEGRA210_CLK_CLK_MAX, 11289600, 1 },
34576b301a05SRhyland Klein 	{ TEGRA210_CLK_EXTERN1, TEGRA210_CLK_PLL_A_OUT0, 0, 1 },
34586b301a05SRhyland Klein 	{ TEGRA210_CLK_CLK_OUT_1_MUX, TEGRA210_CLK_EXTERN1, 0, 1 },
34596b301a05SRhyland Klein 	{ TEGRA210_CLK_CLK_OUT_1, TEGRA210_CLK_CLK_MAX, 0, 1 },
34606b301a05SRhyland Klein 	{ TEGRA210_CLK_I2S0, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 },
34616b301a05SRhyland Klein 	{ TEGRA210_CLK_I2S1, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 },
34626b301a05SRhyland Klein 	{ TEGRA210_CLK_I2S2, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 },
34636b301a05SRhyland Klein 	{ TEGRA210_CLK_I2S3, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 },
34646b301a05SRhyland Klein 	{ TEGRA210_CLK_I2S4, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 },
34656b301a05SRhyland Klein 	{ TEGRA210_CLK_HOST1X, TEGRA210_CLK_PLL_P, 136000000, 1 },
34666b301a05SRhyland Klein 	{ TEGRA210_CLK_SCLK_MUX, TEGRA210_CLK_PLL_P, 0, 1 },
34672dcabf05SDmitry Osipenko 	{ TEGRA210_CLK_SCLK, TEGRA210_CLK_CLK_MAX, 102000000, 0 },
34686b301a05SRhyland Klein 	{ TEGRA210_CLK_DFLL_SOC, TEGRA210_CLK_PLL_P, 51000000, 1 },
34696b301a05SRhyland Klein 	{ TEGRA210_CLK_DFLL_REF, TEGRA210_CLK_PLL_P, 51000000, 1 },
34706b301a05SRhyland Klein 	{ TEGRA210_CLK_SBC4, TEGRA210_CLK_PLL_P, 12000000, 1 },
34710d34dfbfSJC Kuo 	{ TEGRA210_CLK_PLL_U_OUT1, TEGRA210_CLK_CLK_MAX, 48000000, 1 },
34726b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_GATE, TEGRA210_CLK_CLK_MAX, 0, 1 },
34736b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_SS_SRC, TEGRA210_CLK_PLL_U_480M, 120000000, 0 },
34746b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_FS_SRC, TEGRA210_CLK_PLL_U_48M, 48000000, 0 },
34756b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_HS_SRC, TEGRA210_CLK_XUSB_SS_SRC, 120000000, 0 },
34766b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_SSP_SRC, TEGRA210_CLK_XUSB_SS_SRC, 120000000, 0 },
34776b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_FALCON_SRC, TEGRA210_CLK_PLL_P_OUT_XUSB, 204000000, 0 },
34786b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_HOST_SRC, TEGRA210_CLK_PLL_P_OUT_XUSB, 102000000, 0 },
34796b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_DEV_SRC, TEGRA210_CLK_PLL_P_OUT_XUSB, 102000000, 0 },
34806b301a05SRhyland Klein 	{ TEGRA210_CLK_SATA, TEGRA210_CLK_PLL_P, 104000000, 0 },
34816b301a05SRhyland Klein 	{ TEGRA210_CLK_SATA_OOB, TEGRA210_CLK_PLL_P, 204000000, 0 },
34826b301a05SRhyland Klein 	{ TEGRA210_CLK_MSELECT, TEGRA210_CLK_CLK_MAX, 0, 1 },
34836b301a05SRhyland Klein 	{ TEGRA210_CLK_CSITE, TEGRA210_CLK_CLK_MAX, 0, 1 },
3484bea1baa1SPeter De Schrijver 	/* TODO find a way to enable this on-demand */
3485bea1baa1SPeter De Schrijver 	{ TEGRA210_CLK_DBGAPB, TEGRA210_CLK_CLK_MAX, 0, 1 },
34866b301a05SRhyland Klein 	{ TEGRA210_CLK_TSENSOR, TEGRA210_CLK_CLK_M, 400000, 0 },
34876b301a05SRhyland Klein 	{ TEGRA210_CLK_I2C1, TEGRA210_CLK_PLL_P, 0, 0 },
34886b301a05SRhyland Klein 	{ TEGRA210_CLK_I2C2, TEGRA210_CLK_PLL_P, 0, 0 },
34896b301a05SRhyland Klein 	{ TEGRA210_CLK_I2C3, TEGRA210_CLK_PLL_P, 0, 0 },
34906b301a05SRhyland Klein 	{ TEGRA210_CLK_I2C4, TEGRA210_CLK_PLL_P, 0, 0 },
34916b301a05SRhyland Klein 	{ TEGRA210_CLK_I2C5, TEGRA210_CLK_PLL_P, 0, 0 },
34926b301a05SRhyland Klein 	{ TEGRA210_CLK_I2C6, TEGRA210_CLK_PLL_P, 0, 0 },
34936b301a05SRhyland Klein 	{ TEGRA210_CLK_PLL_DP, TEGRA210_CLK_CLK_MAX, 270000000, 0 },
34946b301a05SRhyland Klein 	{ TEGRA210_CLK_SOC_THERM, TEGRA210_CLK_PLL_P, 51000000, 0 },
34956b301a05SRhyland Klein 	{ TEGRA210_CLK_CCLK_G, TEGRA210_CLK_CLK_MAX, 0, 1 },
3496e745f992SPeter De Schrijver 	{ TEGRA210_CLK_PLL_U_OUT2, TEGRA210_CLK_CLK_MAX, 60000000, 1 },
3497845d782dSJon Hunter 	{ TEGRA210_CLK_SPDIF_IN_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 },
3498845d782dSJon Hunter 	{ TEGRA210_CLK_I2S0_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 },
3499845d782dSJon Hunter 	{ TEGRA210_CLK_I2S1_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 },
3500845d782dSJon Hunter 	{ TEGRA210_CLK_I2S2_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 },
3501845d782dSJon Hunter 	{ TEGRA210_CLK_I2S3_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 },
3502845d782dSJon Hunter 	{ TEGRA210_CLK_I2S4_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 },
3503845d782dSJon Hunter 	{ TEGRA210_CLK_VIMCLK_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 },
35049caec662SJon Hunter 	{ TEGRA210_CLK_HDA, TEGRA210_CLK_PLL_P, 51000000, 0 },
35059caec662SJon Hunter 	{ TEGRA210_CLK_HDA2CODEC_2X, TEGRA210_CLK_PLL_P, 48000000, 0 },
35066b301a05SRhyland Klein 	/* This MUST be the last entry. */
35076b301a05SRhyland Klein 	{ TEGRA210_CLK_CLK_MAX, TEGRA210_CLK_CLK_MAX, 0, 0 },
35086b301a05SRhyland Klein };
35096b301a05SRhyland Klein 
35106b301a05SRhyland Klein /**
35116b301a05SRhyland Klein  * tegra210_clock_apply_init_table - initialize clocks on Tegra210 SoCs
35126b301a05SRhyland Klein  *
35136b301a05SRhyland Klein  * Program an initial clock rate and enable or disable clocks needed
35146b301a05SRhyland Klein  * by the rest of the kernel, for Tegra210 SoCs.  It is intended to be
35156b301a05SRhyland Klein  * called by assigning a pointer to it to tegra_clk_apply_init_table -
35166b301a05SRhyland Klein  * this will be called as an arch_initcall.  No return value.
35176b301a05SRhyland Klein  */
35186b301a05SRhyland Klein static void __init tegra210_clock_apply_init_table(void)
35196b301a05SRhyland Klein {
35206b301a05SRhyland Klein 	tegra_init_from_table(init_table, clks, TEGRA210_CLK_CLK_MAX);
35216b301a05SRhyland Klein }
35226b301a05SRhyland Klein 
35236b301a05SRhyland Klein /**
352468d724ceSPeter De Schrijver  * tegra210_car_barrier - wait for pending writes to the CAR to complete
352568d724ceSPeter De Schrijver  *
352668d724ceSPeter De Schrijver  * Wait for any outstanding writes to the CAR MMIO space from this CPU
352768d724ceSPeter De Schrijver  * to complete before continuing execution.  No return value.
352868d724ceSPeter De Schrijver  */
352968d724ceSPeter De Schrijver static void tegra210_car_barrier(void)
353068d724ceSPeter De Schrijver {
353168d724ceSPeter De Schrijver 	readl_relaxed(clk_base + RST_DFLL_DVCO);
353268d724ceSPeter De Schrijver }
353368d724ceSPeter De Schrijver 
353468d724ceSPeter De Schrijver /**
353568d724ceSPeter De Schrijver  * tegra210_clock_assert_dfll_dvco_reset - assert the DFLL's DVCO reset
353668d724ceSPeter De Schrijver  *
353768d724ceSPeter De Schrijver  * Assert the reset line of the DFLL's DVCO.  No return value.
353868d724ceSPeter De Schrijver  */
353968d724ceSPeter De Schrijver static void tegra210_clock_assert_dfll_dvco_reset(void)
354068d724ceSPeter De Schrijver {
354168d724ceSPeter De Schrijver 	u32 v;
354268d724ceSPeter De Schrijver 
354368d724ceSPeter De Schrijver 	v = readl_relaxed(clk_base + RST_DFLL_DVCO);
354468d724ceSPeter De Schrijver 	v |= (1 << DVFS_DFLL_RESET_SHIFT);
354568d724ceSPeter De Schrijver 	writel_relaxed(v, clk_base + RST_DFLL_DVCO);
354668d724ceSPeter De Schrijver 	tegra210_car_barrier();
354768d724ceSPeter De Schrijver }
354868d724ceSPeter De Schrijver 
354968d724ceSPeter De Schrijver /**
355068d724ceSPeter De Schrijver  * tegra210_clock_deassert_dfll_dvco_reset - deassert the DFLL's DVCO reset
355168d724ceSPeter De Schrijver  *
355268d724ceSPeter De Schrijver  * Deassert the reset line of the DFLL's DVCO, allowing the DVCO to
355368d724ceSPeter De Schrijver  * operate.  No return value.
355468d724ceSPeter De Schrijver  */
355568d724ceSPeter De Schrijver static void tegra210_clock_deassert_dfll_dvco_reset(void)
355668d724ceSPeter De Schrijver {
355768d724ceSPeter De Schrijver 	u32 v;
355868d724ceSPeter De Schrijver 
355968d724ceSPeter De Schrijver 	v = readl_relaxed(clk_base + RST_DFLL_DVCO);
356068d724ceSPeter De Schrijver 	v &= ~(1 << DVFS_DFLL_RESET_SHIFT);
356168d724ceSPeter De Schrijver 	writel_relaxed(v, clk_base + RST_DFLL_DVCO);
356268d724ceSPeter De Schrijver 	tegra210_car_barrier();
356368d724ceSPeter De Schrijver }
356468d724ceSPeter De Schrijver 
356568d724ceSPeter De Schrijver static int tegra210_reset_assert(unsigned long id)
356668d724ceSPeter De Schrijver {
356768d724ceSPeter De Schrijver 	if (id == TEGRA210_RST_DFLL_DVCO)
356868d724ceSPeter De Schrijver 		tegra210_clock_assert_dfll_dvco_reset();
356968d724ceSPeter De Schrijver 	else if (id == TEGRA210_RST_ADSP)
357068d724ceSPeter De Schrijver 		writel(GENMASK(26, 21) | BIT(7),
357168d724ceSPeter De Schrijver 			clk_base + CLK_RST_CONTROLLER_RST_DEV_Y_SET);
357268d724ceSPeter De Schrijver 	else
357368d724ceSPeter De Schrijver 		return -EINVAL;
357468d724ceSPeter De Schrijver 
357568d724ceSPeter De Schrijver 	return 0;
357668d724ceSPeter De Schrijver }
357768d724ceSPeter De Schrijver 
357868d724ceSPeter De Schrijver static int tegra210_reset_deassert(unsigned long id)
357968d724ceSPeter De Schrijver {
358068d724ceSPeter De Schrijver 	if (id == TEGRA210_RST_DFLL_DVCO)
358168d724ceSPeter De Schrijver 		tegra210_clock_deassert_dfll_dvco_reset();
358268d724ceSPeter De Schrijver 	else if (id == TEGRA210_RST_ADSP) {
358368d724ceSPeter De Schrijver 		writel(BIT(21), clk_base + CLK_RST_CONTROLLER_RST_DEV_Y_CLR);
358468d724ceSPeter De Schrijver 		/*
358568d724ceSPeter De Schrijver 		 * Considering adsp cpu clock (min: 12.5MHZ, max: 1GHz)
358668d724ceSPeter De Schrijver 		 * a delay of 5us ensures that it's at least
358768d724ceSPeter De Schrijver 		 * 6 * adsp_cpu_cycle_period long.
358868d724ceSPeter De Schrijver 		 */
358968d724ceSPeter De Schrijver 		udelay(5);
359068d724ceSPeter De Schrijver 		writel(GENMASK(26, 22) | BIT(7),
359168d724ceSPeter De Schrijver 			clk_base + CLK_RST_CONTROLLER_RST_DEV_Y_CLR);
359268d724ceSPeter De Schrijver 	} else
359368d724ceSPeter De Schrijver 		return -EINVAL;
359468d724ceSPeter De Schrijver 
359568d724ceSPeter De Schrijver 	return 0;
359668d724ceSPeter De Schrijver }
359768d724ceSPeter De Schrijver 
3598e403d005SPeter De Schrijver static void tegra210_mbist_clk_init(void)
3599e403d005SPeter De Schrijver {
3600e403d005SPeter De Schrijver 	unsigned int i, j;
3601e403d005SPeter De Schrijver 
3602e403d005SPeter De Schrijver 	for (i = 0; i < ARRAY_SIZE(tegra210_pg_mbist_war); i++) {
3603e403d005SPeter De Schrijver 		unsigned int num_clks = tegra210_pg_mbist_war[i].num_clks;
3604e403d005SPeter De Schrijver 		struct clk_bulk_data *clk_data;
3605e403d005SPeter De Schrijver 
3606e403d005SPeter De Schrijver 		if (!num_clks)
3607e403d005SPeter De Schrijver 			continue;
3608e403d005SPeter De Schrijver 
3609e403d005SPeter De Schrijver 		clk_data = kmalloc_array(num_clks, sizeof(*clk_data),
3610e403d005SPeter De Schrijver 					 GFP_KERNEL);
3611e403d005SPeter De Schrijver 		if (WARN_ON(!clk_data))
3612e403d005SPeter De Schrijver 			return;
3613e403d005SPeter De Schrijver 
3614e403d005SPeter De Schrijver 		tegra210_pg_mbist_war[i].clks = clk_data;
3615e403d005SPeter De Schrijver 		for (j = 0; j < num_clks; j++) {
3616e403d005SPeter De Schrijver 			int clk_id = tegra210_pg_mbist_war[i].clk_init_data[j];
3617e403d005SPeter De Schrijver 			struct clk *clk = clks[clk_id];
3618e403d005SPeter De Schrijver 
3619e403d005SPeter De Schrijver 			if (WARN(IS_ERR(clk), "clk_id: %d\n", clk_id)) {
3620e403d005SPeter De Schrijver 				kfree(clk_data);
3621e403d005SPeter De Schrijver 				tegra210_pg_mbist_war[i].clks = NULL;
3622e403d005SPeter De Schrijver 				break;
3623e403d005SPeter De Schrijver 			}
3624e403d005SPeter De Schrijver 			clk_data[j].clk = clk;
3625e403d005SPeter De Schrijver 		}
3626e403d005SPeter De Schrijver 	}
3627e403d005SPeter De Schrijver }
3628e403d005SPeter De Schrijver 
362968d724ceSPeter De Schrijver /**
36306b301a05SRhyland Klein  * tegra210_clock_init - Tegra210-specific clock initialization
36316b301a05SRhyland Klein  * @np: struct device_node * of the DT node for the SoC CAR IP block
36326b301a05SRhyland Klein  *
36336b301a05SRhyland Klein  * Register most SoC clocks for the Tegra210 system-on-chip.  Intended
36346b301a05SRhyland Klein  * to be called by the OF init code when a DT node with the
36356b301a05SRhyland Klein  * "nvidia,tegra210-car" string is encountered, and declared with
36366b301a05SRhyland Klein  * CLK_OF_DECLARE.  No return value.
36376b301a05SRhyland Klein  */
36386b301a05SRhyland Klein static void __init tegra210_clock_init(struct device_node *np)
36396b301a05SRhyland Klein {
36406b301a05SRhyland Klein 	struct device_node *node;
36416b301a05SRhyland Klein 	u32 value, clk_m_div;
36426b301a05SRhyland Klein 
36436b301a05SRhyland Klein 	clk_base = of_iomap(np, 0);
36446b301a05SRhyland Klein 	if (!clk_base) {
36456b301a05SRhyland Klein 		pr_err("ioremap tegra210 CAR failed\n");
36466b301a05SRhyland Klein 		return;
36476b301a05SRhyland Klein 	}
36486b301a05SRhyland Klein 
36496b301a05SRhyland Klein 	node = of_find_matching_node(NULL, pmc_match);
36506b301a05SRhyland Klein 	if (!node) {
36516b301a05SRhyland Klein 		pr_err("Failed to find pmc node\n");
36526b301a05SRhyland Klein 		WARN_ON(1);
36536b301a05SRhyland Klein 		return;
36546b301a05SRhyland Klein 	}
36556b301a05SRhyland Klein 
36566b301a05SRhyland Klein 	pmc_base = of_iomap(node, 0);
36576b301a05SRhyland Klein 	if (!pmc_base) {
36586b301a05SRhyland Klein 		pr_err("Can't map pmc registers\n");
36596b301a05SRhyland Klein 		WARN_ON(1);
36606b301a05SRhyland Klein 		return;
36616b301a05SRhyland Klein 	}
36626b301a05SRhyland Klein 
3663e403d005SPeter De Schrijver 	ahub_base = ioremap(TEGRA210_AHUB_BASE, SZ_64K);
3664e403d005SPeter De Schrijver 	if (!ahub_base) {
3665e403d005SPeter De Schrijver 		pr_err("ioremap tegra210 APE failed\n");
3666e403d005SPeter De Schrijver 		return;
3667e403d005SPeter De Schrijver 	}
3668e403d005SPeter De Schrijver 
3669e403d005SPeter De Schrijver 	dispa_base = ioremap(TEGRA210_DISPA_BASE, SZ_256K);
3670e403d005SPeter De Schrijver 	if (!dispa_base) {
3671e403d005SPeter De Schrijver 		pr_err("ioremap tegra210 DISPA failed\n");
3672e403d005SPeter De Schrijver 		return;
3673e403d005SPeter De Schrijver 	}
3674e403d005SPeter De Schrijver 
3675e403d005SPeter De Schrijver 	vic_base = ioremap(TEGRA210_VIC_BASE, SZ_256K);
3676e403d005SPeter De Schrijver 	if (!vic_base) {
3677e403d005SPeter De Schrijver 		pr_err("ioremap tegra210 VIC failed\n");
3678e403d005SPeter De Schrijver 		return;
3679e403d005SPeter De Schrijver 	}
3680e403d005SPeter De Schrijver 
36816b301a05SRhyland Klein 	clks = tegra_clk_init(clk_base, TEGRA210_CLK_CLK_MAX,
36826b301a05SRhyland Klein 			      TEGRA210_CAR_BANK_COUNT);
36836b301a05SRhyland Klein 	if (!clks)
36846b301a05SRhyland Klein 		return;
36856b301a05SRhyland Klein 
36865834fd75SJonas Gorski 	value = readl(clk_base + SPARE_REG0) >> CLK_M_DIVISOR_SHIFT;
36876b301a05SRhyland Klein 	clk_m_div = (value & CLK_M_DIVISOR_MASK) + 1;
36886b301a05SRhyland Klein 
36896b301a05SRhyland Klein 	if (tegra_osc_clk_init(clk_base, tegra210_clks, tegra210_input_freq,
36906b301a05SRhyland Klein 			       ARRAY_SIZE(tegra210_input_freq), clk_m_div,
36916b301a05SRhyland Klein 			       &osc_freq, &pll_ref_freq) < 0)
36926b301a05SRhyland Klein 		return;
36936b301a05SRhyland Klein 
36946b301a05SRhyland Klein 	tegra_fixed_clk_init(tegra210_clks);
36956b301a05SRhyland Klein 	tegra210_pll_init(clk_base, pmc_base);
36966b301a05SRhyland Klein 	tegra210_periph_clk_init(clk_base, pmc_base);
36976b301a05SRhyland Klein 	tegra_audio_clk_init(clk_base, pmc_base, tegra210_clks,
36986b301a05SRhyland Klein 			     tegra210_audio_plls,
3699845d782dSJon Hunter 			     ARRAY_SIZE(tegra210_audio_plls), 24576000);
37006b301a05SRhyland Klein 	tegra_pmc_clk_init(pmc_base, tegra210_clks);
37016b301a05SRhyland Klein 
37026b301a05SRhyland Klein 	/* For Tegra210, PLLD is the only source for DSIA & DSIB */
37035834fd75SJonas Gorski 	value = readl(clk_base + PLLD_BASE);
37046b301a05SRhyland Klein 	value &= ~BIT(25);
37055834fd75SJonas Gorski 	writel(value, clk_base + PLLD_BASE);
37066b301a05SRhyland Klein 
37076b301a05SRhyland Klein 	tegra_clk_apply_init_table = tegra210_clock_apply_init_table;
37086b301a05SRhyland Klein 
37096b301a05SRhyland Klein 	tegra_super_clk_gen5_init(clk_base, pmc_base, tegra210_clks,
37106b301a05SRhyland Klein 				  &pll_x_params);
371168d724ceSPeter De Schrijver 	tegra_init_special_resets(2, tegra210_reset_assert,
371268d724ceSPeter De Schrijver 				  tegra210_reset_deassert);
371368d724ceSPeter De Schrijver 
37145d797111SDmitry Osipenko 	tegra_add_of_provider(np, of_clk_src_onecell_get);
37156b301a05SRhyland Klein 	tegra_register_devclks(devclks, ARRAY_SIZE(devclks));
37166b301a05SRhyland Klein 
3717e403d005SPeter De Schrijver 	tegra210_mbist_clk_init();
3718e403d005SPeter De Schrijver 
37196b301a05SRhyland Klein 	tegra_cpu_car_ops = &tegra210_cpu_car_ops;
3720535f296dSSowjanya Komatineni 
3721535f296dSSowjanya Komatineni 	register_syscore_ops(&tegra_clk_syscore_ops);
37226b301a05SRhyland Klein }
37236b301a05SRhyland Klein CLK_OF_DECLARE(tegra210, "nvidia,tegra210-car", tegra210_clock_init);
3724