19952f691SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only 26b301a05SRhyland Klein /* 36b301a05SRhyland Klein * Copyright (c) 2012-2014 NVIDIA CORPORATION. All rights reserved. 46b301a05SRhyland Klein */ 56b301a05SRhyland Klein 66b301a05SRhyland Klein #include <linux/io.h> 76b301a05SRhyland Klein #include <linux/clk.h> 86b301a05SRhyland Klein #include <linux/clk-provider.h> 96b301a05SRhyland Klein #include <linux/clkdev.h> 106b301a05SRhyland Klein #include <linux/of.h> 116b301a05SRhyland Klein #include <linux/of_address.h> 12535f296dSSowjanya Komatineni #include <linux/syscore_ops.h> 136b301a05SRhyland Klein #include <linux/delay.h> 146b301a05SRhyland Klein #include <linux/export.h> 15e403d005SPeter De Schrijver #include <linux/mutex.h> 166b301a05SRhyland Klein #include <linux/clk/tegra.h> 176b301a05SRhyland Klein #include <dt-bindings/clock/tegra210-car.h> 1868d724ceSPeter De Schrijver #include <dt-bindings/reset/tegra210-car.h> 19c8da78e8SStephen Boyd #include <linux/sizes.h> 20e403d005SPeter De Schrijver #include <soc/tegra/pmc.h> 216b301a05SRhyland Klein 226b301a05SRhyland Klein #include "clk.h" 236b301a05SRhyland Klein #include "clk-id.h" 246b301a05SRhyland Klein 256b301a05SRhyland Klein /* 266b301a05SRhyland Klein * TEGRA210_CAR_BANK_COUNT: the number of peripheral clock register 276b301a05SRhyland Klein * banks present in the Tegra210 CAR IP block. The banks are 286b301a05SRhyland Klein * identified by single letters, e.g.: L, H, U, V, W, X, Y. See 296b301a05SRhyland Klein * periph_regs[] in drivers/clk/tegra/clk.c 306b301a05SRhyland Klein */ 316b301a05SRhyland Klein #define TEGRA210_CAR_BANK_COUNT 7 326b301a05SRhyland Klein 336b301a05SRhyland Klein #define CLK_SOURCE_CSITE 0x1d4 346b301a05SRhyland Klein #define CLK_SOURCE_EMC 0x19c 35bc2e4d29SThierry Reding #define CLK_SOURCE_SOR1 0x410 3605308d7eSThierry Reding #define CLK_SOURCE_SOR0 0x414 3789e423c3SPeter De Schrijver #define CLK_SOURCE_LA 0x1f8 38c76a69e4SPeter De-Schrijver #define CLK_SOURCE_SDMMC2 0x154 39c76a69e4SPeter De-Schrijver #define CLK_SOURCE_SDMMC4 0x164 40*a3cba697SJoseph Lo #define CLK_SOURCE_EMC_DLL 0x664 416b301a05SRhyland Klein 426b301a05SRhyland Klein #define PLLC_BASE 0x80 436b301a05SRhyland Klein #define PLLC_OUT 0x84 446b301a05SRhyland Klein #define PLLC_MISC0 0x88 456b301a05SRhyland Klein #define PLLC_MISC1 0x8c 466b301a05SRhyland Klein #define PLLC_MISC2 0x5d0 476b301a05SRhyland Klein #define PLLC_MISC3 0x5d4 486b301a05SRhyland Klein 496b301a05SRhyland Klein #define PLLC2_BASE 0x4e8 506b301a05SRhyland Klein #define PLLC2_MISC0 0x4ec 516b301a05SRhyland Klein #define PLLC2_MISC1 0x4f0 526b301a05SRhyland Klein #define PLLC2_MISC2 0x4f4 536b301a05SRhyland Klein #define PLLC2_MISC3 0x4f8 546b301a05SRhyland Klein 556b301a05SRhyland Klein #define PLLC3_BASE 0x4fc 566b301a05SRhyland Klein #define PLLC3_MISC0 0x500 576b301a05SRhyland Klein #define PLLC3_MISC1 0x504 586b301a05SRhyland Klein #define PLLC3_MISC2 0x508 596b301a05SRhyland Klein #define PLLC3_MISC3 0x50c 606b301a05SRhyland Klein 616b301a05SRhyland Klein #define PLLM_BASE 0x90 626b301a05SRhyland Klein #define PLLM_MISC1 0x98 63474f2ba2SRhyland Klein #define PLLM_MISC2 0x9c 646b301a05SRhyland Klein #define PLLP_BASE 0xa0 656b301a05SRhyland Klein #define PLLP_MISC0 0xac 666b301a05SRhyland Klein #define PLLP_MISC1 0x680 676b301a05SRhyland Klein #define PLLA_BASE 0xb0 686b301a05SRhyland Klein #define PLLA_MISC0 0xbc 696b301a05SRhyland Klein #define PLLA_MISC1 0xb8 706b301a05SRhyland Klein #define PLLA_MISC2 0x5d8 716b301a05SRhyland Klein #define PLLD_BASE 0xd0 726b301a05SRhyland Klein #define PLLD_MISC0 0xdc 736b301a05SRhyland Klein #define PLLD_MISC1 0xd8 746b301a05SRhyland Klein #define PLLU_BASE 0xc0 756b301a05SRhyland Klein #define PLLU_OUTA 0xc4 766b301a05SRhyland Klein #define PLLU_MISC0 0xcc 776b301a05SRhyland Klein #define PLLU_MISC1 0xc8 786b301a05SRhyland Klein #define PLLX_BASE 0xe0 796b301a05SRhyland Klein #define PLLX_MISC0 0xe4 806b301a05SRhyland Klein #define PLLX_MISC1 0x510 816b301a05SRhyland Klein #define PLLX_MISC2 0x514 826b301a05SRhyland Klein #define PLLX_MISC3 0x518 836b301a05SRhyland Klein #define PLLX_MISC4 0x5f0 846b301a05SRhyland Klein #define PLLX_MISC5 0x5f4 856b301a05SRhyland Klein #define PLLE_BASE 0xe8 866b301a05SRhyland Klein #define PLLE_MISC0 0xec 876b301a05SRhyland Klein #define PLLD2_BASE 0x4b8 886b301a05SRhyland Klein #define PLLD2_MISC0 0x4bc 896b301a05SRhyland Klein #define PLLD2_MISC1 0x570 906b301a05SRhyland Klein #define PLLD2_MISC2 0x574 916b301a05SRhyland Klein #define PLLD2_MISC3 0x578 926b301a05SRhyland Klein #define PLLE_AUX 0x48c 936b301a05SRhyland Klein #define PLLRE_BASE 0x4c4 946b301a05SRhyland Klein #define PLLRE_MISC0 0x4c8 95926655f9SRhyland Klein #define PLLRE_OUT1 0x4cc 966b301a05SRhyland Klein #define PLLDP_BASE 0x590 976b301a05SRhyland Klein #define PLLDP_MISC 0x594 986b301a05SRhyland Klein 996b301a05SRhyland Klein #define PLLC4_BASE 0x5a4 1006b301a05SRhyland Klein #define PLLC4_MISC0 0x5a8 1016b301a05SRhyland Klein #define PLLC4_OUT 0x5e4 1026b301a05SRhyland Klein #define PLLMB_BASE 0x5e8 103474f2ba2SRhyland Klein #define PLLMB_MISC1 0x5ec 1046b301a05SRhyland Klein #define PLLA1_BASE 0x6a4 1056b301a05SRhyland Klein #define PLLA1_MISC0 0x6a8 1066b301a05SRhyland Klein #define PLLA1_MISC1 0x6ac 1076b301a05SRhyland Klein #define PLLA1_MISC2 0x6b0 1086b301a05SRhyland Klein #define PLLA1_MISC3 0x6b4 1096b301a05SRhyland Klein 1106b301a05SRhyland Klein #define PLLU_IDDQ_BIT 31 1116b301a05SRhyland Klein #define PLLCX_IDDQ_BIT 27 1126b301a05SRhyland Klein #define PLLRE_IDDQ_BIT 24 1136b301a05SRhyland Klein #define PLLA_IDDQ_BIT 25 1146b301a05SRhyland Klein #define PLLD_IDDQ_BIT 20 1156b301a05SRhyland Klein #define PLLSS_IDDQ_BIT 18 1166b301a05SRhyland Klein #define PLLM_IDDQ_BIT 5 1176b301a05SRhyland Klein #define PLLMB_IDDQ_BIT 17 1186b301a05SRhyland Klein #define PLLXP_IDDQ_BIT 3 1196b301a05SRhyland Klein 1206b301a05SRhyland Klein #define PLLCX_RESET_BIT 30 1216b301a05SRhyland Klein 1226b301a05SRhyland Klein #define PLL_BASE_LOCK BIT(27) 1236b301a05SRhyland Klein #define PLLCX_BASE_LOCK BIT(26) 1246b301a05SRhyland Klein #define PLLE_MISC_LOCK BIT(11) 1256b301a05SRhyland Klein #define PLLRE_MISC_LOCK BIT(27) 1266b301a05SRhyland Klein 1276b301a05SRhyland Klein #define PLL_MISC_LOCK_ENABLE 18 1286b301a05SRhyland Klein #define PLLC_MISC_LOCK_ENABLE 24 1296b301a05SRhyland Klein #define PLLDU_MISC_LOCK_ENABLE 22 1306b301a05SRhyland Klein #define PLLU_MISC_LOCK_ENABLE 29 1316b301a05SRhyland Klein #define PLLE_MISC_LOCK_ENABLE 9 1326b301a05SRhyland Klein #define PLLRE_MISC_LOCK_ENABLE 30 1336b301a05SRhyland Klein #define PLLSS_MISC_LOCK_ENABLE 30 1346b301a05SRhyland Klein #define PLLP_MISC_LOCK_ENABLE 18 1356b301a05SRhyland Klein #define PLLM_MISC_LOCK_ENABLE 4 1366b301a05SRhyland Klein #define PLLMB_MISC_LOCK_ENABLE 16 1376b301a05SRhyland Klein #define PLLA_MISC_LOCK_ENABLE 28 1386b301a05SRhyland Klein #define PLLU_MISC_LOCK_ENABLE 29 1396b301a05SRhyland Klein #define PLLD_MISC_LOCK_ENABLE 18 1406b301a05SRhyland Klein 1416b301a05SRhyland Klein #define PLLA_SDM_DIN_MASK 0xffff 1426b301a05SRhyland Klein #define PLLA_SDM_EN_MASK BIT(26) 1436b301a05SRhyland Klein 1446b301a05SRhyland Klein #define PLLD_SDM_EN_MASK BIT(16) 1456b301a05SRhyland Klein 1466b301a05SRhyland Klein #define PLLD2_SDM_EN_MASK BIT(31) 147030999feSPeter De Schrijver #define PLLD2_SSC_EN_MASK 0 1486b301a05SRhyland Klein 1496b301a05SRhyland Klein #define PLLDP_SS_CFG 0x598 1506b301a05SRhyland Klein #define PLLDP_SDM_EN_MASK BIT(31) 1516b301a05SRhyland Klein #define PLLDP_SSC_EN_MASK BIT(30) 1526b301a05SRhyland Klein #define PLLDP_SS_CTRL1 0x59c 1536b301a05SRhyland Klein #define PLLDP_SS_CTRL2 0x5a0 1546b301a05SRhyland Klein 1556b301a05SRhyland Klein #define PMC_PLLM_WB0_OVERRIDE 0x1dc 1566b301a05SRhyland Klein #define PMC_PLLM_WB0_OVERRIDE_2 0x2b0 1576b301a05SRhyland Klein 158e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2 0x488 159e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_STABLE_COUNT(x) (((x) & 0xfff) << 6) 160e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_ACTIVE_DLY_COUNT(x) (((x) & 0x3f) << 18) 161e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_A_POWERDOWN BIT(0) 162e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_A_POWERUP BIT(1) 163e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_B_POWERDOWN BIT(2) 164e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_B_POWERUP BIT(3) 165e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_C_POWERDOWN BIT(4) 166e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_C_POWERUP BIT(5) 167e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_D_POWERDOWN BIT(24) 168e745f992SPeter De Schrijver #define UTMIP_PLL_CFG2_FORCE_PD_SAMP_D_POWERUP BIT(25) 169e745f992SPeter De Schrijver 170e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1 0x484 171e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_ENABLE_DLY_COUNT(x) (((x) & 0x1f) << 27) 172e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_XTAL_FREQ_COUNT(x) (((x) & 0xfff) << 0) 173e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLLU_POWERUP BIT(17) 174e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLLU_POWERDOWN BIT(16) 175e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERUP BIT(15) 176e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERDOWN BIT(14) 177e745f992SPeter De Schrijver #define UTMIP_PLL_CFG1_FORCE_PLL_ACTIVE_POWERDOWN BIT(12) 178e745f992SPeter De Schrijver 1793358d2d9SAndrew Bresticker #define SATA_PLL_CFG0 0x490 1803358d2d9SAndrew Bresticker #define SATA_PLL_CFG0_PADPLL_RESET_SWCTL BIT(0) 1813358d2d9SAndrew Bresticker #define SATA_PLL_CFG0_PADPLL_USE_LOCKDET BIT(2) 18259af78d7SPeter De Schrijver #define SATA_PLL_CFG0_SATA_SEQ_IN_SWCTL BIT(4) 18359af78d7SPeter De Schrijver #define SATA_PLL_CFG0_SATA_SEQ_RESET_INPUT_VALUE BIT(5) 18459af78d7SPeter De Schrijver #define SATA_PLL_CFG0_SATA_SEQ_LANE_PD_INPUT_VALUE BIT(6) 18559af78d7SPeter De Schrijver #define SATA_PLL_CFG0_SATA_SEQ_PADPLL_PD_INPUT_VALUE BIT(7) 18659af78d7SPeter De Schrijver 1873358d2d9SAndrew Bresticker #define SATA_PLL_CFG0_PADPLL_SLEEP_IDDQ BIT(13) 1883358d2d9SAndrew Bresticker #define SATA_PLL_CFG0_SEQ_ENABLE BIT(24) 1893358d2d9SAndrew Bresticker 1903358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0 0x51c 1913358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_PADPLL_RESET_SWCTL BIT(0) 1923358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_CLK_ENABLE_SWCTL BIT(2) 1933358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_PADPLL_USE_LOCKDET BIT(6) 1943358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_PADPLL_SLEEP_IDDQ BIT(13) 1953358d2d9SAndrew Bresticker #define XUSBIO_PLL_CFG0_SEQ_ENABLE BIT(24) 1963358d2d9SAndrew Bresticker 1976b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0 0x52c 1986b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_UTMIPLL_LOCK BIT(31) 1996b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_SEQ_START_STATE BIT(25) 2006b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_SEQ_ENABLE BIT(24) 2016b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_IDDQ_PD_INCLUDE BIT(7) 2026b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_USE_LOCKDET BIT(6) 2036b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_SEQ_RESET_INPUT_VALUE BIT(5) 2046b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_SEQ_IN_SWCTL BIT(4) 2056b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_CLK_ENABLE_SWCTL BIT(2) 2066b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_IDDQ_OVERRIDE BIT(1) 2076b301a05SRhyland Klein #define UTMIPLL_HW_PWRDN_CFG0_IDDQ_SWCTL BIT(0) 2086b301a05SRhyland Klein 2096b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0 0x530 2106b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_IDDQ_PD_INCLUDE BIT(28) 2116b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_SEQ_ENABLE BIT(24) 2126b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_USE_SWITCH_DETECT BIT(7) 2136b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_USE_LOCKDET BIT(6) 2146b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_CLK_ENABLE_SWCTL BIT(2) 2156b301a05SRhyland Klein #define PLLU_HW_PWRDN_CFG0_CLK_SWITCH_SWCTL BIT(0) 2166b301a05SRhyland Klein 2176b301a05SRhyland Klein #define XUSB_PLL_CFG0 0x534 2186b301a05SRhyland Klein #define XUSB_PLL_CFG0_UTMIPLL_LOCK_DLY 0x3ff 2196b301a05SRhyland Klein #define XUSB_PLL_CFG0_PLLU_LOCK_DLY_MASK (0x3ff << 14) 2206b301a05SRhyland Klein 2216b301a05SRhyland Klein #define SPARE_REG0 0x55c 2226b301a05SRhyland Klein #define CLK_M_DIVISOR_SHIFT 2 2236b301a05SRhyland Klein #define CLK_M_DIVISOR_MASK 0x3 2246b301a05SRhyland Klein 225535f296dSSowjanya Komatineni #define CLK_MASK_ARM 0x44 226535f296dSSowjanya Komatineni #define MISC_CLK_ENB 0x48 227535f296dSSowjanya Komatineni 22868d724ceSPeter De Schrijver #define RST_DFLL_DVCO 0x2f4 22968d724ceSPeter De Schrijver #define DVFS_DFLL_RESET_SHIFT 0 23068d724ceSPeter De Schrijver 231*a3cba697SJoseph Lo #define CLK_RST_CONTROLLER_CLK_OUT_ENB_X_SET 0x284 232*a3cba697SJoseph Lo #define CLK_RST_CONTROLLER_CLK_OUT_ENB_X_CLR 0x288 233*a3cba697SJoseph Lo #define CLK_OUT_ENB_X_CLK_ENB_EMC_DLL BIT(14) 234*a3cba697SJoseph Lo 23568d724ceSPeter De Schrijver #define CLK_RST_CONTROLLER_RST_DEV_Y_SET 0x2a8 23668d724ceSPeter De Schrijver #define CLK_RST_CONTROLLER_RST_DEV_Y_CLR 0x2ac 237535f296dSSowjanya Komatineni #define CPU_SOFTRST_CTRL 0x380 23868d724ceSPeter De Schrijver 239e403d005SPeter De Schrijver #define LVL2_CLK_GATE_OVRA 0xf8 240e403d005SPeter De Schrijver #define LVL2_CLK_GATE_OVRC 0x3a0 241e403d005SPeter De Schrijver #define LVL2_CLK_GATE_OVRD 0x3a4 242e403d005SPeter De Schrijver #define LVL2_CLK_GATE_OVRE 0x554 243e403d005SPeter De Schrijver 244e403d005SPeter De Schrijver /* I2S registers to handle during APE MBIST WAR */ 245e403d005SPeter De Schrijver #define TEGRA210_I2S_BASE 0x1000 246e403d005SPeter De Schrijver #define TEGRA210_I2S_SIZE 0x100 247e403d005SPeter De Schrijver #define TEGRA210_I2S_CTRLS 5 248e403d005SPeter De Schrijver #define TEGRA210_I2S_CG 0x88 249e403d005SPeter De Schrijver #define TEGRA210_I2S_CTRL 0xa0 250e403d005SPeter De Schrijver 251e403d005SPeter De Schrijver /* DISPA registers to handle during MBIST WAR */ 252e403d005SPeter De Schrijver #define DC_CMD_DISPLAY_COMMAND 0xc8 253e403d005SPeter De Schrijver #define DC_COM_DSC_TOP_CTL 0xcf8 254e403d005SPeter De Schrijver 255e403d005SPeter De Schrijver /* VIC register to handle during MBIST WAR */ 256e403d005SPeter De Schrijver #define NV_PVIC_THI_SLCG_OVERRIDE_LOW 0x8c 257e403d005SPeter De Schrijver 258e403d005SPeter De Schrijver /* APE, DISPA and VIC base addesses needed for MBIST WAR */ 259e403d005SPeter De Schrijver #define TEGRA210_AHUB_BASE 0x702d0000 260e403d005SPeter De Schrijver #define TEGRA210_DISPA_BASE 0x54200000 261e403d005SPeter De Schrijver #define TEGRA210_VIC_BASE 0x54340000 262e403d005SPeter De Schrijver 2636b301a05SRhyland Klein /* 2646b301a05SRhyland Klein * SDM fractional divisor is 16-bit 2's complement signed number within 2656b301a05SRhyland Klein * (-2^12 ... 2^12-1) range. Represented in PLL data structure as unsigned 2666b301a05SRhyland Klein * 16-bit value, with "0" divisor mapped to 0xFFFF. Data "0" is used to 2676b301a05SRhyland Klein * indicate that SDM is disabled. 2686b301a05SRhyland Klein * 2696b301a05SRhyland Klein * Effective ndiv value when SDM is enabled: ndiv + 1/2 + sdm_din/2^13 2706b301a05SRhyland Klein */ 2716b301a05SRhyland Klein #define PLL_SDM_COEFF BIT(13) 2726b301a05SRhyland Klein #define sdin_din_to_data(din) ((u16)((din) ? : 0xFFFFU)) 2736b301a05SRhyland Klein #define sdin_data_to_din(dat) (((dat) == 0xFFFFU) ? 0 : (s16)dat) 274a851ea2bSAlex Frid /* This macro returns ndiv effective scaled to SDM range */ 275a851ea2bSAlex Frid #define sdin_get_n_eff(cfg) ((cfg)->n * PLL_SDM_COEFF + ((cfg)->sdm_data ? \ 276a851ea2bSAlex Frid (PLL_SDM_COEFF/2 + sdin_data_to_din((cfg)->sdm_data)) : 0)) 2776b301a05SRhyland Klein 2786b301a05SRhyland Klein /* Tegra CPU clock and reset control regs */ 2796b301a05SRhyland Klein #define CLK_RST_CONTROLLER_CPU_CMPLX_STATUS 0x470 2806b301a05SRhyland Klein 2816b301a05SRhyland Klein #ifdef CONFIG_PM_SLEEP 2826b301a05SRhyland Klein static struct cpu_clk_suspend_context { 2836b301a05SRhyland Klein u32 clk_csite_src; 2846b301a05SRhyland Klein } tegra210_cpu_clk_sctx; 2856b301a05SRhyland Klein #endif 2866b301a05SRhyland Klein 287e403d005SPeter De Schrijver struct tegra210_domain_mbist_war { 288e403d005SPeter De Schrijver void (*handle_lvl2_ovr)(struct tegra210_domain_mbist_war *mbist); 289e403d005SPeter De Schrijver const u32 lvl2_offset; 290e403d005SPeter De Schrijver const u32 lvl2_mask; 291e403d005SPeter De Schrijver const unsigned int num_clks; 292e403d005SPeter De Schrijver const unsigned int *clk_init_data; 293e403d005SPeter De Schrijver struct clk_bulk_data *clks; 294e403d005SPeter De Schrijver }; 295e403d005SPeter De Schrijver 296e403d005SPeter De Schrijver static struct clk **clks; 297e403d005SPeter De Schrijver 2986b301a05SRhyland Klein static void __iomem *clk_base; 2996b301a05SRhyland Klein static void __iomem *pmc_base; 300e403d005SPeter De Schrijver static void __iomem *ahub_base; 301e403d005SPeter De Schrijver static void __iomem *dispa_base; 302e403d005SPeter De Schrijver static void __iomem *vic_base; 3036b301a05SRhyland Klein 3046b301a05SRhyland Klein static unsigned long osc_freq; 3056b301a05SRhyland Klein static unsigned long pll_ref_freq; 3066b301a05SRhyland Klein 3076b301a05SRhyland Klein static DEFINE_SPINLOCK(pll_d_lock); 3086b301a05SRhyland Klein static DEFINE_SPINLOCK(pll_e_lock); 3096b301a05SRhyland Klein static DEFINE_SPINLOCK(pll_re_lock); 3106b301a05SRhyland Klein static DEFINE_SPINLOCK(pll_u_lock); 31105308d7eSThierry Reding static DEFINE_SPINLOCK(sor0_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 563*a3cba697SJoseph Lo void tegra210_clk_emc_dll_enable(bool flag) 564*a3cba697SJoseph Lo { 565*a3cba697SJoseph Lo u32 offset = flag ? CLK_RST_CONTROLLER_CLK_OUT_ENB_X_SET : 566*a3cba697SJoseph Lo CLK_RST_CONTROLLER_CLK_OUT_ENB_X_CLR; 567*a3cba697SJoseph Lo 568*a3cba697SJoseph Lo writel_relaxed(CLK_OUT_ENB_X_CLK_ENB_EMC_DLL, clk_base + offset); 569*a3cba697SJoseph Lo } 570*a3cba697SJoseph Lo EXPORT_SYMBOL_GPL(tegra210_clk_emc_dll_enable); 571*a3cba697SJoseph Lo 572*a3cba697SJoseph Lo void tegra210_clk_emc_dll_update_setting(u32 emc_dll_src_value) 573*a3cba697SJoseph Lo { 574*a3cba697SJoseph Lo writel_relaxed(emc_dll_src_value, clk_base + CLK_SOURCE_EMC_DLL); 575*a3cba697SJoseph Lo } 576*a3cba697SJoseph Lo EXPORT_SYMBOL_GPL(tegra210_clk_emc_dll_update_setting); 577*a3cba697SJoseph Lo 578*a3cba697SJoseph Lo void tegra210_clk_emc_update_setting(u32 emc_src_value) 579*a3cba697SJoseph Lo { 580*a3cba697SJoseph Lo writel_relaxed(emc_src_value, clk_base + CLK_SOURCE_EMC); 581*a3cba697SJoseph Lo } 582*a3cba697SJoseph Lo EXPORT_SYMBOL_GPL(tegra210_clk_emc_update_setting); 583*a3cba697SJoseph Lo 584e403d005SPeter De Schrijver static void tegra210_generic_mbist_war(struct tegra210_domain_mbist_war *mbist) 585e403d005SPeter De Schrijver { 586e403d005SPeter De Schrijver u32 val; 587e403d005SPeter De Schrijver 588e403d005SPeter De Schrijver val = readl_relaxed(clk_base + mbist->lvl2_offset); 589e403d005SPeter De Schrijver writel_relaxed(val | mbist->lvl2_mask, clk_base + mbist->lvl2_offset); 590e403d005SPeter De Schrijver fence_udelay(1, clk_base); 591e403d005SPeter De Schrijver writel_relaxed(val, clk_base + mbist->lvl2_offset); 592e403d005SPeter De Schrijver fence_udelay(1, clk_base); 593e403d005SPeter De Schrijver } 594e403d005SPeter De Schrijver 595e403d005SPeter De Schrijver static void tegra210_venc_mbist_war(struct tegra210_domain_mbist_war *mbist) 596e403d005SPeter De Schrijver { 597e403d005SPeter De Schrijver u32 csi_src, ovra, ovre; 598e403d005SPeter De Schrijver unsigned long flags = 0; 599e403d005SPeter De Schrijver 600e403d005SPeter De Schrijver spin_lock_irqsave(&pll_d_lock, flags); 601e403d005SPeter De Schrijver 602e403d005SPeter De Schrijver csi_src = readl_relaxed(clk_base + PLLD_BASE); 603e403d005SPeter De Schrijver writel_relaxed(csi_src | PLLD_BASE_CSI_CLKSOURCE, clk_base + PLLD_BASE); 604e403d005SPeter De Schrijver fence_udelay(1, clk_base); 605e403d005SPeter De Schrijver 606e403d005SPeter De Schrijver ovra = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRA); 607e403d005SPeter De Schrijver writel_relaxed(ovra | BIT(15), clk_base + LVL2_CLK_GATE_OVRA); 608e403d005SPeter De Schrijver ovre = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRE); 609e403d005SPeter De Schrijver writel_relaxed(ovre | BIT(3), clk_base + LVL2_CLK_GATE_OVRE); 610e403d005SPeter De Schrijver fence_udelay(1, clk_base); 611e403d005SPeter De Schrijver 612e403d005SPeter De Schrijver writel_relaxed(ovra, clk_base + LVL2_CLK_GATE_OVRA); 613e403d005SPeter De Schrijver writel_relaxed(ovre, clk_base + LVL2_CLK_GATE_OVRE); 614e403d005SPeter De Schrijver writel_relaxed(csi_src, clk_base + PLLD_BASE); 615e403d005SPeter De Schrijver fence_udelay(1, clk_base); 616e403d005SPeter De Schrijver 617e403d005SPeter De Schrijver spin_unlock_irqrestore(&pll_d_lock, flags); 618e403d005SPeter De Schrijver } 619e403d005SPeter De Schrijver 620e403d005SPeter De Schrijver static void tegra210_disp_mbist_war(struct tegra210_domain_mbist_war *mbist) 621e403d005SPeter De Schrijver { 622e403d005SPeter De Schrijver u32 ovra, dsc_top_ctrl; 623e403d005SPeter De Schrijver 624e403d005SPeter De Schrijver ovra = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRA); 625e403d005SPeter De Schrijver writel_relaxed(ovra | BIT(1), clk_base + LVL2_CLK_GATE_OVRA); 626e403d005SPeter De Schrijver fence_udelay(1, clk_base); 627e403d005SPeter De Schrijver 628e403d005SPeter De Schrijver dsc_top_ctrl = readl_relaxed(dispa_base + DC_COM_DSC_TOP_CTL); 629e403d005SPeter De Schrijver writel_relaxed(dsc_top_ctrl | BIT(2), dispa_base + DC_COM_DSC_TOP_CTL); 630e403d005SPeter De Schrijver readl_relaxed(dispa_base + DC_CMD_DISPLAY_COMMAND); 631e403d005SPeter De Schrijver writel_relaxed(dsc_top_ctrl, dispa_base + DC_COM_DSC_TOP_CTL); 632e403d005SPeter De Schrijver readl_relaxed(dispa_base + DC_CMD_DISPLAY_COMMAND); 633e403d005SPeter De Schrijver 634e403d005SPeter De Schrijver writel_relaxed(ovra, clk_base + LVL2_CLK_GATE_OVRA); 635e403d005SPeter De Schrijver fence_udelay(1, clk_base); 636e403d005SPeter De Schrijver } 637e403d005SPeter De Schrijver 638e403d005SPeter De Schrijver static void tegra210_vic_mbist_war(struct tegra210_domain_mbist_war *mbist) 639e403d005SPeter De Schrijver { 640e403d005SPeter De Schrijver u32 ovre, val; 641e403d005SPeter De Schrijver 642e403d005SPeter De Schrijver ovre = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRE); 643e403d005SPeter De Schrijver writel_relaxed(ovre | BIT(5), clk_base + LVL2_CLK_GATE_OVRE); 644e403d005SPeter De Schrijver fence_udelay(1, clk_base); 645e403d005SPeter De Schrijver 646e403d005SPeter De Schrijver val = readl_relaxed(vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW); 647e403d005SPeter De Schrijver writel_relaxed(val | BIT(0) | GENMASK(7, 2) | BIT(24), 648e403d005SPeter De Schrijver vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW); 649e403d005SPeter De Schrijver fence_udelay(1, vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW); 650e403d005SPeter De Schrijver 651e403d005SPeter De Schrijver writel_relaxed(val, vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW); 652e403d005SPeter De Schrijver readl(vic_base + NV_PVIC_THI_SLCG_OVERRIDE_LOW); 653e403d005SPeter De Schrijver 654e403d005SPeter De Schrijver writel_relaxed(ovre, clk_base + LVL2_CLK_GATE_OVRE); 655e403d005SPeter De Schrijver fence_udelay(1, clk_base); 656e403d005SPeter De Schrijver } 657e403d005SPeter De Schrijver 658e403d005SPeter De Schrijver static void tegra210_ape_mbist_war(struct tegra210_domain_mbist_war *mbist) 659e403d005SPeter De Schrijver { 660e403d005SPeter De Schrijver void __iomem *i2s_base; 661e403d005SPeter De Schrijver unsigned int i; 662e403d005SPeter De Schrijver u32 ovrc, ovre; 663e403d005SPeter De Schrijver 664e403d005SPeter De Schrijver ovrc = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRC); 665e403d005SPeter De Schrijver ovre = readl_relaxed(clk_base + LVL2_CLK_GATE_OVRE); 666e403d005SPeter De Schrijver writel_relaxed(ovrc | BIT(1), clk_base + LVL2_CLK_GATE_OVRC); 667e403d005SPeter De Schrijver writel_relaxed(ovre | BIT(10) | BIT(11), 668e403d005SPeter De Schrijver clk_base + LVL2_CLK_GATE_OVRE); 669e403d005SPeter De Schrijver fence_udelay(1, clk_base); 670e403d005SPeter De Schrijver 671e403d005SPeter De Schrijver i2s_base = ahub_base + TEGRA210_I2S_BASE; 672e403d005SPeter De Schrijver 673e403d005SPeter De Schrijver for (i = 0; i < TEGRA210_I2S_CTRLS; i++) { 674e403d005SPeter De Schrijver u32 i2s_ctrl; 675e403d005SPeter De Schrijver 676e403d005SPeter De Schrijver i2s_ctrl = readl_relaxed(i2s_base + TEGRA210_I2S_CTRL); 677e403d005SPeter De Schrijver writel_relaxed(i2s_ctrl | BIT(10), 678e403d005SPeter De Schrijver i2s_base + TEGRA210_I2S_CTRL); 679e403d005SPeter De Schrijver writel_relaxed(0, i2s_base + TEGRA210_I2S_CG); 680e403d005SPeter De Schrijver readl(i2s_base + TEGRA210_I2S_CG); 681e403d005SPeter De Schrijver writel_relaxed(1, i2s_base + TEGRA210_I2S_CG); 682e403d005SPeter De Schrijver writel_relaxed(i2s_ctrl, i2s_base + TEGRA210_I2S_CTRL); 683e403d005SPeter De Schrijver readl(i2s_base + TEGRA210_I2S_CTRL); 684e403d005SPeter De Schrijver 685e403d005SPeter De Schrijver i2s_base += TEGRA210_I2S_SIZE; 686e403d005SPeter De Schrijver } 687e403d005SPeter De Schrijver 688e403d005SPeter De Schrijver writel_relaxed(ovrc, clk_base + LVL2_CLK_GATE_OVRC); 689e403d005SPeter De Schrijver writel_relaxed(ovre, clk_base + LVL2_CLK_GATE_OVRE); 690e403d005SPeter De Schrijver fence_udelay(1, clk_base); 691e403d005SPeter De Schrijver } 692e403d005SPeter De Schrijver 6936b301a05SRhyland Klein static inline void _pll_misc_chk_default(void __iomem *base, 6946b301a05SRhyland Klein struct tegra_clk_pll_params *params, 6956b301a05SRhyland Klein u8 misc_num, u32 default_val, u32 mask) 6966b301a05SRhyland Klein { 6976b301a05SRhyland Klein u32 boot_val = readl_relaxed(base + params->ext_misc_reg[misc_num]); 6986b301a05SRhyland Klein 6996b301a05SRhyland Klein boot_val &= mask; 7006b301a05SRhyland Klein default_val &= mask; 7016b301a05SRhyland Klein if (boot_val != default_val) { 7026b301a05SRhyland Klein pr_warn("boot misc%d 0x%x: expected 0x%x\n", 7036b301a05SRhyland Klein misc_num, boot_val, default_val); 7046b301a05SRhyland Klein pr_warn(" (comparison mask = 0x%x)\n", mask); 7056b301a05SRhyland Klein params->defaults_set = false; 7066b301a05SRhyland Klein } 7076b301a05SRhyland Klein } 7086b301a05SRhyland Klein 7096b301a05SRhyland Klein /* 7106b301a05SRhyland Klein * PLLCX: PLLC, PLLC2, PLLC3, PLLA1 7116b301a05SRhyland Klein * Hybrid PLLs with dynamic ramp. Dynamic ramp is allowed for any transition 7126b301a05SRhyland Klein * that changes NDIV only, while PLL is already locked. 7136b301a05SRhyland Klein */ 7146b301a05SRhyland Klein static void pllcx_check_defaults(struct tegra_clk_pll_params *params) 7156b301a05SRhyland Klein { 7166b301a05SRhyland Klein u32 default_val; 7176b301a05SRhyland Klein 7186b301a05SRhyland Klein default_val = PLLCX_MISC0_DEFAULT_VALUE & (~PLLCX_MISC0_RESET); 7196b301a05SRhyland Klein _pll_misc_chk_default(clk_base, params, 0, default_val, 7206b301a05SRhyland Klein PLLCX_MISC0_WRITE_MASK); 7216b301a05SRhyland Klein 7226b301a05SRhyland Klein default_val = PLLCX_MISC1_DEFAULT_VALUE & (~PLLCX_MISC1_IDDQ); 7236b301a05SRhyland Klein _pll_misc_chk_default(clk_base, params, 1, default_val, 7246b301a05SRhyland Klein PLLCX_MISC1_WRITE_MASK); 7256b301a05SRhyland Klein 7266b301a05SRhyland Klein default_val = PLLCX_MISC2_DEFAULT_VALUE; 7276b301a05SRhyland Klein _pll_misc_chk_default(clk_base, params, 2, default_val, 7286b301a05SRhyland Klein PLLCX_MISC2_WRITE_MASK); 7296b301a05SRhyland Klein 7306b301a05SRhyland Klein default_val = PLLCX_MISC3_DEFAULT_VALUE; 7316b301a05SRhyland Klein _pll_misc_chk_default(clk_base, params, 3, default_val, 7326b301a05SRhyland Klein PLLCX_MISC3_WRITE_MASK); 7336b301a05SRhyland Klein } 7346b301a05SRhyland Klein 735fd360e20SJon Hunter static void tegra210_pllcx_set_defaults(const char *name, 736fd360e20SJon Hunter struct tegra_clk_pll *pllcx) 7376b301a05SRhyland Klein { 7386b301a05SRhyland Klein pllcx->params->defaults_set = true; 7396b301a05SRhyland Klein 7401116d5a7SJon Hunter if (readl_relaxed(clk_base + pllcx->params->base_reg) & PLL_ENABLE) { 7416b301a05SRhyland Klein /* PLL is ON: only check if defaults already set */ 7426b301a05SRhyland Klein pllcx_check_defaults(pllcx->params); 7431116d5a7SJon Hunter if (!pllcx->params->defaults_set) 7446b301a05SRhyland Klein pr_warn("%s already enabled. Postponing set full defaults\n", 7456b301a05SRhyland Klein name); 7466b301a05SRhyland Klein return; 7476b301a05SRhyland Klein } 7486b301a05SRhyland Klein 7496b301a05SRhyland Klein /* Defaults assert PLL reset, and set IDDQ */ 7506b301a05SRhyland Klein writel_relaxed(PLLCX_MISC0_DEFAULT_VALUE, 7516b301a05SRhyland Klein clk_base + pllcx->params->ext_misc_reg[0]); 7526b301a05SRhyland Klein writel_relaxed(PLLCX_MISC1_DEFAULT_VALUE, 7536b301a05SRhyland Klein clk_base + pllcx->params->ext_misc_reg[1]); 7546b301a05SRhyland Klein writel_relaxed(PLLCX_MISC2_DEFAULT_VALUE, 7556b301a05SRhyland Klein clk_base + pllcx->params->ext_misc_reg[2]); 7566b301a05SRhyland Klein writel_relaxed(PLLCX_MISC3_DEFAULT_VALUE, 7576b301a05SRhyland Klein clk_base + pllcx->params->ext_misc_reg[3]); 7586b301a05SRhyland Klein udelay(1); 7596b301a05SRhyland Klein } 7606b301a05SRhyland Klein 761fd360e20SJon Hunter static void _pllc_set_defaults(struct tegra_clk_pll *pllcx) 7626b301a05SRhyland Klein { 7636b301a05SRhyland Klein tegra210_pllcx_set_defaults("PLL_C", pllcx); 7646b301a05SRhyland Klein } 7656b301a05SRhyland Klein 766fd360e20SJon Hunter static void _pllc2_set_defaults(struct tegra_clk_pll *pllcx) 7676b301a05SRhyland Klein { 7686b301a05SRhyland Klein tegra210_pllcx_set_defaults("PLL_C2", pllcx); 7696b301a05SRhyland Klein } 7706b301a05SRhyland Klein 771fd360e20SJon Hunter static void _pllc3_set_defaults(struct tegra_clk_pll *pllcx) 7726b301a05SRhyland Klein { 7736b301a05SRhyland Klein tegra210_pllcx_set_defaults("PLL_C3", pllcx); 7746b301a05SRhyland Klein } 7756b301a05SRhyland Klein 776fd360e20SJon Hunter static void _plla1_set_defaults(struct tegra_clk_pll *pllcx) 7776b301a05SRhyland Klein { 7786b301a05SRhyland Klein tegra210_pllcx_set_defaults("PLL_A1", pllcx); 7796b301a05SRhyland Klein } 7806b301a05SRhyland Klein 7816b301a05SRhyland Klein /* 7826b301a05SRhyland Klein * PLLA 7836b301a05SRhyland Klein * PLL with dynamic ramp and fractional SDM. Dynamic ramp is not used. 7846b301a05SRhyland Klein * Fractional SDM is allowed to provide exact audio rates. 7856b301a05SRhyland Klein */ 786fd360e20SJon Hunter static void tegra210_plla_set_defaults(struct tegra_clk_pll *plla) 7876b301a05SRhyland Klein { 7886b301a05SRhyland Klein u32 mask; 7896b301a05SRhyland Klein u32 val = readl_relaxed(clk_base + plla->params->base_reg); 7906b301a05SRhyland Klein 7916b301a05SRhyland Klein plla->params->defaults_set = true; 7926b301a05SRhyland Klein 7936b301a05SRhyland Klein if (val & PLL_ENABLE) { 7946b301a05SRhyland Klein /* 7956b301a05SRhyland Klein * PLL is ON: check if defaults already set, then set those 7966b301a05SRhyland Klein * that can be updated in flight. 7976b301a05SRhyland Klein */ 7986b301a05SRhyland Klein if (val & PLLA_BASE_IDDQ) { 7996b301a05SRhyland Klein pr_warn("PLL_A boot enabled with IDDQ set\n"); 8006b301a05SRhyland Klein plla->params->defaults_set = false; 8016b301a05SRhyland Klein } 8026b301a05SRhyland Klein 8036b301a05SRhyland Klein pr_warn("PLL_A already enabled. Postponing set full defaults\n"); 8046b301a05SRhyland Klein 8056b301a05SRhyland Klein val = PLLA_MISC0_DEFAULT_VALUE; /* ignore lock enable */ 8066b301a05SRhyland Klein mask = PLLA_MISC0_LOCK_ENABLE | PLLA_MISC0_LOCK_OVERRIDE; 8076b301a05SRhyland Klein _pll_misc_chk_default(clk_base, plla->params, 0, val, 8086b301a05SRhyland Klein ~mask & PLLA_MISC0_WRITE_MASK); 8096b301a05SRhyland Klein 8106b301a05SRhyland Klein val = PLLA_MISC2_DEFAULT_VALUE; /* ignore all but control bit */ 8116b301a05SRhyland Klein _pll_misc_chk_default(clk_base, plla->params, 2, val, 8126b301a05SRhyland Klein PLLA_MISC2_EN_DYNRAMP); 8136b301a05SRhyland Klein 8146b301a05SRhyland Klein /* Enable lock detect */ 8156b301a05SRhyland Klein val = readl_relaxed(clk_base + plla->params->ext_misc_reg[0]); 8166b301a05SRhyland Klein val &= ~mask; 8176b301a05SRhyland Klein val |= PLLA_MISC0_DEFAULT_VALUE & mask; 8186b301a05SRhyland Klein writel_relaxed(val, clk_base + plla->params->ext_misc_reg[0]); 8196b301a05SRhyland Klein udelay(1); 8206b301a05SRhyland Klein 8216b301a05SRhyland Klein return; 8226b301a05SRhyland Klein } 8236b301a05SRhyland Klein 8246b301a05SRhyland Klein /* set IDDQ, enable lock detect, disable dynamic ramp and SDM */ 8256b301a05SRhyland Klein val |= PLLA_BASE_IDDQ; 8266b301a05SRhyland Klein writel_relaxed(val, clk_base + plla->params->base_reg); 8276b301a05SRhyland Klein writel_relaxed(PLLA_MISC0_DEFAULT_VALUE, 8286b301a05SRhyland Klein clk_base + plla->params->ext_misc_reg[0]); 8296b301a05SRhyland Klein writel_relaxed(PLLA_MISC2_DEFAULT_VALUE, 8306b301a05SRhyland Klein clk_base + plla->params->ext_misc_reg[2]); 8316b301a05SRhyland Klein udelay(1); 8326b301a05SRhyland Klein } 8336b301a05SRhyland Klein 8346b301a05SRhyland Klein /* 8356b301a05SRhyland Klein * PLLD 8366b301a05SRhyland Klein * PLL with fractional SDM. 8376b301a05SRhyland Klein */ 838fd360e20SJon Hunter static void tegra210_plld_set_defaults(struct tegra_clk_pll *plld) 8396b301a05SRhyland Klein { 8406b301a05SRhyland Klein u32 val; 8416b301a05SRhyland Klein u32 mask = 0xffff; 8426b301a05SRhyland Klein 8436b301a05SRhyland Klein plld->params->defaults_set = true; 8446b301a05SRhyland Klein 8456b301a05SRhyland Klein if (readl_relaxed(clk_base + plld->params->base_reg) & 8466b301a05SRhyland Klein PLL_ENABLE) { 8476b301a05SRhyland Klein 8486b301a05SRhyland Klein /* 8496b301a05SRhyland Klein * PLL is ON: check if defaults already set, then set those 8506b301a05SRhyland Klein * that can be updated in flight. 8516b301a05SRhyland Klein */ 8526b301a05SRhyland Klein val = PLLD_MISC1_DEFAULT_VALUE; 8536b301a05SRhyland Klein _pll_misc_chk_default(clk_base, plld->params, 1, 8546b301a05SRhyland Klein val, PLLD_MISC1_WRITE_MASK); 8556b301a05SRhyland Klein 8566b301a05SRhyland Klein /* ignore lock, DSI and SDM controls, make sure IDDQ not set */ 8576b301a05SRhyland Klein val = PLLD_MISC0_DEFAULT_VALUE & (~PLLD_MISC0_IDDQ); 8586b301a05SRhyland Klein mask |= PLLD_MISC0_DSI_CLKENABLE | PLLD_MISC0_LOCK_ENABLE | 8596b301a05SRhyland Klein PLLD_MISC0_LOCK_OVERRIDE | PLLD_MISC0_EN_SDM; 8606b301a05SRhyland Klein _pll_misc_chk_default(clk_base, plld->params, 0, val, 8616b301a05SRhyland Klein ~mask & PLLD_MISC0_WRITE_MASK); 8626b301a05SRhyland Klein 8638dce89a1SPeter De Schrijver if (!plld->params->defaults_set) 8648dce89a1SPeter De Schrijver pr_warn("PLL_D already enabled. Postponing set full defaults\n"); 8658dce89a1SPeter De Schrijver 8666b301a05SRhyland Klein /* Enable lock detect */ 8676b301a05SRhyland Klein mask = PLLD_MISC0_LOCK_ENABLE | PLLD_MISC0_LOCK_OVERRIDE; 8686b301a05SRhyland Klein val = readl_relaxed(clk_base + plld->params->ext_misc_reg[0]); 8696b301a05SRhyland Klein val &= ~mask; 8706b301a05SRhyland Klein val |= PLLD_MISC0_DEFAULT_VALUE & mask; 8716b301a05SRhyland Klein writel_relaxed(val, clk_base + plld->params->ext_misc_reg[0]); 8726b301a05SRhyland Klein udelay(1); 8736b301a05SRhyland Klein 8746b301a05SRhyland Klein return; 8756b301a05SRhyland Klein } 8766b301a05SRhyland Klein 8776b301a05SRhyland Klein val = readl_relaxed(clk_base + plld->params->ext_misc_reg[0]); 8786b301a05SRhyland Klein val &= PLLD_MISC0_DSI_CLKENABLE; 8796b301a05SRhyland Klein val |= PLLD_MISC0_DEFAULT_VALUE; 8806b301a05SRhyland Klein /* set IDDQ, enable lock detect, disable SDM */ 8816b301a05SRhyland Klein writel_relaxed(val, clk_base + plld->params->ext_misc_reg[0]); 8826b301a05SRhyland Klein writel_relaxed(PLLD_MISC1_DEFAULT_VALUE, clk_base + 8836b301a05SRhyland Klein plld->params->ext_misc_reg[1]); 8846b301a05SRhyland Klein udelay(1); 8856b301a05SRhyland Klein } 8866b301a05SRhyland Klein 8876b301a05SRhyland Klein /* 8886b301a05SRhyland Klein * PLLD2, PLLDP 8896b301a05SRhyland Klein * PLL with fractional SDM and Spread Spectrum (SDM is a must if SSC is used). 8906b301a05SRhyland Klein */ 8916b301a05SRhyland Klein static void plldss_defaults(const char *pll_name, struct tegra_clk_pll *plldss, 8926b301a05SRhyland Klein u32 misc0_val, u32 misc1_val, u32 misc2_val, u32 misc3_val) 8936b301a05SRhyland Klein { 8946b301a05SRhyland Klein u32 default_val; 8956b301a05SRhyland Klein u32 val = readl_relaxed(clk_base + plldss->params->base_reg); 8966b301a05SRhyland Klein 8976b301a05SRhyland Klein plldss->params->defaults_set = true; 8986b301a05SRhyland Klein 8996b301a05SRhyland Klein if (val & PLL_ENABLE) { 9006b301a05SRhyland Klein 9016b301a05SRhyland Klein /* 9026b301a05SRhyland Klein * PLL is ON: check if defaults already set, then set those 9036b301a05SRhyland Klein * that can be updated in flight. 9046b301a05SRhyland Klein */ 9056b301a05SRhyland Klein if (val & PLLDSS_BASE_IDDQ) { 9066b301a05SRhyland Klein pr_warn("plldss boot enabled with IDDQ set\n"); 9076b301a05SRhyland Klein plldss->params->defaults_set = false; 9086b301a05SRhyland Klein } 9096b301a05SRhyland Klein 9106b301a05SRhyland Klein /* ignore lock enable */ 9116b301a05SRhyland Klein default_val = misc0_val; 9126b301a05SRhyland Klein _pll_misc_chk_default(clk_base, plldss->params, 0, default_val, 9136b301a05SRhyland Klein PLLDSS_MISC0_WRITE_MASK & 9146b301a05SRhyland Klein (~PLLDSS_MISC0_LOCK_ENABLE)); 9156b301a05SRhyland Klein 9166b301a05SRhyland Klein /* 9176b301a05SRhyland Klein * If SSC is used, check all settings, otherwise just confirm 9186b301a05SRhyland Klein * that SSC is not used on boot as well. Do nothing when using 9196b301a05SRhyland Klein * this function for PLLC4 that has only MISC0. 9206b301a05SRhyland Klein */ 9216b301a05SRhyland Klein if (plldss->params->ssc_ctrl_en_mask) { 9226b301a05SRhyland Klein default_val = misc1_val; 9236b301a05SRhyland Klein _pll_misc_chk_default(clk_base, plldss->params, 1, 9246b301a05SRhyland Klein default_val, PLLDSS_MISC1_CFG_WRITE_MASK); 9256b301a05SRhyland Klein default_val = misc2_val; 9266b301a05SRhyland Klein _pll_misc_chk_default(clk_base, plldss->params, 2, 9276b301a05SRhyland Klein default_val, PLLDSS_MISC2_CTRL1_WRITE_MASK); 9286b301a05SRhyland Klein default_val = misc3_val; 9296b301a05SRhyland Klein _pll_misc_chk_default(clk_base, plldss->params, 3, 9306b301a05SRhyland Klein default_val, PLLDSS_MISC3_CTRL2_WRITE_MASK); 9316b301a05SRhyland Klein } else if (plldss->params->ext_misc_reg[1]) { 9326b301a05SRhyland Klein default_val = misc1_val; 9336b301a05SRhyland Klein _pll_misc_chk_default(clk_base, plldss->params, 1, 9346b301a05SRhyland Klein default_val, PLLDSS_MISC1_CFG_WRITE_MASK & 9356b301a05SRhyland Klein (~PLLDSS_MISC1_CFG_EN_SDM)); 9366b301a05SRhyland Klein } 9376b301a05SRhyland Klein 9381934ffd0SPeter De Schrijver if (!plldss->params->defaults_set) 9391934ffd0SPeter De Schrijver pr_warn("%s already enabled. Postponing set full defaults\n", 9401934ffd0SPeter De Schrijver pll_name); 9411934ffd0SPeter De Schrijver 9426b301a05SRhyland Klein /* Enable lock detect */ 9436b301a05SRhyland Klein if (val & PLLDSS_BASE_LOCK_OVERRIDE) { 9446b301a05SRhyland Klein val &= ~PLLDSS_BASE_LOCK_OVERRIDE; 9456b301a05SRhyland Klein writel_relaxed(val, clk_base + 9466b301a05SRhyland Klein plldss->params->base_reg); 9476b301a05SRhyland Klein } 9486b301a05SRhyland Klein 9496b301a05SRhyland Klein val = readl_relaxed(clk_base + plldss->params->ext_misc_reg[0]); 9506b301a05SRhyland Klein val &= ~PLLDSS_MISC0_LOCK_ENABLE; 9516b301a05SRhyland Klein val |= misc0_val & PLLDSS_MISC0_LOCK_ENABLE; 9526b301a05SRhyland Klein writel_relaxed(val, clk_base + plldss->params->ext_misc_reg[0]); 9536b301a05SRhyland Klein udelay(1); 9546b301a05SRhyland Klein 9556b301a05SRhyland Klein return; 9566b301a05SRhyland Klein } 9576b301a05SRhyland Klein 9586b301a05SRhyland Klein /* set IDDQ, enable lock detect, configure SDM/SSC */ 9596b301a05SRhyland Klein val |= PLLDSS_BASE_IDDQ; 9606b301a05SRhyland Klein val &= ~PLLDSS_BASE_LOCK_OVERRIDE; 9616b301a05SRhyland Klein writel_relaxed(val, clk_base + plldss->params->base_reg); 9626b301a05SRhyland Klein 9636b301a05SRhyland Klein /* When using this function for PLLC4 exit here */ 9646b301a05SRhyland Klein if (!plldss->params->ext_misc_reg[1]) { 9656b301a05SRhyland Klein writel_relaxed(misc0_val, clk_base + 9666b301a05SRhyland Klein plldss->params->ext_misc_reg[0]); 9676b301a05SRhyland Klein udelay(1); 9686b301a05SRhyland Klein return; 9696b301a05SRhyland Klein } 9706b301a05SRhyland Klein 9716b301a05SRhyland Klein writel_relaxed(misc0_val, clk_base + 9726b301a05SRhyland Klein plldss->params->ext_misc_reg[0]); 9736b301a05SRhyland Klein /* if SSC used set by 1st enable */ 9746b301a05SRhyland Klein writel_relaxed(misc1_val & (~PLLDSS_MISC1_CFG_EN_SSC), 9756b301a05SRhyland Klein clk_base + plldss->params->ext_misc_reg[1]); 9766b301a05SRhyland Klein writel_relaxed(misc2_val, clk_base + plldss->params->ext_misc_reg[2]); 9776b301a05SRhyland Klein writel_relaxed(misc3_val, clk_base + plldss->params->ext_misc_reg[3]); 9786b301a05SRhyland Klein udelay(1); 9796b301a05SRhyland Klein } 9806b301a05SRhyland Klein 981fd360e20SJon Hunter static void tegra210_plld2_set_defaults(struct tegra_clk_pll *plld2) 9826b301a05SRhyland Klein { 9836b301a05SRhyland Klein plldss_defaults("PLL_D2", plld2, PLLD2_MISC0_DEFAULT_VALUE, 9846b301a05SRhyland Klein PLLD2_MISC1_CFG_DEFAULT_VALUE, 9856b301a05SRhyland Klein PLLD2_MISC2_CTRL1_DEFAULT_VALUE, 9866b301a05SRhyland Klein PLLD2_MISC3_CTRL2_DEFAULT_VALUE); 9876b301a05SRhyland Klein } 9886b301a05SRhyland Klein 989fd360e20SJon Hunter static void tegra210_plldp_set_defaults(struct tegra_clk_pll *plldp) 9906b301a05SRhyland Klein { 9916b301a05SRhyland Klein plldss_defaults("PLL_DP", plldp, PLLDP_MISC0_DEFAULT_VALUE, 9926b301a05SRhyland Klein PLLDP_MISC1_CFG_DEFAULT_VALUE, 9936b301a05SRhyland Klein PLLDP_MISC2_CTRL1_DEFAULT_VALUE, 9946b301a05SRhyland Klein PLLDP_MISC3_CTRL2_DEFAULT_VALUE); 9956b301a05SRhyland Klein } 9966b301a05SRhyland Klein 9976b301a05SRhyland Klein /* 9986b301a05SRhyland Klein * PLLC4 9996b301a05SRhyland Klein * Base and misc0 layout is the same as PLLD2/PLLDP, but no SDM/SSC support. 10006b301a05SRhyland Klein * VCO is exposed to the clock tree via fixed 1/3 and 1/5 dividers. 10016b301a05SRhyland Klein */ 1002fd360e20SJon Hunter static void tegra210_pllc4_set_defaults(struct tegra_clk_pll *pllc4) 10036b301a05SRhyland Klein { 10046b301a05SRhyland Klein plldss_defaults("PLL_C4", pllc4, PLLC4_MISC0_DEFAULT_VALUE, 0, 0, 0); 10056b301a05SRhyland Klein } 10066b301a05SRhyland Klein 10076b301a05SRhyland Klein /* 10086b301a05SRhyland Klein * PLLRE 10096b301a05SRhyland Klein * VCO is exposed to the clock tree directly along with post-divider output 10106b301a05SRhyland Klein */ 1011fd360e20SJon Hunter static void tegra210_pllre_set_defaults(struct tegra_clk_pll *pllre) 10126b301a05SRhyland Klein { 10136b301a05SRhyland Klein u32 mask; 10146b301a05SRhyland Klein u32 val = readl_relaxed(clk_base + pllre->params->base_reg); 10156b301a05SRhyland Klein 10166b301a05SRhyland Klein pllre->params->defaults_set = true; 10176b301a05SRhyland Klein 10186b301a05SRhyland Klein if (val & PLL_ENABLE) { 10196b301a05SRhyland Klein /* 10206b301a05SRhyland Klein * PLL is ON: check if defaults already set, then set those 10216b301a05SRhyland Klein * that can be updated in flight. 10226b301a05SRhyland Klein */ 10236b301a05SRhyland Klein val &= PLLRE_BASE_DEFAULT_MASK; 10246b301a05SRhyland Klein if (val != PLLRE_BASE_DEFAULT_VALUE) { 10256b301a05SRhyland Klein pr_warn("pllre boot base 0x%x : expected 0x%x\n", 10266b301a05SRhyland Klein val, PLLRE_BASE_DEFAULT_VALUE); 10276b301a05SRhyland Klein pr_warn("(comparison mask = 0x%x)\n", 10286b301a05SRhyland Klein PLLRE_BASE_DEFAULT_MASK); 10296b301a05SRhyland Klein pllre->params->defaults_set = false; 10306b301a05SRhyland Klein } 10316b301a05SRhyland Klein 10326b301a05SRhyland Klein /* Ignore lock enable */ 10336b301a05SRhyland Klein val = PLLRE_MISC0_DEFAULT_VALUE & (~PLLRE_MISC0_IDDQ); 10346b301a05SRhyland Klein mask = PLLRE_MISC0_LOCK_ENABLE | PLLRE_MISC0_LOCK_OVERRIDE; 10356b301a05SRhyland Klein _pll_misc_chk_default(clk_base, pllre->params, 0, val, 10366b301a05SRhyland Klein ~mask & PLLRE_MISC0_WRITE_MASK); 10376b301a05SRhyland Klein 1038c1139d20SThierry Reding /* The PLL doesn't work if it's in IDDQ. */ 10396b301a05SRhyland Klein val = readl_relaxed(clk_base + pllre->params->ext_misc_reg[0]); 1040c1139d20SThierry Reding if (val & PLLRE_MISC0_IDDQ) 1041c1139d20SThierry Reding pr_warn("unexpected IDDQ bit set for enabled clock\n"); 1042c1139d20SThierry Reding 1043c1139d20SThierry Reding /* Enable lock detect */ 10446b301a05SRhyland Klein val &= ~mask; 10456b301a05SRhyland Klein val |= PLLRE_MISC0_DEFAULT_VALUE & mask; 10466b301a05SRhyland Klein writel_relaxed(val, clk_base + pllre->params->ext_misc_reg[0]); 10476b301a05SRhyland Klein udelay(1); 10486b301a05SRhyland Klein 104920675070SThierry Reding if (!pllre->params->defaults_set) 105020675070SThierry Reding pr_warn("PLL_RE already enabled. Postponing set full defaults\n"); 105120675070SThierry Reding 10526b301a05SRhyland Klein return; 10536b301a05SRhyland Klein } 10546b301a05SRhyland Klein 10556b301a05SRhyland Klein /* set IDDQ, enable lock detect */ 10566b301a05SRhyland Klein val &= ~PLLRE_BASE_DEFAULT_MASK; 10576b301a05SRhyland Klein val |= PLLRE_BASE_DEFAULT_VALUE & PLLRE_BASE_DEFAULT_MASK; 10586b301a05SRhyland Klein writel_relaxed(val, clk_base + pllre->params->base_reg); 10596b301a05SRhyland Klein writel_relaxed(PLLRE_MISC0_DEFAULT_VALUE, 10606b301a05SRhyland Klein clk_base + pllre->params->ext_misc_reg[0]); 10616b301a05SRhyland Klein udelay(1); 10626b301a05SRhyland Klein } 10636b301a05SRhyland Klein 10646b301a05SRhyland Klein static void pllx_get_dyn_steps(struct clk_hw *hw, u32 *step_a, u32 *step_b) 10656b301a05SRhyland Klein { 10666b301a05SRhyland Klein unsigned long input_rate; 10676b301a05SRhyland Klein 10686b301a05SRhyland Klein /* cf rate */ 10693dad5c5fSRhyland Klein if (!IS_ERR_OR_NULL(hw->clk)) 10703dad5c5fSRhyland Klein input_rate = clk_hw_get_rate(clk_hw_get_parent(hw)); 10713dad5c5fSRhyland Klein else 10726b301a05SRhyland Klein input_rate = 38400000; 10733dad5c5fSRhyland Klein 10743dad5c5fSRhyland Klein input_rate /= tegra_pll_get_fixed_mdiv(hw, input_rate); 10756b301a05SRhyland Klein 10766b301a05SRhyland Klein switch (input_rate) { 10776b301a05SRhyland Klein case 12000000: 10786b301a05SRhyland Klein case 12800000: 10796b301a05SRhyland Klein case 13000000: 10806b301a05SRhyland Klein *step_a = 0x2B; 10816b301a05SRhyland Klein *step_b = 0x0B; 10826b301a05SRhyland Klein return; 10836b301a05SRhyland Klein case 19200000: 10846b301a05SRhyland Klein *step_a = 0x12; 10856b301a05SRhyland Klein *step_b = 0x08; 10866b301a05SRhyland Klein return; 10876b301a05SRhyland Klein case 38400000: 10886b301a05SRhyland Klein *step_a = 0x04; 10896b301a05SRhyland Klein *step_b = 0x05; 10906b301a05SRhyland Klein return; 10916b301a05SRhyland Klein default: 10926b301a05SRhyland Klein pr_err("%s: Unexpected reference rate %lu\n", 10936b301a05SRhyland Klein __func__, input_rate); 10946b301a05SRhyland Klein BUG(); 10956b301a05SRhyland Klein } 10966b301a05SRhyland Klein } 10976b301a05SRhyland Klein 10986b301a05SRhyland Klein static void pllx_check_defaults(struct tegra_clk_pll *pll) 10996b301a05SRhyland Klein { 11006b301a05SRhyland Klein u32 default_val; 11016b301a05SRhyland Klein 11026b301a05SRhyland Klein default_val = PLLX_MISC0_DEFAULT_VALUE; 11036b301a05SRhyland Klein /* ignore lock enable */ 11046b301a05SRhyland Klein _pll_misc_chk_default(clk_base, pll->params, 0, default_val, 11056b301a05SRhyland Klein PLLX_MISC0_WRITE_MASK & (~PLLX_MISC0_LOCK_ENABLE)); 11066b301a05SRhyland Klein 11076b301a05SRhyland Klein default_val = PLLX_MISC1_DEFAULT_VALUE; 11086b301a05SRhyland Klein _pll_misc_chk_default(clk_base, pll->params, 1, default_val, 11096b301a05SRhyland Klein PLLX_MISC1_WRITE_MASK); 11106b301a05SRhyland Klein 11116b301a05SRhyland Klein /* ignore all but control bit */ 11126b301a05SRhyland Klein default_val = PLLX_MISC2_DEFAULT_VALUE; 11136b301a05SRhyland Klein _pll_misc_chk_default(clk_base, pll->params, 2, 11146b301a05SRhyland Klein default_val, PLLX_MISC2_EN_DYNRAMP); 11156b301a05SRhyland Klein 11166b301a05SRhyland Klein default_val = PLLX_MISC3_DEFAULT_VALUE & (~PLLX_MISC3_IDDQ); 11176b301a05SRhyland Klein _pll_misc_chk_default(clk_base, pll->params, 3, default_val, 11186b301a05SRhyland Klein PLLX_MISC3_WRITE_MASK); 11196b301a05SRhyland Klein 11206b301a05SRhyland Klein default_val = PLLX_MISC4_DEFAULT_VALUE; 11216b301a05SRhyland Klein _pll_misc_chk_default(clk_base, pll->params, 4, default_val, 11226b301a05SRhyland Klein PLLX_MISC4_WRITE_MASK); 11236b301a05SRhyland Klein 11246b301a05SRhyland Klein default_val = PLLX_MISC5_DEFAULT_VALUE; 11256b301a05SRhyland Klein _pll_misc_chk_default(clk_base, pll->params, 5, default_val, 11266b301a05SRhyland Klein PLLX_MISC5_WRITE_MASK); 11276b301a05SRhyland Klein } 11286b301a05SRhyland Klein 1129fd360e20SJon Hunter static void tegra210_pllx_set_defaults(struct tegra_clk_pll *pllx) 11306b301a05SRhyland Klein { 11316b301a05SRhyland Klein u32 val; 11326b301a05SRhyland Klein u32 step_a, step_b; 11336b301a05SRhyland Klein 11346b301a05SRhyland Klein pllx->params->defaults_set = true; 11356b301a05SRhyland Klein 11366b301a05SRhyland Klein /* Get ready dyn ramp state machine settings */ 11376b301a05SRhyland Klein pllx_get_dyn_steps(&pllx->hw, &step_a, &step_b); 11386b301a05SRhyland Klein val = PLLX_MISC2_DEFAULT_VALUE & (~PLLX_MISC2_DYNRAMP_STEPA_MASK) & 11396b301a05SRhyland Klein (~PLLX_MISC2_DYNRAMP_STEPB_MASK); 11406b301a05SRhyland Klein val |= step_a << PLLX_MISC2_DYNRAMP_STEPA_SHIFT; 11416b301a05SRhyland Klein val |= step_b << PLLX_MISC2_DYNRAMP_STEPB_SHIFT; 11426b301a05SRhyland Klein 11436b301a05SRhyland Klein if (readl_relaxed(clk_base + pllx->params->base_reg) & PLL_ENABLE) { 11446b301a05SRhyland Klein 11456b301a05SRhyland Klein /* 11466b301a05SRhyland Klein * PLL is ON: check if defaults already set, then set those 11476b301a05SRhyland Klein * that can be updated in flight. 11486b301a05SRhyland Klein */ 11496b301a05SRhyland Klein pllx_check_defaults(pllx); 11506b301a05SRhyland Klein 11518dce89a1SPeter De Schrijver if (!pllx->params->defaults_set) 11528dce89a1SPeter De Schrijver pr_warn("PLL_X already enabled. Postponing set full defaults\n"); 11536b301a05SRhyland Klein /* Configure dyn ramp, disable lock override */ 11546b301a05SRhyland Klein writel_relaxed(val, clk_base + pllx->params->ext_misc_reg[2]); 11556b301a05SRhyland Klein 11566b301a05SRhyland Klein /* Enable lock detect */ 11576b301a05SRhyland Klein val = readl_relaxed(clk_base + pllx->params->ext_misc_reg[0]); 11586b301a05SRhyland Klein val &= ~PLLX_MISC0_LOCK_ENABLE; 11596b301a05SRhyland Klein val |= PLLX_MISC0_DEFAULT_VALUE & PLLX_MISC0_LOCK_ENABLE; 11606b301a05SRhyland Klein writel_relaxed(val, clk_base + pllx->params->ext_misc_reg[0]); 11616b301a05SRhyland Klein udelay(1); 11626b301a05SRhyland Klein 11636b301a05SRhyland Klein return; 11646b301a05SRhyland Klein } 11656b301a05SRhyland Klein 11666b301a05SRhyland Klein /* Enable lock detect and CPU output */ 11676b301a05SRhyland Klein writel_relaxed(PLLX_MISC0_DEFAULT_VALUE, clk_base + 11686b301a05SRhyland Klein pllx->params->ext_misc_reg[0]); 11696b301a05SRhyland Klein 11706b301a05SRhyland Klein /* Setup */ 11716b301a05SRhyland Klein writel_relaxed(PLLX_MISC1_DEFAULT_VALUE, clk_base + 11726b301a05SRhyland Klein pllx->params->ext_misc_reg[1]); 11736b301a05SRhyland Klein 11746b301a05SRhyland Klein /* Configure dyn ramp state machine, disable lock override */ 11756b301a05SRhyland Klein writel_relaxed(val, clk_base + pllx->params->ext_misc_reg[2]); 11766b301a05SRhyland Klein 11776b301a05SRhyland Klein /* Set IDDQ */ 11786b301a05SRhyland Klein writel_relaxed(PLLX_MISC3_DEFAULT_VALUE, clk_base + 11796b301a05SRhyland Klein pllx->params->ext_misc_reg[3]); 11806b301a05SRhyland Klein 11816b301a05SRhyland Klein /* Disable SDM */ 11826b301a05SRhyland Klein writel_relaxed(PLLX_MISC4_DEFAULT_VALUE, clk_base + 11836b301a05SRhyland Klein pllx->params->ext_misc_reg[4]); 11846b301a05SRhyland Klein writel_relaxed(PLLX_MISC5_DEFAULT_VALUE, clk_base + 11856b301a05SRhyland Klein pllx->params->ext_misc_reg[5]); 11866b301a05SRhyland Klein udelay(1); 11876b301a05SRhyland Klein } 11886b301a05SRhyland Klein 11896b301a05SRhyland Klein /* PLLMB */ 1190fd360e20SJon Hunter static void tegra210_pllmb_set_defaults(struct tegra_clk_pll *pllmb) 11916b301a05SRhyland Klein { 11926b301a05SRhyland Klein u32 mask, val = readl_relaxed(clk_base + pllmb->params->base_reg); 11936b301a05SRhyland Klein 11946b301a05SRhyland Klein pllmb->params->defaults_set = true; 11956b301a05SRhyland Klein 11966b301a05SRhyland Klein if (val & PLL_ENABLE) { 11976b301a05SRhyland Klein 11986b301a05SRhyland Klein /* 11996b301a05SRhyland Klein * PLL is ON: check if defaults already set, then set those 12006b301a05SRhyland Klein * that can be updated in flight. 12016b301a05SRhyland Klein */ 1202474f2ba2SRhyland Klein val = PLLMB_MISC1_DEFAULT_VALUE & (~PLLMB_MISC1_IDDQ); 1203474f2ba2SRhyland Klein mask = PLLMB_MISC1_LOCK_ENABLE | PLLMB_MISC1_LOCK_OVERRIDE; 12046b301a05SRhyland Klein _pll_misc_chk_default(clk_base, pllmb->params, 0, val, 1205474f2ba2SRhyland Klein ~mask & PLLMB_MISC1_WRITE_MASK); 12066b301a05SRhyland Klein 12078dce89a1SPeter De Schrijver if (!pllmb->params->defaults_set) 12088dce89a1SPeter De Schrijver pr_warn("PLL_MB already enabled. Postponing set full defaults\n"); 12096b301a05SRhyland Klein /* Enable lock detect */ 12106b301a05SRhyland Klein val = readl_relaxed(clk_base + pllmb->params->ext_misc_reg[0]); 12116b301a05SRhyland Klein val &= ~mask; 1212474f2ba2SRhyland Klein val |= PLLMB_MISC1_DEFAULT_VALUE & mask; 12136b301a05SRhyland Klein writel_relaxed(val, clk_base + pllmb->params->ext_misc_reg[0]); 12146b301a05SRhyland Klein udelay(1); 12156b301a05SRhyland Klein 12166b301a05SRhyland Klein return; 12176b301a05SRhyland Klein } 12186b301a05SRhyland Klein 12196b301a05SRhyland Klein /* set IDDQ, enable lock detect */ 1220474f2ba2SRhyland Klein writel_relaxed(PLLMB_MISC1_DEFAULT_VALUE, 12216b301a05SRhyland Klein clk_base + pllmb->params->ext_misc_reg[0]); 12226b301a05SRhyland Klein udelay(1); 12236b301a05SRhyland Klein } 12246b301a05SRhyland Klein 12256b301a05SRhyland Klein /* 12266b301a05SRhyland Klein * PLLP 12276b301a05SRhyland Klein * VCO is exposed to the clock tree directly along with post-divider output. 12286b301a05SRhyland Klein * Both VCO and post-divider output rates are fixed at 408MHz and 204MHz, 12296b301a05SRhyland Klein * respectively. 12306b301a05SRhyland Klein */ 12316b301a05SRhyland Klein static void pllp_check_defaults(struct tegra_clk_pll *pll, bool enabled) 12326b301a05SRhyland Klein { 12336b301a05SRhyland Klein u32 val, mask; 12346b301a05SRhyland Klein 12356b301a05SRhyland Klein /* Ignore lock enable (will be set), make sure not in IDDQ if enabled */ 12366b301a05SRhyland Klein val = PLLP_MISC0_DEFAULT_VALUE & (~PLLP_MISC0_IDDQ); 12376b301a05SRhyland Klein mask = PLLP_MISC0_LOCK_ENABLE | PLLP_MISC0_LOCK_OVERRIDE; 12386b301a05SRhyland Klein if (!enabled) 12396b301a05SRhyland Klein mask |= PLLP_MISC0_IDDQ; 12406b301a05SRhyland Klein _pll_misc_chk_default(clk_base, pll->params, 0, val, 12416b301a05SRhyland Klein ~mask & PLLP_MISC0_WRITE_MASK); 12426b301a05SRhyland Klein 12436b301a05SRhyland Klein /* Ignore branch controls */ 12446b301a05SRhyland Klein val = PLLP_MISC1_DEFAULT_VALUE; 12456b301a05SRhyland Klein mask = PLLP_MISC1_HSIO_EN | PLLP_MISC1_XUSB_EN; 12466b301a05SRhyland Klein _pll_misc_chk_default(clk_base, pll->params, 1, val, 12476b301a05SRhyland Klein ~mask & PLLP_MISC1_WRITE_MASK); 12486b301a05SRhyland Klein } 12496b301a05SRhyland Klein 1250fd360e20SJon Hunter static void tegra210_pllp_set_defaults(struct tegra_clk_pll *pllp) 12516b301a05SRhyland Klein { 12526b301a05SRhyland Klein u32 mask; 12536b301a05SRhyland Klein u32 val = readl_relaxed(clk_base + pllp->params->base_reg); 12546b301a05SRhyland Klein 12556b301a05SRhyland Klein pllp->params->defaults_set = true; 12566b301a05SRhyland Klein 12576b301a05SRhyland Klein if (val & PLL_ENABLE) { 12586b301a05SRhyland Klein 12596b301a05SRhyland Klein /* 12606b301a05SRhyland Klein * PLL is ON: check if defaults already set, then set those 12616b301a05SRhyland Klein * that can be updated in flight. 12626b301a05SRhyland Klein */ 12636b301a05SRhyland Klein pllp_check_defaults(pllp, true); 12648dce89a1SPeter De Schrijver if (!pllp->params->defaults_set) 12658dce89a1SPeter De Schrijver pr_warn("PLL_P already enabled. Postponing set full defaults\n"); 12666b301a05SRhyland Klein 12676b301a05SRhyland Klein /* Enable lock detect */ 12686b301a05SRhyland Klein val = readl_relaxed(clk_base + pllp->params->ext_misc_reg[0]); 12696b301a05SRhyland Klein mask = PLLP_MISC0_LOCK_ENABLE | PLLP_MISC0_LOCK_OVERRIDE; 12706b301a05SRhyland Klein val &= ~mask; 12716b301a05SRhyland Klein val |= PLLP_MISC0_DEFAULT_VALUE & mask; 12726b301a05SRhyland Klein writel_relaxed(val, clk_base + pllp->params->ext_misc_reg[0]); 12736b301a05SRhyland Klein udelay(1); 12746b301a05SRhyland Klein 12756b301a05SRhyland Klein return; 12766b301a05SRhyland Klein } 12776b301a05SRhyland Klein 12786b301a05SRhyland Klein /* set IDDQ, enable lock detect */ 12796b301a05SRhyland Klein writel_relaxed(PLLP_MISC0_DEFAULT_VALUE, 12806b301a05SRhyland Klein clk_base + pllp->params->ext_misc_reg[0]); 12816b301a05SRhyland Klein 12826b301a05SRhyland Klein /* Preserve branch control */ 12836b301a05SRhyland Klein val = readl_relaxed(clk_base + pllp->params->ext_misc_reg[1]); 12846b301a05SRhyland Klein mask = PLLP_MISC1_HSIO_EN | PLLP_MISC1_XUSB_EN; 12856b301a05SRhyland Klein val &= mask; 12866b301a05SRhyland Klein val |= ~mask & PLLP_MISC1_DEFAULT_VALUE; 12876b301a05SRhyland Klein writel_relaxed(val, clk_base + pllp->params->ext_misc_reg[1]); 12886b301a05SRhyland Klein udelay(1); 12896b301a05SRhyland Klein } 12906b301a05SRhyland Klein 12916b301a05SRhyland Klein /* 12926b301a05SRhyland Klein * PLLU 12936b301a05SRhyland Klein * VCO is exposed to the clock tree directly along with post-divider output. 12946b301a05SRhyland Klein * Both VCO and post-divider output rates are fixed at 480MHz and 240MHz, 12956b301a05SRhyland Klein * respectively. 12966b301a05SRhyland Klein */ 1297e745f992SPeter De Schrijver static void pllu_check_defaults(struct tegra_clk_pll_params *params, 1298e745f992SPeter De Schrijver bool hw_control) 12996b301a05SRhyland Klein { 13006b301a05SRhyland Klein u32 val, mask; 13016b301a05SRhyland Klein 13026b301a05SRhyland Klein /* Ignore lock enable (will be set) and IDDQ if under h/w control */ 13036b301a05SRhyland Klein val = PLLU_MISC0_DEFAULT_VALUE & (~PLLU_MISC0_IDDQ); 13046b301a05SRhyland Klein mask = PLLU_MISC0_LOCK_ENABLE | (hw_control ? PLLU_MISC0_IDDQ : 0); 1305e745f992SPeter De Schrijver _pll_misc_chk_default(clk_base, params, 0, val, 13066b301a05SRhyland Klein ~mask & PLLU_MISC0_WRITE_MASK); 13076b301a05SRhyland Klein 13086b301a05SRhyland Klein val = PLLU_MISC1_DEFAULT_VALUE; 13096b301a05SRhyland Klein mask = PLLU_MISC1_LOCK_OVERRIDE; 1310e745f992SPeter De Schrijver _pll_misc_chk_default(clk_base, params, 1, val, 13116b301a05SRhyland Klein ~mask & PLLU_MISC1_WRITE_MASK); 13126b301a05SRhyland Klein } 13136b301a05SRhyland Klein 1314e745f992SPeter De Schrijver static void tegra210_pllu_set_defaults(struct tegra_clk_pll_params *pllu) 13156b301a05SRhyland Klein { 1316e745f992SPeter De Schrijver u32 val = readl_relaxed(clk_base + pllu->base_reg); 13176b301a05SRhyland Klein 1318e745f992SPeter De Schrijver pllu->defaults_set = true; 13196b301a05SRhyland Klein 13206b301a05SRhyland Klein if (val & PLL_ENABLE) { 13216b301a05SRhyland Klein 13226b301a05SRhyland Klein /* 13236b301a05SRhyland Klein * PLL is ON: check if defaults already set, then set those 13246b301a05SRhyland Klein * that can be updated in flight. 13256b301a05SRhyland Klein */ 13266b301a05SRhyland Klein pllu_check_defaults(pllu, false); 1327e745f992SPeter De Schrijver if (!pllu->defaults_set) 13288dce89a1SPeter De Schrijver pr_warn("PLL_U already enabled. Postponing set full defaults\n"); 13296b301a05SRhyland Klein 13306b301a05SRhyland Klein /* Enable lock detect */ 1331e745f992SPeter De Schrijver val = readl_relaxed(clk_base + pllu->ext_misc_reg[0]); 13326b301a05SRhyland Klein val &= ~PLLU_MISC0_LOCK_ENABLE; 13336b301a05SRhyland Klein val |= PLLU_MISC0_DEFAULT_VALUE & PLLU_MISC0_LOCK_ENABLE; 1334e745f992SPeter De Schrijver writel_relaxed(val, clk_base + pllu->ext_misc_reg[0]); 13356b301a05SRhyland Klein 1336e745f992SPeter De Schrijver val = readl_relaxed(clk_base + pllu->ext_misc_reg[1]); 13376b301a05SRhyland Klein val &= ~PLLU_MISC1_LOCK_OVERRIDE; 13386b301a05SRhyland Klein val |= PLLU_MISC1_DEFAULT_VALUE & PLLU_MISC1_LOCK_OVERRIDE; 1339e745f992SPeter De Schrijver writel_relaxed(val, clk_base + pllu->ext_misc_reg[1]); 13406b301a05SRhyland Klein udelay(1); 13416b301a05SRhyland Klein 13426b301a05SRhyland Klein return; 13436b301a05SRhyland Klein } 13446b301a05SRhyland Klein 13456b301a05SRhyland Klein /* set IDDQ, enable lock detect */ 13466b301a05SRhyland Klein writel_relaxed(PLLU_MISC0_DEFAULT_VALUE, 1347e745f992SPeter De Schrijver clk_base + pllu->ext_misc_reg[0]); 13486b301a05SRhyland Klein writel_relaxed(PLLU_MISC1_DEFAULT_VALUE, 1349e745f992SPeter De Schrijver clk_base + pllu->ext_misc_reg[1]); 13506b301a05SRhyland Klein udelay(1); 13516b301a05SRhyland Klein } 13526b301a05SRhyland Klein 13536b301a05SRhyland Klein #define mask(w) ((1 << (w)) - 1) 13546b301a05SRhyland Klein #define divm_mask(p) mask(p->params->div_nmp->divm_width) 13556b301a05SRhyland Klein #define divn_mask(p) mask(p->params->div_nmp->divn_width) 13566b301a05SRhyland Klein #define divp_mask(p) (p->params->flags & TEGRA_PLLU ? PLLU_POST_DIVP_MASK :\ 13576b301a05SRhyland Klein mask(p->params->div_nmp->divp_width)) 13586b301a05SRhyland Klein 13596b301a05SRhyland Klein #define divm_shift(p) ((p)->params->div_nmp->divm_shift) 13606b301a05SRhyland Klein #define divn_shift(p) ((p)->params->div_nmp->divn_shift) 13616b301a05SRhyland Klein #define divp_shift(p) ((p)->params->div_nmp->divp_shift) 13626b301a05SRhyland Klein 13636b301a05SRhyland Klein #define divm_mask_shifted(p) (divm_mask(p) << divm_shift(p)) 13646b301a05SRhyland Klein #define divn_mask_shifted(p) (divn_mask(p) << divn_shift(p)) 13656b301a05SRhyland Klein #define divp_mask_shifted(p) (divp_mask(p) << divp_shift(p)) 13666b301a05SRhyland Klein 13676b301a05SRhyland Klein #define PLL_LOCKDET_DELAY 2 /* Lock detection safety delays */ 13686b301a05SRhyland Klein static int tegra210_wait_for_mask(struct tegra_clk_pll *pll, 13696b301a05SRhyland Klein u32 reg, u32 mask) 13706b301a05SRhyland Klein { 13716b301a05SRhyland Klein int i; 13726b301a05SRhyland Klein u32 val = 0; 13736b301a05SRhyland Klein 13746b301a05SRhyland Klein for (i = 0; i < pll->params->lock_delay / PLL_LOCKDET_DELAY + 1; i++) { 13756b301a05SRhyland Klein udelay(PLL_LOCKDET_DELAY); 13766b301a05SRhyland Klein val = readl_relaxed(clk_base + reg); 13776b301a05SRhyland Klein if ((val & mask) == mask) { 13786b301a05SRhyland Klein udelay(PLL_LOCKDET_DELAY); 13796b301a05SRhyland Klein return 0; 13806b301a05SRhyland Klein } 13816b301a05SRhyland Klein } 13826b301a05SRhyland Klein return -ETIMEDOUT; 13836b301a05SRhyland Klein } 13846b301a05SRhyland Klein 13856b301a05SRhyland Klein static int tegra210_pllx_dyn_ramp(struct tegra_clk_pll *pllx, 13866b301a05SRhyland Klein struct tegra_clk_pll_freq_table *cfg) 13876b301a05SRhyland Klein { 13886b301a05SRhyland Klein u32 val, base, ndiv_new_mask; 13896b301a05SRhyland Klein 13906b301a05SRhyland Klein ndiv_new_mask = (divn_mask(pllx) >> pllx->params->div_nmp->divn_shift) 13916b301a05SRhyland Klein << PLLX_MISC2_NDIV_NEW_SHIFT; 13926b301a05SRhyland Klein 13936b301a05SRhyland Klein val = readl_relaxed(clk_base + pllx->params->ext_misc_reg[2]); 13946b301a05SRhyland Klein val &= (~ndiv_new_mask); 13956b301a05SRhyland Klein val |= cfg->n << PLLX_MISC2_NDIV_NEW_SHIFT; 13966b301a05SRhyland Klein writel_relaxed(val, clk_base + pllx->params->ext_misc_reg[2]); 13976b301a05SRhyland Klein udelay(1); 13986b301a05SRhyland Klein 13996b301a05SRhyland Klein val = readl_relaxed(clk_base + pllx->params->ext_misc_reg[2]); 14006b301a05SRhyland Klein val |= PLLX_MISC2_EN_DYNRAMP; 14016b301a05SRhyland Klein writel_relaxed(val, clk_base + pllx->params->ext_misc_reg[2]); 14026b301a05SRhyland Klein udelay(1); 14036b301a05SRhyland Klein 14046b301a05SRhyland Klein tegra210_wait_for_mask(pllx, pllx->params->ext_misc_reg[2], 14056b301a05SRhyland Klein PLLX_MISC2_DYNRAMP_DONE); 14066b301a05SRhyland Klein 14076b301a05SRhyland Klein base = readl_relaxed(clk_base + pllx->params->base_reg) & 14086b301a05SRhyland Klein (~divn_mask_shifted(pllx)); 14096b301a05SRhyland Klein base |= cfg->n << pllx->params->div_nmp->divn_shift; 14106b301a05SRhyland Klein writel_relaxed(base, clk_base + pllx->params->base_reg); 14116b301a05SRhyland Klein udelay(1); 14126b301a05SRhyland Klein 14136b301a05SRhyland Klein val &= ~PLLX_MISC2_EN_DYNRAMP; 14146b301a05SRhyland Klein writel_relaxed(val, clk_base + pllx->params->ext_misc_reg[2]); 14156b301a05SRhyland Klein udelay(1); 14166b301a05SRhyland Klein 14176b301a05SRhyland Klein pr_debug("%s: dynamic ramp to m = %u n = %u p = %u, Fout = %lu kHz\n", 14186b301a05SRhyland Klein __clk_get_name(pllx->hw.clk), cfg->m, cfg->n, cfg->p, 14196b301a05SRhyland Klein cfg->input_rate / cfg->m * cfg->n / 14206b301a05SRhyland Klein pllx->params->pdiv_tohw[cfg->p].pdiv / 1000); 14216b301a05SRhyland Klein 14226b301a05SRhyland Klein return 0; 14236b301a05SRhyland Klein } 14246b301a05SRhyland Klein 14256b301a05SRhyland Klein /* 14266b301a05SRhyland Klein * Common configuration for PLLs with fixed input divider policy: 14276b301a05SRhyland Klein * - always set fixed M-value based on the reference rate 14286b301a05SRhyland Klein * - always set P-value value 1:1 for output rates above VCO minimum, and 14296b301a05SRhyland Klein * choose minimum necessary P-value for output rates below VCO maximum 14306b301a05SRhyland Klein * - calculate N-value based on selected M and P 14316b301a05SRhyland Klein * - calculate SDM_DIN fractional part 14326b301a05SRhyland Klein */ 14336b301a05SRhyland Klein static int tegra210_pll_fixed_mdiv_cfg(struct clk_hw *hw, 14346b301a05SRhyland Klein struct tegra_clk_pll_freq_table *cfg, 14356b301a05SRhyland Klein unsigned long rate, unsigned long input_rate) 14366b301a05SRhyland Klein { 14376b301a05SRhyland Klein struct tegra_clk_pll *pll = to_clk_pll(hw); 14386b301a05SRhyland Klein struct tegra_clk_pll_params *params = pll->params; 14396b301a05SRhyland Klein int p; 14406b301a05SRhyland Klein unsigned long cf, p_rate; 14416b301a05SRhyland Klein u32 pdiv; 14426b301a05SRhyland Klein 14436b301a05SRhyland Klein if (!rate) 14446b301a05SRhyland Klein return -EINVAL; 14456b301a05SRhyland Klein 14466b301a05SRhyland Klein if (!(params->flags & TEGRA_PLL_VCO_OUT)) { 14476b301a05SRhyland Klein p = DIV_ROUND_UP(params->vco_min, rate); 14486b301a05SRhyland Klein p = params->round_p_to_pdiv(p, &pdiv); 14496b301a05SRhyland Klein } else { 14506b301a05SRhyland Klein p = rate >= params->vco_min ? 1 : -EINVAL; 14516b301a05SRhyland Klein } 14526b301a05SRhyland Klein 1453287980e4SArnd Bergmann if (p < 0) 14546b301a05SRhyland Klein return -EINVAL; 14556b301a05SRhyland Klein 14566b301a05SRhyland Klein cfg->m = tegra_pll_get_fixed_mdiv(hw, input_rate); 14576b301a05SRhyland Klein cfg->p = p; 14586b301a05SRhyland Klein 14596b301a05SRhyland Klein /* Store P as HW value, as that is what is expected */ 14606b301a05SRhyland Klein cfg->p = tegra_pll_p_div_to_hw(pll, cfg->p); 14616b301a05SRhyland Klein 14626b301a05SRhyland Klein p_rate = rate * p; 14636b301a05SRhyland Klein if (p_rate > params->vco_max) 14646b301a05SRhyland Klein p_rate = params->vco_max; 14656b301a05SRhyland Klein cf = input_rate / cfg->m; 14666b301a05SRhyland Klein cfg->n = p_rate / cf; 14676b301a05SRhyland Klein 14686b301a05SRhyland Klein cfg->sdm_data = 0; 1469ef6ed2b9SPeter De Schrijver cfg->output_rate = input_rate; 14706b301a05SRhyland Klein if (params->sdm_ctrl_reg) { 14716b301a05SRhyland Klein unsigned long rem = p_rate - cf * cfg->n; 14726b301a05SRhyland Klein /* If ssc is enabled SDM enabled as well, even for integer n */ 14736b301a05SRhyland Klein if (rem || params->ssc_ctrl_reg) { 14746b301a05SRhyland Klein u64 s = rem * PLL_SDM_COEFF; 14756b301a05SRhyland Klein 14766b301a05SRhyland Klein do_div(s, cf); 14776b301a05SRhyland Klein s -= PLL_SDM_COEFF / 2; 14786b301a05SRhyland Klein cfg->sdm_data = sdin_din_to_data(s); 14796b301a05SRhyland Klein } 1480a851ea2bSAlex Frid cfg->output_rate *= sdin_get_n_eff(cfg); 1481ef6ed2b9SPeter De Schrijver cfg->output_rate /= p * cfg->m * PLL_SDM_COEFF; 1482ef6ed2b9SPeter De Schrijver } else { 1483ef6ed2b9SPeter De Schrijver cfg->output_rate *= cfg->n; 1484ef6ed2b9SPeter De Schrijver cfg->output_rate /= p * cfg->m; 14856b301a05SRhyland Klein } 14866b301a05SRhyland Klein 14876b301a05SRhyland Klein cfg->input_rate = input_rate; 14886b301a05SRhyland Klein 14896b301a05SRhyland Klein return 0; 14906b301a05SRhyland Klein } 14916b301a05SRhyland Klein 14926b301a05SRhyland Klein /* 14936b301a05SRhyland Klein * clk_pll_set_gain - set gain to m, n to calculate correct VCO rate 14946b301a05SRhyland Klein * 14956b301a05SRhyland Klein * @cfg: struct tegra_clk_pll_freq_table * cfg 14966b301a05SRhyland Klein * 14976b301a05SRhyland Klein * For Normal mode: 14986b301a05SRhyland Klein * Fvco = Fref * NDIV / MDIV 14996b301a05SRhyland Klein * 15006b301a05SRhyland Klein * For fractional mode: 15016b301a05SRhyland Klein * Fvco = Fref * (NDIV + 0.5 + SDM_DIN / PLL_SDM_COEFF) / MDIV 15026b301a05SRhyland Klein */ 15036b301a05SRhyland Klein static void tegra210_clk_pll_set_gain(struct tegra_clk_pll_freq_table *cfg) 15046b301a05SRhyland Klein { 1505a851ea2bSAlex Frid cfg->n = sdin_get_n_eff(cfg); 15066b301a05SRhyland Klein cfg->m *= PLL_SDM_COEFF; 15076b301a05SRhyland Klein } 15086b301a05SRhyland Klein 1509fd360e20SJon Hunter static unsigned long 1510fd360e20SJon Hunter tegra210_clk_adjust_vco_min(struct tegra_clk_pll_params *params, 15116b301a05SRhyland Klein unsigned long parent_rate) 15126b301a05SRhyland Klein { 15136b301a05SRhyland Klein unsigned long vco_min = params->vco_min; 15146b301a05SRhyland Klein 15156b301a05SRhyland Klein params->vco_min += DIV_ROUND_UP(parent_rate, PLL_SDM_COEFF); 15166b301a05SRhyland Klein vco_min = min(vco_min, params->vco_min); 15176b301a05SRhyland Klein 15186b301a05SRhyland Klein return vco_min; 15196b301a05SRhyland Klein } 15206b301a05SRhyland Klein 15216b301a05SRhyland Klein static struct div_nmp pllx_nmp = { 15226b301a05SRhyland Klein .divm_shift = 0, 15236b301a05SRhyland Klein .divm_width = 8, 15246b301a05SRhyland Klein .divn_shift = 8, 15256b301a05SRhyland Klein .divn_width = 8, 15266b301a05SRhyland Klein .divp_shift = 20, 15276b301a05SRhyland Klein .divp_width = 5, 15286b301a05SRhyland Klein }; 15296b301a05SRhyland Klein /* 15306b301a05SRhyland Klein * PLL post divider maps - two types: quasi-linear and exponential 15316b301a05SRhyland Klein * post divider. 15326b301a05SRhyland Klein */ 15336b301a05SRhyland Klein #define PLL_QLIN_PDIV_MAX 16 15346b301a05SRhyland Klein static const struct pdiv_map pll_qlin_pdiv_to_hw[] = { 15356b301a05SRhyland Klein { .pdiv = 1, .hw_val = 0 }, 15366b301a05SRhyland Klein { .pdiv = 2, .hw_val = 1 }, 15376b301a05SRhyland Klein { .pdiv = 3, .hw_val = 2 }, 15386b301a05SRhyland Klein { .pdiv = 4, .hw_val = 3 }, 15396b301a05SRhyland Klein { .pdiv = 5, .hw_val = 4 }, 15406b301a05SRhyland Klein { .pdiv = 6, .hw_val = 5 }, 15416b301a05SRhyland Klein { .pdiv = 8, .hw_val = 6 }, 15426b301a05SRhyland Klein { .pdiv = 9, .hw_val = 7 }, 15436b301a05SRhyland Klein { .pdiv = 10, .hw_val = 8 }, 15446b301a05SRhyland Klein { .pdiv = 12, .hw_val = 9 }, 15456b301a05SRhyland Klein { .pdiv = 15, .hw_val = 10 }, 15466b301a05SRhyland Klein { .pdiv = 16, .hw_val = 11 }, 15476b301a05SRhyland Klein { .pdiv = 18, .hw_val = 12 }, 15486b301a05SRhyland Klein { .pdiv = 20, .hw_val = 13 }, 15496b301a05SRhyland Klein { .pdiv = 24, .hw_val = 14 }, 15506b301a05SRhyland Klein { .pdiv = 30, .hw_val = 15 }, 15516b301a05SRhyland Klein { .pdiv = 32, .hw_val = 16 }, 15526b301a05SRhyland Klein }; 15536b301a05SRhyland Klein 15546b301a05SRhyland Klein static u32 pll_qlin_p_to_pdiv(u32 p, u32 *pdiv) 15556b301a05SRhyland Klein { 15566b301a05SRhyland Klein int i; 15576b301a05SRhyland Klein 15586b301a05SRhyland Klein if (p) { 15596b301a05SRhyland Klein for (i = 0; i <= PLL_QLIN_PDIV_MAX; i++) { 15606b301a05SRhyland Klein if (p <= pll_qlin_pdiv_to_hw[i].pdiv) { 15616b301a05SRhyland Klein if (pdiv) 15626b301a05SRhyland Klein *pdiv = i; 15636b301a05SRhyland Klein return pll_qlin_pdiv_to_hw[i].pdiv; 15646b301a05SRhyland Klein } 15656b301a05SRhyland Klein } 15666b301a05SRhyland Klein } 15676b301a05SRhyland Klein 15686b301a05SRhyland Klein return -EINVAL; 15696b301a05SRhyland Klein } 15706b301a05SRhyland Klein 15716b301a05SRhyland Klein #define PLL_EXPO_PDIV_MAX 7 15726b301a05SRhyland Klein static const struct pdiv_map pll_expo_pdiv_to_hw[] = { 15736b301a05SRhyland Klein { .pdiv = 1, .hw_val = 0 }, 15746b301a05SRhyland Klein { .pdiv = 2, .hw_val = 1 }, 15756b301a05SRhyland Klein { .pdiv = 4, .hw_val = 2 }, 15766b301a05SRhyland Klein { .pdiv = 8, .hw_val = 3 }, 15776b301a05SRhyland Klein { .pdiv = 16, .hw_val = 4 }, 15786b301a05SRhyland Klein { .pdiv = 32, .hw_val = 5 }, 15796b301a05SRhyland Klein { .pdiv = 64, .hw_val = 6 }, 15806b301a05SRhyland Klein { .pdiv = 128, .hw_val = 7 }, 15816b301a05SRhyland Klein }; 15826b301a05SRhyland Klein 15836b301a05SRhyland Klein static u32 pll_expo_p_to_pdiv(u32 p, u32 *pdiv) 15846b301a05SRhyland Klein { 15856b301a05SRhyland Klein if (p) { 15866b301a05SRhyland Klein u32 i = fls(p); 15876b301a05SRhyland Klein 15886b301a05SRhyland Klein if (i == ffs(p)) 15896b301a05SRhyland Klein i--; 15906b301a05SRhyland Klein 15916b301a05SRhyland Klein if (i <= PLL_EXPO_PDIV_MAX) { 15926b301a05SRhyland Klein if (pdiv) 15936b301a05SRhyland Klein *pdiv = i; 15946b301a05SRhyland Klein return 1 << i; 15956b301a05SRhyland Klein } 15966b301a05SRhyland Klein } 15976b301a05SRhyland Klein return -EINVAL; 15986b301a05SRhyland Klein } 15996b301a05SRhyland Klein 16006b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_x_freq_table[] = { 16016b301a05SRhyland Klein /* 1 GHz */ 1602eddb65e7SThierry Reding { 12000000, 1000000000, 166, 1, 2, 0 }, /* actual: 996.0 MHz */ 1603eddb65e7SThierry Reding { 13000000, 1000000000, 153, 1, 2, 0 }, /* actual: 994.0 MHz */ 1604eddb65e7SThierry Reding { 38400000, 1000000000, 156, 3, 2, 0 }, /* actual: 998.4 MHz */ 16056b301a05SRhyland Klein { 0, 0, 0, 0, 0, 0 }, 16066b301a05SRhyland Klein }; 16076b301a05SRhyland Klein 16086b301a05SRhyland Klein static struct tegra_clk_pll_params pll_x_params = { 16096b301a05SRhyland Klein .input_min = 12000000, 16106b301a05SRhyland Klein .input_max = 800000000, 16116b301a05SRhyland Klein .cf_min = 12000000, 16126b301a05SRhyland Klein .cf_max = 38400000, 16136b301a05SRhyland Klein .vco_min = 1350000000, 16146b301a05SRhyland Klein .vco_max = 3000000000UL, 16156b301a05SRhyland Klein .base_reg = PLLX_BASE, 16166b301a05SRhyland Klein .misc_reg = PLLX_MISC0, 16176b301a05SRhyland Klein .lock_mask = PLL_BASE_LOCK, 16186b301a05SRhyland Klein .lock_enable_bit_idx = PLL_MISC_LOCK_ENABLE, 16196b301a05SRhyland Klein .lock_delay = 300, 16206b301a05SRhyland Klein .ext_misc_reg[0] = PLLX_MISC0, 16216b301a05SRhyland Klein .ext_misc_reg[1] = PLLX_MISC1, 16226b301a05SRhyland Klein .ext_misc_reg[2] = PLLX_MISC2, 16236b301a05SRhyland Klein .ext_misc_reg[3] = PLLX_MISC3, 16246b301a05SRhyland Klein .ext_misc_reg[4] = PLLX_MISC4, 16256b301a05SRhyland Klein .ext_misc_reg[5] = PLLX_MISC5, 16266b301a05SRhyland Klein .iddq_reg = PLLX_MISC3, 16276b301a05SRhyland Klein .iddq_bit_idx = PLLXP_IDDQ_BIT, 16286b301a05SRhyland Klein .max_p = PLL_QLIN_PDIV_MAX, 16296b301a05SRhyland Klein .mdiv_default = 2, 16306b301a05SRhyland Klein .dyn_ramp_reg = PLLX_MISC2, 16316b301a05SRhyland Klein .stepa_shift = 16, 16326b301a05SRhyland Klein .stepb_shift = 24, 16336b301a05SRhyland Klein .round_p_to_pdiv = pll_qlin_p_to_pdiv, 16346b301a05SRhyland Klein .pdiv_tohw = pll_qlin_pdiv_to_hw, 16356b301a05SRhyland Klein .div_nmp = &pllx_nmp, 16366b301a05SRhyland Klein .freq_table = pll_x_freq_table, 16376b301a05SRhyland Klein .flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_HAS_LOCK_ENABLE, 16386b301a05SRhyland Klein .dyn_ramp = tegra210_pllx_dyn_ramp, 16396b301a05SRhyland Klein .set_defaults = tegra210_pllx_set_defaults, 16406b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 16416b301a05SRhyland Klein }; 16426b301a05SRhyland Klein 16436b301a05SRhyland Klein static struct div_nmp pllc_nmp = { 16446b301a05SRhyland Klein .divm_shift = 0, 16456b301a05SRhyland Klein .divm_width = 8, 16466b301a05SRhyland Klein .divn_shift = 10, 16476b301a05SRhyland Klein .divn_width = 8, 16486b301a05SRhyland Klein .divp_shift = 20, 16496b301a05SRhyland Klein .divp_width = 5, 16506b301a05SRhyland Klein }; 16516b301a05SRhyland Klein 16526b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_cx_freq_table[] = { 1653eddb65e7SThierry Reding { 12000000, 510000000, 85, 1, 2, 0 }, 1654eddb65e7SThierry Reding { 13000000, 510000000, 78, 1, 2, 0 }, /* actual: 507.0 MHz */ 1655eddb65e7SThierry Reding { 38400000, 510000000, 79, 3, 2, 0 }, /* actual: 505.6 MHz */ 16566b301a05SRhyland Klein { 0, 0, 0, 0, 0, 0 }, 16576b301a05SRhyland Klein }; 16586b301a05SRhyland Klein 16596b301a05SRhyland Klein static struct tegra_clk_pll_params pll_c_params = { 16606b301a05SRhyland Klein .input_min = 12000000, 16616b301a05SRhyland Klein .input_max = 700000000, 16626b301a05SRhyland Klein .cf_min = 12000000, 16636b301a05SRhyland Klein .cf_max = 50000000, 16646b301a05SRhyland Klein .vco_min = 600000000, 16656b301a05SRhyland Klein .vco_max = 1200000000, 16666b301a05SRhyland Klein .base_reg = PLLC_BASE, 16676b301a05SRhyland Klein .misc_reg = PLLC_MISC0, 16686b301a05SRhyland Klein .lock_mask = PLL_BASE_LOCK, 16696b301a05SRhyland Klein .lock_delay = 300, 16706b301a05SRhyland Klein .iddq_reg = PLLC_MISC1, 16716b301a05SRhyland Klein .iddq_bit_idx = PLLCX_IDDQ_BIT, 16726b301a05SRhyland Klein .reset_reg = PLLC_MISC0, 16736b301a05SRhyland Klein .reset_bit_idx = PLLCX_RESET_BIT, 16746b301a05SRhyland Klein .max_p = PLL_QLIN_PDIV_MAX, 16756b301a05SRhyland Klein .ext_misc_reg[0] = PLLC_MISC0, 16766b301a05SRhyland Klein .ext_misc_reg[1] = PLLC_MISC1, 16776b301a05SRhyland Klein .ext_misc_reg[2] = PLLC_MISC2, 16786b301a05SRhyland Klein .ext_misc_reg[3] = PLLC_MISC3, 16796b301a05SRhyland Klein .round_p_to_pdiv = pll_qlin_p_to_pdiv, 16806b301a05SRhyland Klein .pdiv_tohw = pll_qlin_pdiv_to_hw, 16816b301a05SRhyland Klein .mdiv_default = 3, 16826b301a05SRhyland Klein .div_nmp = &pllc_nmp, 16836b301a05SRhyland Klein .freq_table = pll_cx_freq_table, 168414050118SRhyland Klein .flags = TEGRA_PLL_USE_LOCK, 16856b301a05SRhyland Klein .set_defaults = _pllc_set_defaults, 16866b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 16876b301a05SRhyland Klein }; 16886b301a05SRhyland Klein 16896b301a05SRhyland Klein static struct div_nmp pllcx_nmp = { 16906b301a05SRhyland Klein .divm_shift = 0, 16916b301a05SRhyland Klein .divm_width = 8, 16926b301a05SRhyland Klein .divn_shift = 10, 16936b301a05SRhyland Klein .divn_width = 8, 16946b301a05SRhyland Klein .divp_shift = 20, 16956b301a05SRhyland Klein .divp_width = 5, 16966b301a05SRhyland Klein }; 16976b301a05SRhyland Klein 16986b301a05SRhyland Klein static struct tegra_clk_pll_params pll_c2_params = { 16996b301a05SRhyland Klein .input_min = 12000000, 17006b301a05SRhyland Klein .input_max = 700000000, 17016b301a05SRhyland Klein .cf_min = 12000000, 17026b301a05SRhyland Klein .cf_max = 50000000, 17036b301a05SRhyland Klein .vco_min = 600000000, 17046b301a05SRhyland Klein .vco_max = 1200000000, 17056b301a05SRhyland Klein .base_reg = PLLC2_BASE, 17066b301a05SRhyland Klein .misc_reg = PLLC2_MISC0, 17076b301a05SRhyland Klein .iddq_reg = PLLC2_MISC1, 17086b301a05SRhyland Klein .iddq_bit_idx = PLLCX_IDDQ_BIT, 17096b301a05SRhyland Klein .reset_reg = PLLC2_MISC0, 17106b301a05SRhyland Klein .reset_bit_idx = PLLCX_RESET_BIT, 17116b301a05SRhyland Klein .lock_mask = PLLCX_BASE_LOCK, 17126b301a05SRhyland Klein .lock_delay = 300, 17136b301a05SRhyland Klein .round_p_to_pdiv = pll_qlin_p_to_pdiv, 17146b301a05SRhyland Klein .pdiv_tohw = pll_qlin_pdiv_to_hw, 17156b301a05SRhyland Klein .mdiv_default = 3, 17166b301a05SRhyland Klein .div_nmp = &pllcx_nmp, 17176b301a05SRhyland Klein .max_p = PLL_QLIN_PDIV_MAX, 17186b301a05SRhyland Klein .ext_misc_reg[0] = PLLC2_MISC0, 17196b301a05SRhyland Klein .ext_misc_reg[1] = PLLC2_MISC1, 17206b301a05SRhyland Klein .ext_misc_reg[2] = PLLC2_MISC2, 17216b301a05SRhyland Klein .ext_misc_reg[3] = PLLC2_MISC3, 17226b301a05SRhyland Klein .freq_table = pll_cx_freq_table, 172314050118SRhyland Klein .flags = TEGRA_PLL_USE_LOCK, 17246b301a05SRhyland Klein .set_defaults = _pllc2_set_defaults, 17256b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 17266b301a05SRhyland Klein }; 17276b301a05SRhyland Klein 17286b301a05SRhyland Klein static struct tegra_clk_pll_params pll_c3_params = { 17296b301a05SRhyland Klein .input_min = 12000000, 17306b301a05SRhyland Klein .input_max = 700000000, 17316b301a05SRhyland Klein .cf_min = 12000000, 17326b301a05SRhyland Klein .cf_max = 50000000, 17336b301a05SRhyland Klein .vco_min = 600000000, 17346b301a05SRhyland Klein .vco_max = 1200000000, 17356b301a05SRhyland Klein .base_reg = PLLC3_BASE, 17366b301a05SRhyland Klein .misc_reg = PLLC3_MISC0, 17376b301a05SRhyland Klein .lock_mask = PLLCX_BASE_LOCK, 17386b301a05SRhyland Klein .lock_delay = 300, 17396b301a05SRhyland Klein .iddq_reg = PLLC3_MISC1, 17406b301a05SRhyland Klein .iddq_bit_idx = PLLCX_IDDQ_BIT, 17416b301a05SRhyland Klein .reset_reg = PLLC3_MISC0, 17426b301a05SRhyland Klein .reset_bit_idx = PLLCX_RESET_BIT, 17436b301a05SRhyland Klein .round_p_to_pdiv = pll_qlin_p_to_pdiv, 17446b301a05SRhyland Klein .pdiv_tohw = pll_qlin_pdiv_to_hw, 17456b301a05SRhyland Klein .mdiv_default = 3, 17466b301a05SRhyland Klein .div_nmp = &pllcx_nmp, 17476b301a05SRhyland Klein .max_p = PLL_QLIN_PDIV_MAX, 17486b301a05SRhyland Klein .ext_misc_reg[0] = PLLC3_MISC0, 17496b301a05SRhyland Klein .ext_misc_reg[1] = PLLC3_MISC1, 17506b301a05SRhyland Klein .ext_misc_reg[2] = PLLC3_MISC2, 17516b301a05SRhyland Klein .ext_misc_reg[3] = PLLC3_MISC3, 17526b301a05SRhyland Klein .freq_table = pll_cx_freq_table, 175314050118SRhyland Klein .flags = TEGRA_PLL_USE_LOCK, 17546b301a05SRhyland Klein .set_defaults = _pllc3_set_defaults, 17556b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 17566b301a05SRhyland Klein }; 17576b301a05SRhyland Klein 17586b301a05SRhyland Klein static struct div_nmp pllss_nmp = { 17596b301a05SRhyland Klein .divm_shift = 0, 17606b301a05SRhyland Klein .divm_width = 8, 17616b301a05SRhyland Klein .divn_shift = 8, 17626b301a05SRhyland Klein .divn_width = 8, 17636b301a05SRhyland Klein .divp_shift = 19, 17646b301a05SRhyland Klein .divp_width = 5, 17656b301a05SRhyland Klein }; 17666b301a05SRhyland Klein 17676b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_c4_vco_freq_table[] = { 1768eddb65e7SThierry Reding { 12000000, 600000000, 50, 1, 1, 0 }, 1769eddb65e7SThierry Reding { 13000000, 600000000, 46, 1, 1, 0 }, /* actual: 598.0 MHz */ 1770eddb65e7SThierry Reding { 38400000, 600000000, 62, 4, 1, 0 }, /* actual: 595.2 MHz */ 17716b301a05SRhyland Klein { 0, 0, 0, 0, 0, 0 }, 17726b301a05SRhyland Klein }; 17736b301a05SRhyland Klein 17746b301a05SRhyland Klein static const struct clk_div_table pll_vco_post_div_table[] = { 17756b301a05SRhyland Klein { .val = 0, .div = 1 }, 17766b301a05SRhyland Klein { .val = 1, .div = 2 }, 17776b301a05SRhyland Klein { .val = 2, .div = 3 }, 17786b301a05SRhyland Klein { .val = 3, .div = 4 }, 17796b301a05SRhyland Klein { .val = 4, .div = 5 }, 17806b301a05SRhyland Klein { .val = 5, .div = 6 }, 17816b301a05SRhyland Klein { .val = 6, .div = 8 }, 17826b301a05SRhyland Klein { .val = 7, .div = 10 }, 17836b301a05SRhyland Klein { .val = 8, .div = 12 }, 17846b301a05SRhyland Klein { .val = 9, .div = 16 }, 17856b301a05SRhyland Klein { .val = 10, .div = 12 }, 17866b301a05SRhyland Klein { .val = 11, .div = 16 }, 17876b301a05SRhyland Klein { .val = 12, .div = 20 }, 17886b301a05SRhyland Klein { .val = 13, .div = 24 }, 17896b301a05SRhyland Klein { .val = 14, .div = 32 }, 17906b301a05SRhyland Klein { .val = 0, .div = 0 }, 17916b301a05SRhyland Klein }; 17926b301a05SRhyland Klein 17936b301a05SRhyland Klein static struct tegra_clk_pll_params pll_c4_vco_params = { 17946b301a05SRhyland Klein .input_min = 9600000, 17956b301a05SRhyland Klein .input_max = 800000000, 17966b301a05SRhyland Klein .cf_min = 9600000, 17976b301a05SRhyland Klein .cf_max = 19200000, 17986b301a05SRhyland Klein .vco_min = 500000000, 17996b301a05SRhyland Klein .vco_max = 1080000000, 18006b301a05SRhyland Klein .base_reg = PLLC4_BASE, 18016b301a05SRhyland Klein .misc_reg = PLLC4_MISC0, 18026b301a05SRhyland Klein .lock_mask = PLL_BASE_LOCK, 18036b301a05SRhyland Klein .lock_delay = 300, 18046b301a05SRhyland Klein .max_p = PLL_QLIN_PDIV_MAX, 18056b301a05SRhyland Klein .ext_misc_reg[0] = PLLC4_MISC0, 18066b301a05SRhyland Klein .iddq_reg = PLLC4_BASE, 18076b301a05SRhyland Klein .iddq_bit_idx = PLLSS_IDDQ_BIT, 18086b301a05SRhyland Klein .round_p_to_pdiv = pll_qlin_p_to_pdiv, 18096b301a05SRhyland Klein .pdiv_tohw = pll_qlin_pdiv_to_hw, 18106b301a05SRhyland Klein .mdiv_default = 3, 18116b301a05SRhyland Klein .div_nmp = &pllss_nmp, 18126b301a05SRhyland Klein .freq_table = pll_c4_vco_freq_table, 18136b301a05SRhyland Klein .set_defaults = tegra210_pllc4_set_defaults, 181414050118SRhyland Klein .flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_VCO_OUT, 18156b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 18166b301a05SRhyland Klein }; 18176b301a05SRhyland Klein 18186b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_m_freq_table[] = { 1819eddb65e7SThierry Reding { 12000000, 800000000, 66, 1, 1, 0 }, /* actual: 792.0 MHz */ 1820eddb65e7SThierry Reding { 13000000, 800000000, 61, 1, 1, 0 }, /* actual: 793.0 MHz */ 1821eddb65e7SThierry Reding { 38400000, 297600000, 93, 4, 3, 0 }, 1822eddb65e7SThierry Reding { 38400000, 400000000, 125, 4, 3, 0 }, 1823eddb65e7SThierry Reding { 38400000, 532800000, 111, 4, 2, 0 }, 1824eddb65e7SThierry Reding { 38400000, 665600000, 104, 3, 2, 0 }, 1825eddb65e7SThierry Reding { 38400000, 800000000, 125, 3, 2, 0 }, 1826eddb65e7SThierry Reding { 38400000, 931200000, 97, 4, 1, 0 }, 1827eddb65e7SThierry Reding { 38400000, 1065600000, 111, 4, 1, 0 }, 1828eddb65e7SThierry Reding { 38400000, 1200000000, 125, 4, 1, 0 }, 1829eddb65e7SThierry Reding { 38400000, 1331200000, 104, 3, 1, 0 }, 1830eddb65e7SThierry Reding { 38400000, 1459200000, 76, 2, 1, 0 }, 1831eddb65e7SThierry Reding { 38400000, 1600000000, 125, 3, 1, 0 }, 18326b301a05SRhyland Klein { 0, 0, 0, 0, 0, 0 }, 18336b301a05SRhyland Klein }; 18346b301a05SRhyland Klein 18356b301a05SRhyland Klein static struct div_nmp pllm_nmp = { 18366b301a05SRhyland Klein .divm_shift = 0, 18376b301a05SRhyland Klein .divm_width = 8, 18386b301a05SRhyland Klein .override_divm_shift = 0, 18396b301a05SRhyland Klein .divn_shift = 8, 18406b301a05SRhyland Klein .divn_width = 8, 18416b301a05SRhyland Klein .override_divn_shift = 8, 18426b301a05SRhyland Klein .divp_shift = 20, 18436b301a05SRhyland Klein .divp_width = 5, 18446b301a05SRhyland Klein .override_divp_shift = 27, 18456b301a05SRhyland Klein }; 18466b301a05SRhyland Klein 18476b301a05SRhyland Klein static struct tegra_clk_pll_params pll_m_params = { 18486b301a05SRhyland Klein .input_min = 9600000, 18496b301a05SRhyland Klein .input_max = 500000000, 18506b301a05SRhyland Klein .cf_min = 9600000, 18516b301a05SRhyland Klein .cf_max = 19200000, 18526b301a05SRhyland Klein .vco_min = 800000000, 18536b301a05SRhyland Klein .vco_max = 1866000000, 18546b301a05SRhyland Klein .base_reg = PLLM_BASE, 1855474f2ba2SRhyland Klein .misc_reg = PLLM_MISC2, 18566b301a05SRhyland Klein .lock_mask = PLL_BASE_LOCK, 18576b301a05SRhyland Klein .lock_enable_bit_idx = PLLM_MISC_LOCK_ENABLE, 18586b301a05SRhyland Klein .lock_delay = 300, 1859474f2ba2SRhyland Klein .iddq_reg = PLLM_MISC2, 18606b301a05SRhyland Klein .iddq_bit_idx = PLLM_IDDQ_BIT, 18616b301a05SRhyland Klein .max_p = PLL_QLIN_PDIV_MAX, 1862474f2ba2SRhyland Klein .ext_misc_reg[0] = PLLM_MISC2, 1863d9e65791SJon Hunter .ext_misc_reg[1] = PLLM_MISC1, 18646b301a05SRhyland Klein .round_p_to_pdiv = pll_qlin_p_to_pdiv, 18656b301a05SRhyland Klein .pdiv_tohw = pll_qlin_pdiv_to_hw, 18666b301a05SRhyland Klein .div_nmp = &pllm_nmp, 18676b301a05SRhyland Klein .pmc_divnm_reg = PMC_PLLM_WB0_OVERRIDE, 18686b301a05SRhyland Klein .pmc_divp_reg = PMC_PLLM_WB0_OVERRIDE_2, 18696b301a05SRhyland Klein .freq_table = pll_m_freq_table, 18706b301a05SRhyland Klein .flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_HAS_LOCK_ENABLE, 18716b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 18726b301a05SRhyland Klein }; 18736b301a05SRhyland Klein 18746b301a05SRhyland Klein static struct tegra_clk_pll_params pll_mb_params = { 18756b301a05SRhyland Klein .input_min = 9600000, 18766b301a05SRhyland Klein .input_max = 500000000, 18776b301a05SRhyland Klein .cf_min = 9600000, 18786b301a05SRhyland Klein .cf_max = 19200000, 18796b301a05SRhyland Klein .vco_min = 800000000, 18806b301a05SRhyland Klein .vco_max = 1866000000, 18816b301a05SRhyland Klein .base_reg = PLLMB_BASE, 1882474f2ba2SRhyland Klein .misc_reg = PLLMB_MISC1, 18836b301a05SRhyland Klein .lock_mask = PLL_BASE_LOCK, 18846b301a05SRhyland Klein .lock_delay = 300, 1885474f2ba2SRhyland Klein .iddq_reg = PLLMB_MISC1, 18866b301a05SRhyland Klein .iddq_bit_idx = PLLMB_IDDQ_BIT, 18876b301a05SRhyland Klein .max_p = PLL_QLIN_PDIV_MAX, 1888474f2ba2SRhyland Klein .ext_misc_reg[0] = PLLMB_MISC1, 18896b301a05SRhyland Klein .round_p_to_pdiv = pll_qlin_p_to_pdiv, 18906b301a05SRhyland Klein .pdiv_tohw = pll_qlin_pdiv_to_hw, 18916b301a05SRhyland Klein .div_nmp = &pllm_nmp, 18926b301a05SRhyland Klein .freq_table = pll_m_freq_table, 189314050118SRhyland Klein .flags = TEGRA_PLL_USE_LOCK, 18946b301a05SRhyland Klein .set_defaults = tegra210_pllmb_set_defaults, 18956b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 18966b301a05SRhyland Klein }; 18976b301a05SRhyland Klein 18986b301a05SRhyland Klein 18996b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_e_freq_table[] = { 19006b301a05SRhyland Klein /* PLLE special case: use cpcon field to store cml divider value */ 19016b301a05SRhyland Klein { 672000000, 100000000, 125, 42, 0, 13 }, 19026b301a05SRhyland Klein { 624000000, 100000000, 125, 39, 0, 13 }, 19036b301a05SRhyland Klein { 336000000, 100000000, 125, 21, 0, 13 }, 19046b301a05SRhyland Klein { 312000000, 100000000, 200, 26, 0, 14 }, 19056b301a05SRhyland Klein { 38400000, 100000000, 125, 2, 0, 14 }, 19066b301a05SRhyland Klein { 12000000, 100000000, 200, 1, 0, 14 }, 19076b301a05SRhyland Klein { 0, 0, 0, 0, 0, 0 }, 19086b301a05SRhyland Klein }; 19096b301a05SRhyland Klein 19106b301a05SRhyland Klein static struct div_nmp plle_nmp = { 19116b301a05SRhyland Klein .divm_shift = 0, 19126b301a05SRhyland Klein .divm_width = 8, 19136b301a05SRhyland Klein .divn_shift = 8, 19146b301a05SRhyland Klein .divn_width = 8, 19156b301a05SRhyland Klein .divp_shift = 24, 19166b301a05SRhyland Klein .divp_width = 5, 19176b301a05SRhyland Klein }; 19186b301a05SRhyland Klein 19196b301a05SRhyland Klein static struct tegra_clk_pll_params pll_e_params = { 19206b301a05SRhyland Klein .input_min = 12000000, 19216b301a05SRhyland Klein .input_max = 800000000, 19226b301a05SRhyland Klein .cf_min = 12000000, 19236b301a05SRhyland Klein .cf_max = 38400000, 19246b301a05SRhyland Klein .vco_min = 1600000000, 19256b301a05SRhyland Klein .vco_max = 2500000000U, 19266b301a05SRhyland Klein .base_reg = PLLE_BASE, 19276b301a05SRhyland Klein .misc_reg = PLLE_MISC0, 19286b301a05SRhyland Klein .aux_reg = PLLE_AUX, 19296b301a05SRhyland Klein .lock_mask = PLLE_MISC_LOCK, 19306b301a05SRhyland Klein .lock_enable_bit_idx = PLLE_MISC_LOCK_ENABLE, 19316b301a05SRhyland Klein .lock_delay = 300, 19326b301a05SRhyland Klein .div_nmp = &plle_nmp, 19336b301a05SRhyland Klein .freq_table = pll_e_freq_table, 19346b301a05SRhyland Klein .flags = TEGRA_PLL_FIXED | TEGRA_PLL_LOCK_MISC | TEGRA_PLL_USE_LOCK | 19356b301a05SRhyland Klein TEGRA_PLL_HAS_LOCK_ENABLE, 19366b301a05SRhyland Klein .fixed_rate = 100000000, 19376b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 19386b301a05SRhyland Klein }; 19396b301a05SRhyland Klein 19406b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_re_vco_freq_table[] = { 1941eddb65e7SThierry Reding { 12000000, 672000000, 56, 1, 1, 0 }, 1942eddb65e7SThierry Reding { 13000000, 672000000, 51, 1, 1, 0 }, /* actual: 663.0 MHz */ 1943eddb65e7SThierry Reding { 38400000, 672000000, 70, 4, 1, 0 }, 19446b301a05SRhyland Klein { 0, 0, 0, 0, 0, 0 }, 19456b301a05SRhyland Klein }; 19466b301a05SRhyland Klein 19476b301a05SRhyland Klein static struct div_nmp pllre_nmp = { 19486b301a05SRhyland Klein .divm_shift = 0, 19496b301a05SRhyland Klein .divm_width = 8, 19506b301a05SRhyland Klein .divn_shift = 8, 19516b301a05SRhyland Klein .divn_width = 8, 19526b301a05SRhyland Klein .divp_shift = 16, 19536b301a05SRhyland Klein .divp_width = 5, 19546b301a05SRhyland Klein }; 19556b301a05SRhyland Klein 19566b301a05SRhyland Klein static struct tegra_clk_pll_params pll_re_vco_params = { 19576b301a05SRhyland Klein .input_min = 9600000, 19586b301a05SRhyland Klein .input_max = 800000000, 19596b301a05SRhyland Klein .cf_min = 9600000, 19606b301a05SRhyland Klein .cf_max = 19200000, 19616b301a05SRhyland Klein .vco_min = 350000000, 19626b301a05SRhyland Klein .vco_max = 700000000, 19636b301a05SRhyland Klein .base_reg = PLLRE_BASE, 19646b301a05SRhyland Klein .misc_reg = PLLRE_MISC0, 19656b301a05SRhyland Klein .lock_mask = PLLRE_MISC_LOCK, 19666b301a05SRhyland Klein .lock_delay = 300, 19676b301a05SRhyland Klein .max_p = PLL_QLIN_PDIV_MAX, 19686b301a05SRhyland Klein .ext_misc_reg[0] = PLLRE_MISC0, 19696b301a05SRhyland Klein .iddq_reg = PLLRE_MISC0, 19706b301a05SRhyland Klein .iddq_bit_idx = PLLRE_IDDQ_BIT, 19716b301a05SRhyland Klein .round_p_to_pdiv = pll_qlin_p_to_pdiv, 19726b301a05SRhyland Klein .pdiv_tohw = pll_qlin_pdiv_to_hw, 19736b301a05SRhyland Klein .div_nmp = &pllre_nmp, 19746b301a05SRhyland Klein .freq_table = pll_re_vco_freq_table, 197514050118SRhyland Klein .flags = TEGRA_PLL_USE_LOCK | TEGRA_PLL_LOCK_MISC | TEGRA_PLL_VCO_OUT, 19766b301a05SRhyland Klein .set_defaults = tegra210_pllre_set_defaults, 19776b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 19786b301a05SRhyland Klein }; 19796b301a05SRhyland Klein 19806b301a05SRhyland Klein static struct div_nmp pllp_nmp = { 19816b301a05SRhyland Klein .divm_shift = 0, 19826b301a05SRhyland Klein .divm_width = 8, 19836b301a05SRhyland Klein .divn_shift = 10, 19846b301a05SRhyland Klein .divn_width = 8, 19856b301a05SRhyland Klein .divp_shift = 20, 19866b301a05SRhyland Klein .divp_width = 5, 19876b301a05SRhyland Klein }; 19886b301a05SRhyland Klein 19896b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_p_freq_table[] = { 1990eddb65e7SThierry Reding { 12000000, 408000000, 34, 1, 1, 0 }, 1991eddb65e7SThierry Reding { 38400000, 408000000, 85, 8, 1, 0 }, /* cf = 4.8MHz, allowed exception */ 19926b301a05SRhyland Klein { 0, 0, 0, 0, 0, 0 }, 19936b301a05SRhyland Klein }; 19946b301a05SRhyland Klein 19956b301a05SRhyland Klein static struct tegra_clk_pll_params pll_p_params = { 19966b301a05SRhyland Klein .input_min = 9600000, 19976b301a05SRhyland Klein .input_max = 800000000, 19986b301a05SRhyland Klein .cf_min = 9600000, 19996b301a05SRhyland Klein .cf_max = 19200000, 20006b301a05SRhyland Klein .vco_min = 350000000, 20016b301a05SRhyland Klein .vco_max = 700000000, 20026b301a05SRhyland Klein .base_reg = PLLP_BASE, 20036b301a05SRhyland Klein .misc_reg = PLLP_MISC0, 20046b301a05SRhyland Klein .lock_mask = PLL_BASE_LOCK, 20056b301a05SRhyland Klein .lock_delay = 300, 20066b301a05SRhyland Klein .iddq_reg = PLLP_MISC0, 20076b301a05SRhyland Klein .iddq_bit_idx = PLLXP_IDDQ_BIT, 20086b301a05SRhyland Klein .ext_misc_reg[0] = PLLP_MISC0, 20096b301a05SRhyland Klein .ext_misc_reg[1] = PLLP_MISC1, 20106b301a05SRhyland Klein .div_nmp = &pllp_nmp, 20116b301a05SRhyland Klein .freq_table = pll_p_freq_table, 20126b301a05SRhyland Klein .fixed_rate = 408000000, 201314050118SRhyland Klein .flags = TEGRA_PLL_FIXED | TEGRA_PLL_USE_LOCK | TEGRA_PLL_VCO_OUT, 20146b301a05SRhyland Klein .set_defaults = tegra210_pllp_set_defaults, 20156b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 20166b301a05SRhyland Klein }; 20176b301a05SRhyland Klein 20186b301a05SRhyland Klein static struct tegra_clk_pll_params pll_a1_params = { 20196b301a05SRhyland Klein .input_min = 12000000, 20206b301a05SRhyland Klein .input_max = 700000000, 20216b301a05SRhyland Klein .cf_min = 12000000, 20226b301a05SRhyland Klein .cf_max = 50000000, 20236b301a05SRhyland Klein .vco_min = 600000000, 20246b301a05SRhyland Klein .vco_max = 1200000000, 20256b301a05SRhyland Klein .base_reg = PLLA1_BASE, 20266b301a05SRhyland Klein .misc_reg = PLLA1_MISC0, 20276b301a05SRhyland Klein .lock_mask = PLLCX_BASE_LOCK, 20286b301a05SRhyland Klein .lock_delay = 300, 20299326947fSPeter De Schrijver .iddq_reg = PLLA1_MISC1, 20306b301a05SRhyland Klein .iddq_bit_idx = PLLCX_IDDQ_BIT, 20316b301a05SRhyland Klein .reset_reg = PLLA1_MISC0, 20326b301a05SRhyland Klein .reset_bit_idx = PLLCX_RESET_BIT, 20336b301a05SRhyland Klein .round_p_to_pdiv = pll_qlin_p_to_pdiv, 20346b301a05SRhyland Klein .pdiv_tohw = pll_qlin_pdiv_to_hw, 20356b301a05SRhyland Klein .div_nmp = &pllc_nmp, 20366b301a05SRhyland Klein .ext_misc_reg[0] = PLLA1_MISC0, 20376b301a05SRhyland Klein .ext_misc_reg[1] = PLLA1_MISC1, 20386b301a05SRhyland Klein .ext_misc_reg[2] = PLLA1_MISC2, 20396b301a05SRhyland Klein .ext_misc_reg[3] = PLLA1_MISC3, 20406b301a05SRhyland Klein .freq_table = pll_cx_freq_table, 204114050118SRhyland Klein .flags = TEGRA_PLL_USE_LOCK, 20426b301a05SRhyland Klein .set_defaults = _plla1_set_defaults, 20436b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 20446b301a05SRhyland Klein }; 20456b301a05SRhyland Klein 20466b301a05SRhyland Klein static struct div_nmp plla_nmp = { 20476b301a05SRhyland Klein .divm_shift = 0, 20486b301a05SRhyland Klein .divm_width = 8, 20496b301a05SRhyland Klein .divn_shift = 8, 20506b301a05SRhyland Klein .divn_width = 8, 20516b301a05SRhyland Klein .divp_shift = 20, 20526b301a05SRhyland Klein .divp_width = 5, 20536b301a05SRhyland Klein }; 20546b301a05SRhyland Klein 20556b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_a_freq_table[] = { 2056eddb65e7SThierry Reding { 12000000, 282240000, 47, 1, 2, 1, 0xf148 }, /* actual: 282240234 */ 2057eddb65e7SThierry Reding { 12000000, 368640000, 61, 1, 2, 1, 0xfe15 }, /* actual: 368640381 */ 2058eddb65e7SThierry Reding { 12000000, 240000000, 60, 1, 3, 1, 0 }, 2059eddb65e7SThierry Reding { 13000000, 282240000, 43, 1, 2, 1, 0xfd7d }, /* actual: 282239807 */ 2060eddb65e7SThierry Reding { 13000000, 368640000, 56, 1, 2, 1, 0x06d8 }, /* actual: 368640137 */ 2061eddb65e7SThierry Reding { 13000000, 240000000, 55, 1, 3, 1, 0 }, /* actual: 238.3 MHz */ 2062eddb65e7SThierry Reding { 38400000, 282240000, 44, 3, 2, 1, 0xf333 }, /* actual: 282239844 */ 2063eddb65e7SThierry Reding { 38400000, 368640000, 57, 3, 2, 1, 0x0333 }, /* actual: 368639844 */ 20646b301a05SRhyland Klein { 38400000, 240000000, 75, 3, 3, 1, 0 }, 20656b301a05SRhyland Klein { 0, 0, 0, 0, 0, 0, 0 }, 20666b301a05SRhyland Klein }; 20676b301a05SRhyland Klein 20686b301a05SRhyland Klein static struct tegra_clk_pll_params pll_a_params = { 20696b301a05SRhyland Klein .input_min = 12000000, 20706b301a05SRhyland Klein .input_max = 800000000, 20716b301a05SRhyland Klein .cf_min = 12000000, 20726b301a05SRhyland Klein .cf_max = 19200000, 20736b301a05SRhyland Klein .vco_min = 500000000, 20746b301a05SRhyland Klein .vco_max = 1000000000, 20756b301a05SRhyland Klein .base_reg = PLLA_BASE, 20766b301a05SRhyland Klein .misc_reg = PLLA_MISC0, 20776b301a05SRhyland Klein .lock_mask = PLL_BASE_LOCK, 20786b301a05SRhyland Klein .lock_delay = 300, 20796b301a05SRhyland Klein .round_p_to_pdiv = pll_qlin_p_to_pdiv, 20806b301a05SRhyland Klein .pdiv_tohw = pll_qlin_pdiv_to_hw, 20816b301a05SRhyland Klein .iddq_reg = PLLA_BASE, 20826b301a05SRhyland Klein .iddq_bit_idx = PLLA_IDDQ_BIT, 20836b301a05SRhyland Klein .div_nmp = &plla_nmp, 20846b301a05SRhyland Klein .sdm_din_reg = PLLA_MISC1, 20856b301a05SRhyland Klein .sdm_din_mask = PLLA_SDM_DIN_MASK, 20866b301a05SRhyland Klein .sdm_ctrl_reg = PLLA_MISC2, 20876b301a05SRhyland Klein .sdm_ctrl_en_mask = PLLA_SDM_EN_MASK, 20886b301a05SRhyland Klein .ext_misc_reg[0] = PLLA_MISC0, 20896b301a05SRhyland Klein .ext_misc_reg[1] = PLLA_MISC1, 20906b301a05SRhyland Klein .ext_misc_reg[2] = PLLA_MISC2, 20916b301a05SRhyland Klein .freq_table = pll_a_freq_table, 209214050118SRhyland Klein .flags = TEGRA_PLL_USE_LOCK | TEGRA_MDIV_NEW, 20936b301a05SRhyland Klein .set_defaults = tegra210_plla_set_defaults, 20946b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 20956b301a05SRhyland Klein .set_gain = tegra210_clk_pll_set_gain, 20966b301a05SRhyland Klein .adjust_vco = tegra210_clk_adjust_vco_min, 20976b301a05SRhyland Klein }; 20986b301a05SRhyland Klein 20996b301a05SRhyland Klein static struct div_nmp plld_nmp = { 21006b301a05SRhyland Klein .divm_shift = 0, 21016b301a05SRhyland Klein .divm_width = 8, 21026b301a05SRhyland Klein .divn_shift = 11, 21036b301a05SRhyland Klein .divn_width = 8, 21046b301a05SRhyland Klein .divp_shift = 20, 21056b301a05SRhyland Klein .divp_width = 3, 21066b301a05SRhyland Klein }; 21076b301a05SRhyland Klein 21086b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_d_freq_table[] = { 2109eddb65e7SThierry Reding { 12000000, 594000000, 99, 1, 2, 0, 0 }, 2110eddb65e7SThierry Reding { 13000000, 594000000, 91, 1, 2, 0, 0xfc4f }, /* actual: 594000183 */ 2111eddb65e7SThierry Reding { 38400000, 594000000, 30, 1, 2, 0, 0x0e00 }, 21126b301a05SRhyland Klein { 0, 0, 0, 0, 0, 0, 0 }, 21136b301a05SRhyland Klein }; 21146b301a05SRhyland Klein 21156b301a05SRhyland Klein static struct tegra_clk_pll_params pll_d_params = { 21166b301a05SRhyland Klein .input_min = 12000000, 21176b301a05SRhyland Klein .input_max = 800000000, 21186b301a05SRhyland Klein .cf_min = 12000000, 21196b301a05SRhyland Klein .cf_max = 38400000, 21206b301a05SRhyland Klein .vco_min = 750000000, 21216b301a05SRhyland Klein .vco_max = 1500000000, 21226b301a05SRhyland Klein .base_reg = PLLD_BASE, 21236b301a05SRhyland Klein .misc_reg = PLLD_MISC0, 21246b301a05SRhyland Klein .lock_mask = PLL_BASE_LOCK, 21256b301a05SRhyland Klein .lock_delay = 1000, 21266b301a05SRhyland Klein .iddq_reg = PLLD_MISC0, 21276b301a05SRhyland Klein .iddq_bit_idx = PLLD_IDDQ_BIT, 21286b301a05SRhyland Klein .round_p_to_pdiv = pll_expo_p_to_pdiv, 21296b301a05SRhyland Klein .pdiv_tohw = pll_expo_pdiv_to_hw, 21306b301a05SRhyland Klein .div_nmp = &plld_nmp, 21316b301a05SRhyland Klein .sdm_din_reg = PLLD_MISC0, 21326b301a05SRhyland Klein .sdm_din_mask = PLLA_SDM_DIN_MASK, 21336b301a05SRhyland Klein .sdm_ctrl_reg = PLLD_MISC0, 21346b301a05SRhyland Klein .sdm_ctrl_en_mask = PLLD_SDM_EN_MASK, 21356b301a05SRhyland Klein .ext_misc_reg[0] = PLLD_MISC0, 21366b301a05SRhyland Klein .ext_misc_reg[1] = PLLD_MISC1, 21376b301a05SRhyland Klein .freq_table = pll_d_freq_table, 213814050118SRhyland Klein .flags = TEGRA_PLL_USE_LOCK, 21396b301a05SRhyland Klein .mdiv_default = 1, 21406b301a05SRhyland Klein .set_defaults = tegra210_plld_set_defaults, 21416b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 21426b301a05SRhyland Klein .set_gain = tegra210_clk_pll_set_gain, 21436b301a05SRhyland Klein .adjust_vco = tegra210_clk_adjust_vco_min, 21446b301a05SRhyland Klein }; 21456b301a05SRhyland Klein 21466b301a05SRhyland Klein static struct tegra_clk_pll_freq_table tegra210_pll_d2_freq_table[] = { 2147eddb65e7SThierry Reding { 12000000, 594000000, 99, 1, 2, 0, 0xf000 }, 2148eddb65e7SThierry Reding { 13000000, 594000000, 91, 1, 2, 0, 0xfc4f }, /* actual: 594000183 */ 2149eddb65e7SThierry Reding { 38400000, 594000000, 30, 1, 2, 0, 0x0e00 }, 21506b301a05SRhyland Klein { 0, 0, 0, 0, 0, 0, 0 }, 21516b301a05SRhyland Klein }; 21526b301a05SRhyland Klein 21536b301a05SRhyland Klein /* s/w policy, always tegra_pll_ref */ 21546b301a05SRhyland Klein static struct tegra_clk_pll_params pll_d2_params = { 21556b301a05SRhyland Klein .input_min = 12000000, 21566b301a05SRhyland Klein .input_max = 800000000, 21576b301a05SRhyland Klein .cf_min = 12000000, 21586b301a05SRhyland Klein .cf_max = 38400000, 21596b301a05SRhyland Klein .vco_min = 750000000, 21606b301a05SRhyland Klein .vco_max = 1500000000, 21616b301a05SRhyland Klein .base_reg = PLLD2_BASE, 21626b301a05SRhyland Klein .misc_reg = PLLD2_MISC0, 21636b301a05SRhyland Klein .lock_mask = PLL_BASE_LOCK, 21646b301a05SRhyland Klein .lock_delay = 300, 21656b301a05SRhyland Klein .iddq_reg = PLLD2_BASE, 21666b301a05SRhyland Klein .iddq_bit_idx = PLLSS_IDDQ_BIT, 21676b301a05SRhyland Klein .sdm_din_reg = PLLD2_MISC3, 21686b301a05SRhyland Klein .sdm_din_mask = PLLA_SDM_DIN_MASK, 21696b301a05SRhyland Klein .sdm_ctrl_reg = PLLD2_MISC1, 21706b301a05SRhyland Klein .sdm_ctrl_en_mask = PLLD2_SDM_EN_MASK, 2171e2f71656SThierry Reding /* disable spread-spectrum for pll_d2 */ 2172e2f71656SThierry Reding .ssc_ctrl_reg = 0, 2173e2f71656SThierry Reding .ssc_ctrl_en_mask = 0, 21746b301a05SRhyland Klein .round_p_to_pdiv = pll_qlin_p_to_pdiv, 21756b301a05SRhyland Klein .pdiv_tohw = pll_qlin_pdiv_to_hw, 21766b301a05SRhyland Klein .div_nmp = &pllss_nmp, 21776b301a05SRhyland Klein .ext_misc_reg[0] = PLLD2_MISC0, 21786b301a05SRhyland Klein .ext_misc_reg[1] = PLLD2_MISC1, 21796b301a05SRhyland Klein .ext_misc_reg[2] = PLLD2_MISC2, 21806b301a05SRhyland Klein .ext_misc_reg[3] = PLLD2_MISC3, 21816b301a05SRhyland Klein .max_p = PLL_QLIN_PDIV_MAX, 21826b301a05SRhyland Klein .mdiv_default = 1, 21836b301a05SRhyland Klein .freq_table = tegra210_pll_d2_freq_table, 21846b301a05SRhyland Klein .set_defaults = tegra210_plld2_set_defaults, 218514050118SRhyland Klein .flags = TEGRA_PLL_USE_LOCK, 21866b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 21876b301a05SRhyland Klein .set_gain = tegra210_clk_pll_set_gain, 21886b301a05SRhyland Klein .adjust_vco = tegra210_clk_adjust_vco_min, 21896b301a05SRhyland Klein }; 21906b301a05SRhyland Klein 21916b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_dp_freq_table[] = { 2192eddb65e7SThierry Reding { 12000000, 270000000, 90, 1, 4, 0, 0xf000 }, 2193eddb65e7SThierry Reding { 13000000, 270000000, 83, 1, 4, 0, 0xf000 }, /* actual: 269.8 MHz */ 2194eddb65e7SThierry Reding { 38400000, 270000000, 28, 1, 4, 0, 0xf400 }, 21956b301a05SRhyland Klein { 0, 0, 0, 0, 0, 0, 0 }, 21966b301a05SRhyland Klein }; 21976b301a05SRhyland Klein 21986b301a05SRhyland Klein static struct tegra_clk_pll_params pll_dp_params = { 21996b301a05SRhyland Klein .input_min = 12000000, 22006b301a05SRhyland Klein .input_max = 800000000, 22016b301a05SRhyland Klein .cf_min = 12000000, 22026b301a05SRhyland Klein .cf_max = 38400000, 22036b301a05SRhyland Klein .vco_min = 750000000, 22046b301a05SRhyland Klein .vco_max = 1500000000, 22056b301a05SRhyland Klein .base_reg = PLLDP_BASE, 22066b301a05SRhyland Klein .misc_reg = PLLDP_MISC, 22076b301a05SRhyland Klein .lock_mask = PLL_BASE_LOCK, 22086b301a05SRhyland Klein .lock_delay = 300, 22096b301a05SRhyland Klein .iddq_reg = PLLDP_BASE, 22106b301a05SRhyland Klein .iddq_bit_idx = PLLSS_IDDQ_BIT, 22116b301a05SRhyland Klein .sdm_din_reg = PLLDP_SS_CTRL2, 22126b301a05SRhyland Klein .sdm_din_mask = PLLA_SDM_DIN_MASK, 22136b301a05SRhyland Klein .sdm_ctrl_reg = PLLDP_SS_CFG, 22146b301a05SRhyland Klein .sdm_ctrl_en_mask = PLLDP_SDM_EN_MASK, 22156b301a05SRhyland Klein .ssc_ctrl_reg = PLLDP_SS_CFG, 22166b301a05SRhyland Klein .ssc_ctrl_en_mask = PLLDP_SSC_EN_MASK, 22176b301a05SRhyland Klein .round_p_to_pdiv = pll_qlin_p_to_pdiv, 22186b301a05SRhyland Klein .pdiv_tohw = pll_qlin_pdiv_to_hw, 22196b301a05SRhyland Klein .div_nmp = &pllss_nmp, 22206b301a05SRhyland Klein .ext_misc_reg[0] = PLLDP_MISC, 22216b301a05SRhyland Klein .ext_misc_reg[1] = PLLDP_SS_CFG, 22226b301a05SRhyland Klein .ext_misc_reg[2] = PLLDP_SS_CTRL1, 22236b301a05SRhyland Klein .ext_misc_reg[3] = PLLDP_SS_CTRL2, 22246b301a05SRhyland Klein .max_p = PLL_QLIN_PDIV_MAX, 22256b301a05SRhyland Klein .mdiv_default = 1, 22266b301a05SRhyland Klein .freq_table = pll_dp_freq_table, 22276b301a05SRhyland Klein .set_defaults = tegra210_plldp_set_defaults, 222814050118SRhyland Klein .flags = TEGRA_PLL_USE_LOCK, 22296b301a05SRhyland Klein .calc_rate = tegra210_pll_fixed_mdiv_cfg, 22306b301a05SRhyland Klein .set_gain = tegra210_clk_pll_set_gain, 22316b301a05SRhyland Klein .adjust_vco = tegra210_clk_adjust_vco_min, 22326b301a05SRhyland Klein }; 22336b301a05SRhyland Klein 22346b301a05SRhyland Klein static struct div_nmp pllu_nmp = { 22356b301a05SRhyland Klein .divm_shift = 0, 22366b301a05SRhyland Klein .divm_width = 8, 22376b301a05SRhyland Klein .divn_shift = 8, 22386b301a05SRhyland Klein .divn_width = 8, 22396b301a05SRhyland Klein .divp_shift = 16, 22406b301a05SRhyland Klein .divp_width = 5, 22416b301a05SRhyland Klein }; 22426b301a05SRhyland Klein 22436b301a05SRhyland Klein static struct tegra_clk_pll_freq_table pll_u_freq_table[] = { 22440d34dfbfSJC Kuo { 12000000, 480000000, 40, 1, 1, 0 }, 22450d34dfbfSJC Kuo { 13000000, 480000000, 36, 1, 1, 0 }, /* actual: 468.0 MHz */ 22460d34dfbfSJC Kuo { 38400000, 480000000, 25, 2, 1, 0 }, 22476b301a05SRhyland Klein { 0, 0, 0, 0, 0, 0 }, 22486b301a05SRhyland Klein }; 22496b301a05SRhyland Klein 22506b301a05SRhyland Klein static struct tegra_clk_pll_params pll_u_vco_params = { 22516b301a05SRhyland Klein .input_min = 9600000, 22526b301a05SRhyland Klein .input_max = 800000000, 22536b301a05SRhyland Klein .cf_min = 9600000, 22546b301a05SRhyland Klein .cf_max = 19200000, 22556b301a05SRhyland Klein .vco_min = 350000000, 22566b301a05SRhyland Klein .vco_max = 700000000, 22576b301a05SRhyland Klein .base_reg = PLLU_BASE, 22586b301a05SRhyland Klein .misc_reg = PLLU_MISC0, 22596b301a05SRhyland Klein .lock_mask = PLL_BASE_LOCK, 22606b301a05SRhyland Klein .lock_delay = 1000, 22616b301a05SRhyland Klein .iddq_reg = PLLU_MISC0, 22626b301a05SRhyland Klein .iddq_bit_idx = PLLU_IDDQ_BIT, 22636b301a05SRhyland Klein .ext_misc_reg[0] = PLLU_MISC0, 22646b301a05SRhyland Klein .ext_misc_reg[1] = PLLU_MISC1, 22656b301a05SRhyland Klein .round_p_to_pdiv = pll_qlin_p_to_pdiv, 22666b301a05SRhyland Klein .pdiv_tohw = pll_qlin_pdiv_to_hw, 22676b301a05SRhyland Klein .div_nmp = &pllu_nmp, 22686b301a05SRhyland Klein .freq_table = pll_u_freq_table, 226914050118SRhyland Klein .flags = TEGRA_PLLU | TEGRA_PLL_USE_LOCK | TEGRA_PLL_VCO_OUT, 2270e745f992SPeter De Schrijver }; 2271e745f992SPeter De Schrijver 2272e745f992SPeter De Schrijver struct utmi_clk_param { 2273e745f992SPeter De Schrijver /* Oscillator Frequency in KHz */ 2274e745f992SPeter De Schrijver u32 osc_frequency; 2275e745f992SPeter De Schrijver /* UTMIP PLL Enable Delay Count */ 2276e745f992SPeter De Schrijver u8 enable_delay_count; 2277e745f992SPeter De Schrijver /* UTMIP PLL Stable count */ 2278e745f992SPeter De Schrijver u16 stable_count; 2279e745f992SPeter De Schrijver /* UTMIP PLL Active delay count */ 2280e745f992SPeter De Schrijver u8 active_delay_count; 2281e745f992SPeter De Schrijver /* UTMIP PLL Xtal frequency count */ 2282e745f992SPeter De Schrijver u16 xtal_freq_count; 2283e745f992SPeter De Schrijver }; 2284e745f992SPeter De Schrijver 2285e745f992SPeter De Schrijver static const struct utmi_clk_param utmi_parameters[] = { 2286e745f992SPeter De Schrijver { 2287e745f992SPeter De Schrijver .osc_frequency = 38400000, .enable_delay_count = 0x0, 2288e745f992SPeter De Schrijver .stable_count = 0x0, .active_delay_count = 0x6, 2289e745f992SPeter De Schrijver .xtal_freq_count = 0x80 2290e745f992SPeter De Schrijver }, { 2291e745f992SPeter De Schrijver .osc_frequency = 13000000, .enable_delay_count = 0x02, 2292e745f992SPeter De Schrijver .stable_count = 0x33, .active_delay_count = 0x05, 2293e745f992SPeter De Schrijver .xtal_freq_count = 0x7f 2294e745f992SPeter De Schrijver }, { 2295e745f992SPeter De Schrijver .osc_frequency = 19200000, .enable_delay_count = 0x03, 2296e745f992SPeter De Schrijver .stable_count = 0x4b, .active_delay_count = 0x06, 2297e745f992SPeter De Schrijver .xtal_freq_count = 0xbb 2298e745f992SPeter De Schrijver }, { 2299e745f992SPeter De Schrijver .osc_frequency = 12000000, .enable_delay_count = 0x02, 2300e745f992SPeter De Schrijver .stable_count = 0x2f, .active_delay_count = 0x08, 2301e745f992SPeter De Schrijver .xtal_freq_count = 0x76 2302e745f992SPeter De Schrijver }, { 2303e745f992SPeter De Schrijver .osc_frequency = 26000000, .enable_delay_count = 0x04, 2304e745f992SPeter De Schrijver .stable_count = 0x66, .active_delay_count = 0x09, 2305e745f992SPeter De Schrijver .xtal_freq_count = 0xfe 2306e745f992SPeter De Schrijver }, { 2307e745f992SPeter De Schrijver .osc_frequency = 16800000, .enable_delay_count = 0x03, 2308e745f992SPeter De Schrijver .stable_count = 0x41, .active_delay_count = 0x0a, 2309e745f992SPeter De Schrijver .xtal_freq_count = 0xa4 2310e745f992SPeter De Schrijver }, 23116b301a05SRhyland Klein }; 23126b301a05SRhyland Klein 23136b301a05SRhyland Klein static struct tegra_clk tegra210_clks[tegra_clk_max] __initdata = { 23146b301a05SRhyland Klein [tegra_clk_ispb] = { .dt_id = TEGRA210_CLK_ISPB, .present = true }, 23156b301a05SRhyland Klein [tegra_clk_rtc] = { .dt_id = TEGRA210_CLK_RTC, .present = true }, 23166b301a05SRhyland Klein [tegra_clk_timer] = { .dt_id = TEGRA210_CLK_TIMER, .present = true }, 23176b301a05SRhyland Klein [tegra_clk_uarta_8] = { .dt_id = TEGRA210_CLK_UARTA, .present = true }, 23186b301a05SRhyland Klein [tegra_clk_i2s1] = { .dt_id = TEGRA210_CLK_I2S1, .present = true }, 23196b301a05SRhyland Klein [tegra_clk_i2c1] = { .dt_id = TEGRA210_CLK_I2C1, .present = true }, 23206b301a05SRhyland Klein [tegra_clk_sdmmc1_9] = { .dt_id = TEGRA210_CLK_SDMMC1, .present = true }, 23216b301a05SRhyland Klein [tegra_clk_pwm] = { .dt_id = TEGRA210_CLK_PWM, .present = true }, 23226b301a05SRhyland Klein [tegra_clk_i2s2] = { .dt_id = TEGRA210_CLK_I2S2, .present = true }, 23236b301a05SRhyland Klein [tegra_clk_usbd] = { .dt_id = TEGRA210_CLK_USBD, .present = true }, 23246b301a05SRhyland Klein [tegra_clk_isp_9] = { .dt_id = TEGRA210_CLK_ISP, .present = true }, 23256b301a05SRhyland Klein [tegra_clk_disp2_8] = { .dt_id = TEGRA210_CLK_DISP2, .present = true }, 23266b301a05SRhyland Klein [tegra_clk_disp1_8] = { .dt_id = TEGRA210_CLK_DISP1, .present = true }, 23276b301a05SRhyland Klein [tegra_clk_host1x_9] = { .dt_id = TEGRA210_CLK_HOST1X, .present = true }, 23286b301a05SRhyland Klein [tegra_clk_i2s0] = { .dt_id = TEGRA210_CLK_I2S0, .present = true }, 23296b301a05SRhyland Klein [tegra_clk_apbdma] = { .dt_id = TEGRA210_CLK_APBDMA, .present = true }, 23306b301a05SRhyland Klein [tegra_clk_kfuse] = { .dt_id = TEGRA210_CLK_KFUSE, .present = true }, 23316b301a05SRhyland Klein [tegra_clk_sbc1_9] = { .dt_id = TEGRA210_CLK_SBC1, .present = true }, 23326b301a05SRhyland Klein [tegra_clk_sbc2_9] = { .dt_id = TEGRA210_CLK_SBC2, .present = true }, 23336b301a05SRhyland Klein [tegra_clk_sbc3_9] = { .dt_id = TEGRA210_CLK_SBC3, .present = true }, 23346b301a05SRhyland Klein [tegra_clk_i2c5] = { .dt_id = TEGRA210_CLK_I2C5, .present = true }, 23356b301a05SRhyland Klein [tegra_clk_csi] = { .dt_id = TEGRA210_CLK_CSI, .present = true }, 23366b301a05SRhyland Klein [tegra_clk_i2c2] = { .dt_id = TEGRA210_CLK_I2C2, .present = true }, 23376b301a05SRhyland Klein [tegra_clk_uartc_8] = { .dt_id = TEGRA210_CLK_UARTC, .present = true }, 23386b301a05SRhyland Klein [tegra_clk_mipi_cal] = { .dt_id = TEGRA210_CLK_MIPI_CAL, .present = true }, 23396b301a05SRhyland Klein [tegra_clk_emc] = { .dt_id = TEGRA210_CLK_EMC, .present = true }, 23406b301a05SRhyland Klein [tegra_clk_usb2] = { .dt_id = TEGRA210_CLK_USB2, .present = true }, 23416b301a05SRhyland Klein [tegra_clk_bsev] = { .dt_id = TEGRA210_CLK_BSEV, .present = true }, 23426b301a05SRhyland Klein [tegra_clk_uartd_8] = { .dt_id = TEGRA210_CLK_UARTD, .present = true }, 23436b301a05SRhyland Klein [tegra_clk_i2c3] = { .dt_id = TEGRA210_CLK_I2C3, .present = true }, 23446b301a05SRhyland Klein [tegra_clk_sbc4_9] = { .dt_id = TEGRA210_CLK_SBC4, .present = true }, 23456b301a05SRhyland Klein [tegra_clk_sdmmc3_9] = { .dt_id = TEGRA210_CLK_SDMMC3, .present = true }, 23466b301a05SRhyland Klein [tegra_clk_pcie] = { .dt_id = TEGRA210_CLK_PCIE, .present = true }, 23476b301a05SRhyland Klein [tegra_clk_owr_8] = { .dt_id = TEGRA210_CLK_OWR, .present = true }, 23486b301a05SRhyland Klein [tegra_clk_afi] = { .dt_id = TEGRA210_CLK_AFI, .present = true }, 23496b301a05SRhyland Klein [tegra_clk_csite_8] = { .dt_id = TEGRA210_CLK_CSITE, .present = true }, 23506b301a05SRhyland Klein [tegra_clk_soc_therm_8] = { .dt_id = TEGRA210_CLK_SOC_THERM, .present = true }, 23516b301a05SRhyland Klein [tegra_clk_dtv] = { .dt_id = TEGRA210_CLK_DTV, .present = true }, 23526b301a05SRhyland Klein [tegra_clk_i2cslow] = { .dt_id = TEGRA210_CLK_I2CSLOW, .present = true }, 23536b301a05SRhyland Klein [tegra_clk_tsec_8] = { .dt_id = TEGRA210_CLK_TSEC, .present = true }, 23546b301a05SRhyland Klein [tegra_clk_xusb_host] = { .dt_id = TEGRA210_CLK_XUSB_HOST, .present = true }, 23556b301a05SRhyland Klein [tegra_clk_csus] = { .dt_id = TEGRA210_CLK_CSUS, .present = true }, 23566b301a05SRhyland Klein [tegra_clk_mselect] = { .dt_id = TEGRA210_CLK_MSELECT, .present = true }, 23576b301a05SRhyland Klein [tegra_clk_tsensor] = { .dt_id = TEGRA210_CLK_TSENSOR, .present = true }, 23586b301a05SRhyland Klein [tegra_clk_i2s3] = { .dt_id = TEGRA210_CLK_I2S3, .present = true }, 23596b301a05SRhyland Klein [tegra_clk_i2s4] = { .dt_id = TEGRA210_CLK_I2S4, .present = true }, 23606b301a05SRhyland Klein [tegra_clk_i2c4] = { .dt_id = TEGRA210_CLK_I2C4, .present = true }, 23616b301a05SRhyland Klein [tegra_clk_d_audio] = { .dt_id = TEGRA210_CLK_D_AUDIO, .present = true }, 23626b301a05SRhyland Klein [tegra_clk_hda2codec_2x_8] = { .dt_id = TEGRA210_CLK_HDA2CODEC_2X, .present = true }, 23636b301a05SRhyland Klein [tegra_clk_spdif_2x] = { .dt_id = TEGRA210_CLK_SPDIF_2X, .present = true }, 23646b301a05SRhyland Klein [tegra_clk_actmon] = { .dt_id = TEGRA210_CLK_ACTMON, .present = true }, 23656b301a05SRhyland Klein [tegra_clk_extern1] = { .dt_id = TEGRA210_CLK_EXTERN1, .present = true }, 23666b301a05SRhyland Klein [tegra_clk_extern2] = { .dt_id = TEGRA210_CLK_EXTERN2, .present = true }, 23676b301a05SRhyland Klein [tegra_clk_extern3] = { .dt_id = TEGRA210_CLK_EXTERN3, .present = true }, 23686b301a05SRhyland Klein [tegra_clk_sata_oob_8] = { .dt_id = TEGRA210_CLK_SATA_OOB, .present = true }, 23696b301a05SRhyland Klein [tegra_clk_sata_8] = { .dt_id = TEGRA210_CLK_SATA, .present = true }, 23706b301a05SRhyland Klein [tegra_clk_hda_8] = { .dt_id = TEGRA210_CLK_HDA, .present = true }, 23716b301a05SRhyland Klein [tegra_clk_hda2hdmi] = { .dt_id = TEGRA210_CLK_HDA2HDMI, .present = true }, 23726b301a05SRhyland Klein [tegra_clk_cilab] = { .dt_id = TEGRA210_CLK_CILAB, .present = true }, 23736b301a05SRhyland Klein [tegra_clk_cilcd] = { .dt_id = TEGRA210_CLK_CILCD, .present = true }, 23746b301a05SRhyland Klein [tegra_clk_cile] = { .dt_id = TEGRA210_CLK_CILE, .present = true }, 23756b301a05SRhyland Klein [tegra_clk_dsialp] = { .dt_id = TEGRA210_CLK_DSIALP, .present = true }, 23766b301a05SRhyland Klein [tegra_clk_dsiblp] = { .dt_id = TEGRA210_CLK_DSIBLP, .present = true }, 23776b301a05SRhyland Klein [tegra_clk_entropy_8] = { .dt_id = TEGRA210_CLK_ENTROPY, .present = true }, 23786b301a05SRhyland Klein [tegra_clk_xusb_ss] = { .dt_id = TEGRA210_CLK_XUSB_SS, .present = true }, 23796b301a05SRhyland Klein [tegra_clk_i2c6] = { .dt_id = TEGRA210_CLK_I2C6, .present = true }, 23806b301a05SRhyland Klein [tegra_clk_vim2_clk] = { .dt_id = TEGRA210_CLK_VIM2_CLK, .present = true }, 23816b301a05SRhyland Klein [tegra_clk_clk72Mhz_8] = { .dt_id = TEGRA210_CLK_CLK72MHZ, .present = true }, 23826b301a05SRhyland Klein [tegra_clk_vic03_8] = { .dt_id = TEGRA210_CLK_VIC03, .present = true }, 23836b301a05SRhyland Klein [tegra_clk_dpaux] = { .dt_id = TEGRA210_CLK_DPAUX, .present = true }, 238498c4b366SThierry Reding [tegra_clk_dpaux1] = { .dt_id = TEGRA210_CLK_DPAUX1, .present = true }, 23856b301a05SRhyland Klein [tegra_clk_sor0] = { .dt_id = TEGRA210_CLK_SOR0, .present = true }, 2386da8d1a35SThierry Reding [tegra_clk_sor0_out] = { .dt_id = TEGRA210_CLK_SOR0_OUT, .present = true }, 2387e452b818SThierry Reding [tegra_clk_sor1] = { .dt_id = TEGRA210_CLK_SOR1, .present = true }, 2388991a051eSThierry Reding [tegra_clk_sor1_out] = { .dt_id = TEGRA210_CLK_SOR1_OUT, .present = true }, 23896b301a05SRhyland Klein [tegra_clk_gpu] = { .dt_id = TEGRA210_CLK_GPU, .present = true }, 23906b301a05SRhyland Klein [tegra_clk_pll_g_ref] = { .dt_id = TEGRA210_CLK_PLL_G_REF, .present = true, }, 23916b301a05SRhyland Klein [tegra_clk_uartb_8] = { .dt_id = TEGRA210_CLK_UARTB, .present = true }, 23926b301a05SRhyland Klein [tegra_clk_spdif_in_8] = { .dt_id = TEGRA210_CLK_SPDIF_IN, .present = true }, 23936b301a05SRhyland Klein [tegra_clk_spdif_out] = { .dt_id = TEGRA210_CLK_SPDIF_OUT, .present = true }, 23946b301a05SRhyland Klein [tegra_clk_vi_10] = { .dt_id = TEGRA210_CLK_VI, .present = true }, 23956b301a05SRhyland Klein [tegra_clk_vi_sensor_8] = { .dt_id = TEGRA210_CLK_VI_SENSOR, .present = true }, 23966b301a05SRhyland Klein [tegra_clk_fuse] = { .dt_id = TEGRA210_CLK_FUSE, .present = true }, 23976b301a05SRhyland Klein [tegra_clk_fuse_burn] = { .dt_id = TEGRA210_CLK_FUSE_BURN, .present = true }, 23986b301a05SRhyland Klein [tegra_clk_clk_32k] = { .dt_id = TEGRA210_CLK_CLK_32K, .present = true }, 23996b301a05SRhyland Klein [tegra_clk_clk_m] = { .dt_id = TEGRA210_CLK_CLK_M, .present = true }, 24002b50e49bSSowjanya Komatineni [tegra_clk_osc] = { .dt_id = TEGRA210_CLK_OSC, .present = true }, 24019a85eb4dSSowjanya Komatineni [tegra_clk_osc_div2] = { .dt_id = TEGRA210_CLK_OSC_DIV2, .present = true }, 24029a85eb4dSSowjanya Komatineni [tegra_clk_osc_div4] = { .dt_id = TEGRA210_CLK_OSC_DIV4, .present = true }, 24036b301a05SRhyland Klein [tegra_clk_pll_ref] = { .dt_id = TEGRA210_CLK_PLL_REF, .present = true }, 24046b301a05SRhyland Klein [tegra_clk_pll_c] = { .dt_id = TEGRA210_CLK_PLL_C, .present = true }, 24056b301a05SRhyland Klein [tegra_clk_pll_c_out1] = { .dt_id = TEGRA210_CLK_PLL_C_OUT1, .present = true }, 24066b301a05SRhyland Klein [tegra_clk_pll_c2] = { .dt_id = TEGRA210_CLK_PLL_C2, .present = true }, 24076b301a05SRhyland Klein [tegra_clk_pll_c3] = { .dt_id = TEGRA210_CLK_PLL_C3, .present = true }, 24086b301a05SRhyland Klein [tegra_clk_pll_m] = { .dt_id = TEGRA210_CLK_PLL_M, .present = true }, 24096b301a05SRhyland Klein [tegra_clk_pll_p] = { .dt_id = TEGRA210_CLK_PLL_P, .present = true }, 24106b301a05SRhyland Klein [tegra_clk_pll_p_out1] = { .dt_id = TEGRA210_CLK_PLL_P_OUT1, .present = true }, 24116b301a05SRhyland Klein [tegra_clk_pll_p_out3] = { .dt_id = TEGRA210_CLK_PLL_P_OUT3, .present = true }, 24126b301a05SRhyland Klein [tegra_clk_pll_p_out4_cpu] = { .dt_id = TEGRA210_CLK_PLL_P_OUT4, .present = true }, 24136b301a05SRhyland Klein [tegra_clk_pll_p_out_hsio] = { .dt_id = TEGRA210_CLK_PLL_P_OUT_HSIO, .present = true }, 24146b301a05SRhyland Klein [tegra_clk_pll_p_out_xusb] = { .dt_id = TEGRA210_CLK_PLL_P_OUT_XUSB, .present = true }, 24156b301a05SRhyland Klein [tegra_clk_pll_p_out_cpu] = { .dt_id = TEGRA210_CLK_PLL_P_OUT_CPU, .present = true }, 24166b301a05SRhyland Klein [tegra_clk_pll_p_out_adsp] = { .dt_id = TEGRA210_CLK_PLL_P_OUT_ADSP, .present = true }, 24176b301a05SRhyland Klein [tegra_clk_pll_a] = { .dt_id = TEGRA210_CLK_PLL_A, .present = true }, 24186b301a05SRhyland Klein [tegra_clk_pll_a_out0] = { .dt_id = TEGRA210_CLK_PLL_A_OUT0, .present = true }, 24196b301a05SRhyland Klein [tegra_clk_pll_d] = { .dt_id = TEGRA210_CLK_PLL_D, .present = true }, 24206b301a05SRhyland Klein [tegra_clk_pll_d_out0] = { .dt_id = TEGRA210_CLK_PLL_D_OUT0, .present = true }, 24216b301a05SRhyland Klein [tegra_clk_pll_d2] = { .dt_id = TEGRA210_CLK_PLL_D2, .present = true }, 24226b301a05SRhyland Klein [tegra_clk_pll_d2_out0] = { .dt_id = TEGRA210_CLK_PLL_D2_OUT0, .present = true }, 24236b301a05SRhyland Klein [tegra_clk_pll_u] = { .dt_id = TEGRA210_CLK_PLL_U, .present = true }, 24246b301a05SRhyland Klein [tegra_clk_pll_u_out] = { .dt_id = TEGRA210_CLK_PLL_U_OUT, .present = true }, 24256b301a05SRhyland Klein [tegra_clk_pll_u_out1] = { .dt_id = TEGRA210_CLK_PLL_U_OUT1, .present = true }, 24266b301a05SRhyland Klein [tegra_clk_pll_u_out2] = { .dt_id = TEGRA210_CLK_PLL_U_OUT2, .present = true }, 24276b301a05SRhyland Klein [tegra_clk_pll_u_480m] = { .dt_id = TEGRA210_CLK_PLL_U_480M, .present = true }, 24286b301a05SRhyland Klein [tegra_clk_pll_u_60m] = { .dt_id = TEGRA210_CLK_PLL_U_60M, .present = true }, 24296b301a05SRhyland Klein [tegra_clk_pll_u_48m] = { .dt_id = TEGRA210_CLK_PLL_U_48M, .present = true }, 24306b301a05SRhyland Klein [tegra_clk_pll_x] = { .dt_id = TEGRA210_CLK_PLL_X, .present = true }, 24316b301a05SRhyland Klein [tegra_clk_pll_x_out0] = { .dt_id = TEGRA210_CLK_PLL_X_OUT0, .present = true }, 24326b301a05SRhyland Klein [tegra_clk_pll_re_vco] = { .dt_id = TEGRA210_CLK_PLL_RE_VCO, .present = true }, 24336b301a05SRhyland Klein [tegra_clk_pll_re_out] = { .dt_id = TEGRA210_CLK_PLL_RE_OUT, .present = true }, 24346b301a05SRhyland Klein [tegra_clk_spdif_in_sync] = { .dt_id = TEGRA210_CLK_SPDIF_IN_SYNC, .present = true }, 24356b301a05SRhyland Klein [tegra_clk_i2s0_sync] = { .dt_id = TEGRA210_CLK_I2S0_SYNC, .present = true }, 24366b301a05SRhyland Klein [tegra_clk_i2s1_sync] = { .dt_id = TEGRA210_CLK_I2S1_SYNC, .present = true }, 24376b301a05SRhyland Klein [tegra_clk_i2s2_sync] = { .dt_id = TEGRA210_CLK_I2S2_SYNC, .present = true }, 24386b301a05SRhyland Klein [tegra_clk_i2s3_sync] = { .dt_id = TEGRA210_CLK_I2S3_SYNC, .present = true }, 24396b301a05SRhyland Klein [tegra_clk_i2s4_sync] = { .dt_id = TEGRA210_CLK_I2S4_SYNC, .present = true }, 24406b301a05SRhyland Klein [tegra_clk_vimclk_sync] = { .dt_id = TEGRA210_CLK_VIMCLK_SYNC, .present = true }, 24416b301a05SRhyland Klein [tegra_clk_audio0] = { .dt_id = TEGRA210_CLK_AUDIO0, .present = true }, 24426b301a05SRhyland Klein [tegra_clk_audio1] = { .dt_id = TEGRA210_CLK_AUDIO1, .present = true }, 24436b301a05SRhyland Klein [tegra_clk_audio2] = { .dt_id = TEGRA210_CLK_AUDIO2, .present = true }, 24446b301a05SRhyland Klein [tegra_clk_audio3] = { .dt_id = TEGRA210_CLK_AUDIO3, .present = true }, 24456b301a05SRhyland Klein [tegra_clk_audio4] = { .dt_id = TEGRA210_CLK_AUDIO4, .present = true }, 24466b301a05SRhyland Klein [tegra_clk_spdif] = { .dt_id = TEGRA210_CLK_SPDIF, .present = true }, 24476b301a05SRhyland Klein [tegra_clk_xusb_gate] = { .dt_id = TEGRA210_CLK_XUSB_GATE, .present = true }, 24486b301a05SRhyland Klein [tegra_clk_xusb_host_src_8] = { .dt_id = TEGRA210_CLK_XUSB_HOST_SRC, .present = true }, 24496b301a05SRhyland Klein [tegra_clk_xusb_falcon_src_8] = { .dt_id = TEGRA210_CLK_XUSB_FALCON_SRC, .present = true }, 24506b301a05SRhyland Klein [tegra_clk_xusb_fs_src] = { .dt_id = TEGRA210_CLK_XUSB_FS_SRC, .present = true }, 24516b301a05SRhyland Klein [tegra_clk_xusb_ss_src_8] = { .dt_id = TEGRA210_CLK_XUSB_SS_SRC, .present = true }, 24526b301a05SRhyland Klein [tegra_clk_xusb_ss_div2] = { .dt_id = TEGRA210_CLK_XUSB_SS_DIV2, .present = true }, 24536b301a05SRhyland Klein [tegra_clk_xusb_dev_src_8] = { .dt_id = TEGRA210_CLK_XUSB_DEV_SRC, .present = true }, 24546b301a05SRhyland Klein [tegra_clk_xusb_dev] = { .dt_id = TEGRA210_CLK_XUSB_DEV, .present = true }, 24556b301a05SRhyland Klein [tegra_clk_xusb_hs_src_4] = { .dt_id = TEGRA210_CLK_XUSB_HS_SRC, .present = true }, 24566b301a05SRhyland Klein [tegra_clk_xusb_ssp_src] = { .dt_id = TEGRA210_CLK_XUSB_SSP_SRC, .present = true }, 24576b301a05SRhyland Klein [tegra_clk_usb2_hsic_trk] = { .dt_id = TEGRA210_CLK_USB2_HSIC_TRK, .present = true }, 24586b301a05SRhyland Klein [tegra_clk_hsic_trk] = { .dt_id = TEGRA210_CLK_HSIC_TRK, .present = true }, 24596b301a05SRhyland Klein [tegra_clk_usb2_trk] = { .dt_id = TEGRA210_CLK_USB2_TRK, .present = true }, 24606b301a05SRhyland Klein [tegra_clk_sclk] = { .dt_id = TEGRA210_CLK_SCLK, .present = true }, 24616b301a05SRhyland Klein [tegra_clk_sclk_mux] = { .dt_id = TEGRA210_CLK_SCLK_MUX, .present = true }, 24626b301a05SRhyland Klein [tegra_clk_hclk] = { .dt_id = TEGRA210_CLK_HCLK, .present = true }, 24636b301a05SRhyland Klein [tegra_clk_pclk] = { .dt_id = TEGRA210_CLK_PCLK, .present = true }, 24646b301a05SRhyland Klein [tegra_clk_cclk_g] = { .dt_id = TEGRA210_CLK_CCLK_G, .present = true }, 24656b301a05SRhyland Klein [tegra_clk_cclk_lp] = { .dt_id = TEGRA210_CLK_CCLK_LP, .present = true }, 24666b301a05SRhyland Klein [tegra_clk_dfll_ref] = { .dt_id = TEGRA210_CLK_DFLL_REF, .present = true }, 24676b301a05SRhyland Klein [tegra_clk_dfll_soc] = { .dt_id = TEGRA210_CLK_DFLL_SOC, .present = true }, 24686b301a05SRhyland Klein [tegra_clk_vi_sensor2_8] = { .dt_id = TEGRA210_CLK_VI_SENSOR2, .present = true }, 24696b301a05SRhyland Klein [tegra_clk_pll_p_out5] = { .dt_id = TEGRA210_CLK_PLL_P_OUT5, .present = true }, 24706b301a05SRhyland Klein [tegra_clk_pll_c4] = { .dt_id = TEGRA210_CLK_PLL_C4, .present = true }, 24716b301a05SRhyland Klein [tegra_clk_pll_dp] = { .dt_id = TEGRA210_CLK_PLL_DP, .present = true }, 24726b301a05SRhyland Klein [tegra_clk_audio0_mux] = { .dt_id = TEGRA210_CLK_AUDIO0_MUX, .present = true }, 24736b301a05SRhyland Klein [tegra_clk_audio1_mux] = { .dt_id = TEGRA210_CLK_AUDIO1_MUX, .present = true }, 24746b301a05SRhyland Klein [tegra_clk_audio2_mux] = { .dt_id = TEGRA210_CLK_AUDIO2_MUX, .present = true }, 24756b301a05SRhyland Klein [tegra_clk_audio3_mux] = { .dt_id = TEGRA210_CLK_AUDIO3_MUX, .present = true }, 24766b301a05SRhyland Klein [tegra_clk_audio4_mux] = { .dt_id = TEGRA210_CLK_AUDIO4_MUX, .present = true }, 24776b301a05SRhyland Klein [tegra_clk_spdif_mux] = { .dt_id = TEGRA210_CLK_SPDIF_MUX, .present = true }, 24786b301a05SRhyland Klein [tegra_clk_maud] = { .dt_id = TEGRA210_CLK_MAUD, .present = true }, 24796b301a05SRhyland Klein [tegra_clk_mipibif] = { .dt_id = TEGRA210_CLK_MIPIBIF, .present = true }, 24806b301a05SRhyland Klein [tegra_clk_qspi] = { .dt_id = TEGRA210_CLK_QSPI, .present = true }, 24816b301a05SRhyland Klein [tegra_clk_sdmmc_legacy] = { .dt_id = TEGRA210_CLK_SDMMC_LEGACY, .present = true }, 24826b301a05SRhyland Klein [tegra_clk_tsecb] = { .dt_id = TEGRA210_CLK_TSECB, .present = true }, 24836b301a05SRhyland Klein [tegra_clk_uartape] = { .dt_id = TEGRA210_CLK_UARTAPE, .present = true }, 24846b301a05SRhyland Klein [tegra_clk_vi_i2c] = { .dt_id = TEGRA210_CLK_VI_I2C, .present = true }, 24856b301a05SRhyland Klein [tegra_clk_ape] = { .dt_id = TEGRA210_CLK_APE, .present = true }, 24866b301a05SRhyland Klein [tegra_clk_dbgapb] = { .dt_id = TEGRA210_CLK_DBGAPB, .present = true }, 24876b301a05SRhyland Klein [tegra_clk_nvdec] = { .dt_id = TEGRA210_CLK_NVDEC, .present = true }, 24886b301a05SRhyland Klein [tegra_clk_nvenc] = { .dt_id = TEGRA210_CLK_NVENC, .present = true }, 24896b301a05SRhyland Klein [tegra_clk_nvjpg] = { .dt_id = TEGRA210_CLK_NVJPG, .present = true }, 24906b301a05SRhyland Klein [tegra_clk_pll_c4_out0] = { .dt_id = TEGRA210_CLK_PLL_C4_OUT0, .present = true }, 24916b301a05SRhyland Klein [tegra_clk_pll_c4_out1] = { .dt_id = TEGRA210_CLK_PLL_C4_OUT1, .present = true }, 24926b301a05SRhyland Klein [tegra_clk_pll_c4_out2] = { .dt_id = TEGRA210_CLK_PLL_C4_OUT2, .present = true }, 24936b301a05SRhyland Klein [tegra_clk_pll_c4_out3] = { .dt_id = TEGRA210_CLK_PLL_C4_OUT3, .present = true }, 249429569941SJon Hunter [tegra_clk_apb2ape] = { .dt_id = TEGRA210_CLK_APB2APE, .present = true }, 24959326947fSPeter De Schrijver [tegra_clk_pll_a1] = { .dt_id = TEGRA210_CLK_PLL_A1, .present = true }, 249634ac2c27SPeter De Schrijver [tegra_clk_ispa] = { .dt_id = TEGRA210_CLK_ISPA, .present = true }, 2497bfa34832SPeter De Schrijver [tegra_clk_cec] = { .dt_id = TEGRA210_CLK_CEC, .present = true }, 24986cfc8bc9SPeter De Schrijver [tegra_clk_dmic1] = { .dt_id = TEGRA210_CLK_DMIC1, .present = true }, 24996cfc8bc9SPeter De Schrijver [tegra_clk_dmic2] = { .dt_id = TEGRA210_CLK_DMIC2, .present = true }, 25006cfc8bc9SPeter De Schrijver [tegra_clk_dmic3] = { .dt_id = TEGRA210_CLK_DMIC3, .present = true }, 2501319af797SPeter De Schrijver [tegra_clk_dmic1_sync_clk] = { .dt_id = TEGRA210_CLK_DMIC1_SYNC_CLK, .present = true }, 2502319af797SPeter De Schrijver [tegra_clk_dmic2_sync_clk] = { .dt_id = TEGRA210_CLK_DMIC2_SYNC_CLK, .present = true }, 2503319af797SPeter De Schrijver [tegra_clk_dmic3_sync_clk] = { .dt_id = TEGRA210_CLK_DMIC3_SYNC_CLK, .present = true }, 2504319af797SPeter De Schrijver [tegra_clk_dmic1_sync_clk_mux] = { .dt_id = TEGRA210_CLK_DMIC1_SYNC_CLK_MUX, .present = true }, 2505319af797SPeter De Schrijver [tegra_clk_dmic2_sync_clk_mux] = { .dt_id = TEGRA210_CLK_DMIC2_SYNC_CLK_MUX, .present = true }, 2506319af797SPeter De Schrijver [tegra_clk_dmic3_sync_clk_mux] = { .dt_id = TEGRA210_CLK_DMIC3_SYNC_CLK_MUX, .present = true }, 250788da44c5SPeter De Schrijver [tegra_clk_dp2] = { .dt_id = TEGRA210_CLK_DP2, .present = true }, 250888da44c5SPeter De Schrijver [tegra_clk_iqc1] = { .dt_id = TEGRA210_CLK_IQC1, .present = true }, 250988da44c5SPeter De Schrijver [tegra_clk_iqc2] = { .dt_id = TEGRA210_CLK_IQC2, .present = true }, 251088da44c5SPeter De Schrijver [tegra_clk_pll_a_out_adsp] = { .dt_id = TEGRA210_CLK_PLL_A_OUT_ADSP, .present = true }, 251188da44c5SPeter De Schrijver [tegra_clk_pll_a_out0_out_adsp] = { .dt_id = TEGRA210_CLK_PLL_A_OUT0_OUT_ADSP, .present = true }, 251288da44c5SPeter De Schrijver [tegra_clk_adsp] = { .dt_id = TEGRA210_CLK_ADSP, .present = true }, 251388da44c5SPeter De Schrijver [tegra_clk_adsp_neon] = { .dt_id = TEGRA210_CLK_ADSP_NEON, .present = true }, 25146b301a05SRhyland Klein }; 25156b301a05SRhyland Klein 25166b301a05SRhyland Klein static struct tegra_devclk devclks[] __initdata = { 25176b301a05SRhyland Klein { .con_id = "clk_m", .dt_id = TEGRA210_CLK_CLK_M }, 25186b301a05SRhyland Klein { .con_id = "pll_ref", .dt_id = TEGRA210_CLK_PLL_REF }, 25196b301a05SRhyland Klein { .con_id = "clk_32k", .dt_id = TEGRA210_CLK_CLK_32K }, 25202b50e49bSSowjanya Komatineni { .con_id = "osc", .dt_id = TEGRA210_CLK_OSC }, 25219a85eb4dSSowjanya Komatineni { .con_id = "osc_div2", .dt_id = TEGRA210_CLK_OSC_DIV2 }, 25229a85eb4dSSowjanya Komatineni { .con_id = "osc_div4", .dt_id = TEGRA210_CLK_OSC_DIV4 }, 25236b301a05SRhyland Klein { .con_id = "pll_c", .dt_id = TEGRA210_CLK_PLL_C }, 25246b301a05SRhyland Klein { .con_id = "pll_c_out1", .dt_id = TEGRA210_CLK_PLL_C_OUT1 }, 25256b301a05SRhyland Klein { .con_id = "pll_c2", .dt_id = TEGRA210_CLK_PLL_C2 }, 25266b301a05SRhyland Klein { .con_id = "pll_c3", .dt_id = TEGRA210_CLK_PLL_C3 }, 25276b301a05SRhyland Klein { .con_id = "pll_p", .dt_id = TEGRA210_CLK_PLL_P }, 25286b301a05SRhyland Klein { .con_id = "pll_p_out1", .dt_id = TEGRA210_CLK_PLL_P_OUT1 }, 25296b301a05SRhyland Klein { .con_id = "pll_p_out2", .dt_id = TEGRA210_CLK_PLL_P_OUT2 }, 25306b301a05SRhyland Klein { .con_id = "pll_p_out3", .dt_id = TEGRA210_CLK_PLL_P_OUT3 }, 25316b301a05SRhyland Klein { .con_id = "pll_p_out4", .dt_id = TEGRA210_CLK_PLL_P_OUT4 }, 25326b301a05SRhyland Klein { .con_id = "pll_m", .dt_id = TEGRA210_CLK_PLL_M }, 25336b301a05SRhyland Klein { .con_id = "pll_x", .dt_id = TEGRA210_CLK_PLL_X }, 25346b301a05SRhyland Klein { .con_id = "pll_x_out0", .dt_id = TEGRA210_CLK_PLL_X_OUT0 }, 25356b301a05SRhyland Klein { .con_id = "pll_u", .dt_id = TEGRA210_CLK_PLL_U }, 25366b301a05SRhyland Klein { .con_id = "pll_u_out", .dt_id = TEGRA210_CLK_PLL_U_OUT }, 25376b301a05SRhyland Klein { .con_id = "pll_u_out1", .dt_id = TEGRA210_CLK_PLL_U_OUT1 }, 25386b301a05SRhyland Klein { .con_id = "pll_u_out2", .dt_id = TEGRA210_CLK_PLL_U_OUT2 }, 25396b301a05SRhyland Klein { .con_id = "pll_u_480M", .dt_id = TEGRA210_CLK_PLL_U_480M }, 25406b301a05SRhyland Klein { .con_id = "pll_u_60M", .dt_id = TEGRA210_CLK_PLL_U_60M }, 25416b301a05SRhyland Klein { .con_id = "pll_u_48M", .dt_id = TEGRA210_CLK_PLL_U_48M }, 25426b301a05SRhyland Klein { .con_id = "pll_d", .dt_id = TEGRA210_CLK_PLL_D }, 25436b301a05SRhyland Klein { .con_id = "pll_d_out0", .dt_id = TEGRA210_CLK_PLL_D_OUT0 }, 25446b301a05SRhyland Klein { .con_id = "pll_d2", .dt_id = TEGRA210_CLK_PLL_D2 }, 25456b301a05SRhyland Klein { .con_id = "pll_d2_out0", .dt_id = TEGRA210_CLK_PLL_D2_OUT0 }, 25466b301a05SRhyland Klein { .con_id = "pll_a", .dt_id = TEGRA210_CLK_PLL_A }, 25476b301a05SRhyland Klein { .con_id = "pll_a_out0", .dt_id = TEGRA210_CLK_PLL_A_OUT0 }, 25486b301a05SRhyland Klein { .con_id = "pll_re_vco", .dt_id = TEGRA210_CLK_PLL_RE_VCO }, 25496b301a05SRhyland Klein { .con_id = "pll_re_out", .dt_id = TEGRA210_CLK_PLL_RE_OUT }, 25506b301a05SRhyland Klein { .con_id = "spdif_in_sync", .dt_id = TEGRA210_CLK_SPDIF_IN_SYNC }, 25516b301a05SRhyland Klein { .con_id = "i2s0_sync", .dt_id = TEGRA210_CLK_I2S0_SYNC }, 25526b301a05SRhyland Klein { .con_id = "i2s1_sync", .dt_id = TEGRA210_CLK_I2S1_SYNC }, 25536b301a05SRhyland Klein { .con_id = "i2s2_sync", .dt_id = TEGRA210_CLK_I2S2_SYNC }, 25546b301a05SRhyland Klein { .con_id = "i2s3_sync", .dt_id = TEGRA210_CLK_I2S3_SYNC }, 25556b301a05SRhyland Klein { .con_id = "i2s4_sync", .dt_id = TEGRA210_CLK_I2S4_SYNC }, 25566b301a05SRhyland Klein { .con_id = "vimclk_sync", .dt_id = TEGRA210_CLK_VIMCLK_SYNC }, 25576b301a05SRhyland Klein { .con_id = "audio0", .dt_id = TEGRA210_CLK_AUDIO0 }, 25586b301a05SRhyland Klein { .con_id = "audio1", .dt_id = TEGRA210_CLK_AUDIO1 }, 25596b301a05SRhyland Klein { .con_id = "audio2", .dt_id = TEGRA210_CLK_AUDIO2 }, 25606b301a05SRhyland Klein { .con_id = "audio3", .dt_id = TEGRA210_CLK_AUDIO3 }, 25616b301a05SRhyland Klein { .con_id = "audio4", .dt_id = TEGRA210_CLK_AUDIO4 }, 25626b301a05SRhyland Klein { .con_id = "spdif", .dt_id = TEGRA210_CLK_SPDIF }, 25636b301a05SRhyland Klein { .con_id = "spdif_2x", .dt_id = TEGRA210_CLK_SPDIF_2X }, 2564acbeec3dSSowjanya Komatineni { .con_id = "extern1", .dt_id = TEGRA210_CLK_EXTERN1 }, 2565acbeec3dSSowjanya Komatineni { .con_id = "extern2", .dt_id = TEGRA210_CLK_EXTERN2 }, 2566acbeec3dSSowjanya Komatineni { .con_id = "extern3", .dt_id = TEGRA210_CLK_EXTERN3 }, 25676b301a05SRhyland Klein { .con_id = "cclk_g", .dt_id = TEGRA210_CLK_CCLK_G }, 25686b301a05SRhyland Klein { .con_id = "cclk_lp", .dt_id = TEGRA210_CLK_CCLK_LP }, 25696b301a05SRhyland Klein { .con_id = "sclk", .dt_id = TEGRA210_CLK_SCLK }, 25706b301a05SRhyland Klein { .con_id = "hclk", .dt_id = TEGRA210_CLK_HCLK }, 25716b301a05SRhyland Klein { .con_id = "pclk", .dt_id = TEGRA210_CLK_PCLK }, 25726b301a05SRhyland Klein { .con_id = "fuse", .dt_id = TEGRA210_CLK_FUSE }, 25736b301a05SRhyland Klein { .dev_id = "rtc-tegra", .dt_id = TEGRA210_CLK_RTC }, 25746b301a05SRhyland Klein { .dev_id = "timer", .dt_id = TEGRA210_CLK_TIMER }, 25756b301a05SRhyland Klein { .con_id = "pll_c4_out0", .dt_id = TEGRA210_CLK_PLL_C4_OUT0 }, 25766b301a05SRhyland Klein { .con_id = "pll_c4_out1", .dt_id = TEGRA210_CLK_PLL_C4_OUT1 }, 25776b301a05SRhyland Klein { .con_id = "pll_c4_out2", .dt_id = TEGRA210_CLK_PLL_C4_OUT2 }, 25786b301a05SRhyland Klein { .con_id = "pll_c4_out3", .dt_id = TEGRA210_CLK_PLL_C4_OUT3 }, 25796b301a05SRhyland Klein { .con_id = "dpaux", .dt_id = TEGRA210_CLK_DPAUX }, 25806b301a05SRhyland Klein }; 25816b301a05SRhyland Klein 25826b301a05SRhyland Klein static struct tegra_audio_clk_info tegra210_audio_plls[] = { 25836b301a05SRhyland Klein { "pll_a", &pll_a_params, tegra_clk_pll_a, "pll_ref" }, 25846b301a05SRhyland Klein { "pll_a1", &pll_a1_params, tegra_clk_pll_a1, "pll_ref" }, 25856b301a05SRhyland Klein }; 25866b301a05SRhyland Klein 258724c3ebefSPeter De Schrijver static const char * const aclk_parents[] = { 258824c3ebefSPeter De Schrijver "pll_a1", "pll_c", "pll_p", "pll_a_out0", "pll_c2", "pll_c3", 258924c3ebefSPeter De Schrijver "clk_m" 259024c3ebefSPeter De Schrijver }; 259124c3ebefSPeter De Schrijver 2592e403d005SPeter De Schrijver static const unsigned int nvjpg_slcg_clkids[] = { TEGRA210_CLK_NVDEC }; 2593e403d005SPeter De Schrijver static const unsigned int nvdec_slcg_clkids[] = { TEGRA210_CLK_NVJPG }; 2594e403d005SPeter De Schrijver static const unsigned int sor_slcg_clkids[] = { TEGRA210_CLK_HDA2CODEC_2X, 2595e403d005SPeter De Schrijver TEGRA210_CLK_HDA2HDMI, TEGRA210_CLK_DISP1, TEGRA210_CLK_DISP2 }; 2596e403d005SPeter De Schrijver static const unsigned int disp_slcg_clkids[] = { TEGRA210_CLK_LA, 2597e403d005SPeter De Schrijver TEGRA210_CLK_HOST1X}; 2598e403d005SPeter De Schrijver static const unsigned int xusba_slcg_clkids[] = { TEGRA210_CLK_XUSB_HOST, 2599e403d005SPeter De Schrijver TEGRA210_CLK_XUSB_DEV }; 2600e403d005SPeter De Schrijver static const unsigned int xusbb_slcg_clkids[] = { TEGRA210_CLK_XUSB_HOST, 2601e403d005SPeter De Schrijver TEGRA210_CLK_XUSB_SS }; 2602e403d005SPeter De Schrijver static const unsigned int xusbc_slcg_clkids[] = { TEGRA210_CLK_XUSB_DEV, 2603e403d005SPeter De Schrijver TEGRA210_CLK_XUSB_SS }; 2604e403d005SPeter De Schrijver static const unsigned int venc_slcg_clkids[] = { TEGRA210_CLK_HOST1X, 2605e403d005SPeter De Schrijver TEGRA210_CLK_PLL_D }; 2606e403d005SPeter De Schrijver static const unsigned int ape_slcg_clkids[] = { TEGRA210_CLK_ACLK, 2607e403d005SPeter De Schrijver TEGRA210_CLK_I2S0, TEGRA210_CLK_I2S1, TEGRA210_CLK_I2S2, 2608e403d005SPeter De Schrijver TEGRA210_CLK_I2S3, TEGRA210_CLK_I2S4, TEGRA210_CLK_SPDIF_OUT, 2609e403d005SPeter De Schrijver TEGRA210_CLK_D_AUDIO }; 2610e403d005SPeter De Schrijver static const unsigned int vic_slcg_clkids[] = { TEGRA210_CLK_HOST1X }; 2611e403d005SPeter De Schrijver 2612e403d005SPeter De Schrijver static struct tegra210_domain_mbist_war tegra210_pg_mbist_war[] = { 2613e403d005SPeter De Schrijver [TEGRA_POWERGATE_VENC] = { 2614e403d005SPeter De Schrijver .handle_lvl2_ovr = tegra210_venc_mbist_war, 2615e403d005SPeter De Schrijver .num_clks = ARRAY_SIZE(venc_slcg_clkids), 2616e403d005SPeter De Schrijver .clk_init_data = venc_slcg_clkids, 2617e403d005SPeter De Schrijver }, 2618e403d005SPeter De Schrijver [TEGRA_POWERGATE_SATA] = { 2619e403d005SPeter De Schrijver .handle_lvl2_ovr = tegra210_generic_mbist_war, 2620e403d005SPeter De Schrijver .lvl2_offset = LVL2_CLK_GATE_OVRC, 2621e403d005SPeter De Schrijver .lvl2_mask = BIT(0) | BIT(17) | BIT(19), 2622e403d005SPeter De Schrijver }, 2623e403d005SPeter De Schrijver [TEGRA_POWERGATE_MPE] = { 2624e403d005SPeter De Schrijver .handle_lvl2_ovr = tegra210_generic_mbist_war, 2625e403d005SPeter De Schrijver .lvl2_offset = LVL2_CLK_GATE_OVRE, 2626a4dbbceeSJoseph Lo .lvl2_mask = BIT(29), 2627e403d005SPeter De Schrijver }, 2628e403d005SPeter De Schrijver [TEGRA_POWERGATE_SOR] = { 2629e403d005SPeter De Schrijver .handle_lvl2_ovr = tegra210_generic_mbist_war, 2630e403d005SPeter De Schrijver .num_clks = ARRAY_SIZE(sor_slcg_clkids), 2631e403d005SPeter De Schrijver .clk_init_data = sor_slcg_clkids, 2632e403d005SPeter De Schrijver .lvl2_offset = LVL2_CLK_GATE_OVRA, 2633e403d005SPeter De Schrijver .lvl2_mask = BIT(1) | BIT(2), 2634e403d005SPeter De Schrijver }, 2635e403d005SPeter De Schrijver [TEGRA_POWERGATE_DIS] = { 2636e403d005SPeter De Schrijver .handle_lvl2_ovr = tegra210_disp_mbist_war, 2637e403d005SPeter De Schrijver .num_clks = ARRAY_SIZE(disp_slcg_clkids), 2638e403d005SPeter De Schrijver .clk_init_data = disp_slcg_clkids, 2639e403d005SPeter De Schrijver }, 2640e403d005SPeter De Schrijver [TEGRA_POWERGATE_DISB] = { 2641e403d005SPeter De Schrijver .num_clks = ARRAY_SIZE(disp_slcg_clkids), 2642e403d005SPeter De Schrijver .clk_init_data = disp_slcg_clkids, 2643e403d005SPeter De Schrijver .handle_lvl2_ovr = tegra210_generic_mbist_war, 2644e403d005SPeter De Schrijver .lvl2_offset = LVL2_CLK_GATE_OVRA, 2645e403d005SPeter De Schrijver .lvl2_mask = BIT(2), 2646e403d005SPeter De Schrijver }, 2647e403d005SPeter De Schrijver [TEGRA_POWERGATE_XUSBA] = { 2648e403d005SPeter De Schrijver .num_clks = ARRAY_SIZE(xusba_slcg_clkids), 2649e403d005SPeter De Schrijver .clk_init_data = xusba_slcg_clkids, 2650e403d005SPeter De Schrijver .handle_lvl2_ovr = tegra210_generic_mbist_war, 2651e403d005SPeter De Schrijver .lvl2_offset = LVL2_CLK_GATE_OVRC, 2652e403d005SPeter De Schrijver .lvl2_mask = BIT(30) | BIT(31), 2653e403d005SPeter De Schrijver }, 2654e403d005SPeter De Schrijver [TEGRA_POWERGATE_XUSBB] = { 2655e403d005SPeter De Schrijver .num_clks = ARRAY_SIZE(xusbb_slcg_clkids), 2656e403d005SPeter De Schrijver .clk_init_data = xusbb_slcg_clkids, 2657e403d005SPeter De Schrijver .handle_lvl2_ovr = tegra210_generic_mbist_war, 2658e403d005SPeter De Schrijver .lvl2_offset = LVL2_CLK_GATE_OVRC, 2659e403d005SPeter De Schrijver .lvl2_mask = BIT(30) | BIT(31), 2660e403d005SPeter De Schrijver }, 2661e403d005SPeter De Schrijver [TEGRA_POWERGATE_XUSBC] = { 2662e403d005SPeter De Schrijver .num_clks = ARRAY_SIZE(xusbc_slcg_clkids), 2663e403d005SPeter De Schrijver .clk_init_data = xusbc_slcg_clkids, 2664e403d005SPeter De Schrijver .handle_lvl2_ovr = tegra210_generic_mbist_war, 2665e403d005SPeter De Schrijver .lvl2_offset = LVL2_CLK_GATE_OVRC, 2666e403d005SPeter De Schrijver .lvl2_mask = BIT(30) | BIT(31), 2667e403d005SPeter De Schrijver }, 2668e403d005SPeter De Schrijver [TEGRA_POWERGATE_VIC] = { 2669e403d005SPeter De Schrijver .num_clks = ARRAY_SIZE(vic_slcg_clkids), 2670e403d005SPeter De Schrijver .clk_init_data = vic_slcg_clkids, 2671e403d005SPeter De Schrijver .handle_lvl2_ovr = tegra210_vic_mbist_war, 2672e403d005SPeter De Schrijver }, 2673e403d005SPeter De Schrijver [TEGRA_POWERGATE_NVDEC] = { 2674e403d005SPeter De Schrijver .num_clks = ARRAY_SIZE(nvdec_slcg_clkids), 2675e403d005SPeter De Schrijver .clk_init_data = nvdec_slcg_clkids, 2676e403d005SPeter De Schrijver .handle_lvl2_ovr = tegra210_generic_mbist_war, 2677a4dbbceeSJoseph Lo .lvl2_offset = LVL2_CLK_GATE_OVRE, 2678e403d005SPeter De Schrijver .lvl2_mask = BIT(9) | BIT(31), 2679e403d005SPeter De Schrijver }, 2680e403d005SPeter De Schrijver [TEGRA_POWERGATE_NVJPG] = { 2681e403d005SPeter De Schrijver .num_clks = ARRAY_SIZE(nvjpg_slcg_clkids), 2682e403d005SPeter De Schrijver .clk_init_data = nvjpg_slcg_clkids, 2683e403d005SPeter De Schrijver .handle_lvl2_ovr = tegra210_generic_mbist_war, 2684a4dbbceeSJoseph Lo .lvl2_offset = LVL2_CLK_GATE_OVRE, 2685e403d005SPeter De Schrijver .lvl2_mask = BIT(9) | BIT(31), 2686e403d005SPeter De Schrijver }, 2687e403d005SPeter De Schrijver [TEGRA_POWERGATE_AUD] = { 2688e403d005SPeter De Schrijver .num_clks = ARRAY_SIZE(ape_slcg_clkids), 2689e403d005SPeter De Schrijver .clk_init_data = ape_slcg_clkids, 2690e403d005SPeter De Schrijver .handle_lvl2_ovr = tegra210_ape_mbist_war, 2691e403d005SPeter De Schrijver }, 2692e403d005SPeter De Schrijver [TEGRA_POWERGATE_VE2] = { 2693e403d005SPeter De Schrijver .handle_lvl2_ovr = tegra210_generic_mbist_war, 2694e403d005SPeter De Schrijver .lvl2_offset = LVL2_CLK_GATE_OVRD, 2695e403d005SPeter De Schrijver .lvl2_mask = BIT(22), 2696e403d005SPeter De Schrijver }, 2697e403d005SPeter De Schrijver }; 2698e403d005SPeter De Schrijver 2699e403d005SPeter De Schrijver int tegra210_clk_handle_mbist_war(unsigned int id) 2700e403d005SPeter De Schrijver { 2701e403d005SPeter De Schrijver int err; 2702e403d005SPeter De Schrijver struct tegra210_domain_mbist_war *mbist_war; 2703e403d005SPeter De Schrijver 2704e403d005SPeter De Schrijver if (id >= ARRAY_SIZE(tegra210_pg_mbist_war)) { 2705e403d005SPeter De Schrijver WARN(1, "unknown domain id in MBIST WAR handler\n"); 2706e403d005SPeter De Schrijver return -EINVAL; 2707e403d005SPeter De Schrijver } 2708e403d005SPeter De Schrijver 2709e403d005SPeter De Schrijver mbist_war = &tegra210_pg_mbist_war[id]; 2710e403d005SPeter De Schrijver if (!mbist_war->handle_lvl2_ovr) 2711e403d005SPeter De Schrijver return 0; 2712e403d005SPeter De Schrijver 2713e403d005SPeter De Schrijver if (mbist_war->num_clks && !mbist_war->clks) 2714e403d005SPeter De Schrijver return -ENODEV; 2715e403d005SPeter De Schrijver 2716e403d005SPeter De Schrijver err = clk_bulk_prepare_enable(mbist_war->num_clks, mbist_war->clks); 2717e403d005SPeter De Schrijver if (err < 0) 2718e403d005SPeter De Schrijver return err; 2719e403d005SPeter De Schrijver 2720e403d005SPeter De Schrijver mutex_lock(&lvl2_ovr_lock); 2721e403d005SPeter De Schrijver 2722e403d005SPeter De Schrijver mbist_war->handle_lvl2_ovr(mbist_war); 2723e403d005SPeter De Schrijver 2724e403d005SPeter De Schrijver mutex_unlock(&lvl2_ovr_lock); 2725e403d005SPeter De Schrijver 2726e403d005SPeter De Schrijver clk_bulk_disable_unprepare(mbist_war->num_clks, mbist_war->clks); 2727e403d005SPeter De Schrijver 2728e403d005SPeter De Schrijver return 0; 2729e403d005SPeter De Schrijver } 2730e403d005SPeter De Schrijver 27313843832fSPeter De Schrijver void tegra210_put_utmipll_in_iddq(void) 27323843832fSPeter De Schrijver { 27333843832fSPeter De Schrijver u32 reg; 27343843832fSPeter De Schrijver 27353843832fSPeter De Schrijver reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0); 27363843832fSPeter De Schrijver 27373843832fSPeter De Schrijver if (reg & UTMIPLL_HW_PWRDN_CFG0_UTMIPLL_LOCK) { 27383843832fSPeter De Schrijver pr_err("trying to assert IDDQ while UTMIPLL is locked\n"); 27393843832fSPeter De Schrijver return; 27403843832fSPeter De Schrijver } 27413843832fSPeter De Schrijver 27423843832fSPeter De Schrijver reg |= UTMIPLL_HW_PWRDN_CFG0_IDDQ_OVERRIDE; 27433843832fSPeter De Schrijver writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0); 27443843832fSPeter De Schrijver } 27453843832fSPeter De Schrijver EXPORT_SYMBOL_GPL(tegra210_put_utmipll_in_iddq); 27463843832fSPeter De Schrijver 27473843832fSPeter De Schrijver void tegra210_put_utmipll_out_iddq(void) 27483843832fSPeter De Schrijver { 27493843832fSPeter De Schrijver u32 reg; 27503843832fSPeter De Schrijver 27513843832fSPeter De Schrijver reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0); 27523843832fSPeter De Schrijver reg &= ~UTMIPLL_HW_PWRDN_CFG0_IDDQ_OVERRIDE; 27533843832fSPeter De Schrijver writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0); 27543843832fSPeter De Schrijver } 27553843832fSPeter De Schrijver EXPORT_SYMBOL_GPL(tegra210_put_utmipll_out_iddq); 27563843832fSPeter De Schrijver 2757e745f992SPeter De Schrijver static void tegra210_utmi_param_configure(void) 2758e745f992SPeter De Schrijver { 2759e745f992SPeter De Schrijver u32 reg; 2760e745f992SPeter De Schrijver int i; 2761e745f992SPeter De Schrijver 2762e745f992SPeter De Schrijver for (i = 0; i < ARRAY_SIZE(utmi_parameters); i++) { 2763e745f992SPeter De Schrijver if (osc_freq == utmi_parameters[i].osc_frequency) 2764e745f992SPeter De Schrijver break; 2765e745f992SPeter De Schrijver } 2766e745f992SPeter De Schrijver 2767e745f992SPeter De Schrijver if (i >= ARRAY_SIZE(utmi_parameters)) { 2768e745f992SPeter De Schrijver pr_err("%s: Unexpected oscillator freq %lu\n", __func__, 2769e745f992SPeter De Schrijver osc_freq); 2770e745f992SPeter De Schrijver return; 2771e745f992SPeter De Schrijver } 2772e745f992SPeter De Schrijver 2773e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0); 2774e745f992SPeter De Schrijver reg &= ~UTMIPLL_HW_PWRDN_CFG0_IDDQ_OVERRIDE; 2775e745f992SPeter De Schrijver writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0); 2776e745f992SPeter De Schrijver 2777e745f992SPeter De Schrijver udelay(10); 2778e745f992SPeter De Schrijver 2779e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + UTMIP_PLL_CFG2); 2780e745f992SPeter De Schrijver 2781e745f992SPeter De Schrijver /* Program UTMIP PLL stable and active counts */ 2782e745f992SPeter De Schrijver /* [FIXME] arclk_rst.h says WRONG! This should be 1ms -> 0x50 Check! */ 2783e745f992SPeter De Schrijver reg &= ~UTMIP_PLL_CFG2_STABLE_COUNT(~0); 2784e745f992SPeter De Schrijver reg |= UTMIP_PLL_CFG2_STABLE_COUNT(utmi_parameters[i].stable_count); 2785e745f992SPeter De Schrijver 2786e745f992SPeter De Schrijver reg &= ~UTMIP_PLL_CFG2_ACTIVE_DLY_COUNT(~0); 2787e745f992SPeter De Schrijver reg |= 2788e745f992SPeter De Schrijver UTMIP_PLL_CFG2_ACTIVE_DLY_COUNT(utmi_parameters[i].active_delay_count); 2789e745f992SPeter De Schrijver writel_relaxed(reg, clk_base + UTMIP_PLL_CFG2); 2790e745f992SPeter De Schrijver 2791e745f992SPeter De Schrijver /* Program UTMIP PLL delay and oscillator frequency counts */ 2792e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + UTMIP_PLL_CFG1); 2793e745f992SPeter De Schrijver 279471422dbbSAlex Frid reg &= ~UTMIP_PLL_CFG1_ENABLE_DLY_COUNT(~0); 2795e745f992SPeter De Schrijver reg |= 2796e745f992SPeter De Schrijver UTMIP_PLL_CFG1_ENABLE_DLY_COUNT(utmi_parameters[i].enable_delay_count); 2797e745f992SPeter De Schrijver 2798e745f992SPeter De Schrijver reg &= ~UTMIP_PLL_CFG1_XTAL_FREQ_COUNT(~0); 2799e745f992SPeter De Schrijver reg |= 2800e745f992SPeter De Schrijver UTMIP_PLL_CFG1_XTAL_FREQ_COUNT(utmi_parameters[i].xtal_freq_count); 2801e745f992SPeter De Schrijver 2802e745f992SPeter De Schrijver reg |= UTMIP_PLL_CFG1_FORCE_PLLU_POWERDOWN; 2803e745f992SPeter De Schrijver writel_relaxed(reg, clk_base + UTMIP_PLL_CFG1); 2804e745f992SPeter De Schrijver 2805e745f992SPeter De Schrijver /* Remove power downs from UTMIP PLL control bits */ 2806e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + UTMIP_PLL_CFG1); 2807e745f992SPeter De Schrijver reg &= ~UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERDOWN; 2808e745f992SPeter De Schrijver reg |= UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERUP; 2809e745f992SPeter De Schrijver writel_relaxed(reg, clk_base + UTMIP_PLL_CFG1); 281071422dbbSAlex Frid 281171422dbbSAlex Frid udelay(20); 2812e745f992SPeter De Schrijver 2813e745f992SPeter De Schrijver /* Enable samplers for SNPS, XUSB_HOST, XUSB_DEV */ 2814e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + UTMIP_PLL_CFG2); 2815e745f992SPeter De Schrijver reg |= UTMIP_PLL_CFG2_FORCE_PD_SAMP_A_POWERUP; 2816e745f992SPeter De Schrijver reg |= UTMIP_PLL_CFG2_FORCE_PD_SAMP_B_POWERUP; 2817e745f992SPeter De Schrijver reg |= UTMIP_PLL_CFG2_FORCE_PD_SAMP_D_POWERUP; 2818e745f992SPeter De Schrijver reg &= ~UTMIP_PLL_CFG2_FORCE_PD_SAMP_A_POWERDOWN; 2819e745f992SPeter De Schrijver reg &= ~UTMIP_PLL_CFG2_FORCE_PD_SAMP_B_POWERDOWN; 2820e745f992SPeter De Schrijver reg &= ~UTMIP_PLL_CFG2_FORCE_PD_SAMP_D_POWERDOWN; 2821e745f992SPeter De Schrijver writel_relaxed(reg, clk_base + UTMIP_PLL_CFG2); 2822e745f992SPeter De Schrijver 2823e745f992SPeter De Schrijver /* Setup HW control of UTMIPLL */ 2824e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + UTMIP_PLL_CFG1); 2825e745f992SPeter De Schrijver reg &= ~UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERDOWN; 2826e745f992SPeter De Schrijver reg &= ~UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERUP; 2827e745f992SPeter De Schrijver writel_relaxed(reg, clk_base + UTMIP_PLL_CFG1); 2828e745f992SPeter De Schrijver 2829e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0); 2830e745f992SPeter De Schrijver reg |= UTMIPLL_HW_PWRDN_CFG0_USE_LOCKDET; 2831e745f992SPeter De Schrijver reg &= ~UTMIPLL_HW_PWRDN_CFG0_CLK_ENABLE_SWCTL; 2832e745f992SPeter De Schrijver writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0); 2833e745f992SPeter De Schrijver 2834e745f992SPeter De Schrijver udelay(1); 2835e745f992SPeter De Schrijver 2836e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + XUSB_PLL_CFG0); 2837e745f992SPeter De Schrijver reg &= ~XUSB_PLL_CFG0_UTMIPLL_LOCK_DLY; 2838e745f992SPeter De Schrijver writel_relaxed(reg, clk_base + XUSB_PLL_CFG0); 2839e745f992SPeter De Schrijver 2840e745f992SPeter De Schrijver udelay(1); 2841e745f992SPeter De Schrijver 2842e745f992SPeter De Schrijver /* Enable HW control UTMIPLL */ 2843e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0); 2844e745f992SPeter De Schrijver reg |= UTMIPLL_HW_PWRDN_CFG0_SEQ_ENABLE; 2845e745f992SPeter De Schrijver writel_relaxed(reg, clk_base + UTMIPLL_HW_PWRDN_CFG0); 2846e745f992SPeter De Schrijver } 2847e745f992SPeter De Schrijver 2848e745f992SPeter De Schrijver static int tegra210_enable_pllu(void) 2849e745f992SPeter De Schrijver { 2850e745f992SPeter De Schrijver struct tegra_clk_pll_freq_table *fentry; 2851e745f992SPeter De Schrijver struct tegra_clk_pll pllu; 2852e745f992SPeter De Schrijver u32 reg; 2853535f296dSSowjanya Komatineni int ret; 2854e745f992SPeter De Schrijver 2855e745f992SPeter De Schrijver for (fentry = pll_u_freq_table; fentry->input_rate; fentry++) { 2856e745f992SPeter De Schrijver if (fentry->input_rate == pll_ref_freq) 2857e745f992SPeter De Schrijver break; 2858e745f992SPeter De Schrijver } 2859e745f992SPeter De Schrijver 2860e745f992SPeter De Schrijver if (!fentry->input_rate) { 2861e745f992SPeter De Schrijver pr_err("Unknown PLL_U reference frequency %lu\n", pll_ref_freq); 2862e745f992SPeter De Schrijver return -EINVAL; 2863e745f992SPeter De Schrijver } 2864e745f992SPeter De Schrijver 2865e745f992SPeter De Schrijver /* clear IDDQ bit */ 2866e745f992SPeter De Schrijver pllu.params = &pll_u_vco_params; 2867e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + pllu.params->ext_misc_reg[0]); 2868e745f992SPeter De Schrijver reg &= ~BIT(pllu.params->iddq_bit_idx); 2869e745f992SPeter De Schrijver writel_relaxed(reg, clk_base + pllu.params->ext_misc_reg[0]); 2870f68cbb35SSowjanya Komatineni fence_udelay(5, clk_base); 2871e745f992SPeter De Schrijver 2872e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + PLLU_BASE); 2873e745f992SPeter De Schrijver reg &= ~GENMASK(20, 0); 2874e745f992SPeter De Schrijver reg |= fentry->m; 2875e745f992SPeter De Schrijver reg |= fentry->n << 8; 2876e745f992SPeter De Schrijver reg |= fentry->p << 16; 2877e745f992SPeter De Schrijver writel(reg, clk_base + PLLU_BASE); 2878f68cbb35SSowjanya Komatineni fence_udelay(1, clk_base); 2879e745f992SPeter De Schrijver reg |= PLL_ENABLE; 2880e745f992SPeter De Schrijver writel(reg, clk_base + PLLU_BASE); 2881e745f992SPeter De Schrijver 2882535f296dSSowjanya Komatineni /* 2883535f296dSSowjanya Komatineni * During clocks resume, same PLLU init and enable sequence get 2884535f296dSSowjanya Komatineni * executed. So, readx_poll_timeout_atomic can't be used here as it 2885535f296dSSowjanya Komatineni * uses ktime_get() and timekeeping resume doesn't happen by that 2886535f296dSSowjanya Komatineni * time. So, using tegra210_wait_for_mask for PLL LOCK. 2887535f296dSSowjanya Komatineni */ 2888535f296dSSowjanya Komatineni ret = tegra210_wait_for_mask(&pllu, PLLU_BASE, PLL_BASE_LOCK); 2889535f296dSSowjanya Komatineni if (ret) { 2890e745f992SPeter De Schrijver pr_err("Timed out waiting for PLL_U to lock\n"); 2891e745f992SPeter De Schrijver return -ETIMEDOUT; 2892e745f992SPeter De Schrijver } 2893e745f992SPeter De Schrijver 2894e745f992SPeter De Schrijver return 0; 2895e745f992SPeter De Schrijver } 2896e745f992SPeter De Schrijver 2897e745f992SPeter De Schrijver static int tegra210_init_pllu(void) 2898e745f992SPeter De Schrijver { 2899e745f992SPeter De Schrijver u32 reg; 2900e745f992SPeter De Schrijver int err; 2901e745f992SPeter De Schrijver 2902e745f992SPeter De Schrijver tegra210_pllu_set_defaults(&pll_u_vco_params); 2903e745f992SPeter De Schrijver /* skip initialization when pllu is in hw controlled mode */ 2904e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + PLLU_BASE); 2905e745f992SPeter De Schrijver if (reg & PLLU_BASE_OVERRIDE) { 2906e745f992SPeter De Schrijver if (!(reg & PLL_ENABLE)) { 2907e745f992SPeter De Schrijver err = tegra210_enable_pllu(); 2908e745f992SPeter De Schrijver if (err < 0) { 2909e745f992SPeter De Schrijver WARN_ON(1); 2910e745f992SPeter De Schrijver return err; 2911e745f992SPeter De Schrijver } 2912e745f992SPeter De Schrijver } 2913e745f992SPeter De Schrijver /* enable hw controlled mode */ 2914e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + PLLU_BASE); 2915e745f992SPeter De Schrijver reg &= ~PLLU_BASE_OVERRIDE; 2916e745f992SPeter De Schrijver writel(reg, clk_base + PLLU_BASE); 2917e745f992SPeter De Schrijver 2918e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + PLLU_HW_PWRDN_CFG0); 2919e745f992SPeter De Schrijver reg |= PLLU_HW_PWRDN_CFG0_IDDQ_PD_INCLUDE | 2920e745f992SPeter De Schrijver PLLU_HW_PWRDN_CFG0_USE_SWITCH_DETECT | 2921e745f992SPeter De Schrijver PLLU_HW_PWRDN_CFG0_USE_LOCKDET; 2922e745f992SPeter De Schrijver reg &= ~(PLLU_HW_PWRDN_CFG0_CLK_ENABLE_SWCTL | 2923e745f992SPeter De Schrijver PLLU_HW_PWRDN_CFG0_CLK_SWITCH_SWCTL); 2924e745f992SPeter De Schrijver writel_relaxed(reg, clk_base + PLLU_HW_PWRDN_CFG0); 2925e745f992SPeter De Schrijver 2926e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + XUSB_PLL_CFG0); 2927e745f992SPeter De Schrijver reg &= ~XUSB_PLL_CFG0_PLLU_LOCK_DLY_MASK; 2928e745f992SPeter De Schrijver writel_relaxed(reg, clk_base + XUSB_PLL_CFG0); 2929f68cbb35SSowjanya Komatineni fence_udelay(1, clk_base); 2930e745f992SPeter De Schrijver 2931e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + PLLU_HW_PWRDN_CFG0); 2932e745f992SPeter De Schrijver reg |= PLLU_HW_PWRDN_CFG0_SEQ_ENABLE; 2933e745f992SPeter De Schrijver writel_relaxed(reg, clk_base + PLLU_HW_PWRDN_CFG0); 2934f68cbb35SSowjanya Komatineni fence_udelay(1, clk_base); 2935e745f992SPeter De Schrijver 2936e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + PLLU_BASE); 2937e745f992SPeter De Schrijver reg &= ~PLLU_BASE_CLKENABLE_USB; 2938e745f992SPeter De Schrijver writel_relaxed(reg, clk_base + PLLU_BASE); 2939e745f992SPeter De Schrijver } 2940e745f992SPeter De Schrijver 2941e745f992SPeter De Schrijver /* enable UTMIPLL hw control if not yet done by the bootloader */ 2942e745f992SPeter De Schrijver reg = readl_relaxed(clk_base + UTMIPLL_HW_PWRDN_CFG0); 2943e745f992SPeter De Schrijver if (!(reg & UTMIPLL_HW_PWRDN_CFG0_SEQ_ENABLE)) 2944e745f992SPeter De Schrijver tegra210_utmi_param_configure(); 2945e745f992SPeter De Schrijver 2946e745f992SPeter De Schrijver return 0; 2947e745f992SPeter De Schrijver } 2948e745f992SPeter De Schrijver 2949bc2e4d29SThierry Reding /* 295005308d7eSThierry Reding * The SOR hardware blocks are driven by two clocks: a module clock that is 295105308d7eSThierry Reding * used to access registers and a pixel clock that is sourced from the same 295205308d7eSThierry Reding * pixel clock that also drives the head attached to the SOR. The module 295305308d7eSThierry Reding * clock is typically called sorX (with X being the SOR instance) and the 295405308d7eSThierry Reding * pixel clock is called sorX_out. The source for the SOR pixel clock is 295505308d7eSThierry Reding * referred to as the "parent" clock. 295605308d7eSThierry Reding * 295705308d7eSThierry Reding * On Tegra186 and newer, clocks are provided by the BPMP. Unfortunately the 295805308d7eSThierry Reding * BPMP implementation for the SOR clocks doesn't exactly match the above in 295905308d7eSThierry Reding * some aspects. For example, the SOR module is really clocked by the pad or 296005308d7eSThierry Reding * sor_safe clocks, but BPMP models the sorX clock as being sourced by the 296105308d7eSThierry Reding * pixel clocks. Conversely the sorX_out clock is sourced by the sor_safe or 296205308d7eSThierry Reding * pad clocks on BPMP. 296305308d7eSThierry Reding * 296405308d7eSThierry Reding * In order to allow the display driver to deal with all SoC generations in 296505308d7eSThierry Reding * a unified way, implement the BPMP semantics in this driver. 2966bc2e4d29SThierry Reding */ 296705308d7eSThierry Reding 296805308d7eSThierry Reding static const char * const sor0_parents[] = { 296905308d7eSThierry Reding "pll_d_out0", 297005308d7eSThierry Reding }; 297105308d7eSThierry Reding 297205308d7eSThierry Reding static const char * const sor0_out_parents[] = { 297305308d7eSThierry Reding "sor_safe", "sor0_pad_clkout", 2974bc2e4d29SThierry Reding }; 2975bc2e4d29SThierry Reding 2976bc2e4d29SThierry Reding static const char * const sor1_parents[] = { 2977bc2e4d29SThierry Reding "pll_p", "pll_d_out0", "pll_d2_out0", "clk_m", 2978bc2e4d29SThierry Reding }; 2979bc2e4d29SThierry Reding 2980bc2e4d29SThierry Reding static u32 sor1_parents_idx[] = { 0, 2, 5, 6 }; 2981bc2e4d29SThierry Reding 298205308d7eSThierry Reding static const char * const sor1_out_parents[] = { 298305308d7eSThierry Reding /* 298405308d7eSThierry Reding * Bit 0 of the mux selects sor1_pad_clkout, irrespective of bit 1, so 298505308d7eSThierry Reding * the sor1_pad_clkout parent appears twice in the list below. This is 298605308d7eSThierry Reding * merely to support clk_get_parent() if firmware happened to set 298705308d7eSThierry Reding * these bits to 0b11. While not an invalid setting, code should 298805308d7eSThierry Reding * always set the bits to 0b01 to select sor1_pad_clkout. 298905308d7eSThierry Reding */ 299005308d7eSThierry Reding "sor_safe", "sor1_pad_clkout", "sor1_out", "sor1_pad_clkout", 299105308d7eSThierry Reding }; 299205308d7eSThierry Reding 2993bc2e4d29SThierry Reding static struct tegra_periph_init_data tegra210_periph[] = { 299405308d7eSThierry Reding /* 299505308d7eSThierry Reding * On Tegra210, the sor0 clock doesn't have a mux it bitfield 31:29, 299605308d7eSThierry Reding * but it is hardwired to the pll_d_out0 clock. 299705308d7eSThierry Reding */ 299805308d7eSThierry Reding TEGRA_INIT_DATA_TABLE("sor0", NULL, NULL, sor0_parents, 299905308d7eSThierry Reding CLK_SOURCE_SOR0, 29, 0x0, 0, 0, 0, 0, 300005308d7eSThierry Reding 0, 182, 0, tegra_clk_sor0, NULL, 0, 300105308d7eSThierry Reding &sor0_lock), 300205308d7eSThierry Reding TEGRA_INIT_DATA_TABLE("sor0_out", NULL, NULL, sor0_out_parents, 300305308d7eSThierry Reding CLK_SOURCE_SOR0, 14, 0x1, 0, 0, 0, 0, 300405308d7eSThierry Reding 0, 0, TEGRA_PERIPH_NO_GATE, tegra_clk_sor0_out, 300505308d7eSThierry Reding NULL, 0, &sor0_lock), 3006bc2e4d29SThierry Reding TEGRA_INIT_DATA_TABLE("sor1", NULL, NULL, sor1_parents, 3007bc2e4d29SThierry Reding CLK_SOURCE_SOR1, 29, 0x7, 0, 0, 8, 1, 300805308d7eSThierry Reding TEGRA_DIVIDER_ROUND_UP, 183, 0, 300905308d7eSThierry Reding tegra_clk_sor1, sor1_parents_idx, 0, 301005308d7eSThierry Reding &sor1_lock), 301105308d7eSThierry Reding TEGRA_INIT_DATA_TABLE("sor1_out", NULL, NULL, sor1_out_parents, 301205308d7eSThierry Reding CLK_SOURCE_SOR1, 14, 0x3, 0, 0, 0, 0, 301305308d7eSThierry Reding 0, 0, TEGRA_PERIPH_NO_GATE, 301405308d7eSThierry Reding tegra_clk_sor1_out, NULL, 0, &sor1_lock), 3015bc2e4d29SThierry Reding }; 3016bc2e4d29SThierry Reding 301789e423c3SPeter De Schrijver static const char * const la_parents[] = { 301889e423c3SPeter De Schrijver "pll_p", "pll_c2", "pll_c", "pll_c3", "pll_re_out1", "pll_a1", "clk_m", "pll_c4_out0" 301989e423c3SPeter De Schrijver }; 302089e423c3SPeter De Schrijver 302189e423c3SPeter De Schrijver static struct tegra_clk_periph tegra210_la = 3022ba0eb9d5SStephen Boyd TEGRA_CLK_PERIPH(29, 7, 9, 0, 8, 1, TEGRA_DIVIDER_ROUND_UP, 76, 0, NULL, NULL); 302389e423c3SPeter De Schrijver 30246b301a05SRhyland Klein static __init void tegra210_periph_clk_init(void __iomem *clk_base, 30256b301a05SRhyland Klein void __iomem *pmc_base) 30266b301a05SRhyland Klein { 30276b301a05SRhyland Klein struct clk *clk; 3028bc2e4d29SThierry Reding unsigned int i; 30296b301a05SRhyland Klein 30306b301a05SRhyland Klein /* xusb_ss_div2 */ 30316b301a05SRhyland Klein clk = clk_register_fixed_factor(NULL, "xusb_ss_div2", "xusb_ss_src", 0, 30326b301a05SRhyland Klein 1, 2); 30336b301a05SRhyland Klein clks[TEGRA210_CLK_XUSB_SS_DIV2] = clk; 30346b301a05SRhyland Klein 303574d3ba0bSThierry Reding clk = tegra_clk_register_periph_fixed("sor_safe", "pll_p", 0, clk_base, 303674d3ba0bSThierry Reding 1, 17, 222); 303774d3ba0bSThierry Reding clks[TEGRA210_CLK_SOR_SAFE] = clk; 303874d3ba0bSThierry Reding 30392e34c2acSThierry Reding clk = tegra_clk_register_periph_fixed("dpaux", "sor_safe", 0, clk_base, 3040eede7113SThierry Reding 1, 17, 181); 3041eede7113SThierry Reding clks[TEGRA210_CLK_DPAUX] = clk; 3042eede7113SThierry Reding 30432e34c2acSThierry Reding clk = tegra_clk_register_periph_fixed("dpaux1", "sor_safe", 0, clk_base, 3044eede7113SThierry Reding 1, 17, 207); 3045eede7113SThierry Reding clks[TEGRA210_CLK_DPAUX1] = clk; 3046eede7113SThierry Reding 30476b301a05SRhyland Klein /* pll_d_dsi_out */ 30486b301a05SRhyland Klein clk = clk_register_gate(NULL, "pll_d_dsi_out", "pll_d_out0", 0, 30496b301a05SRhyland Klein clk_base + PLLD_MISC0, 21, 0, &pll_d_lock); 30506b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_D_DSI_OUT] = clk; 30516b301a05SRhyland Klein 30526b301a05SRhyland Klein /* dsia */ 30536b301a05SRhyland Klein clk = tegra_clk_register_periph_gate("dsia", "pll_d_dsi_out", 0, 30546b301a05SRhyland Klein clk_base, 0, 48, 30556b301a05SRhyland Klein periph_clk_enb_refcnt); 30566b301a05SRhyland Klein clks[TEGRA210_CLK_DSIA] = clk; 30576b301a05SRhyland Klein 30586b301a05SRhyland Klein /* dsib */ 30596b301a05SRhyland Klein clk = tegra_clk_register_periph_gate("dsib", "pll_d_dsi_out", 0, 30606b301a05SRhyland Klein clk_base, 0, 82, 30616b301a05SRhyland Klein periph_clk_enb_refcnt); 30626b301a05SRhyland Klein clks[TEGRA210_CLK_DSIB] = clk; 30636b301a05SRhyland Klein 306489e423c3SPeter De Schrijver /* la */ 306589e423c3SPeter De Schrijver clk = tegra_clk_register_periph("la", la_parents, 306689e423c3SPeter De Schrijver ARRAY_SIZE(la_parents), &tegra210_la, clk_base, 306789e423c3SPeter De Schrijver CLK_SOURCE_LA, 0); 306889e423c3SPeter De Schrijver clks[TEGRA210_CLK_LA] = clk; 306989e423c3SPeter De Schrijver 30706b301a05SRhyland Klein /* emc mux */ 30716b301a05SRhyland Klein clk = clk_register_mux(NULL, "emc_mux", mux_pllmcp_clkm, 30726b301a05SRhyland Klein ARRAY_SIZE(mux_pllmcp_clkm), 0, 30736b301a05SRhyland Klein clk_base + CLK_SOURCE_EMC, 30746b301a05SRhyland Klein 29, 3, 0, &emc_lock); 30756b301a05SRhyland Klein 30766b301a05SRhyland Klein clk = tegra_clk_register_mc("mc", "emc_mux", clk_base + CLK_SOURCE_EMC, 30776b301a05SRhyland Klein &emc_lock); 30786b301a05SRhyland Klein clks[TEGRA210_CLK_MC] = clk; 30796b301a05SRhyland Klein 30806b301a05SRhyland Klein /* cml0 */ 30816b301a05SRhyland Klein clk = clk_register_gate(NULL, "cml0", "pll_e", 0, clk_base + PLLE_AUX, 30826b301a05SRhyland Klein 0, 0, &pll_e_lock); 30836b301a05SRhyland Klein clk_register_clkdev(clk, "cml0", NULL); 30846b301a05SRhyland Klein clks[TEGRA210_CLK_CML0] = clk; 30856b301a05SRhyland Klein 30866b301a05SRhyland Klein /* cml1 */ 30876b301a05SRhyland Klein clk = clk_register_gate(NULL, "cml1", "pll_e", 0, clk_base + PLLE_AUX, 30886b301a05SRhyland Klein 1, 0, &pll_e_lock); 30896b301a05SRhyland Klein clk_register_clkdev(clk, "cml1", NULL); 30906b301a05SRhyland Klein clks[TEGRA210_CLK_CML1] = clk; 30916b301a05SRhyland Klein 309224c3ebefSPeter De Schrijver clk = tegra_clk_register_super_clk("aclk", aclk_parents, 309324c3ebefSPeter De Schrijver ARRAY_SIZE(aclk_parents), 0, clk_base + 0x6e0, 309424c3ebefSPeter De Schrijver 0, NULL); 309524c3ebefSPeter De Schrijver clks[TEGRA210_CLK_ACLK] = clk; 309624c3ebefSPeter De Schrijver 3097c76a69e4SPeter De-Schrijver clk = tegra_clk_register_sdmmc_mux_div("sdmmc2", clk_base, 3098c76a69e4SPeter De-Schrijver CLK_SOURCE_SDMMC2, 9, 3099c76a69e4SPeter De-Schrijver TEGRA_DIVIDER_ROUND_UP, 0, NULL); 3100c76a69e4SPeter De-Schrijver clks[TEGRA210_CLK_SDMMC2] = clk; 3101c76a69e4SPeter De-Schrijver 3102c76a69e4SPeter De-Schrijver clk = tegra_clk_register_sdmmc_mux_div("sdmmc4", clk_base, 3103c76a69e4SPeter De-Schrijver CLK_SOURCE_SDMMC4, 15, 3104c76a69e4SPeter De-Schrijver TEGRA_DIVIDER_ROUND_UP, 0, NULL); 3105c76a69e4SPeter De-Schrijver clks[TEGRA210_CLK_SDMMC4] = clk; 3106c76a69e4SPeter De-Schrijver 3107bc2e4d29SThierry Reding for (i = 0; i < ARRAY_SIZE(tegra210_periph); i++) { 3108bc2e4d29SThierry Reding struct tegra_periph_init_data *init = &tegra210_periph[i]; 3109bc2e4d29SThierry Reding struct clk **clkp; 3110bc2e4d29SThierry Reding 3111bc2e4d29SThierry Reding clkp = tegra_lookup_dt_id(init->clk_id, tegra210_clks); 3112bc2e4d29SThierry Reding if (!clkp) { 3113bc2e4d29SThierry Reding pr_warn("clock %u not found\n", init->clk_id); 3114bc2e4d29SThierry Reding continue; 3115bc2e4d29SThierry Reding } 3116bc2e4d29SThierry Reding 3117bc2e4d29SThierry Reding clk = tegra_clk_register_periph_data(clk_base, init); 3118bc2e4d29SThierry Reding *clkp = clk; 3119bc2e4d29SThierry Reding } 3120bc2e4d29SThierry Reding 31216b301a05SRhyland Klein tegra_periph_clk_init(clk_base, pmc_base, tegra210_clks, &pll_p_params); 31226b301a05SRhyland Klein } 31236b301a05SRhyland Klein 31246b301a05SRhyland Klein static void __init tegra210_pll_init(void __iomem *clk_base, 31256b301a05SRhyland Klein void __iomem *pmc) 31266b301a05SRhyland Klein { 31276b301a05SRhyland Klein struct clk *clk; 31286b301a05SRhyland Klein 31296b301a05SRhyland Klein /* PLLC */ 3130ac99afe5SAlex Frid clk = tegra_clk_register_pllc_tegra210("pll_c", "pll_ref", clk_base, 31316b301a05SRhyland Klein pmc, 0, &pll_c_params, NULL); 31326b301a05SRhyland Klein if (!WARN_ON(IS_ERR(clk))) 31336b301a05SRhyland Klein clk_register_clkdev(clk, "pll_c", NULL); 31346b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_C] = clk; 31356b301a05SRhyland Klein 31366b301a05SRhyland Klein /* PLLC_OUT1 */ 31376b301a05SRhyland Klein clk = tegra_clk_register_divider("pll_c_out1_div", "pll_c", 31386b301a05SRhyland Klein clk_base + PLLC_OUT, 0, TEGRA_DIVIDER_ROUND_UP, 31396b301a05SRhyland Klein 8, 8, 1, NULL); 31406b301a05SRhyland Klein clk = tegra_clk_register_pll_out("pll_c_out1", "pll_c_out1_div", 31416b301a05SRhyland Klein clk_base + PLLC_OUT, 1, 0, 31426b301a05SRhyland Klein CLK_SET_RATE_PARENT, 0, NULL); 31436b301a05SRhyland Klein clk_register_clkdev(clk, "pll_c_out1", NULL); 31446b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_C_OUT1] = clk; 31456b301a05SRhyland Klein 31466b301a05SRhyland Klein /* PLLC_UD */ 31476b301a05SRhyland Klein clk = clk_register_fixed_factor(NULL, "pll_c_ud", "pll_c", 31486b301a05SRhyland Klein CLK_SET_RATE_PARENT, 1, 1); 31496b301a05SRhyland Klein clk_register_clkdev(clk, "pll_c_ud", NULL); 31506b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_C_UD] = clk; 31516b301a05SRhyland Klein 31526b301a05SRhyland Klein /* PLLC2 */ 31536b301a05SRhyland Klein clk = tegra_clk_register_pllc_tegra210("pll_c2", "pll_ref", clk_base, 31546b301a05SRhyland Klein pmc, 0, &pll_c2_params, NULL); 31556b301a05SRhyland Klein clk_register_clkdev(clk, "pll_c2", NULL); 31566b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_C2] = clk; 31576b301a05SRhyland Klein 31586b301a05SRhyland Klein /* PLLC3 */ 31596b301a05SRhyland Klein clk = tegra_clk_register_pllc_tegra210("pll_c3", "pll_ref", clk_base, 31606b301a05SRhyland Klein pmc, 0, &pll_c3_params, NULL); 31616b301a05SRhyland Klein clk_register_clkdev(clk, "pll_c3", NULL); 31626b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_C3] = clk; 31636b301a05SRhyland Klein 31646b301a05SRhyland Klein /* PLLM */ 31656b301a05SRhyland Klein clk = tegra_clk_register_pllm("pll_m", "osc", clk_base, pmc, 31666b301a05SRhyland Klein CLK_SET_RATE_GATE, &pll_m_params, NULL); 31676b301a05SRhyland Klein clk_register_clkdev(clk, "pll_m", NULL); 31686b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_M] = clk; 31696b301a05SRhyland Klein 31706b301a05SRhyland Klein /* PLLMB */ 31716b301a05SRhyland Klein clk = tegra_clk_register_pllmb("pll_mb", "osc", clk_base, pmc, 31726b301a05SRhyland Klein CLK_SET_RATE_GATE, &pll_mb_params, NULL); 31736b301a05SRhyland Klein clk_register_clkdev(clk, "pll_mb", NULL); 31746b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_MB] = clk; 31756b301a05SRhyland Klein 31766b301a05SRhyland Klein /* PLLM_UD */ 31776b301a05SRhyland Klein clk = clk_register_fixed_factor(NULL, "pll_m_ud", "pll_m", 31786b301a05SRhyland Klein CLK_SET_RATE_PARENT, 1, 1); 31796b301a05SRhyland Klein clk_register_clkdev(clk, "pll_m_ud", NULL); 31806b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_M_UD] = clk; 31816b301a05SRhyland Klein 3182cd4d6f35SJoseph Lo /* PLLMB_UD */ 3183cd4d6f35SJoseph Lo clk = clk_register_fixed_factor(NULL, "pll_mb_ud", "pll_mb", 3184cd4d6f35SJoseph Lo CLK_SET_RATE_PARENT, 1, 1); 3185cd4d6f35SJoseph Lo clk_register_clkdev(clk, "pll_mb_ud", NULL); 3186cd4d6f35SJoseph Lo clks[TEGRA210_CLK_PLL_MB_UD] = clk; 3187cd4d6f35SJoseph Lo 3188cd4d6f35SJoseph Lo /* PLLP_UD */ 3189cd4d6f35SJoseph Lo clk = clk_register_fixed_factor(NULL, "pll_p_ud", "pll_p", 3190cd4d6f35SJoseph Lo 0, 1, 1); 3191cd4d6f35SJoseph Lo clks[TEGRA210_CLK_PLL_P_UD] = clk; 3192cd4d6f35SJoseph Lo 31936b301a05SRhyland Klein /* PLLU_VCO */ 3194e745f992SPeter De Schrijver if (!tegra210_init_pllu()) { 3195e745f992SPeter De Schrijver clk = clk_register_fixed_rate(NULL, "pll_u_vco", "pll_ref", 0, 3196e745f992SPeter De Schrijver 480*1000*1000); 31976b301a05SRhyland Klein clk_register_clkdev(clk, "pll_u_vco", NULL); 31986b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_U] = clk; 3199e745f992SPeter De Schrijver } 32006b301a05SRhyland Klein 32016b301a05SRhyland Klein /* PLLU_OUT */ 32026b301a05SRhyland Klein clk = clk_register_divider_table(NULL, "pll_u_out", "pll_u_vco", 0, 32036b301a05SRhyland Klein clk_base + PLLU_BASE, 16, 4, 0, 32046b301a05SRhyland Klein pll_vco_post_div_table, NULL); 32056b301a05SRhyland Klein clk_register_clkdev(clk, "pll_u_out", NULL); 32066b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_U_OUT] = clk; 32076b301a05SRhyland Klein 32086b301a05SRhyland Klein /* PLLU_OUT1 */ 32096b301a05SRhyland Klein clk = tegra_clk_register_divider("pll_u_out1_div", "pll_u_out", 32106b301a05SRhyland Klein clk_base + PLLU_OUTA, 0, 32116b301a05SRhyland Klein TEGRA_DIVIDER_ROUND_UP, 32126b301a05SRhyland Klein 8, 8, 1, &pll_u_lock); 32136b301a05SRhyland Klein clk = tegra_clk_register_pll_out("pll_u_out1", "pll_u_out1_div", 32146b301a05SRhyland Klein clk_base + PLLU_OUTA, 1, 0, 32156b301a05SRhyland Klein CLK_SET_RATE_PARENT, 0, &pll_u_lock); 32166b301a05SRhyland Klein clk_register_clkdev(clk, "pll_u_out1", NULL); 32176b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_U_OUT1] = clk; 32186b301a05SRhyland Klein 32196b301a05SRhyland Klein /* PLLU_OUT2 */ 32206b301a05SRhyland Klein clk = tegra_clk_register_divider("pll_u_out2_div", "pll_u_out", 32216b301a05SRhyland Klein clk_base + PLLU_OUTA, 0, 32226b301a05SRhyland Klein TEGRA_DIVIDER_ROUND_UP, 32236b301a05SRhyland Klein 24, 8, 1, &pll_u_lock); 32246b301a05SRhyland Klein clk = tegra_clk_register_pll_out("pll_u_out2", "pll_u_out2_div", 32256b301a05SRhyland Klein clk_base + PLLU_OUTA, 17, 16, 32266b301a05SRhyland Klein CLK_SET_RATE_PARENT, 0, &pll_u_lock); 32276b301a05SRhyland Klein clk_register_clkdev(clk, "pll_u_out2", NULL); 32286b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_U_OUT2] = clk; 32296b301a05SRhyland Klein 32306b301a05SRhyland Klein /* PLLU_480M */ 32316b301a05SRhyland Klein clk = clk_register_gate(NULL, "pll_u_480M", "pll_u_vco", 32326b301a05SRhyland Klein CLK_SET_RATE_PARENT, clk_base + PLLU_BASE, 32336b301a05SRhyland Klein 22, 0, &pll_u_lock); 32346b301a05SRhyland Klein clk_register_clkdev(clk, "pll_u_480M", NULL); 32356b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_U_480M] = clk; 32366b301a05SRhyland Klein 32376b301a05SRhyland Klein /* PLLU_60M */ 32386b301a05SRhyland Klein clk = clk_register_gate(NULL, "pll_u_60M", "pll_u_out2", 32396b301a05SRhyland Klein CLK_SET_RATE_PARENT, clk_base + PLLU_BASE, 32407157c69aSAlex Frid 23, 0, &pll_u_lock); 32416b301a05SRhyland Klein clk_register_clkdev(clk, "pll_u_60M", NULL); 32426b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_U_60M] = clk; 32436b301a05SRhyland Klein 32446b301a05SRhyland Klein /* PLLU_48M */ 32456b301a05SRhyland Klein clk = clk_register_gate(NULL, "pll_u_48M", "pll_u_out1", 32466b301a05SRhyland Klein CLK_SET_RATE_PARENT, clk_base + PLLU_BASE, 32477157c69aSAlex Frid 25, 0, &pll_u_lock); 32486b301a05SRhyland Klein clk_register_clkdev(clk, "pll_u_48M", NULL); 32496b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_U_48M] = clk; 32506b301a05SRhyland Klein 32516b301a05SRhyland Klein /* PLLD */ 32526b301a05SRhyland Klein clk = tegra_clk_register_pll("pll_d", "pll_ref", clk_base, pmc, 0, 32536b301a05SRhyland Klein &pll_d_params, &pll_d_lock); 32546b301a05SRhyland Klein clk_register_clkdev(clk, "pll_d", NULL); 32556b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_D] = clk; 32566b301a05SRhyland Klein 32576b301a05SRhyland Klein /* PLLD_OUT0 */ 32586b301a05SRhyland Klein clk = clk_register_fixed_factor(NULL, "pll_d_out0", "pll_d", 32596b301a05SRhyland Klein CLK_SET_RATE_PARENT, 1, 2); 32606b301a05SRhyland Klein clk_register_clkdev(clk, "pll_d_out0", NULL); 32616b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_D_OUT0] = clk; 32626b301a05SRhyland Klein 32636b301a05SRhyland Klein /* PLLRE */ 3264926655f9SRhyland Klein clk = tegra_clk_register_pllre_tegra210("pll_re_vco", "pll_ref", 3265926655f9SRhyland Klein clk_base, pmc, 0, 3266926655f9SRhyland Klein &pll_re_vco_params, 3267926655f9SRhyland Klein &pll_re_lock, pll_ref_freq); 32686b301a05SRhyland Klein clk_register_clkdev(clk, "pll_re_vco", NULL); 32696b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_RE_VCO] = clk; 32706b301a05SRhyland Klein 32716b301a05SRhyland Klein clk = clk_register_divider_table(NULL, "pll_re_out", "pll_re_vco", 0, 32726b301a05SRhyland Klein clk_base + PLLRE_BASE, 16, 5, 0, 32736b301a05SRhyland Klein pll_vco_post_div_table, &pll_re_lock); 32746b301a05SRhyland Klein clk_register_clkdev(clk, "pll_re_out", NULL); 32756b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_RE_OUT] = clk; 32766b301a05SRhyland Klein 3277926655f9SRhyland Klein clk = tegra_clk_register_divider("pll_re_out1_div", "pll_re_vco", 3278926655f9SRhyland Klein clk_base + PLLRE_OUT1, 0, 3279926655f9SRhyland Klein TEGRA_DIVIDER_ROUND_UP, 3280926655f9SRhyland Klein 8, 8, 1, NULL); 3281926655f9SRhyland Klein clk = tegra_clk_register_pll_out("pll_re_out1", "pll_re_out1_div", 3282926655f9SRhyland Klein clk_base + PLLRE_OUT1, 1, 0, 3283926655f9SRhyland Klein CLK_SET_RATE_PARENT, 0, NULL); 3284926655f9SRhyland Klein clks[TEGRA210_CLK_PLL_RE_OUT1] = clk; 3285926655f9SRhyland Klein 32866b301a05SRhyland Klein /* PLLE */ 32876b301a05SRhyland Klein clk = tegra_clk_register_plle_tegra210("pll_e", "pll_ref", 32886b301a05SRhyland Klein clk_base, 0, &pll_e_params, NULL); 32896b301a05SRhyland Klein clk_register_clkdev(clk, "pll_e", NULL); 32906b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_E] = clk; 32916b301a05SRhyland Klein 32926b301a05SRhyland Klein /* PLLC4 */ 32936b301a05SRhyland Klein clk = tegra_clk_register_pllre("pll_c4_vco", "pll_ref", clk_base, pmc, 32946b301a05SRhyland Klein 0, &pll_c4_vco_params, NULL, pll_ref_freq); 32956b301a05SRhyland Klein clk_register_clkdev(clk, "pll_c4_vco", NULL); 32966b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_C4] = clk; 32976b301a05SRhyland Klein 32986b301a05SRhyland Klein /* PLLC4_OUT0 */ 32996b301a05SRhyland Klein clk = clk_register_divider_table(NULL, "pll_c4_out0", "pll_c4_vco", 0, 33006b301a05SRhyland Klein clk_base + PLLC4_BASE, 19, 4, 0, 33016b301a05SRhyland Klein pll_vco_post_div_table, NULL); 33026b301a05SRhyland Klein clk_register_clkdev(clk, "pll_c4_out0", NULL); 33036b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_C4_OUT0] = clk; 33046b301a05SRhyland Klein 33056b301a05SRhyland Klein /* PLLC4_OUT1 */ 33066b301a05SRhyland Klein clk = clk_register_fixed_factor(NULL, "pll_c4_out1", "pll_c4_vco", 33076b301a05SRhyland Klein CLK_SET_RATE_PARENT, 1, 3); 33086b301a05SRhyland Klein clk_register_clkdev(clk, "pll_c4_out1", NULL); 33096b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_C4_OUT1] = clk; 33106b301a05SRhyland Klein 33116b301a05SRhyland Klein /* PLLC4_OUT2 */ 33126b301a05SRhyland Klein clk = clk_register_fixed_factor(NULL, "pll_c4_out2", "pll_c4_vco", 33136b301a05SRhyland Klein CLK_SET_RATE_PARENT, 1, 5); 33146b301a05SRhyland Klein clk_register_clkdev(clk, "pll_c4_out2", NULL); 33156b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_C4_OUT2] = clk; 33166b301a05SRhyland Klein 33176b301a05SRhyland Klein /* PLLC4_OUT3 */ 33186b301a05SRhyland Klein clk = tegra_clk_register_divider("pll_c4_out3_div", "pll_c4_out0", 33196b301a05SRhyland Klein clk_base + PLLC4_OUT, 0, TEGRA_DIVIDER_ROUND_UP, 33206b301a05SRhyland Klein 8, 8, 1, NULL); 33216b301a05SRhyland Klein clk = tegra_clk_register_pll_out("pll_c4_out3", "pll_c4_out3_div", 33226b301a05SRhyland Klein clk_base + PLLC4_OUT, 1, 0, 33236b301a05SRhyland Klein CLK_SET_RATE_PARENT, 0, NULL); 33246b301a05SRhyland Klein clk_register_clkdev(clk, "pll_c4_out3", NULL); 33256b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_C4_OUT3] = clk; 33266b301a05SRhyland Klein 33276b301a05SRhyland Klein /* PLLDP */ 33286b301a05SRhyland Klein clk = tegra_clk_register_pllss_tegra210("pll_dp", "pll_ref", clk_base, 33296b301a05SRhyland Klein 0, &pll_dp_params, NULL); 33306b301a05SRhyland Klein clk_register_clkdev(clk, "pll_dp", NULL); 33316b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_DP] = clk; 33326b301a05SRhyland Klein 33336b301a05SRhyland Klein /* PLLD2 */ 33346b301a05SRhyland Klein clk = tegra_clk_register_pllss_tegra210("pll_d2", "pll_ref", clk_base, 33356b301a05SRhyland Klein 0, &pll_d2_params, NULL); 33366b301a05SRhyland Klein clk_register_clkdev(clk, "pll_d2", NULL); 33376b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_D2] = clk; 33386b301a05SRhyland Klein 33396b301a05SRhyland Klein /* PLLD2_OUT0 */ 33406b301a05SRhyland Klein clk = clk_register_fixed_factor(NULL, "pll_d2_out0", "pll_d2", 33416b301a05SRhyland Klein CLK_SET_RATE_PARENT, 1, 1); 33426b301a05SRhyland Klein clk_register_clkdev(clk, "pll_d2_out0", NULL); 33436b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_D2_OUT0] = clk; 33446b301a05SRhyland Klein 33456b301a05SRhyland Klein /* PLLP_OUT2 */ 33466b301a05SRhyland Klein clk = clk_register_fixed_factor(NULL, "pll_p_out2", "pll_p", 33476b301a05SRhyland Klein CLK_SET_RATE_PARENT, 1, 2); 33486b301a05SRhyland Klein clk_register_clkdev(clk, "pll_p_out2", NULL); 33496b301a05SRhyland Klein clks[TEGRA210_CLK_PLL_P_OUT2] = clk; 33506b301a05SRhyland Klein 33516b301a05SRhyland Klein } 33526b301a05SRhyland Klein 33536b301a05SRhyland Klein /* Tegra210 CPU clock and reset control functions */ 33546b301a05SRhyland Klein static void tegra210_wait_cpu_in_reset(u32 cpu) 33556b301a05SRhyland Klein { 33566b301a05SRhyland Klein unsigned int reg; 33576b301a05SRhyland Klein 33586b301a05SRhyland Klein do { 33596b301a05SRhyland Klein reg = readl(clk_base + CLK_RST_CONTROLLER_CPU_CMPLX_STATUS); 33606b301a05SRhyland Klein cpu_relax(); 33616b301a05SRhyland Klein } while (!(reg & (1 << cpu))); /* check CPU been reset or not */ 33626b301a05SRhyland Klein } 33636b301a05SRhyland Klein 33646b301a05SRhyland Klein static void tegra210_disable_cpu_clock(u32 cpu) 33656b301a05SRhyland Klein { 33666b301a05SRhyland Klein /* flow controller would take care in the power sequence. */ 33676b301a05SRhyland Klein } 33686b301a05SRhyland Klein 33696b301a05SRhyland Klein #ifdef CONFIG_PM_SLEEP 3370535f296dSSowjanya Komatineni #define car_readl(_base, _off) readl_relaxed(clk_base + (_base) + ((_off) * 4)) 3371535f296dSSowjanya Komatineni #define car_writel(_val, _base, _off) \ 3372535f296dSSowjanya Komatineni writel_relaxed(_val, clk_base + (_base) + ((_off) * 4)) 3373535f296dSSowjanya Komatineni 3374535f296dSSowjanya Komatineni static u32 spare_reg_ctx, misc_clk_enb_ctx, clk_msk_arm_ctx; 3375535f296dSSowjanya Komatineni static u32 cpu_softrst_ctx[3]; 3376535f296dSSowjanya Komatineni 3377535f296dSSowjanya Komatineni static int tegra210_clk_suspend(void) 3378535f296dSSowjanya Komatineni { 3379535f296dSSowjanya Komatineni unsigned int i; 3380535f296dSSowjanya Komatineni 3381535f296dSSowjanya Komatineni clk_save_context(); 3382535f296dSSowjanya Komatineni 3383535f296dSSowjanya Komatineni /* 3384535f296dSSowjanya Komatineni * Save the bootloader configured clock registers SPARE_REG0, 3385535f296dSSowjanya Komatineni * MISC_CLK_ENB, CLK_MASK_ARM, CPU_SOFTRST_CTRL. 3386535f296dSSowjanya Komatineni */ 3387535f296dSSowjanya Komatineni spare_reg_ctx = readl_relaxed(clk_base + SPARE_REG0); 3388535f296dSSowjanya Komatineni misc_clk_enb_ctx = readl_relaxed(clk_base + MISC_CLK_ENB); 3389535f296dSSowjanya Komatineni clk_msk_arm_ctx = readl_relaxed(clk_base + CLK_MASK_ARM); 3390535f296dSSowjanya Komatineni 3391535f296dSSowjanya Komatineni for (i = 0; i < ARRAY_SIZE(cpu_softrst_ctx); i++) 3392535f296dSSowjanya Komatineni cpu_softrst_ctx[i] = car_readl(CPU_SOFTRST_CTRL, i); 3393535f296dSSowjanya Komatineni 3394535f296dSSowjanya Komatineni tegra_clk_periph_suspend(); 3395535f296dSSowjanya Komatineni return 0; 3396535f296dSSowjanya Komatineni } 3397535f296dSSowjanya Komatineni 3398535f296dSSowjanya Komatineni static void tegra210_clk_resume(void) 3399535f296dSSowjanya Komatineni { 3400535f296dSSowjanya Komatineni unsigned int i; 3401535f296dSSowjanya Komatineni 3402535f296dSSowjanya Komatineni tegra_clk_osc_resume(clk_base); 3403535f296dSSowjanya Komatineni 3404535f296dSSowjanya Komatineni /* 3405535f296dSSowjanya Komatineni * Restore the bootloader configured clock registers SPARE_REG0, 3406535f296dSSowjanya Komatineni * MISC_CLK_ENB, CLK_MASK_ARM, CPU_SOFTRST_CTRL from saved context. 3407535f296dSSowjanya Komatineni */ 3408535f296dSSowjanya Komatineni writel_relaxed(spare_reg_ctx, clk_base + SPARE_REG0); 3409535f296dSSowjanya Komatineni writel_relaxed(misc_clk_enb_ctx, clk_base + MISC_CLK_ENB); 3410535f296dSSowjanya Komatineni writel_relaxed(clk_msk_arm_ctx, clk_base + CLK_MASK_ARM); 3411535f296dSSowjanya Komatineni 3412535f296dSSowjanya Komatineni for (i = 0; i < ARRAY_SIZE(cpu_softrst_ctx); i++) 3413535f296dSSowjanya Komatineni car_writel(cpu_softrst_ctx[i], CPU_SOFTRST_CTRL, i); 3414535f296dSSowjanya Komatineni 3415535f296dSSowjanya Komatineni /* 3416535f296dSSowjanya Komatineni * Tegra clock programming sequence recommends peripheral clock to 3417535f296dSSowjanya Komatineni * be enabled prior to changing its clock source and divider to 3418535f296dSSowjanya Komatineni * prevent glitchless frequency switch. 3419535f296dSSowjanya Komatineni * So, enable all peripheral clocks before restoring their source 3420535f296dSSowjanya Komatineni * and dividers. 3421535f296dSSowjanya Komatineni */ 3422535f296dSSowjanya Komatineni writel_relaxed(TEGRA210_CLK_ENB_VLD_MSK_L, clk_base + CLK_OUT_ENB_L); 3423535f296dSSowjanya Komatineni writel_relaxed(TEGRA210_CLK_ENB_VLD_MSK_H, clk_base + CLK_OUT_ENB_H); 3424535f296dSSowjanya Komatineni writel_relaxed(TEGRA210_CLK_ENB_VLD_MSK_U, clk_base + CLK_OUT_ENB_U); 3425535f296dSSowjanya Komatineni writel_relaxed(TEGRA210_CLK_ENB_VLD_MSK_V, clk_base + CLK_OUT_ENB_V); 3426535f296dSSowjanya Komatineni writel_relaxed(TEGRA210_CLK_ENB_VLD_MSK_W, clk_base + CLK_OUT_ENB_W); 3427535f296dSSowjanya Komatineni writel_relaxed(TEGRA210_CLK_ENB_VLD_MSK_X, clk_base + CLK_OUT_ENB_X); 3428535f296dSSowjanya Komatineni writel_relaxed(TEGRA210_CLK_ENB_VLD_MSK_Y, clk_base + CLK_OUT_ENB_Y); 3429535f296dSSowjanya Komatineni 3430535f296dSSowjanya Komatineni /* wait for all writes to happen to have all the clocks enabled */ 3431535f296dSSowjanya Komatineni fence_udelay(2, clk_base); 3432535f296dSSowjanya Komatineni 3433535f296dSSowjanya Komatineni /* restore PLLs and all peripheral clock rates */ 3434535f296dSSowjanya Komatineni tegra210_init_pllu(); 3435535f296dSSowjanya Komatineni clk_restore_context(); 3436535f296dSSowjanya Komatineni 3437535f296dSSowjanya Komatineni /* restore saved context of peripheral clocks and reset state */ 3438535f296dSSowjanya Komatineni tegra_clk_periph_resume(); 3439535f296dSSowjanya Komatineni } 3440535f296dSSowjanya Komatineni 34416b301a05SRhyland Klein static void tegra210_cpu_clock_suspend(void) 34426b301a05SRhyland Klein { 34436b301a05SRhyland Klein /* switch coresite to clk_m, save off original source */ 34446b301a05SRhyland Klein tegra210_cpu_clk_sctx.clk_csite_src = 34456b301a05SRhyland Klein readl(clk_base + CLK_SOURCE_CSITE); 34466b301a05SRhyland Klein writel(3 << 30, clk_base + CLK_SOURCE_CSITE); 34476b301a05SRhyland Klein } 34486b301a05SRhyland Klein 34496b301a05SRhyland Klein static void tegra210_cpu_clock_resume(void) 34506b301a05SRhyland Klein { 34516b301a05SRhyland Klein writel(tegra210_cpu_clk_sctx.clk_csite_src, 34526b301a05SRhyland Klein clk_base + CLK_SOURCE_CSITE); 34536b301a05SRhyland Klein } 34546b301a05SRhyland Klein #endif 34556b301a05SRhyland Klein 3456535f296dSSowjanya Komatineni static struct syscore_ops tegra_clk_syscore_ops = { 345707b293c5SYueHaibing #ifdef CONFIG_PM_SLEEP 3458535f296dSSowjanya Komatineni .suspend = tegra210_clk_suspend, 3459535f296dSSowjanya Komatineni .resume = tegra210_clk_resume, 346007b293c5SYueHaibing #endif 3461535f296dSSowjanya Komatineni }; 3462535f296dSSowjanya Komatineni 34636b301a05SRhyland Klein static struct tegra_cpu_car_ops tegra210_cpu_car_ops = { 34646b301a05SRhyland Klein .wait_for_reset = tegra210_wait_cpu_in_reset, 34656b301a05SRhyland Klein .disable_clock = tegra210_disable_cpu_clock, 34666b301a05SRhyland Klein #ifdef CONFIG_PM_SLEEP 34676b301a05SRhyland Klein .suspend = tegra210_cpu_clock_suspend, 34686b301a05SRhyland Klein .resume = tegra210_cpu_clock_resume, 34696b301a05SRhyland Klein #endif 34706b301a05SRhyland Klein }; 34716b301a05SRhyland Klein 34726b301a05SRhyland Klein static const struct of_device_id pmc_match[] __initconst = { 34736b301a05SRhyland Klein { .compatible = "nvidia,tegra210-pmc" }, 34746b301a05SRhyland Klein { }, 34756b301a05SRhyland Klein }; 34766b301a05SRhyland Klein 34776b301a05SRhyland Klein static struct tegra_clk_init_table init_table[] __initdata = { 34786b301a05SRhyland Klein { TEGRA210_CLK_UARTA, TEGRA210_CLK_PLL_P, 408000000, 0 }, 34796b301a05SRhyland Klein { TEGRA210_CLK_UARTB, TEGRA210_CLK_PLL_P, 408000000, 0 }, 34806b301a05SRhyland Klein { TEGRA210_CLK_UARTC, TEGRA210_CLK_PLL_P, 408000000, 0 }, 34816b301a05SRhyland Klein { TEGRA210_CLK_UARTD, TEGRA210_CLK_PLL_P, 408000000, 0 }, 3482efdd205cSSowjanya Komatineni { TEGRA210_CLK_PLL_A, TEGRA210_CLK_CLK_MAX, 564480000, 0 }, 3483efdd205cSSowjanya Komatineni { TEGRA210_CLK_PLL_A_OUT0, TEGRA210_CLK_CLK_MAX, 11289600, 0 }, 34846b301a05SRhyland Klein { TEGRA210_CLK_I2S0, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 }, 34856b301a05SRhyland Klein { TEGRA210_CLK_I2S1, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 }, 34866b301a05SRhyland Klein { TEGRA210_CLK_I2S2, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 }, 34876b301a05SRhyland Klein { TEGRA210_CLK_I2S3, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 }, 34886b301a05SRhyland Klein { TEGRA210_CLK_I2S4, TEGRA210_CLK_PLL_A_OUT0, 11289600, 0 }, 34896b301a05SRhyland Klein { TEGRA210_CLK_HOST1X, TEGRA210_CLK_PLL_P, 136000000, 1 }, 34906b301a05SRhyland Klein { TEGRA210_CLK_SCLK_MUX, TEGRA210_CLK_PLL_P, 0, 1 }, 34912dcabf05SDmitry Osipenko { TEGRA210_CLK_SCLK, TEGRA210_CLK_CLK_MAX, 102000000, 0 }, 34926b301a05SRhyland Klein { TEGRA210_CLK_DFLL_SOC, TEGRA210_CLK_PLL_P, 51000000, 1 }, 34936b301a05SRhyland Klein { TEGRA210_CLK_DFLL_REF, TEGRA210_CLK_PLL_P, 51000000, 1 }, 34946b301a05SRhyland Klein { TEGRA210_CLK_SBC4, TEGRA210_CLK_PLL_P, 12000000, 1 }, 34950d34dfbfSJC Kuo { TEGRA210_CLK_PLL_U_OUT1, TEGRA210_CLK_CLK_MAX, 48000000, 1 }, 34966b301a05SRhyland Klein { TEGRA210_CLK_XUSB_GATE, TEGRA210_CLK_CLK_MAX, 0, 1 }, 34976b301a05SRhyland Klein { TEGRA210_CLK_XUSB_SS_SRC, TEGRA210_CLK_PLL_U_480M, 120000000, 0 }, 34986b301a05SRhyland Klein { TEGRA210_CLK_XUSB_FS_SRC, TEGRA210_CLK_PLL_U_48M, 48000000, 0 }, 34996b301a05SRhyland Klein { TEGRA210_CLK_XUSB_HS_SRC, TEGRA210_CLK_XUSB_SS_SRC, 120000000, 0 }, 35006b301a05SRhyland Klein { TEGRA210_CLK_XUSB_SSP_SRC, TEGRA210_CLK_XUSB_SS_SRC, 120000000, 0 }, 35016b301a05SRhyland Klein { TEGRA210_CLK_XUSB_FALCON_SRC, TEGRA210_CLK_PLL_P_OUT_XUSB, 204000000, 0 }, 35026b301a05SRhyland Klein { TEGRA210_CLK_XUSB_HOST_SRC, TEGRA210_CLK_PLL_P_OUT_XUSB, 102000000, 0 }, 35036b301a05SRhyland Klein { TEGRA210_CLK_XUSB_DEV_SRC, TEGRA210_CLK_PLL_P_OUT_XUSB, 102000000, 0 }, 35046b301a05SRhyland Klein { TEGRA210_CLK_SATA, TEGRA210_CLK_PLL_P, 104000000, 0 }, 35056b301a05SRhyland Klein { TEGRA210_CLK_SATA_OOB, TEGRA210_CLK_PLL_P, 204000000, 0 }, 35066b301a05SRhyland Klein { TEGRA210_CLK_MSELECT, TEGRA210_CLK_CLK_MAX, 0, 1 }, 35076b301a05SRhyland Klein { TEGRA210_CLK_CSITE, TEGRA210_CLK_CLK_MAX, 0, 1 }, 3508bea1baa1SPeter De Schrijver /* TODO find a way to enable this on-demand */ 3509bea1baa1SPeter De Schrijver { TEGRA210_CLK_DBGAPB, TEGRA210_CLK_CLK_MAX, 0, 1 }, 35106b301a05SRhyland Klein { TEGRA210_CLK_TSENSOR, TEGRA210_CLK_CLK_M, 400000, 0 }, 35116b301a05SRhyland Klein { TEGRA210_CLK_I2C1, TEGRA210_CLK_PLL_P, 0, 0 }, 35126b301a05SRhyland Klein { TEGRA210_CLK_I2C2, TEGRA210_CLK_PLL_P, 0, 0 }, 35136b301a05SRhyland Klein { TEGRA210_CLK_I2C3, TEGRA210_CLK_PLL_P, 0, 0 }, 35146b301a05SRhyland Klein { TEGRA210_CLK_I2C4, TEGRA210_CLK_PLL_P, 0, 0 }, 35156b301a05SRhyland Klein { TEGRA210_CLK_I2C5, TEGRA210_CLK_PLL_P, 0, 0 }, 35166b301a05SRhyland Klein { TEGRA210_CLK_I2C6, TEGRA210_CLK_PLL_P, 0, 0 }, 35176b301a05SRhyland Klein { TEGRA210_CLK_PLL_DP, TEGRA210_CLK_CLK_MAX, 270000000, 0 }, 35186b301a05SRhyland Klein { TEGRA210_CLK_SOC_THERM, TEGRA210_CLK_PLL_P, 51000000, 0 }, 35196b301a05SRhyland Klein { TEGRA210_CLK_CCLK_G, TEGRA210_CLK_CLK_MAX, 0, 1 }, 3520e745f992SPeter De Schrijver { TEGRA210_CLK_PLL_U_OUT2, TEGRA210_CLK_CLK_MAX, 60000000, 1 }, 3521845d782dSJon Hunter { TEGRA210_CLK_SPDIF_IN_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 }, 3522845d782dSJon Hunter { TEGRA210_CLK_I2S0_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 }, 3523845d782dSJon Hunter { TEGRA210_CLK_I2S1_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 }, 3524845d782dSJon Hunter { TEGRA210_CLK_I2S2_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 }, 3525845d782dSJon Hunter { TEGRA210_CLK_I2S3_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 }, 3526845d782dSJon Hunter { TEGRA210_CLK_I2S4_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 }, 3527845d782dSJon Hunter { TEGRA210_CLK_VIMCLK_SYNC, TEGRA210_CLK_CLK_MAX, 24576000, 0 }, 35289caec662SJon Hunter { TEGRA210_CLK_HDA, TEGRA210_CLK_PLL_P, 51000000, 0 }, 35299caec662SJon Hunter { TEGRA210_CLK_HDA2CODEC_2X, TEGRA210_CLK_PLL_P, 48000000, 0 }, 35306b301a05SRhyland Klein /* This MUST be the last entry. */ 35316b301a05SRhyland Klein { TEGRA210_CLK_CLK_MAX, TEGRA210_CLK_CLK_MAX, 0, 0 }, 35326b301a05SRhyland Klein }; 35336b301a05SRhyland Klein 35346b301a05SRhyland Klein /** 35356b301a05SRhyland Klein * tegra210_clock_apply_init_table - initialize clocks on Tegra210 SoCs 35366b301a05SRhyland Klein * 35376b301a05SRhyland Klein * Program an initial clock rate and enable or disable clocks needed 35386b301a05SRhyland Klein * by the rest of the kernel, for Tegra210 SoCs. It is intended to be 35396b301a05SRhyland Klein * called by assigning a pointer to it to tegra_clk_apply_init_table - 35406b301a05SRhyland Klein * this will be called as an arch_initcall. No return value. 35416b301a05SRhyland Klein */ 35426b301a05SRhyland Klein static void __init tegra210_clock_apply_init_table(void) 35436b301a05SRhyland Klein { 35446b301a05SRhyland Klein tegra_init_from_table(init_table, clks, TEGRA210_CLK_CLK_MAX); 35456b301a05SRhyland Klein } 35466b301a05SRhyland Klein 35476b301a05SRhyland Klein /** 354868d724ceSPeter De Schrijver * tegra210_car_barrier - wait for pending writes to the CAR to complete 354968d724ceSPeter De Schrijver * 355068d724ceSPeter De Schrijver * Wait for any outstanding writes to the CAR MMIO space from this CPU 355168d724ceSPeter De Schrijver * to complete before continuing execution. No return value. 355268d724ceSPeter De Schrijver */ 355368d724ceSPeter De Schrijver static void tegra210_car_barrier(void) 355468d724ceSPeter De Schrijver { 355568d724ceSPeter De Schrijver readl_relaxed(clk_base + RST_DFLL_DVCO); 355668d724ceSPeter De Schrijver } 355768d724ceSPeter De Schrijver 355868d724ceSPeter De Schrijver /** 355968d724ceSPeter De Schrijver * tegra210_clock_assert_dfll_dvco_reset - assert the DFLL's DVCO reset 356068d724ceSPeter De Schrijver * 356168d724ceSPeter De Schrijver * Assert the reset line of the DFLL's DVCO. No return value. 356268d724ceSPeter De Schrijver */ 356368d724ceSPeter De Schrijver static void tegra210_clock_assert_dfll_dvco_reset(void) 356468d724ceSPeter De Schrijver { 356568d724ceSPeter De Schrijver u32 v; 356668d724ceSPeter De Schrijver 356768d724ceSPeter De Schrijver v = readl_relaxed(clk_base + RST_DFLL_DVCO); 356868d724ceSPeter De Schrijver v |= (1 << DVFS_DFLL_RESET_SHIFT); 356968d724ceSPeter De Schrijver writel_relaxed(v, clk_base + RST_DFLL_DVCO); 357068d724ceSPeter De Schrijver tegra210_car_barrier(); 357168d724ceSPeter De Schrijver } 357268d724ceSPeter De Schrijver 357368d724ceSPeter De Schrijver /** 357468d724ceSPeter De Schrijver * tegra210_clock_deassert_dfll_dvco_reset - deassert the DFLL's DVCO reset 357568d724ceSPeter De Schrijver * 357668d724ceSPeter De Schrijver * Deassert the reset line of the DFLL's DVCO, allowing the DVCO to 357768d724ceSPeter De Schrijver * operate. No return value. 357868d724ceSPeter De Schrijver */ 357968d724ceSPeter De Schrijver static void tegra210_clock_deassert_dfll_dvco_reset(void) 358068d724ceSPeter De Schrijver { 358168d724ceSPeter De Schrijver u32 v; 358268d724ceSPeter De Schrijver 358368d724ceSPeter De Schrijver v = readl_relaxed(clk_base + RST_DFLL_DVCO); 358468d724ceSPeter De Schrijver v &= ~(1 << DVFS_DFLL_RESET_SHIFT); 358568d724ceSPeter De Schrijver writel_relaxed(v, clk_base + RST_DFLL_DVCO); 358668d724ceSPeter De Schrijver tegra210_car_barrier(); 358768d724ceSPeter De Schrijver } 358868d724ceSPeter De Schrijver 358968d724ceSPeter De Schrijver static int tegra210_reset_assert(unsigned long id) 359068d724ceSPeter De Schrijver { 359168d724ceSPeter De Schrijver if (id == TEGRA210_RST_DFLL_DVCO) 359268d724ceSPeter De Schrijver tegra210_clock_assert_dfll_dvco_reset(); 359368d724ceSPeter De Schrijver else if (id == TEGRA210_RST_ADSP) 359468d724ceSPeter De Schrijver writel(GENMASK(26, 21) | BIT(7), 359568d724ceSPeter De Schrijver clk_base + CLK_RST_CONTROLLER_RST_DEV_Y_SET); 359668d724ceSPeter De Schrijver else 359768d724ceSPeter De Schrijver return -EINVAL; 359868d724ceSPeter De Schrijver 359968d724ceSPeter De Schrijver return 0; 360068d724ceSPeter De Schrijver } 360168d724ceSPeter De Schrijver 360268d724ceSPeter De Schrijver static int tegra210_reset_deassert(unsigned long id) 360368d724ceSPeter De Schrijver { 360468d724ceSPeter De Schrijver if (id == TEGRA210_RST_DFLL_DVCO) 360568d724ceSPeter De Schrijver tegra210_clock_deassert_dfll_dvco_reset(); 360668d724ceSPeter De Schrijver else if (id == TEGRA210_RST_ADSP) { 360768d724ceSPeter De Schrijver writel(BIT(21), clk_base + CLK_RST_CONTROLLER_RST_DEV_Y_CLR); 360868d724ceSPeter De Schrijver /* 360968d724ceSPeter De Schrijver * Considering adsp cpu clock (min: 12.5MHZ, max: 1GHz) 361068d724ceSPeter De Schrijver * a delay of 5us ensures that it's at least 361168d724ceSPeter De Schrijver * 6 * adsp_cpu_cycle_period long. 361268d724ceSPeter De Schrijver */ 361368d724ceSPeter De Schrijver udelay(5); 361468d724ceSPeter De Schrijver writel(GENMASK(26, 22) | BIT(7), 361568d724ceSPeter De Schrijver clk_base + CLK_RST_CONTROLLER_RST_DEV_Y_CLR); 361668d724ceSPeter De Schrijver } else 361768d724ceSPeter De Schrijver return -EINVAL; 361868d724ceSPeter De Schrijver 361968d724ceSPeter De Schrijver return 0; 362068d724ceSPeter De Schrijver } 362168d724ceSPeter De Schrijver 3622e403d005SPeter De Schrijver static void tegra210_mbist_clk_init(void) 3623e403d005SPeter De Schrijver { 3624e403d005SPeter De Schrijver unsigned int i, j; 3625e403d005SPeter De Schrijver 3626e403d005SPeter De Schrijver for (i = 0; i < ARRAY_SIZE(tegra210_pg_mbist_war); i++) { 3627e403d005SPeter De Schrijver unsigned int num_clks = tegra210_pg_mbist_war[i].num_clks; 3628e403d005SPeter De Schrijver struct clk_bulk_data *clk_data; 3629e403d005SPeter De Schrijver 3630e403d005SPeter De Schrijver if (!num_clks) 3631e403d005SPeter De Schrijver continue; 3632e403d005SPeter De Schrijver 3633e403d005SPeter De Schrijver clk_data = kmalloc_array(num_clks, sizeof(*clk_data), 3634e403d005SPeter De Schrijver GFP_KERNEL); 3635e403d005SPeter De Schrijver if (WARN_ON(!clk_data)) 3636e403d005SPeter De Schrijver return; 3637e403d005SPeter De Schrijver 3638e403d005SPeter De Schrijver tegra210_pg_mbist_war[i].clks = clk_data; 3639e403d005SPeter De Schrijver for (j = 0; j < num_clks; j++) { 3640e403d005SPeter De Schrijver int clk_id = tegra210_pg_mbist_war[i].clk_init_data[j]; 3641e403d005SPeter De Schrijver struct clk *clk = clks[clk_id]; 3642e403d005SPeter De Schrijver 3643e403d005SPeter De Schrijver if (WARN(IS_ERR(clk), "clk_id: %d\n", clk_id)) { 3644e403d005SPeter De Schrijver kfree(clk_data); 3645e403d005SPeter De Schrijver tegra210_pg_mbist_war[i].clks = NULL; 3646e403d005SPeter De Schrijver break; 3647e403d005SPeter De Schrijver } 3648e403d005SPeter De Schrijver clk_data[j].clk = clk; 3649e403d005SPeter De Schrijver } 3650e403d005SPeter De Schrijver } 3651e403d005SPeter De Schrijver } 3652e403d005SPeter De Schrijver 365368d724ceSPeter De Schrijver /** 36546b301a05SRhyland Klein * tegra210_clock_init - Tegra210-specific clock initialization 36556b301a05SRhyland Klein * @np: struct device_node * of the DT node for the SoC CAR IP block 36566b301a05SRhyland Klein * 36576b301a05SRhyland Klein * Register most SoC clocks for the Tegra210 system-on-chip. Intended 36586b301a05SRhyland Klein * to be called by the OF init code when a DT node with the 36596b301a05SRhyland Klein * "nvidia,tegra210-car" string is encountered, and declared with 36606b301a05SRhyland Klein * CLK_OF_DECLARE. No return value. 36616b301a05SRhyland Klein */ 36626b301a05SRhyland Klein static void __init tegra210_clock_init(struct device_node *np) 36636b301a05SRhyland Klein { 36646b301a05SRhyland Klein struct device_node *node; 36656b301a05SRhyland Klein u32 value, clk_m_div; 36666b301a05SRhyland Klein 36676b301a05SRhyland Klein clk_base = of_iomap(np, 0); 36686b301a05SRhyland Klein if (!clk_base) { 36696b301a05SRhyland Klein pr_err("ioremap tegra210 CAR failed\n"); 36706b301a05SRhyland Klein return; 36716b301a05SRhyland Klein } 36726b301a05SRhyland Klein 36736b301a05SRhyland Klein node = of_find_matching_node(NULL, pmc_match); 36746b301a05SRhyland Klein if (!node) { 36756b301a05SRhyland Klein pr_err("Failed to find pmc node\n"); 36766b301a05SRhyland Klein WARN_ON(1); 36776b301a05SRhyland Klein return; 36786b301a05SRhyland Klein } 36796b301a05SRhyland Klein 36806b301a05SRhyland Klein pmc_base = of_iomap(node, 0); 36816b301a05SRhyland Klein if (!pmc_base) { 36826b301a05SRhyland Klein pr_err("Can't map pmc registers\n"); 36836b301a05SRhyland Klein WARN_ON(1); 36846b301a05SRhyland Klein return; 36856b301a05SRhyland Klein } 36866b301a05SRhyland Klein 3687e403d005SPeter De Schrijver ahub_base = ioremap(TEGRA210_AHUB_BASE, SZ_64K); 3688e403d005SPeter De Schrijver if (!ahub_base) { 3689e403d005SPeter De Schrijver pr_err("ioremap tegra210 APE failed\n"); 3690e403d005SPeter De Schrijver return; 3691e403d005SPeter De Schrijver } 3692e403d005SPeter De Schrijver 3693e403d005SPeter De Schrijver dispa_base = ioremap(TEGRA210_DISPA_BASE, SZ_256K); 3694e403d005SPeter De Schrijver if (!dispa_base) { 3695e403d005SPeter De Schrijver pr_err("ioremap tegra210 DISPA failed\n"); 3696e403d005SPeter De Schrijver return; 3697e403d005SPeter De Schrijver } 3698e403d005SPeter De Schrijver 3699e403d005SPeter De Schrijver vic_base = ioremap(TEGRA210_VIC_BASE, SZ_256K); 3700e403d005SPeter De Schrijver if (!vic_base) { 3701e403d005SPeter De Schrijver pr_err("ioremap tegra210 VIC failed\n"); 3702e403d005SPeter De Schrijver return; 3703e403d005SPeter De Schrijver } 3704e403d005SPeter De Schrijver 37056b301a05SRhyland Klein clks = tegra_clk_init(clk_base, TEGRA210_CLK_CLK_MAX, 37066b301a05SRhyland Klein TEGRA210_CAR_BANK_COUNT); 37076b301a05SRhyland Klein if (!clks) 37086b301a05SRhyland Klein return; 37096b301a05SRhyland Klein 37105834fd75SJonas Gorski value = readl(clk_base + SPARE_REG0) >> CLK_M_DIVISOR_SHIFT; 37116b301a05SRhyland Klein clk_m_div = (value & CLK_M_DIVISOR_MASK) + 1; 37126b301a05SRhyland Klein 37136b301a05SRhyland Klein if (tegra_osc_clk_init(clk_base, tegra210_clks, tegra210_input_freq, 37146b301a05SRhyland Klein ARRAY_SIZE(tegra210_input_freq), clk_m_div, 37156b301a05SRhyland Klein &osc_freq, &pll_ref_freq) < 0) 37166b301a05SRhyland Klein return; 37176b301a05SRhyland Klein 37186b301a05SRhyland Klein tegra_fixed_clk_init(tegra210_clks); 37196b301a05SRhyland Klein tegra210_pll_init(clk_base, pmc_base); 37206b301a05SRhyland Klein tegra210_periph_clk_init(clk_base, pmc_base); 37216b301a05SRhyland Klein tegra_audio_clk_init(clk_base, pmc_base, tegra210_clks, 37226b301a05SRhyland Klein tegra210_audio_plls, 3723845d782dSJon Hunter ARRAY_SIZE(tegra210_audio_plls), 24576000); 37246b301a05SRhyland Klein 37256b301a05SRhyland Klein /* For Tegra210, PLLD is the only source for DSIA & DSIB */ 37265834fd75SJonas Gorski value = readl(clk_base + PLLD_BASE); 37276b301a05SRhyland Klein value &= ~BIT(25); 37285834fd75SJonas Gorski writel(value, clk_base + PLLD_BASE); 37296b301a05SRhyland Klein 37306b301a05SRhyland Klein tegra_clk_apply_init_table = tegra210_clock_apply_init_table; 37316b301a05SRhyland Klein 37326b301a05SRhyland Klein tegra_super_clk_gen5_init(clk_base, pmc_base, tegra210_clks, 37336b301a05SRhyland Klein &pll_x_params); 373468d724ceSPeter De Schrijver tegra_init_special_resets(2, tegra210_reset_assert, 373568d724ceSPeter De Schrijver tegra210_reset_deassert); 373668d724ceSPeter De Schrijver 37375d797111SDmitry Osipenko tegra_add_of_provider(np, of_clk_src_onecell_get); 37386b301a05SRhyland Klein tegra_register_devclks(devclks, ARRAY_SIZE(devclks)); 37396b301a05SRhyland Klein 3740e403d005SPeter De Schrijver tegra210_mbist_clk_init(); 3741e403d005SPeter De Schrijver 37426b301a05SRhyland Klein tegra_cpu_car_ops = &tegra210_cpu_car_ops; 3743535f296dSSowjanya Komatineni 3744535f296dSSowjanya Komatineni register_syscore_ops(&tegra_clk_syscore_ops); 37456b301a05SRhyland Klein } 37466b301a05SRhyland Klein CLK_OF_DECLARE(tegra210, "nvidia,tegra210-car", tegra210_clock_init); 3747