xref: /openbmc/linux/drivers/clk/tegra/clk-tegra210.c (revision 5834fd75e6236605da8c439a64eaa33f3c8d02fe)
16b301a05SRhyland Klein /*
26b301a05SRhyland Klein  * Copyright (c) 2012-2014 NVIDIA CORPORATION.  All rights reserved.
36b301a05SRhyland Klein  *
46b301a05SRhyland Klein  * This program is free software; you can redistribute it and/or modify it
56b301a05SRhyland Klein  * under the terms and conditions of the GNU General Public License,
66b301a05SRhyland Klein  * version 2, as published by the Free Software Foundation.
76b301a05SRhyland Klein  *
86b301a05SRhyland Klein  * This program is distributed in the hope it will be useful, but WITHOUT
96b301a05SRhyland Klein  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
106b301a05SRhyland Klein  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
116b301a05SRhyland Klein  * more details.
126b301a05SRhyland Klein  *
136b301a05SRhyland Klein  * You should have received a copy of the GNU General Public License
146b301a05SRhyland Klein  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
156b301a05SRhyland Klein  */
166b301a05SRhyland Klein 
176b301a05SRhyland Klein #include <linux/io.h>
186b301a05SRhyland Klein #include <linux/clk.h>
196b301a05SRhyland Klein #include <linux/clk-provider.h>
206b301a05SRhyland Klein #include <linux/clkdev.h>
216b301a05SRhyland Klein #include <linux/of.h>
226b301a05SRhyland Klein #include <linux/of_address.h>
236b301a05SRhyland Klein #include <linux/delay.h>
246b301a05SRhyland Klein #include <linux/export.h>
25e403d005SPeter De Schrijver #include <linux/mutex.h>
266b301a05SRhyland Klein #include <linux/clk/tegra.h>
276b301a05SRhyland Klein #include <dt-bindings/clock/tegra210-car.h>
2868d724ceSPeter De Schrijver #include <dt-bindings/reset/tegra210-car.h>
29e745f992SPeter De Schrijver #include <linux/iopoll.h>
30c8da78e8SStephen Boyd #include <linux/sizes.h>
31e403d005SPeter De Schrijver #include <soc/tegra/pmc.h>
326b301a05SRhyland Klein 
336b301a05SRhyland Klein #include "clk.h"
346b301a05SRhyland Klein #include "clk-id.h"
356b301a05SRhyland Klein 
366b301a05SRhyland Klein /*
376b301a05SRhyland Klein  * TEGRA210_CAR_BANK_COUNT: the number of peripheral clock register
386b301a05SRhyland Klein  * banks present in the Tegra210 CAR IP block.  The banks are
396b301a05SRhyland Klein  * identified by single letters, e.g.: L, H, U, V, W, X, Y.  See
406b301a05SRhyland Klein  * periph_regs[] in drivers/clk/tegra/clk.c
416b301a05SRhyland Klein  */
426b301a05SRhyland Klein #define TEGRA210_CAR_BANK_COUNT			7
436b301a05SRhyland Klein 
446b301a05SRhyland Klein #define CLK_SOURCE_CSITE 0x1d4
456b301a05SRhyland Klein #define CLK_SOURCE_EMC 0x19c
46bc2e4d29SThierry Reding #define CLK_SOURCE_SOR1 0x410
4789e423c3SPeter De Schrijver #define CLK_SOURCE_LA 0x1f8
48c76a69e4SPeter De-Schrijver #define CLK_SOURCE_SDMMC2 0x154
49c76a69e4SPeter De-Schrijver #define CLK_SOURCE_SDMMC4 0x164
506b301a05SRhyland Klein 
516b301a05SRhyland Klein #define PLLC_BASE 0x80
526b301a05SRhyland Klein #define PLLC_OUT 0x84
536b301a05SRhyland Klein #define PLLC_MISC0 0x88
546b301a05SRhyland Klein #define PLLC_MISC1 0x8c
556b301a05SRhyland Klein #define PLLC_MISC2 0x5d0
566b301a05SRhyland Klein #define PLLC_MISC3 0x5d4
576b301a05SRhyland Klein 
586b301a05SRhyland Klein #define PLLC2_BASE 0x4e8
596b301a05SRhyland Klein #define PLLC2_MISC0 0x4ec
606b301a05SRhyland Klein #define PLLC2_MISC1 0x4f0
616b301a05SRhyland Klein #define PLLC2_MISC2 0x4f4
626b301a05SRhyland Klein #define PLLC2_MISC3 0x4f8
636b301a05SRhyland Klein 
646b301a05SRhyland Klein #define PLLC3_BASE 0x4fc
656b301a05SRhyland Klein #define PLLC3_MISC0 0x500
666b301a05SRhyland Klein #define PLLC3_MISC1 0x504
676b301a05SRhyland Klein #define PLLC3_MISC2 0x508
686b301a05SRhyland Klein #define PLLC3_MISC3 0x50c
696b301a05SRhyland Klein 
706b301a05SRhyland Klein #define PLLM_BASE 0x90
716b301a05SRhyland Klein #define PLLM_MISC1 0x98
72474f2ba2SRhyland Klein #define PLLM_MISC2 0x9c
736b301a05SRhyland Klein #define PLLP_BASE 0xa0
746b301a05SRhyland Klein #define PLLP_MISC0 0xac
756b301a05SRhyland Klein #define PLLP_MISC1 0x680
766b301a05SRhyland Klein #define PLLA_BASE 0xb0
776b301a05SRhyland Klein #define PLLA_MISC0 0xbc
786b301a05SRhyland Klein #define PLLA_MISC1 0xb8
796b301a05SRhyland Klein #define PLLA_MISC2 0x5d8
806b301a05SRhyland Klein #define PLLD_BASE 0xd0
816b301a05SRhyland Klein #define PLLD_MISC0 0xdc
826b301a05SRhyland Klein #define PLLD_MISC1 0xd8
836b301a05SRhyland Klein #define PLLU_BASE 0xc0
846b301a05SRhyland Klein #define PLLU_OUTA 0xc4
856b301a05SRhyland Klein #define PLLU_MISC0 0xcc
866b301a05SRhyland Klein #define PLLU_MISC1 0xc8
876b301a05SRhyland Klein #define PLLX_BASE 0xe0
886b301a05SRhyland Klein #define PLLX_MISC0 0xe4
896b301a05SRhyland Klein #define PLLX_MISC1 0x510
906b301a05SRhyland Klein #define PLLX_MISC2 0x514
916b301a05SRhyland Klein #define PLLX_MISC3 0x518
926b301a05SRhyland Klein #define PLLX_MISC4 0x5f0
936b301a05SRhyland Klein #define PLLX_MISC5 0x5f4
946b301a05SRhyland Klein #define PLLE_BASE 0xe8
956b301a05SRhyland Klein #define PLLE_MISC0 0xec
966b301a05SRhyland Klein #define PLLD2_BASE 0x4b8
976b301a05SRhyland Klein #define PLLD2_MISC0 0x4bc
986b301a05SRhyland Klein #define PLLD2_MISC1 0x570
996b301a05SRhyland Klein #define PLLD2_MISC2 0x574
1006b301a05SRhyland Klein #define PLLD2_MISC3 0x578
1016b301a05SRhyland Klein #define PLLE_AUX 0x48c
1026b301a05SRhyland Klein #define PLLRE_BASE 0x4c4
1036b301a05SRhyland Klein #define PLLRE_MISC0 0x4c8
104926655f9SRhyland Klein #define PLLRE_OUT1 0x4cc
1056b301a05SRhyland Klein #define PLLDP_BASE 0x590
1066b301a05SRhyland Klein #define PLLDP_MISC 0x594
1076b301a05SRhyland Klein 
1086b301a05SRhyland Klein #define PLLC4_BASE 0x5a4
1096b301a05SRhyland Klein #define PLLC4_MISC0 0x5a8
1106b301a05SRhyland Klein #define PLLC4_OUT 0x5e4
1116b301a05SRhyland Klein #define PLLMB_BASE 0x5e8
112474f2ba2SRhyland Klein #define PLLMB_MISC1 0x5ec
1136b301a05SRhyland Klein #define PLLA1_BASE 0x6a4
1146b301a05SRhyland Klein #define PLLA1_MISC0 0x6a8
1156b301a05SRhyland Klein #define PLLA1_MISC1 0x6ac
1166b301a05SRhyland Klein #define PLLA1_MISC2 0x6b0
1176b301a05SRhyland Klein #define PLLA1_MISC3 0x6b4
1186b301a05SRhyland Klein 
1196b301a05SRhyland Klein #define PLLU_IDDQ_BIT 31
1206b301a05SRhyland Klein #define PLLCX_IDDQ_BIT 27
1216b301a05SRhyland Klein #define PLLRE_IDDQ_BIT 24
1226b301a05SRhyland Klein #define PLLA_IDDQ_BIT 25
1236b301a05SRhyland Klein #define PLLD_IDDQ_BIT 20
1246b301a05SRhyland Klein #define PLLSS_IDDQ_BIT 18
1256b301a05SRhyland Klein #define PLLM_IDDQ_BIT 5
1266b301a05SRhyland Klein #define PLLMB_IDDQ_BIT 17
1276b301a05SRhyland Klein #define PLLXP_IDDQ_BIT 3
1286b301a05SRhyland Klein 
1296b301a05SRhyland Klein #define PLLCX_RESET_BIT 30
1306b301a05SRhyland Klein 
1316b301a05SRhyland Klein #define PLL_BASE_LOCK BIT(27)
1326b301a05SRhyland Klein #define PLLCX_BASE_LOCK BIT(26)
1336b301a05SRhyland Klein #define PLLE_MISC_LOCK BIT(11)
1346b301a05SRhyland Klein #define PLLRE_MISC_LOCK BIT(27)
1356b301a05SRhyland Klein 
1366b301a05SRhyland Klein #define PLL_MISC_LOCK_ENABLE 18
1376b301a05SRhyland Klein #define PLLC_MISC_LOCK_ENABLE 24
1386b301a05SRhyland Klein #define PLLDU_MISC_LOCK_ENABLE 22
1396b301a05SRhyland Klein #define PLLU_MISC_LOCK_ENABLE 29
1406b301a05SRhyland Klein #define PLLE_MISC_LOCK_ENABLE 9
1416b301a05SRhyland Klein #define PLLRE_MISC_LOCK_ENABLE 30
1426b301a05SRhyland Klein #define PLLSS_MISC_LOCK_ENABLE 30
1436b301a05SRhyland Klein #define PLLP_MISC_LOCK_ENABLE 18
1446b301a05SRhyland Klein #define PLLM_MISC_LOCK_ENABLE 4
1456b301a05SRhyland Klein #define PLLMB_MISC_LOCK_ENABLE 16
1466b301a05SRhyland Klein #define PLLA_MISC_LOCK_ENABLE 28
1476b301a05SRhyland Klein #define PLLU_MISC_LOCK_ENABLE 29
1486b301a05SRhyland Klein #define PLLD_MISC_LOCK_ENABLE 18
1496b301a05SRhyland Klein 
1506b301a05SRhyland Klein #define PLLA_SDM_DIN_MASK 0xffff
1516b301a05SRhyland Klein #define PLLA_SDM_EN_MASK BIT(26)
1526b301a05SRhyland Klein 
1536b301a05SRhyland Klein #define PLLD_SDM_EN_MASK BIT(16)
1546b301a05SRhyland Klein 
1556b301a05SRhyland Klein #define PLLD2_SDM_EN_MASK BIT(31)
156030999feSPeter De Schrijver #define PLLD2_SSC_EN_MASK 0
1576b301a05SRhyland Klein 
1586b301a05SRhyland Klein #define PLLDP_SS_CFG	0x598
1596b301a05SRhyland Klein #define PLLDP_SDM_EN_MASK BIT(31)
1606b301a05SRhyland Klein #define PLLDP_SSC_EN_MASK BIT(30)
1616b301a05SRhyland Klein #define PLLDP_SS_CTRL1	0x59c
1626b301a05SRhyland Klein #define PLLDP_SS_CTRL2	0x5a0
1636b301a05SRhyland Klein 
1646b301a05SRhyland Klein #define PMC_PLLM_WB0_OVERRIDE 0x1dc
1656b301a05SRhyland Klein #define PMC_PLLM_WB0_OVERRIDE_2 0x2b0
1666b301a05SRhyland Klein 
167e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2 0x488
168e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_STABLE_COUNT(x) (((x) & 0xfff) << 6)
169e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_ACTIVE_DLY_COUNT(x) (((x) & 0x3f) << 18)
170e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_A_POWERDOWN BIT(0)
171e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_A_POWERUP BIT(1)
172e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_B_POWERDOWN BIT(2)
173e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_B_POWERUP BIT(3)
174e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_C_POWERDOWN BIT(4)
175e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_C_POWERUP BIT(5)
176e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_D_POWERDOWN BIT(24)
177e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_D_POWERUP BIT(25)
178e745f992SPeter De Schrijver 
179e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1 0x484
180e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_ENABLE_DLY_COUNT(x) (((x) & 0x1f) << 27)
181e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_XTAL_FREQ_COUNT(x) (((x) & 0xfff) << 0)
182e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLLU_POWERUP BIT(17)
183e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLLU_POWERDOWN BIT(16)
184e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERUP BIT(15)
185e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERDOWN BIT(14)
186e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLL_ACTIVE_POWERDOWN BIT(12)
187e745f992SPeter De Schrijver 
1883358d2d9SAndrew Bresticker #define SATA_PLL_CFG0				0x490
1893358d2d9SAndrew Bresticker #define SATA_PLL_CFG0_PADPLL_RESET_SWCTL	BIT(0)
1903358d2d9SAndrew Bresticker #define SATA_PLL_CFG0_PADPLL_USE_LOCKDET	BIT(2)
19159af78d7SPeter De Schrijver #define SATA_PLL_CFG0_SATA_SEQ_IN_SWCTL		BIT(4)
19259af78d7SPeter De Schrijver #define SATA_PLL_CFG0_SATA_SEQ_RESET_INPUT_VALUE	BIT(5)
19359af78d7SPeter De Schrijver #define SATA_PLL_CFG0_SATA_SEQ_LANE_PD_INPUT_VALUE	BIT(6)
19459af78d7SPeter De Schrijver #define SATA_PLL_CFG0_SATA_SEQ_PADPLL_PD_INPUT_VALUE	BIT(7)
19559af78d7SPeter De Schrijver 
1963358d2d9SAndrew Bresticker #define SATA_PLL_CFG0_PADPLL_SLEEP_IDDQ		BIT(13)
1973358d2d9SAndrew Bresticker #define SATA_PLL_CFG0_SEQ_ENABLE		BIT(24)
1983358d2d9SAndrew Bresticker 
1993358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0				0x51c
2003358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_PADPLL_RESET_SWCTL	BIT(0)
2013358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_CLK_ENABLE_SWCTL	BIT(2)
2023358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_PADPLL_USE_LOCKDET	BIT(6)
2033358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_PADPLL_SLEEP_IDDQ	BIT(13)
2043358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_SEQ_ENABLE		BIT(24)
2053358d2d9SAndrew Bresticker 
2066b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0			0x52c
2076b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_UTMIPLL_LOCK	BIT(31)
2086b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_SEQ_START_STATE	BIT(25)
2096b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_SEQ_ENABLE	BIT(24)
2106b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_IDDQ_PD_INCLUDE	BIT(7)
2116b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_USE_LOCKDET	BIT(6)
2126b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_SEQ_RESET_INPUT_VALUE	BIT(5)
2136b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_SEQ_IN_SWCTL	BIT(4)
2146b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_CLK_ENABLE_SWCTL	BIT(2)
2156b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_IDDQ_OVERRIDE	BIT(1)
2166b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_IDDQ_SWCTL	BIT(0)
2176b301a05SRhyland Klein 
2186b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0			0x530
2196b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_IDDQ_PD_INCLUDE	BIT(28)
2206b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_SEQ_ENABLE		BIT(24)
2216b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_USE_SWITCH_DETECT	BIT(7)
2226b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_USE_LOCKDET		BIT(6)
2236b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_CLK_ENABLE_SWCTL	BIT(2)
2246b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_CLK_SWITCH_SWCTL	BIT(0)
2256b301a05SRhyland Klein 
2266b301a05SRhyland Klein #define XUSB_PLL_CFG0				0x534
2276b301a05SRhyland Klein #define XUSB_PLL_CFG0_UTMIPLL_LOCK_DLY		0x3ff
2286b301a05SRhyland Klein #define XUSB_PLL_CFG0_PLLU_LOCK_DLY_MASK	(0x3ff << 14)
2296b301a05SRhyland Klein 
2306b301a05SRhyland Klein #define SPARE_REG0 0x55c
2316b301a05SRhyland Klein #define CLK_M_DIVISOR_SHIFT 2
2326b301a05SRhyland Klein #define CLK_M_DIVISOR_MASK 0x3
2336b301a05SRhyland Klein 
23468d724ceSPeter De Schrijver #define RST_DFLL_DVCO 0x2f4
23568d724ceSPeter De Schrijver #define DVFS_DFLL_RESET_SHIFT 0
23668d724ceSPeter De Schrijver 
23768d724ceSPeter De Schrijver #define CLK_RST_CONTROLLER_RST_DEV_Y_SET 0x2a8
23868d724ceSPeter De Schrijver #define CLK_RST_CONTROLLER_RST_DEV_Y_CLR 0x2ac
23968d724ceSPeter De Schrijver 
240e403d005SPeter De Schrijver #define LVL2_CLK_GATE_OVRA 0xf8
241e403d005SPeter De Schrijver #define LVL2_CLK_GATE_OVRC 0x3a0
242e403d005SPeter De Schrijver #define LVL2_CLK_GATE_OVRD 0x3a4
243e403d005SPeter De Schrijver #define LVL2_CLK_GATE_OVRE 0x554
244e403d005SPeter De Schrijver 
245e403d005SPeter De Schrijver /* I2S registers to handle during APE MBIST WAR */
246e403d005SPeter De Schrijver #define TEGRA210_I2S_BASE  0x1000
247e403d005SPeter De Schrijver #define TEGRA210_I2S_SIZE  0x100
248e403d005SPeter De Schrijver #define TEGRA210_I2S_CTRLS 5
249e403d005SPeter De Schrijver #define TEGRA210_I2S_CG    0x88
250e403d005SPeter De Schrijver #define TEGRA210_I2S_CTRL  0xa0
251e403d005SPeter De Schrijver 
252e403d005SPeter De Schrijver /* DISPA registers to handle during MBIST WAR */
253e403d005SPeter De Schrijver #define DC_CMD_DISPLAY_COMMAND 0xc8
254e403d005SPeter De Schrijver #define DC_COM_DSC_TOP_CTL 0xcf8
255e403d005SPeter De Schrijver 
256e403d005SPeter De Schrijver /* VIC register to handle during MBIST WAR */
257e403d005SPeter De Schrijver #define NV_PVIC_THI_SLCG_OVERRIDE_LOW 0x8c
258e403d005SPeter De Schrijver 
259e403d005SPeter De Schrijver /* APE, DISPA and VIC base addesses needed for MBIST WAR */
260e403d005SPeter De Schrijver #define TEGRA210_AHUB_BASE  0x702d0000
261e403d005SPeter De Schrijver #define TEGRA210_DISPA_BASE 0x54200000
262e403d005SPeter De Schrijver #define TEGRA210_VIC_BASE  0x54340000
263e403d005SPeter De Schrijver 
2646b301a05SRhyland Klein /*
2656b301a05SRhyland Klein  * SDM fractional divisor is 16-bit 2's complement signed number within
2666b301a05SRhyland Klein  * (-2^12 ... 2^12-1) range. Represented in PLL data structure as unsigned
2676b301a05SRhyland Klein  * 16-bit value, with "0" divisor mapped to 0xFFFF. Data "0" is used to
2686b301a05SRhyland Klein  * indicate that SDM is disabled.
2696b301a05SRhyland Klein  *
2706b301a05SRhyland Klein  * Effective ndiv value when SDM is enabled: ndiv + 1/2 + sdm_din/2^13
2716b301a05SRhyland Klein  */
2726b301a05SRhyland Klein #define PLL_SDM_COEFF BIT(13)
2736b301a05SRhyland Klein #define sdin_din_to_data(din)	((u16)((din) ? : 0xFFFFU))
2746b301a05SRhyland Klein #define sdin_data_to_din(dat)	(((dat) == 0xFFFFU) ? 0 : (s16)dat)
275a851ea2bSAlex Frid /* This macro returns ndiv effective scaled to SDM range */
276a851ea2bSAlex Frid #define sdin_get_n_eff(cfg)	((cfg)->n * PLL_SDM_COEFF + ((cfg)->sdm_data ? \
277a851ea2bSAlex Frid 		(PLL_SDM_COEFF/2 + sdin_data_to_din((cfg)->sdm_data)) : 0))
2786b301a05SRhyland Klein 
2796b301a05SRhyland Klein /* Tegra CPU clock and reset control regs */
2806b301a05SRhyland Klein #define CLK_RST_CONTROLLER_CPU_CMPLX_STATUS	0x470
2816b301a05SRhyland Klein 
2826b301a05SRhyland Klein #ifdef CONFIG_PM_SLEEP
2836b301a05SRhyland Klein static struct cpu_clk_suspend_context {
2846b301a05SRhyland Klein 	u32 clk_csite_src;
2856b301a05SRhyland Klein } tegra210_cpu_clk_sctx;
2866b301a05SRhyland Klein #endif
2876b301a05SRhyland Klein 
288e403d005SPeter De Schrijver struct tegra210_domain_mbist_war {
289e403d005SPeter De Schrijver 	void (*handle_lvl2_ovr)(struct tegra210_domain_mbist_war *mbist);
290e403d005SPeter De Schrijver 	const u32 lvl2_offset;
291e403d005SPeter De Schrijver 	const u32 lvl2_mask;
292e403d005SPeter De Schrijver 	const unsigned int num_clks;
293e403d005SPeter De Schrijver 	const unsigned int *clk_init_data;
294e403d005SPeter De Schrijver 	struct clk_bulk_data *clks;
295e403d005SPeter De Schrijver };
296e403d005SPeter De Schrijver 
297e403d005SPeter De Schrijver static struct clk **clks;
298e403d005SPeter De Schrijver 
2996b301a05SRhyland Klein static void __iomem *clk_base;
3006b301a05SRhyland Klein static void __iomem *pmc_base;
301e403d005SPeter De Schrijver static void __iomem *ahub_base;
302e403d005SPeter De Schrijver static void __iomem *dispa_base;
303e403d005SPeter De Schrijver static void __iomem *vic_base;
3046b301a05SRhyland Klein 
3056b301a05SRhyland Klein static unsigned long osc_freq;
3066b301a05SRhyland Klein static unsigned long pll_ref_freq;
3076b301a05SRhyland Klein 
3086b301a05SRhyland Klein static DEFINE_SPINLOCK(pll_d_lock);
3096b301a05SRhyland Klein static DEFINE_SPINLOCK(pll_e_lock);
3106b301a05SRhyland Klein static DEFINE_SPINLOCK(pll_re_lock);
3116b301a05SRhyland Klein static DEFINE_SPINLOCK(pll_u_lock);
312bc2e4d29SThierry Reding static DEFINE_SPINLOCK(sor1_lock);
3136b301a05SRhyland Klein static DEFINE_SPINLOCK(emc_lock);
314e403d005SPeter De Schrijver static DEFINE_MUTEX(lvl2_ovr_lock);
3156b301a05SRhyland Klein 
3166b301a05SRhyland Klein /* possible OSC frequencies in Hz */
3176b301a05SRhyland Klein static unsigned long tegra210_input_freq[] = {
3186b301a05SRhyland Klein 	[5] = 38400000,
3196b301a05SRhyland Klein 	[8] = 12000000,
3206b301a05SRhyland Klein };
3216b301a05SRhyland Klein 
3226b301a05SRhyland Klein static const char *mux_pllmcp_clkm[] = {
3234f8d4440SJon Hunter 	"pll_m", "pll_c", "pll_p", "clk_m", "pll_m_ud", "pll_mb", "pll_mb",
3244f8d4440SJon Hunter 	"pll_p",
3256b301a05SRhyland Klein };
3266b301a05SRhyland Klein #define mux_pllmcp_clkm_idx NULL
3276b301a05SRhyland Klein 
3286b301a05SRhyland Klein #define PLL_ENABLE			(1 << 30)
3296b301a05SRhyland Klein 
3306b301a05SRhyland Klein #define PLLCX_MISC1_IDDQ		(1 << 27)
3316b301a05SRhyland Klein #define PLLCX_MISC0_RESET		(1 << 30)
3326b301a05SRhyland Klein 
3336b301a05SRhyland Klein #define PLLCX_MISC0_DEFAULT_VALUE	0x40080000
3346b301a05SRhyland Klein #define PLLCX_MISC0_WRITE_MASK		0x400ffffb
3356b301a05SRhyland Klein #define PLLCX_MISC1_DEFAULT_VALUE	0x08000000
3366b301a05SRhyland Klein #define PLLCX_MISC1_WRITE_MASK		0x08003cff
3376b301a05SRhyland Klein #define PLLCX_MISC2_DEFAULT_VALUE	0x1f720f05
3386b301a05SRhyland Klein #define PLLCX_MISC2_WRITE_MASK		0xffffff17
3396b301a05SRhyland Klein #define PLLCX_MISC3_DEFAULT_VALUE	0x000000c4
3406b301a05SRhyland Klein #define PLLCX_MISC3_WRITE_MASK		0x00ffffff
3416b301a05SRhyland Klein 
3426b301a05SRhyland Klein /* PLLA */
3436b301a05SRhyland Klein #define PLLA_BASE_IDDQ			(1 << 25)
3446b301a05SRhyland Klein #define PLLA_BASE_LOCK			(1 << 27)
3456b301a05SRhyland Klein 
3466b301a05SRhyland Klein #define PLLA_MISC0_LOCK_ENABLE		(1 << 28)
3476b301a05SRhyland Klein #define PLLA_MISC0_LOCK_OVERRIDE	(1 << 27)
3486b301a05SRhyland Klein 
3496b301a05SRhyland Klein #define PLLA_MISC2_EN_SDM		(1 << 26)
3506b301a05SRhyland Klein #define PLLA_MISC2_EN_DYNRAMP		(1 << 25)
3516b301a05SRhyland Klein 
3526b301a05SRhyland Klein #define PLLA_MISC0_DEFAULT_VALUE	0x12000020
3536b301a05SRhyland Klein #define PLLA_MISC0_WRITE_MASK		0x7fffffff
3546b301a05SRhyland Klein #define PLLA_MISC2_DEFAULT_VALUE	0x0
3556b301a05SRhyland Klein #define PLLA_MISC2_WRITE_MASK		0x06ffffff
3566b301a05SRhyland Klein 
3576b301a05SRhyland Klein /* PLLD */
358e403d005SPeter De Schrijver #define PLLD_BASE_CSI_CLKSOURCE		(1 << 23)
359e403d005SPeter De Schrijver 
3606b301a05SRhyland Klein #define PLLD_MISC0_EN_SDM		(1 << 16)
3616b301a05SRhyland Klein #define PLLD_MISC0_LOCK_OVERRIDE	(1 << 17)
3626b301a05SRhyland Klein #define PLLD_MISC0_LOCK_ENABLE		(1 << 18)
3636b301a05SRhyland Klein #define PLLD_MISC0_IDDQ			(1 << 20)
3646b301a05SRhyland Klein #define PLLD_MISC0_DSI_CLKENABLE	(1 << 21)
3656b301a05SRhyland Klein 
3666b301a05SRhyland Klein #define PLLD_MISC0_DEFAULT_VALUE	0x00140000
3676b301a05SRhyland Klein #define PLLD_MISC0_WRITE_MASK		0x3ff7ffff
3686b301a05SRhyland Klein #define PLLD_MISC1_DEFAULT_VALUE	0x20
3696b301a05SRhyland Klein #define PLLD_MISC1_WRITE_MASK		0x00ffffff
3706b301a05SRhyland Klein 
3716b301a05SRhyland Klein /* PLLD2 and PLLDP  and PLLC4 */
3726b301a05SRhyland Klein #define PLLDSS_BASE_LOCK		(1 << 27)
3736b301a05SRhyland Klein #define PLLDSS_BASE_LOCK_OVERRIDE	(1 << 24)
3746b301a05SRhyland Klein #define PLLDSS_BASE_IDDQ		(1 << 18)
3756b301a05SRhyland Klein #define PLLDSS_BASE_REF_SEL_SHIFT	25
3766b301a05SRhyland Klein #define PLLDSS_BASE_REF_SEL_MASK	(0x3 << PLLDSS_BASE_REF_SEL_SHIFT)
3776b301a05SRhyland Klein 
3786b301a05SRhyland Klein #define PLLDSS_MISC0_LOCK_ENABLE	(1 << 30)
3796b301a05SRhyland Klein 
3806b301a05SRhyland Klein #define PLLDSS_MISC1_CFG_EN_SDM		(1 << 31)
3816b301a05SRhyland Klein #define PLLDSS_MISC1_CFG_EN_SSC		(1 << 30)
3826b301a05SRhyland Klein 
3836b301a05SRhyland Klein #define PLLD2_MISC0_DEFAULT_VALUE	0x40000020
3846b301a05SRhyland Klein #define PLLD2_MISC1_CFG_DEFAULT_VALUE	0x10000000
3856b301a05SRhyland Klein #define PLLD2_MISC2_CTRL1_DEFAULT_VALUE	0x0
3866b301a05SRhyland Klein #define PLLD2_MISC3_CTRL2_DEFAULT_VALUE	0x0
3876b301a05SRhyland Klein 
3886b301a05SRhyland Klein #define PLLDP_MISC0_DEFAULT_VALUE	0x40000020
3896b301a05SRhyland Klein #define PLLDP_MISC1_CFG_DEFAULT_VALUE	0xc0000000
3906b301a05SRhyland Klein #define PLLDP_MISC2_CTRL1_DEFAULT_VALUE	0xf400f0da
3916b301a05SRhyland Klein #define PLLDP_MISC3_CTRL2_DEFAULT_VALUE	0x2004f400
3926b301a05SRhyland Klein 
3936b301a05SRhyland Klein #define PLLDSS_MISC0_WRITE_MASK		0x47ffffff
3946b301a05SRhyland Klein #define PLLDSS_MISC1_CFG_WRITE_MASK	0xf8000000
3956b301a05SRhyland Klein #define PLLDSS_MISC2_CTRL1_WRITE_MASK	0xffffffff
3966b301a05SRhyland Klein #define PLLDSS_MISC3_CTRL2_WRITE_MASK	0xffffffff
3976b301a05SRhyland Klein 
3986b301a05SRhyland Klein #define PLLC4_MISC0_DEFAULT_VALUE	0x40000000
3996b301a05SRhyland Klein 
4006b301a05SRhyland Klein /* PLLRE */
4016b301a05SRhyland Klein #define PLLRE_MISC0_LOCK_ENABLE		(1 << 30)
4026b301a05SRhyland Klein #define PLLRE_MISC0_LOCK_OVERRIDE	(1 << 29)
4036b301a05SRhyland Klein #define PLLRE_MISC0_LOCK		(1 << 27)
4046b301a05SRhyland Klein #define PLLRE_MISC0_IDDQ		(1 << 24)
4056b301a05SRhyland Klein 
4066b301a05SRhyland Klein #define PLLRE_BASE_DEFAULT_VALUE	0x0
4076b301a05SRhyland Klein #define PLLRE_MISC0_DEFAULT_VALUE	0x41000000
4086b301a05SRhyland Klein 
4096b301a05SRhyland Klein #define PLLRE_BASE_DEFAULT_MASK		0x1c000000
4106b301a05SRhyland Klein #define PLLRE_MISC0_WRITE_MASK		0x67ffffff
4116b301a05SRhyland Klein 
4126b301a05SRhyland Klein /* PLLX */
4136b301a05SRhyland Klein #define PLLX_USE_DYN_RAMP		1
4146b301a05SRhyland Klein #define PLLX_BASE_LOCK			(1 << 27)
4156b301a05SRhyland Klein 
4166b301a05SRhyland Klein #define PLLX_MISC0_FO_G_DISABLE		(0x1 << 28)
4176b301a05SRhyland Klein #define PLLX_MISC0_LOCK_ENABLE		(0x1 << 18)
4186b301a05SRhyland Klein 
4196b301a05SRhyland Klein #define PLLX_MISC2_DYNRAMP_STEPB_SHIFT	24
4206b301a05SRhyland Klein #define PLLX_MISC2_DYNRAMP_STEPB_MASK	(0xFF << PLLX_MISC2_DYNRAMP_STEPB_SHIFT)
4216b301a05SRhyland Klein #define PLLX_MISC2_DYNRAMP_STEPA_SHIFT	16
4226b301a05SRhyland Klein #define PLLX_MISC2_DYNRAMP_STEPA_MASK	(0xFF << PLLX_MISC2_DYNRAMP_STEPA_SHIFT)
4236b301a05SRhyland Klein #define PLLX_MISC2_NDIV_NEW_SHIFT	8
4246b301a05SRhyland Klein #define PLLX_MISC2_NDIV_NEW_MASK	(0xFF << PLLX_MISC2_NDIV_NEW_SHIFT)
4256b301a05SRhyland Klein #define PLLX_MISC2_LOCK_OVERRIDE	(0x1 << 4)
4266b301a05SRhyland Klein #define PLLX_MISC2_DYNRAMP_DONE		(0x1 << 2)
4276b301a05SRhyland Klein #define PLLX_MISC2_EN_DYNRAMP		(0x1 << 0)
4286b301a05SRhyland Klein 
4296b301a05SRhyland Klein #define PLLX_MISC3_IDDQ			(0x1 << 3)
4306b301a05SRhyland Klein 
4316b301a05SRhyland Klein #define PLLX_MISC0_DEFAULT_VALUE	PLLX_MISC0_LOCK_ENABLE
4326b301a05SRhyland Klein #define PLLX_MISC0_WRITE_MASK		0x10c40000
4336b301a05SRhyland Klein #define PLLX_MISC1_DEFAULT_VALUE	0x20
4346b301a05SRhyland Klein #define PLLX_MISC1_WRITE_MASK		0x00ffffff
4356b301a05SRhyland Klein #define PLLX_MISC2_DEFAULT_VALUE	0x0
4366b301a05SRhyland Klein #define PLLX_MISC2_WRITE_MASK		0xffffff11
4376b301a05SRhyland Klein #define PLLX_MISC3_DEFAULT_VALUE	PLLX_MISC3_IDDQ
4386b301a05SRhyland Klein #define PLLX_MISC3_WRITE_MASK		0x01ff0f0f
4396b301a05SRhyland Klein #define PLLX_MISC4_DEFAULT_VALUE	0x0
4406b301a05SRhyland Klein #define PLLX_MISC4_WRITE_MASK		0x8000ffff
4416b301a05SRhyland Klein #define PLLX_MISC5_DEFAULT_VALUE	0x0
4426b301a05SRhyland Klein #define PLLX_MISC5_WRITE_MASK		0x0000ffff
4436b301a05SRhyland Klein 
4446b301a05SRhyland Klein #define PLLX_HW_CTRL_CFG		0x548
4456b301a05SRhyland Klein #define PLLX_HW_CTRL_CFG_SWCTRL		(0x1 << 0)
4466b301a05SRhyland Klein 
4476b301a05SRhyland Klein /* PLLMB */
4486b301a05SRhyland Klein #define PLLMB_BASE_LOCK			(1 << 27)
4496b301a05SRhyland Klein 
450474f2ba2SRhyland Klein #define PLLMB_MISC1_LOCK_OVERRIDE	(1 << 18)
451474f2ba2SRhyland Klein #define PLLMB_MISC1_IDDQ		(1 << 17)
452474f2ba2SRhyland Klein #define PLLMB_MISC1_LOCK_ENABLE		(1 << 16)
4536b301a05SRhyland Klein 
454474f2ba2SRhyland Klein #define PLLMB_MISC1_DEFAULT_VALUE	0x00030000
455474f2ba2SRhyland Klein #define PLLMB_MISC1_WRITE_MASK		0x0007ffff
4566b301a05SRhyland Klein 
4576b301a05SRhyland Klein /* PLLP */
4586b301a05SRhyland Klein #define PLLP_BASE_OVERRIDE		(1 << 28)
4596b301a05SRhyland Klein #define PLLP_BASE_LOCK			(1 << 27)
4606b301a05SRhyland Klein 
4616b301a05SRhyland Klein #define PLLP_MISC0_LOCK_ENABLE		(1 << 18)
4626b301a05SRhyland Klein #define PLLP_MISC0_LOCK_OVERRIDE	(1 << 17)
4636b301a05SRhyland Klein #define PLLP_MISC0_IDDQ			(1 << 3)
4646b301a05SRhyland Klein 
4656b301a05SRhyland Klein #define PLLP_MISC1_HSIO_EN_SHIFT	29
4666b301a05SRhyland Klein #define PLLP_MISC1_HSIO_EN		(1 << PLLP_MISC1_HSIO_EN_SHIFT)
4676b301a05SRhyland Klein #define PLLP_MISC1_XUSB_EN_SHIFT	28
4686b301a05SRhyland Klein #define PLLP_MISC1_XUSB_EN		(1 << PLLP_MISC1_XUSB_EN_SHIFT)
4696b301a05SRhyland Klein 
4706b301a05SRhyland Klein #define PLLP_MISC0_DEFAULT_VALUE	0x00040008
4716b301a05SRhyland Klein #define PLLP_MISC1_DEFAULT_VALUE	0x0
4726b301a05SRhyland Klein 
4736b301a05SRhyland Klein #define PLLP_MISC0_WRITE_MASK		0xdc6000f
4746b301a05SRhyland Klein #define PLLP_MISC1_WRITE_MASK		0x70ffffff
4756b301a05SRhyland Klein 
4766b301a05SRhyland Klein /* PLLU */
4776b301a05SRhyland Klein #define PLLU_BASE_LOCK			(1 << 27)
4786b301a05SRhyland Klein #define PLLU_BASE_OVERRIDE		(1 << 24)
4796b301a05SRhyland Klein #define PLLU_BASE_CLKENABLE_USB		(1 << 21)
4806b301a05SRhyland Klein #define PLLU_BASE_CLKENABLE_HSIC	(1 << 22)
4816b301a05SRhyland Klein #define PLLU_BASE_CLKENABLE_ICUSB	(1 << 23)
4826b301a05SRhyland Klein #define PLLU_BASE_CLKENABLE_48M		(1 << 25)
4836b301a05SRhyland Klein #define PLLU_BASE_CLKENABLE_ALL		(PLLU_BASE_CLKENABLE_USB |\
4846b301a05SRhyland Klein 					 PLLU_BASE_CLKENABLE_HSIC |\
4856b301a05SRhyland Klein 					 PLLU_BASE_CLKENABLE_ICUSB |\
4866b301a05SRhyland Klein 					 PLLU_BASE_CLKENABLE_48M)
4876b301a05SRhyland Klein 
4886b301a05SRhyland Klein #define PLLU_MISC0_IDDQ			(1 << 31)
4896b301a05SRhyland Klein #define PLLU_MISC0_LOCK_ENABLE		(1 << 29)
4906b301a05SRhyland Klein #define PLLU_MISC1_LOCK_OVERRIDE	(1 << 0)
4916b301a05SRhyland Klein 
4926b301a05SRhyland Klein #define PLLU_MISC0_DEFAULT_VALUE	0xa0000000
4936b301a05SRhyland Klein #define PLLU_MISC1_DEFAULT_VALUE	0x0
4946b301a05SRhyland Klein 
4956b301a05SRhyland Klein #define PLLU_MISC0_WRITE_MASK		0xbfffffff
4966b301a05SRhyland Klein #define PLLU_MISC1_WRITE_MASK		0x00000007
4976b301a05SRhyland Klein 
4983358d2d9SAndrew Bresticker void tegra210_xusb_pll_hw_control_enable(void)
4993358d2d9SAndrew Bresticker {
5003358d2d9SAndrew Bresticker 	u32 val;
5013358d2d9SAndrew Bresticker 
5023358d2d9SAndrew Bresticker 	val = readl_relaxed(clk_base + XUSBIO_PLL_CFG0);
5033358d2d9SAndrew Bresticker 	val &= ~(XUSBIO_PLL_CFG0_CLK_ENABLE_SWCTL |
5043358d2d9SAndrew Bresticker 		 XUSBIO_PLL_CFG0_PADPLL_RESET_SWCTL);
5053358d2d9SAndrew Bresticker 	val |= XUSBIO_PLL_CFG0_PADPLL_USE_LOCKDET |
5063358d2d9SAndrew Bresticker 	       XUSBIO_PLL_CFG0_PADPLL_SLEEP_IDDQ;
5073358d2d9SAndrew Bresticker 	writel_relaxed(val, clk_base + XUSBIO_PLL_CFG0);
5083358d2d9SAndrew Bresticker }
5093358d2d9SAndrew Bresticker EXPORT_SYMBOL_GPL(tegra210_xusb_pll_hw_control_enable);
5103358d2d9SAndrew Bresticker 
5113358d2d9SAndrew Bresticker void tegra210_xusb_pll_hw_sequence_start(void)
5123358d2d9SAndrew Bresticker {
5133358d2d9SAndrew Bresticker 	u32 val;
5143358d2d9SAndrew Bresticker 
5153358d2d9SAndrew Bresticker 	val = readl_relaxed(clk_base + XUSBIO_PLL_CFG0);
5163358d2d9SAndrew Bresticker 	val |= XUSBIO_PLL_CFG0_SEQ_ENABLE;
5173358d2d9SAndrew Bresticker 	writel_relaxed(val, clk_base + XUSBIO_PLL_CFG0);
5183358d2d9SAndrew Bresticker }
5193358d2d9SAndrew Bresticker EXPORT_SYMBOL_GPL(tegra210_xusb_pll_hw_sequence_start);
5203358d2d9SAndrew Bresticker 
5213358d2d9SAndrew Bresticker void tegra210_sata_pll_hw_control_enable(void)
5223358d2d9SAndrew Bresticker {
5233358d2d9SAndrew Bresticker 	u32 val;
5243358d2d9SAndrew Bresticker 
5253358d2d9SAndrew Bresticker 	val = readl_relaxed(clk_base + SATA_PLL_CFG0);
5263358d2d9SAndrew Bresticker 	val &= ~SATA_PLL_CFG0_PADPLL_RESET_SWCTL;
5273358d2d9SAndrew Bresticker 	val |= SATA_PLL_CFG0_PADPLL_USE_LOCKDET |
5283358d2d9SAndrew Bresticker 	       SATA_PLL_CFG0_PADPLL_SLEEP_IDDQ;
5293358d2d9SAndrew Bresticker 	writel_relaxed(val, clk_base + SATA_PLL_CFG0);
5303358d2d9SAndrew Bresticker }
5313358d2d9SAndrew Bresticker EXPORT_SYMBOL_GPL(tegra210_sata_pll_hw_control_enable);
5323358d2d9SAndrew Bresticker 
5333358d2d9SAndrew Bresticker void tegra210_sata_pll_hw_sequence_start(void)
5343358d2d9SAndrew Bresticker {
5353358d2d9SAndrew Bresticker 	u32 val;
5363358d2d9SAndrew Bresticker 
5373358d2d9SAndrew Bresticker 	val = readl_relaxed(clk_base + SATA_PLL_CFG0);
5383358d2d9SAndrew Bresticker 	val |= SATA_PLL_CFG0_SEQ_ENABLE;
5393358d2d9SAndrew Bresticker 	writel_relaxed(val, clk_base + SATA_PLL_CFG0);
5403358d2d9SAndrew Bresticker }
5413358d2d9SAndrew Bresticker EXPORT_SYMBOL_GPL(tegra210_sata_pll_hw_sequence_start);
5423358d2d9SAndrew Bresticker 
54359af78d7SPeter De Schrijver void tegra210_set_sata_pll_seq_sw(bool state)
54459af78d7SPeter De Schrijver {
54559af78d7SPeter De Schrijver 	u32 val;
54659af78d7SPeter De Schrijver 
54759af78d7SPeter De Schrijver 	val = readl_relaxed(clk_base + SATA_PLL_CFG0);
54859af78d7SPeter De Schrijver 	if (state) {
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 	} else {
55459af78d7SPeter De Schrijver 		val &= ~SATA_PLL_CFG0_SATA_SEQ_IN_SWCTL;
55559af78d7SPeter De Schrijver 		val &= ~SATA_PLL_CFG0_SATA_SEQ_RESET_INPUT_VALUE;
55659af78d7SPeter De Schrijver 		val &= ~SATA_PLL_CFG0_SATA_SEQ_LANE_PD_INPUT_VALUE;
55759af78d7SPeter De Schrijver 		val &= ~SATA_PLL_CFG0_SATA_SEQ_PADPLL_PD_INPUT_VALUE;
55859af78d7SPeter De Schrijver 	}
55959af78d7SPeter De Schrijver 	writel_relaxed(val, clk_base + SATA_PLL_CFG0);
56059af78d7SPeter De Schrijver }
56159af78d7SPeter De Schrijver EXPORT_SYMBOL_GPL(tegra210_set_sata_pll_seq_sw);
56259af78d7SPeter De Schrijver 
563e403d005SPeter De Schrijver static void tegra210_generic_mbist_war(struct tegra210_domain_mbist_war *mbist)
564e403d005SPeter De Schrijver {
565e403d005SPeter De Schrijver 	u32 val;
566e403d005SPeter De Schrijver 
567e403d005SPeter De Schrijver 	val = readl_relaxed(clk_base + mbist->lvl2_offset);
568e403d005SPeter De Schrijver 	writel_relaxed(val | mbist->lvl2_mask, clk_base + mbist->lvl2_offset);
569e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
570e403d005SPeter De Schrijver 	writel_relaxed(val, clk_base + mbist->lvl2_offset);
571e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
572e403d005SPeter De Schrijver }
573e403d005SPeter De Schrijver 
574e403d005SPeter De Schrijver static void tegra210_venc_mbist_war(struct tegra210_domain_mbist_war *mbist)
575e403d005SPeter De Schrijver {
576e403d005SPeter De Schrijver 	u32 csi_src, ovra, ovre;
577e403d005SPeter De Schrijver 	unsigned long flags = 0;
578e403d005SPeter De Schrijver 
579e403d005SPeter De Schrijver 	spin_lock_irqsave(&pll_d_lock, flags);
580e403d005SPeter De Schrijver 
581e403d005SPeter De Schrijver 	csi_src = readl_relaxed(clk_base + PLLD_BASE);
582e403d005SPeter De Schrijver 	writel_relaxed(csi_src | PLLD_BASE_CSI_CLKSOURCE, clk_base + PLLD_BASE);
583e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
584e403d005SPeter De Schrijver 
585e403d005SPeter De Schrijver 	ovra = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRA);
586e403d005SPeter De Schrijver 	writel_relaxed(ovra | BIT(15), clk_base + LVL2_CLK_GATE_OVRA);
587e403d005SPeter De Schrijver 	ovre = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRE);
588e403d005SPeter De Schrijver 	writel_relaxed(ovre | BIT(3), clk_base + LVL2_CLK_GATE_OVRE);
589e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
590e403d005SPeter De Schrijver 
591e403d005SPeter De Schrijver 	writel_relaxed(ovra, clk_base + LVL2_CLK_GATE_OVRA);
592e403d005SPeter De Schrijver 	writel_relaxed(ovre, clk_base + LVL2_CLK_GATE_OVRE);
593e403d005SPeter De Schrijver 	writel_relaxed(csi_src, clk_base + PLLD_BASE);
594e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
595e403d005SPeter De Schrijver 
596e403d005SPeter De Schrijver 	spin_unlock_irqrestore(&pll_d_lock, flags);
597e403d005SPeter De Schrijver }
598e403d005SPeter De Schrijver 
599e403d005SPeter De Schrijver static void tegra210_disp_mbist_war(struct tegra210_domain_mbist_war *mbist)
600e403d005SPeter De Schrijver {
601e403d005SPeter De Schrijver 	u32 ovra, dsc_top_ctrl;
602e403d005SPeter De Schrijver 
603e403d005SPeter De Schrijver 	ovra = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRA);
604e403d005SPeter De Schrijver 	writel_relaxed(ovra | BIT(1), clk_base + LVL2_CLK_GATE_OVRA);
605e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
606e403d005SPeter De Schrijver 
607e403d005SPeter De Schrijver 	dsc_top_ctrl = readl_relaxed(dispa_base + DC_COM_DSC_TOP_CTL);
608e403d005SPeter De Schrijver 	writel_relaxed(dsc_top_ctrl | BIT(2), dispa_base + DC_COM_DSC_TOP_CTL);
609e403d005SPeter De Schrijver 	readl_relaxed(dispa_base + DC_CMD_DISPLAY_COMMAND);
610e403d005SPeter De Schrijver 	writel_relaxed(dsc_top_ctrl, dispa_base + DC_COM_DSC_TOP_CTL);
611e403d005SPeter De Schrijver 	readl_relaxed(dispa_base + DC_CMD_DISPLAY_COMMAND);
612e403d005SPeter De Schrijver 
613e403d005SPeter De Schrijver 	writel_relaxed(ovra, clk_base + LVL2_CLK_GATE_OVRA);
614e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
615e403d005SPeter De Schrijver }
616e403d005SPeter De Schrijver 
617e403d005SPeter De Schrijver static void tegra210_vic_mbist_war(struct tegra210_domain_mbist_war *mbist)
618e403d005SPeter De Schrijver {
619e403d005SPeter De Schrijver 	u32 ovre, val;
620e403d005SPeter De Schrijver 
621e403d005SPeter De Schrijver 	ovre = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRE);
622e403d005SPeter De Schrijver 	writel_relaxed(ovre | BIT(5), clk_base + LVL2_CLK_GATE_OVRE);
623e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
624e403d005SPeter De Schrijver 
625e403d005SPeter De Schrijver 	val = readl_relaxed(vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW);
626e403d005SPeter De Schrijver 	writel_relaxed(val | BIT(0) | GENMASK(7, 2) | BIT(24),
627e403d005SPeter De Schrijver 			vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW);
628e403d005SPeter De Schrijver 	fence_udelay(1, vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW);
629e403d005SPeter De Schrijver 
630e403d005SPeter De Schrijver 	writel_relaxed(val, vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW);
631e403d005SPeter De Schrijver 	readl(vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW);
632e403d005SPeter De Schrijver 
633e403d005SPeter De Schrijver 	writel_relaxed(ovre, clk_base + LVL2_CLK_GATE_OVRE);
634e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
635e403d005SPeter De Schrijver }
636e403d005SPeter De Schrijver 
637e403d005SPeter De Schrijver static void tegra210_ape_mbist_war(struct tegra210_domain_mbist_war *mbist)
638e403d005SPeter De Schrijver {
639e403d005SPeter De Schrijver 	void __iomem *i2s_base;
640e403d005SPeter De Schrijver 	unsigned int i;
641e403d005SPeter De Schrijver 	u32 ovrc, ovre;
642e403d005SPeter De Schrijver 
643e403d005SPeter De Schrijver 	ovrc = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRC);
644e403d005SPeter De Schrijver 	ovre = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRE);
645e403d005SPeter De Schrijver 	writel_relaxed(ovrc | BIT(1), clk_base + LVL2_CLK_GATE_OVRC);
646e403d005SPeter De Schrijver 	writel_relaxed(ovre | BIT(10) | BIT(11),
647e403d005SPeter De Schrijver 			clk_base + LVL2_CLK_GATE_OVRE);
648e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
649e403d005SPeter De Schrijver 
650e403d005SPeter De Schrijver 	i2s_base = ahub_base + TEGRA210_I2S_BASE;
651e403d005SPeter De Schrijver 
652e403d005SPeter De Schrijver 	for (i = 0; i < TEGRA210_I2S_CTRLS; i++) {
653e403d005SPeter De Schrijver 		u32 i2s_ctrl;
654e403d005SPeter De Schrijver 
655e403d005SPeter De Schrijver 		i2s_ctrl = readl_relaxed(i2s_base + TEGRA210_I2S_CTRL);
656e403d005SPeter De Schrijver 		writel_relaxed(i2s_ctrl | BIT(10),
657e403d005SPeter De Schrijver 				i2s_base + TEGRA210_I2S_CTRL);
658e403d005SPeter De Schrijver 		writel_relaxed(0, i2s_base + TEGRA210_I2S_CG);
659e403d005SPeter De Schrijver 		readl(i2s_base + TEGRA210_I2S_CG);
660e403d005SPeter De Schrijver 		writel_relaxed(1, i2s_base + TEGRA210_I2S_CG);
661e403d005SPeter De Schrijver 		writel_relaxed(i2s_ctrl, i2s_base + TEGRA210_I2S_CTRL);
662e403d005SPeter De Schrijver 		readl(i2s_base + TEGRA210_I2S_CTRL);
663e403d005SPeter De Schrijver 
664e403d005SPeter De Schrijver 		i2s_base += TEGRA210_I2S_SIZE;
665e403d005SPeter De Schrijver 	}
666e403d005SPeter De Schrijver 
667e403d005SPeter De Schrijver 	writel_relaxed(ovrc, clk_base + LVL2_CLK_GATE_OVRC);
668e403d005SPeter De Schrijver 	writel_relaxed(ovre, clk_base + LVL2_CLK_GATE_OVRE);
669e403d005SPeter De Schrijver 	fence_udelay(1, clk_base);
670e403d005SPeter De Schrijver }
671e403d005SPeter De Schrijver 
6726b301a05SRhyland Klein static inline void _pll_misc_chk_default(void __iomem *base,
6736b301a05SRhyland Klein 					struct tegra_clk_pll_params *params,
6746b301a05SRhyland Klein 					u8 misc_num, u32 default_val, u32 mask)
6756b301a05SRhyland Klein {
6766b301a05SRhyland Klein 	u32 boot_val = readl_relaxed(base + params->ext_misc_reg[misc_num]);
6776b301a05SRhyland Klein 
6786b301a05SRhyland Klein 	boot_val &= mask;
6796b301a05SRhyland Klein 	default_val &= mask;
6806b301a05SRhyland Klein 	if (boot_val != default_val) {
6816b301a05SRhyland Klein 		pr_warn("boot misc%d 0x%x: expected 0x%x\n",
6826b301a05SRhyland Klein 			misc_num, boot_val, default_val);
6836b301a05SRhyland Klein 		pr_warn(" (comparison mask = 0x%x)\n", mask);
6846b301a05SRhyland Klein 		params->defaults_set = false;
6856b301a05SRhyland Klein 	}
6866b301a05SRhyland Klein }
6876b301a05SRhyland Klein 
6886b301a05SRhyland Klein /*
6896b301a05SRhyland Klein  * PLLCX: PLLC, PLLC2, PLLC3, PLLA1
6906b301a05SRhyland Klein  * Hybrid PLLs with dynamic ramp. Dynamic ramp is allowed for any transition
6916b301a05SRhyland Klein  * that changes NDIV only, while PLL is already locked.
6926b301a05SRhyland Klein  */
6936b301a05SRhyland Klein static void pllcx_check_defaults(struct tegra_clk_pll_params *params)
6946b301a05SRhyland Klein {
6956b301a05SRhyland Klein 	u32 default_val;
6966b301a05SRhyland Klein 
6976b301a05SRhyland Klein 	default_val = PLLCX_MISC0_DEFAULT_VALUE & (~PLLCX_MISC0_RESET);
6986b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, params, 0, default_val,
6996b301a05SRhyland Klein 			PLLCX_MISC0_WRITE_MASK);
7006b301a05SRhyland Klein 
7016b301a05SRhyland Klein 	default_val = PLLCX_MISC1_DEFAULT_VALUE & (~PLLCX_MISC1_IDDQ);
7026b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, params, 1, default_val,
7036b301a05SRhyland Klein 			PLLCX_MISC1_WRITE_MASK);
7046b301a05SRhyland Klein 
7056b301a05SRhyland Klein 	default_val = PLLCX_MISC2_DEFAULT_VALUE;
7066b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, params, 2, default_val,
7076b301a05SRhyland Klein 			PLLCX_MISC2_WRITE_MASK);
7086b301a05SRhyland Klein 
7096b301a05SRhyland Klein 	default_val = PLLCX_MISC3_DEFAULT_VALUE;
7106b301a05SRhyland Klein 	_pll_misc_chk_default(clk_base, params, 3, default_val,
7116b301a05SRhyland Klein 			PLLCX_MISC3_WRITE_MASK);
7126b301a05SRhyland Klein }
7136b301a05SRhyland Klein 
714fd360e20SJon Hunter static void tegra210_pllcx_set_defaults(const char *name,
715fd360e20SJon Hunter 					struct tegra_clk_pll *pllcx)
7166b301a05SRhyland Klein {
7176b301a05SRhyland Klein 	pllcx->params->defaults_set = true;
7186b301a05SRhyland Klein 
7191116d5a7SJon Hunter 	if (readl_relaxed(clk_base + pllcx->params->base_reg) & PLL_ENABLE) {
7206b301a05SRhyland Klein 		/* PLL is ON: only check if defaults already set */
7216b301a05SRhyland Klein 		pllcx_check_defaults(pllcx->params);
7221116d5a7SJon Hunter 		if (!pllcx->params->defaults_set)
7236b301a05SRhyland Klein 			pr_warn("%s already enabled. Postponing set full defaults\n",
7246b301a05SRhyland Klein 				name);
7256b301a05SRhyland Klein 		return;
7266b301a05SRhyland Klein 	}
7276b301a05SRhyland Klein 
7286b301a05SRhyland Klein 	/* Defaults assert PLL reset, and set IDDQ */
7296b301a05SRhyland Klein 	writel_relaxed(PLLCX_MISC0_DEFAULT_VALUE,
7306b301a05SRhyland Klein 			clk_base + pllcx->params->ext_misc_reg[0]);
7316b301a05SRhyland Klein 	writel_relaxed(PLLCX_MISC1_DEFAULT_VALUE,
7326b301a05SRhyland Klein 			clk_base + pllcx->params->ext_misc_reg[1]);
7336b301a05SRhyland Klein 	writel_relaxed(PLLCX_MISC2_DEFAULT_VALUE,
7346b301a05SRhyland Klein 			clk_base + pllcx->params->ext_misc_reg[2]);
7356b301a05SRhyland Klein 	writel_relaxed(PLLCX_MISC3_DEFAULT_VALUE,
7366b301a05SRhyland Klein 			clk_base + pllcx->params->ext_misc_reg[3]);
7376b301a05SRhyland Klein 	udelay(1);
7386b301a05SRhyland Klein }
7396b301a05SRhyland Klein 
740fd360e20SJon Hunter static void _pllc_set_defaults(struct tegra_clk_pll *pllcx)
7416b301a05SRhyland Klein {
7426b301a05SRhyland Klein 	tegra210_pllcx_set_defaults("PLL_C", pllcx);
7436b301a05SRhyland Klein }
7446b301a05SRhyland Klein 
745fd360e20SJon Hunter static void _pllc2_set_defaults(struct tegra_clk_pll *pllcx)
7466b301a05SRhyland Klein {
7476b301a05SRhyland Klein 	tegra210_pllcx_set_defaults("PLL_C2", pllcx);
7486b301a05SRhyland Klein }
7496b301a05SRhyland Klein 
750fd360e20SJon Hunter static void _pllc3_set_defaults(struct tegra_clk_pll *pllcx)
7516b301a05SRhyland Klein {
7526b301a05SRhyland Klein 	tegra210_pllcx_set_defaults("PLL_C3", pllcx);
7536b301a05SRhyland Klein }
7546b301a05SRhyland Klein 
755fd360e20SJon Hunter static void _plla1_set_defaults(struct tegra_clk_pll *pllcx)
7566b301a05SRhyland Klein {
7576b301a05SRhyland Klein 	tegra210_pllcx_set_defaults("PLL_A1", pllcx);
7586b301a05SRhyland Klein }
7596b301a05SRhyland Klein 
7606b301a05SRhyland Klein /*
7616b301a05SRhyland Klein  * PLLA
7626b301a05SRhyland Klein  * PLL with dynamic ramp and fractional SDM. Dynamic ramp is not used.
7636b301a05SRhyland Klein  * Fractional SDM is allowed to provide exact audio rates.
7646b301a05SRhyland Klein  */
765fd360e20SJon Hunter static void tegra210_plla_set_defaults(struct tegra_clk_pll *plla)
7666b301a05SRhyland Klein {
7676b301a05SRhyland Klein 	u32 mask;
7686b301a05SRhyland Klein 	u32 val = readl_relaxed(clk_base + plla->params->base_reg);
7696b301a05SRhyland Klein 
7706b301a05SRhyland Klein 	plla->params->defaults_set = true;
7716b301a05SRhyland Klein 
7726b301a05SRhyland Klein 	if (val & PLL_ENABLE) {
7736b301a05SRhyland Klein 		/*
7746b301a05SRhyland Klein 		 * PLL is ON: check if defaults already set, then set those
7756b301a05SRhyland Klein 		 * that can be updated in flight.
7766b301a05SRhyland Klein 		 */
7776b301a05SRhyland Klein 		if (val & PLLA_BASE_IDDQ) {
7786b301a05SRhyland Klein 			pr_warn("PLL_A boot enabled with IDDQ set\n");
7796b301a05SRhyland Klein 			plla->params->defaults_set = false;
7806b301a05SRhyland Klein 		}
7816b301a05SRhyland Klein 
7826b301a05SRhyland Klein 		pr_warn("PLL_A already enabled. Postponing set full defaults\n");
7836b301a05SRhyland Klein 
7846b301a05SRhyland Klein 		val = PLLA_MISC0_DEFAULT_VALUE;	/* ignore lock enable */
7856b301a05SRhyland Klein 		mask = PLLA_MISC0_LOCK_ENABLE | PLLA_MISC0_LOCK_OVERRIDE;
7866b301a05SRhyland Klein 		_pll_misc_chk_default(clk_base, plla->params, 0, val,
7876b301a05SRhyland Klein 				~mask & PLLA_MISC0_WRITE_MASK);
7886b301a05SRhyland Klein 
7896b301a05SRhyland Klein 		val = PLLA_MISC2_DEFAULT_VALUE; /* ignore all but control bit */
7906b301a05SRhyland Klein 		_pll_misc_chk_default(clk_base, plla->params, 2, val,
7916b301a05SRhyland Klein 				PLLA_MISC2_EN_DYNRAMP);
7926b301a05SRhyland Klein 
7936b301a05SRhyland Klein 		/* Enable lock detect */
7946b301a05SRhyland Klein 		val = readl_relaxed(clk_base + plla->params->ext_misc_reg[0]);
7956b301a05SRhyland Klein 		val &= ~mask;
7966b301a05SRhyland Klein 		val |= PLLA_MISC0_DEFAULT_VALUE & mask;
7976b301a05SRhyland Klein 		writel_relaxed(val, clk_base + plla->params->ext_misc_reg[0]);
7986b301a05SRhyland Klein 		udelay(1);
7996b301a05SRhyland Klein 
8006b301a05SRhyland Klein 		return;
8016b301a05SRhyland Klein 	}
8026b301a05SRhyland Klein 
8036b301a05SRhyland Klein 	/* set IDDQ, enable lock detect, disable dynamic ramp and SDM */
8046b301a05SRhyland Klein 	val |= PLLA_BASE_IDDQ;
8056b301a05SRhyland Klein 	writel_relaxed(val, clk_base + plla->params->base_reg);
8066b301a05SRhyland Klein 	writel_relaxed(PLLA_MISC0_DEFAULT_VALUE,
8076b301a05SRhyland Klein 			clk_base + plla->params->ext_misc_reg[0]);
8086b301a05SRhyland Klein 	writel_relaxed(PLLA_MISC2_DEFAULT_VALUE,
8096b301a05SRhyland Klein 			clk_base + plla->params->ext_misc_reg[2]);
8106b301a05SRhyland Klein 	udelay(1);
8116b301a05SRhyland Klein }
8126b301a05SRhyland Klein 
8136b301a05SRhyland Klein /*
8146b301a05SRhyland Klein  * PLLD
8156b301a05SRhyland Klein  * PLL with fractional SDM.
8166b301a05SRhyland Klein  */
817fd360e20SJon Hunter static void tegra210_plld_set_defaults(struct tegra_clk_pll *plld)
8186b301a05SRhyland Klein {
8196b301a05SRhyland Klein 	u32 val;
8206b301a05SRhyland Klein 	u32 mask = 0xffff;
8216b301a05SRhyland Klein 
8226b301a05SRhyland Klein 	plld->params->defaults_set = true;
8236b301a05SRhyland Klein 
8246b301a05SRhyland Klein 	if (readl_relaxed(clk_base + plld->params->base_reg) &
8256b301a05SRhyland Klein 			PLL_ENABLE) {
8266b301a05SRhyland Klein 
8276b301a05SRhyland Klein 		/*
8286b301a05SRhyland Klein 		 * PLL is ON: check if defaults already set, then set those
8296b301a05SRhyland Klein 		 * that can be updated in flight.
8306b301a05SRhyland Klein 		 */
8316b301a05SRhyland Klein 		val = PLLD_MISC1_DEFAULT_VALUE;
8326b301a05SRhyland Klein 		_pll_misc_chk_default(clk_base, plld->params, 1,
8336b301a05SRhyland Klein 				val, PLLD_MISC1_WRITE_MASK);
8346b301a05SRhyland Klein 
8356b301a05SRhyland Klein 		/* ignore lock, DSI and SDM controls, make sure IDDQ not set */
8366b301a05SRhyland Klein 		val = PLLD_MISC0_DEFAULT_VALUE & (~PLLD_MISC0_IDDQ);
8376b301a05SRhyland Klein 		mask |= PLLD_MISC0_DSI_CLKENABLE | PLLD_MISC0_LOCK_ENABLE |
8386b301a05SRhyland Klein 			PLLD_MISC0_LOCK_OVERRIDE | PLLD_MISC0_EN_SDM;
8396b301a05SRhyland Klein 		_pll_misc_chk_default(clk_base, plld->params, 0, val,
8406b301a05SRhyland Klein 				~mask & PLLD_MISC0_WRITE_MASK);
8416b301a05SRhyland Klein 
8428dce89a1SPeter De Schrijver 		if (!plld->params->defaults_set)
8438dce89a1SPeter De Schrijver 			pr_warn("PLL_D already enabled. Postponing set full defaults\n");
8448dce89a1SPeter De Schrijver 
8456b301a05SRhyland Klein 		/* Enable lock detect */
8466b301a05SRhyland Klein 		mask = PLLD_MISC0_LOCK_ENABLE | PLLD_MISC0_LOCK_OVERRIDE;
8476b301a05SRhyland Klein 		val = readl_relaxed(clk_base + plld->params->ext_misc_reg[0]);
8486b301a05SRhyland Klein 		val &= ~mask;
8496b301a05SRhyland Klein 		val |= PLLD_MISC0_DEFAULT_VALUE & mask;
8506b301a05SRhyland Klein 		writel_relaxed(val, clk_base + plld->params->ext_misc_reg[0]);
8516b301a05SRhyland Klein 		udelay(1);
8526b301a05SRhyland Klein 
8536b301a05SRhyland Klein 		return;
8546b301a05SRhyland Klein 	}
8556b301a05SRhyland Klein 
8566b301a05SRhyland Klein 	val = readl_relaxed(clk_base + plld->params->ext_misc_reg[0]);
8576b301a05SRhyland Klein 	val &= PLLD_MISC0_DSI_CLKENABLE;
8586b301a05SRhyland Klein 	val |= PLLD_MISC0_DEFAULT_VALUE;
8596b301a05SRhyland Klein 	/* set IDDQ, enable lock detect, disable SDM */
8606b301a05SRhyland Klein 	writel_relaxed(val, clk_base + plld->params->ext_misc_reg[0]);
8616b301a05SRhyland Klein 	writel_relaxed(PLLD_MISC1_DEFAULT_VALUE, clk_base +
8626b301a05SRhyland Klein 			plld->params->ext_misc_reg[1]);
8636b301a05SRhyland Klein 	udelay(1);
8646b301a05SRhyland Klein }
8656b301a05SRhyland Klein 
8666b301a05SRhyland Klein /*
8676b301a05SRhyland Klein  * PLLD2, PLLDP
8686b301a05SRhyland Klein  * PLL with fractional SDM and Spread Spectrum (SDM is a must if SSC is used).
8696b301a05SRhyland Klein  */
8706b301a05SRhyland Klein static void plldss_defaults(const char *pll_name, struct tegra_clk_pll *plldss,
8716b301a05SRhyland Klein 		u32 misc0_val, u32 misc1_val, u32 misc2_val, u32 misc3_val)
8726b301a05SRhyland Klein {
8736b301a05SRhyland Klein 	u32 default_val;
8746b301a05SRhyland Klein 	u32 val = readl_relaxed(clk_base + plldss->params->base_reg);
8756b301a05SRhyland Klein 
8766b301a05SRhyland Klein 	plldss->params->defaults_set = true;
8776b301a05SRhyland Klein 
8786b301a05SRhyland Klein 	if (val & PLL_ENABLE) {
8796b301a05SRhyland Klein 
8806b301a05SRhyland Klein 		/*
8816b301a05SRhyland Klein 		 * PLL is ON: check if defaults already set, then set those
8826b301a05SRhyland Klein 		 * that can be updated in flight.
8836b301a05SRhyland Klein 		 */
8846b301a05SRhyland Klein 		if (val & PLLDSS_BASE_IDDQ) {
8856b301a05SRhyland Klein 			pr_warn("plldss boot enabled with IDDQ set\n");
8866b301a05SRhyland Klein 			plldss->params->defaults_set = false;
8876b301a05SRhyland Klein 		}
8886b301a05SRhyland Klein 
8896b301a05SRhyland Klein 		/* ignore lock enable */
8906b301a05SRhyland Klein 		default_val = misc0_val;
8916b301a05SRhyland Klein 		_pll_misc_chk_default(clk_base, plldss->params, 0, default_val,
8926b301a05SRhyland Klein 				     PLLDSS_MISC0_WRITE_MASK &
8936b301a05SRhyland Klein 				     (~PLLDSS_MISC0_LOCK_ENABLE));
8946b301a05SRhyland Klein 
8956b301a05SRhyland Klein 		/*
8966b301a05SRhyland Klein 		 * If SSC is used, check all settings, otherwise just confirm
8976b301a05SRhyland Klein 		 * that SSC is not used on boot as well. Do nothing when using
8986b301a05SRhyland Klein 		 * this function for PLLC4 that has only MISC0.
8996b301a05SRhyland Klein 		 */
9006b301a05SRhyland Klein 		if (plldss->params->ssc_ctrl_en_mask) {
9016b301a05SRhyland Klein 			default_val = misc1_val;
9026b301a05SRhyland Klein 			_pll_misc_chk_default(clk_base, plldss->params, 1,
9036b301a05SRhyland Klein 				default_val, PLLDSS_MISC1_CFG_WRITE_MASK);
9046b301a05SRhyland Klein 			default_val = misc2_val;
9056b301a05SRhyland Klein 			_pll_misc_chk_default(clk_base, plldss->params, 2,
9066b301a05SRhyland Klein 				default_val, PLLDSS_MISC2_CTRL1_WRITE_MASK);
9076b301a05SRhyland Klein 			default_val = misc3_val;
9086b301a05SRhyland Klein 			_pll_misc_chk_default(clk_base, plldss->params, 3,
9096b301a05SRhyland Klein 				default_val, PLLDSS_MISC3_CTRL2_WRITE_MASK);
9106b301a05SRhyland Klein 		} else if (plldss->params->ext_misc_reg[1]) {
9116b301a05SRhyland Klein 			default_val = misc1_val;
9126b301a05SRhyland Klein 			_pll_misc_chk_default(clk_base, plldss->params, 1,
9136b301a05SRhyland Klein 				default_val, PLLDSS_MISC1_CFG_WRITE_MASK &
9146b301a05SRhyland Klein 				(~PLLDSS_MISC1_CFG_EN_SDM));
9156b301a05SRhyland Klein 		}
9166b301a05SRhyland Klein 
9171934ffd0SPeter De Schrijver 		if (!plldss->params->defaults_set)
9181934ffd0SPeter De Schrijver 			pr_warn("%s already enabled. Postponing set full defaults\n",
9191934ffd0SPeter De Schrijver 				 pll_name);
9201934ffd0SPeter De Schrijver 
9216b301a05SRhyland Klein 		/* Enable lock detect */
9226b301a05SRhyland Klein 		if (val & PLLDSS_BASE_LOCK_OVERRIDE) {
9236b301a05SRhyland Klein 			val &= ~PLLDSS_BASE_LOCK_OVERRIDE;
9246b301a05SRhyland Klein 			writel_relaxed(val, clk_base +
9256b301a05SRhyland Klein 					plldss->params->base_reg);
9266b301a05SRhyland Klein 		}
9276b301a05SRhyland Klein 
9286b301a05SRhyland Klein 		val = readl_relaxed(clk_base + plldss->params->ext_misc_reg[0]);
9296b301a05SRhyland Klein 		val &= ~PLLDSS_MISC0_LOCK_ENABLE;
9306b301a05SRhyland Klein 		val |= misc0_val & PLLDSS_MISC0_LOCK_ENABLE;
9316b301a05SRhyland Klein 		writel_relaxed(val, clk_base + plldss->params->ext_misc_reg[0]);
9326b301a05SRhyland Klein 		udelay(1);
9336b301a05SRhyland Klein 
9346b301a05SRhyland Klein 		return;
9356b301a05SRhyland Klein 	}
9366b301a05SRhyland Klein 
9376b301a05SRhyland Klein 	/* set IDDQ, enable lock detect, configure SDM/SSC  */
9386b301a05SRhyland Klein 	val |= PLLDSS_BASE_IDDQ;
9396b301a05SRhyland Klein 	val &= ~PLLDSS_BASE_LOCK_OVERRIDE;
9406b301a05SRhyland Klein 	writel_relaxed(val, clk_base + plldss->params->base_reg);
9416b301a05SRhyland Klein 
9426b301a05SRhyland Klein 	/* When using this function for PLLC4 exit here */
9436b301a05SRhyland Klein 	if (!plldss->params->ext_misc_reg[1]) {
9446b301a05SRhyland Klein 		writel_relaxed(misc0_val, clk_base +
9456b301a05SRhyland Klein 				plldss->params->ext_misc_reg[0]);
9466b301a05SRhyland Klein 		udelay(1);
9476b301a05SRhyland Klein 		return;
9486b301a05SRhyland Klein 	}
9496b301a05SRhyland Klein 
9506b301a05SRhyland Klein 	writel_relaxed(misc0_val, clk_base +
9516b301a05SRhyland Klein 			plldss->params->ext_misc_reg[0]);
9526b301a05SRhyland Klein 	/* if SSC used set by 1st enable */
9536b301a05SRhyland Klein 	writel_relaxed(misc1_val & (~PLLDSS_MISC1_CFG_EN_SSC),
9546b301a05SRhyland Klein 			clk_base + plldss->params->ext_misc_reg[1]);
9556b301a05SRhyland Klein 	writel_relaxed(misc2_val, clk_base + plldss->params->ext_misc_reg[2]);
9566b301a05SRhyland Klein 	writel_relaxed(misc3_val, clk_base + plldss->params->ext_misc_reg[3]);
9576b301a05SRhyland Klein 	udelay(1);
9586b301a05SRhyland Klein }
9596b301a05SRhyland Klein 
960fd360e20SJon Hunter static void tegra210_plld2_set_defaults(struct tegra_clk_pll *plld2)
9616b301a05SRhyland Klein {
9626b301a05SRhyland Klein 	plldss_defaults("PLL_D2", plld2, PLLD2_MISC0_DEFAULT_VALUE,
9636b301a05SRhyland Klein 			PLLD2_MISC1_CFG_DEFAULT_VALUE,
9646b301a05SRhyland Klein 			PLLD2_MISC2_CTRL1_DEFAULT_VALUE,
9656b301a05SRhyland Klein 			PLLD2_MISC3_CTRL2_DEFAULT_VALUE);
9666b301a05SRhyland Klein }
9676b301a05SRhyland Klein 
968fd360e20SJon Hunter static void tegra210_plldp_set_defaults(struct tegra_clk_pll *plldp)
9696b301a05SRhyland Klein {
9706b301a05SRhyland Klein 	plldss_defaults("PLL_DP", plldp, PLLDP_MISC0_DEFAULT_VALUE,
9716b301a05SRhyland Klein 			PLLDP_MISC1_CFG_DEFAULT_VALUE,
9726b301a05SRhyland Klein 			PLLDP_MISC2_CTRL1_DEFAULT_VALUE,
9736b301a05SRhyland Klein 			PLLDP_MISC3_CTRL2_DEFAULT_VALUE);
9746b301a05SRhyland Klein }
9756b301a05SRhyland Klein 
9766b301a05SRhyland Klein /*
9776b301a05SRhyland Klein  * PLLC4
9786b301a05SRhyland Klein  * Base and misc0 layout is the same as PLLD2/PLLDP, but no SDM/SSC support.
9796b301a05SRhyland Klein  * VCO is exposed to the clock tree via fixed 1/3 and 1/5 dividers.
9806b301a05SRhyland Klein  */
981fd360e20SJon Hunter static void tegra210_pllc4_set_defaults(struct tegra_clk_pll *pllc4)
9826b301a05SRhyland Klein {
9836b301a05SRhyland Klein 	plldss_defaults("PLL_C4", pllc4, PLLC4_MISC0_DEFAULT_VALUE, 0, 0, 0);
9846b301a05SRhyland Klein }
9856b301a05SRhyland Klein 
9866b301a05SRhyland Klein /*
9876b301a05SRhyland Klein  * PLLRE
9886b301a05SRhyland Klein  * VCO is exposed to the clock tree directly along with post-divider output
9896b301a05SRhyland Klein  */
990fd360e20SJon Hunter static void tegra210_pllre_set_defaults(struct tegra_clk_pll *pllre)
9916b301a05SRhyland Klein {
9926b301a05SRhyland Klein 	u32 mask;
9936b301a05SRhyland Klein 	u32 val = readl_relaxed(clk_base + pllre->params->base_reg);
9946b301a05SRhyland Klein 
9956b301a05SRhyland Klein 	pllre->params->defaults_set = true;
9966b301a05SRhyland Klein 
9976b301a05SRhyland Klein 	if (val & PLL_ENABLE) {
9986b301a05SRhyland Klein 		pr_warn("PLL_RE already enabled. Postponing set full defaults\n");
9996b301a05SRhyland Klein 
10006b301a05SRhyland Klein 		/*
10016b301a05SRhyland Klein 		 * PLL is ON: check if defaults already set, then set those
10026b301a05SRhyland Klein 		 * that can be updated in flight.
10036b301a05SRhyland Klein 		 */
10046b301a05SRhyland Klein 		val &= PLLRE_BASE_DEFAULT_MASK;
10056b301a05SRhyland Klein 		if (val != PLLRE_BASE_DEFAULT_VALUE) {
10066b301a05SRhyland Klein 			pr_warn("pllre boot base 0x%x : expected 0x%x\n",
10076b301a05SRhyland Klein 				val, PLLRE_BASE_DEFAULT_VALUE);
10086b301a05SRhyland Klein 			pr_warn("(comparison mask = 0x%x)\n",
10096b301a05SRhyland Klein 				PLLRE_BASE_DEFAULT_MASK);
10106b301a05SRhyland Klein 			pllre->params->defaults_set = false;
10116b301a05SRhyland Klein 		}
10126b301a05SRhyland Klein 
10136b301a05SRhyland Klein 		/* Ignore lock enable */
10146b301a05SRhyland Klein 		val = PLLRE_MISC0_DEFAULT_VALUE & (~PLLRE_MISC0_IDDQ);
10156b301a05SRhyland Klein 		mask = PLLRE_MISC0_LOCK_ENABLE | PLLRE_MISC0_LOCK_OVERRIDE;
10166b301a05SRhyland Klein 		_pll_misc_chk_default(clk_base, pllre->params, 0, val,
10176b301a05SRhyland Klein 				~mask & PLLRE_MISC0_WRITE_MASK);
10186b301a05SRhyland Klein 
10196b301a05SRhyland Klein 		/* Enable lock detect */
10206b301a05SRhyland Klein 		val = readl_relaxed(clk_base + pllre->params->ext_misc_reg[0]);
10216b301a05SRhyland Klein 		val &= ~mask;
10226b301a05SRhyland Klein 		val |= PLLRE_MISC0_DEFAULT_VALUE & mask;
10236b301a05SRhyland Klein 		writel_relaxed(val, clk_base + pllre->params->ext_misc_reg[0]);
10246b301a05SRhyland Klein 		udelay(1);
10256b301a05SRhyland Klein 
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[] = {
2218e745f992SPeter De Schrijver 	{ 12000000, 480000000, 40, 1, 0, 0 },
2219e745f992SPeter De Schrijver 	{ 13000000, 480000000, 36, 1, 0, 0 }, /* actual: 468.0 MHz */
2220e745f992SPeter De Schrijver 	{ 38400000, 480000000, 25, 2, 0, 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 },
23606b301a05SRhyland Klein 	[tegra_clk_sor0_lvds] = { .dt_id = TEGRA210_CLK_SOR0_LVDS, .present = true },
2361e452b818SThierry Reding 	[tegra_clk_sor1] = { .dt_id = TEGRA210_CLK_SOR1, .present = true },
2362e452b818SThierry Reding 	[tegra_clk_sor1_src] = { .dt_id = TEGRA210_CLK_SOR1_SRC, .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 },
23766b301a05SRhyland Klein 	[tegra_clk_pll_ref] = { .dt_id = TEGRA210_CLK_PLL_REF, .present = true },
23776b301a05SRhyland Klein 	[tegra_clk_pll_c] = { .dt_id = TEGRA210_CLK_PLL_C, .present = true },
23786b301a05SRhyland Klein 	[tegra_clk_pll_c_out1] = { .dt_id = TEGRA210_CLK_PLL_C_OUT1, .present = true },
23796b301a05SRhyland Klein 	[tegra_clk_pll_c2] = { .dt_id = TEGRA210_CLK_PLL_C2, .present = true },
23806b301a05SRhyland Klein 	[tegra_clk_pll_c3] = { .dt_id = TEGRA210_CLK_PLL_C3, .present = true },
23816b301a05SRhyland Klein 	[tegra_clk_pll_m] = { .dt_id = TEGRA210_CLK_PLL_M, .present = true },
23826b301a05SRhyland Klein 	[tegra_clk_pll_p] = { .dt_id = TEGRA210_CLK_PLL_P, .present = true },
23836b301a05SRhyland Klein 	[tegra_clk_pll_p_out1] = { .dt_id = TEGRA210_CLK_PLL_P_OUT1, .present = true },
23846b301a05SRhyland Klein 	[tegra_clk_pll_p_out3] = { .dt_id = TEGRA210_CLK_PLL_P_OUT3, .present = true },
23856b301a05SRhyland Klein 	[tegra_clk_pll_p_out4_cpu] = { .dt_id = TEGRA210_CLK_PLL_P_OUT4, .present = true },
23866b301a05SRhyland Klein 	[tegra_clk_pll_p_out_hsio] = { .dt_id = TEGRA210_CLK_PLL_P_OUT_HSIO, .present = true },
23876b301a05SRhyland Klein 	[tegra_clk_pll_p_out_xusb] = { .dt_id = TEGRA210_CLK_PLL_P_OUT_XUSB, .present = true },
23886b301a05SRhyland Klein 	[tegra_clk_pll_p_out_cpu] = { .dt_id = TEGRA210_CLK_PLL_P_OUT_CPU, .present = true },
23896b301a05SRhyland Klein 	[tegra_clk_pll_p_out_adsp] = { .dt_id = TEGRA210_CLK_PLL_P_OUT_ADSP, .present = true },
23906b301a05SRhyland Klein 	[tegra_clk_pll_a] = { .dt_id = TEGRA210_CLK_PLL_A, .present = true },
23916b301a05SRhyland Klein 	[tegra_clk_pll_a_out0] = { .dt_id = TEGRA210_CLK_PLL_A_OUT0, .present = true },
23926b301a05SRhyland Klein 	[tegra_clk_pll_d] = { .dt_id = TEGRA210_CLK_PLL_D, .present = true },
23936b301a05SRhyland Klein 	[tegra_clk_pll_d_out0] = { .dt_id = TEGRA210_CLK_PLL_D_OUT0, .present = true },
23946b301a05SRhyland Klein 	[tegra_clk_pll_d2] = { .dt_id = TEGRA210_CLK_PLL_D2, .present = true },
23956b301a05SRhyland Klein 	[tegra_clk_pll_d2_out0] = { .dt_id = TEGRA210_CLK_PLL_D2_OUT0, .present = true },
23966b301a05SRhyland Klein 	[tegra_clk_pll_u] = { .dt_id = TEGRA210_CLK_PLL_U, .present = true },
23976b301a05SRhyland Klein 	[tegra_clk_pll_u_out] = { .dt_id = TEGRA210_CLK_PLL_U_OUT, .present = true },
23986b301a05SRhyland Klein 	[tegra_clk_pll_u_out1] = { .dt_id = TEGRA210_CLK_PLL_U_OUT1, .present = true },
23996b301a05SRhyland Klein 	[tegra_clk_pll_u_out2] = { .dt_id = TEGRA210_CLK_PLL_U_OUT2, .present = true },
24006b301a05SRhyland Klein 	[tegra_clk_pll_u_480m] = { .dt_id = TEGRA210_CLK_PLL_U_480M, .present = true },
24016b301a05SRhyland Klein 	[tegra_clk_pll_u_60m] = { .dt_id = TEGRA210_CLK_PLL_U_60M, .present = true },
24026b301a05SRhyland Klein 	[tegra_clk_pll_u_48m] = { .dt_id = TEGRA210_CLK_PLL_U_48M, .present = true },
24036b301a05SRhyland Klein 	[tegra_clk_pll_x] = { .dt_id = TEGRA210_CLK_PLL_X, .present = true },
24046b301a05SRhyland Klein 	[tegra_clk_pll_x_out0] = { .dt_id = TEGRA210_CLK_PLL_X_OUT0, .present = true },
24056b301a05SRhyland Klein 	[tegra_clk_pll_re_vco] = { .dt_id = TEGRA210_CLK_PLL_RE_VCO, .present = true },
24066b301a05SRhyland Klein 	[tegra_clk_pll_re_out] = { .dt_id = TEGRA210_CLK_PLL_RE_OUT, .present = true },
24076b301a05SRhyland Klein 	[tegra_clk_spdif_in_sync] = { .dt_id = TEGRA210_CLK_SPDIF_IN_SYNC, .present = true },
24086b301a05SRhyland Klein 	[tegra_clk_i2s0_sync] = { .dt_id = TEGRA210_CLK_I2S0_SYNC, .present = true },
24096b301a05SRhyland Klein 	[tegra_clk_i2s1_sync] = { .dt_id = TEGRA210_CLK_I2S1_SYNC, .present = true },
24106b301a05SRhyland Klein 	[tegra_clk_i2s2_sync] = { .dt_id = TEGRA210_CLK_I2S2_SYNC, .present = true },
24116b301a05SRhyland Klein 	[tegra_clk_i2s3_sync] = { .dt_id = TEGRA210_CLK_I2S3_SYNC, .present = true },
24126b301a05SRhyland Klein 	[tegra_clk_i2s4_sync] = { .dt_id = TEGRA210_CLK_I2S4_SYNC, .present = true },
24136b301a05SRhyland Klein 	[tegra_clk_vimclk_sync] = { .dt_id = TEGRA210_CLK_VIMCLK_SYNC, .present = true },
24146b301a05SRhyland Klein 	[tegra_clk_audio0] = { .dt_id = TEGRA210_CLK_AUDIO0, .present = true },
24156b301a05SRhyland Klein 	[tegra_clk_audio1] = { .dt_id = TEGRA210_CLK_AUDIO1, .present = true },
24166b301a05SRhyland Klein 	[tegra_clk_audio2] = { .dt_id = TEGRA210_CLK_AUDIO2, .present = true },
24176b301a05SRhyland Klein 	[tegra_clk_audio3] = { .dt_id = TEGRA210_CLK_AUDIO3, .present = true },
24186b301a05SRhyland Klein 	[tegra_clk_audio4] = { .dt_id = TEGRA210_CLK_AUDIO4, .present = true },
24196b301a05SRhyland Klein 	[tegra_clk_spdif] = { .dt_id = TEGRA210_CLK_SPDIF, .present = true },
24206b301a05SRhyland Klein 	[tegra_clk_clk_out_1] = { .dt_id = TEGRA210_CLK_CLK_OUT_1, .present = true },
24216b301a05SRhyland Klein 	[tegra_clk_clk_out_2] = { .dt_id = TEGRA210_CLK_CLK_OUT_2, .present = true },
24226b301a05SRhyland Klein 	[tegra_clk_clk_out_3] = { .dt_id = TEGRA210_CLK_CLK_OUT_3, .present = true },
24236b301a05SRhyland Klein 	[tegra_clk_blink] = { .dt_id = TEGRA210_CLK_BLINK, .present = true },
24246b301a05SRhyland Klein 	[tegra_clk_xusb_gate] = { .dt_id = TEGRA210_CLK_XUSB_GATE, .present = true },
24256b301a05SRhyland Klein 	[tegra_clk_xusb_host_src_8] = { .dt_id = TEGRA210_CLK_XUSB_HOST_SRC, .present = true },
24266b301a05SRhyland Klein 	[tegra_clk_xusb_falcon_src_8] = { .dt_id = TEGRA210_CLK_XUSB_FALCON_SRC, .present = true },
24276b301a05SRhyland Klein 	[tegra_clk_xusb_fs_src] = { .dt_id = TEGRA210_CLK_XUSB_FS_SRC, .present = true },
24286b301a05SRhyland Klein 	[tegra_clk_xusb_ss_src_8] = { .dt_id = TEGRA210_CLK_XUSB_SS_SRC, .present = true },
24296b301a05SRhyland Klein 	[tegra_clk_xusb_ss_div2] = { .dt_id = TEGRA210_CLK_XUSB_SS_DIV2, .present = true },
24306b301a05SRhyland Klein 	[tegra_clk_xusb_dev_src_8] = { .dt_id = TEGRA210_CLK_XUSB_DEV_SRC, .present = true },
24316b301a05SRhyland Klein 	[tegra_clk_xusb_dev] = { .dt_id = TEGRA210_CLK_XUSB_DEV, .present = true },
24326b301a05SRhyland Klein 	[tegra_clk_xusb_hs_src_4] = { .dt_id = TEGRA210_CLK_XUSB_HS_SRC, .present = true },
24336b301a05SRhyland Klein 	[tegra_clk_xusb_ssp_src] = { .dt_id = TEGRA210_CLK_XUSB_SSP_SRC, .present = true },
24346b301a05SRhyland Klein 	[tegra_clk_usb2_hsic_trk] = { .dt_id = TEGRA210_CLK_USB2_HSIC_TRK, .present = true },
24356b301a05SRhyland Klein 	[tegra_clk_hsic_trk] = { .dt_id = TEGRA210_CLK_HSIC_TRK, .present = true },
24366b301a05SRhyland Klein 	[tegra_clk_usb2_trk] = { .dt_id = TEGRA210_CLK_USB2_TRK, .present = true },
24376b301a05SRhyland Klein 	[tegra_clk_sclk] = { .dt_id = TEGRA210_CLK_SCLK, .present = true },
24386b301a05SRhyland Klein 	[tegra_clk_sclk_mux] = { .dt_id = TEGRA210_CLK_SCLK_MUX, .present = true },
24396b301a05SRhyland Klein 	[tegra_clk_hclk] = { .dt_id = TEGRA210_CLK_HCLK, .present = true },
24406b301a05SRhyland Klein 	[tegra_clk_pclk] = { .dt_id = TEGRA210_CLK_PCLK, .present = true },
24416b301a05SRhyland Klein 	[tegra_clk_cclk_g] = { .dt_id = TEGRA210_CLK_CCLK_G, .present = true },
24426b301a05SRhyland Klein 	[tegra_clk_cclk_lp] = { .dt_id = TEGRA210_CLK_CCLK_LP, .present = true },
24436b301a05SRhyland Klein 	[tegra_clk_dfll_ref] = { .dt_id = TEGRA210_CLK_DFLL_REF, .present = true },
24446b301a05SRhyland Klein 	[tegra_clk_dfll_soc] = { .dt_id = TEGRA210_CLK_DFLL_SOC, .present = true },
24456b301a05SRhyland Klein 	[tegra_clk_vi_sensor2_8] = { .dt_id = TEGRA210_CLK_VI_SENSOR2, .present = true },
24466b301a05SRhyland Klein 	[tegra_clk_pll_p_out5] = { .dt_id = TEGRA210_CLK_PLL_P_OUT5, .present = true },
24476b301a05SRhyland Klein 	[tegra_clk_pll_c4] = { .dt_id = TEGRA210_CLK_PLL_C4, .present = true },
24486b301a05SRhyland Klein 	[tegra_clk_pll_dp] = { .dt_id = TEGRA210_CLK_PLL_DP, .present = true },
24496b301a05SRhyland Klein 	[tegra_clk_audio0_mux] = { .dt_id = TEGRA210_CLK_AUDIO0_MUX, .present = true },
24506b301a05SRhyland Klein 	[tegra_clk_audio1_mux] = { .dt_id = TEGRA210_CLK_AUDIO1_MUX, .present = true },
24516b301a05SRhyland Klein 	[tegra_clk_audio2_mux] = { .dt_id = TEGRA210_CLK_AUDIO2_MUX, .present = true },
24526b301a05SRhyland Klein 	[tegra_clk_audio3_mux] = { .dt_id = TEGRA210_CLK_AUDIO3_MUX, .present = true },
24536b301a05SRhyland Klein 	[tegra_clk_audio4_mux] = { .dt_id = TEGRA210_CLK_AUDIO4_MUX, .present = true },
24546b301a05SRhyland Klein 	[tegra_clk_spdif_mux] = { .dt_id = TEGRA210_CLK_SPDIF_MUX, .present = true },
24556b301a05SRhyland Klein 	[tegra_clk_clk_out_1_mux] = { .dt_id = TEGRA210_CLK_CLK_OUT_1_MUX, .present = true },
24566b301a05SRhyland Klein 	[tegra_clk_clk_out_2_mux] = { .dt_id = TEGRA210_CLK_CLK_OUT_2_MUX, .present = true },
24576b301a05SRhyland Klein 	[tegra_clk_clk_out_3_mux] = { .dt_id = TEGRA210_CLK_CLK_OUT_3_MUX, .present = true },
24586b301a05SRhyland Klein 	[tegra_clk_maud] = { .dt_id = TEGRA210_CLK_MAUD, .present = true },
24596b301a05SRhyland Klein 	[tegra_clk_mipibif] = { .dt_id = TEGRA210_CLK_MIPIBIF, .present = true },
24606b301a05SRhyland Klein 	[tegra_clk_qspi] = { .dt_id = TEGRA210_CLK_QSPI, .present = true },
24616b301a05SRhyland Klein 	[tegra_clk_sdmmc_legacy] = { .dt_id = TEGRA210_CLK_SDMMC_LEGACY, .present = true },
24626b301a05SRhyland Klein 	[tegra_clk_tsecb] = { .dt_id = TEGRA210_CLK_TSECB, .present = true },
24636b301a05SRhyland Klein 	[tegra_clk_uartape] = { .dt_id = TEGRA210_CLK_UARTAPE, .present = true },
24646b301a05SRhyland Klein 	[tegra_clk_vi_i2c] = { .dt_id = TEGRA210_CLK_VI_I2C, .present = true },
24656b301a05SRhyland Klein 	[tegra_clk_ape] = { .dt_id = TEGRA210_CLK_APE, .present = true },
24666b301a05SRhyland Klein 	[tegra_clk_dbgapb] = { .dt_id = TEGRA210_CLK_DBGAPB, .present = true },
24676b301a05SRhyland Klein 	[tegra_clk_nvdec] = { .dt_id = TEGRA210_CLK_NVDEC, .present = true },
24686b301a05SRhyland Klein 	[tegra_clk_nvenc] = { .dt_id = TEGRA210_CLK_NVENC, .present = true },
24696b301a05SRhyland Klein 	[tegra_clk_nvjpg] = { .dt_id = TEGRA210_CLK_NVJPG, .present = true },
24706b301a05SRhyland Klein 	[tegra_clk_pll_c4_out0] = { .dt_id = TEGRA210_CLK_PLL_C4_OUT0, .present = true },
24716b301a05SRhyland Klein 	[tegra_clk_pll_c4_out1] = { .dt_id = TEGRA210_CLK_PLL_C4_OUT1, .present = true },
24726b301a05SRhyland Klein 	[tegra_clk_pll_c4_out2] = { .dt_id = TEGRA210_CLK_PLL_C4_OUT2, .present = true },
24736b301a05SRhyland Klein 	[tegra_clk_pll_c4_out3] = { .dt_id = TEGRA210_CLK_PLL_C4_OUT3, .present = true },
247429569941SJon Hunter 	[tegra_clk_apb2ape] = { .dt_id = TEGRA210_CLK_APB2APE, .present = true },
24759326947fSPeter De Schrijver 	[tegra_clk_pll_a1] = { .dt_id = TEGRA210_CLK_PLL_A1, .present = true },
247634ac2c27SPeter De Schrijver 	[tegra_clk_ispa] = { .dt_id = TEGRA210_CLK_ISPA, .present = true },
2477bfa34832SPeter De Schrijver 	[tegra_clk_cec] = { .dt_id = TEGRA210_CLK_CEC, .present = true },
24786cfc8bc9SPeter De Schrijver 	[tegra_clk_dmic1] = { .dt_id = TEGRA210_CLK_DMIC1, .present = true },
24796cfc8bc9SPeter De Schrijver 	[tegra_clk_dmic2] = { .dt_id = TEGRA210_CLK_DMIC2, .present = true },
24806cfc8bc9SPeter De Schrijver 	[tegra_clk_dmic3] = { .dt_id = TEGRA210_CLK_DMIC3, .present = true },
2481319af797SPeter De Schrijver 	[tegra_clk_dmic1_sync_clk] = { .dt_id = TEGRA210_CLK_DMIC1_SYNC_CLK, .present = true },
2482319af797SPeter De Schrijver 	[tegra_clk_dmic2_sync_clk] = { .dt_id = TEGRA210_CLK_DMIC2_SYNC_CLK, .present = true },
2483319af797SPeter De Schrijver 	[tegra_clk_dmic3_sync_clk] = { .dt_id = TEGRA210_CLK_DMIC3_SYNC_CLK, .present = true },
2484319af797SPeter De Schrijver 	[tegra_clk_dmic1_sync_clk_mux] = { .dt_id = TEGRA210_CLK_DMIC1_SYNC_CLK_MUX, .present = true },
2485319af797SPeter De Schrijver 	[tegra_clk_dmic2_sync_clk_mux] = { .dt_id = TEGRA210_CLK_DMIC2_SYNC_CLK_MUX, .present = true },
2486319af797SPeter De Schrijver 	[tegra_clk_dmic3_sync_clk_mux] = { .dt_id = TEGRA210_CLK_DMIC3_SYNC_CLK_MUX, .present = true },
248788da44c5SPeter De Schrijver 	[tegra_clk_dp2] = { .dt_id = TEGRA210_CLK_DP2, .present = true },
248888da44c5SPeter De Schrijver 	[tegra_clk_iqc1] = { .dt_id = TEGRA210_CLK_IQC1, .present = true },
248988da44c5SPeter De Schrijver 	[tegra_clk_iqc2] = { .dt_id = TEGRA210_CLK_IQC2, .present = true },
249088da44c5SPeter De Schrijver 	[tegra_clk_pll_a_out_adsp] = { .dt_id = TEGRA210_CLK_PLL_A_OUT_ADSP, .present = true },
249188da44c5SPeter De Schrijver 	[tegra_clk_pll_a_out0_out_adsp] = { .dt_id = TEGRA210_CLK_PLL_A_OUT0_OUT_ADSP, .present = true },
249288da44c5SPeter De Schrijver 	[tegra_clk_adsp] = { .dt_id = TEGRA210_CLK_ADSP, .present = true },
249388da44c5SPeter De Schrijver 	[tegra_clk_adsp_neon] = { .dt_id = TEGRA210_CLK_ADSP_NEON, .present = true },
24946b301a05SRhyland Klein };
24956b301a05SRhyland Klein 
24966b301a05SRhyland Klein static struct tegra_devclk devclks[] __initdata = {
24976b301a05SRhyland Klein 	{ .con_id = "clk_m", .dt_id = TEGRA210_CLK_CLK_M },
24986b301a05SRhyland Klein 	{ .con_id = "pll_ref", .dt_id = TEGRA210_CLK_PLL_REF },
24996b301a05SRhyland Klein 	{ .con_id = "clk_32k", .dt_id = TEGRA210_CLK_CLK_32K },
25006b301a05SRhyland Klein 	{ .con_id = "clk_m_div2", .dt_id = TEGRA210_CLK_CLK_M_DIV2 },
25016b301a05SRhyland Klein 	{ .con_id = "clk_m_div4", .dt_id = TEGRA210_CLK_CLK_M_DIV4 },
25026b301a05SRhyland Klein 	{ .con_id = "pll_c", .dt_id = TEGRA210_CLK_PLL_C },
25036b301a05SRhyland Klein 	{ .con_id = "pll_c_out1", .dt_id = TEGRA210_CLK_PLL_C_OUT1 },
25046b301a05SRhyland Klein 	{ .con_id = "pll_c2", .dt_id = TEGRA210_CLK_PLL_C2 },
25056b301a05SRhyland Klein 	{ .con_id = "pll_c3", .dt_id = TEGRA210_CLK_PLL_C3 },
25066b301a05SRhyland Klein 	{ .con_id = "pll_p", .dt_id = TEGRA210_CLK_PLL_P },
25076b301a05SRhyland Klein 	{ .con_id = "pll_p_out1", .dt_id = TEGRA210_CLK_PLL_P_OUT1 },
25086b301a05SRhyland Klein 	{ .con_id = "pll_p_out2", .dt_id = TEGRA210_CLK_PLL_P_OUT2 },
25096b301a05SRhyland Klein 	{ .con_id = "pll_p_out3", .dt_id = TEGRA210_CLK_PLL_P_OUT3 },
25106b301a05SRhyland Klein 	{ .con_id = "pll_p_out4", .dt_id = TEGRA210_CLK_PLL_P_OUT4 },
25116b301a05SRhyland Klein 	{ .con_id = "pll_m", .dt_id = TEGRA210_CLK_PLL_M },
25126b301a05SRhyland Klein 	{ .con_id = "pll_x", .dt_id = TEGRA210_CLK_PLL_X },
25136b301a05SRhyland Klein 	{ .con_id = "pll_x_out0", .dt_id = TEGRA210_CLK_PLL_X_OUT0 },
25146b301a05SRhyland Klein 	{ .con_id = "pll_u", .dt_id = TEGRA210_CLK_PLL_U },
25156b301a05SRhyland Klein 	{ .con_id = "pll_u_out", .dt_id = TEGRA210_CLK_PLL_U_OUT },
25166b301a05SRhyland Klein 	{ .con_id = "pll_u_out1", .dt_id = TEGRA210_CLK_PLL_U_OUT1 },
25176b301a05SRhyland Klein 	{ .con_id = "pll_u_out2", .dt_id = TEGRA210_CLK_PLL_U_OUT2 },
25186b301a05SRhyland Klein 	{ .con_id = "pll_u_480M", .dt_id = TEGRA210_CLK_PLL_U_480M },
25196b301a05SRhyland Klein 	{ .con_id = "pll_u_60M", .dt_id = TEGRA210_CLK_PLL_U_60M },
25206b301a05SRhyland Klein 	{ .con_id = "pll_u_48M", .dt_id = TEGRA210_CLK_PLL_U_48M },
25216b301a05SRhyland Klein 	{ .con_id = "pll_d", .dt_id = TEGRA210_CLK_PLL_D },
25226b301a05SRhyland Klein 	{ .con_id = "pll_d_out0", .dt_id = TEGRA210_CLK_PLL_D_OUT0 },
25236b301a05SRhyland Klein 	{ .con_id = "pll_d2", .dt_id = TEGRA210_CLK_PLL_D2 },
25246b301a05SRhyland Klein 	{ .con_id = "pll_d2_out0", .dt_id = TEGRA210_CLK_PLL_D2_OUT0 },
25256b301a05SRhyland Klein 	{ .con_id = "pll_a", .dt_id = TEGRA210_CLK_PLL_A },
25266b301a05SRhyland Klein 	{ .con_id = "pll_a_out0", .dt_id = TEGRA210_CLK_PLL_A_OUT0 },
25276b301a05SRhyland Klein 	{ .con_id = "pll_re_vco", .dt_id = TEGRA210_CLK_PLL_RE_VCO },
25286b301a05SRhyland Klein 	{ .con_id = "pll_re_out", .dt_id = TEGRA210_CLK_PLL_RE_OUT },
25296b301a05SRhyland Klein 	{ .con_id = "spdif_in_sync", .dt_id = TEGRA210_CLK_SPDIF_IN_SYNC },
25306b301a05SRhyland Klein 	{ .con_id = "i2s0_sync", .dt_id = TEGRA210_CLK_I2S0_SYNC },
25316b301a05SRhyland Klein 	{ .con_id = "i2s1_sync", .dt_id = TEGRA210_CLK_I2S1_SYNC },
25326b301a05SRhyland Klein 	{ .con_id = "i2s2_sync", .dt_id = TEGRA210_CLK_I2S2_SYNC },
25336b301a05SRhyland Klein 	{ .con_id = "i2s3_sync", .dt_id = TEGRA210_CLK_I2S3_SYNC },
25346b301a05SRhyland Klein 	{ .con_id = "i2s4_sync", .dt_id = TEGRA210_CLK_I2S4_SYNC },
25356b301a05SRhyland Klein 	{ .con_id = "vimclk_sync", .dt_id = TEGRA210_CLK_VIMCLK_SYNC },
25366b301a05SRhyland Klein 	{ .con_id = "audio0", .dt_id = TEGRA210_CLK_AUDIO0 },
25376b301a05SRhyland Klein 	{ .con_id = "audio1", .dt_id = TEGRA210_CLK_AUDIO1 },
25386b301a05SRhyland Klein 	{ .con_id = "audio2", .dt_id = TEGRA210_CLK_AUDIO2 },
25396b301a05SRhyland Klein 	{ .con_id = "audio3", .dt_id = TEGRA210_CLK_AUDIO3 },
25406b301a05SRhyland Klein 	{ .con_id = "audio4", .dt_id = TEGRA210_CLK_AUDIO4 },
25416b301a05SRhyland Klein 	{ .con_id = "spdif", .dt_id = TEGRA210_CLK_SPDIF },
25426b301a05SRhyland Klein 	{ .con_id = "spdif_2x", .dt_id = TEGRA210_CLK_SPDIF_2X },
25436b301a05SRhyland Klein 	{ .con_id = "extern1", .dev_id = "clk_out_1", .dt_id = TEGRA210_CLK_EXTERN1 },
25446b301a05SRhyland Klein 	{ .con_id = "extern2", .dev_id = "clk_out_2", .dt_id = TEGRA210_CLK_EXTERN2 },
25456b301a05SRhyland Klein 	{ .con_id = "extern3", .dev_id = "clk_out_3", .dt_id = TEGRA210_CLK_EXTERN3 },
25466b301a05SRhyland Klein 	{ .con_id = "blink", .dt_id = TEGRA210_CLK_BLINK },
25476b301a05SRhyland Klein 	{ .con_id = "cclk_g", .dt_id = TEGRA210_CLK_CCLK_G },
25486b301a05SRhyland Klein 	{ .con_id = "cclk_lp", .dt_id = TEGRA210_CLK_CCLK_LP },
25496b301a05SRhyland Klein 	{ .con_id = "sclk", .dt_id = TEGRA210_CLK_SCLK },
25506b301a05SRhyland Klein 	{ .con_id = "hclk", .dt_id = TEGRA210_CLK_HCLK },
25516b301a05SRhyland Klein 	{ .con_id = "pclk", .dt_id = TEGRA210_CLK_PCLK },
25526b301a05SRhyland Klein 	{ .con_id = "fuse", .dt_id = TEGRA210_CLK_FUSE },
25536b301a05SRhyland Klein 	{ .dev_id = "rtc-tegra", .dt_id = TEGRA210_CLK_RTC },
25546b301a05SRhyland Klein 	{ .dev_id = "timer", .dt_id = TEGRA210_CLK_TIMER },
25556b301a05SRhyland Klein 	{ .con_id = "pll_c4_out0", .dt_id = TEGRA210_CLK_PLL_C4_OUT0 },
25566b301a05SRhyland Klein 	{ .con_id = "pll_c4_out1", .dt_id = TEGRA210_CLK_PLL_C4_OUT1 },
25576b301a05SRhyland Klein 	{ .con_id = "pll_c4_out2", .dt_id = TEGRA210_CLK_PLL_C4_OUT2 },
25586b301a05SRhyland Klein 	{ .con_id = "pll_c4_out3", .dt_id = TEGRA210_CLK_PLL_C4_OUT3 },
25596b301a05SRhyland Klein 	{ .con_id = "dpaux", .dt_id = TEGRA210_CLK_DPAUX },
25606b301a05SRhyland Klein 	{ .con_id = "sor0", .dt_id = TEGRA210_CLK_SOR0 },
25616b301a05SRhyland Klein };
25626b301a05SRhyland Klein 
25636b301a05SRhyland Klein static struct tegra_audio_clk_info tegra210_audio_plls[] = {
25646b301a05SRhyland Klein 	{ "pll_a", &pll_a_params, tegra_clk_pll_a, "pll_ref" },
25656b301a05SRhyland Klein 	{ "pll_a1", &pll_a1_params, tegra_clk_pll_a1, "pll_ref" },
25666b301a05SRhyland Klein };
25676b301a05SRhyland Klein 
256824c3ebefSPeter De Schrijver static const char * const aclk_parents[] = {
256924c3ebefSPeter De Schrijver 	"pll_a1", "pll_c", "pll_p", "pll_a_out0", "pll_c2", "pll_c3",
257024c3ebefSPeter De Schrijver 	"clk_m"
257124c3ebefSPeter De Schrijver };
257224c3ebefSPeter De Schrijver 
2573e403d005SPeter De Schrijver static const unsigned int nvjpg_slcg_clkids[] = { TEGRA210_CLK_NVDEC };
2574e403d005SPeter De Schrijver static const unsigned int nvdec_slcg_clkids[] = { TEGRA210_CLK_NVJPG };
2575e403d005SPeter De Schrijver static const unsigned int sor_slcg_clkids[] = { TEGRA210_CLK_HDA2CODEC_2X,
2576e403d005SPeter De Schrijver 	TEGRA210_CLK_HDA2HDMI, TEGRA210_CLK_DISP1, TEGRA210_CLK_DISP2 };
2577e403d005SPeter De Schrijver static const unsigned int disp_slcg_clkids[] = { TEGRA210_CLK_LA,
2578e403d005SPeter De Schrijver 	TEGRA210_CLK_HOST1X};
2579e403d005SPeter De Schrijver static const unsigned int xusba_slcg_clkids[] = { TEGRA210_CLK_XUSB_HOST,
2580e403d005SPeter De Schrijver 	TEGRA210_CLK_XUSB_DEV };
2581e403d005SPeter De Schrijver static const unsigned int xusbb_slcg_clkids[] = { TEGRA210_CLK_XUSB_HOST,
2582e403d005SPeter De Schrijver 	TEGRA210_CLK_XUSB_SS };
2583e403d005SPeter De Schrijver static const unsigned int xusbc_slcg_clkids[] = { TEGRA210_CLK_XUSB_DEV,
2584e403d005SPeter De Schrijver 	TEGRA210_CLK_XUSB_SS };
2585e403d005SPeter De Schrijver static const unsigned int venc_slcg_clkids[] = { TEGRA210_CLK_HOST1X,
2586e403d005SPeter De Schrijver 	TEGRA210_CLK_PLL_D };
2587e403d005SPeter De Schrijver static const unsigned int ape_slcg_clkids[] = { TEGRA210_CLK_ACLK,
2588e403d005SPeter De Schrijver 	TEGRA210_CLK_I2S0, TEGRA210_CLK_I2S1, TEGRA210_CLK_I2S2,
2589e403d005SPeter De Schrijver 	TEGRA210_CLK_I2S3, TEGRA210_CLK_I2S4, TEGRA210_CLK_SPDIF_OUT,
2590e403d005SPeter De Schrijver 	TEGRA210_CLK_D_AUDIO };
2591e403d005SPeter De Schrijver static const unsigned int vic_slcg_clkids[] = { TEGRA210_CLK_HOST1X };
2592e403d005SPeter De Schrijver 
2593e403d005SPeter De Schrijver static struct tegra210_domain_mbist_war tegra210_pg_mbist_war[] = {
2594e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_VENC] = {
2595e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_venc_mbist_war,
2596e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(venc_slcg_clkids),
2597e403d005SPeter De Schrijver 		.clk_init_data = venc_slcg_clkids,
2598e403d005SPeter De Schrijver 	},
2599e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_SATA] = {
2600e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2601e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRC,
2602e403d005SPeter De Schrijver 		.lvl2_mask = BIT(0) | BIT(17) | BIT(19),
2603e403d005SPeter De Schrijver 	},
2604e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_MPE] = {
2605e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2606e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRE,
2607a4dbbceeSJoseph Lo 		.lvl2_mask = BIT(29),
2608e403d005SPeter De Schrijver 	},
2609e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_SOR] = {
2610e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2611e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(sor_slcg_clkids),
2612e403d005SPeter De Schrijver 		.clk_init_data = sor_slcg_clkids,
2613e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRA,
2614e403d005SPeter De Schrijver 		.lvl2_mask = BIT(1) | BIT(2),
2615e403d005SPeter De Schrijver 	},
2616e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_DIS] = {
2617e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_disp_mbist_war,
2618e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(disp_slcg_clkids),
2619e403d005SPeter De Schrijver 		.clk_init_data = disp_slcg_clkids,
2620e403d005SPeter De Schrijver 	},
2621e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_DISB] = {
2622e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(disp_slcg_clkids),
2623e403d005SPeter De Schrijver 		.clk_init_data = disp_slcg_clkids,
2624e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2625e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRA,
2626e403d005SPeter De Schrijver 		.lvl2_mask = BIT(2),
2627e403d005SPeter De Schrijver 	},
2628e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_XUSBA] = {
2629e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(xusba_slcg_clkids),
2630e403d005SPeter De Schrijver 		.clk_init_data = xusba_slcg_clkids,
2631e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2632e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRC,
2633e403d005SPeter De Schrijver 		.lvl2_mask = BIT(30) | BIT(31),
2634e403d005SPeter De Schrijver 	},
2635e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_XUSBB] = {
2636e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(xusbb_slcg_clkids),
2637e403d005SPeter De Schrijver 		.clk_init_data = xusbb_slcg_clkids,
2638e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2639e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRC,
2640e403d005SPeter De Schrijver 		.lvl2_mask = BIT(30) | BIT(31),
2641e403d005SPeter De Schrijver 	},
2642e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_XUSBC] = {
2643e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(xusbc_slcg_clkids),
2644e403d005SPeter De Schrijver 		.clk_init_data = xusbc_slcg_clkids,
2645e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2646e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRC,
2647e403d005SPeter De Schrijver 		.lvl2_mask = BIT(30) | BIT(31),
2648e403d005SPeter De Schrijver 	},
2649e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_VIC] = {
2650e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(vic_slcg_clkids),
2651e403d005SPeter De Schrijver 		.clk_init_data = vic_slcg_clkids,
2652e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_vic_mbist_war,
2653e403d005SPeter De Schrijver 	},
2654e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_NVDEC] = {
2655e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(nvdec_slcg_clkids),
2656e403d005SPeter De Schrijver 		.clk_init_data = nvdec_slcg_clkids,
2657e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2658a4dbbceeSJoseph Lo 		.lvl2_offset = LVL2_CLK_GATE_OVRE,
2659e403d005SPeter De Schrijver 		.lvl2_mask = BIT(9) | BIT(31),
2660e403d005SPeter De Schrijver 	},
2661e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_NVJPG] = {
2662e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(nvjpg_slcg_clkids),
2663e403d005SPeter De Schrijver 		.clk_init_data = nvjpg_slcg_clkids,
2664e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2665a4dbbceeSJoseph Lo 		.lvl2_offset = LVL2_CLK_GATE_OVRE,
2666e403d005SPeter De Schrijver 		.lvl2_mask = BIT(9) | BIT(31),
2667e403d005SPeter De Schrijver 	},
2668e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_AUD] = {
2669e403d005SPeter De Schrijver 		.num_clks = ARRAY_SIZE(ape_slcg_clkids),
2670e403d005SPeter De Schrijver 		.clk_init_data = ape_slcg_clkids,
2671e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_ape_mbist_war,
2672e403d005SPeter De Schrijver 	},
2673e403d005SPeter De Schrijver 	[TEGRA_POWERGATE_VE2] = {
2674e403d005SPeter De Schrijver 		.handle_lvl2_ovr = tegra210_generic_mbist_war,
2675e403d005SPeter De Schrijver 		.lvl2_offset = LVL2_CLK_GATE_OVRD,
2676e403d005SPeter De Schrijver 		.lvl2_mask = BIT(22),
2677e403d005SPeter De Schrijver 	},
2678e403d005SPeter De Schrijver };
2679e403d005SPeter De Schrijver 
2680e403d005SPeter De Schrijver int tegra210_clk_handle_mbist_war(unsigned int id)
2681e403d005SPeter De Schrijver {
2682e403d005SPeter De Schrijver 	int err;
2683e403d005SPeter De Schrijver 	struct tegra210_domain_mbist_war *mbist_war;
2684e403d005SPeter De Schrijver 
2685e403d005SPeter De Schrijver 	if (id >= ARRAY_SIZE(tegra210_pg_mbist_war)) {
2686e403d005SPeter De Schrijver 		WARN(1, "unknown domain id in MBIST WAR handler\n");
2687e403d005SPeter De Schrijver 		return -EINVAL;
2688e403d005SPeter De Schrijver 	}
2689e403d005SPeter De Schrijver 
2690e403d005SPeter De Schrijver 	mbist_war = &tegra210_pg_mbist_war[id];
2691e403d005SPeter De Schrijver 	if (!mbist_war->handle_lvl2_ovr)
2692e403d005SPeter De Schrijver 		return 0;
2693e403d005SPeter De Schrijver 
2694e403d005SPeter De Schrijver 	if (mbist_war->num_clks && !mbist_war->clks)
2695e403d005SPeter De Schrijver 		return -ENODEV;
2696e403d005SPeter De Schrijver 
2697e403d005SPeter De Schrijver 	err = clk_bulk_prepare_enable(mbist_war->num_clks, mbist_war->clks);
2698e403d005SPeter De Schrijver 	if (err < 0)
2699e403d005SPeter De Schrijver 		return err;
2700e403d005SPeter De Schrijver 
2701e403d005SPeter De Schrijver 	mutex_lock(&lvl2_ovr_lock);
2702e403d005SPeter De Schrijver 
2703e403d005SPeter De Schrijver 	mbist_war->handle_lvl2_ovr(mbist_war);
2704e403d005SPeter De Schrijver 
2705e403d005SPeter De Schrijver 	mutex_unlock(&lvl2_ovr_lock);
2706e403d005SPeter De Schrijver 
2707e403d005SPeter De Schrijver 	clk_bulk_disable_unprepare(mbist_war->num_clks, mbist_war->clks);
2708e403d005SPeter De Schrijver 
2709e403d005SPeter De Schrijver 	return 0;
2710e403d005SPeter De Schrijver }
2711e403d005SPeter De Schrijver 
27123843832fSPeter De Schrijver void tegra210_put_utmipll_in_iddq(void)
27133843832fSPeter De Schrijver {
27143843832fSPeter De Schrijver 	u32 reg;
27153843832fSPeter De Schrijver 
27163843832fSPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0);
27173843832fSPeter De Schrijver 
27183843832fSPeter De Schrijver 	if (reg & UTMIPLL_HW_PWRDN_CFG0_UTMIPLL_LOCK) {
27193843832fSPeter De Schrijver 		pr_err("trying to assert IDDQ while UTMIPLL is locked\n");
27203843832fSPeter De Schrijver 		return;
27213843832fSPeter De Schrijver 	}
27223843832fSPeter De Schrijver 
27233843832fSPeter De Schrijver 	reg |= UTMIPLL_HW_PWRDN_CFG0_IDDQ_OVERRIDE;
27243843832fSPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0);
27253843832fSPeter De Schrijver }
27263843832fSPeter De Schrijver EXPORT_SYMBOL_GPL(tegra210_put_utmipll_in_iddq);
27273843832fSPeter De Schrijver 
27283843832fSPeter De Schrijver void tegra210_put_utmipll_out_iddq(void)
27293843832fSPeter De Schrijver {
27303843832fSPeter De Schrijver 	u32 reg;
27313843832fSPeter De Schrijver 
27323843832fSPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0);
27333843832fSPeter De Schrijver 	reg &= ~UTMIPLL_HW_PWRDN_CFG0_IDDQ_OVERRIDE;
27343843832fSPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0);
27353843832fSPeter De Schrijver }
27363843832fSPeter De Schrijver EXPORT_SYMBOL_GPL(tegra210_put_utmipll_out_iddq);
27373843832fSPeter De Schrijver 
2738e745f992SPeter De Schrijver static void tegra210_utmi_param_configure(void)
2739e745f992SPeter De Schrijver {
2740e745f992SPeter De Schrijver 	u32 reg;
2741e745f992SPeter De Schrijver 	int i;
2742e745f992SPeter De Schrijver 
2743e745f992SPeter De Schrijver 	for (i = 0; i < ARRAY_SIZE(utmi_parameters); i++) {
2744e745f992SPeter De Schrijver 		if (osc_freq == utmi_parameters[i].osc_frequency)
2745e745f992SPeter De Schrijver 			break;
2746e745f992SPeter De Schrijver 	}
2747e745f992SPeter De Schrijver 
2748e745f992SPeter De Schrijver 	if (i >= ARRAY_SIZE(utmi_parameters)) {
2749e745f992SPeter De Schrijver 		pr_err("%s: Unexpected oscillator freq %lu\n", __func__,
2750e745f992SPeter De Schrijver 			osc_freq);
2751e745f992SPeter De Schrijver 		return;
2752e745f992SPeter De Schrijver 	}
2753e745f992SPeter De Schrijver 
2754e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0);
2755e745f992SPeter De Schrijver 	reg &= ~UTMIPLL_HW_PWRDN_CFG0_IDDQ_OVERRIDE;
2756e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0);
2757e745f992SPeter De Schrijver 
2758e745f992SPeter De Schrijver 	udelay(10);
2759e745f992SPeter De Schrijver 
2760e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIP_PLL_CFG2);
2761e745f992SPeter De Schrijver 
2762e745f992SPeter De Schrijver 	/* Program UTMIP PLL stable and active counts */
2763e745f992SPeter De Schrijver 	/* [FIXME] arclk_rst.h says WRONG! This should be 1ms -> 0x50 Check! */
2764e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG2_STABLE_COUNT(~0);
2765e745f992SPeter De Schrijver 	reg |= UTMIP_PLL_CFG2_STABLE_COUNT(utmi_parameters[i].stable_count);
2766e745f992SPeter De Schrijver 
2767e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG2_ACTIVE_DLY_COUNT(~0);
2768e745f992SPeter De Schrijver 	reg |=
2769e745f992SPeter De Schrijver 	UTMIP_PLL_CFG2_ACTIVE_DLY_COUNT(utmi_parameters[i].active_delay_count);
2770e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIP_PLL_CFG2);
2771e745f992SPeter De Schrijver 
2772e745f992SPeter De Schrijver 	/* Program UTMIP PLL delay and oscillator frequency counts */
2773e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIP_PLL_CFG1);
2774e745f992SPeter De Schrijver 
277571422dbbSAlex Frid 	reg &= ~UTMIP_PLL_CFG1_ENABLE_DLY_COUNT(~0);
2776e745f992SPeter De Schrijver 	reg |=
2777e745f992SPeter De Schrijver 	UTMIP_PLL_CFG1_ENABLE_DLY_COUNT(utmi_parameters[i].enable_delay_count);
2778e745f992SPeter De Schrijver 
2779e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG1_XTAL_FREQ_COUNT(~0);
2780e745f992SPeter De Schrijver 	reg |=
2781e745f992SPeter De Schrijver 	UTMIP_PLL_CFG1_XTAL_FREQ_COUNT(utmi_parameters[i].xtal_freq_count);
2782e745f992SPeter De Schrijver 
2783e745f992SPeter De Schrijver 	reg |= UTMIP_PLL_CFG1_FORCE_PLLU_POWERDOWN;
2784e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIP_PLL_CFG1);
2785e745f992SPeter De Schrijver 
2786e745f992SPeter De Schrijver 	/* Remove power downs from UTMIP PLL control bits */
2787e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIP_PLL_CFG1);
2788e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERDOWN;
2789e745f992SPeter De Schrijver 	reg |= UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERUP;
2790e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIP_PLL_CFG1);
279171422dbbSAlex Frid 
279271422dbbSAlex Frid 	udelay(20);
2793e745f992SPeter De Schrijver 
2794e745f992SPeter De Schrijver 	/* Enable samplers for SNPS, XUSB_HOST, XUSB_DEV */
2795e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIP_PLL_CFG2);
2796e745f992SPeter De Schrijver 	reg |= UTMIP_PLL_CFG2_FORCE_PD_SAMP_A_POWERUP;
2797e745f992SPeter De Schrijver 	reg |= UTMIP_PLL_CFG2_FORCE_PD_SAMP_B_POWERUP;
2798e745f992SPeter De Schrijver 	reg |= UTMIP_PLL_CFG2_FORCE_PD_SAMP_D_POWERUP;
2799e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG2_FORCE_PD_SAMP_A_POWERDOWN;
2800e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG2_FORCE_PD_SAMP_B_POWERDOWN;
2801e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG2_FORCE_PD_SAMP_D_POWERDOWN;
2802e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIP_PLL_CFG2);
2803e745f992SPeter De Schrijver 
2804e745f992SPeter De Schrijver 	/* Setup HW control of UTMIPLL */
2805e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIP_PLL_CFG1);
2806e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERDOWN;
2807e745f992SPeter De Schrijver 	reg &= ~UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERUP;
2808e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIP_PLL_CFG1);
2809e745f992SPeter De Schrijver 
2810e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0);
2811e745f992SPeter De Schrijver 	reg |= UTMIPLL_HW_PWRDN_CFG0_USE_LOCKDET;
2812e745f992SPeter De Schrijver 	reg &= ~UTMIPLL_HW_PWRDN_CFG0_CLK_ENABLE_SWCTL;
2813e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0);
2814e745f992SPeter De Schrijver 
2815e745f992SPeter De Schrijver 	udelay(1);
2816e745f992SPeter De Schrijver 
2817e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + XUSB_PLL_CFG0);
2818e745f992SPeter De Schrijver 	reg &= ~XUSB_PLL_CFG0_UTMIPLL_LOCK_DLY;
2819e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + XUSB_PLL_CFG0);
2820e745f992SPeter De Schrijver 
2821e745f992SPeter De Schrijver 	udelay(1);
2822e745f992SPeter De Schrijver 
2823e745f992SPeter De Schrijver 	/* Enable HW control UTMIPLL */
2824e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0);
2825e745f992SPeter De Schrijver 	reg |= UTMIPLL_HW_PWRDN_CFG0_SEQ_ENABLE;
2826e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0);
2827e745f992SPeter De Schrijver }
2828e745f992SPeter De Schrijver 
2829e745f992SPeter De Schrijver static int tegra210_enable_pllu(void)
2830e745f992SPeter De Schrijver {
2831e745f992SPeter De Schrijver 	struct tegra_clk_pll_freq_table *fentry;
2832e745f992SPeter De Schrijver 	struct tegra_clk_pll pllu;
2833e745f992SPeter De Schrijver 	u32 reg;
2834e745f992SPeter De Schrijver 
2835e745f992SPeter De Schrijver 	for (fentry = pll_u_freq_table; fentry->input_rate; fentry++) {
2836e745f992SPeter De Schrijver 		if (fentry->input_rate == pll_ref_freq)
2837e745f992SPeter De Schrijver 			break;
2838e745f992SPeter De Schrijver 	}
2839e745f992SPeter De Schrijver 
2840e745f992SPeter De Schrijver 	if (!fentry->input_rate) {
2841e745f992SPeter De Schrijver 		pr_err("Unknown PLL_U reference frequency %lu\n", pll_ref_freq);
2842e745f992SPeter De Schrijver 		return -EINVAL;
2843e745f992SPeter De Schrijver 	}
2844e745f992SPeter De Schrijver 
2845e745f992SPeter De Schrijver 	/* clear IDDQ bit */
2846e745f992SPeter De Schrijver 	pllu.params = &pll_u_vco_params;
2847e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + pllu.params->ext_misc_reg[0]);
2848e745f992SPeter De Schrijver 	reg &= ~BIT(pllu.params->iddq_bit_idx);
2849e745f992SPeter De Schrijver 	writel_relaxed(reg, clk_base + pllu.params->ext_misc_reg[0]);
28507157c69aSAlex Frid 	udelay(5);
2851e745f992SPeter De Schrijver 
2852e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + PLLU_BASE);
2853e745f992SPeter De Schrijver 	reg &= ~GENMASK(20, 0);
2854e745f992SPeter De Schrijver 	reg |= fentry->m;
2855e745f992SPeter De Schrijver 	reg |= fentry->n << 8;
2856e745f992SPeter De Schrijver 	reg |= fentry->p << 16;
2857e745f992SPeter De Schrijver 	writel(reg, clk_base + PLLU_BASE);
28587157c69aSAlex Frid 	udelay(1);
2859e745f992SPeter De Schrijver 	reg |= PLL_ENABLE;
2860e745f992SPeter De Schrijver 	writel(reg, clk_base + PLLU_BASE);
2861e745f992SPeter De Schrijver 
286222ef01a2SNicolin Chen 	readl_relaxed_poll_timeout_atomic(clk_base + PLLU_BASE, reg,
2863e745f992SPeter De Schrijver 					  reg & PLL_BASE_LOCK, 2, 1000);
2864e745f992SPeter De Schrijver 	if (!(reg & PLL_BASE_LOCK)) {
2865e745f992SPeter De Schrijver 		pr_err("Timed out waiting for PLL_U to lock\n");
2866e745f992SPeter De Schrijver 		return -ETIMEDOUT;
2867e745f992SPeter De Schrijver 	}
2868e745f992SPeter De Schrijver 
2869e745f992SPeter De Schrijver 	return 0;
2870e745f992SPeter De Schrijver }
2871e745f992SPeter De Schrijver 
2872e745f992SPeter De Schrijver static int tegra210_init_pllu(void)
2873e745f992SPeter De Schrijver {
2874e745f992SPeter De Schrijver 	u32 reg;
2875e745f992SPeter De Schrijver 	int err;
2876e745f992SPeter De Schrijver 
2877e745f992SPeter De Schrijver 	tegra210_pllu_set_defaults(&pll_u_vco_params);
2878e745f992SPeter De Schrijver 	/* skip initialization when pllu is in hw controlled mode */
2879e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + PLLU_BASE);
2880e745f992SPeter De Schrijver 	if (reg & PLLU_BASE_OVERRIDE) {
2881e745f992SPeter De Schrijver 		if (!(reg & PLL_ENABLE)) {
2882e745f992SPeter De Schrijver 			err = tegra210_enable_pllu();
2883e745f992SPeter De Schrijver 			if (err < 0) {
2884e745f992SPeter De Schrijver 				WARN_ON(1);
2885e745f992SPeter De Schrijver 				return err;
2886e745f992SPeter De Schrijver 			}
2887e745f992SPeter De Schrijver 		}
2888e745f992SPeter De Schrijver 		/* enable hw controlled mode */
2889e745f992SPeter De Schrijver 		reg = readl_relaxed(clk_base + PLLU_BASE);
2890e745f992SPeter De Schrijver 		reg &= ~PLLU_BASE_OVERRIDE;
2891e745f992SPeter De Schrijver 		writel(reg, clk_base + PLLU_BASE);
2892e745f992SPeter De Schrijver 
2893e745f992SPeter De Schrijver 		reg = readl_relaxed(clk_base + PLLU_HW_PWRDN_CFG0);
2894e745f992SPeter De Schrijver 		reg |= PLLU_HW_PWRDN_CFG0_IDDQ_PD_INCLUDE |
2895e745f992SPeter De Schrijver 		       PLLU_HW_PWRDN_CFG0_USE_SWITCH_DETECT |
2896e745f992SPeter De Schrijver 		       PLLU_HW_PWRDN_CFG0_USE_LOCKDET;
2897e745f992SPeter De Schrijver 		reg &= ~(PLLU_HW_PWRDN_CFG0_CLK_ENABLE_SWCTL |
2898e745f992SPeter De Schrijver 			PLLU_HW_PWRDN_CFG0_CLK_SWITCH_SWCTL);
2899e745f992SPeter De Schrijver 		writel_relaxed(reg, clk_base + PLLU_HW_PWRDN_CFG0);
2900e745f992SPeter De Schrijver 
2901e745f992SPeter De Schrijver 		reg = readl_relaxed(clk_base + XUSB_PLL_CFG0);
2902e745f992SPeter De Schrijver 		reg &= ~XUSB_PLL_CFG0_PLLU_LOCK_DLY_MASK;
2903e745f992SPeter De Schrijver 		writel_relaxed(reg, clk_base + XUSB_PLL_CFG0);
2904e745f992SPeter De Schrijver 		udelay(1);
2905e745f992SPeter De Schrijver 
2906e745f992SPeter De Schrijver 		reg = readl_relaxed(clk_base + PLLU_HW_PWRDN_CFG0);
2907e745f992SPeter De Schrijver 		reg |= PLLU_HW_PWRDN_CFG0_SEQ_ENABLE;
2908e745f992SPeter De Schrijver 		writel_relaxed(reg, clk_base + PLLU_HW_PWRDN_CFG0);
2909e745f992SPeter De Schrijver 		udelay(1);
2910e745f992SPeter De Schrijver 
2911e745f992SPeter De Schrijver 		reg = readl_relaxed(clk_base + PLLU_BASE);
2912e745f992SPeter De Schrijver 		reg &= ~PLLU_BASE_CLKENABLE_USB;
2913e745f992SPeter De Schrijver 		writel_relaxed(reg, clk_base + PLLU_BASE);
2914e745f992SPeter De Schrijver 	}
2915e745f992SPeter De Schrijver 
2916e745f992SPeter De Schrijver 	/* enable UTMIPLL hw control if not yet done by the bootloader */
2917e745f992SPeter De Schrijver 	reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0);
2918e745f992SPeter De Schrijver 	if (!(reg & UTMIPLL_HW_PWRDN_CFG0_SEQ_ENABLE))
2919e745f992SPeter De Schrijver 		tegra210_utmi_param_configure();
2920e745f992SPeter De Schrijver 
2921e745f992SPeter De Schrijver 	return 0;
2922e745f992SPeter De Schrijver }
2923e745f992SPeter De Schrijver 
2924bc2e4d29SThierry Reding static const char * const sor1_out_parents[] = {
2925bc2e4d29SThierry Reding 	/*
2926bc2e4d29SThierry Reding 	 * Bit 0 of the mux selects sor1_pad_clkout, irrespective of bit 1, so
2927bc2e4d29SThierry Reding 	 * the sor1_pad_clkout parent appears twice in the list below. This is
2928bc2e4d29SThierry Reding 	 * merely to support clk_get_parent() if firmware happened to set
2929bc2e4d29SThierry Reding 	 * these bits to 0b11. While not an invalid setting, code should
2930bc2e4d29SThierry Reding 	 * always set the bits to 0b01 to select sor1_pad_clkout.
2931bc2e4d29SThierry Reding 	 */
2932bc2e4d29SThierry Reding 	"sor_safe", "sor1_pad_clkout", "sor1", "sor1_pad_clkout",
2933bc2e4d29SThierry Reding };
2934bc2e4d29SThierry Reding 
2935bc2e4d29SThierry Reding static const char * const sor1_parents[] = {
2936bc2e4d29SThierry Reding 	"pll_p", "pll_d_out0", "pll_d2_out0", "clk_m",
2937bc2e4d29SThierry Reding };
2938bc2e4d29SThierry Reding 
2939bc2e4d29SThierry Reding static u32 sor1_parents_idx[] = { 0, 2, 5, 6 };
2940bc2e4d29SThierry Reding 
2941bc2e4d29SThierry Reding static struct tegra_periph_init_data tegra210_periph[] = {
2942bc2e4d29SThierry Reding 	TEGRA_INIT_DATA_TABLE("sor1", NULL, NULL, sor1_parents,
2943bc2e4d29SThierry Reding 			      CLK_SOURCE_SOR1, 29, 0x7, 0, 0, 8, 1,
2944bc2e4d29SThierry Reding 			      TEGRA_DIVIDER_ROUND_UP, 183, 0, tegra_clk_sor1,
2945bc2e4d29SThierry Reding 			      sor1_parents_idx, 0, &sor1_lock),
2946bc2e4d29SThierry Reding };
2947bc2e4d29SThierry Reding 
294889e423c3SPeter De Schrijver static const char * const la_parents[] = {
294989e423c3SPeter De Schrijver 	"pll_p", "pll_c2", "pll_c", "pll_c3", "pll_re_out1", "pll_a1", "clk_m", "pll_c4_out0"
295089e423c3SPeter De Schrijver };
295189e423c3SPeter De Schrijver 
295289e423c3SPeter De Schrijver static struct tegra_clk_periph tegra210_la =
295389e423c3SPeter De Schrijver 	TEGRA_CLK_PERIPH(29, 7, 9, 0, 8, 1, TEGRA_DIVIDER_ROUND_UP, 76, 0, NULL, 0);
295489e423c3SPeter De Schrijver 
29556b301a05SRhyland Klein static __init void tegra210_periph_clk_init(void __iomem *clk_base,
29566b301a05SRhyland Klein 					    void __iomem *pmc_base)
29576b301a05SRhyland Klein {
29586b301a05SRhyland Klein 	struct clk *clk;
2959bc2e4d29SThierry Reding 	unsigned int i;
29606b301a05SRhyland Klein 
29616b301a05SRhyland Klein 	/* xusb_ss_div2 */
29626b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "xusb_ss_div2", "xusb_ss_src", 0,
29636b301a05SRhyland Klein 					1, 2);
29646b301a05SRhyland Klein 	clks[TEGRA210_CLK_XUSB_SS_DIV2] = clk;
29656b301a05SRhyland Klein 
296674d3ba0bSThierry Reding 	clk = tegra_clk_register_periph_fixed("sor_safe", "pll_p", 0, clk_base,
296774d3ba0bSThierry Reding 					      1, 17, 222);
296874d3ba0bSThierry Reding 	clks[TEGRA210_CLK_SOR_SAFE] = clk;
296974d3ba0bSThierry Reding 
29702e34c2acSThierry Reding 	clk = tegra_clk_register_periph_fixed("dpaux", "sor_safe", 0, clk_base,
2971eede7113SThierry Reding 					      1, 17, 181);
2972eede7113SThierry Reding 	clks[TEGRA210_CLK_DPAUX] = clk;
2973eede7113SThierry Reding 
29742e34c2acSThierry Reding 	clk = tegra_clk_register_periph_fixed("dpaux1", "sor_safe", 0, clk_base,
2975eede7113SThierry Reding 					      1, 17, 207);
2976eede7113SThierry Reding 	clks[TEGRA210_CLK_DPAUX1] = clk;
2977eede7113SThierry Reding 
2978bc2e4d29SThierry Reding 	clk = clk_register_mux_table(NULL, "sor1_out", sor1_out_parents,
2979bc2e4d29SThierry Reding 				     ARRAY_SIZE(sor1_out_parents), 0,
2980bc2e4d29SThierry Reding 				     clk_base + CLK_SOURCE_SOR1, 14, 0x3,
2981bc2e4d29SThierry Reding 				     0, NULL, &sor1_lock);
2982bc2e4d29SThierry Reding 	clks[TEGRA210_CLK_SOR1_OUT] = clk;
2983bc2e4d29SThierry Reding 
29846b301a05SRhyland Klein 	/* pll_d_dsi_out */
29856b301a05SRhyland Klein 	clk = clk_register_gate(NULL, "pll_d_dsi_out", "pll_d_out0", 0,
29866b301a05SRhyland Klein 				clk_base + PLLD_MISC0, 21, 0, &pll_d_lock);
29876b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_D_DSI_OUT] = clk;
29886b301a05SRhyland Klein 
29896b301a05SRhyland Klein 	/* dsia */
29906b301a05SRhyland Klein 	clk = tegra_clk_register_periph_gate("dsia", "pll_d_dsi_out", 0,
29916b301a05SRhyland Klein 					     clk_base, 0, 48,
29926b301a05SRhyland Klein 					     periph_clk_enb_refcnt);
29936b301a05SRhyland Klein 	clks[TEGRA210_CLK_DSIA] = clk;
29946b301a05SRhyland Klein 
29956b301a05SRhyland Klein 	/* dsib */
29966b301a05SRhyland Klein 	clk = tegra_clk_register_periph_gate("dsib", "pll_d_dsi_out", 0,
29976b301a05SRhyland Klein 					     clk_base, 0, 82,
29986b301a05SRhyland Klein 					     periph_clk_enb_refcnt);
29996b301a05SRhyland Klein 	clks[TEGRA210_CLK_DSIB] = clk;
30006b301a05SRhyland Klein 
300189e423c3SPeter De Schrijver 	/* la */
300289e423c3SPeter De Schrijver 	clk = tegra_clk_register_periph("la", la_parents,
300389e423c3SPeter De Schrijver 			ARRAY_SIZE(la_parents), &tegra210_la, clk_base,
300489e423c3SPeter De Schrijver 			CLK_SOURCE_LA, 0);
300589e423c3SPeter De Schrijver 	clks[TEGRA210_CLK_LA] = clk;
300689e423c3SPeter De Schrijver 
30076b301a05SRhyland Klein 	/* emc mux */
30086b301a05SRhyland Klein 	clk = clk_register_mux(NULL, "emc_mux", mux_pllmcp_clkm,
30096b301a05SRhyland Klein 			       ARRAY_SIZE(mux_pllmcp_clkm), 0,
30106b301a05SRhyland Klein 			       clk_base + CLK_SOURCE_EMC,
30116b301a05SRhyland Klein 			       29, 3, 0, &emc_lock);
30126b301a05SRhyland Klein 
30136b301a05SRhyland Klein 	clk = tegra_clk_register_mc("mc", "emc_mux", clk_base + CLK_SOURCE_EMC,
30146b301a05SRhyland Klein 				    &emc_lock);
30156b301a05SRhyland Klein 	clks[TEGRA210_CLK_MC] = clk;
30166b301a05SRhyland Klein 
30176b301a05SRhyland Klein 	/* cml0 */
30186b301a05SRhyland Klein 	clk = clk_register_gate(NULL, "cml0", "pll_e", 0, clk_base + PLLE_AUX,
30196b301a05SRhyland Klein 				0, 0, &pll_e_lock);
30206b301a05SRhyland Klein 	clk_register_clkdev(clk, "cml0", NULL);
30216b301a05SRhyland Klein 	clks[TEGRA210_CLK_CML0] = clk;
30226b301a05SRhyland Klein 
30236b301a05SRhyland Klein 	/* cml1 */
30246b301a05SRhyland Klein 	clk = clk_register_gate(NULL, "cml1", "pll_e", 0, clk_base + PLLE_AUX,
30256b301a05SRhyland Klein 				1, 0, &pll_e_lock);
30266b301a05SRhyland Klein 	clk_register_clkdev(clk, "cml1", NULL);
30276b301a05SRhyland Klein 	clks[TEGRA210_CLK_CML1] = clk;
30286b301a05SRhyland Klein 
302924c3ebefSPeter De Schrijver 	clk = tegra_clk_register_super_clk("aclk", aclk_parents,
303024c3ebefSPeter De Schrijver 				ARRAY_SIZE(aclk_parents), 0, clk_base + 0x6e0,
303124c3ebefSPeter De Schrijver 				0, NULL);
303224c3ebefSPeter De Schrijver 	clks[TEGRA210_CLK_ACLK] = clk;
303324c3ebefSPeter De Schrijver 
3034c76a69e4SPeter De-Schrijver 	clk = tegra_clk_register_sdmmc_mux_div("sdmmc2", clk_base,
3035c76a69e4SPeter De-Schrijver 					    CLK_SOURCE_SDMMC2, 9,
3036c76a69e4SPeter De-Schrijver 					    TEGRA_DIVIDER_ROUND_UP, 0, NULL);
3037c76a69e4SPeter De-Schrijver 	clks[TEGRA210_CLK_SDMMC2] = clk;
3038c76a69e4SPeter De-Schrijver 
3039c76a69e4SPeter De-Schrijver 	clk = tegra_clk_register_sdmmc_mux_div("sdmmc4", clk_base,
3040c76a69e4SPeter De-Schrijver 					    CLK_SOURCE_SDMMC4, 15,
3041c76a69e4SPeter De-Schrijver 					    TEGRA_DIVIDER_ROUND_UP, 0, NULL);
3042c76a69e4SPeter De-Schrijver 	clks[TEGRA210_CLK_SDMMC4] = clk;
3043c76a69e4SPeter De-Schrijver 
3044bc2e4d29SThierry Reding 	for (i = 0; i < ARRAY_SIZE(tegra210_periph); i++) {
3045bc2e4d29SThierry Reding 		struct tegra_periph_init_data *init = &tegra210_periph[i];
3046bc2e4d29SThierry Reding 		struct clk **clkp;
3047bc2e4d29SThierry Reding 
3048bc2e4d29SThierry Reding 		clkp = tegra_lookup_dt_id(init->clk_id, tegra210_clks);
3049bc2e4d29SThierry Reding 		if (!clkp) {
3050bc2e4d29SThierry Reding 			pr_warn("clock %u not found\n", init->clk_id);
3051bc2e4d29SThierry Reding 			continue;
3052bc2e4d29SThierry Reding 		}
3053bc2e4d29SThierry Reding 
3054bc2e4d29SThierry Reding 		clk = tegra_clk_register_periph_data(clk_base, init);
3055bc2e4d29SThierry Reding 		*clkp = clk;
3056bc2e4d29SThierry Reding 	}
3057bc2e4d29SThierry Reding 
30586b301a05SRhyland Klein 	tegra_periph_clk_init(clk_base, pmc_base, tegra210_clks, &pll_p_params);
30596b301a05SRhyland Klein }
30606b301a05SRhyland Klein 
30616b301a05SRhyland Klein static void __init tegra210_pll_init(void __iomem *clk_base,
30626b301a05SRhyland Klein 				     void __iomem *pmc)
30636b301a05SRhyland Klein {
30646b301a05SRhyland Klein 	struct clk *clk;
30656b301a05SRhyland Klein 
30666b301a05SRhyland Klein 	/* PLLC */
3067ac99afe5SAlex Frid 	clk = tegra_clk_register_pllc_tegra210("pll_c", "pll_ref", clk_base,
30686b301a05SRhyland Klein 			pmc, 0, &pll_c_params, NULL);
30696b301a05SRhyland Klein 	if (!WARN_ON(IS_ERR(clk)))
30706b301a05SRhyland Klein 		clk_register_clkdev(clk, "pll_c", NULL);
30716b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C] = clk;
30726b301a05SRhyland Klein 
30736b301a05SRhyland Klein 	/* PLLC_OUT1 */
30746b301a05SRhyland Klein 	clk = tegra_clk_register_divider("pll_c_out1_div", "pll_c",
30756b301a05SRhyland Klein 			clk_base + PLLC_OUT, 0, TEGRA_DIVIDER_ROUND_UP,
30766b301a05SRhyland Klein 			8, 8, 1, NULL);
30776b301a05SRhyland Klein 	clk = tegra_clk_register_pll_out("pll_c_out1", "pll_c_out1_div",
30786b301a05SRhyland Klein 				clk_base + PLLC_OUT, 1, 0,
30796b301a05SRhyland Klein 				CLK_SET_RATE_PARENT, 0, NULL);
30806b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c_out1", NULL);
30816b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C_OUT1] = clk;
30826b301a05SRhyland Klein 
30836b301a05SRhyland Klein 	/* PLLC_UD */
30846b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "pll_c_ud", "pll_c",
30856b301a05SRhyland Klein 					CLK_SET_RATE_PARENT, 1, 1);
30866b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c_ud", NULL);
30876b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C_UD] = clk;
30886b301a05SRhyland Klein 
30896b301a05SRhyland Klein 	/* PLLC2 */
30906b301a05SRhyland Klein 	clk = tegra_clk_register_pllc_tegra210("pll_c2", "pll_ref", clk_base,
30916b301a05SRhyland Klein 			     pmc, 0, &pll_c2_params, NULL);
30926b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c2", NULL);
30936b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C2] = clk;
30946b301a05SRhyland Klein 
30956b301a05SRhyland Klein 	/* PLLC3 */
30966b301a05SRhyland Klein 	clk = tegra_clk_register_pllc_tegra210("pll_c3", "pll_ref", clk_base,
30976b301a05SRhyland Klein 			     pmc, 0, &pll_c3_params, NULL);
30986b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c3", NULL);
30996b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C3] = clk;
31006b301a05SRhyland Klein 
31016b301a05SRhyland Klein 	/* PLLM */
31026b301a05SRhyland Klein 	clk = tegra_clk_register_pllm("pll_m", "osc", clk_base, pmc,
31036b301a05SRhyland Klein 			     CLK_SET_RATE_GATE, &pll_m_params, NULL);
31046b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_m", NULL);
31056b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_M] = clk;
31066b301a05SRhyland Klein 
31076b301a05SRhyland Klein 	/* PLLMB */
31086b301a05SRhyland Klein 	clk = tegra_clk_register_pllmb("pll_mb", "osc", clk_base, pmc,
31096b301a05SRhyland Klein 			     CLK_SET_RATE_GATE, &pll_mb_params, NULL);
31106b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_mb", NULL);
31116b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_MB] = clk;
31126b301a05SRhyland Klein 
31136b301a05SRhyland Klein 	/* PLLM_UD */
31146b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "pll_m_ud", "pll_m",
31156b301a05SRhyland Klein 					CLK_SET_RATE_PARENT, 1, 1);
31166b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_m_ud", NULL);
31176b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_M_UD] = clk;
31186b301a05SRhyland Klein 
31196b301a05SRhyland Klein 	/* PLLU_VCO */
3120e745f992SPeter De Schrijver 	if (!tegra210_init_pllu()) {
3121e745f992SPeter De Schrijver 		clk = clk_register_fixed_rate(NULL, "pll_u_vco", "pll_ref", 0,
3122e745f992SPeter De Schrijver 					      480*1000*1000);
31236b301a05SRhyland Klein 		clk_register_clkdev(clk, "pll_u_vco", NULL);
31246b301a05SRhyland Klein 		clks[TEGRA210_CLK_PLL_U] = clk;
3125e745f992SPeter De Schrijver 	}
31266b301a05SRhyland Klein 
31276b301a05SRhyland Klein 	/* PLLU_OUT */
31286b301a05SRhyland Klein 	clk = clk_register_divider_table(NULL, "pll_u_out", "pll_u_vco", 0,
31296b301a05SRhyland Klein 					 clk_base + PLLU_BASE, 16, 4, 0,
31306b301a05SRhyland Klein 					 pll_vco_post_div_table, NULL);
31316b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_u_out", NULL);
31326b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_U_OUT] = clk;
31336b301a05SRhyland Klein 
31346b301a05SRhyland Klein 	/* PLLU_OUT1 */
31356b301a05SRhyland Klein 	clk = tegra_clk_register_divider("pll_u_out1_div", "pll_u_out",
31366b301a05SRhyland Klein 				clk_base + PLLU_OUTA, 0,
31376b301a05SRhyland Klein 				TEGRA_DIVIDER_ROUND_UP,
31386b301a05SRhyland Klein 				8, 8, 1, &pll_u_lock);
31396b301a05SRhyland Klein 	clk = tegra_clk_register_pll_out("pll_u_out1", "pll_u_out1_div",
31406b301a05SRhyland Klein 				clk_base + PLLU_OUTA, 1, 0,
31416b301a05SRhyland Klein 				CLK_SET_RATE_PARENT, 0, &pll_u_lock);
31426b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_u_out1", NULL);
31436b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_U_OUT1] = clk;
31446b301a05SRhyland Klein 
31456b301a05SRhyland Klein 	/* PLLU_OUT2 */
31466b301a05SRhyland Klein 	clk = tegra_clk_register_divider("pll_u_out2_div", "pll_u_out",
31476b301a05SRhyland Klein 				clk_base + PLLU_OUTA, 0,
31486b301a05SRhyland Klein 				TEGRA_DIVIDER_ROUND_UP,
31496b301a05SRhyland Klein 				24, 8, 1, &pll_u_lock);
31506b301a05SRhyland Klein 	clk = tegra_clk_register_pll_out("pll_u_out2", "pll_u_out2_div",
31516b301a05SRhyland Klein 				clk_base + PLLU_OUTA, 17, 16,
31526b301a05SRhyland Klein 				CLK_SET_RATE_PARENT, 0, &pll_u_lock);
31536b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_u_out2", NULL);
31546b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_U_OUT2] = clk;
31556b301a05SRhyland Klein 
31566b301a05SRhyland Klein 	/* PLLU_480M */
31576b301a05SRhyland Klein 	clk = clk_register_gate(NULL, "pll_u_480M", "pll_u_vco",
31586b301a05SRhyland Klein 				CLK_SET_RATE_PARENT, clk_base + PLLU_BASE,
31596b301a05SRhyland Klein 				22, 0, &pll_u_lock);
31606b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_u_480M", NULL);
31616b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_U_480M] = clk;
31626b301a05SRhyland Klein 
31636b301a05SRhyland Klein 	/* PLLU_60M */
31646b301a05SRhyland Klein 	clk = clk_register_gate(NULL, "pll_u_60M", "pll_u_out2",
31656b301a05SRhyland Klein 				CLK_SET_RATE_PARENT, clk_base + PLLU_BASE,
31667157c69aSAlex Frid 				23, 0, &pll_u_lock);
31676b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_u_60M", NULL);
31686b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_U_60M] = clk;
31696b301a05SRhyland Klein 
31706b301a05SRhyland Klein 	/* PLLU_48M */
31716b301a05SRhyland Klein 	clk = clk_register_gate(NULL, "pll_u_48M", "pll_u_out1",
31726b301a05SRhyland Klein 				CLK_SET_RATE_PARENT, clk_base + PLLU_BASE,
31737157c69aSAlex Frid 				25, 0, &pll_u_lock);
31746b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_u_48M", NULL);
31756b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_U_48M] = clk;
31766b301a05SRhyland Klein 
31776b301a05SRhyland Klein 	/* PLLD */
31786b301a05SRhyland Klein 	clk = tegra_clk_register_pll("pll_d", "pll_ref", clk_base, pmc, 0,
31796b301a05SRhyland Klein 			    &pll_d_params, &pll_d_lock);
31806b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_d", NULL);
31816b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_D] = clk;
31826b301a05SRhyland Klein 
31836b301a05SRhyland Klein 	/* PLLD_OUT0 */
31846b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "pll_d_out0", "pll_d",
31856b301a05SRhyland Klein 					CLK_SET_RATE_PARENT, 1, 2);
31866b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_d_out0", NULL);
31876b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_D_OUT0] = clk;
31886b301a05SRhyland Klein 
31896b301a05SRhyland Klein 	/* PLLRE */
3190926655f9SRhyland Klein 	clk = tegra_clk_register_pllre_tegra210("pll_re_vco", "pll_ref",
3191926655f9SRhyland Klein 						clk_base, pmc, 0,
3192926655f9SRhyland Klein 						&pll_re_vco_params,
3193926655f9SRhyland Klein 						&pll_re_lock, pll_ref_freq);
31946b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_re_vco", NULL);
31956b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_RE_VCO] = clk;
31966b301a05SRhyland Klein 
31976b301a05SRhyland Klein 	clk = clk_register_divider_table(NULL, "pll_re_out", "pll_re_vco", 0,
31986b301a05SRhyland Klein 					 clk_base + PLLRE_BASE, 16, 5, 0,
31996b301a05SRhyland Klein 					 pll_vco_post_div_table, &pll_re_lock);
32006b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_re_out", NULL);
32016b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_RE_OUT] = clk;
32026b301a05SRhyland Klein 
3203926655f9SRhyland Klein 	clk = tegra_clk_register_divider("pll_re_out1_div", "pll_re_vco",
3204926655f9SRhyland Klein 					 clk_base + PLLRE_OUT1, 0,
3205926655f9SRhyland Klein 					 TEGRA_DIVIDER_ROUND_UP,
3206926655f9SRhyland Klein 					 8, 8, 1, NULL);
3207926655f9SRhyland Klein 	clk = tegra_clk_register_pll_out("pll_re_out1", "pll_re_out1_div",
3208926655f9SRhyland Klein 					 clk_base + PLLRE_OUT1, 1, 0,
3209926655f9SRhyland Klein 					 CLK_SET_RATE_PARENT, 0, NULL);
3210926655f9SRhyland Klein 	clks[TEGRA210_CLK_PLL_RE_OUT1] = clk;
3211926655f9SRhyland Klein 
32126b301a05SRhyland Klein 	/* PLLE */
32136b301a05SRhyland Klein 	clk = tegra_clk_register_plle_tegra210("pll_e", "pll_ref",
32146b301a05SRhyland Klein 				      clk_base, 0, &pll_e_params, NULL);
32156b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_e", NULL);
32166b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_E] = clk;
32176b301a05SRhyland Klein 
32186b301a05SRhyland Klein 	/* PLLC4 */
32196b301a05SRhyland Klein 	clk = tegra_clk_register_pllre("pll_c4_vco", "pll_ref", clk_base, pmc,
32206b301a05SRhyland Klein 			     0, &pll_c4_vco_params, NULL, pll_ref_freq);
32216b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c4_vco", NULL);
32226b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C4] = clk;
32236b301a05SRhyland Klein 
32246b301a05SRhyland Klein 	/* PLLC4_OUT0 */
32256b301a05SRhyland Klein 	clk = clk_register_divider_table(NULL, "pll_c4_out0", "pll_c4_vco", 0,
32266b301a05SRhyland Klein 					 clk_base + PLLC4_BASE, 19, 4, 0,
32276b301a05SRhyland Klein 					 pll_vco_post_div_table, NULL);
32286b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c4_out0", NULL);
32296b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C4_OUT0] = clk;
32306b301a05SRhyland Klein 
32316b301a05SRhyland Klein 	/* PLLC4_OUT1 */
32326b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "pll_c4_out1", "pll_c4_vco",
32336b301a05SRhyland Klein 					CLK_SET_RATE_PARENT, 1, 3);
32346b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c4_out1", NULL);
32356b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C4_OUT1] = clk;
32366b301a05SRhyland Klein 
32376b301a05SRhyland Klein 	/* PLLC4_OUT2 */
32386b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "pll_c4_out2", "pll_c4_vco",
32396b301a05SRhyland Klein 					CLK_SET_RATE_PARENT, 1, 5);
32406b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c4_out2", NULL);
32416b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C4_OUT2] = clk;
32426b301a05SRhyland Klein 
32436b301a05SRhyland Klein 	/* PLLC4_OUT3 */
32446b301a05SRhyland Klein 	clk = tegra_clk_register_divider("pll_c4_out3_div", "pll_c4_out0",
32456b301a05SRhyland Klein 			clk_base + PLLC4_OUT, 0, TEGRA_DIVIDER_ROUND_UP,
32466b301a05SRhyland Klein 			8, 8, 1, NULL);
32476b301a05SRhyland Klein 	clk = tegra_clk_register_pll_out("pll_c4_out3", "pll_c4_out3_div",
32486b301a05SRhyland Klein 				clk_base + PLLC4_OUT, 1, 0,
32496b301a05SRhyland Klein 				CLK_SET_RATE_PARENT, 0, NULL);
32506b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_c4_out3", NULL);
32516b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_C4_OUT3] = clk;
32526b301a05SRhyland Klein 
32536b301a05SRhyland Klein 	/* PLLDP */
32546b301a05SRhyland Klein 	clk = tegra_clk_register_pllss_tegra210("pll_dp", "pll_ref", clk_base,
32556b301a05SRhyland Klein 					0, &pll_dp_params, NULL);
32566b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_dp", NULL);
32576b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_DP] = clk;
32586b301a05SRhyland Klein 
32596b301a05SRhyland Klein 	/* PLLD2 */
32606b301a05SRhyland Klein 	clk = tegra_clk_register_pllss_tegra210("pll_d2", "pll_ref", clk_base,
32616b301a05SRhyland Klein 					0, &pll_d2_params, NULL);
32626b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_d2", NULL);
32636b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_D2] = clk;
32646b301a05SRhyland Klein 
32656b301a05SRhyland Klein 	/* PLLD2_OUT0 */
32666b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "pll_d2_out0", "pll_d2",
32676b301a05SRhyland Klein 					CLK_SET_RATE_PARENT, 1, 1);
32686b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_d2_out0", NULL);
32696b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_D2_OUT0] = clk;
32706b301a05SRhyland Klein 
32716b301a05SRhyland Klein 	/* PLLP_OUT2 */
32726b301a05SRhyland Klein 	clk = clk_register_fixed_factor(NULL, "pll_p_out2", "pll_p",
32736b301a05SRhyland Klein 					CLK_SET_RATE_PARENT, 1, 2);
32746b301a05SRhyland Klein 	clk_register_clkdev(clk, "pll_p_out2", NULL);
32756b301a05SRhyland Klein 	clks[TEGRA210_CLK_PLL_P_OUT2] = clk;
32766b301a05SRhyland Klein 
32776b301a05SRhyland Klein }
32786b301a05SRhyland Klein 
32796b301a05SRhyland Klein /* Tegra210 CPU clock and reset control functions */
32806b301a05SRhyland Klein static void tegra210_wait_cpu_in_reset(u32 cpu)
32816b301a05SRhyland Klein {
32826b301a05SRhyland Klein 	unsigned int reg;
32836b301a05SRhyland Klein 
32846b301a05SRhyland Klein 	do {
32856b301a05SRhyland Klein 		reg = readl(clk_base + CLK_RST_CONTROLLER_CPU_CMPLX_STATUS);
32866b301a05SRhyland Klein 		cpu_relax();
32876b301a05SRhyland Klein 	} while (!(reg & (1 << cpu)));  /* check CPU been reset or not */
32886b301a05SRhyland Klein }
32896b301a05SRhyland Klein 
32906b301a05SRhyland Klein static void tegra210_disable_cpu_clock(u32 cpu)
32916b301a05SRhyland Klein {
32926b301a05SRhyland Klein 	/* flow controller would take care in the power sequence. */
32936b301a05SRhyland Klein }
32946b301a05SRhyland Klein 
32956b301a05SRhyland Klein #ifdef CONFIG_PM_SLEEP
32966b301a05SRhyland Klein static void tegra210_cpu_clock_suspend(void)
32976b301a05SRhyland Klein {
32986b301a05SRhyland Klein 	/* switch coresite to clk_m, save off original source */
32996b301a05SRhyland Klein 	tegra210_cpu_clk_sctx.clk_csite_src =
33006b301a05SRhyland Klein 				readl(clk_base + CLK_SOURCE_CSITE);
33016b301a05SRhyland Klein 	writel(3 << 30, clk_base + CLK_SOURCE_CSITE);
33026b301a05SRhyland Klein }
33036b301a05SRhyland Klein 
33046b301a05SRhyland Klein static void tegra210_cpu_clock_resume(void)
33056b301a05SRhyland Klein {
33066b301a05SRhyland Klein 	writel(tegra210_cpu_clk_sctx.clk_csite_src,
33076b301a05SRhyland Klein 				clk_base + CLK_SOURCE_CSITE);
33086b301a05SRhyland Klein }
33096b301a05SRhyland Klein #endif
33106b301a05SRhyland Klein 
33116b301a05SRhyland Klein static struct tegra_cpu_car_ops tegra210_cpu_car_ops = {
33126b301a05SRhyland Klein 	.wait_for_reset	= tegra210_wait_cpu_in_reset,
33136b301a05SRhyland Klein 	.disable_clock	= tegra210_disable_cpu_clock,
33146b301a05SRhyland Klein #ifdef CONFIG_PM_SLEEP
33156b301a05SRhyland Klein 	.suspend	= tegra210_cpu_clock_suspend,
33166b301a05SRhyland Klein 	.resume		= tegra210_cpu_clock_resume,
33176b301a05SRhyland Klein #endif
33186b301a05SRhyland Klein };
33196b301a05SRhyland Klein 
33206b301a05SRhyland Klein static const struct of_device_id pmc_match[] __initconst = {
33216b301a05SRhyland Klein 	{ .compatible = "nvidia,tegra210-pmc" },
33226b301a05SRhyland Klein 	{ },
33236b301a05SRhyland Klein };
33246b301a05SRhyland Klein 
33256b301a05SRhyland Klein static struct tegra_clk_init_table init_table[] __initdata = {
33266b301a05SRhyland Klein 	{ TEGRA210_CLK_UARTA, TEGRA210_CLK_PLL_P, 408000000, 0 },
33276b301a05SRhyland Klein 	{ TEGRA210_CLK_UARTB, TEGRA210_CLK_PLL_P, 408000000, 0 },
33286b301a05SRhyland Klein 	{ TEGRA210_CLK_UARTC, TEGRA210_CLK_PLL_P, 408000000, 0 },
33296b301a05SRhyland Klein 	{ TEGRA210_CLK_UARTD, TEGRA210_CLK_PLL_P, 408000000, 0 },
33306b301a05SRhyland Klein 	{ TEGRA210_CLK_PLL_A, TEGRA210_CLK_CLK_MAX, 564480000, 1 },
33316b301a05SRhyland Klein 	{ TEGRA210_CLK_PLL_A_OUT0, TEGRA210_CLK_CLK_MAX, 11289600, 1 },
33326b301a05SRhyland Klein 	{ TEGRA210_CLK_EXTERN1, TEGRA210_CLK_PLL_A_OUT0, 0, 1 },
33336b301a05SRhyland Klein 	{ TEGRA210_CLK_CLK_OUT_1_MUX, TEGRA210_CLK_EXTERN1, 0, 1 },
33346b301a05SRhyland Klein 	{ TEGRA210_CLK_CLK_OUT_1, TEGRA210_CLK_CLK_MAX, 0, 1 },
33356b301a05SRhyland Klein 	{ TEGRA210_CLK_I2S0, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 },
33366b301a05SRhyland Klein 	{ TEGRA210_CLK_I2S1, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 },
33376b301a05SRhyland Klein 	{ TEGRA210_CLK_I2S2, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 },
33386b301a05SRhyland Klein 	{ TEGRA210_CLK_I2S3, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 },
33396b301a05SRhyland Klein 	{ TEGRA210_CLK_I2S4, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 },
33406b301a05SRhyland Klein 	{ TEGRA210_CLK_HOST1X, TEGRA210_CLK_PLL_P, 136000000, 1 },
33416b301a05SRhyland Klein 	{ TEGRA210_CLK_SCLK_MUX, TEGRA210_CLK_PLL_P, 0, 1 },
33422dcabf05SDmitry Osipenko 	{ TEGRA210_CLK_SCLK, TEGRA210_CLK_CLK_MAX, 102000000, 0 },
33436b301a05SRhyland Klein 	{ TEGRA210_CLK_DFLL_SOC, TEGRA210_CLK_PLL_P, 51000000, 1 },
33446b301a05SRhyland Klein 	{ TEGRA210_CLK_DFLL_REF, TEGRA210_CLK_PLL_P, 51000000, 1 },
33456b301a05SRhyland Klein 	{ TEGRA210_CLK_SBC4, TEGRA210_CLK_PLL_P, 12000000, 1 },
33466b301a05SRhyland Klein 	{ TEGRA210_CLK_PLL_RE_VCO, TEGRA210_CLK_CLK_MAX, 672000000, 1 },
33476b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_GATE, TEGRA210_CLK_CLK_MAX, 0, 1 },
33486b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_SS_SRC, TEGRA210_CLK_PLL_U_480M, 120000000, 0 },
33496b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_FS_SRC, TEGRA210_CLK_PLL_U_48M, 48000000, 0 },
33506b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_HS_SRC, TEGRA210_CLK_XUSB_SS_SRC, 120000000, 0 },
33516b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_SSP_SRC, TEGRA210_CLK_XUSB_SS_SRC, 120000000, 0 },
33526b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_FALCON_SRC, TEGRA210_CLK_PLL_P_OUT_XUSB, 204000000, 0 },
33536b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_HOST_SRC, TEGRA210_CLK_PLL_P_OUT_XUSB, 102000000, 0 },
33546b301a05SRhyland Klein 	{ TEGRA210_CLK_XUSB_DEV_SRC, TEGRA210_CLK_PLL_P_OUT_XUSB, 102000000, 0 },
33556b301a05SRhyland Klein 	{ TEGRA210_CLK_SATA, TEGRA210_CLK_PLL_P, 104000000, 0 },
33566b301a05SRhyland Klein 	{ TEGRA210_CLK_SATA_OOB, TEGRA210_CLK_PLL_P, 204000000, 0 },
33576b301a05SRhyland Klein 	{ TEGRA210_CLK_MSELECT, TEGRA210_CLK_CLK_MAX, 0, 1 },
33586b301a05SRhyland Klein 	{ TEGRA210_CLK_CSITE, TEGRA210_CLK_CLK_MAX, 0, 1 },
3359bea1baa1SPeter De Schrijver 	/* TODO find a way to enable this on-demand */
3360bea1baa1SPeter De Schrijver 	{ TEGRA210_CLK_DBGAPB, TEGRA210_CLK_CLK_MAX, 0, 1 },
33616b301a05SRhyland Klein 	{ TEGRA210_CLK_TSENSOR, TEGRA210_CLK_CLK_M, 400000, 0 },
33626b301a05SRhyland Klein 	{ TEGRA210_CLK_I2C1, TEGRA210_CLK_PLL_P, 0, 0 },
33636b301a05SRhyland Klein 	{ TEGRA210_CLK_I2C2, TEGRA210_CLK_PLL_P, 0, 0 },
33646b301a05SRhyland Klein 	{ TEGRA210_CLK_I2C3, TEGRA210_CLK_PLL_P, 0, 0 },
33656b301a05SRhyland Klein 	{ TEGRA210_CLK_I2C4, TEGRA210_CLK_PLL_P, 0, 0 },
33666b301a05SRhyland Klein 	{ TEGRA210_CLK_I2C5, TEGRA210_CLK_PLL_P, 0, 0 },
33676b301a05SRhyland Klein 	{ TEGRA210_CLK_I2C6, TEGRA210_CLK_PLL_P, 0, 0 },
33686b301a05SRhyland Klein 	{ TEGRA210_CLK_PLL_DP, TEGRA210_CLK_CLK_MAX, 270000000, 0 },
33696b301a05SRhyland Klein 	{ TEGRA210_CLK_SOC_THERM, TEGRA210_CLK_PLL_P, 51000000, 0 },
33706b301a05SRhyland Klein 	{ TEGRA210_CLK_CCLK_G, TEGRA210_CLK_CLK_MAX, 0, 1 },
3371e745f992SPeter De Schrijver 	{ TEGRA210_CLK_PLL_U_OUT1, TEGRA210_CLK_CLK_MAX, 48000000, 1 },
3372e745f992SPeter De Schrijver 	{ TEGRA210_CLK_PLL_U_OUT2, TEGRA210_CLK_CLK_MAX, 60000000, 1 },
3373845d782dSJon Hunter 	{ TEGRA210_CLK_SPDIF_IN_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 },
3374845d782dSJon Hunter 	{ TEGRA210_CLK_I2S0_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 },
3375845d782dSJon Hunter 	{ TEGRA210_CLK_I2S1_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 },
3376845d782dSJon Hunter 	{ TEGRA210_CLK_I2S2_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 },
3377845d782dSJon Hunter 	{ TEGRA210_CLK_I2S3_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 },
3378845d782dSJon Hunter 	{ TEGRA210_CLK_I2S4_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 },
3379845d782dSJon Hunter 	{ TEGRA210_CLK_VIMCLK_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 },
33806b301a05SRhyland Klein 	/* This MUST be the last entry. */
33816b301a05SRhyland Klein 	{ TEGRA210_CLK_CLK_MAX, TEGRA210_CLK_CLK_MAX, 0, 0 },
33826b301a05SRhyland Klein };
33836b301a05SRhyland Klein 
33846b301a05SRhyland Klein /**
33856b301a05SRhyland Klein  * tegra210_clock_apply_init_table - initialize clocks on Tegra210 SoCs
33866b301a05SRhyland Klein  *
33876b301a05SRhyland Klein  * Program an initial clock rate and enable or disable clocks needed
33886b301a05SRhyland Klein  * by the rest of the kernel, for Tegra210 SoCs.  It is intended to be
33896b301a05SRhyland Klein  * called by assigning a pointer to it to tegra_clk_apply_init_table -
33906b301a05SRhyland Klein  * this will be called as an arch_initcall.  No return value.
33916b301a05SRhyland Klein  */
33926b301a05SRhyland Klein static void __init tegra210_clock_apply_init_table(void)
33936b301a05SRhyland Klein {
33946b301a05SRhyland Klein 	tegra_init_from_table(init_table, clks, TEGRA210_CLK_CLK_MAX);
33956b301a05SRhyland Klein }
33966b301a05SRhyland Klein 
33976b301a05SRhyland Klein /**
339868d724ceSPeter De Schrijver  * tegra210_car_barrier - wait for pending writes to the CAR to complete
339968d724ceSPeter De Schrijver  *
340068d724ceSPeter De Schrijver  * Wait for any outstanding writes to the CAR MMIO space from this CPU
340168d724ceSPeter De Schrijver  * to complete before continuing execution.  No return value.
340268d724ceSPeter De Schrijver  */
340368d724ceSPeter De Schrijver static void tegra210_car_barrier(void)
340468d724ceSPeter De Schrijver {
340568d724ceSPeter De Schrijver 	readl_relaxed(clk_base + RST_DFLL_DVCO);
340668d724ceSPeter De Schrijver }
340768d724ceSPeter De Schrijver 
340868d724ceSPeter De Schrijver /**
340968d724ceSPeter De Schrijver  * tegra210_clock_assert_dfll_dvco_reset - assert the DFLL's DVCO reset
341068d724ceSPeter De Schrijver  *
341168d724ceSPeter De Schrijver  * Assert the reset line of the DFLL's DVCO.  No return value.
341268d724ceSPeter De Schrijver  */
341368d724ceSPeter De Schrijver static void tegra210_clock_assert_dfll_dvco_reset(void)
341468d724ceSPeter De Schrijver {
341568d724ceSPeter De Schrijver 	u32 v;
341668d724ceSPeter De Schrijver 
341768d724ceSPeter De Schrijver 	v = readl_relaxed(clk_base + RST_DFLL_DVCO);
341868d724ceSPeter De Schrijver 	v |= (1 << DVFS_DFLL_RESET_SHIFT);
341968d724ceSPeter De Schrijver 	writel_relaxed(v, clk_base + RST_DFLL_DVCO);
342068d724ceSPeter De Schrijver 	tegra210_car_barrier();
342168d724ceSPeter De Schrijver }
342268d724ceSPeter De Schrijver 
342368d724ceSPeter De Schrijver /**
342468d724ceSPeter De Schrijver  * tegra210_clock_deassert_dfll_dvco_reset - deassert the DFLL's DVCO reset
342568d724ceSPeter De Schrijver  *
342668d724ceSPeter De Schrijver  * Deassert the reset line of the DFLL's DVCO, allowing the DVCO to
342768d724ceSPeter De Schrijver  * operate.  No return value.
342868d724ceSPeter De Schrijver  */
342968d724ceSPeter De Schrijver static void tegra210_clock_deassert_dfll_dvco_reset(void)
343068d724ceSPeter De Schrijver {
343168d724ceSPeter De Schrijver 	u32 v;
343268d724ceSPeter De Schrijver 
343368d724ceSPeter De Schrijver 	v = readl_relaxed(clk_base + RST_DFLL_DVCO);
343468d724ceSPeter De Schrijver 	v &= ~(1 << DVFS_DFLL_RESET_SHIFT);
343568d724ceSPeter De Schrijver 	writel_relaxed(v, clk_base + RST_DFLL_DVCO);
343668d724ceSPeter De Schrijver 	tegra210_car_barrier();
343768d724ceSPeter De Schrijver }
343868d724ceSPeter De Schrijver 
343968d724ceSPeter De Schrijver static int tegra210_reset_assert(unsigned long id)
344068d724ceSPeter De Schrijver {
344168d724ceSPeter De Schrijver 	if (id == TEGRA210_RST_DFLL_DVCO)
344268d724ceSPeter De Schrijver 		tegra210_clock_assert_dfll_dvco_reset();
344368d724ceSPeter De Schrijver 	else if (id == TEGRA210_RST_ADSP)
344468d724ceSPeter De Schrijver 		writel(GENMASK(26, 21) | BIT(7),
344568d724ceSPeter De Schrijver 			clk_base + CLK_RST_CONTROLLER_RST_DEV_Y_SET);
344668d724ceSPeter De Schrijver 	else
344768d724ceSPeter De Schrijver 		return -EINVAL;
344868d724ceSPeter De Schrijver 
344968d724ceSPeter De Schrijver 	return 0;
345068d724ceSPeter De Schrijver }
345168d724ceSPeter De Schrijver 
345268d724ceSPeter De Schrijver static int tegra210_reset_deassert(unsigned long id)
345368d724ceSPeter De Schrijver {
345468d724ceSPeter De Schrijver 	if (id == TEGRA210_RST_DFLL_DVCO)
345568d724ceSPeter De Schrijver 		tegra210_clock_deassert_dfll_dvco_reset();
345668d724ceSPeter De Schrijver 	else if (id == TEGRA210_RST_ADSP) {
345768d724ceSPeter De Schrijver 		writel(BIT(21), clk_base + CLK_RST_CONTROLLER_RST_DEV_Y_CLR);
345868d724ceSPeter De Schrijver 		/*
345968d724ceSPeter De Schrijver 		 * Considering adsp cpu clock (min: 12.5MHZ, max: 1GHz)
346068d724ceSPeter De Schrijver 		 * a delay of 5us ensures that it's at least
346168d724ceSPeter De Schrijver 		 * 6 * adsp_cpu_cycle_period long.
346268d724ceSPeter De Schrijver 		 */
346368d724ceSPeter De Schrijver 		udelay(5);
346468d724ceSPeter De Schrijver 		writel(GENMASK(26, 22) | BIT(7),
346568d724ceSPeter De Schrijver 			clk_base + CLK_RST_CONTROLLER_RST_DEV_Y_CLR);
346668d724ceSPeter De Schrijver 	} else
346768d724ceSPeter De Schrijver 		return -EINVAL;
346868d724ceSPeter De Schrijver 
346968d724ceSPeter De Schrijver 	return 0;
347068d724ceSPeter De Schrijver }
347168d724ceSPeter De Schrijver 
3472e403d005SPeter De Schrijver static void tegra210_mbist_clk_init(void)
3473e403d005SPeter De Schrijver {
3474e403d005SPeter De Schrijver 	unsigned int i, j;
3475e403d005SPeter De Schrijver 
3476e403d005SPeter De Schrijver 	for (i = 0; i < ARRAY_SIZE(tegra210_pg_mbist_war); i++) {
3477e403d005SPeter De Schrijver 		unsigned int num_clks = tegra210_pg_mbist_war[i].num_clks;
3478e403d005SPeter De Schrijver 		struct clk_bulk_data *clk_data;
3479e403d005SPeter De Schrijver 
3480e403d005SPeter De Schrijver 		if (!num_clks)
3481e403d005SPeter De Schrijver 			continue;
3482e403d005SPeter De Schrijver 
3483e403d005SPeter De Schrijver 		clk_data = kmalloc_array(num_clks, sizeof(*clk_data),
3484e403d005SPeter De Schrijver 					 GFP_KERNEL);
3485e403d005SPeter De Schrijver 		if (WARN_ON(!clk_data))
3486e403d005SPeter De Schrijver 			return;
3487e403d005SPeter De Schrijver 
3488e403d005SPeter De Schrijver 		tegra210_pg_mbist_war[i].clks = clk_data;
3489e403d005SPeter De Schrijver 		for (j = 0; j < num_clks; j++) {
3490e403d005SPeter De Schrijver 			int clk_id = tegra210_pg_mbist_war[i].clk_init_data[j];
3491e403d005SPeter De Schrijver 			struct clk *clk = clks[clk_id];
3492e403d005SPeter De Schrijver 
3493e403d005SPeter De Schrijver 			if (WARN(IS_ERR(clk), "clk_id: %d\n", clk_id)) {
3494e403d005SPeter De Schrijver 				kfree(clk_data);
3495e403d005SPeter De Schrijver 				tegra210_pg_mbist_war[i].clks = NULL;
3496e403d005SPeter De Schrijver 				break;
3497e403d005SPeter De Schrijver 			}
3498e403d005SPeter De Schrijver 			clk_data[j].clk = clk;
3499e403d005SPeter De Schrijver 		}
3500e403d005SPeter De Schrijver 	}
3501e403d005SPeter De Schrijver }
3502e403d005SPeter De Schrijver 
350368d724ceSPeter De Schrijver /**
35046b301a05SRhyland Klein  * tegra210_clock_init - Tegra210-specific clock initialization
35056b301a05SRhyland Klein  * @np: struct device_node * of the DT node for the SoC CAR IP block
35066b301a05SRhyland Klein  *
35076b301a05SRhyland Klein  * Register most SoC clocks for the Tegra210 system-on-chip.  Intended
35086b301a05SRhyland Klein  * to be called by the OF init code when a DT node with the
35096b301a05SRhyland Klein  * "nvidia,tegra210-car" string is encountered, and declared with
35106b301a05SRhyland Klein  * CLK_OF_DECLARE.  No return value.
35116b301a05SRhyland Klein  */
35126b301a05SRhyland Klein static void __init tegra210_clock_init(struct device_node *np)
35136b301a05SRhyland Klein {
35146b301a05SRhyland Klein 	struct device_node *node;
35156b301a05SRhyland Klein 	u32 value, clk_m_div;
35166b301a05SRhyland Klein 
35176b301a05SRhyland Klein 	clk_base = of_iomap(np, 0);
35186b301a05SRhyland Klein 	if (!clk_base) {
35196b301a05SRhyland Klein 		pr_err("ioremap tegra210 CAR failed\n");
35206b301a05SRhyland Klein 		return;
35216b301a05SRhyland Klein 	}
35226b301a05SRhyland Klein 
35236b301a05SRhyland Klein 	node = of_find_matching_node(NULL, pmc_match);
35246b301a05SRhyland Klein 	if (!node) {
35256b301a05SRhyland Klein 		pr_err("Failed to find pmc node\n");
35266b301a05SRhyland Klein 		WARN_ON(1);
35276b301a05SRhyland Klein 		return;
35286b301a05SRhyland Klein 	}
35296b301a05SRhyland Klein 
35306b301a05SRhyland Klein 	pmc_base = of_iomap(node, 0);
35316b301a05SRhyland Klein 	if (!pmc_base) {
35326b301a05SRhyland Klein 		pr_err("Can't map pmc registers\n");
35336b301a05SRhyland Klein 		WARN_ON(1);
35346b301a05SRhyland Klein 		return;
35356b301a05SRhyland Klein 	}
35366b301a05SRhyland Klein 
3537e403d005SPeter De Schrijver 	ahub_base = ioremap(TEGRA210_AHUB_BASE, SZ_64K);
3538e403d005SPeter De Schrijver 	if (!ahub_base) {
3539e403d005SPeter De Schrijver 		pr_err("ioremap tegra210 APE failed\n");
3540e403d005SPeter De Schrijver 		return;
3541e403d005SPeter De Schrijver 	}
3542e403d005SPeter De Schrijver 
3543e403d005SPeter De Schrijver 	dispa_base = ioremap(TEGRA210_DISPA_BASE, SZ_256K);
3544e403d005SPeter De Schrijver 	if (!dispa_base) {
3545e403d005SPeter De Schrijver 		pr_err("ioremap tegra210 DISPA failed\n");
3546e403d005SPeter De Schrijver 		return;
3547e403d005SPeter De Schrijver 	}
3548e403d005SPeter De Schrijver 
3549e403d005SPeter De Schrijver 	vic_base = ioremap(TEGRA210_VIC_BASE, SZ_256K);
3550e403d005SPeter De Schrijver 	if (!vic_base) {
3551e403d005SPeter De Schrijver 		pr_err("ioremap tegra210 VIC failed\n");
3552e403d005SPeter De Schrijver 		return;
3553e403d005SPeter De Schrijver 	}
3554e403d005SPeter De Schrijver 
35556b301a05SRhyland Klein 	clks = tegra_clk_init(clk_base, TEGRA210_CLK_CLK_MAX,
35566b301a05SRhyland Klein 			      TEGRA210_CAR_BANK_COUNT);
35576b301a05SRhyland Klein 	if (!clks)
35586b301a05SRhyland Klein 		return;
35596b301a05SRhyland Klein 
3560*5834fd75SJonas Gorski 	value = readl(clk_base + SPARE_REG0) >> CLK_M_DIVISOR_SHIFT;
35616b301a05SRhyland Klein 	clk_m_div = (value & CLK_M_DIVISOR_MASK) + 1;
35626b301a05SRhyland Klein 
35636b301a05SRhyland Klein 	if (tegra_osc_clk_init(clk_base, tegra210_clks, tegra210_input_freq,
35646b301a05SRhyland Klein 			       ARRAY_SIZE(tegra210_input_freq), clk_m_div,
35656b301a05SRhyland Klein 			       &osc_freq, &pll_ref_freq) < 0)
35666b301a05SRhyland Klein 		return;
35676b301a05SRhyland Klein 
35686b301a05SRhyland Klein 	tegra_fixed_clk_init(tegra210_clks);
35696b301a05SRhyland Klein 	tegra210_pll_init(clk_base, pmc_base);
35706b301a05SRhyland Klein 	tegra210_periph_clk_init(clk_base, pmc_base);
35716b301a05SRhyland Klein 	tegra_audio_clk_init(clk_base, pmc_base, tegra210_clks,
35726b301a05SRhyland Klein 			     tegra210_audio_plls,
3573845d782dSJon Hunter 			     ARRAY_SIZE(tegra210_audio_plls), 24576000);
35746b301a05SRhyland Klein 	tegra_pmc_clk_init(pmc_base, tegra210_clks);
35756b301a05SRhyland Klein 
35766b301a05SRhyland Klein 	/* For Tegra210, PLLD is the only source for DSIA & DSIB */
3577*5834fd75SJonas Gorski 	value = readl(clk_base + PLLD_BASE);
35786b301a05SRhyland Klein 	value &= ~BIT(25);
3579*5834fd75SJonas Gorski 	writel(value, clk_base + PLLD_BASE);
35806b301a05SRhyland Klein 
35816b301a05SRhyland Klein 	tegra_clk_apply_init_table = tegra210_clock_apply_init_table;
35826b301a05SRhyland Klein 
35836b301a05SRhyland Klein 	tegra_super_clk_gen5_init(clk_base, pmc_base, tegra210_clks,
35846b301a05SRhyland Klein 				  &pll_x_params);
358568d724ceSPeter De Schrijver 	tegra_init_special_resets(2, tegra210_reset_assert,
358668d724ceSPeter De Schrijver 				  tegra210_reset_deassert);
358768d724ceSPeter De Schrijver 
35885d797111SDmitry Osipenko 	tegra_add_of_provider(np, of_clk_src_onecell_get);
35896b301a05SRhyland Klein 	tegra_register_devclks(devclks, ARRAY_SIZE(devclks));
35906b301a05SRhyland Klein 
3591e403d005SPeter De Schrijver 	tegra210_mbist_clk_init();
3592e403d005SPeter De Schrijver 
35936b301a05SRhyland Klein 	tegra_cpu_car_ops = &tegra210_cpu_car_ops;
35946b301a05SRhyland Klein }
35956b301a05SRhyland Klein CLK_OF_DECLARE(tegra210, "nvidia,tegra210-car", tegra210_clock_init);
3596