18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-only 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Copyright (c) 2014 Samsung Electronics Co., Ltd. 48c2ecf20Sopenharmony_ci * 58c2ecf20Sopenharmony_ci * Common Clock Framework support for Exynos3250 SoC. 68c2ecf20Sopenharmony_ci */ 78c2ecf20Sopenharmony_ci 88c2ecf20Sopenharmony_ci#include <linux/clk-provider.h> 98c2ecf20Sopenharmony_ci#include <linux/io.h> 108c2ecf20Sopenharmony_ci#include <linux/of.h> 118c2ecf20Sopenharmony_ci#include <linux/of_address.h> 128c2ecf20Sopenharmony_ci#include <linux/platform_device.h> 138c2ecf20Sopenharmony_ci 148c2ecf20Sopenharmony_ci#include <dt-bindings/clock/exynos3250.h> 158c2ecf20Sopenharmony_ci 168c2ecf20Sopenharmony_ci#include "clk.h" 178c2ecf20Sopenharmony_ci#include "clk-cpu.h" 188c2ecf20Sopenharmony_ci#include "clk-pll.h" 198c2ecf20Sopenharmony_ci 208c2ecf20Sopenharmony_ci#define SRC_LEFTBUS 0x4200 218c2ecf20Sopenharmony_ci#define DIV_LEFTBUS 0x4500 228c2ecf20Sopenharmony_ci#define GATE_IP_LEFTBUS 0x4800 238c2ecf20Sopenharmony_ci#define SRC_RIGHTBUS 0x8200 248c2ecf20Sopenharmony_ci#define DIV_RIGHTBUS 0x8500 258c2ecf20Sopenharmony_ci#define GATE_IP_RIGHTBUS 0x8800 268c2ecf20Sopenharmony_ci#define GATE_IP_PERIR 0x8960 278c2ecf20Sopenharmony_ci#define MPLL_LOCK 0xc010 288c2ecf20Sopenharmony_ci#define MPLL_CON0 0xc110 298c2ecf20Sopenharmony_ci#define VPLL_LOCK 0xc020 308c2ecf20Sopenharmony_ci#define VPLL_CON0 0xc120 318c2ecf20Sopenharmony_ci#define UPLL_LOCK 0xc030 328c2ecf20Sopenharmony_ci#define UPLL_CON0 0xc130 338c2ecf20Sopenharmony_ci#define SRC_TOP0 0xc210 348c2ecf20Sopenharmony_ci#define SRC_TOP1 0xc214 358c2ecf20Sopenharmony_ci#define SRC_CAM 0xc220 368c2ecf20Sopenharmony_ci#define SRC_MFC 0xc228 378c2ecf20Sopenharmony_ci#define SRC_G3D 0xc22c 388c2ecf20Sopenharmony_ci#define SRC_LCD 0xc234 398c2ecf20Sopenharmony_ci#define SRC_ISP 0xc238 408c2ecf20Sopenharmony_ci#define SRC_FSYS 0xc240 418c2ecf20Sopenharmony_ci#define SRC_PERIL0 0xc250 428c2ecf20Sopenharmony_ci#define SRC_PERIL1 0xc254 438c2ecf20Sopenharmony_ci#define SRC_MASK_TOP 0xc310 448c2ecf20Sopenharmony_ci#define SRC_MASK_CAM 0xc320 458c2ecf20Sopenharmony_ci#define SRC_MASK_LCD 0xc334 468c2ecf20Sopenharmony_ci#define SRC_MASK_ISP 0xc338 478c2ecf20Sopenharmony_ci#define SRC_MASK_FSYS 0xc340 488c2ecf20Sopenharmony_ci#define SRC_MASK_PERIL0 0xc350 498c2ecf20Sopenharmony_ci#define SRC_MASK_PERIL1 0xc354 508c2ecf20Sopenharmony_ci#define DIV_TOP 0xc510 518c2ecf20Sopenharmony_ci#define DIV_CAM 0xc520 528c2ecf20Sopenharmony_ci#define DIV_MFC 0xc528 538c2ecf20Sopenharmony_ci#define DIV_G3D 0xc52c 548c2ecf20Sopenharmony_ci#define DIV_LCD 0xc534 558c2ecf20Sopenharmony_ci#define DIV_ISP 0xc538 568c2ecf20Sopenharmony_ci#define DIV_FSYS0 0xc540 578c2ecf20Sopenharmony_ci#define DIV_FSYS1 0xc544 588c2ecf20Sopenharmony_ci#define DIV_FSYS2 0xc548 598c2ecf20Sopenharmony_ci#define DIV_PERIL0 0xc550 608c2ecf20Sopenharmony_ci#define DIV_PERIL1 0xc554 618c2ecf20Sopenharmony_ci#define DIV_PERIL3 0xc55c 628c2ecf20Sopenharmony_ci#define DIV_PERIL4 0xc560 638c2ecf20Sopenharmony_ci#define DIV_PERIL5 0xc564 648c2ecf20Sopenharmony_ci#define DIV_CAM1 0xc568 658c2ecf20Sopenharmony_ci#define CLKDIV2_RATIO 0xc580 668c2ecf20Sopenharmony_ci#define GATE_SCLK_CAM 0xc820 678c2ecf20Sopenharmony_ci#define GATE_SCLK_MFC 0xc828 688c2ecf20Sopenharmony_ci#define GATE_SCLK_G3D 0xc82c 698c2ecf20Sopenharmony_ci#define GATE_SCLK_LCD 0xc834 708c2ecf20Sopenharmony_ci#define GATE_SCLK_ISP_TOP 0xc838 718c2ecf20Sopenharmony_ci#define GATE_SCLK_FSYS 0xc840 728c2ecf20Sopenharmony_ci#define GATE_SCLK_PERIL 0xc850 738c2ecf20Sopenharmony_ci#define GATE_IP_CAM 0xc920 748c2ecf20Sopenharmony_ci#define GATE_IP_MFC 0xc928 758c2ecf20Sopenharmony_ci#define GATE_IP_G3D 0xc92c 768c2ecf20Sopenharmony_ci#define GATE_IP_LCD 0xc934 778c2ecf20Sopenharmony_ci#define GATE_IP_ISP 0xc938 788c2ecf20Sopenharmony_ci#define GATE_IP_FSYS 0xc940 798c2ecf20Sopenharmony_ci#define GATE_IP_PERIL 0xc950 808c2ecf20Sopenharmony_ci#define GATE_BLOCK 0xc970 818c2ecf20Sopenharmony_ci#define APLL_LOCK 0x14000 828c2ecf20Sopenharmony_ci#define APLL_CON0 0x14100 838c2ecf20Sopenharmony_ci#define SRC_CPU 0x14200 848c2ecf20Sopenharmony_ci#define DIV_CPU0 0x14500 858c2ecf20Sopenharmony_ci#define DIV_CPU1 0x14504 868c2ecf20Sopenharmony_ci#define PWR_CTRL1 0x15020 878c2ecf20Sopenharmony_ci#define PWR_CTRL2 0x15024 888c2ecf20Sopenharmony_ci 898c2ecf20Sopenharmony_ci/* Below definitions are used for PWR_CTRL settings */ 908c2ecf20Sopenharmony_ci#define PWR_CTRL1_CORE2_DOWN_RATIO(x) (((x) & 0x7) << 28) 918c2ecf20Sopenharmony_ci#define PWR_CTRL1_CORE1_DOWN_RATIO(x) (((x) & 0x7) << 16) 928c2ecf20Sopenharmony_ci#define PWR_CTRL1_DIV2_DOWN_EN (1 << 9) 938c2ecf20Sopenharmony_ci#define PWR_CTRL1_DIV1_DOWN_EN (1 << 8) 948c2ecf20Sopenharmony_ci#define PWR_CTRL1_USE_CORE3_WFE (1 << 7) 958c2ecf20Sopenharmony_ci#define PWR_CTRL1_USE_CORE2_WFE (1 << 6) 968c2ecf20Sopenharmony_ci#define PWR_CTRL1_USE_CORE1_WFE (1 << 5) 978c2ecf20Sopenharmony_ci#define PWR_CTRL1_USE_CORE0_WFE (1 << 4) 988c2ecf20Sopenharmony_ci#define PWR_CTRL1_USE_CORE3_WFI (1 << 3) 998c2ecf20Sopenharmony_ci#define PWR_CTRL1_USE_CORE2_WFI (1 << 2) 1008c2ecf20Sopenharmony_ci#define PWR_CTRL1_USE_CORE1_WFI (1 << 1) 1018c2ecf20Sopenharmony_ci#define PWR_CTRL1_USE_CORE0_WFI (1 << 0) 1028c2ecf20Sopenharmony_ci 1038c2ecf20Sopenharmony_cistatic const unsigned long exynos3250_cmu_clk_regs[] __initconst = { 1048c2ecf20Sopenharmony_ci SRC_LEFTBUS, 1058c2ecf20Sopenharmony_ci DIV_LEFTBUS, 1068c2ecf20Sopenharmony_ci GATE_IP_LEFTBUS, 1078c2ecf20Sopenharmony_ci SRC_RIGHTBUS, 1088c2ecf20Sopenharmony_ci DIV_RIGHTBUS, 1098c2ecf20Sopenharmony_ci GATE_IP_RIGHTBUS, 1108c2ecf20Sopenharmony_ci GATE_IP_PERIR, 1118c2ecf20Sopenharmony_ci MPLL_LOCK, 1128c2ecf20Sopenharmony_ci MPLL_CON0, 1138c2ecf20Sopenharmony_ci VPLL_LOCK, 1148c2ecf20Sopenharmony_ci VPLL_CON0, 1158c2ecf20Sopenharmony_ci UPLL_LOCK, 1168c2ecf20Sopenharmony_ci UPLL_CON0, 1178c2ecf20Sopenharmony_ci SRC_TOP0, 1188c2ecf20Sopenharmony_ci SRC_TOP1, 1198c2ecf20Sopenharmony_ci SRC_CAM, 1208c2ecf20Sopenharmony_ci SRC_MFC, 1218c2ecf20Sopenharmony_ci SRC_G3D, 1228c2ecf20Sopenharmony_ci SRC_LCD, 1238c2ecf20Sopenharmony_ci SRC_ISP, 1248c2ecf20Sopenharmony_ci SRC_FSYS, 1258c2ecf20Sopenharmony_ci SRC_PERIL0, 1268c2ecf20Sopenharmony_ci SRC_PERIL1, 1278c2ecf20Sopenharmony_ci SRC_MASK_TOP, 1288c2ecf20Sopenharmony_ci SRC_MASK_CAM, 1298c2ecf20Sopenharmony_ci SRC_MASK_LCD, 1308c2ecf20Sopenharmony_ci SRC_MASK_ISP, 1318c2ecf20Sopenharmony_ci SRC_MASK_FSYS, 1328c2ecf20Sopenharmony_ci SRC_MASK_PERIL0, 1338c2ecf20Sopenharmony_ci SRC_MASK_PERIL1, 1348c2ecf20Sopenharmony_ci DIV_TOP, 1358c2ecf20Sopenharmony_ci DIV_CAM, 1368c2ecf20Sopenharmony_ci DIV_MFC, 1378c2ecf20Sopenharmony_ci DIV_G3D, 1388c2ecf20Sopenharmony_ci DIV_LCD, 1398c2ecf20Sopenharmony_ci DIV_ISP, 1408c2ecf20Sopenharmony_ci DIV_FSYS0, 1418c2ecf20Sopenharmony_ci DIV_FSYS1, 1428c2ecf20Sopenharmony_ci DIV_FSYS2, 1438c2ecf20Sopenharmony_ci DIV_PERIL0, 1448c2ecf20Sopenharmony_ci DIV_PERIL1, 1458c2ecf20Sopenharmony_ci DIV_PERIL3, 1468c2ecf20Sopenharmony_ci DIV_PERIL4, 1478c2ecf20Sopenharmony_ci DIV_PERIL5, 1488c2ecf20Sopenharmony_ci DIV_CAM1, 1498c2ecf20Sopenharmony_ci CLKDIV2_RATIO, 1508c2ecf20Sopenharmony_ci GATE_SCLK_CAM, 1518c2ecf20Sopenharmony_ci GATE_SCLK_MFC, 1528c2ecf20Sopenharmony_ci GATE_SCLK_G3D, 1538c2ecf20Sopenharmony_ci GATE_SCLK_LCD, 1548c2ecf20Sopenharmony_ci GATE_SCLK_ISP_TOP, 1558c2ecf20Sopenharmony_ci GATE_SCLK_FSYS, 1568c2ecf20Sopenharmony_ci GATE_SCLK_PERIL, 1578c2ecf20Sopenharmony_ci GATE_IP_CAM, 1588c2ecf20Sopenharmony_ci GATE_IP_MFC, 1598c2ecf20Sopenharmony_ci GATE_IP_G3D, 1608c2ecf20Sopenharmony_ci GATE_IP_LCD, 1618c2ecf20Sopenharmony_ci GATE_IP_ISP, 1628c2ecf20Sopenharmony_ci GATE_IP_FSYS, 1638c2ecf20Sopenharmony_ci GATE_IP_PERIL, 1648c2ecf20Sopenharmony_ci GATE_BLOCK, 1658c2ecf20Sopenharmony_ci APLL_LOCK, 1668c2ecf20Sopenharmony_ci SRC_CPU, 1678c2ecf20Sopenharmony_ci DIV_CPU0, 1688c2ecf20Sopenharmony_ci DIV_CPU1, 1698c2ecf20Sopenharmony_ci PWR_CTRL1, 1708c2ecf20Sopenharmony_ci PWR_CTRL2, 1718c2ecf20Sopenharmony_ci}; 1728c2ecf20Sopenharmony_ci 1738c2ecf20Sopenharmony_ci/* list of all parent clock list */ 1748c2ecf20Sopenharmony_ciPNAME(mout_vpllsrc_p) = { "fin_pll", }; 1758c2ecf20Sopenharmony_ci 1768c2ecf20Sopenharmony_ciPNAME(mout_apll_p) = { "fin_pll", "fout_apll", }; 1778c2ecf20Sopenharmony_ciPNAME(mout_mpll_p) = { "fin_pll", "fout_mpll", }; 1788c2ecf20Sopenharmony_ciPNAME(mout_vpll_p) = { "fin_pll", "fout_vpll", }; 1798c2ecf20Sopenharmony_ciPNAME(mout_upll_p) = { "fin_pll", "fout_upll", }; 1808c2ecf20Sopenharmony_ci 1818c2ecf20Sopenharmony_ciPNAME(mout_mpll_user_p) = { "fin_pll", "div_mpll_pre", }; 1828c2ecf20Sopenharmony_ciPNAME(mout_epll_user_p) = { "fin_pll", "mout_epll", }; 1838c2ecf20Sopenharmony_ciPNAME(mout_core_p) = { "mout_apll", "mout_mpll_user_c", }; 1848c2ecf20Sopenharmony_ciPNAME(mout_hpm_p) = { "mout_apll", "mout_mpll_user_c", }; 1858c2ecf20Sopenharmony_ci 1868c2ecf20Sopenharmony_ciPNAME(mout_ebi_p) = { "div_aclk_200", "div_aclk_160", }; 1878c2ecf20Sopenharmony_ciPNAME(mout_ebi_1_p) = { "mout_ebi", "mout_vpll", }; 1888c2ecf20Sopenharmony_ci 1898c2ecf20Sopenharmony_ciPNAME(mout_gdl_p) = { "mout_mpll_user_l", }; 1908c2ecf20Sopenharmony_ciPNAME(mout_gdr_p) = { "mout_mpll_user_r", }; 1918c2ecf20Sopenharmony_ci 1928c2ecf20Sopenharmony_ciPNAME(mout_aclk_400_mcuisp_sub_p) 1938c2ecf20Sopenharmony_ci = { "fin_pll", "div_aclk_400_mcuisp", }; 1948c2ecf20Sopenharmony_ciPNAME(mout_aclk_266_0_p) = { "div_mpll_pre", "mout_vpll", }; 1958c2ecf20Sopenharmony_ciPNAME(mout_aclk_266_1_p) = { "mout_epll_user", }; 1968c2ecf20Sopenharmony_ciPNAME(mout_aclk_266_p) = { "mout_aclk_266_0", "mout_aclk_266_1", }; 1978c2ecf20Sopenharmony_ciPNAME(mout_aclk_266_sub_p) = { "fin_pll", "div_aclk_266", }; 1988c2ecf20Sopenharmony_ci 1998c2ecf20Sopenharmony_ciPNAME(group_div_mpll_pre_p) = { "div_mpll_pre", }; 2008c2ecf20Sopenharmony_ciPNAME(group_epll_vpll_p) = { "mout_epll_user", "mout_vpll" }; 2018c2ecf20Sopenharmony_ciPNAME(group_sclk_p) = { "xxti", "xusbxti", 2028c2ecf20Sopenharmony_ci "none", "none", 2038c2ecf20Sopenharmony_ci "none", "none", "div_mpll_pre", 2048c2ecf20Sopenharmony_ci "mout_epll_user", "mout_vpll", }; 2058c2ecf20Sopenharmony_ciPNAME(group_sclk_audio_p) = { "audiocdclk", "none", 2068c2ecf20Sopenharmony_ci "none", "none", 2078c2ecf20Sopenharmony_ci "xxti", "xusbxti", 2088c2ecf20Sopenharmony_ci "div_mpll_pre", "mout_epll_user", 2098c2ecf20Sopenharmony_ci "mout_vpll", }; 2108c2ecf20Sopenharmony_ciPNAME(group_sclk_cam_blk_p) = { "xxti", "xusbxti", 2118c2ecf20Sopenharmony_ci "none", "none", "none", 2128c2ecf20Sopenharmony_ci "none", "div_mpll_pre", 2138c2ecf20Sopenharmony_ci "mout_epll_user", "mout_vpll", 2148c2ecf20Sopenharmony_ci "none", "none", "none", 2158c2ecf20Sopenharmony_ci "div_cam_blk_320", }; 2168c2ecf20Sopenharmony_ciPNAME(group_sclk_fimd0_p) = { "xxti", "xusbxti", 2178c2ecf20Sopenharmony_ci "m_bitclkhsdiv4_2l", "none", 2188c2ecf20Sopenharmony_ci "none", "none", "div_mpll_pre", 2198c2ecf20Sopenharmony_ci "mout_epll_user", "mout_vpll", 2208c2ecf20Sopenharmony_ci "none", "none", "none", 2218c2ecf20Sopenharmony_ci "div_lcd_blk_145", }; 2228c2ecf20Sopenharmony_ci 2238c2ecf20Sopenharmony_ciPNAME(mout_mfc_p) = { "mout_mfc_0", "mout_mfc_1" }; 2248c2ecf20Sopenharmony_ciPNAME(mout_g3d_p) = { "mout_g3d_0", "mout_g3d_1" }; 2258c2ecf20Sopenharmony_ci 2268c2ecf20Sopenharmony_cistatic const struct samsung_fixed_factor_clock fixed_factor_clks[] __initconst = { 2278c2ecf20Sopenharmony_ci FFACTOR(0, "sclk_mpll_1600", "mout_mpll", 1, 1, 0), 2288c2ecf20Sopenharmony_ci FFACTOR(0, "sclk_mpll_mif", "mout_mpll", 1, 2, 0), 2298c2ecf20Sopenharmony_ci FFACTOR(0, "sclk_bpll", "fout_bpll", 1, 2, 0), 2308c2ecf20Sopenharmony_ci FFACTOR(0, "div_cam_blk_320", "sclk_mpll_1600", 1, 5, 0), 2318c2ecf20Sopenharmony_ci FFACTOR(0, "div_lcd_blk_145", "sclk_mpll_1600", 1, 11, 0), 2328c2ecf20Sopenharmony_ci 2338c2ecf20Sopenharmony_ci /* HACK: fin_pll hardcoded to xusbxti until detection is implemented. */ 2348c2ecf20Sopenharmony_ci FFACTOR(CLK_FIN_PLL, "fin_pll", "xusbxti", 1, 1, 0), 2358c2ecf20Sopenharmony_ci}; 2368c2ecf20Sopenharmony_ci 2378c2ecf20Sopenharmony_cistatic const struct samsung_mux_clock mux_clks[] __initconst = { 2388c2ecf20Sopenharmony_ci /* 2398c2ecf20Sopenharmony_ci * NOTE: Following table is sorted by register address in ascending 2408c2ecf20Sopenharmony_ci * order and then bitfield shift in descending order, as it is done 2418c2ecf20Sopenharmony_ci * in the User's Manual. When adding new entries, please make sure 2428c2ecf20Sopenharmony_ci * that the order is preserved, to avoid merge conflicts and make 2438c2ecf20Sopenharmony_ci * further work with defined data easier. 2448c2ecf20Sopenharmony_ci */ 2458c2ecf20Sopenharmony_ci 2468c2ecf20Sopenharmony_ci /* SRC_LEFTBUS */ 2478c2ecf20Sopenharmony_ci MUX(CLK_MOUT_MPLL_USER_L, "mout_mpll_user_l", mout_mpll_user_p, 2488c2ecf20Sopenharmony_ci SRC_LEFTBUS, 4, 1), 2498c2ecf20Sopenharmony_ci MUX(CLK_MOUT_GDL, "mout_gdl", mout_gdl_p, SRC_LEFTBUS, 0, 1), 2508c2ecf20Sopenharmony_ci 2518c2ecf20Sopenharmony_ci /* SRC_RIGHTBUS */ 2528c2ecf20Sopenharmony_ci MUX(CLK_MOUT_MPLL_USER_R, "mout_mpll_user_r", mout_mpll_user_p, 2538c2ecf20Sopenharmony_ci SRC_RIGHTBUS, 4, 1), 2548c2ecf20Sopenharmony_ci MUX(CLK_MOUT_GDR, "mout_gdr", mout_gdr_p, SRC_RIGHTBUS, 0, 1), 2558c2ecf20Sopenharmony_ci 2568c2ecf20Sopenharmony_ci /* SRC_TOP0 */ 2578c2ecf20Sopenharmony_ci MUX(CLK_MOUT_EBI, "mout_ebi", mout_ebi_p, SRC_TOP0, 28, 1), 2588c2ecf20Sopenharmony_ci MUX(CLK_MOUT_ACLK_200, "mout_aclk_200", group_div_mpll_pre_p,SRC_TOP0, 24, 1), 2598c2ecf20Sopenharmony_ci MUX(CLK_MOUT_ACLK_160, "mout_aclk_160", group_div_mpll_pre_p, SRC_TOP0, 20, 1), 2608c2ecf20Sopenharmony_ci MUX(CLK_MOUT_ACLK_100, "mout_aclk_100", group_div_mpll_pre_p, SRC_TOP0, 16, 1), 2618c2ecf20Sopenharmony_ci MUX(CLK_MOUT_ACLK_266_1, "mout_aclk_266_1", mout_aclk_266_1_p, SRC_TOP0, 14, 1), 2628c2ecf20Sopenharmony_ci MUX(CLK_MOUT_ACLK_266_0, "mout_aclk_266_0", mout_aclk_266_0_p, SRC_TOP0, 13, 1), 2638c2ecf20Sopenharmony_ci MUX(CLK_MOUT_ACLK_266, "mout_aclk_266", mout_aclk_266_p, SRC_TOP0, 12, 1), 2648c2ecf20Sopenharmony_ci MUX(CLK_MOUT_VPLL, "mout_vpll", mout_vpll_p, SRC_TOP0, 8, 1), 2658c2ecf20Sopenharmony_ci MUX(CLK_MOUT_EPLL_USER, "mout_epll_user", mout_epll_user_p, SRC_TOP0, 4, 1), 2668c2ecf20Sopenharmony_ci MUX(CLK_MOUT_EBI_1, "mout_ebi_1", mout_ebi_1_p, SRC_TOP0, 0, 1), 2678c2ecf20Sopenharmony_ci 2688c2ecf20Sopenharmony_ci /* SRC_TOP1 */ 2698c2ecf20Sopenharmony_ci MUX(CLK_MOUT_UPLL, "mout_upll", mout_upll_p, SRC_TOP1, 28, 1), 2708c2ecf20Sopenharmony_ci MUX(CLK_MOUT_ACLK_400_MCUISP_SUB, "mout_aclk_400_mcuisp_sub", mout_aclk_400_mcuisp_sub_p, 2718c2ecf20Sopenharmony_ci SRC_TOP1, 24, 1), 2728c2ecf20Sopenharmony_ci MUX(CLK_MOUT_ACLK_266_SUB, "mout_aclk_266_sub", mout_aclk_266_sub_p, SRC_TOP1, 20, 1), 2738c2ecf20Sopenharmony_ci MUX(CLK_MOUT_MPLL, "mout_mpll", mout_mpll_p, SRC_TOP1, 12, 1), 2748c2ecf20Sopenharmony_ci MUX(CLK_MOUT_ACLK_400_MCUISP, "mout_aclk_400_mcuisp", group_div_mpll_pre_p, SRC_TOP1, 8, 1), 2758c2ecf20Sopenharmony_ci MUX(CLK_MOUT_VPLLSRC, "mout_vpllsrc", mout_vpllsrc_p, SRC_TOP1, 0, 1), 2768c2ecf20Sopenharmony_ci 2778c2ecf20Sopenharmony_ci /* SRC_CAM */ 2788c2ecf20Sopenharmony_ci MUX(CLK_MOUT_CAM1, "mout_cam1", group_sclk_p, SRC_CAM, 20, 4), 2798c2ecf20Sopenharmony_ci MUX(CLK_MOUT_CAM_BLK, "mout_cam_blk", group_sclk_cam_blk_p, SRC_CAM, 0, 4), 2808c2ecf20Sopenharmony_ci 2818c2ecf20Sopenharmony_ci /* SRC_MFC */ 2828c2ecf20Sopenharmony_ci MUX(CLK_MOUT_MFC, "mout_mfc", mout_mfc_p, SRC_MFC, 8, 1), 2838c2ecf20Sopenharmony_ci MUX(CLK_MOUT_MFC_1, "mout_mfc_1", group_epll_vpll_p, SRC_MFC, 4, 1), 2848c2ecf20Sopenharmony_ci MUX(CLK_MOUT_MFC_0, "mout_mfc_0", group_div_mpll_pre_p, SRC_MFC, 0, 1), 2858c2ecf20Sopenharmony_ci 2868c2ecf20Sopenharmony_ci /* SRC_G3D */ 2878c2ecf20Sopenharmony_ci MUX(CLK_MOUT_G3D, "mout_g3d", mout_g3d_p, SRC_G3D, 8, 1), 2888c2ecf20Sopenharmony_ci MUX(CLK_MOUT_G3D_1, "mout_g3d_1", group_epll_vpll_p, SRC_G3D, 4, 1), 2898c2ecf20Sopenharmony_ci MUX(CLK_MOUT_G3D_0, "mout_g3d_0", group_div_mpll_pre_p, SRC_G3D, 0, 1), 2908c2ecf20Sopenharmony_ci 2918c2ecf20Sopenharmony_ci /* SRC_LCD */ 2928c2ecf20Sopenharmony_ci MUX(CLK_MOUT_MIPI0, "mout_mipi0", group_sclk_p, SRC_LCD, 12, 4), 2938c2ecf20Sopenharmony_ci MUX(CLK_MOUT_FIMD0, "mout_fimd0", group_sclk_fimd0_p, SRC_LCD, 0, 4), 2948c2ecf20Sopenharmony_ci 2958c2ecf20Sopenharmony_ci /* SRC_ISP */ 2968c2ecf20Sopenharmony_ci MUX(CLK_MOUT_UART_ISP, "mout_uart_isp", group_sclk_p, SRC_ISP, 12, 4), 2978c2ecf20Sopenharmony_ci MUX(CLK_MOUT_SPI1_ISP, "mout_spi1_isp", group_sclk_p, SRC_ISP, 8, 4), 2988c2ecf20Sopenharmony_ci MUX(CLK_MOUT_SPI0_ISP, "mout_spi0_isp", group_sclk_p, SRC_ISP, 4, 4), 2998c2ecf20Sopenharmony_ci 3008c2ecf20Sopenharmony_ci /* SRC_FSYS */ 3018c2ecf20Sopenharmony_ci MUX(CLK_MOUT_TSADC, "mout_tsadc", group_sclk_p, SRC_FSYS, 28, 4), 3028c2ecf20Sopenharmony_ci MUX(CLK_MOUT_MMC2, "mout_mmc2", group_sclk_p, SRC_FSYS, 8, 4), 3038c2ecf20Sopenharmony_ci MUX(CLK_MOUT_MMC1, "mout_mmc1", group_sclk_p, SRC_FSYS, 4, 4), 3048c2ecf20Sopenharmony_ci MUX(CLK_MOUT_MMC0, "mout_mmc0", group_sclk_p, SRC_FSYS, 0, 4), 3058c2ecf20Sopenharmony_ci 3068c2ecf20Sopenharmony_ci /* SRC_PERIL0 */ 3078c2ecf20Sopenharmony_ci MUX(CLK_MOUT_UART2, "mout_uart2", group_sclk_p, SRC_PERIL0, 8, 4), 3088c2ecf20Sopenharmony_ci MUX(CLK_MOUT_UART1, "mout_uart1", group_sclk_p, SRC_PERIL0, 4, 4), 3098c2ecf20Sopenharmony_ci MUX(CLK_MOUT_UART0, "mout_uart0", group_sclk_p, SRC_PERIL0, 0, 4), 3108c2ecf20Sopenharmony_ci 3118c2ecf20Sopenharmony_ci /* SRC_PERIL1 */ 3128c2ecf20Sopenharmony_ci MUX(CLK_MOUT_SPI1, "mout_spi1", group_sclk_p, SRC_PERIL1, 20, 4), 3138c2ecf20Sopenharmony_ci MUX(CLK_MOUT_SPI0, "mout_spi0", group_sclk_p, SRC_PERIL1, 16, 4), 3148c2ecf20Sopenharmony_ci MUX(CLK_MOUT_AUDIO, "mout_audio", group_sclk_audio_p, SRC_PERIL1, 4, 4), 3158c2ecf20Sopenharmony_ci 3168c2ecf20Sopenharmony_ci /* SRC_CPU */ 3178c2ecf20Sopenharmony_ci MUX(CLK_MOUT_MPLL_USER_C, "mout_mpll_user_c", mout_mpll_user_p, 3188c2ecf20Sopenharmony_ci SRC_CPU, 24, 1), 3198c2ecf20Sopenharmony_ci MUX(CLK_MOUT_HPM, "mout_hpm", mout_hpm_p, SRC_CPU, 20, 1), 3208c2ecf20Sopenharmony_ci MUX_F(CLK_MOUT_CORE, "mout_core", mout_core_p, SRC_CPU, 16, 1, 3218c2ecf20Sopenharmony_ci CLK_SET_RATE_PARENT, 0), 3228c2ecf20Sopenharmony_ci MUX_F(CLK_MOUT_APLL, "mout_apll", mout_apll_p, SRC_CPU, 0, 1, 3238c2ecf20Sopenharmony_ci CLK_SET_RATE_PARENT, 0), 3248c2ecf20Sopenharmony_ci}; 3258c2ecf20Sopenharmony_ci 3268c2ecf20Sopenharmony_cistatic const struct samsung_div_clock div_clks[] __initconst = { 3278c2ecf20Sopenharmony_ci /* 3288c2ecf20Sopenharmony_ci * NOTE: Following table is sorted by register address in ascending 3298c2ecf20Sopenharmony_ci * order and then bitfield shift in descending order, as it is done 3308c2ecf20Sopenharmony_ci * in the User's Manual. When adding new entries, please make sure 3318c2ecf20Sopenharmony_ci * that the order is preserved, to avoid merge conflicts and make 3328c2ecf20Sopenharmony_ci * further work with defined data easier. 3338c2ecf20Sopenharmony_ci */ 3348c2ecf20Sopenharmony_ci 3358c2ecf20Sopenharmony_ci /* DIV_LEFTBUS */ 3368c2ecf20Sopenharmony_ci DIV(CLK_DIV_GPL, "div_gpl", "div_gdl", DIV_LEFTBUS, 4, 3), 3378c2ecf20Sopenharmony_ci DIV(CLK_DIV_GDL, "div_gdl", "mout_gdl", DIV_LEFTBUS, 0, 4), 3388c2ecf20Sopenharmony_ci 3398c2ecf20Sopenharmony_ci /* DIV_RIGHTBUS */ 3408c2ecf20Sopenharmony_ci DIV(CLK_DIV_GPR, "div_gpr", "div_gdr", DIV_RIGHTBUS, 4, 3), 3418c2ecf20Sopenharmony_ci DIV(CLK_DIV_GDR, "div_gdr", "mout_gdr", DIV_RIGHTBUS, 0, 4), 3428c2ecf20Sopenharmony_ci 3438c2ecf20Sopenharmony_ci /* DIV_TOP */ 3448c2ecf20Sopenharmony_ci DIV(CLK_DIV_MPLL_PRE, "div_mpll_pre", "sclk_mpll_mif", DIV_TOP, 28, 2), 3458c2ecf20Sopenharmony_ci DIV(CLK_DIV_ACLK_400_MCUISP, "div_aclk_400_mcuisp", 3468c2ecf20Sopenharmony_ci "mout_aclk_400_mcuisp", DIV_TOP, 24, 3), 3478c2ecf20Sopenharmony_ci DIV(CLK_DIV_EBI, "div_ebi", "mout_ebi_1", DIV_TOP, 16, 3), 3488c2ecf20Sopenharmony_ci DIV(CLK_DIV_ACLK_200, "div_aclk_200", "mout_aclk_200", DIV_TOP, 12, 3), 3498c2ecf20Sopenharmony_ci DIV(CLK_DIV_ACLK_160, "div_aclk_160", "mout_aclk_160", DIV_TOP, 8, 3), 3508c2ecf20Sopenharmony_ci DIV(CLK_DIV_ACLK_100, "div_aclk_100", "mout_aclk_100", DIV_TOP, 4, 4), 3518c2ecf20Sopenharmony_ci DIV(CLK_DIV_ACLK_266, "div_aclk_266", "mout_aclk_266", DIV_TOP, 0, 3), 3528c2ecf20Sopenharmony_ci 3538c2ecf20Sopenharmony_ci /* DIV_CAM */ 3548c2ecf20Sopenharmony_ci DIV(CLK_DIV_CAM1, "div_cam1", "mout_cam1", DIV_CAM, 20, 4), 3558c2ecf20Sopenharmony_ci DIV(CLK_DIV_CAM_BLK, "div_cam_blk", "mout_cam_blk", DIV_CAM, 0, 4), 3568c2ecf20Sopenharmony_ci 3578c2ecf20Sopenharmony_ci /* DIV_MFC */ 3588c2ecf20Sopenharmony_ci DIV(CLK_DIV_MFC, "div_mfc", "mout_mfc", DIV_MFC, 0, 4), 3598c2ecf20Sopenharmony_ci 3608c2ecf20Sopenharmony_ci /* DIV_G3D */ 3618c2ecf20Sopenharmony_ci DIV(CLK_DIV_G3D, "div_g3d", "mout_g3d", DIV_G3D, 0, 4), 3628c2ecf20Sopenharmony_ci 3638c2ecf20Sopenharmony_ci /* DIV_LCD */ 3648c2ecf20Sopenharmony_ci DIV_F(CLK_DIV_MIPI0_PRE, "div_mipi0_pre", "div_mipi0", DIV_LCD, 20, 4, 3658c2ecf20Sopenharmony_ci CLK_SET_RATE_PARENT, 0), 3668c2ecf20Sopenharmony_ci DIV(CLK_DIV_MIPI0, "div_mipi0", "mout_mipi0", DIV_LCD, 16, 4), 3678c2ecf20Sopenharmony_ci DIV(CLK_DIV_FIMD0, "div_fimd0", "mout_fimd0", DIV_LCD, 0, 4), 3688c2ecf20Sopenharmony_ci 3698c2ecf20Sopenharmony_ci /* DIV_ISP */ 3708c2ecf20Sopenharmony_ci DIV(CLK_DIV_UART_ISP, "div_uart_isp", "mout_uart_isp", DIV_ISP, 28, 4), 3718c2ecf20Sopenharmony_ci DIV_F(CLK_DIV_SPI1_ISP_PRE, "div_spi1_isp_pre", "div_spi1_isp", 3728c2ecf20Sopenharmony_ci DIV_ISP, 20, 8, CLK_SET_RATE_PARENT, 0), 3738c2ecf20Sopenharmony_ci DIV(CLK_DIV_SPI1_ISP, "div_spi1_isp", "mout_spi1_isp", DIV_ISP, 16, 4), 3748c2ecf20Sopenharmony_ci DIV_F(CLK_DIV_SPI0_ISP_PRE, "div_spi0_isp_pre", "div_spi0_isp", 3758c2ecf20Sopenharmony_ci DIV_ISP, 8, 8, CLK_SET_RATE_PARENT, 0), 3768c2ecf20Sopenharmony_ci DIV(CLK_DIV_SPI0_ISP, "div_spi0_isp", "mout_spi0_isp", DIV_ISP, 4, 4), 3778c2ecf20Sopenharmony_ci 3788c2ecf20Sopenharmony_ci /* DIV_FSYS0 */ 3798c2ecf20Sopenharmony_ci DIV_F(CLK_DIV_TSADC_PRE, "div_tsadc_pre", "div_tsadc", DIV_FSYS0, 8, 8, 3808c2ecf20Sopenharmony_ci CLK_SET_RATE_PARENT, 0), 3818c2ecf20Sopenharmony_ci DIV(CLK_DIV_TSADC, "div_tsadc", "mout_tsadc", DIV_FSYS0, 0, 4), 3828c2ecf20Sopenharmony_ci 3838c2ecf20Sopenharmony_ci /* DIV_FSYS1 */ 3848c2ecf20Sopenharmony_ci DIV_F(CLK_DIV_MMC1_PRE, "div_mmc1_pre", "div_mmc1", DIV_FSYS1, 24, 8, 3858c2ecf20Sopenharmony_ci CLK_SET_RATE_PARENT, 0), 3868c2ecf20Sopenharmony_ci DIV(CLK_DIV_MMC1, "div_mmc1", "mout_mmc1", DIV_FSYS1, 16, 4), 3878c2ecf20Sopenharmony_ci DIV_F(CLK_DIV_MMC0_PRE, "div_mmc0_pre", "div_mmc0", DIV_FSYS1, 8, 8, 3888c2ecf20Sopenharmony_ci CLK_SET_RATE_PARENT, 0), 3898c2ecf20Sopenharmony_ci DIV(CLK_DIV_MMC0, "div_mmc0", "mout_mmc0", DIV_FSYS1, 0, 4), 3908c2ecf20Sopenharmony_ci 3918c2ecf20Sopenharmony_ci /* DIV_FSYS2 */ 3928c2ecf20Sopenharmony_ci DIV_F(CLK_DIV_MMC2_PRE, "div_mmc2_pre", "div_mmc2", DIV_FSYS2, 8, 8, 3938c2ecf20Sopenharmony_ci CLK_SET_RATE_PARENT, 0), 3948c2ecf20Sopenharmony_ci DIV(CLK_DIV_MMC2, "div_mmc2", "mout_mmc2", DIV_FSYS2, 0, 4), 3958c2ecf20Sopenharmony_ci 3968c2ecf20Sopenharmony_ci /* DIV_PERIL0 */ 3978c2ecf20Sopenharmony_ci DIV(CLK_DIV_UART2, "div_uart2", "mout_uart2", DIV_PERIL0, 8, 4), 3988c2ecf20Sopenharmony_ci DIV(CLK_DIV_UART1, "div_uart1", "mout_uart1", DIV_PERIL0, 4, 4), 3998c2ecf20Sopenharmony_ci DIV(CLK_DIV_UART0, "div_uart0", "mout_uart0", DIV_PERIL0, 0, 4), 4008c2ecf20Sopenharmony_ci 4018c2ecf20Sopenharmony_ci /* DIV_PERIL1 */ 4028c2ecf20Sopenharmony_ci DIV_F(CLK_DIV_SPI1_PRE, "div_spi1_pre", "div_spi1", DIV_PERIL1, 24, 8, 4038c2ecf20Sopenharmony_ci CLK_SET_RATE_PARENT, 0), 4048c2ecf20Sopenharmony_ci DIV(CLK_DIV_SPI1, "div_spi1", "mout_spi1", DIV_PERIL1, 16, 4), 4058c2ecf20Sopenharmony_ci DIV_F(CLK_DIV_SPI0_PRE, "div_spi0_pre", "div_spi0", DIV_PERIL1, 8, 8, 4068c2ecf20Sopenharmony_ci CLK_SET_RATE_PARENT, 0), 4078c2ecf20Sopenharmony_ci DIV(CLK_DIV_SPI0, "div_spi0", "mout_spi0", DIV_PERIL1, 0, 4), 4088c2ecf20Sopenharmony_ci 4098c2ecf20Sopenharmony_ci /* DIV_PERIL4 */ 4108c2ecf20Sopenharmony_ci DIV(CLK_DIV_PCM, "div_pcm", "div_audio", DIV_PERIL4, 20, 8), 4118c2ecf20Sopenharmony_ci DIV(CLK_DIV_AUDIO, "div_audio", "mout_audio", DIV_PERIL4, 16, 4), 4128c2ecf20Sopenharmony_ci 4138c2ecf20Sopenharmony_ci /* DIV_PERIL5 */ 4148c2ecf20Sopenharmony_ci DIV(CLK_DIV_I2S, "div_i2s", "div_audio", DIV_PERIL5, 8, 6), 4158c2ecf20Sopenharmony_ci 4168c2ecf20Sopenharmony_ci /* DIV_CPU0 */ 4178c2ecf20Sopenharmony_ci DIV(CLK_DIV_CORE2, "div_core2", "div_core", DIV_CPU0, 28, 3), 4188c2ecf20Sopenharmony_ci DIV(CLK_DIV_APLL, "div_apll", "mout_apll", DIV_CPU0, 24, 3), 4198c2ecf20Sopenharmony_ci DIV(CLK_DIV_PCLK_DBG, "div_pclk_dbg", "div_core2", DIV_CPU0, 20, 3), 4208c2ecf20Sopenharmony_ci DIV(CLK_DIV_ATB, "div_atb", "div_core2", DIV_CPU0, 16, 3), 4218c2ecf20Sopenharmony_ci DIV(CLK_DIV_COREM, "div_corem", "div_core2", DIV_CPU0, 4, 3), 4228c2ecf20Sopenharmony_ci DIV(CLK_DIV_CORE, "div_core", "mout_core", DIV_CPU0, 0, 3), 4238c2ecf20Sopenharmony_ci 4248c2ecf20Sopenharmony_ci /* DIV_CPU1 */ 4258c2ecf20Sopenharmony_ci DIV(CLK_DIV_HPM, "div_hpm", "div_copy", DIV_CPU1, 4, 3), 4268c2ecf20Sopenharmony_ci DIV(CLK_DIV_COPY, "div_copy", "mout_hpm", DIV_CPU1, 0, 3), 4278c2ecf20Sopenharmony_ci}; 4288c2ecf20Sopenharmony_ci 4298c2ecf20Sopenharmony_cistatic const struct samsung_gate_clock gate_clks[] __initconst = { 4308c2ecf20Sopenharmony_ci /* 4318c2ecf20Sopenharmony_ci * NOTE: Following table is sorted by register address in ascending 4328c2ecf20Sopenharmony_ci * order and then bitfield shift in descending order, as it is done 4338c2ecf20Sopenharmony_ci * in the User's Manual. When adding new entries, please make sure 4348c2ecf20Sopenharmony_ci * that the order is preserved, to avoid merge conflicts and make 4358c2ecf20Sopenharmony_ci * further work with defined data easier. 4368c2ecf20Sopenharmony_ci */ 4378c2ecf20Sopenharmony_ci 4388c2ecf20Sopenharmony_ci /* GATE_IP_LEFTBUS */ 4398c2ecf20Sopenharmony_ci GATE(CLK_ASYNC_G3D, "async_g3d", "div_aclk_100", GATE_IP_LEFTBUS, 6, 4408c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4418c2ecf20Sopenharmony_ci GATE(CLK_ASYNC_MFCL, "async_mfcl", "div_aclk_100", GATE_IP_LEFTBUS, 4, 4428c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4438c2ecf20Sopenharmony_ci GATE(CLK_PPMULEFT, "ppmuleft", "div_aclk_100", GATE_IP_LEFTBUS, 1, 4448c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4458c2ecf20Sopenharmony_ci GATE(CLK_GPIO_LEFT, "gpio_left", "div_aclk_100", GATE_IP_LEFTBUS, 0, 4468c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4478c2ecf20Sopenharmony_ci 4488c2ecf20Sopenharmony_ci /* GATE_IP_RIGHTBUS */ 4498c2ecf20Sopenharmony_ci GATE(CLK_ASYNC_ISPMX, "async_ispmx", "div_aclk_100", 4508c2ecf20Sopenharmony_ci GATE_IP_RIGHTBUS, 9, CLK_IGNORE_UNUSED, 0), 4518c2ecf20Sopenharmony_ci GATE(CLK_ASYNC_FSYSD, "async_fsysd", "div_aclk_100", 4528c2ecf20Sopenharmony_ci GATE_IP_RIGHTBUS, 5, CLK_IGNORE_UNUSED, 0), 4538c2ecf20Sopenharmony_ci GATE(CLK_ASYNC_LCD0X, "async_lcd0x", "div_aclk_100", 4548c2ecf20Sopenharmony_ci GATE_IP_RIGHTBUS, 3, CLK_IGNORE_UNUSED, 0), 4558c2ecf20Sopenharmony_ci GATE(CLK_ASYNC_CAMX, "async_camx", "div_aclk_100", GATE_IP_RIGHTBUS, 2, 4568c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4578c2ecf20Sopenharmony_ci GATE(CLK_PPMURIGHT, "ppmuright", "div_aclk_100", GATE_IP_RIGHTBUS, 1, 4588c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4598c2ecf20Sopenharmony_ci GATE(CLK_GPIO_RIGHT, "gpio_right", "div_aclk_100", GATE_IP_RIGHTBUS, 0, 4608c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4618c2ecf20Sopenharmony_ci 4628c2ecf20Sopenharmony_ci /* GATE_IP_PERIR */ 4638c2ecf20Sopenharmony_ci GATE(CLK_MONOCNT, "monocnt", "div_aclk_100", GATE_IP_PERIR, 22, 4648c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4658c2ecf20Sopenharmony_ci GATE(CLK_TZPC6, "tzpc6", "div_aclk_100", GATE_IP_PERIR, 21, 4668c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4678c2ecf20Sopenharmony_ci GATE(CLK_PROVISIONKEY1, "provisionkey1", "div_aclk_100", 4688c2ecf20Sopenharmony_ci GATE_IP_PERIR, 20, CLK_IGNORE_UNUSED, 0), 4698c2ecf20Sopenharmony_ci GATE(CLK_PROVISIONKEY0, "provisionkey0", "div_aclk_100", 4708c2ecf20Sopenharmony_ci GATE_IP_PERIR, 19, CLK_IGNORE_UNUSED, 0), 4718c2ecf20Sopenharmony_ci GATE(CLK_CMU_ISPPART, "cmu_isppart", "div_aclk_100", GATE_IP_PERIR, 18, 4728c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4738c2ecf20Sopenharmony_ci GATE(CLK_TMU_APBIF, "tmu_apbif", "div_aclk_100", 4748c2ecf20Sopenharmony_ci GATE_IP_PERIR, 17, 0, 0), 4758c2ecf20Sopenharmony_ci GATE(CLK_KEYIF, "keyif", "div_aclk_100", GATE_IP_PERIR, 16, 0, 0), 4768c2ecf20Sopenharmony_ci GATE(CLK_RTC, "rtc", "div_aclk_100", GATE_IP_PERIR, 15, 0, 0), 4778c2ecf20Sopenharmony_ci GATE(CLK_WDT, "wdt", "div_aclk_100", GATE_IP_PERIR, 14, 0, 0), 4788c2ecf20Sopenharmony_ci GATE(CLK_MCT, "mct", "div_aclk_100", GATE_IP_PERIR, 13, 0, 0), 4798c2ecf20Sopenharmony_ci GATE(CLK_SECKEY, "seckey", "div_aclk_100", GATE_IP_PERIR, 12, 4808c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4818c2ecf20Sopenharmony_ci GATE(CLK_TZPC5, "tzpc5", "div_aclk_100", GATE_IP_PERIR, 10, 4828c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4838c2ecf20Sopenharmony_ci GATE(CLK_TZPC4, "tzpc4", "div_aclk_100", GATE_IP_PERIR, 9, 4848c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4858c2ecf20Sopenharmony_ci GATE(CLK_TZPC3, "tzpc3", "div_aclk_100", GATE_IP_PERIR, 8, 4868c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4878c2ecf20Sopenharmony_ci GATE(CLK_TZPC2, "tzpc2", "div_aclk_100", GATE_IP_PERIR, 7, 4888c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4898c2ecf20Sopenharmony_ci GATE(CLK_TZPC1, "tzpc1", "div_aclk_100", GATE_IP_PERIR, 6, 4908c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4918c2ecf20Sopenharmony_ci GATE(CLK_TZPC0, "tzpc0", "div_aclk_100", GATE_IP_PERIR, 5, 4928c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4938c2ecf20Sopenharmony_ci GATE(CLK_CMU_COREPART, "cmu_corepart", "div_aclk_100", GATE_IP_PERIR, 4, 4948c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4958c2ecf20Sopenharmony_ci GATE(CLK_CMU_TOPPART, "cmu_toppart", "div_aclk_100", GATE_IP_PERIR, 3, 4968c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4978c2ecf20Sopenharmony_ci GATE(CLK_PMU_APBIF, "pmu_apbif", "div_aclk_100", GATE_IP_PERIR, 2, 4988c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 4998c2ecf20Sopenharmony_ci GATE(CLK_SYSREG, "sysreg", "div_aclk_100", GATE_IP_PERIR, 1, 5008c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 5018c2ecf20Sopenharmony_ci GATE(CLK_CHIP_ID, "chip_id", "div_aclk_100", GATE_IP_PERIR, 0, 5028c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 5038c2ecf20Sopenharmony_ci 5048c2ecf20Sopenharmony_ci /* GATE_SCLK_CAM */ 5058c2ecf20Sopenharmony_ci GATE(CLK_SCLK_JPEG, "sclk_jpeg", "div_cam_blk", 5068c2ecf20Sopenharmony_ci GATE_SCLK_CAM, 8, CLK_SET_RATE_PARENT, 0), 5078c2ecf20Sopenharmony_ci GATE(CLK_SCLK_M2MSCALER, "sclk_m2mscaler", "div_cam_blk", 5088c2ecf20Sopenharmony_ci GATE_SCLK_CAM, 2, CLK_SET_RATE_PARENT, 0), 5098c2ecf20Sopenharmony_ci GATE(CLK_SCLK_GSCALER1, "sclk_gscaler1", "div_cam_blk", 5108c2ecf20Sopenharmony_ci GATE_SCLK_CAM, 1, CLK_SET_RATE_PARENT, 0), 5118c2ecf20Sopenharmony_ci GATE(CLK_SCLK_GSCALER0, "sclk_gscaler0", "div_cam_blk", 5128c2ecf20Sopenharmony_ci GATE_SCLK_CAM, 0, CLK_SET_RATE_PARENT, 0), 5138c2ecf20Sopenharmony_ci 5148c2ecf20Sopenharmony_ci /* GATE_SCLK_MFC */ 5158c2ecf20Sopenharmony_ci GATE(CLK_SCLK_MFC, "sclk_mfc", "div_mfc", 5168c2ecf20Sopenharmony_ci GATE_SCLK_MFC, 0, CLK_SET_RATE_PARENT, 0), 5178c2ecf20Sopenharmony_ci 5188c2ecf20Sopenharmony_ci /* GATE_SCLK_G3D */ 5198c2ecf20Sopenharmony_ci GATE(CLK_SCLK_G3D, "sclk_g3d", "div_g3d", 5208c2ecf20Sopenharmony_ci GATE_SCLK_G3D, 0, CLK_SET_RATE_PARENT, 0), 5218c2ecf20Sopenharmony_ci 5228c2ecf20Sopenharmony_ci /* GATE_SCLK_LCD */ 5238c2ecf20Sopenharmony_ci GATE(CLK_SCLK_MIPIDPHY2L, "sclk_mipidphy2l", "div_mipi0", 5248c2ecf20Sopenharmony_ci GATE_SCLK_LCD, 4, CLK_SET_RATE_PARENT, 0), 5258c2ecf20Sopenharmony_ci GATE(CLK_SCLK_MIPI0, "sclk_mipi0", "div_mipi0_pre", 5268c2ecf20Sopenharmony_ci GATE_SCLK_LCD, 3, CLK_SET_RATE_PARENT, 0), 5278c2ecf20Sopenharmony_ci GATE(CLK_SCLK_FIMD0, "sclk_fimd0", "div_fimd0", 5288c2ecf20Sopenharmony_ci GATE_SCLK_LCD, 0, CLK_SET_RATE_PARENT, 0), 5298c2ecf20Sopenharmony_ci 5308c2ecf20Sopenharmony_ci /* GATE_SCLK_ISP_TOP */ 5318c2ecf20Sopenharmony_ci GATE(CLK_SCLK_CAM1, "sclk_cam1", "div_cam1", 5328c2ecf20Sopenharmony_ci GATE_SCLK_ISP_TOP, 4, CLK_SET_RATE_PARENT, 0), 5338c2ecf20Sopenharmony_ci GATE(CLK_SCLK_UART_ISP, "sclk_uart_isp", "div_uart_isp", 5348c2ecf20Sopenharmony_ci GATE_SCLK_ISP_TOP, 3, CLK_SET_RATE_PARENT, 0), 5358c2ecf20Sopenharmony_ci GATE(CLK_SCLK_SPI1_ISP, "sclk_spi1_isp", "div_spi1_isp", 5368c2ecf20Sopenharmony_ci GATE_SCLK_ISP_TOP, 2, CLK_SET_RATE_PARENT, 0), 5378c2ecf20Sopenharmony_ci GATE(CLK_SCLK_SPI0_ISP, "sclk_spi0_isp", "div_spi0_isp", 5388c2ecf20Sopenharmony_ci GATE_SCLK_ISP_TOP, 1, CLK_SET_RATE_PARENT, 0), 5398c2ecf20Sopenharmony_ci 5408c2ecf20Sopenharmony_ci /* GATE_SCLK_FSYS */ 5418c2ecf20Sopenharmony_ci GATE(CLK_SCLK_UPLL, "sclk_upll", "mout_upll", GATE_SCLK_FSYS, 10, 0, 0), 5428c2ecf20Sopenharmony_ci GATE(CLK_SCLK_TSADC, "sclk_tsadc", "div_tsadc_pre", 5438c2ecf20Sopenharmony_ci GATE_SCLK_FSYS, 9, CLK_SET_RATE_PARENT, 0), 5448c2ecf20Sopenharmony_ci GATE(CLK_SCLK_EBI, "sclk_ebi", "div_ebi", 5458c2ecf20Sopenharmony_ci GATE_SCLK_FSYS, 6, CLK_SET_RATE_PARENT, 0), 5468c2ecf20Sopenharmony_ci GATE(CLK_SCLK_MMC2, "sclk_mmc2", "div_mmc2_pre", 5478c2ecf20Sopenharmony_ci GATE_SCLK_FSYS, 2, CLK_SET_RATE_PARENT, 0), 5488c2ecf20Sopenharmony_ci GATE(CLK_SCLK_MMC1, "sclk_mmc1", "div_mmc1_pre", 5498c2ecf20Sopenharmony_ci GATE_SCLK_FSYS, 1, CLK_SET_RATE_PARENT, 0), 5508c2ecf20Sopenharmony_ci GATE(CLK_SCLK_MMC0, "sclk_mmc0", "div_mmc0_pre", 5518c2ecf20Sopenharmony_ci GATE_SCLK_FSYS, 0, CLK_SET_RATE_PARENT, 0), 5528c2ecf20Sopenharmony_ci 5538c2ecf20Sopenharmony_ci /* GATE_SCLK_PERIL */ 5548c2ecf20Sopenharmony_ci GATE(CLK_SCLK_I2S, "sclk_i2s", "div_i2s", 5558c2ecf20Sopenharmony_ci GATE_SCLK_PERIL, 18, CLK_SET_RATE_PARENT, 0), 5568c2ecf20Sopenharmony_ci GATE(CLK_SCLK_PCM, "sclk_pcm", "div_pcm", 5578c2ecf20Sopenharmony_ci GATE_SCLK_PERIL, 16, CLK_SET_RATE_PARENT, 0), 5588c2ecf20Sopenharmony_ci GATE(CLK_SCLK_SPI1, "sclk_spi1", "div_spi1_pre", 5598c2ecf20Sopenharmony_ci GATE_SCLK_PERIL, 7, CLK_SET_RATE_PARENT, 0), 5608c2ecf20Sopenharmony_ci GATE(CLK_SCLK_SPI0, "sclk_spi0", "div_spi0_pre", 5618c2ecf20Sopenharmony_ci GATE_SCLK_PERIL, 6, CLK_SET_RATE_PARENT, 0), 5628c2ecf20Sopenharmony_ci 5638c2ecf20Sopenharmony_ci GATE(CLK_SCLK_UART2, "sclk_uart2", "div_uart2", 5648c2ecf20Sopenharmony_ci GATE_SCLK_PERIL, 2, CLK_SET_RATE_PARENT, 0), 5658c2ecf20Sopenharmony_ci GATE(CLK_SCLK_UART1, "sclk_uart1", "div_uart1", 5668c2ecf20Sopenharmony_ci GATE_SCLK_PERIL, 1, CLK_SET_RATE_PARENT, 0), 5678c2ecf20Sopenharmony_ci GATE(CLK_SCLK_UART0, "sclk_uart0", "div_uart0", 5688c2ecf20Sopenharmony_ci GATE_SCLK_PERIL, 0, CLK_SET_RATE_PARENT, 0), 5698c2ecf20Sopenharmony_ci 5708c2ecf20Sopenharmony_ci /* GATE_IP_CAM */ 5718c2ecf20Sopenharmony_ci GATE(CLK_QEJPEG, "qejpeg", "div_cam_blk_320", GATE_IP_CAM, 19, 5728c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 5738c2ecf20Sopenharmony_ci GATE(CLK_PIXELASYNCM1, "pixelasyncm1", "div_cam_blk_320", 5748c2ecf20Sopenharmony_ci GATE_IP_CAM, 18, CLK_IGNORE_UNUSED, 0), 5758c2ecf20Sopenharmony_ci GATE(CLK_PIXELASYNCM0, "pixelasyncm0", "div_cam_blk_320", 5768c2ecf20Sopenharmony_ci GATE_IP_CAM, 17, CLK_IGNORE_UNUSED, 0), 5778c2ecf20Sopenharmony_ci GATE(CLK_PPMUCAMIF, "ppmucamif", "div_cam_blk_320", 5788c2ecf20Sopenharmony_ci GATE_IP_CAM, 16, CLK_IGNORE_UNUSED, 0), 5798c2ecf20Sopenharmony_ci GATE(CLK_QEM2MSCALER, "qem2mscaler", "div_cam_blk_320", 5808c2ecf20Sopenharmony_ci GATE_IP_CAM, 14, CLK_IGNORE_UNUSED, 0), 5818c2ecf20Sopenharmony_ci GATE(CLK_QEGSCALER1, "qegscaler1", "div_cam_blk_320", 5828c2ecf20Sopenharmony_ci GATE_IP_CAM, 13, CLK_IGNORE_UNUSED, 0), 5838c2ecf20Sopenharmony_ci GATE(CLK_QEGSCALER0, "qegscaler0", "div_cam_blk_320", 5848c2ecf20Sopenharmony_ci GATE_IP_CAM, 12, CLK_IGNORE_UNUSED, 0), 5858c2ecf20Sopenharmony_ci GATE(CLK_SMMUJPEG, "smmujpeg", "div_cam_blk_320", 5868c2ecf20Sopenharmony_ci GATE_IP_CAM, 11, 0, 0), 5878c2ecf20Sopenharmony_ci GATE(CLK_SMMUM2M2SCALER, "smmum2m2scaler", "div_cam_blk_320", 5888c2ecf20Sopenharmony_ci GATE_IP_CAM, 9, 0, 0), 5898c2ecf20Sopenharmony_ci GATE(CLK_SMMUGSCALER1, "smmugscaler1", "div_cam_blk_320", 5908c2ecf20Sopenharmony_ci GATE_IP_CAM, 8, 0, 0), 5918c2ecf20Sopenharmony_ci GATE(CLK_SMMUGSCALER0, "smmugscaler0", "div_cam_blk_320", 5928c2ecf20Sopenharmony_ci GATE_IP_CAM, 7, 0, 0), 5938c2ecf20Sopenharmony_ci GATE(CLK_JPEG, "jpeg", "div_cam_blk_320", GATE_IP_CAM, 6, 0, 0), 5948c2ecf20Sopenharmony_ci GATE(CLK_M2MSCALER, "m2mscaler", "div_cam_blk_320", 5958c2ecf20Sopenharmony_ci GATE_IP_CAM, 2, 0, 0), 5968c2ecf20Sopenharmony_ci GATE(CLK_GSCALER1, "gscaler1", "div_cam_blk_320", GATE_IP_CAM, 1, 0, 0), 5978c2ecf20Sopenharmony_ci GATE(CLK_GSCALER0, "gscaler0", "div_cam_blk_320", GATE_IP_CAM, 0, 0, 0), 5988c2ecf20Sopenharmony_ci 5998c2ecf20Sopenharmony_ci /* GATE_IP_MFC */ 6008c2ecf20Sopenharmony_ci GATE(CLK_QEMFC, "qemfc", "div_aclk_200", GATE_IP_MFC, 5, 6018c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 6028c2ecf20Sopenharmony_ci GATE(CLK_PPMUMFC_L, "ppmumfc_l", "div_aclk_200", GATE_IP_MFC, 3, 6038c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 6048c2ecf20Sopenharmony_ci GATE(CLK_SMMUMFC_L, "smmumfc_l", "div_aclk_200", GATE_IP_MFC, 1, 0, 0), 6058c2ecf20Sopenharmony_ci GATE(CLK_MFC, "mfc", "div_aclk_200", GATE_IP_MFC, 0, 0, 0), 6068c2ecf20Sopenharmony_ci 6078c2ecf20Sopenharmony_ci /* GATE_IP_G3D */ 6088c2ecf20Sopenharmony_ci GATE(CLK_SMMUG3D, "smmug3d", "div_aclk_200", GATE_IP_G3D, 3, 0, 0), 6098c2ecf20Sopenharmony_ci GATE(CLK_QEG3D, "qeg3d", "div_aclk_200", GATE_IP_G3D, 2, 6108c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 6118c2ecf20Sopenharmony_ci GATE(CLK_PPMUG3D, "ppmug3d", "div_aclk_200", GATE_IP_G3D, 1, 6128c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 6138c2ecf20Sopenharmony_ci GATE(CLK_G3D, "g3d", "div_aclk_200", GATE_IP_G3D, 0, 0, 0), 6148c2ecf20Sopenharmony_ci 6158c2ecf20Sopenharmony_ci /* GATE_IP_LCD */ 6168c2ecf20Sopenharmony_ci GATE(CLK_QE_CH1_LCD, "qe_ch1_lcd", "div_aclk_160", GATE_IP_LCD, 7, 6178c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 6188c2ecf20Sopenharmony_ci GATE(CLK_QE_CH0_LCD, "qe_ch0_lcd", "div_aclk_160", GATE_IP_LCD, 6, 6198c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 6208c2ecf20Sopenharmony_ci GATE(CLK_PPMULCD0, "ppmulcd0", "div_aclk_160", GATE_IP_LCD, 5, 6218c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 6228c2ecf20Sopenharmony_ci GATE(CLK_SMMUFIMD0, "smmufimd0", "div_aclk_160", GATE_IP_LCD, 4, 0, 0), 6238c2ecf20Sopenharmony_ci GATE(CLK_DSIM0, "dsim0", "div_aclk_160", GATE_IP_LCD, 3, 0, 0), 6248c2ecf20Sopenharmony_ci GATE(CLK_SMIES, "smies", "div_aclk_160", GATE_IP_LCD, 2, 0, 0), 6258c2ecf20Sopenharmony_ci GATE(CLK_FIMD0, "fimd0", "div_aclk_160", GATE_IP_LCD, 0, 0, 0), 6268c2ecf20Sopenharmony_ci 6278c2ecf20Sopenharmony_ci /* GATE_IP_ISP */ 6288c2ecf20Sopenharmony_ci GATE(CLK_CAM1, "cam1", "mout_aclk_266_sub", GATE_IP_ISP, 5, 0, 0), 6298c2ecf20Sopenharmony_ci GATE(CLK_UART_ISP_TOP, "uart_isp_top", "mout_aclk_266_sub", 6308c2ecf20Sopenharmony_ci GATE_IP_ISP, 3, 0, 0), 6318c2ecf20Sopenharmony_ci GATE(CLK_SPI1_ISP_TOP, "spi1_isp_top", "mout_aclk_266_sub", 6328c2ecf20Sopenharmony_ci GATE_IP_ISP, 2, 0, 0), 6338c2ecf20Sopenharmony_ci GATE(CLK_SPI0_ISP_TOP, "spi0_isp_top", "mout_aclk_266_sub", 6348c2ecf20Sopenharmony_ci GATE_IP_ISP, 1, 0, 0), 6358c2ecf20Sopenharmony_ci 6368c2ecf20Sopenharmony_ci /* GATE_IP_FSYS */ 6378c2ecf20Sopenharmony_ci GATE(CLK_TSADC, "tsadc", "div_aclk_200", GATE_IP_FSYS, 20, 0, 0), 6388c2ecf20Sopenharmony_ci GATE(CLK_PPMUFILE, "ppmufile", "div_aclk_200", GATE_IP_FSYS, 17, 6398c2ecf20Sopenharmony_ci CLK_IGNORE_UNUSED, 0), 6408c2ecf20Sopenharmony_ci GATE(CLK_USBOTG, "usbotg", "div_aclk_200", GATE_IP_FSYS, 13, 0, 0), 6418c2ecf20Sopenharmony_ci GATE(CLK_USBHOST, "usbhost", "div_aclk_200", GATE_IP_FSYS, 12, 0, 0), 6428c2ecf20Sopenharmony_ci GATE(CLK_SROMC, "sromc", "div_aclk_200", GATE_IP_FSYS, 11, 0, 0), 6438c2ecf20Sopenharmony_ci GATE(CLK_SDMMC2, "sdmmc2", "div_aclk_200", GATE_IP_FSYS, 7, 0, 0), 6448c2ecf20Sopenharmony_ci GATE(CLK_SDMMC1, "sdmmc1", "div_aclk_200", GATE_IP_FSYS, 6, 0, 0), 6458c2ecf20Sopenharmony_ci GATE(CLK_SDMMC0, "sdmmc0", "div_aclk_200", GATE_IP_FSYS, 5, 0, 0), 6468c2ecf20Sopenharmony_ci GATE(CLK_PDMA1, "pdma1", "div_aclk_200", GATE_IP_FSYS, 1, 0, 0), 6478c2ecf20Sopenharmony_ci GATE(CLK_PDMA0, "pdma0", "div_aclk_200", GATE_IP_FSYS, 0, 0, 0), 6488c2ecf20Sopenharmony_ci 6498c2ecf20Sopenharmony_ci /* GATE_IP_PERIL */ 6508c2ecf20Sopenharmony_ci GATE(CLK_PWM, "pwm", "div_aclk_100", GATE_IP_PERIL, 24, 0, 0), 6518c2ecf20Sopenharmony_ci GATE(CLK_PCM, "pcm", "div_aclk_100", GATE_IP_PERIL, 23, 0, 0), 6528c2ecf20Sopenharmony_ci GATE(CLK_I2S, "i2s", "div_aclk_100", GATE_IP_PERIL, 21, 0, 0), 6538c2ecf20Sopenharmony_ci GATE(CLK_SPI1, "spi1", "div_aclk_100", GATE_IP_PERIL, 17, 0, 0), 6548c2ecf20Sopenharmony_ci GATE(CLK_SPI0, "spi0", "div_aclk_100", GATE_IP_PERIL, 16, 0, 0), 6558c2ecf20Sopenharmony_ci GATE(CLK_I2C7, "i2c7", "div_aclk_100", GATE_IP_PERIL, 13, 0, 0), 6568c2ecf20Sopenharmony_ci GATE(CLK_I2C6, "i2c6", "div_aclk_100", GATE_IP_PERIL, 12, 0, 0), 6578c2ecf20Sopenharmony_ci GATE(CLK_I2C5, "i2c5", "div_aclk_100", GATE_IP_PERIL, 11, 0, 0), 6588c2ecf20Sopenharmony_ci GATE(CLK_I2C4, "i2c4", "div_aclk_100", GATE_IP_PERIL, 10, 0, 0), 6598c2ecf20Sopenharmony_ci GATE(CLK_I2C3, "i2c3", "div_aclk_100", GATE_IP_PERIL, 9, 0, 0), 6608c2ecf20Sopenharmony_ci GATE(CLK_I2C2, "i2c2", "div_aclk_100", GATE_IP_PERIL, 8, 0, 0), 6618c2ecf20Sopenharmony_ci GATE(CLK_I2C1, "i2c1", "div_aclk_100", GATE_IP_PERIL, 7, 0, 0), 6628c2ecf20Sopenharmony_ci GATE(CLK_I2C0, "i2c0", "div_aclk_100", GATE_IP_PERIL, 6, 0, 0), 6638c2ecf20Sopenharmony_ci GATE(CLK_UART2, "uart2", "div_aclk_100", GATE_IP_PERIL, 2, 0, 0), 6648c2ecf20Sopenharmony_ci GATE(CLK_UART1, "uart1", "div_aclk_100", GATE_IP_PERIL, 1, 0, 0), 6658c2ecf20Sopenharmony_ci GATE(CLK_UART0, "uart0", "div_aclk_100", GATE_IP_PERIL, 0, 0, 0), 6668c2ecf20Sopenharmony_ci}; 6678c2ecf20Sopenharmony_ci 6688c2ecf20Sopenharmony_ci/* APLL & MPLL & BPLL & UPLL */ 6698c2ecf20Sopenharmony_cistatic const struct samsung_pll_rate_table exynos3250_pll_rates[] __initconst = { 6708c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 1200000000, 400, 4, 1), 6718c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 1100000000, 275, 3, 1), 6728c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 1066000000, 533, 6, 1), 6738c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 1000000000, 250, 3, 1), 6748c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 960000000, 320, 4, 1), 6758c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 900000000, 300, 4, 1), 6768c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 850000000, 425, 6, 1), 6778c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 800000000, 200, 3, 1), 6788c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 700000000, 175, 3, 1), 6798c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 667000000, 667, 12, 1), 6808c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 600000000, 400, 4, 2), 6818c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 533000000, 533, 6, 2), 6828c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 520000000, 260, 3, 2), 6838c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 500000000, 250, 3, 2), 6848c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 400000000, 200, 3, 2), 6858c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 200000000, 200, 3, 3), 6868c2ecf20Sopenharmony_ci PLL_35XX_RATE(24 * MHZ, 100000000, 200, 3, 4), 6878c2ecf20Sopenharmony_ci { /* sentinel */ } 6888c2ecf20Sopenharmony_ci}; 6898c2ecf20Sopenharmony_ci 6908c2ecf20Sopenharmony_ci/* EPLL */ 6918c2ecf20Sopenharmony_cistatic const struct samsung_pll_rate_table exynos3250_epll_rates[] __initconst = { 6928c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 800000000, 200, 3, 1, 0), 6938c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 288000000, 96, 2, 2, 0), 6948c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 192000000, 128, 2, 3, 0), 6958c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 144000000, 96, 2, 3, 0), 6968c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 96000000, 128, 2, 4, 0), 6978c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 84000000, 112, 2, 4, 0), 6988c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 80000003, 106, 2, 4, 43691), 6998c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 73728000, 98, 2, 4, 19923), 7008c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 67737598, 270, 3, 5, 62285), 7018c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 65535999, 174, 2, 5, 49982), 7028c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 50000000, 200, 3, 5, 0), 7038c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 49152002, 131, 2, 5, 4719), 7048c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 48000000, 128, 2, 5, 0), 7058c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 45158401, 180, 3, 5, 41524), 7068c2ecf20Sopenharmony_ci { /* sentinel */ } 7078c2ecf20Sopenharmony_ci}; 7088c2ecf20Sopenharmony_ci 7098c2ecf20Sopenharmony_ci/* VPLL */ 7108c2ecf20Sopenharmony_cistatic const struct samsung_pll_rate_table exynos3250_vpll_rates[] __initconst = { 7118c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 600000000, 100, 2, 1, 0), 7128c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 533000000, 266, 3, 2, 32768), 7138c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 519230987, 173, 2, 2, 5046), 7148c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 500000000, 250, 3, 2, 0), 7158c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 445500000, 148, 2, 2, 32768), 7168c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 445055007, 148, 2, 2, 23047), 7178c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 400000000, 200, 3, 2, 0), 7188c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 371250000, 123, 2, 2, 49152), 7198c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 370878997, 185, 3, 2, 28803), 7208c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 340000000, 170, 3, 2, 0), 7218c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 335000015, 111, 2, 2, 43691), 7228c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 333000000, 111, 2, 2, 0), 7238c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 330000000, 110, 2, 2, 0), 7248c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 320000015, 106, 2, 2, 43691), 7258c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 300000000, 100, 2, 2, 0), 7268c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 275000000, 275, 3, 3, 0), 7278c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 222750000, 148, 2, 3, 32768), 7288c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 222528007, 148, 2, 3, 23069), 7298c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 160000000, 160, 3, 3, 0), 7308c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 148500000, 99, 2, 3, 0), 7318c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 148352005, 98, 2, 3, 59070), 7328c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 108000000, 144, 2, 4, 0), 7338c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 74250000, 99, 2, 4, 0), 7348c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 74176002, 98, 2, 4, 59070), 7358c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 54054000, 216, 3, 5, 14156), 7368c2ecf20Sopenharmony_ci PLL_36XX_RATE(24 * MHZ, 54000000, 144, 2, 5, 0), 7378c2ecf20Sopenharmony_ci { /* sentinel */ } 7388c2ecf20Sopenharmony_ci}; 7398c2ecf20Sopenharmony_ci 7408c2ecf20Sopenharmony_cistatic const struct samsung_pll_clock exynos3250_plls[] __initconst = { 7418c2ecf20Sopenharmony_ci PLL(pll_35xx, CLK_FOUT_APLL, "fout_apll", "fin_pll", 7428c2ecf20Sopenharmony_ci APLL_LOCK, APLL_CON0, exynos3250_pll_rates), 7438c2ecf20Sopenharmony_ci PLL(pll_35xx, CLK_FOUT_MPLL, "fout_mpll", "fin_pll", 7448c2ecf20Sopenharmony_ci MPLL_LOCK, MPLL_CON0, exynos3250_pll_rates), 7458c2ecf20Sopenharmony_ci PLL(pll_36xx, CLK_FOUT_VPLL, "fout_vpll", "fin_pll", 7468c2ecf20Sopenharmony_ci VPLL_LOCK, VPLL_CON0, exynos3250_vpll_rates), 7478c2ecf20Sopenharmony_ci PLL(pll_35xx, CLK_FOUT_UPLL, "fout_upll", "fin_pll", 7488c2ecf20Sopenharmony_ci UPLL_LOCK, UPLL_CON0, exynos3250_pll_rates), 7498c2ecf20Sopenharmony_ci}; 7508c2ecf20Sopenharmony_ci 7518c2ecf20Sopenharmony_cistatic void __init exynos3_core_down_clock(void __iomem *reg_base) 7528c2ecf20Sopenharmony_ci{ 7538c2ecf20Sopenharmony_ci unsigned int tmp; 7548c2ecf20Sopenharmony_ci 7558c2ecf20Sopenharmony_ci /* 7568c2ecf20Sopenharmony_ci * Enable arm clock down (in idle) and set arm divider 7578c2ecf20Sopenharmony_ci * ratios in WFI/WFE state. 7588c2ecf20Sopenharmony_ci */ 7598c2ecf20Sopenharmony_ci tmp = (PWR_CTRL1_CORE2_DOWN_RATIO(7) | PWR_CTRL1_CORE1_DOWN_RATIO(7) | 7608c2ecf20Sopenharmony_ci PWR_CTRL1_DIV2_DOWN_EN | PWR_CTRL1_DIV1_DOWN_EN | 7618c2ecf20Sopenharmony_ci PWR_CTRL1_USE_CORE1_WFE | PWR_CTRL1_USE_CORE0_WFE | 7628c2ecf20Sopenharmony_ci PWR_CTRL1_USE_CORE1_WFI | PWR_CTRL1_USE_CORE0_WFI); 7638c2ecf20Sopenharmony_ci __raw_writel(tmp, reg_base + PWR_CTRL1); 7648c2ecf20Sopenharmony_ci 7658c2ecf20Sopenharmony_ci /* 7668c2ecf20Sopenharmony_ci * Disable the clock up feature on Exynos4x12, in case it was 7678c2ecf20Sopenharmony_ci * enabled by bootloader. 7688c2ecf20Sopenharmony_ci */ 7698c2ecf20Sopenharmony_ci __raw_writel(0x0, reg_base + PWR_CTRL2); 7708c2ecf20Sopenharmony_ci} 7718c2ecf20Sopenharmony_ci 7728c2ecf20Sopenharmony_cistatic const struct samsung_cmu_info cmu_info __initconst = { 7738c2ecf20Sopenharmony_ci .pll_clks = exynos3250_plls, 7748c2ecf20Sopenharmony_ci .nr_pll_clks = ARRAY_SIZE(exynos3250_plls), 7758c2ecf20Sopenharmony_ci .mux_clks = mux_clks, 7768c2ecf20Sopenharmony_ci .nr_mux_clks = ARRAY_SIZE(mux_clks), 7778c2ecf20Sopenharmony_ci .div_clks = div_clks, 7788c2ecf20Sopenharmony_ci .nr_div_clks = ARRAY_SIZE(div_clks), 7798c2ecf20Sopenharmony_ci .gate_clks = gate_clks, 7808c2ecf20Sopenharmony_ci .nr_gate_clks = ARRAY_SIZE(gate_clks), 7818c2ecf20Sopenharmony_ci .fixed_factor_clks = fixed_factor_clks, 7828c2ecf20Sopenharmony_ci .nr_fixed_factor_clks = ARRAY_SIZE(fixed_factor_clks), 7838c2ecf20Sopenharmony_ci .nr_clk_ids = CLK_NR_CLKS, 7848c2ecf20Sopenharmony_ci .clk_regs = exynos3250_cmu_clk_regs, 7858c2ecf20Sopenharmony_ci .nr_clk_regs = ARRAY_SIZE(exynos3250_cmu_clk_regs), 7868c2ecf20Sopenharmony_ci}; 7878c2ecf20Sopenharmony_ci 7888c2ecf20Sopenharmony_ci#define E3250_CPU_DIV0(apll, pclk_dbg, atb, corem) \ 7898c2ecf20Sopenharmony_ci (((apll) << 24) | ((pclk_dbg) << 20) | ((atb) << 16) | \ 7908c2ecf20Sopenharmony_ci ((corem) << 4)) 7918c2ecf20Sopenharmony_ci#define E3250_CPU_DIV1(hpm, copy) \ 7928c2ecf20Sopenharmony_ci (((hpm) << 4) | ((copy) << 0)) 7938c2ecf20Sopenharmony_ci 7948c2ecf20Sopenharmony_cistatic const struct exynos_cpuclk_cfg_data e3250_armclk_d[] __initconst = { 7958c2ecf20Sopenharmony_ci { 1000000, E3250_CPU_DIV0(1, 7, 4, 1), E3250_CPU_DIV1(7, 7), }, 7968c2ecf20Sopenharmony_ci { 900000, E3250_CPU_DIV0(1, 7, 3, 1), E3250_CPU_DIV1(7, 7), }, 7978c2ecf20Sopenharmony_ci { 800000, E3250_CPU_DIV0(1, 7, 3, 1), E3250_CPU_DIV1(7, 7), }, 7988c2ecf20Sopenharmony_ci { 700000, E3250_CPU_DIV0(1, 7, 3, 1), E3250_CPU_DIV1(7, 7), }, 7998c2ecf20Sopenharmony_ci { 600000, E3250_CPU_DIV0(1, 7, 3, 1), E3250_CPU_DIV1(7, 7), }, 8008c2ecf20Sopenharmony_ci { 500000, E3250_CPU_DIV0(1, 7, 3, 1), E3250_CPU_DIV1(7, 7), }, 8018c2ecf20Sopenharmony_ci { 400000, E3250_CPU_DIV0(1, 7, 3, 1), E3250_CPU_DIV1(7, 7), }, 8028c2ecf20Sopenharmony_ci { 300000, E3250_CPU_DIV0(1, 5, 3, 1), E3250_CPU_DIV1(7, 7), }, 8038c2ecf20Sopenharmony_ci { 200000, E3250_CPU_DIV0(1, 3, 3, 1), E3250_CPU_DIV1(7, 7), }, 8048c2ecf20Sopenharmony_ci { 100000, E3250_CPU_DIV0(1, 1, 1, 1), E3250_CPU_DIV1(7, 7), }, 8058c2ecf20Sopenharmony_ci { 0 }, 8068c2ecf20Sopenharmony_ci}; 8078c2ecf20Sopenharmony_ci 8088c2ecf20Sopenharmony_cistatic void __init exynos3250_cmu_init(struct device_node *np) 8098c2ecf20Sopenharmony_ci{ 8108c2ecf20Sopenharmony_ci struct samsung_clk_provider *ctx; 8118c2ecf20Sopenharmony_ci struct clk_hw **hws; 8128c2ecf20Sopenharmony_ci 8138c2ecf20Sopenharmony_ci ctx = samsung_cmu_register_one(np, &cmu_info); 8148c2ecf20Sopenharmony_ci if (!ctx) 8158c2ecf20Sopenharmony_ci return; 8168c2ecf20Sopenharmony_ci 8178c2ecf20Sopenharmony_ci hws = ctx->clk_data.hws; 8188c2ecf20Sopenharmony_ci exynos_register_cpu_clock(ctx, CLK_ARM_CLK, "armclk", 8198c2ecf20Sopenharmony_ci hws[CLK_MOUT_APLL], hws[CLK_MOUT_MPLL_USER_C], 8208c2ecf20Sopenharmony_ci 0x14200, e3250_armclk_d, ARRAY_SIZE(e3250_armclk_d), 8218c2ecf20Sopenharmony_ci CLK_CPU_HAS_DIV1); 8228c2ecf20Sopenharmony_ci 8238c2ecf20Sopenharmony_ci exynos3_core_down_clock(ctx->reg_base); 8248c2ecf20Sopenharmony_ci} 8258c2ecf20Sopenharmony_ciCLK_OF_DECLARE(exynos3250_cmu, "samsung,exynos3250-cmu", exynos3250_cmu_init); 8268c2ecf20Sopenharmony_ci 8278c2ecf20Sopenharmony_ci/* 8288c2ecf20Sopenharmony_ci * CMU DMC 8298c2ecf20Sopenharmony_ci */ 8308c2ecf20Sopenharmony_ci 8318c2ecf20Sopenharmony_ci#define BPLL_LOCK 0x0118 8328c2ecf20Sopenharmony_ci#define BPLL_CON0 0x0218 8338c2ecf20Sopenharmony_ci#define BPLL_CON1 0x021c 8348c2ecf20Sopenharmony_ci#define BPLL_CON2 0x0220 8358c2ecf20Sopenharmony_ci#define SRC_DMC 0x0300 8368c2ecf20Sopenharmony_ci#define DIV_DMC1 0x0504 8378c2ecf20Sopenharmony_ci#define GATE_BUS_DMC0 0x0700 8388c2ecf20Sopenharmony_ci#define GATE_BUS_DMC1 0x0704 8398c2ecf20Sopenharmony_ci#define GATE_BUS_DMC2 0x0708 8408c2ecf20Sopenharmony_ci#define GATE_BUS_DMC3 0x070c 8418c2ecf20Sopenharmony_ci#define GATE_SCLK_DMC 0x0800 8428c2ecf20Sopenharmony_ci#define GATE_IP_DMC0 0x0900 8438c2ecf20Sopenharmony_ci#define GATE_IP_DMC1 0x0904 8448c2ecf20Sopenharmony_ci#define EPLL_LOCK 0x1110 8458c2ecf20Sopenharmony_ci#define EPLL_CON0 0x1114 8468c2ecf20Sopenharmony_ci#define EPLL_CON1 0x1118 8478c2ecf20Sopenharmony_ci#define EPLL_CON2 0x111c 8488c2ecf20Sopenharmony_ci#define SRC_EPLL 0x1120 8498c2ecf20Sopenharmony_ci 8508c2ecf20Sopenharmony_cistatic const unsigned long exynos3250_cmu_dmc_clk_regs[] __initconst = { 8518c2ecf20Sopenharmony_ci BPLL_LOCK, 8528c2ecf20Sopenharmony_ci BPLL_CON0, 8538c2ecf20Sopenharmony_ci BPLL_CON1, 8548c2ecf20Sopenharmony_ci BPLL_CON2, 8558c2ecf20Sopenharmony_ci SRC_DMC, 8568c2ecf20Sopenharmony_ci DIV_DMC1, 8578c2ecf20Sopenharmony_ci GATE_BUS_DMC0, 8588c2ecf20Sopenharmony_ci GATE_BUS_DMC1, 8598c2ecf20Sopenharmony_ci GATE_BUS_DMC2, 8608c2ecf20Sopenharmony_ci GATE_BUS_DMC3, 8618c2ecf20Sopenharmony_ci GATE_SCLK_DMC, 8628c2ecf20Sopenharmony_ci GATE_IP_DMC0, 8638c2ecf20Sopenharmony_ci GATE_IP_DMC1, 8648c2ecf20Sopenharmony_ci EPLL_LOCK, 8658c2ecf20Sopenharmony_ci EPLL_CON0, 8668c2ecf20Sopenharmony_ci EPLL_CON1, 8678c2ecf20Sopenharmony_ci EPLL_CON2, 8688c2ecf20Sopenharmony_ci SRC_EPLL, 8698c2ecf20Sopenharmony_ci}; 8708c2ecf20Sopenharmony_ci 8718c2ecf20Sopenharmony_ciPNAME(mout_epll_p) = { "fin_pll", "fout_epll", }; 8728c2ecf20Sopenharmony_ciPNAME(mout_bpll_p) = { "fin_pll", "fout_bpll", }; 8738c2ecf20Sopenharmony_ciPNAME(mout_mpll_mif_p) = { "fin_pll", "sclk_mpll_mif", }; 8748c2ecf20Sopenharmony_ciPNAME(mout_dphy_p) = { "mout_mpll_mif", "mout_bpll", }; 8758c2ecf20Sopenharmony_ci 8768c2ecf20Sopenharmony_cistatic const struct samsung_mux_clock dmc_mux_clks[] __initconst = { 8778c2ecf20Sopenharmony_ci /* 8788c2ecf20Sopenharmony_ci * NOTE: Following table is sorted by register address in ascending 8798c2ecf20Sopenharmony_ci * order and then bitfield shift in descending order, as it is done 8808c2ecf20Sopenharmony_ci * in the User's Manual. When adding new entries, please make sure 8818c2ecf20Sopenharmony_ci * that the order is preserved, to avoid merge conflicts and make 8828c2ecf20Sopenharmony_ci * further work with defined data easier. 8838c2ecf20Sopenharmony_ci */ 8848c2ecf20Sopenharmony_ci 8858c2ecf20Sopenharmony_ci /* SRC_DMC */ 8868c2ecf20Sopenharmony_ci MUX(CLK_MOUT_MPLL_MIF, "mout_mpll_mif", mout_mpll_mif_p, SRC_DMC, 12, 1), 8878c2ecf20Sopenharmony_ci MUX(CLK_MOUT_BPLL, "mout_bpll", mout_bpll_p, SRC_DMC, 10, 1), 8888c2ecf20Sopenharmony_ci MUX(CLK_MOUT_DPHY, "mout_dphy", mout_dphy_p, SRC_DMC, 8, 1), 8898c2ecf20Sopenharmony_ci MUX(CLK_MOUT_DMC_BUS, "mout_dmc_bus", mout_dphy_p, SRC_DMC, 4, 1), 8908c2ecf20Sopenharmony_ci 8918c2ecf20Sopenharmony_ci /* SRC_EPLL */ 8928c2ecf20Sopenharmony_ci MUX(CLK_MOUT_EPLL, "mout_epll", mout_epll_p, SRC_EPLL, 4, 1), 8938c2ecf20Sopenharmony_ci}; 8948c2ecf20Sopenharmony_ci 8958c2ecf20Sopenharmony_cistatic const struct samsung_div_clock dmc_div_clks[] __initconst = { 8968c2ecf20Sopenharmony_ci /* 8978c2ecf20Sopenharmony_ci * NOTE: Following table is sorted by register address in ascending 8988c2ecf20Sopenharmony_ci * order and then bitfield shift in descending order, as it is done 8998c2ecf20Sopenharmony_ci * in the User's Manual. When adding new entries, please make sure 9008c2ecf20Sopenharmony_ci * that the order is preserved, to avoid merge conflicts and make 9018c2ecf20Sopenharmony_ci * further work with defined data easier. 9028c2ecf20Sopenharmony_ci */ 9038c2ecf20Sopenharmony_ci 9048c2ecf20Sopenharmony_ci /* DIV_DMC1 */ 9058c2ecf20Sopenharmony_ci DIV(CLK_DIV_DMC, "div_dmc", "div_dmc_pre", DIV_DMC1, 27, 3), 9068c2ecf20Sopenharmony_ci DIV(CLK_DIV_DPHY, "div_dphy", "mout_dphy", DIV_DMC1, 23, 3), 9078c2ecf20Sopenharmony_ci DIV(CLK_DIV_DMC_PRE, "div_dmc_pre", "mout_dmc_bus", DIV_DMC1, 19, 2), 9088c2ecf20Sopenharmony_ci DIV(CLK_DIV_DMCP, "div_dmcp", "div_dmcd", DIV_DMC1, 15, 3), 9098c2ecf20Sopenharmony_ci DIV(CLK_DIV_DMCD, "div_dmcd", "div_dmc", DIV_DMC1, 11, 3), 9108c2ecf20Sopenharmony_ci}; 9118c2ecf20Sopenharmony_ci 9128c2ecf20Sopenharmony_cistatic const struct samsung_pll_clock exynos3250_dmc_plls[] __initconst = { 9138c2ecf20Sopenharmony_ci PLL(pll_35xx, CLK_FOUT_BPLL, "fout_bpll", "fin_pll", 9148c2ecf20Sopenharmony_ci BPLL_LOCK, BPLL_CON0, exynos3250_pll_rates), 9158c2ecf20Sopenharmony_ci PLL(pll_36xx, CLK_FOUT_EPLL, "fout_epll", "fin_pll", 9168c2ecf20Sopenharmony_ci EPLL_LOCK, EPLL_CON0, exynos3250_epll_rates), 9178c2ecf20Sopenharmony_ci}; 9188c2ecf20Sopenharmony_ci 9198c2ecf20Sopenharmony_cistatic const struct samsung_cmu_info dmc_cmu_info __initconst = { 9208c2ecf20Sopenharmony_ci .pll_clks = exynos3250_dmc_plls, 9218c2ecf20Sopenharmony_ci .nr_pll_clks = ARRAY_SIZE(exynos3250_dmc_plls), 9228c2ecf20Sopenharmony_ci .mux_clks = dmc_mux_clks, 9238c2ecf20Sopenharmony_ci .nr_mux_clks = ARRAY_SIZE(dmc_mux_clks), 9248c2ecf20Sopenharmony_ci .div_clks = dmc_div_clks, 9258c2ecf20Sopenharmony_ci .nr_div_clks = ARRAY_SIZE(dmc_div_clks), 9268c2ecf20Sopenharmony_ci .nr_clk_ids = NR_CLKS_DMC, 9278c2ecf20Sopenharmony_ci .clk_regs = exynos3250_cmu_dmc_clk_regs, 9288c2ecf20Sopenharmony_ci .nr_clk_regs = ARRAY_SIZE(exynos3250_cmu_dmc_clk_regs), 9298c2ecf20Sopenharmony_ci}; 9308c2ecf20Sopenharmony_ci 9318c2ecf20Sopenharmony_cistatic void __init exynos3250_cmu_dmc_init(struct device_node *np) 9328c2ecf20Sopenharmony_ci{ 9338c2ecf20Sopenharmony_ci samsung_cmu_register_one(np, &dmc_cmu_info); 9348c2ecf20Sopenharmony_ci} 9358c2ecf20Sopenharmony_ciCLK_OF_DECLARE(exynos3250_cmu_dmc, "samsung,exynos3250-cmu-dmc", 9368c2ecf20Sopenharmony_ci exynos3250_cmu_dmc_init); 9378c2ecf20Sopenharmony_ci 9388c2ecf20Sopenharmony_ci 9398c2ecf20Sopenharmony_ci/* 9408c2ecf20Sopenharmony_ci * CMU ISP 9418c2ecf20Sopenharmony_ci */ 9428c2ecf20Sopenharmony_ci 9438c2ecf20Sopenharmony_ci#define DIV_ISP0 0x300 9448c2ecf20Sopenharmony_ci#define DIV_ISP1 0x304 9458c2ecf20Sopenharmony_ci#define GATE_IP_ISP0 0x800 9468c2ecf20Sopenharmony_ci#define GATE_IP_ISP1 0x804 9478c2ecf20Sopenharmony_ci#define GATE_SCLK_ISP 0x900 9488c2ecf20Sopenharmony_ci 9498c2ecf20Sopenharmony_cistatic const struct samsung_div_clock isp_div_clks[] __initconst = { 9508c2ecf20Sopenharmony_ci /* 9518c2ecf20Sopenharmony_ci * NOTE: Following table is sorted by register address in ascending 9528c2ecf20Sopenharmony_ci * order and then bitfield shift in descending order, as it is done 9538c2ecf20Sopenharmony_ci * in the User's Manual. When adding new entries, please make sure 9548c2ecf20Sopenharmony_ci * that the order is preserved, to avoid merge conflicts and make 9558c2ecf20Sopenharmony_ci * further work with defined data easier. 9568c2ecf20Sopenharmony_ci */ 9578c2ecf20Sopenharmony_ci /* DIV_ISP0 */ 9588c2ecf20Sopenharmony_ci DIV(CLK_DIV_ISP1, "div_isp1", "mout_aclk_266_sub", DIV_ISP0, 4, 3), 9598c2ecf20Sopenharmony_ci DIV(CLK_DIV_ISP0, "div_isp0", "mout_aclk_266_sub", DIV_ISP0, 0, 3), 9608c2ecf20Sopenharmony_ci 9618c2ecf20Sopenharmony_ci /* DIV_ISP1 */ 9628c2ecf20Sopenharmony_ci DIV(CLK_DIV_MCUISP1, "div_mcuisp1", "mout_aclk_400_mcuisp_sub", 9638c2ecf20Sopenharmony_ci DIV_ISP1, 8, 3), 9648c2ecf20Sopenharmony_ci DIV(CLK_DIV_MCUISP0, "div_mcuisp0", "mout_aclk_400_mcuisp_sub", 9658c2ecf20Sopenharmony_ci DIV_ISP1, 4, 3), 9668c2ecf20Sopenharmony_ci DIV(CLK_DIV_MPWM, "div_mpwm", "div_isp1", DIV_ISP1, 0, 3), 9678c2ecf20Sopenharmony_ci}; 9688c2ecf20Sopenharmony_ci 9698c2ecf20Sopenharmony_cistatic const struct samsung_gate_clock isp_gate_clks[] __initconst = { 9708c2ecf20Sopenharmony_ci /* 9718c2ecf20Sopenharmony_ci * NOTE: Following table is sorted by register address in ascending 9728c2ecf20Sopenharmony_ci * order and then bitfield shift in descending order, as it is done 9738c2ecf20Sopenharmony_ci * in the User's Manual. When adding new entries, please make sure 9748c2ecf20Sopenharmony_ci * that the order is preserved, to avoid merge conflicts and make 9758c2ecf20Sopenharmony_ci * further work with defined data easier. 9768c2ecf20Sopenharmony_ci */ 9778c2ecf20Sopenharmony_ci 9788c2ecf20Sopenharmony_ci /* GATE_IP_ISP0 */ 9798c2ecf20Sopenharmony_ci GATE(CLK_UART_ISP, "uart_isp", "uart_isp_top", 9808c2ecf20Sopenharmony_ci GATE_IP_ISP0, 31, CLK_IGNORE_UNUSED, 0), 9818c2ecf20Sopenharmony_ci GATE(CLK_WDT_ISP, "wdt_isp", "mout_aclk_266_sub", 9828c2ecf20Sopenharmony_ci GATE_IP_ISP0, 30, CLK_IGNORE_UNUSED, 0), 9838c2ecf20Sopenharmony_ci GATE(CLK_PWM_ISP, "pwm_isp", "mout_aclk_266_sub", 9848c2ecf20Sopenharmony_ci GATE_IP_ISP0, 28, CLK_IGNORE_UNUSED, 0), 9858c2ecf20Sopenharmony_ci GATE(CLK_I2C1_ISP, "i2c1_isp", "mout_aclk_266_sub", 9868c2ecf20Sopenharmony_ci GATE_IP_ISP0, 26, CLK_IGNORE_UNUSED, 0), 9878c2ecf20Sopenharmony_ci GATE(CLK_I2C0_ISP, "i2c0_isp", "mout_aclk_266_sub", 9888c2ecf20Sopenharmony_ci GATE_IP_ISP0, 25, CLK_IGNORE_UNUSED, 0), 9898c2ecf20Sopenharmony_ci GATE(CLK_MPWM_ISP, "mpwm_isp", "mout_aclk_266_sub", 9908c2ecf20Sopenharmony_ci GATE_IP_ISP0, 24, CLK_IGNORE_UNUSED, 0), 9918c2ecf20Sopenharmony_ci GATE(CLK_MCUCTL_ISP, "mcuctl_isp", "mout_aclk_266_sub", 9928c2ecf20Sopenharmony_ci GATE_IP_ISP0, 23, CLK_IGNORE_UNUSED, 0), 9938c2ecf20Sopenharmony_ci GATE(CLK_PPMUISPX, "ppmuispx", "mout_aclk_266_sub", 9948c2ecf20Sopenharmony_ci GATE_IP_ISP0, 21, CLK_IGNORE_UNUSED, 0), 9958c2ecf20Sopenharmony_ci GATE(CLK_PPMUISPMX, "ppmuispmx", "mout_aclk_266_sub", 9968c2ecf20Sopenharmony_ci GATE_IP_ISP0, 20, CLK_IGNORE_UNUSED, 0), 9978c2ecf20Sopenharmony_ci GATE(CLK_QE_LITE1, "qe_lite1", "mout_aclk_266_sub", 9988c2ecf20Sopenharmony_ci GATE_IP_ISP0, 18, CLK_IGNORE_UNUSED, 0), 9998c2ecf20Sopenharmony_ci GATE(CLK_QE_LITE0, "qe_lite0", "mout_aclk_266_sub", 10008c2ecf20Sopenharmony_ci GATE_IP_ISP0, 17, CLK_IGNORE_UNUSED, 0), 10018c2ecf20Sopenharmony_ci GATE(CLK_QE_FD, "qe_fd", "mout_aclk_266_sub", 10028c2ecf20Sopenharmony_ci GATE_IP_ISP0, 16, CLK_IGNORE_UNUSED, 0), 10038c2ecf20Sopenharmony_ci GATE(CLK_QE_DRC, "qe_drc", "mout_aclk_266_sub", 10048c2ecf20Sopenharmony_ci GATE_IP_ISP0, 15, CLK_IGNORE_UNUSED, 0), 10058c2ecf20Sopenharmony_ci GATE(CLK_QE_ISP, "qe_isp", "mout_aclk_266_sub", 10068c2ecf20Sopenharmony_ci GATE_IP_ISP0, 14, CLK_IGNORE_UNUSED, 0), 10078c2ecf20Sopenharmony_ci GATE(CLK_CSIS1, "csis1", "mout_aclk_266_sub", 10088c2ecf20Sopenharmony_ci GATE_IP_ISP0, 13, CLK_IGNORE_UNUSED, 0), 10098c2ecf20Sopenharmony_ci GATE(CLK_SMMU_LITE1, "smmu_lite1", "mout_aclk_266_sub", 10108c2ecf20Sopenharmony_ci GATE_IP_ISP0, 12, CLK_IGNORE_UNUSED, 0), 10118c2ecf20Sopenharmony_ci GATE(CLK_SMMU_LITE0, "smmu_lite0", "mout_aclk_266_sub", 10128c2ecf20Sopenharmony_ci GATE_IP_ISP0, 11, CLK_IGNORE_UNUSED, 0), 10138c2ecf20Sopenharmony_ci GATE(CLK_SMMU_FD, "smmu_fd", "mout_aclk_266_sub", 10148c2ecf20Sopenharmony_ci GATE_IP_ISP0, 10, CLK_IGNORE_UNUSED, 0), 10158c2ecf20Sopenharmony_ci GATE(CLK_SMMU_DRC, "smmu_drc", "mout_aclk_266_sub", 10168c2ecf20Sopenharmony_ci GATE_IP_ISP0, 9, CLK_IGNORE_UNUSED, 0), 10178c2ecf20Sopenharmony_ci GATE(CLK_SMMU_ISP, "smmu_isp", "mout_aclk_266_sub", 10188c2ecf20Sopenharmony_ci GATE_IP_ISP0, 8, CLK_IGNORE_UNUSED, 0), 10198c2ecf20Sopenharmony_ci GATE(CLK_GICISP, "gicisp", "mout_aclk_266_sub", 10208c2ecf20Sopenharmony_ci GATE_IP_ISP0, 7, CLK_IGNORE_UNUSED, 0), 10218c2ecf20Sopenharmony_ci GATE(CLK_CSIS0, "csis0", "mout_aclk_266_sub", 10228c2ecf20Sopenharmony_ci GATE_IP_ISP0, 6, CLK_IGNORE_UNUSED, 0), 10238c2ecf20Sopenharmony_ci GATE(CLK_MCUISP, "mcuisp", "mout_aclk_266_sub", 10248c2ecf20Sopenharmony_ci GATE_IP_ISP0, 5, CLK_IGNORE_UNUSED, 0), 10258c2ecf20Sopenharmony_ci GATE(CLK_LITE1, "lite1", "mout_aclk_266_sub", 10268c2ecf20Sopenharmony_ci GATE_IP_ISP0, 4, CLK_IGNORE_UNUSED, 0), 10278c2ecf20Sopenharmony_ci GATE(CLK_LITE0, "lite0", "mout_aclk_266_sub", 10288c2ecf20Sopenharmony_ci GATE_IP_ISP0, 3, CLK_IGNORE_UNUSED, 0), 10298c2ecf20Sopenharmony_ci GATE(CLK_FD, "fd", "mout_aclk_266_sub", 10308c2ecf20Sopenharmony_ci GATE_IP_ISP0, 2, CLK_IGNORE_UNUSED, 0), 10318c2ecf20Sopenharmony_ci GATE(CLK_DRC, "drc", "mout_aclk_266_sub", 10328c2ecf20Sopenharmony_ci GATE_IP_ISP0, 1, CLK_IGNORE_UNUSED, 0), 10338c2ecf20Sopenharmony_ci GATE(CLK_ISP, "isp", "mout_aclk_266_sub", 10348c2ecf20Sopenharmony_ci GATE_IP_ISP0, 0, CLK_IGNORE_UNUSED, 0), 10358c2ecf20Sopenharmony_ci 10368c2ecf20Sopenharmony_ci /* GATE_IP_ISP1 */ 10378c2ecf20Sopenharmony_ci GATE(CLK_QE_ISPCX, "qe_ispcx", "uart_isp_top", 10388c2ecf20Sopenharmony_ci GATE_IP_ISP0, 21, CLK_IGNORE_UNUSED, 0), 10398c2ecf20Sopenharmony_ci GATE(CLK_QE_SCALERP, "qe_scalerp", "uart_isp_top", 10408c2ecf20Sopenharmony_ci GATE_IP_ISP0, 20, CLK_IGNORE_UNUSED, 0), 10418c2ecf20Sopenharmony_ci GATE(CLK_QE_SCALERC, "qe_scalerc", "uart_isp_top", 10428c2ecf20Sopenharmony_ci GATE_IP_ISP0, 19, CLK_IGNORE_UNUSED, 0), 10438c2ecf20Sopenharmony_ci GATE(CLK_SMMU_SCALERP, "smmu_scalerp", "uart_isp_top", 10448c2ecf20Sopenharmony_ci GATE_IP_ISP0, 18, CLK_IGNORE_UNUSED, 0), 10458c2ecf20Sopenharmony_ci GATE(CLK_SMMU_SCALERC, "smmu_scalerc", "uart_isp_top", 10468c2ecf20Sopenharmony_ci GATE_IP_ISP0, 17, CLK_IGNORE_UNUSED, 0), 10478c2ecf20Sopenharmony_ci GATE(CLK_SCALERP, "scalerp", "uart_isp_top", 10488c2ecf20Sopenharmony_ci GATE_IP_ISP0, 16, CLK_IGNORE_UNUSED, 0), 10498c2ecf20Sopenharmony_ci GATE(CLK_SCALERC, "scalerc", "uart_isp_top", 10508c2ecf20Sopenharmony_ci GATE_IP_ISP0, 15, CLK_IGNORE_UNUSED, 0), 10518c2ecf20Sopenharmony_ci GATE(CLK_SPI1_ISP, "spi1_isp", "uart_isp_top", 10528c2ecf20Sopenharmony_ci GATE_IP_ISP0, 13, CLK_IGNORE_UNUSED, 0), 10538c2ecf20Sopenharmony_ci GATE(CLK_SPI0_ISP, "spi0_isp", "uart_isp_top", 10548c2ecf20Sopenharmony_ci GATE_IP_ISP0, 12, CLK_IGNORE_UNUSED, 0), 10558c2ecf20Sopenharmony_ci GATE(CLK_SMMU_ISPCX, "smmu_ispcx", "uart_isp_top", 10568c2ecf20Sopenharmony_ci GATE_IP_ISP0, 4, CLK_IGNORE_UNUSED, 0), 10578c2ecf20Sopenharmony_ci GATE(CLK_ASYNCAXIM, "asyncaxim", "uart_isp_top", 10588c2ecf20Sopenharmony_ci GATE_IP_ISP0, 0, CLK_IGNORE_UNUSED, 0), 10598c2ecf20Sopenharmony_ci 10608c2ecf20Sopenharmony_ci /* GATE_SCLK_ISP */ 10618c2ecf20Sopenharmony_ci GATE(CLK_SCLK_MPWM_ISP, "sclk_mpwm_isp", "div_mpwm", 10628c2ecf20Sopenharmony_ci GATE_SCLK_ISP, 0, CLK_IGNORE_UNUSED, 0), 10638c2ecf20Sopenharmony_ci}; 10648c2ecf20Sopenharmony_ci 10658c2ecf20Sopenharmony_cistatic const struct samsung_cmu_info isp_cmu_info __initconst = { 10668c2ecf20Sopenharmony_ci .div_clks = isp_div_clks, 10678c2ecf20Sopenharmony_ci .nr_div_clks = ARRAY_SIZE(isp_div_clks), 10688c2ecf20Sopenharmony_ci .gate_clks = isp_gate_clks, 10698c2ecf20Sopenharmony_ci .nr_gate_clks = ARRAY_SIZE(isp_gate_clks), 10708c2ecf20Sopenharmony_ci .nr_clk_ids = NR_CLKS_ISP, 10718c2ecf20Sopenharmony_ci}; 10728c2ecf20Sopenharmony_ci 10738c2ecf20Sopenharmony_cistatic int __init exynos3250_cmu_isp_probe(struct platform_device *pdev) 10748c2ecf20Sopenharmony_ci{ 10758c2ecf20Sopenharmony_ci struct device_node *np = pdev->dev.of_node; 10768c2ecf20Sopenharmony_ci 10778c2ecf20Sopenharmony_ci samsung_cmu_register_one(np, &isp_cmu_info); 10788c2ecf20Sopenharmony_ci return 0; 10798c2ecf20Sopenharmony_ci} 10808c2ecf20Sopenharmony_ci 10818c2ecf20Sopenharmony_cistatic const struct of_device_id exynos3250_cmu_isp_of_match[] __initconst = { 10828c2ecf20Sopenharmony_ci { .compatible = "samsung,exynos3250-cmu-isp", }, 10838c2ecf20Sopenharmony_ci { /* sentinel */ } 10848c2ecf20Sopenharmony_ci}; 10858c2ecf20Sopenharmony_ci 10868c2ecf20Sopenharmony_cistatic struct platform_driver exynos3250_cmu_isp_driver __initdata = { 10878c2ecf20Sopenharmony_ci .driver = { 10888c2ecf20Sopenharmony_ci .name = "exynos3250-cmu-isp", 10898c2ecf20Sopenharmony_ci .suppress_bind_attrs = true, 10908c2ecf20Sopenharmony_ci .of_match_table = exynos3250_cmu_isp_of_match, 10918c2ecf20Sopenharmony_ci }, 10928c2ecf20Sopenharmony_ci}; 10938c2ecf20Sopenharmony_ci 10948c2ecf20Sopenharmony_cistatic int __init exynos3250_cmu_platform_init(void) 10958c2ecf20Sopenharmony_ci{ 10968c2ecf20Sopenharmony_ci return platform_driver_probe(&exynos3250_cmu_isp_driver, 10978c2ecf20Sopenharmony_ci exynos3250_cmu_isp_probe); 10988c2ecf20Sopenharmony_ci} 10998c2ecf20Sopenharmony_cisubsys_initcall(exynos3250_cmu_platform_init); 11008c2ecf20Sopenharmony_ci 1101