linux/drivers/clk/samsung/clk-exynos5420.c
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
   3 * Copyright (c) 2013 Samsung Electronics Co., Ltd.
   4 * Authors: Thomas Abraham <thomas.ab@samsung.com>
   5 *          Chander Kashyap <k.chander@samsung.com>
   6 *
   7 * Common Clock Framework support for Exynos5420 SoC.
   8*/
   9
  10#include <dt-bindings/clock/exynos5420.h>
  11#include <linux/slab.h>
  12#include <linux/clk-provider.h>
  13#include <linux/of.h>
  14#include <linux/of_address.h>
  15
  16#include "clk.h"
  17#include "clk-cpu.h"
  18#include "clk-exynos5-subcmu.h"
  19
  20#define APLL_LOCK               0x0
  21#define APLL_CON0               0x100
  22#define SRC_CPU                 0x200
  23#define DIV_CPU0                0x500
  24#define DIV_CPU1                0x504
  25#define GATE_BUS_CPU            0x700
  26#define GATE_SCLK_CPU           0x800
  27#define CLKOUT_CMU_CPU          0xa00
  28#define SRC_MASK_CPERI          0x4300
  29#define GATE_IP_G2D             0x8800
  30#define CPLL_LOCK               0x10020
  31#define DPLL_LOCK               0x10030
  32#define EPLL_LOCK               0x10040
  33#define RPLL_LOCK               0x10050
  34#define IPLL_LOCK               0x10060
  35#define SPLL_LOCK               0x10070
  36#define VPLL_LOCK               0x10080
  37#define MPLL_LOCK               0x10090
  38#define CPLL_CON0               0x10120
  39#define DPLL_CON0               0x10128
  40#define EPLL_CON0               0x10130
  41#define EPLL_CON1               0x10134
  42#define EPLL_CON2               0x10138
  43#define RPLL_CON0               0x10140
  44#define RPLL_CON1               0x10144
  45#define RPLL_CON2               0x10148
  46#define IPLL_CON0               0x10150
  47#define SPLL_CON0               0x10160
  48#define VPLL_CON0               0x10170
  49#define MPLL_CON0               0x10180
  50#define SRC_TOP0                0x10200
  51#define SRC_TOP1                0x10204
  52#define SRC_TOP2                0x10208
  53#define SRC_TOP3                0x1020c
  54#define SRC_TOP4                0x10210
  55#define SRC_TOP5                0x10214
  56#define SRC_TOP6                0x10218
  57#define SRC_TOP7                0x1021c
  58#define SRC_TOP8                0x10220 /* 5800 specific */
  59#define SRC_TOP9                0x10224 /* 5800 specific */
  60#define SRC_DISP10              0x1022c
  61#define SRC_MAU                 0x10240
  62#define SRC_FSYS                0x10244
  63#define SRC_PERIC0              0x10250
  64#define SRC_PERIC1              0x10254
  65#define SRC_ISP                 0x10270
  66#define SRC_CAM                 0x10274 /* 5800 specific */
  67#define SRC_TOP10               0x10280
  68#define SRC_TOP11               0x10284
  69#define SRC_TOP12               0x10288
  70#define SRC_TOP13               0x1028c /* 5800 specific */
  71#define SRC_MASK_TOP0           0x10300
  72#define SRC_MASK_TOP1           0x10304
  73#define SRC_MASK_TOP2           0x10308
  74#define SRC_MASK_TOP7           0x1031c
  75#define SRC_MASK_DISP10         0x1032c
  76#define SRC_MASK_MAU            0x10334
  77#define SRC_MASK_FSYS           0x10340
  78#define SRC_MASK_PERIC0         0x10350
  79#define SRC_MASK_PERIC1         0x10354
  80#define SRC_MASK_ISP            0x10370
  81#define DIV_TOP0                0x10500
  82#define DIV_TOP1                0x10504
  83#define DIV_TOP2                0x10508
  84#define DIV_TOP8                0x10520 /* 5800 specific */
  85#define DIV_TOP9                0x10524 /* 5800 specific */
  86#define DIV_DISP10              0x1052c
  87#define DIV_MAU                 0x10544
  88#define DIV_FSYS0               0x10548
  89#define DIV_FSYS1               0x1054c
  90#define DIV_FSYS2               0x10550
  91#define DIV_PERIC0              0x10558
  92#define DIV_PERIC1              0x1055c
  93#define DIV_PERIC2              0x10560
  94#define DIV_PERIC3              0x10564
  95#define DIV_PERIC4              0x10568
  96#define DIV_CAM                 0x10574 /* 5800 specific */
  97#define SCLK_DIV_ISP0           0x10580
  98#define SCLK_DIV_ISP1           0x10584
  99#define DIV2_RATIO0             0x10590
 100#define DIV4_RATIO              0x105a0
 101#define GATE_BUS_TOP            0x10700
 102#define GATE_BUS_DISP1          0x10728
 103#define GATE_BUS_GEN            0x1073c
 104#define GATE_BUS_FSYS0          0x10740
 105#define GATE_BUS_FSYS2          0x10748
 106#define GATE_BUS_PERIC          0x10750
 107#define GATE_BUS_PERIC1         0x10754
 108#define GATE_BUS_PERIS0         0x10760
 109#define GATE_BUS_PERIS1         0x10764
 110#define GATE_BUS_NOC            0x10770
 111#define GATE_TOP_SCLK_ISP       0x10870
 112#define GATE_IP_GSCL0           0x10910
 113#define GATE_IP_GSCL1           0x10920
 114#define GATE_IP_CAM             0x10924 /* 5800 specific */
 115#define GATE_IP_MFC             0x1092c
 116#define GATE_IP_DISP1           0x10928
 117#define GATE_IP_G3D             0x10930
 118#define GATE_IP_GEN             0x10934
 119#define GATE_IP_FSYS            0x10944
 120#define GATE_IP_PERIC           0x10950
 121#define GATE_IP_PERIS           0x10960
 122#define GATE_IP_MSCL            0x10970
 123#define GATE_TOP_SCLK_GSCL      0x10820
 124#define GATE_TOP_SCLK_DISP1     0x10828
 125#define GATE_TOP_SCLK_MAU       0x1083c
 126#define GATE_TOP_SCLK_FSYS      0x10840
 127#define GATE_TOP_SCLK_PERIC     0x10850
 128#define TOP_SPARE2              0x10b08
 129#define BPLL_LOCK               0x20010
 130#define BPLL_CON0               0x20110
 131#define SRC_CDREX               0x20200
 132#define DIV_CDREX0              0x20500
 133#define DIV_CDREX1              0x20504
 134#define GATE_BUS_CDREX0         0x20700
 135#define GATE_BUS_CDREX1         0x20704
 136#define KPLL_LOCK               0x28000
 137#define KPLL_CON0               0x28100
 138#define SRC_KFC                 0x28200
 139#define DIV_KFC0                0x28500
 140
 141/* Exynos5x SoC type */
 142enum exynos5x_soc {
 143        EXYNOS5420,
 144        EXYNOS5800,
 145};
 146
 147/* list of PLLs */
 148enum exynos5x_plls {
 149        apll, cpll, dpll, epll, rpll, ipll, spll, vpll, mpll,
 150        bpll, kpll,
 151        nr_plls                 /* number of PLLs */
 152};
 153
 154static void __iomem *reg_base;
 155static enum exynos5x_soc exynos5x_soc;
 156
 157/*
 158 * list of controller registers to be saved and restored during a
 159 * suspend/resume cycle.
 160 */
 161static const unsigned long exynos5x_clk_regs[] __initconst = {
 162        SRC_CPU,
 163        DIV_CPU0,
 164        DIV_CPU1,
 165        GATE_BUS_CPU,
 166        GATE_SCLK_CPU,
 167        CLKOUT_CMU_CPU,
 168        CPLL_CON0,
 169        DPLL_CON0,
 170        EPLL_CON0,
 171        EPLL_CON1,
 172        EPLL_CON2,
 173        RPLL_CON0,
 174        RPLL_CON1,
 175        RPLL_CON2,
 176        IPLL_CON0,
 177        SPLL_CON0,
 178        VPLL_CON0,
 179        MPLL_CON0,
 180        SRC_TOP0,
 181        SRC_TOP1,
 182        SRC_TOP2,
 183        SRC_TOP3,
 184        SRC_TOP4,
 185        SRC_TOP5,
 186        SRC_TOP6,
 187        SRC_TOP7,
 188        SRC_DISP10,
 189        SRC_MAU,
 190        SRC_FSYS,
 191        SRC_PERIC0,
 192        SRC_PERIC1,
 193        SRC_TOP10,
 194        SRC_TOP11,
 195        SRC_TOP12,
 196        SRC_MASK_TOP2,
 197        SRC_MASK_TOP7,
 198        SRC_MASK_DISP10,
 199        SRC_MASK_FSYS,
 200        SRC_MASK_PERIC0,
 201        SRC_MASK_PERIC1,
 202        SRC_MASK_TOP0,
 203        SRC_MASK_TOP1,
 204        SRC_MASK_MAU,
 205        SRC_MASK_ISP,
 206        SRC_ISP,
 207        DIV_TOP0,
 208        DIV_TOP1,
 209        DIV_TOP2,
 210        DIV_DISP10,
 211        DIV_MAU,
 212        DIV_FSYS0,
 213        DIV_FSYS1,
 214        DIV_FSYS2,
 215        DIV_PERIC0,
 216        DIV_PERIC1,
 217        DIV_PERIC2,
 218        DIV_PERIC3,
 219        DIV_PERIC4,
 220        SCLK_DIV_ISP0,
 221        SCLK_DIV_ISP1,
 222        DIV2_RATIO0,
 223        DIV4_RATIO,
 224        GATE_BUS_DISP1,
 225        GATE_BUS_TOP,
 226        GATE_BUS_GEN,
 227        GATE_BUS_FSYS0,
 228        GATE_BUS_FSYS2,
 229        GATE_BUS_PERIC,
 230        GATE_BUS_PERIC1,
 231        GATE_BUS_PERIS0,
 232        GATE_BUS_PERIS1,
 233        GATE_BUS_NOC,
 234        GATE_TOP_SCLK_ISP,
 235        GATE_IP_GSCL0,
 236        GATE_IP_GSCL1,
 237        GATE_IP_MFC,
 238        GATE_IP_DISP1,
 239        GATE_IP_G3D,
 240        GATE_IP_GEN,
 241        GATE_IP_FSYS,
 242        GATE_IP_PERIC,
 243        GATE_IP_PERIS,
 244        GATE_IP_MSCL,
 245        GATE_TOP_SCLK_GSCL,
 246        GATE_TOP_SCLK_DISP1,
 247        GATE_TOP_SCLK_MAU,
 248        GATE_TOP_SCLK_FSYS,
 249        GATE_TOP_SCLK_PERIC,
 250        TOP_SPARE2,
 251        SRC_CDREX,
 252        DIV_CDREX0,
 253        DIV_CDREX1,
 254        SRC_KFC,
 255        DIV_KFC0,
 256        GATE_BUS_CDREX0,
 257        GATE_BUS_CDREX1,
 258};
 259
 260static const unsigned long exynos5800_clk_regs[] __initconst = {
 261        SRC_TOP8,
 262        SRC_TOP9,
 263        SRC_CAM,
 264        SRC_TOP1,
 265        DIV_TOP8,
 266        DIV_TOP9,
 267        DIV_CAM,
 268        GATE_IP_CAM,
 269};
 270
 271static const struct samsung_clk_reg_dump exynos5420_set_clksrc[] = {
 272        { .offset = SRC_MASK_CPERI,             .value = 0xffffffff, },
 273        { .offset = SRC_MASK_TOP0,              .value = 0x11111111, },
 274        { .offset = SRC_MASK_TOP1,              .value = 0x11101111, },
 275        { .offset = SRC_MASK_TOP2,              .value = 0x11111110, },
 276        { .offset = SRC_MASK_TOP7,              .value = 0x00111100, },
 277        { .offset = SRC_MASK_DISP10,            .value = 0x11111110, },
 278        { .offset = SRC_MASK_MAU,               .value = 0x10000000, },
 279        { .offset = SRC_MASK_FSYS,              .value = 0x11111110, },
 280        { .offset = SRC_MASK_PERIC0,            .value = 0x11111110, },
 281        { .offset = SRC_MASK_PERIC1,            .value = 0x11111100, },
 282        { .offset = SRC_MASK_ISP,               .value = 0x11111000, },
 283        { .offset = GATE_BUS_TOP,               .value = 0xffffffff, },
 284        { .offset = GATE_BUS_DISP1,             .value = 0xffffffff, },
 285        { .offset = GATE_IP_PERIC,              .value = 0xffffffff, },
 286        { .offset = GATE_IP_PERIS,              .value = 0xffffffff, },
 287};
 288
 289/* list of all parent clocks */
 290PNAME(mout_mspll_cpu_p) = {"mout_sclk_cpll", "mout_sclk_dpll",
 291                                "mout_sclk_mpll", "mout_sclk_spll"};
 292PNAME(mout_cpu_p) = {"mout_apll" , "mout_mspll_cpu"};
 293PNAME(mout_kfc_p) = {"mout_kpll" , "mout_mspll_kfc"};
 294PNAME(mout_apll_p) = {"fin_pll", "fout_apll"};
 295PNAME(mout_bpll_p) = {"fin_pll", "fout_bpll"};
 296PNAME(mout_cpll_p) = {"fin_pll", "fout_cpll"};
 297PNAME(mout_dpll_p) = {"fin_pll", "fout_dpll"};
 298PNAME(mout_epll_p) = {"fin_pll", "fout_epll"};
 299PNAME(mout_ipll_p) = {"fin_pll", "fout_ipll"};
 300PNAME(mout_kpll_p) = {"fin_pll", "fout_kpll"};
 301PNAME(mout_mpll_p) = {"fin_pll", "fout_mpll"};
 302PNAME(mout_rpll_p) = {"fin_pll", "fout_rpll"};
 303PNAME(mout_spll_p) = {"fin_pll", "fout_spll"};
 304PNAME(mout_vpll_p) = {"fin_pll", "fout_vpll"};
 305
 306PNAME(mout_group1_p) = {"mout_sclk_cpll", "mout_sclk_dpll",
 307                                        "mout_sclk_mpll"};
 308PNAME(mout_group2_p) = {"fin_pll", "mout_sclk_cpll",
 309                        "mout_sclk_dpll", "mout_sclk_mpll", "mout_sclk_spll",
 310                        "mout_sclk_ipll", "mout_sclk_epll", "mout_sclk_rpll"};
 311PNAME(mout_group3_p) = {"mout_sclk_rpll", "mout_sclk_spll"};
 312PNAME(mout_group4_p) = {"mout_sclk_ipll", "mout_sclk_dpll", "mout_sclk_mpll"};
 313PNAME(mout_group5_p) = {"mout_sclk_vpll", "mout_sclk_dpll"};
 314
 315PNAME(mout_fimd1_final_p) = {"mout_fimd1", "mout_fimd1_opt"};
 316PNAME(mout_sw_aclk66_p) = {"dout_aclk66", "mout_sclk_spll"};
 317PNAME(mout_user_aclk66_peric_p) = { "fin_pll", "mout_sw_aclk66"};
 318PNAME(mout_user_pclk66_gpio_p) = {"mout_sw_aclk66", "ff_sw_aclk66"};
 319
 320PNAME(mout_sw_aclk200_fsys_p) = {"dout_aclk200_fsys", "mout_sclk_spll"};
 321PNAME(mout_sw_pclk200_fsys_p) = {"dout_pclk200_fsys", "mout_sclk_spll"};
 322PNAME(mout_user_pclk200_fsys_p) = {"fin_pll", "mout_sw_pclk200_fsys"};
 323PNAME(mout_user_aclk200_fsys_p) = {"fin_pll", "mout_sw_aclk200_fsys"};
 324
 325PNAME(mout_sw_aclk200_fsys2_p) = {"dout_aclk200_fsys2", "mout_sclk_spll"};
 326PNAME(mout_user_aclk200_fsys2_p) = {"fin_pll", "mout_sw_aclk200_fsys2"};
 327PNAME(mout_sw_aclk100_noc_p) = {"dout_aclk100_noc", "mout_sclk_spll"};
 328PNAME(mout_user_aclk100_noc_p) = {"fin_pll", "mout_sw_aclk100_noc"};
 329
 330PNAME(mout_sw_aclk400_wcore_p) = {"dout_aclk400_wcore", "mout_sclk_spll"};
 331PNAME(mout_aclk400_wcore_bpll_p) = {"mout_aclk400_wcore", "sclk_bpll"};
 332PNAME(mout_user_aclk400_wcore_p) = {"fin_pll", "mout_sw_aclk400_wcore"};
 333
 334PNAME(mout_sw_aclk400_isp_p) = {"dout_aclk400_isp", "mout_sclk_spll"};
 335PNAME(mout_user_aclk400_isp_p) = {"fin_pll", "mout_sw_aclk400_isp"};
 336
 337PNAME(mout_sw_aclk333_432_isp0_p) = {"dout_aclk333_432_isp0",
 338                                        "mout_sclk_spll"};
 339PNAME(mout_user_aclk333_432_isp0_p) = {"fin_pll", "mout_sw_aclk333_432_isp0"};
 340
 341PNAME(mout_sw_aclk333_432_isp_p) = {"dout_aclk333_432_isp", "mout_sclk_spll"};
 342PNAME(mout_user_aclk333_432_isp_p) = {"fin_pll", "mout_sw_aclk333_432_isp"};
 343
 344PNAME(mout_sw_aclk200_p) = {"dout_aclk200", "mout_sclk_spll"};
 345PNAME(mout_user_aclk200_disp1_p) = {"fin_pll", "mout_sw_aclk200"};
 346
 347PNAME(mout_sw_aclk400_mscl_p) = {"dout_aclk400_mscl", "mout_sclk_spll"};
 348PNAME(mout_user_aclk400_mscl_p) = {"fin_pll", "mout_sw_aclk400_mscl"};
 349
 350PNAME(mout_sw_aclk333_p) = {"dout_aclk333", "mout_sclk_spll"};
 351PNAME(mout_user_aclk333_p) = {"fin_pll", "mout_sw_aclk333"};
 352
 353PNAME(mout_sw_aclk166_p) = {"dout_aclk166", "mout_sclk_spll"};
 354PNAME(mout_user_aclk166_p) = {"fin_pll", "mout_sw_aclk166"};
 355
 356PNAME(mout_sw_aclk266_p) = {"dout_aclk266", "mout_sclk_spll"};
 357PNAME(mout_user_aclk266_p) = {"fin_pll", "mout_sw_aclk266"};
 358PNAME(mout_user_aclk266_isp_p) = {"fin_pll", "mout_sw_aclk266"};
 359
 360PNAME(mout_sw_aclk333_432_gscl_p) = {"dout_aclk333_432_gscl", "mout_sclk_spll"};
 361PNAME(mout_user_aclk333_432_gscl_p) = {"fin_pll", "mout_sw_aclk333_432_gscl"};
 362
 363PNAME(mout_sw_aclk300_gscl_p) = {"dout_aclk300_gscl", "mout_sclk_spll"};
 364PNAME(mout_user_aclk300_gscl_p) = {"fin_pll", "mout_sw_aclk300_gscl"};
 365
 366PNAME(mout_sw_aclk300_disp1_p) = {"dout_aclk300_disp1", "mout_sclk_spll"};
 367PNAME(mout_sw_aclk400_disp1_p) = {"dout_aclk400_disp1", "mout_sclk_spll"};
 368PNAME(mout_user_aclk300_disp1_p) = {"fin_pll", "mout_sw_aclk300_disp1"};
 369PNAME(mout_user_aclk400_disp1_p) = {"fin_pll", "mout_sw_aclk400_disp1"};
 370
 371PNAME(mout_sw_aclk300_jpeg_p) = {"dout_aclk300_jpeg", "mout_sclk_spll"};
 372PNAME(mout_user_aclk300_jpeg_p) = {"fin_pll", "mout_sw_aclk300_jpeg"};
 373
 374PNAME(mout_sw_aclk_g3d_p) = {"dout_aclk_g3d", "mout_sclk_spll"};
 375PNAME(mout_user_aclk_g3d_p) = {"fin_pll", "mout_sw_aclk_g3d"};
 376
 377PNAME(mout_sw_aclk266_g2d_p) = {"dout_aclk266_g2d", "mout_sclk_spll"};
 378PNAME(mout_user_aclk266_g2d_p) = {"fin_pll", "mout_sw_aclk266_g2d"};
 379
 380PNAME(mout_sw_aclk333_g2d_p) = {"dout_aclk333_g2d", "mout_sclk_spll"};
 381PNAME(mout_user_aclk333_g2d_p) = {"fin_pll", "mout_sw_aclk333_g2d"};
 382
 383PNAME(mout_audio0_p) = {"fin_pll", "cdclk0", "mout_sclk_dpll",
 384                        "mout_sclk_mpll", "mout_sclk_spll", "mout_sclk_ipll",
 385                        "mout_sclk_epll", "mout_sclk_rpll"};
 386PNAME(mout_audio1_p) = {"fin_pll", "cdclk1", "mout_sclk_dpll",
 387                        "mout_sclk_mpll", "mout_sclk_spll", "mout_sclk_ipll",
 388                        "mout_sclk_epll", "mout_sclk_rpll"};
 389PNAME(mout_audio2_p) = {"fin_pll", "cdclk2", "mout_sclk_dpll",
 390                        "mout_sclk_mpll", "mout_sclk_spll", "mout_sclk_ipll",
 391                        "mout_sclk_epll", "mout_sclk_rpll"};
 392PNAME(mout_spdif_p) = {"fin_pll", "dout_audio0", "dout_audio1",
 393                        "dout_audio2", "spdif_extclk", "mout_sclk_ipll",
 394                        "mout_sclk_epll", "mout_sclk_rpll"};
 395PNAME(mout_hdmi_p) = {"dout_hdmi_pixel", "sclk_hdmiphy"};
 396PNAME(mout_maudio0_p) = {"fin_pll", "maudio_clk", "mout_sclk_dpll",
 397                         "mout_sclk_mpll", "mout_sclk_spll", "mout_sclk_ipll",
 398                         "mout_sclk_epll", "mout_sclk_rpll"};
 399PNAME(mout_mau_epll_clk_p) = {"mout_sclk_epll", "mout_sclk_dpll",
 400                                "mout_sclk_mpll", "mout_sclk_spll"};
 401PNAME(mout_mclk_cdrex_p) = {"mout_bpll", "mout_mx_mspll_ccore"};
 402
 403/* List of parents specific to exynos5800 */
 404PNAME(mout_epll2_5800_p)        = { "mout_sclk_epll", "ff_dout_epll2" };
 405PNAME(mout_group1_5800_p)       = { "mout_sclk_cpll", "mout_sclk_dpll",
 406                                "mout_sclk_mpll", "ff_dout_spll2" };
 407PNAME(mout_group2_5800_p)       = { "mout_sclk_cpll", "mout_sclk_dpll",
 408                                        "mout_sclk_mpll", "ff_dout_spll2",
 409                                        "mout_epll2", "mout_sclk_ipll" };
 410PNAME(mout_group3_5800_p)       = { "mout_sclk_cpll", "mout_sclk_dpll",
 411                                        "mout_sclk_mpll", "ff_dout_spll2",
 412                                        "mout_epll2" };
 413PNAME(mout_group5_5800_p)       = { "mout_sclk_cpll", "mout_sclk_dpll",
 414                                        "mout_sclk_mpll", "mout_sclk_spll" };
 415PNAME(mout_group6_5800_p)       = { "mout_sclk_ipll", "mout_sclk_dpll",
 416                                "mout_sclk_mpll", "ff_dout_spll2" };
 417PNAME(mout_group7_5800_p)       = { "mout_sclk_cpll", "mout_sclk_dpll",
 418                                        "mout_sclk_mpll", "mout_sclk_spll",
 419                                        "mout_epll2", "mout_sclk_ipll" };
 420PNAME(mout_mx_mspll_ccore_p)    = {"sclk_bpll", "mout_sclk_dpll",
 421                                        "mout_sclk_mpll", "ff_dout_spll2",
 422                                        "mout_sclk_spll", "mout_sclk_epll"};
 423PNAME(mout_mau_epll_clk_5800_p) = { "mout_sclk_epll", "mout_sclk_dpll",
 424                                        "mout_sclk_mpll",
 425                                        "ff_dout_spll2" };
 426PNAME(mout_group8_5800_p)       = { "dout_aclk432_scaler", "dout_sclk_sw" };
 427PNAME(mout_group9_5800_p)       = { "dout_osc_div", "mout_sw_aclk432_scaler" };
 428PNAME(mout_group10_5800_p)      = { "dout_aclk432_cam", "dout_sclk_sw" };
 429PNAME(mout_group11_5800_p)      = { "dout_osc_div", "mout_sw_aclk432_cam" };
 430PNAME(mout_group12_5800_p)      = { "dout_aclkfl1_550_cam", "dout_sclk_sw" };
 431PNAME(mout_group13_5800_p)      = { "dout_osc_div", "mout_sw_aclkfl1_550_cam" };
 432PNAME(mout_group14_5800_p)      = { "dout_aclk550_cam", "dout_sclk_sw" };
 433PNAME(mout_group15_5800_p)      = { "dout_osc_div", "mout_sw_aclk550_cam" };
 434PNAME(mout_group16_5800_p)      = { "dout_osc_div", "mout_mau_epll_clk" };
 435PNAME(mout_mx_mspll_ccore_phy_p) = { "sclk_bpll", "mout_sclk_dpll",
 436                                        "mout_sclk_mpll", "ff_dout_spll2",
 437                                        "mout_sclk_spll", "mout_sclk_epll"};
 438
 439/* fixed rate clocks generated outside the soc */
 440static struct samsung_fixed_rate_clock
 441                exynos5x_fixed_rate_ext_clks[] __initdata = {
 442        FRATE(CLK_FIN_PLL, "fin_pll", NULL, 0, 0),
 443};
 444
 445/* fixed rate clocks generated inside the soc */
 446static const struct samsung_fixed_rate_clock exynos5x_fixed_rate_clks[] __initconst = {
 447        FRATE(CLK_SCLK_HDMIPHY, "sclk_hdmiphy", NULL, 0, 24000000),
 448        FRATE(0, "sclk_pwi", NULL, 0, 24000000),
 449        FRATE(0, "sclk_usbh20", NULL, 0, 48000000),
 450        FRATE(0, "mphy_refclk_ixtal24", NULL, 0, 48000000),
 451        FRATE(0, "sclk_usbh20_scan_clk", NULL, 0, 480000000),
 452};
 453
 454static const struct samsung_fixed_factor_clock
 455                exynos5x_fixed_factor_clks[] __initconst = {
 456        FFACTOR(0, "ff_hsic_12m", "fin_pll", 1, 2, 0),
 457        FFACTOR(0, "ff_sw_aclk66", "mout_sw_aclk66", 1, 2, 0),
 458};
 459
 460static const struct samsung_fixed_factor_clock
 461                exynos5800_fixed_factor_clks[] __initconst = {
 462        FFACTOR(0, "ff_dout_epll2", "mout_sclk_epll", 1, 2, 0),
 463        FFACTOR(CLK_FF_DOUT_SPLL2, "ff_dout_spll2", "mout_sclk_spll", 1, 2, 0),
 464};
 465
 466static const struct samsung_mux_clock exynos5800_mux_clks[] __initconst = {
 467        MUX(0, "mout_aclk400_isp", mout_group3_5800_p, SRC_TOP0, 0, 3),
 468        MUX(0, "mout_aclk400_mscl", mout_group3_5800_p, SRC_TOP0, 4, 3),
 469        MUX(0, "mout_aclk400_wcore", mout_group2_5800_p, SRC_TOP0, 16, 3),
 470        MUX(0, "mout_aclk100_noc", mout_group1_5800_p, SRC_TOP0, 20, 2),
 471
 472        MUX(0, "mout_aclk333_432_gscl", mout_group6_5800_p, SRC_TOP1, 0, 2),
 473        MUX(0, "mout_aclk333_432_isp", mout_group6_5800_p, SRC_TOP1, 4, 2),
 474        MUX(0, "mout_aclk333_432_isp0", mout_group6_5800_p, SRC_TOP1, 12, 2),
 475        MUX(0, "mout_aclk266", mout_group5_5800_p, SRC_TOP1, 20, 2),
 476        MUX(0, "mout_aclk333", mout_group1_5800_p, SRC_TOP1, 28, 2),
 477
 478        MUX(0, "mout_aclk400_disp1", mout_group7_5800_p, SRC_TOP2, 4, 3),
 479        MUX(0, "mout_aclk333_g2d", mout_group5_5800_p, SRC_TOP2, 8, 2),
 480        MUX(0, "mout_aclk266_g2d", mout_group5_5800_p, SRC_TOP2, 12, 2),
 481        MUX(0, "mout_aclk300_jpeg", mout_group5_5800_p, SRC_TOP2, 20, 2),
 482        MUX(0, "mout_aclk300_disp1", mout_group5_5800_p, SRC_TOP2, 24, 2),
 483        MUX(0, "mout_aclk300_gscl", mout_group5_5800_p, SRC_TOP2, 28, 2),
 484
 485        MUX(CLK_MOUT_MX_MSPLL_CCORE_PHY, "mout_mx_mspll_ccore_phy",
 486                mout_mx_mspll_ccore_phy_p, SRC_TOP7, 0, 3),
 487
 488        MUX(CLK_MOUT_MX_MSPLL_CCORE, "mout_mx_mspll_ccore",
 489                        mout_mx_mspll_ccore_p, SRC_TOP7, 16, 3),
 490        MUX_F(CLK_MOUT_MAU_EPLL, "mout_mau_epll_clk", mout_mau_epll_clk_5800_p,
 491                        SRC_TOP7, 20, 2, CLK_SET_RATE_PARENT, 0),
 492        MUX(CLK_SCLK_BPLL, "sclk_bpll", mout_bpll_p, SRC_TOP7, 24, 1),
 493        MUX(0, "mout_epll2", mout_epll2_5800_p, SRC_TOP7, 28, 1),
 494
 495        MUX(0, "mout_aclk550_cam", mout_group3_5800_p, SRC_TOP8, 16, 3),
 496        MUX(0, "mout_aclkfl1_550_cam", mout_group3_5800_p, SRC_TOP8, 20, 3),
 497        MUX(0, "mout_aclk432_cam", mout_group6_5800_p, SRC_TOP8, 24, 2),
 498        MUX(0, "mout_aclk432_scaler", mout_group6_5800_p, SRC_TOP8, 28, 2),
 499
 500        MUX_F(CLK_MOUT_USER_MAU_EPLL, "mout_user_mau_epll", mout_group16_5800_p,
 501                        SRC_TOP9, 8, 1, CLK_SET_RATE_PARENT, 0),
 502        MUX(0, "mout_user_aclk550_cam", mout_group15_5800_p,
 503                                                        SRC_TOP9, 16, 1),
 504        MUX(0, "mout_user_aclkfl1_550_cam", mout_group13_5800_p,
 505                                                        SRC_TOP9, 20, 1),
 506        MUX(0, "mout_user_aclk432_cam", mout_group11_5800_p,
 507                                                        SRC_TOP9, 24, 1),
 508        MUX(0, "mout_user_aclk432_scaler", mout_group9_5800_p,
 509                                                        SRC_TOP9, 28, 1),
 510
 511        MUX(0, "mout_sw_aclk550_cam", mout_group14_5800_p, SRC_TOP13, 16, 1),
 512        MUX(0, "mout_sw_aclkfl1_550_cam", mout_group12_5800_p,
 513                                                        SRC_TOP13, 20, 1),
 514        MUX(0, "mout_sw_aclk432_cam", mout_group10_5800_p,
 515                                                        SRC_TOP13, 24, 1),
 516        MUX(0, "mout_sw_aclk432_scaler", mout_group8_5800_p,
 517                                                        SRC_TOP13, 28, 1),
 518
 519        MUX(0, "mout_fimd1", mout_group2_p, SRC_DISP10, 4, 3),
 520};
 521
 522static const struct samsung_div_clock exynos5800_div_clks[] __initconst = {
 523        DIV(CLK_DOUT_ACLK400_WCORE, "dout_aclk400_wcore",
 524                        "mout_aclk400_wcore", DIV_TOP0, 16, 3),
 525        DIV(0, "dout_aclk550_cam", "mout_aclk550_cam",
 526                                DIV_TOP8, 16, 3),
 527        DIV(0, "dout_aclkfl1_550_cam", "mout_aclkfl1_550_cam",
 528                                DIV_TOP8, 20, 3),
 529        DIV(0, "dout_aclk432_cam", "mout_aclk432_cam",
 530                                DIV_TOP8, 24, 3),
 531        DIV(0, "dout_aclk432_scaler", "mout_aclk432_scaler",
 532                                DIV_TOP8, 28, 3),
 533
 534        DIV(0, "dout_osc_div", "fin_pll", DIV_TOP9, 20, 3),
 535        DIV(0, "dout_sclk_sw", "sclk_spll", DIV_TOP9, 24, 6),
 536};
 537
 538static const struct samsung_gate_clock exynos5800_gate_clks[] __initconst = {
 539        GATE(CLK_ACLK550_CAM, "aclk550_cam", "mout_user_aclk550_cam",
 540                                GATE_BUS_TOP, 24, 0, 0),
 541        GATE(CLK_ACLK432_SCALER, "aclk432_scaler", "mout_user_aclk432_scaler",
 542                                GATE_BUS_TOP, 27, CLK_IS_CRITICAL, 0),
 543};
 544
 545static const struct samsung_mux_clock exynos5420_mux_clks[] __initconst = {
 546        MUX(0, "sclk_bpll", mout_bpll_p, TOP_SPARE2, 0, 1),
 547        MUX(0, "mout_aclk400_wcore_bpll", mout_aclk400_wcore_bpll_p,
 548                                TOP_SPARE2, 4, 1),
 549
 550        MUX(0, "mout_aclk400_isp", mout_group1_p, SRC_TOP0, 0, 2),
 551        MUX(0, "mout_aclk400_mscl", mout_group1_p, SRC_TOP0, 4, 2),
 552        MUX(0, "mout_aclk400_wcore", mout_group1_p, SRC_TOP0, 16, 2),
 553        MUX(0, "mout_aclk100_noc", mout_group1_p, SRC_TOP0, 20, 2),
 554
 555        MUX(0, "mout_aclk333_432_gscl", mout_group4_p, SRC_TOP1, 0, 2),
 556        MUX(0, "mout_aclk333_432_isp", mout_group4_p,
 557                                SRC_TOP1, 4, 2),
 558        MUX(0, "mout_aclk333_432_isp0", mout_group4_p, SRC_TOP1, 12, 2),
 559        MUX(0, "mout_aclk266", mout_group1_p, SRC_TOP1, 20, 2),
 560        MUX(0, "mout_aclk333", mout_group1_p, SRC_TOP1, 28, 2),
 561
 562        MUX(0, "mout_aclk400_disp1", mout_group1_p, SRC_TOP2, 4, 2),
 563        MUX(0, "mout_aclk333_g2d", mout_group1_p, SRC_TOP2, 8, 2),
 564        MUX(0, "mout_aclk266_g2d", mout_group1_p, SRC_TOP2, 12, 2),
 565        MUX(0, "mout_aclk300_jpeg", mout_group1_p, SRC_TOP2, 20, 2),
 566        MUX(0, "mout_aclk300_disp1", mout_group1_p, SRC_TOP2, 24, 2),
 567        MUX(0, "mout_aclk300_gscl", mout_group1_p, SRC_TOP2, 28, 2),
 568
 569        MUX(CLK_MOUT_MX_MSPLL_CCORE, "mout_mx_mspll_ccore",
 570                        mout_group5_5800_p, SRC_TOP7, 16, 2),
 571        MUX_F(0, "mout_mau_epll_clk", mout_mau_epll_clk_p, SRC_TOP7, 20, 2,
 572              CLK_SET_RATE_PARENT, 0),
 573
 574        MUX(0, "mout_fimd1", mout_group3_p, SRC_DISP10, 4, 1),
 575};
 576
 577static const struct samsung_div_clock exynos5420_div_clks[] __initconst = {
 578        DIV(CLK_DOUT_ACLK400_WCORE, "dout_aclk400_wcore",
 579                        "mout_aclk400_wcore_bpll", DIV_TOP0, 16, 3),
 580};
 581
 582static const struct samsung_gate_clock exynos5420_gate_clks[] __initconst = {
 583        GATE(CLK_SECKEY, "seckey", "aclk66_psgen", GATE_BUS_PERIS1, 1, 0, 0),
 584        /* Maudio Block */
 585        GATE(CLK_MAU_EPLL, "mau_epll", "mout_mau_epll_clk",
 586                        SRC_MASK_TOP7, 20, CLK_SET_RATE_PARENT, 0),
 587        GATE(CLK_SCLK_MAUDIO0, "sclk_maudio0", "dout_maudio0",
 588                GATE_TOP_SCLK_MAU, 0, CLK_SET_RATE_PARENT, 0),
 589        GATE(CLK_SCLK_MAUPCM0, "sclk_maupcm0", "dout_maupcm0",
 590                GATE_TOP_SCLK_MAU, 1, CLK_SET_RATE_PARENT, 0),
 591};
 592
 593static const struct samsung_mux_clock exynos5x_mux_clks[] __initconst = {
 594        MUX(0, "mout_user_pclk66_gpio", mout_user_pclk66_gpio_p,
 595                        SRC_TOP7, 4, 1),
 596        MUX(0, "mout_mspll_kfc", mout_mspll_cpu_p, SRC_TOP7, 8, 2),
 597        MUX(0, "mout_mspll_cpu", mout_mspll_cpu_p, SRC_TOP7, 12, 2),
 598
 599        MUX_F(0, "mout_apll", mout_apll_p, SRC_CPU, 0, 1,
 600              CLK_SET_RATE_PARENT | CLK_RECALC_NEW_RATES, 0),
 601        MUX(0, "mout_cpu", mout_cpu_p, SRC_CPU, 16, 1),
 602        MUX_F(0, "mout_kpll", mout_kpll_p, SRC_KFC, 0, 1,
 603              CLK_SET_RATE_PARENT | CLK_RECALC_NEW_RATES, 0),
 604        MUX(0, "mout_kfc", mout_kfc_p, SRC_KFC, 16, 1),
 605
 606        MUX(0, "mout_aclk200", mout_group1_p, SRC_TOP0, 8, 2),
 607        MUX(0, "mout_aclk200_fsys2", mout_group1_p, SRC_TOP0, 12, 2),
 608        MUX(0, "mout_pclk200_fsys", mout_group1_p, SRC_TOP0, 24, 2),
 609        MUX(0, "mout_aclk200_fsys", mout_group1_p, SRC_TOP0, 28, 2),
 610
 611        MUX(0, "mout_aclk66", mout_group1_p, SRC_TOP1, 8, 2),
 612        MUX(0, "mout_aclk166", mout_group1_p, SRC_TOP1, 24, 2),
 613
 614        MUX(0, "mout_aclk_g3d", mout_group5_p, SRC_TOP2, 16, 1),
 615
 616        MUX(0, "mout_user_aclk400_isp", mout_user_aclk400_isp_p,
 617                        SRC_TOP3, 0, 1),
 618        MUX(0, "mout_user_aclk400_mscl", mout_user_aclk400_mscl_p,
 619                        SRC_TOP3, 4, 1),
 620        MUX(CLK_MOUT_USER_ACLK200_DISP1, "mout_user_aclk200_disp1",
 621                        mout_user_aclk200_disp1_p, SRC_TOP3, 8, 1),
 622        MUX(0, "mout_user_aclk200_fsys2", mout_user_aclk200_fsys2_p,
 623                        SRC_TOP3, 12, 1),
 624        MUX(0, "mout_user_aclk400_wcore", mout_user_aclk400_wcore_p,
 625                        SRC_TOP3, 16, 1),
 626        MUX(0, "mout_user_aclk100_noc", mout_user_aclk100_noc_p,
 627                        SRC_TOP3, 20, 1),
 628        MUX(0, "mout_user_pclk200_fsys", mout_user_pclk200_fsys_p,
 629                        SRC_TOP3, 24, 1),
 630        MUX(0, "mout_user_aclk200_fsys", mout_user_aclk200_fsys_p,
 631                        SRC_TOP3, 28, 1),
 632
 633        MUX(0, "mout_user_aclk333_432_gscl", mout_user_aclk333_432_gscl_p,
 634                        SRC_TOP4, 0, 1),
 635        MUX(0, "mout_user_aclk333_432_isp", mout_user_aclk333_432_isp_p,
 636                        SRC_TOP4, 4, 1),
 637        MUX(0, "mout_user_aclk66_peric", mout_user_aclk66_peric_p,
 638                        SRC_TOP4, 8, 1),
 639        MUX(0, "mout_user_aclk333_432_isp0", mout_user_aclk333_432_isp0_p,
 640                        SRC_TOP4, 12, 1),
 641        MUX(0, "mout_user_aclk266_isp", mout_user_aclk266_isp_p,
 642                        SRC_TOP4, 16, 1),
 643        MUX(0, "mout_user_aclk266", mout_user_aclk266_p, SRC_TOP4, 20, 1),
 644        MUX(0, "mout_user_aclk166", mout_user_aclk166_p, SRC_TOP4, 24, 1),
 645        MUX(CLK_MOUT_USER_ACLK333, "mout_user_aclk333", mout_user_aclk333_p,
 646                        SRC_TOP4, 28, 1),
 647
 648        MUX(CLK_MOUT_USER_ACLK400_DISP1, "mout_user_aclk400_disp1",
 649                        mout_user_aclk400_disp1_p, SRC_TOP5, 0, 1),
 650        MUX(0, "mout_user_aclk66_psgen", mout_user_aclk66_peric_p,
 651                        SRC_TOP5, 4, 1),
 652        MUX(0, "mout_user_aclk333_g2d", mout_user_aclk333_g2d_p,
 653                        SRC_TOP5, 8, 1),
 654        MUX(0, "mout_user_aclk266_g2d", mout_user_aclk266_g2d_p,
 655                        SRC_TOP5, 12, 1),
 656        MUX(CLK_MOUT_G3D, "mout_user_aclk_g3d", mout_user_aclk_g3d_p,
 657                        SRC_TOP5, 16, 1),
 658        MUX(0, "mout_user_aclk300_jpeg", mout_user_aclk300_jpeg_p,
 659                        SRC_TOP5, 20, 1),
 660        MUX(CLK_MOUT_USER_ACLK300_DISP1, "mout_user_aclk300_disp1",
 661                        mout_user_aclk300_disp1_p, SRC_TOP5, 24, 1),
 662        MUX(CLK_MOUT_USER_ACLK300_GSCL, "mout_user_aclk300_gscl",
 663                        mout_user_aclk300_gscl_p, SRC_TOP5, 28, 1),
 664
 665        MUX(0, "mout_sclk_mpll", mout_mpll_p, SRC_TOP6, 0, 1),
 666        MUX(CLK_MOUT_VPLL, "mout_sclk_vpll", mout_vpll_p, SRC_TOP6, 4, 1),
 667        MUX(CLK_MOUT_SCLK_SPLL, "mout_sclk_spll", mout_spll_p, SRC_TOP6, 8, 1),
 668        MUX(0, "mout_sclk_ipll", mout_ipll_p, SRC_TOP6, 12, 1),
 669        MUX(0, "mout_sclk_rpll", mout_rpll_p, SRC_TOP6, 16, 1),
 670        MUX_F(CLK_MOUT_EPLL, "mout_sclk_epll", mout_epll_p, SRC_TOP6, 20, 1,
 671                        CLK_SET_RATE_PARENT, 0),
 672        MUX(0, "mout_sclk_dpll", mout_dpll_p, SRC_TOP6, 24, 1),
 673        MUX(0, "mout_sclk_cpll", mout_cpll_p, SRC_TOP6, 28, 1),
 674
 675        MUX(0, "mout_sw_aclk400_isp", mout_sw_aclk400_isp_p,
 676                        SRC_TOP10, 0, 1),
 677        MUX(0, "mout_sw_aclk400_mscl", mout_sw_aclk400_mscl_p,
 678                        SRC_TOP10, 4, 1),
 679        MUX(CLK_MOUT_SW_ACLK200, "mout_sw_aclk200", mout_sw_aclk200_p,
 680                        SRC_TOP10, 8, 1),
 681        MUX(0, "mout_sw_aclk200_fsys2", mout_sw_aclk200_fsys2_p,
 682                        SRC_TOP10, 12, 1),
 683        MUX(0, "mout_sw_aclk400_wcore", mout_sw_aclk400_wcore_p,
 684                        SRC_TOP10, 16, 1),
 685        MUX(0, "mout_sw_aclk100_noc", mout_sw_aclk100_noc_p,
 686                        SRC_TOP10, 20, 1),
 687        MUX(0, "mout_sw_pclk200_fsys", mout_sw_pclk200_fsys_p,
 688                        SRC_TOP10, 24, 1),
 689        MUX(0, "mout_sw_aclk200_fsys", mout_sw_aclk200_fsys_p,
 690                        SRC_TOP10, 28, 1),
 691
 692        MUX(0, "mout_sw_aclk333_432_gscl", mout_sw_aclk333_432_gscl_p,
 693                        SRC_TOP11, 0, 1),
 694        MUX(0, "mout_sw_aclk333_432_isp", mout_sw_aclk333_432_isp_p,
 695                        SRC_TOP11, 4, 1),
 696        MUX(0, "mout_sw_aclk66", mout_sw_aclk66_p, SRC_TOP11, 8, 1),
 697        MUX(0, "mout_sw_aclk333_432_isp0", mout_sw_aclk333_432_isp0_p,
 698                        SRC_TOP11, 12, 1),
 699        MUX(0, "mout_sw_aclk266", mout_sw_aclk266_p, SRC_TOP11, 20, 1),
 700        MUX(0, "mout_sw_aclk166", mout_sw_aclk166_p, SRC_TOP11, 24, 1),
 701        MUX(CLK_MOUT_SW_ACLK333, "mout_sw_aclk333", mout_sw_aclk333_p,
 702                        SRC_TOP11, 28, 1),
 703
 704        MUX(CLK_MOUT_SW_ACLK400, "mout_sw_aclk400_disp1",
 705                        mout_sw_aclk400_disp1_p, SRC_TOP12, 4, 1),
 706        MUX(0, "mout_sw_aclk333_g2d", mout_sw_aclk333_g2d_p,
 707                        SRC_TOP12, 8, 1),
 708        MUX(0, "mout_sw_aclk266_g2d", mout_sw_aclk266_g2d_p,
 709                        SRC_TOP12, 12, 1),
 710        MUX(0, "mout_sw_aclk_g3d", mout_sw_aclk_g3d_p, SRC_TOP12, 16, 1),
 711        MUX(0, "mout_sw_aclk300_jpeg", mout_sw_aclk300_jpeg_p,
 712                        SRC_TOP12, 20, 1),
 713        MUX(CLK_MOUT_SW_ACLK300, "mout_sw_aclk300_disp1",
 714                        mout_sw_aclk300_disp1_p, SRC_TOP12, 24, 1),
 715        MUX(CLK_MOUT_SW_ACLK300_GSCL, "mout_sw_aclk300_gscl",
 716                        mout_sw_aclk300_gscl_p, SRC_TOP12, 28, 1),
 717
 718        /* DISP1 Block */
 719        MUX(0, "mout_mipi1", mout_group2_p, SRC_DISP10, 16, 3),
 720        MUX(0, "mout_dp1", mout_group2_p, SRC_DISP10, 20, 3),
 721        MUX(0, "mout_pixel", mout_group2_p, SRC_DISP10, 24, 3),
 722        MUX(CLK_MOUT_HDMI, "mout_hdmi", mout_hdmi_p, SRC_DISP10, 28, 1),
 723        MUX(0, "mout_fimd1_opt", mout_group2_p, SRC_DISP10, 8, 3),
 724
 725        MUX(0, "mout_fimd1_final", mout_fimd1_final_p, TOP_SPARE2, 8, 1),
 726
 727        /* CDREX block */
 728        MUX_F(CLK_MOUT_MCLK_CDREX, "mout_mclk_cdrex", mout_mclk_cdrex_p,
 729                        SRC_CDREX, 4, 1, CLK_SET_RATE_PARENT, 0),
 730        MUX_F(CLK_MOUT_BPLL, "mout_bpll", mout_bpll_p, SRC_CDREX, 0, 1,
 731                        CLK_SET_RATE_PARENT, 0),
 732
 733        /* MAU Block */
 734        MUX(CLK_MOUT_MAUDIO0, "mout_maudio0", mout_maudio0_p, SRC_MAU, 28, 3),
 735
 736        /* FSYS Block */
 737        MUX(0, "mout_usbd301", mout_group2_p, SRC_FSYS, 4, 3),
 738        MUX(0, "mout_mmc0", mout_group2_p, SRC_FSYS, 8, 3),
 739        MUX(0, "mout_mmc1", mout_group2_p, SRC_FSYS, 12, 3),
 740        MUX(0, "mout_mmc2", mout_group2_p, SRC_FSYS, 16, 3),
 741        MUX(0, "mout_usbd300", mout_group2_p, SRC_FSYS, 20, 3),
 742        MUX(0, "mout_unipro", mout_group2_p, SRC_FSYS, 24, 3),
 743        MUX(0, "mout_mphy_refclk", mout_group2_p, SRC_FSYS, 28, 3),
 744
 745        /* PERIC Block */
 746        MUX(0, "mout_uart0", mout_group2_p, SRC_PERIC0, 4, 3),
 747        MUX(0, "mout_uart1", mout_group2_p, SRC_PERIC0, 8, 3),
 748        MUX(0, "mout_uart2", mout_group2_p, SRC_PERIC0, 12, 3),
 749        MUX(0, "mout_uart3", mout_group2_p, SRC_PERIC0, 16, 3),
 750        MUX(0, "mout_pwm", mout_group2_p, SRC_PERIC0, 24, 3),
 751        MUX(0, "mout_spdif", mout_spdif_p, SRC_PERIC0, 28, 3),
 752        MUX(0, "mout_audio0", mout_audio0_p, SRC_PERIC1, 8, 3),
 753        MUX(0, "mout_audio1", mout_audio1_p, SRC_PERIC1, 12, 3),
 754        MUX(0, "mout_audio2", mout_audio2_p, SRC_PERIC1, 16, 3),
 755        MUX(0, "mout_spi0", mout_group2_p, SRC_PERIC1, 20, 3),
 756        MUX(0, "mout_spi1", mout_group2_p, SRC_PERIC1, 24, 3),
 757        MUX(0, "mout_spi2", mout_group2_p, SRC_PERIC1, 28, 3),
 758
 759        /* ISP Block */
 760        MUX(0, "mout_pwm_isp", mout_group2_p, SRC_ISP, 24, 3),
 761        MUX(0, "mout_uart_isp", mout_group2_p, SRC_ISP, 20, 3),
 762        MUX(0, "mout_spi0_isp", mout_group2_p, SRC_ISP, 12, 3),
 763        MUX(0, "mout_spi1_isp", mout_group2_p, SRC_ISP, 16, 3),
 764        MUX(0, "mout_isp_sensor", mout_group2_p, SRC_ISP, 28, 3),
 765};
 766
 767static const struct samsung_div_clock exynos5x_div_clks[] __initconst = {
 768        DIV(0, "div_arm", "mout_cpu", DIV_CPU0, 0, 3),
 769        DIV(0, "sclk_apll", "mout_apll", DIV_CPU0, 24, 3),
 770        DIV(0, "armclk2", "div_arm", DIV_CPU0, 28, 3),
 771        DIV(0, "div_kfc", "mout_kfc", DIV_KFC0, 0, 3),
 772        DIV(0, "sclk_kpll", "mout_kpll", DIV_KFC0, 24, 3),
 773
 774        DIV(CLK_DOUT_ACLK400_ISP, "dout_aclk400_isp", "mout_aclk400_isp",
 775                        DIV_TOP0, 0, 3),
 776        DIV(CLK_DOUT_ACLK400_MSCL, "dout_aclk400_mscl", "mout_aclk400_mscl",
 777                        DIV_TOP0, 4, 3),
 778        DIV(CLK_DOUT_ACLK200, "dout_aclk200", "mout_aclk200",
 779                        DIV_TOP0, 8, 3),
 780        DIV(CLK_DOUT_ACLK200_FSYS2, "dout_aclk200_fsys2", "mout_aclk200_fsys2",
 781                        DIV_TOP0, 12, 3),
 782        DIV(CLK_DOUT_ACLK100_NOC, "dout_aclk100_noc", "mout_aclk100_noc",
 783                        DIV_TOP0, 20, 3),
 784        DIV(CLK_DOUT_PCLK200_FSYS, "dout_pclk200_fsys", "mout_pclk200_fsys",
 785                        DIV_TOP0, 24, 3),
 786        DIV(CLK_DOUT_ACLK200_FSYS, "dout_aclk200_fsys", "mout_aclk200_fsys",
 787                        DIV_TOP0, 28, 3),
 788        DIV(CLK_DOUT_ACLK333_432_GSCL, "dout_aclk333_432_gscl",
 789                        "mout_aclk333_432_gscl", DIV_TOP1, 0, 3),
 790        DIV(CLK_DOUT_ACLK333_432_ISP, "dout_aclk333_432_isp",
 791                        "mout_aclk333_432_isp", DIV_TOP1, 4, 3),
 792        DIV(CLK_DOUT_ACLK66, "dout_aclk66", "mout_aclk66",
 793                        DIV_TOP1, 8, 6),
 794        DIV(CLK_DOUT_ACLK333_432_ISP0, "dout_aclk333_432_isp0",
 795                        "mout_aclk333_432_isp0", DIV_TOP1, 16, 3),
 796        DIV(CLK_DOUT_ACLK266, "dout_aclk266", "mout_aclk266",
 797                        DIV_TOP1, 20, 3),
 798        DIV(CLK_DOUT_ACLK166, "dout_aclk166", "mout_aclk166",
 799                        DIV_TOP1, 24, 3),
 800        DIV(CLK_DOUT_ACLK333, "dout_aclk333", "mout_aclk333",
 801                        DIV_TOP1, 28, 3),
 802
 803        DIV(CLK_DOUT_ACLK333_G2D, "dout_aclk333_g2d", "mout_aclk333_g2d",
 804                        DIV_TOP2, 8, 3),
 805        DIV(CLK_DOUT_ACLK266_G2D, "dout_aclk266_g2d", "mout_aclk266_g2d",
 806                        DIV_TOP2, 12, 3),
 807        DIV(CLK_DOUT_ACLK_G3D, "dout_aclk_g3d", "mout_aclk_g3d", DIV_TOP2,
 808                        16, 3),
 809        DIV(CLK_DOUT_ACLK300_JPEG, "dout_aclk300_jpeg", "mout_aclk300_jpeg",
 810                        DIV_TOP2, 20, 3),
 811        DIV(CLK_DOUT_ACLK300_DISP1, "dout_aclk300_disp1",
 812                        "mout_aclk300_disp1", DIV_TOP2, 24, 3),
 813        DIV(CLK_DOUT_ACLK300_GSCL, "dout_aclk300_gscl", "mout_aclk300_gscl",
 814                        DIV_TOP2, 28, 3),
 815
 816        /* DISP1 Block */
 817        DIV(0, "dout_fimd1", "mout_fimd1_final", DIV_DISP10, 0, 4),
 818        DIV(0, "dout_mipi1", "mout_mipi1", DIV_DISP10, 16, 8),
 819        DIV(0, "dout_dp1", "mout_dp1", DIV_DISP10, 24, 4),
 820        DIV(CLK_DOUT_PIXEL, "dout_hdmi_pixel", "mout_pixel", DIV_DISP10, 28, 4),
 821        DIV(CLK_DOUT_ACLK400_DISP1, "dout_aclk400_disp1",
 822                        "mout_aclk400_disp1", DIV_TOP2, 4, 3),
 823
 824        /* CDREX Block */
 825        /*
 826         * The three clocks below are controlled using the same register and
 827         * bits. They are put into one because there is a need of
 828         * synchronization between the BUS and DREXs (two external memory
 829         * interfaces).
 830         * They are put here to show this HW assumption and for clock
 831         * information summary completeness.
 832         */
 833        DIV_F(CLK_DOUT_PCLK_CDREX, "dout_pclk_cdrex", "dout_aclk_cdrex1",
 834                        DIV_CDREX0, 28, 3, CLK_GET_RATE_NOCACHE, 0),
 835        DIV_F(CLK_DOUT_PCLK_DREX0, "dout_pclk_drex0", "dout_cclk_drex0",
 836                        DIV_CDREX0, 28, 3, CLK_GET_RATE_NOCACHE, 0),
 837        DIV_F(CLK_DOUT_PCLK_DREX1, "dout_pclk_drex1", "dout_cclk_drex0",
 838                        DIV_CDREX0, 28, 3, CLK_GET_RATE_NOCACHE, 0),
 839
 840        DIV_F(CLK_DOUT_SCLK_CDREX, "dout_sclk_cdrex", "mout_mclk_cdrex",
 841                        DIV_CDREX0, 24, 3, CLK_SET_RATE_PARENT, 0),
 842        DIV(CLK_DOUT_ACLK_CDREX1, "dout_aclk_cdrex1", "dout_clk2x_phy0",
 843                        DIV_CDREX0, 16, 3),
 844        DIV(CLK_DOUT_CCLK_DREX0, "dout_cclk_drex0", "dout_clk2x_phy0",
 845                        DIV_CDREX0, 8, 3),
 846        DIV(CLK_DOUT_CLK2X_PHY0, "dout_clk2x_phy0", "dout_sclk_cdrex",
 847                        DIV_CDREX0, 3, 5),
 848
 849        DIV(CLK_DOUT_PCLK_CORE_MEM, "dout_pclk_core_mem", "mout_mclk_cdrex",
 850                        DIV_CDREX1, 8, 3),
 851
 852        /* Audio Block */
 853        DIV(0, "dout_maudio0", "mout_maudio0", DIV_MAU, 20, 4),
 854        DIV(0, "dout_maupcm0", "dout_maudio0", DIV_MAU, 24, 8),
 855
 856        /* USB3.0 */
 857        DIV(0, "dout_usbphy301", "mout_usbd301", DIV_FSYS0, 12, 4),
 858        DIV(0, "dout_usbphy300", "mout_usbd300", DIV_FSYS0, 16, 4),
 859        DIV(0, "dout_usbd301", "mout_usbd301", DIV_FSYS0, 20, 4),
 860        DIV(0, "dout_usbd300", "mout_usbd300", DIV_FSYS0, 24, 4),
 861
 862        /* MMC */
 863        DIV(0, "dout_mmc0", "mout_mmc0", DIV_FSYS1, 0, 10),
 864        DIV(0, "dout_mmc1", "mout_mmc1", DIV_FSYS1, 10, 10),
 865        DIV(0, "dout_mmc2", "mout_mmc2", DIV_FSYS1, 20, 10),
 866
 867        DIV(0, "dout_unipro", "mout_unipro", DIV_FSYS2, 24, 8),
 868        DIV(0, "dout_mphy_refclk", "mout_mphy_refclk", DIV_FSYS2, 16, 8),
 869
 870        /* UART and PWM */
 871        DIV(0, "dout_uart0", "mout_uart0", DIV_PERIC0, 8, 4),
 872        DIV(0, "dout_uart1", "mout_uart1", DIV_PERIC0, 12, 4),
 873        DIV(0, "dout_uart2", "mout_uart2", DIV_PERIC0, 16, 4),
 874        DIV(0, "dout_uart3", "mout_uart3", DIV_PERIC0, 20, 4),
 875        DIV(0, "dout_pwm", "mout_pwm", DIV_PERIC0, 28, 4),
 876
 877        /* SPI */
 878        DIV(0, "dout_spi0", "mout_spi0", DIV_PERIC1, 20, 4),
 879        DIV(0, "dout_spi1", "mout_spi1", DIV_PERIC1, 24, 4),
 880        DIV(0, "dout_spi2", "mout_spi2", DIV_PERIC1, 28, 4),
 881
 882
 883        /* PCM */
 884        DIV(0, "dout_pcm1", "dout_audio1", DIV_PERIC2, 16, 8),
 885        DIV(0, "dout_pcm2", "dout_audio2", DIV_PERIC2, 24, 8),
 886
 887        /* Audio - I2S */
 888        DIV(0, "dout_i2s1", "dout_audio1", DIV_PERIC3, 6, 6),
 889        DIV(0, "dout_i2s2", "dout_audio2", DIV_PERIC3, 12, 6),
 890        DIV(0, "dout_audio0", "mout_audio0", DIV_PERIC3, 20, 4),
 891        DIV(0, "dout_audio1", "mout_audio1", DIV_PERIC3, 24, 4),
 892        DIV(0, "dout_audio2", "mout_audio2", DIV_PERIC3, 28, 4),
 893
 894        /* SPI Pre-Ratio */
 895        DIV(0, "dout_spi0_pre", "dout_spi0", DIV_PERIC4, 8, 8),
 896        DIV(0, "dout_spi1_pre", "dout_spi1", DIV_PERIC4, 16, 8),
 897        DIV(0, "dout_spi2_pre", "dout_spi2", DIV_PERIC4, 24, 8),
 898
 899        /* GSCL Block */
 900        DIV(0, "dout_gscl_blk_333", "aclk333_432_gscl", DIV2_RATIO0, 6, 2),
 901
 902        /* PSGEN */
 903        DIV(0, "dout_gen_blk", "mout_user_aclk266", DIV2_RATIO0, 8, 1),
 904        DIV(0, "dout_jpg_blk", "aclk166", DIV2_RATIO0, 20, 1),
 905
 906        /* ISP Block */
 907        DIV(0, "dout_isp_sensor0", "mout_isp_sensor", SCLK_DIV_ISP0, 8, 8),
 908        DIV(0, "dout_isp_sensor1", "mout_isp_sensor", SCLK_DIV_ISP0, 16, 8),
 909        DIV(0, "dout_isp_sensor2", "mout_isp_sensor", SCLK_DIV_ISP0, 24, 8),
 910        DIV(0, "dout_pwm_isp", "mout_pwm_isp", SCLK_DIV_ISP1, 28, 4),
 911        DIV(0, "dout_uart_isp", "mout_uart_isp", SCLK_DIV_ISP1, 24, 4),
 912        DIV(0, "dout_spi0_isp", "mout_spi0_isp", SCLK_DIV_ISP1, 16, 4),
 913        DIV(0, "dout_spi1_isp", "mout_spi1_isp", SCLK_DIV_ISP1, 20, 4),
 914        DIV_F(0, "dout_spi0_isp_pre", "dout_spi0_isp", SCLK_DIV_ISP1, 0, 8,
 915                        CLK_SET_RATE_PARENT, 0),
 916        DIV_F(0, "dout_spi1_isp_pre", "dout_spi1_isp", SCLK_DIV_ISP1, 8, 8,
 917                        CLK_SET_RATE_PARENT, 0),
 918};
 919
 920static const struct samsung_gate_clock exynos5x_gate_clks[] __initconst = {
 921        /* G2D */
 922        GATE(CLK_MDMA0, "mdma0", "aclk266_g2d", GATE_IP_G2D, 1, 0, 0),
 923        GATE(CLK_SSS, "sss", "aclk266_g2d", GATE_IP_G2D, 2, 0, 0),
 924        GATE(CLK_G2D, "g2d", "aclk333_g2d", GATE_IP_G2D, 3, 0, 0),
 925        GATE(CLK_SMMU_MDMA0, "smmu_mdma0", "aclk266_g2d", GATE_IP_G2D, 5, 0, 0),
 926        GATE(CLK_SMMU_G2D, "smmu_g2d", "aclk333_g2d", GATE_IP_G2D, 7, 0, 0),
 927
 928        GATE(0, "aclk200_fsys", "mout_user_aclk200_fsys",
 929                        GATE_BUS_FSYS0, 9, CLK_IS_CRITICAL, 0),
 930        GATE(0, "aclk200_fsys2", "mout_user_aclk200_fsys2",
 931                        GATE_BUS_FSYS0, 10, CLK_IGNORE_UNUSED, 0),
 932
 933        GATE(0, "aclk333_g2d", "mout_user_aclk333_g2d",
 934                        GATE_BUS_TOP, 0, CLK_IGNORE_UNUSED, 0),
 935        GATE(0, "aclk266_g2d", "mout_user_aclk266_g2d",
 936                        GATE_BUS_TOP, 1, CLK_IS_CRITICAL, 0),
 937        GATE(0, "aclk300_jpeg", "mout_user_aclk300_jpeg",
 938                        GATE_BUS_TOP, 4, CLK_IGNORE_UNUSED, 0),
 939        GATE(0, "aclk333_432_isp0", "mout_user_aclk333_432_isp0",
 940                        GATE_BUS_TOP, 5, 0, 0),
 941        GATE(0, "aclk300_gscl", "mout_user_aclk300_gscl",
 942                        GATE_BUS_TOP, 6, CLK_IS_CRITICAL, 0),
 943        GATE(0, "aclk333_432_gscl", "mout_user_aclk333_432_gscl",
 944                        GATE_BUS_TOP, 7, CLK_IGNORE_UNUSED, 0),
 945        GATE(0, "aclk333_432_isp", "mout_user_aclk333_432_isp",
 946                        GATE_BUS_TOP, 8, 0, 0),
 947        GATE(CLK_PCLK66_GPIO, "pclk66_gpio", "mout_user_pclk66_gpio",
 948                        GATE_BUS_TOP, 9, CLK_IGNORE_UNUSED, 0),
 949        GATE(0, "aclk66_psgen", "mout_user_aclk66_psgen",
 950                        GATE_BUS_TOP, 10, CLK_IGNORE_UNUSED, 0),
 951        GATE(0, "aclk266_isp", "mout_user_aclk266_isp",
 952                        GATE_BUS_TOP, 13, 0, 0),
 953        GATE(0, "aclk166", "mout_user_aclk166",
 954                        GATE_BUS_TOP, 14, CLK_IGNORE_UNUSED, 0),
 955        GATE(CLK_ACLK333, "aclk333", "mout_user_aclk333",
 956                        GATE_BUS_TOP, 15, CLK_IS_CRITICAL, 0),
 957        GATE(0, "aclk400_isp", "mout_user_aclk400_isp",
 958                        GATE_BUS_TOP, 16, 0, 0),
 959        GATE(0, "aclk400_mscl", "mout_user_aclk400_mscl",
 960                        GATE_BUS_TOP, 17, CLK_IS_CRITICAL, 0),
 961        GATE(0, "aclk200_disp1", "mout_user_aclk200_disp1",
 962                        GATE_BUS_TOP, 18, CLK_IS_CRITICAL, 0),
 963        GATE(CLK_SCLK_MPHY_IXTAL24, "sclk_mphy_ixtal24", "mphy_refclk_ixtal24",
 964                        GATE_BUS_TOP, 28, 0, 0),
 965        GATE(CLK_SCLK_HSIC_12M, "sclk_hsic_12m", "ff_hsic_12m",
 966                        GATE_BUS_TOP, 29, 0, 0),
 967
 968        GATE(0, "aclk300_disp1", "mout_user_aclk300_disp1",
 969                        SRC_MASK_TOP2, 24, CLK_IS_CRITICAL, 0),
 970
 971        /* sclk */
 972        GATE(CLK_SCLK_UART0, "sclk_uart0", "dout_uart0",
 973                GATE_TOP_SCLK_PERIC, 0, CLK_SET_RATE_PARENT, 0),
 974        GATE(CLK_SCLK_UART1, "sclk_uart1", "dout_uart1",
 975                GATE_TOP_SCLK_PERIC, 1, CLK_SET_RATE_PARENT, 0),
 976        GATE(CLK_SCLK_UART2, "sclk_uart2", "dout_uart2",
 977                GATE_TOP_SCLK_PERIC, 2, CLK_SET_RATE_PARENT, 0),
 978        GATE(CLK_SCLK_UART3, "sclk_uart3", "dout_uart3",
 979                GATE_TOP_SCLK_PERIC, 3, CLK_SET_RATE_PARENT, 0),
 980        GATE(CLK_SCLK_SPI0, "sclk_spi0", "dout_spi0_pre",
 981                GATE_TOP_SCLK_PERIC, 6, CLK_SET_RATE_PARENT, 0),
 982        GATE(CLK_SCLK_SPI1, "sclk_spi1", "dout_spi1_pre",
 983                GATE_TOP_SCLK_PERIC, 7, CLK_SET_RATE_PARENT, 0),
 984        GATE(CLK_SCLK_SPI2, "sclk_spi2", "dout_spi2_pre",
 985                GATE_TOP_SCLK_PERIC, 8, CLK_SET_RATE_PARENT, 0),
 986        GATE(CLK_SCLK_SPDIF, "sclk_spdif", "mout_spdif",
 987                GATE_TOP_SCLK_PERIC, 9, CLK_SET_RATE_PARENT, 0),
 988        GATE(CLK_SCLK_PWM, "sclk_pwm", "dout_pwm",
 989                GATE_TOP_SCLK_PERIC, 11, CLK_SET_RATE_PARENT, 0),
 990        GATE(CLK_SCLK_PCM1, "sclk_pcm1", "dout_pcm1",
 991                GATE_TOP_SCLK_PERIC, 15, CLK_SET_RATE_PARENT, 0),
 992        GATE(CLK_SCLK_PCM2, "sclk_pcm2", "dout_pcm2",
 993                GATE_TOP_SCLK_PERIC, 16, CLK_SET_RATE_PARENT, 0),
 994        GATE(CLK_SCLK_I2S1, "sclk_i2s1", "dout_i2s1",
 995                GATE_TOP_SCLK_PERIC, 17, CLK_SET_RATE_PARENT, 0),
 996        GATE(CLK_SCLK_I2S2, "sclk_i2s2", "dout_i2s2",
 997                GATE_TOP_SCLK_PERIC, 18, CLK_SET_RATE_PARENT, 0),
 998
 999        GATE(CLK_SCLK_MMC0, "sclk_mmc0", "dout_mmc0",
1000                GATE_TOP_SCLK_FSYS, 0, CLK_SET_RATE_PARENT, 0),
1001        GATE(CLK_SCLK_MMC1, "sclk_mmc1", "dout_mmc1",
1002                GATE_TOP_SCLK_FSYS, 1, CLK_SET_RATE_PARENT, 0),
1003        GATE(CLK_SCLK_MMC2, "sclk_mmc2", "dout_mmc2",
1004                GATE_TOP_SCLK_FSYS, 2, CLK_SET_RATE_PARENT, 0),
1005        GATE(CLK_SCLK_USBPHY301, "sclk_usbphy301", "dout_usbphy301",
1006                GATE_TOP_SCLK_FSYS, 7, CLK_SET_RATE_PARENT, 0),
1007        GATE(CLK_SCLK_USBPHY300, "sclk_usbphy300", "dout_usbphy300",
1008                GATE_TOP_SCLK_FSYS, 8, CLK_SET_RATE_PARENT, 0),
1009        GATE(CLK_SCLK_USBD300, "sclk_usbd300", "dout_usbd300",
1010                GATE_TOP_SCLK_FSYS, 9, CLK_SET_RATE_PARENT, 0),
1011        GATE(CLK_SCLK_USBD301, "sclk_usbd301", "dout_usbd301",
1012                GATE_TOP_SCLK_FSYS, 10, CLK_SET_RATE_PARENT, 0),
1013
1014        /* Display */
1015        GATE(CLK_SCLK_FIMD1, "sclk_fimd1", "dout_fimd1",
1016                        GATE_TOP_SCLK_DISP1, 0, CLK_SET_RATE_PARENT, 0),
1017        GATE(CLK_SCLK_MIPI1, "sclk_mipi1", "dout_mipi1",
1018                        GATE_TOP_SCLK_DISP1, 3, CLK_SET_RATE_PARENT, 0),
1019        GATE(CLK_SCLK_HDMI, "sclk_hdmi", "mout_hdmi",
1020                        GATE_TOP_SCLK_DISP1, 9, 0, 0),
1021        GATE(CLK_SCLK_PIXEL, "sclk_pixel", "dout_hdmi_pixel",
1022                        GATE_TOP_SCLK_DISP1, 10, CLK_SET_RATE_PARENT, 0),
1023        GATE(CLK_SCLK_DP1, "sclk_dp1", "dout_dp1",
1024                        GATE_TOP_SCLK_DISP1, 20, CLK_SET_RATE_PARENT, 0),
1025
1026        /* FSYS Block */
1027        GATE(CLK_TSI, "tsi", "aclk200_fsys", GATE_BUS_FSYS0, 0, 0, 0),
1028        GATE(CLK_PDMA0, "pdma0", "aclk200_fsys", GATE_BUS_FSYS0, 1, 0, 0),
1029        GATE(CLK_PDMA1, "pdma1", "aclk200_fsys", GATE_BUS_FSYS0, 2, 0, 0),
1030        GATE(CLK_UFS, "ufs", "aclk200_fsys2", GATE_BUS_FSYS0, 3, 0, 0),
1031        GATE(CLK_RTIC, "rtic", "aclk200_fsys", GATE_IP_FSYS, 9, 0, 0),
1032        GATE(CLK_MMC0, "mmc0", "aclk200_fsys2", GATE_IP_FSYS, 12, 0, 0),
1033        GATE(CLK_MMC1, "mmc1", "aclk200_fsys2", GATE_IP_FSYS, 13, 0, 0),
1034        GATE(CLK_MMC2, "mmc2", "aclk200_fsys2", GATE_IP_FSYS, 14, 0, 0),
1035        GATE(CLK_SROMC, "sromc", "aclk200_fsys2",
1036                        GATE_IP_FSYS, 17, CLK_IGNORE_UNUSED, 0),
1037        GATE(CLK_USBH20, "usbh20", "aclk200_fsys", GATE_IP_FSYS, 18, 0, 0),
1038        GATE(CLK_USBD300, "usbd300", "aclk200_fsys", GATE_IP_FSYS, 19, 0, 0),
1039        GATE(CLK_USBD301, "usbd301", "aclk200_fsys", GATE_IP_FSYS, 20, 0, 0),
1040        GATE(CLK_SCLK_UNIPRO, "sclk_unipro", "dout_unipro",
1041                        SRC_MASK_FSYS, 24, CLK_SET_RATE_PARENT, 0),
1042
1043        /* PERIC Block */
1044        GATE(CLK_UART0, "uart0", "mout_user_aclk66_peric",
1045                        GATE_IP_PERIC, 0, 0, 0),
1046        GATE(CLK_UART1, "uart1", "mout_user_aclk66_peric",
1047                        GATE_IP_PERIC, 1, 0, 0),
1048        GATE(CLK_UART2, "uart2", "mout_user_aclk66_peric",
1049                        GATE_IP_PERIC, 2, 0, 0),
1050        GATE(CLK_UART3, "uart3", "mout_user_aclk66_peric",
1051                        GATE_IP_PERIC, 3, 0, 0),
1052        GATE(CLK_I2C0, "i2c0", "mout_user_aclk66_peric",
1053                        GATE_IP_PERIC, 6, 0, 0),
1054        GATE(CLK_I2C1, "i2c1", "mout_user_aclk66_peric",
1055                        GATE_IP_PERIC, 7, 0, 0),
1056        GATE(CLK_I2C2, "i2c2", "mout_user_aclk66_peric",
1057                        GATE_IP_PERIC, 8, 0, 0),
1058        GATE(CLK_I2C3, "i2c3", "mout_user_aclk66_peric",
1059                        GATE_IP_PERIC, 9, 0, 0),
1060        GATE(CLK_USI0, "usi0", "mout_user_aclk66_peric",
1061                        GATE_IP_PERIC, 10, 0, 0),
1062        GATE(CLK_USI1, "usi1", "mout_user_aclk66_peric",
1063                        GATE_IP_PERIC, 11, 0, 0),
1064        GATE(CLK_USI2, "usi2", "mout_user_aclk66_peric",
1065                        GATE_IP_PERIC, 12, 0, 0),
1066        GATE(CLK_USI3, "usi3", "mout_user_aclk66_peric",
1067                        GATE_IP_PERIC, 13, 0, 0),
1068        GATE(CLK_I2C_HDMI, "i2c_hdmi", "mout_user_aclk66_peric",
1069                        GATE_IP_PERIC, 14, 0, 0),
1070        GATE(CLK_TSADC, "tsadc", "mout_user_aclk66_peric",
1071                        GATE_IP_PERIC, 15, 0, 0),
1072        GATE(CLK_SPI0, "spi0", "mout_user_aclk66_peric",
1073                        GATE_IP_PERIC, 16, 0, 0),
1074        GATE(CLK_SPI1, "spi1", "mout_user_aclk66_peric",
1075                        GATE_IP_PERIC, 17, 0, 0),
1076        GATE(CLK_SPI2, "spi2", "mout_user_aclk66_peric",
1077                        GATE_IP_PERIC, 18, 0, 0),
1078        GATE(CLK_I2S1, "i2s1", "mout_user_aclk66_peric",
1079                        GATE_IP_PERIC, 20, 0, 0),
1080        GATE(CLK_I2S2, "i2s2", "mout_user_aclk66_peric",
1081                        GATE_IP_PERIC, 21, 0, 0),
1082        GATE(CLK_PCM1, "pcm1", "mout_user_aclk66_peric",
1083                        GATE_IP_PERIC, 22, 0, 0),
1084        GATE(CLK_PCM2, "pcm2", "mout_user_aclk66_peric",
1085                        GATE_IP_PERIC, 23, 0, 0),
1086        GATE(CLK_PWM, "pwm", "mout_user_aclk66_peric",
1087                        GATE_IP_PERIC, 24, 0, 0),
1088        GATE(CLK_SPDIF, "spdif", "mout_user_aclk66_peric",
1089                        GATE_IP_PERIC, 26, 0, 0),
1090        GATE(CLK_USI4, "usi4", "mout_user_aclk66_peric",
1091                        GATE_IP_PERIC, 28, 0, 0),
1092        GATE(CLK_USI5, "usi5", "mout_user_aclk66_peric",
1093                        GATE_IP_PERIC, 30, 0, 0),
1094        GATE(CLK_USI6, "usi6", "mout_user_aclk66_peric",
1095                        GATE_IP_PERIC, 31, 0, 0),
1096
1097        GATE(CLK_KEYIF, "keyif", "mout_user_aclk66_peric",
1098                        GATE_BUS_PERIC, 22, 0, 0),
1099
1100        /* PERIS Block */
1101        GATE(CLK_CHIPID, "chipid", "aclk66_psgen",
1102                        GATE_IP_PERIS, 0, CLK_IGNORE_UNUSED, 0),
1103        GATE(CLK_SYSREG, "sysreg", "aclk66_psgen",
1104                        GATE_IP_PERIS, 1, CLK_IGNORE_UNUSED, 0),
1105        GATE(CLK_TZPC0, "tzpc0", "aclk66_psgen", GATE_IP_PERIS, 6, 0, 0),
1106        GATE(CLK_TZPC1, "tzpc1", "aclk66_psgen", GATE_IP_PERIS, 7, 0, 0),
1107        GATE(CLK_TZPC2, "tzpc2", "aclk66_psgen", GATE_IP_PERIS, 8, 0, 0),
1108        GATE(CLK_TZPC3, "tzpc3", "aclk66_psgen", GATE_IP_PERIS, 9, 0, 0),
1109        GATE(CLK_TZPC4, "tzpc4", "aclk66_psgen", GATE_IP_PERIS, 10, 0, 0),
1110        GATE(CLK_TZPC5, "tzpc5", "aclk66_psgen", GATE_IP_PERIS, 11, 0, 0),
1111        GATE(CLK_TZPC6, "tzpc6", "aclk66_psgen", GATE_IP_PERIS, 12, 0, 0),
1112        GATE(CLK_TZPC7, "tzpc7", "aclk66_psgen", GATE_IP_PERIS, 13, 0, 0),
1113        GATE(CLK_TZPC8, "tzpc8", "aclk66_psgen", GATE_IP_PERIS, 14, 0, 0),
1114        GATE(CLK_TZPC9, "tzpc9", "aclk66_psgen", GATE_IP_PERIS, 15, 0, 0),
1115        GATE(CLK_HDMI_CEC, "hdmi_cec", "aclk66_psgen", GATE_IP_PERIS, 16, 0, 0),
1116        GATE(CLK_MCT, "mct", "aclk66_psgen", GATE_IP_PERIS, 18, 0, 0),
1117        GATE(CLK_WDT, "wdt", "aclk66_psgen", GATE_IP_PERIS, 19, 0, 0),
1118        GATE(CLK_RTC, "rtc", "aclk66_psgen", GATE_IP_PERIS, 20, 0, 0),
1119        GATE(CLK_TMU, "tmu", "aclk66_psgen", GATE_IP_PERIS, 21, 0, 0),
1120        GATE(CLK_TMU_GPU, "tmu_gpu", "aclk66_psgen", GATE_IP_PERIS, 22, 0, 0),
1121
1122        /* GEN Block */
1123        GATE(CLK_ROTATOR, "rotator", "mout_user_aclk266", GATE_IP_GEN, 1, 0, 0),
1124        GATE(CLK_JPEG, "jpeg", "aclk300_jpeg", GATE_IP_GEN, 2, 0, 0),
1125        GATE(CLK_JPEG2, "jpeg2", "aclk300_jpeg", GATE_IP_GEN, 3, 0, 0),
1126        GATE(CLK_MDMA1, "mdma1", "mout_user_aclk266", GATE_IP_GEN, 4, 0, 0),
1127        GATE(CLK_TOP_RTC, "top_rtc", "aclk66_psgen", GATE_IP_GEN, 5, 0, 0),
1128        GATE(CLK_SMMU_ROTATOR, "smmu_rotator", "dout_gen_blk",
1129                        GATE_IP_GEN, 6, 0, 0),
1130        GATE(CLK_SMMU_JPEG, "smmu_jpeg", "dout_jpg_blk", GATE_IP_GEN, 7, 0, 0),
1131        GATE(CLK_SMMU_MDMA1, "smmu_mdma1", "dout_gen_blk",
1132                        GATE_IP_GEN, 9, 0, 0),
1133
1134        /* GATE_IP_GEN doesn't list gates for smmu_jpeg2 and mc */
1135        GATE(CLK_SMMU_JPEG2, "smmu_jpeg2", "dout_jpg_blk",
1136                        GATE_BUS_GEN, 28, 0, 0),
1137        GATE(CLK_MC, "mc", "aclk66_psgen", GATE_BUS_GEN, 12, 0, 0),
1138
1139        /* GSCL Block */
1140        GATE(CLK_SCLK_GSCL_WA, "sclk_gscl_wa", "mout_user_aclk333_432_gscl",
1141                        GATE_TOP_SCLK_GSCL, 6, 0, 0),
1142        GATE(CLK_SCLK_GSCL_WB, "sclk_gscl_wb", "mout_user_aclk333_432_gscl",
1143                        GATE_TOP_SCLK_GSCL, 7, 0, 0),
1144
1145        GATE(CLK_FIMC_3AA, "fimc_3aa", "aclk333_432_gscl",
1146                        GATE_IP_GSCL0, 4, 0, 0),
1147        GATE(CLK_FIMC_LITE0, "fimc_lite0", "aclk333_432_gscl",
1148                        GATE_IP_GSCL0, 5, 0, 0),
1149        GATE(CLK_FIMC_LITE1, "fimc_lite1", "aclk333_432_gscl",
1150                        GATE_IP_GSCL0, 6, 0, 0),
1151
1152        GATE(CLK_SMMU_3AA, "smmu_3aa", "dout_gscl_blk_333",
1153                        GATE_IP_GSCL1, 2, 0, 0),
1154        GATE(CLK_SMMU_FIMCL0, "smmu_fimcl0", "dout_gscl_blk_333",
1155                        GATE_IP_GSCL1, 3, 0, 0),
1156        GATE(CLK_SMMU_FIMCL1, "smmu_fimcl1", "dout_gscl_blk_333",
1157                        GATE_IP_GSCL1, 4, 0, 0),
1158        GATE(CLK_GSCL_WA, "gscl_wa", "sclk_gscl_wa", GATE_IP_GSCL1, 12, 0, 0),
1159        GATE(CLK_GSCL_WB, "gscl_wb", "sclk_gscl_wb", GATE_IP_GSCL1, 13, 0, 0),
1160        GATE(CLK_SMMU_FIMCL3, "smmu_fimcl3,", "dout_gscl_blk_333",
1161                        GATE_IP_GSCL1, 16, 0, 0),
1162        GATE(CLK_FIMC_LITE3, "fimc_lite3", "aclk333_432_gscl",
1163                        GATE_IP_GSCL1, 17, 0, 0),
1164
1165        /* ISP */
1166        GATE(CLK_SCLK_UART_ISP, "sclk_uart_isp", "dout_uart_isp",
1167                        GATE_TOP_SCLK_ISP, 0, CLK_SET_RATE_PARENT, 0),
1168        GATE(CLK_SCLK_SPI0_ISP, "sclk_spi0_isp", "dout_spi0_isp_pre",
1169                        GATE_TOP_SCLK_ISP, 1, CLK_SET_RATE_PARENT, 0),
1170        GATE(CLK_SCLK_SPI1_ISP, "sclk_spi1_isp", "dout_spi1_isp_pre",
1171                        GATE_TOP_SCLK_ISP, 2, CLK_SET_RATE_PARENT, 0),
1172        GATE(CLK_SCLK_PWM_ISP, "sclk_pwm_isp", "dout_pwm_isp",
1173                        GATE_TOP_SCLK_ISP, 3, CLK_SET_RATE_PARENT, 0),
1174        GATE(CLK_SCLK_ISP_SENSOR0, "sclk_isp_sensor0", "dout_isp_sensor0",
1175                        GATE_TOP_SCLK_ISP, 4, CLK_SET_RATE_PARENT, 0),
1176        GATE(CLK_SCLK_ISP_SENSOR1, "sclk_isp_sensor1", "dout_isp_sensor1",
1177                        GATE_TOP_SCLK_ISP, 8, CLK_SET_RATE_PARENT, 0),
1178        GATE(CLK_SCLK_ISP_SENSOR2, "sclk_isp_sensor2", "dout_isp_sensor2",
1179                        GATE_TOP_SCLK_ISP, 12, CLK_SET_RATE_PARENT, 0),
1180
1181        /* CDREX */
1182        GATE(CLK_CLKM_PHY0, "clkm_phy0", "dout_sclk_cdrex",
1183                        GATE_BUS_CDREX0, 0, 0, 0),
1184        GATE(CLK_CLKM_PHY1, "clkm_phy1", "dout_sclk_cdrex",
1185                        GATE_BUS_CDREX0, 1, 0, 0),
1186        GATE(0, "mx_mspll_ccore_phy", "mout_mx_mspll_ccore_phy",
1187                        SRC_MASK_TOP7, 0, CLK_IGNORE_UNUSED, 0),
1188
1189        GATE(CLK_ACLK_PPMU_DREX1_1, "aclk_ppmu_drex1_1", "dout_aclk_cdrex1",
1190                        GATE_BUS_CDREX1, 12, CLK_IGNORE_UNUSED, 0),
1191        GATE(CLK_ACLK_PPMU_DREX1_0, "aclk_ppmu_drex1_0", "dout_aclk_cdrex1",
1192                        GATE_BUS_CDREX1, 13, CLK_IGNORE_UNUSED, 0),
1193        GATE(CLK_ACLK_PPMU_DREX0_1, "aclk_ppmu_drex0_1", "dout_aclk_cdrex1",
1194                        GATE_BUS_CDREX1, 14, CLK_IGNORE_UNUSED, 0),
1195        GATE(CLK_ACLK_PPMU_DREX0_0, "aclk_ppmu_drex0_0", "dout_aclk_cdrex1",
1196                        GATE_BUS_CDREX1, 15, CLK_IGNORE_UNUSED, 0),
1197
1198        GATE(CLK_PCLK_PPMU_DREX1_1, "pclk_ppmu_drex1_1", "dout_pclk_cdrex",
1199                        GATE_BUS_CDREX1, 26, CLK_IGNORE_UNUSED, 0),
1200        GATE(CLK_PCLK_PPMU_DREX1_0, "pclk_ppmu_drex1_0", "dout_pclk_cdrex",
1201                        GATE_BUS_CDREX1, 27, CLK_IGNORE_UNUSED, 0),
1202        GATE(CLK_PCLK_PPMU_DREX0_1, "pclk_ppmu_drex0_1", "dout_pclk_cdrex",
1203                        GATE_BUS_CDREX1, 28, CLK_IGNORE_UNUSED, 0),
1204        GATE(CLK_PCLK_PPMU_DREX0_0, "pclk_ppmu_drex0_0", "dout_pclk_cdrex",
1205                        GATE_BUS_CDREX1, 29, CLK_IGNORE_UNUSED, 0),
1206};
1207
1208static const struct samsung_div_clock exynos5x_disp_div_clks[] __initconst = {
1209        DIV(0, "dout_disp1_blk", "aclk200_disp1", DIV2_RATIO0, 16, 2),
1210};
1211
1212static const struct samsung_gate_clock exynos5x_disp_gate_clks[] __initconst = {
1213        GATE(CLK_FIMD1, "fimd1", "aclk300_disp1", GATE_IP_DISP1, 0, 0, 0),
1214        GATE(CLK_DSIM1, "dsim1", "aclk200_disp1", GATE_IP_DISP1, 3, 0, 0),
1215        GATE(CLK_DP1, "dp1", "aclk200_disp1", GATE_IP_DISP1, 4, 0, 0),
1216        GATE(CLK_MIXER, "mixer", "aclk200_disp1", GATE_IP_DISP1, 5, 0, 0),
1217        GATE(CLK_HDMI, "hdmi", "aclk200_disp1", GATE_IP_DISP1, 6, 0, 0),
1218        GATE(CLK_SMMU_FIMD1M0, "smmu_fimd1m0", "dout_disp1_blk",
1219                        GATE_IP_DISP1, 7, 0, 0),
1220        GATE(CLK_SMMU_FIMD1M1, "smmu_fimd1m1", "dout_disp1_blk",
1221                        GATE_IP_DISP1, 8, 0, 0),
1222        GATE(CLK_SMMU_MIXER, "smmu_mixer", "aclk200_disp1",
1223                        GATE_IP_DISP1, 9, 0, 0),
1224};
1225
1226static struct exynos5_subcmu_reg_dump exynos5x_disp_suspend_regs[] = {
1227        { GATE_IP_DISP1, 0xffffffff, 0xffffffff }, /* DISP1 gates */
1228        { SRC_TOP5, 0, BIT(0) },        /* MUX mout_user_aclk400_disp1 */
1229        { SRC_TOP5, 0, BIT(24) },       /* MUX mout_user_aclk300_disp1 */
1230        { SRC_TOP3, 0, BIT(8) },        /* MUX mout_user_aclk200_disp1 */
1231        { DIV2_RATIO0, 0, 0x30000 },            /* DIV dout_disp1_blk */
1232};
1233
1234static const struct samsung_div_clock exynos5x_gsc_div_clks[] __initconst = {
1235        DIV(0, "dout_gscl_blk_300", "mout_user_aclk300_gscl",
1236                        DIV2_RATIO0, 4, 2),
1237};
1238
1239static const struct samsung_gate_clock exynos5x_gsc_gate_clks[] __initconst = {
1240        GATE(CLK_GSCL0, "gscl0", "aclk300_gscl", GATE_IP_GSCL0, 0, 0, 0),
1241        GATE(CLK_GSCL1, "gscl1", "aclk300_gscl", GATE_IP_GSCL0, 1, 0, 0),
1242        GATE(CLK_SMMU_GSCL0, "smmu_gscl0", "dout_gscl_blk_300",
1243                        GATE_IP_GSCL1, 6, 0, 0),
1244        GATE(CLK_SMMU_GSCL1, "smmu_gscl1", "dout_gscl_blk_300",
1245                        GATE_IP_GSCL1, 7, 0, 0),
1246};
1247
1248static struct exynos5_subcmu_reg_dump exynos5x_gsc_suspend_regs[] = {
1249        { GATE_IP_GSCL0, 0x3, 0x3 },    /* GSC gates */
1250        { GATE_IP_GSCL1, 0xc0, 0xc0 },  /* GSC gates */
1251        { SRC_TOP5, 0, BIT(28) },       /* MUX mout_user_aclk300_gscl */
1252        { DIV2_RATIO0, 0, 0x30 },       /* DIV dout_gscl_blk_300 */
1253};
1254
1255static const struct samsung_gate_clock exynos5x_g3d_gate_clks[] __initconst = {
1256        GATE(CLK_G3D, "g3d", "mout_user_aclk_g3d", GATE_IP_G3D, 9, 0, 0),
1257};
1258
1259static struct exynos5_subcmu_reg_dump exynos5x_g3d_suspend_regs[] = {
1260        { GATE_IP_G3D, 0x3ff, 0x3ff },  /* G3D gates */
1261        { SRC_TOP5, 0, BIT(16) },       /* MUX mout_user_aclk_g3d */
1262};
1263
1264static const struct samsung_div_clock exynos5x_mfc_div_clks[] __initconst = {
1265        DIV(0, "dout_mfc_blk", "mout_user_aclk333", DIV4_RATIO, 0, 2),
1266};
1267
1268static const struct samsung_gate_clock exynos5x_mfc_gate_clks[] __initconst = {
1269        GATE(CLK_MFC, "mfc", "aclk333", GATE_IP_MFC, 0, 0, 0),
1270        GATE(CLK_SMMU_MFCL, "smmu_mfcl", "dout_mfc_blk", GATE_IP_MFC, 1, 0, 0),
1271        GATE(CLK_SMMU_MFCR, "smmu_mfcr", "dout_mfc_blk", GATE_IP_MFC, 2, 0, 0),
1272};
1273
1274static struct exynos5_subcmu_reg_dump exynos5x_mfc_suspend_regs[] = {
1275        { GATE_IP_MFC, 0xffffffff, 0xffffffff }, /* MFC gates */
1276        { SRC_TOP4, 0, BIT(28) },               /* MUX mout_user_aclk333 */
1277        { DIV4_RATIO, 0, 0x3 },                 /* DIV dout_mfc_blk */
1278};
1279
1280static const struct samsung_gate_clock exynos5x_mscl_gate_clks[] __initconst = {
1281        /* MSCL Block */
1282        GATE(CLK_MSCL0, "mscl0", "aclk400_mscl", GATE_IP_MSCL, 0, 0, 0),
1283        GATE(CLK_MSCL1, "mscl1", "aclk400_mscl", GATE_IP_MSCL, 1, 0, 0),
1284        GATE(CLK_MSCL2, "mscl2", "aclk400_mscl", GATE_IP_MSCL, 2, 0, 0),
1285        GATE(CLK_SMMU_MSCL0, "smmu_mscl0", "dout_mscl_blk",
1286                        GATE_IP_MSCL, 8, 0, 0),
1287        GATE(CLK_SMMU_MSCL1, "smmu_mscl1", "dout_mscl_blk",
1288                        GATE_IP_MSCL, 9, 0, 0),
1289        GATE(CLK_SMMU_MSCL2, "smmu_mscl2", "dout_mscl_blk",
1290                        GATE_IP_MSCL, 10, 0, 0),
1291};
1292
1293static const struct samsung_div_clock exynos5x_mscl_div_clks[] __initconst = {
1294        DIV(0, "dout_mscl_blk", "aclk400_mscl", DIV2_RATIO0, 28, 2),
1295};
1296
1297static struct exynos5_subcmu_reg_dump exynos5x_mscl_suspend_regs[] = {
1298        { GATE_IP_MSCL, 0xffffffff, 0xffffffff }, /* MSCL gates */
1299        { SRC_TOP3, 0, BIT(4) },                /* MUX mout_user_aclk400_mscl */
1300        { DIV2_RATIO0, 0, 0x30000000 },         /* DIV dout_mscl_blk */
1301};
1302
1303static const struct samsung_gate_clock exynos5800_mau_gate_clks[] __initconst = {
1304        GATE(CLK_MAU_EPLL, "mau_epll", "mout_user_mau_epll",
1305                        SRC_MASK_TOP7, 20, CLK_SET_RATE_PARENT, 0),
1306        GATE(CLK_SCLK_MAUDIO0, "sclk_maudio0", "dout_maudio0",
1307                GATE_TOP_SCLK_MAU, 0, CLK_SET_RATE_PARENT, 0),
1308        GATE(CLK_SCLK_MAUPCM0, "sclk_maupcm0", "dout_maupcm0",
1309                GATE_TOP_SCLK_MAU, 1, CLK_SET_RATE_PARENT, 0),
1310};
1311
1312static struct exynos5_subcmu_reg_dump exynos5800_mau_suspend_regs[] = {
1313        { SRC_TOP9, 0, BIT(8) },        /* MUX mout_user_mau_epll */
1314};
1315
1316static const struct exynos5_subcmu_info exynos5x_disp_subcmu = {
1317        .div_clks       = exynos5x_disp_div_clks,
1318        .nr_div_clks    = ARRAY_SIZE(exynos5x_disp_div_clks),
1319        .gate_clks      = exynos5x_disp_gate_clks,
1320        .nr_gate_clks   = ARRAY_SIZE(exynos5x_disp_gate_clks),
1321        .suspend_regs   = exynos5x_disp_suspend_regs,
1322        .nr_suspend_regs = ARRAY_SIZE(exynos5x_disp_suspend_regs),
1323        .pd_name        = "DISP",
1324};
1325
1326static const struct exynos5_subcmu_info exynos5x_gsc_subcmu = {
1327        .div_clks       = exynos5x_gsc_div_clks,
1328        .nr_div_clks    = ARRAY_SIZE(exynos5x_gsc_div_clks),
1329        .gate_clks      = exynos5x_gsc_gate_clks,
1330        .nr_gate_clks   = ARRAY_SIZE(exynos5x_gsc_gate_clks),
1331        .suspend_regs   = exynos5x_gsc_suspend_regs,
1332        .nr_suspend_regs = ARRAY_SIZE(exynos5x_gsc_suspend_regs),
1333        .pd_name        = "GSC",
1334};
1335
1336static const struct exynos5_subcmu_info exynos5x_g3d_subcmu = {
1337        .gate_clks      = exynos5x_g3d_gate_clks,
1338        .nr_gate_clks   = ARRAY_SIZE(exynos5x_g3d_gate_clks),
1339        .suspend_regs   = exynos5x_g3d_suspend_regs,
1340        .nr_suspend_regs = ARRAY_SIZE(exynos5x_g3d_suspend_regs),
1341        .pd_name        = "G3D",
1342};
1343
1344static const struct exynos5_subcmu_info exynos5x_mfc_subcmu = {
1345        .div_clks       = exynos5x_mfc_div_clks,
1346        .nr_div_clks    = ARRAY_SIZE(exynos5x_mfc_div_clks),
1347        .gate_clks      = exynos5x_mfc_gate_clks,
1348        .nr_gate_clks   = ARRAY_SIZE(exynos5x_mfc_gate_clks),
1349        .suspend_regs   = exynos5x_mfc_suspend_regs,
1350        .nr_suspend_regs = ARRAY_SIZE(exynos5x_mfc_suspend_regs),
1351        .pd_name        = "MFC",
1352};
1353
1354static const struct exynos5_subcmu_info exynos5x_mscl_subcmu = {
1355        .div_clks       = exynos5x_mscl_div_clks,
1356        .nr_div_clks    = ARRAY_SIZE(exynos5x_mscl_div_clks),
1357        .gate_clks      = exynos5x_mscl_gate_clks,
1358        .nr_gate_clks   = ARRAY_SIZE(exynos5x_mscl_gate_clks),
1359        .suspend_regs   = exynos5x_mscl_suspend_regs,
1360        .nr_suspend_regs = ARRAY_SIZE(exynos5x_mscl_suspend_regs),
1361        .pd_name        = "MSC",
1362};
1363
1364static const struct exynos5_subcmu_info exynos5800_mau_subcmu = {
1365        .gate_clks      = exynos5800_mau_gate_clks,
1366        .nr_gate_clks   = ARRAY_SIZE(exynos5800_mau_gate_clks),
1367        .suspend_regs   = exynos5800_mau_suspend_regs,
1368        .nr_suspend_regs = ARRAY_SIZE(exynos5800_mau_suspend_regs),
1369        .pd_name        = "MAU",
1370};
1371
1372static const struct exynos5_subcmu_info *exynos5x_subcmus[] = {
1373        &exynos5x_disp_subcmu,
1374        &exynos5x_gsc_subcmu,
1375        &exynos5x_g3d_subcmu,
1376        &exynos5x_mfc_subcmu,
1377        &exynos5x_mscl_subcmu,
1378};
1379
1380static const struct exynos5_subcmu_info *exynos5800_subcmus[] = {
1381        &exynos5x_disp_subcmu,
1382        &exynos5x_gsc_subcmu,
1383        &exynos5x_g3d_subcmu,
1384        &exynos5x_mfc_subcmu,
1385        &exynos5x_mscl_subcmu,
1386        &exynos5800_mau_subcmu,
1387};
1388
1389static const struct samsung_pll_rate_table exynos5420_pll2550x_24mhz_tbl[] __initconst = {
1390        PLL_35XX_RATE(24 * MHZ, 2000000000, 250, 3, 0),
1391        PLL_35XX_RATE(24 * MHZ, 1900000000, 475, 6, 0),
1392        PLL_35XX_RATE(24 * MHZ, 1800000000, 225, 3, 0),
1393        PLL_35XX_RATE(24 * MHZ, 1700000000, 425, 6, 0),
1394        PLL_35XX_RATE(24 * MHZ, 1600000000, 200, 3, 0),
1395        PLL_35XX_RATE(24 * MHZ, 1500000000, 250, 4, 0),
1396        PLL_35XX_RATE(24 * MHZ, 1400000000, 175, 3, 0),
1397        PLL_35XX_RATE(24 * MHZ, 1300000000, 325, 6, 0),
1398        PLL_35XX_RATE(24 * MHZ, 1200000000, 200, 2, 1),
1399        PLL_35XX_RATE(24 * MHZ, 1100000000, 275, 3, 1),
1400        PLL_35XX_RATE(24 * MHZ, 1000000000, 250, 3, 1),
1401        PLL_35XX_RATE(24 * MHZ, 900000000,  150, 2, 1),
1402        PLL_35XX_RATE(24 * MHZ, 800000000,  200, 3, 1),
1403        PLL_35XX_RATE(24 * MHZ, 700000000,  175, 3, 1),
1404        PLL_35XX_RATE(24 * MHZ, 600000000,  200, 2, 2),
1405        PLL_35XX_RATE(24 * MHZ, 500000000,  250, 3, 2),
1406        PLL_35XX_RATE(24 * MHZ, 400000000,  200, 3, 2),
1407        PLL_35XX_RATE(24 * MHZ, 300000000,  200, 2, 3),
1408        PLL_35XX_RATE(24 * MHZ, 200000000,  200, 3, 3),
1409};
1410
1411static const struct samsung_pll_rate_table exynos5422_bpll_rate_table[] = {
1412        PLL_35XX_RATE(24 * MHZ, 825000000, 275, 4, 1),
1413        PLL_35XX_RATE(24 * MHZ, 728000000, 182, 3, 1),
1414        PLL_35XX_RATE(24 * MHZ, 633000000, 211, 4, 1),
1415        PLL_35XX_RATE(24 * MHZ, 543000000, 181, 2, 2),
1416        PLL_35XX_RATE(24 * MHZ, 413000000, 413, 6, 2),
1417        PLL_35XX_RATE(24 * MHZ, 275000000, 275, 3, 3),
1418        PLL_35XX_RATE(24 * MHZ, 206000000, 206, 3, 3),
1419        PLL_35XX_RATE(24 * MHZ, 165000000, 110, 2, 3),
1420};
1421
1422static const struct samsung_pll_rate_table exynos5420_epll_24mhz_tbl[] = {
1423        PLL_36XX_RATE(24 * MHZ, 600000000U, 100, 2, 1, 0),
1424        PLL_36XX_RATE(24 * MHZ, 400000000U, 200, 3, 2, 0),
1425        PLL_36XX_RATE(24 * MHZ, 393216003U, 197, 3, 2, -25690),
1426        PLL_36XX_RATE(24 * MHZ, 361267218U, 301, 5, 2, 3671),
1427        PLL_36XX_RATE(24 * MHZ, 200000000U, 200, 3, 3, 0),
1428        PLL_36XX_RATE(24 * MHZ, 196608001U, 197, 3, 3, -25690),
1429        PLL_36XX_RATE(24 * MHZ, 180633609U, 301, 5, 3, 3671),
1430        PLL_36XX_RATE(24 * MHZ, 131072006U, 131, 3, 3, 4719),
1431        PLL_36XX_RATE(24 * MHZ, 100000000U, 200, 3, 4, 0),
1432        PLL_36XX_RATE(24 * MHZ,  73728000U, 98, 2, 4, 19923),
1433        PLL_36XX_RATE(24 * MHZ,  67737602U, 90, 2, 4, 20762),
1434        PLL_36XX_RATE(24 * MHZ,  65536003U, 131, 3, 4, 4719),
1435        PLL_36XX_RATE(24 * MHZ,  49152000U, 197, 3, 5, -25690),
1436        PLL_36XX_RATE(24 * MHZ,  45158401U, 90, 3, 4, 20762),
1437        PLL_36XX_RATE(24 * MHZ,  32768001U, 131, 3, 5, 4719),
1438};
1439
1440static struct samsung_pll_clock exynos5x_plls[nr_plls] __initdata = {
1441        [apll] = PLL(pll_2550, CLK_FOUT_APLL, "fout_apll", "fin_pll", APLL_LOCK,
1442                APLL_CON0, NULL),
1443        [cpll] = PLL(pll_2550, CLK_FOUT_CPLL, "fout_cpll", "fin_pll", CPLL_LOCK,
1444                CPLL_CON0, NULL),
1445        [dpll] = PLL(pll_2550, CLK_FOUT_DPLL, "fout_dpll", "fin_pll", DPLL_LOCK,
1446                DPLL_CON0, NULL),
1447        [epll] = PLL(pll_36xx, CLK_FOUT_EPLL, "fout_epll", "fin_pll", EPLL_LOCK,
1448                EPLL_CON0, NULL),
1449        [rpll] = PLL(pll_2650, CLK_FOUT_RPLL, "fout_rpll", "fin_pll", RPLL_LOCK,
1450                RPLL_CON0, NULL),
1451        [ipll] = PLL(pll_2550, CLK_FOUT_IPLL, "fout_ipll", "fin_pll", IPLL_LOCK,
1452                IPLL_CON0, NULL),
1453        [spll] = PLL(pll_2550, CLK_FOUT_SPLL, "fout_spll", "fin_pll", SPLL_LOCK,
1454                SPLL_CON0, NULL),
1455        [vpll] = PLL(pll_2550, CLK_FOUT_VPLL, "fout_vpll", "fin_pll", VPLL_LOCK,
1456                VPLL_CON0, NULL),
1457        [mpll] = PLL(pll_2550, CLK_FOUT_MPLL, "fout_mpll", "fin_pll", MPLL_LOCK,
1458                MPLL_CON0, NULL),
1459        [bpll] = PLL(pll_2550, CLK_FOUT_BPLL, "fout_bpll", "fin_pll", BPLL_LOCK,
1460                BPLL_CON0, NULL),
1461        [kpll] = PLL(pll_2550, CLK_FOUT_KPLL, "fout_kpll", "fin_pll", KPLL_LOCK,
1462                KPLL_CON0, NULL),
1463};
1464
1465#define E5420_EGL_DIV0(apll, pclk_dbg, atb, cpud)                       \
1466                ((((apll) << 24) | ((pclk_dbg) << 20) | ((atb) << 16) | \
1467                 ((cpud) << 4)))
1468
1469static const struct exynos_cpuclk_cfg_data exynos5420_eglclk_d[] __initconst = {
1470        { 1800000, E5420_EGL_DIV0(3, 7, 7, 4), },
1471        { 1700000, E5420_EGL_DIV0(3, 7, 7, 3), },
1472        { 1600000, E5420_EGL_DIV0(3, 7, 7, 3), },
1473        { 1500000, E5420_EGL_DIV0(3, 7, 7, 3), },
1474        { 1400000, E5420_EGL_DIV0(3, 7, 7, 3), },
1475        { 1300000, E5420_EGL_DIV0(3, 7, 7, 2), },
1476        { 1200000, E5420_EGL_DIV0(3, 7, 7, 2), },
1477        { 1100000, E5420_EGL_DIV0(3, 7, 7, 2), },
1478        { 1000000, E5420_EGL_DIV0(3, 6, 6, 2), },
1479        {  900000, E5420_EGL_DIV0(3, 6, 6, 2), },
1480        {  800000, E5420_EGL_DIV0(3, 5, 5, 2), },
1481        {  700000, E5420_EGL_DIV0(3, 5, 5, 2), },
1482        {  600000, E5420_EGL_DIV0(3, 4, 4, 2), },
1483        {  500000, E5420_EGL_DIV0(3, 3, 3, 2), },
1484        {  400000, E5420_EGL_DIV0(3, 3, 3, 2), },
1485        {  300000, E5420_EGL_DIV0(3, 3, 3, 2), },
1486        {  200000, E5420_EGL_DIV0(3, 3, 3, 2), },
1487        {  0 },
1488};
1489
1490static const struct exynos_cpuclk_cfg_data exynos5800_eglclk_d[] __initconst = {
1491        { 2000000, E5420_EGL_DIV0(3, 7, 7, 4), },
1492        { 1900000, E5420_EGL_DIV0(3, 7, 7, 4), },
1493        { 1800000, E5420_EGL_DIV0(3, 7, 7, 4), },
1494        { 1700000, E5420_EGL_DIV0(3, 7, 7, 3), },
1495        { 1600000, E5420_EGL_DIV0(3, 7, 7, 3), },
1496        { 1500000, E5420_EGL_DIV0(3, 7, 7, 3), },
1497        { 1400000, E5420_EGL_DIV0(3, 7, 7, 3), },
1498        { 1300000, E5420_EGL_DIV0(3, 7, 7, 2), },
1499        { 1200000, E5420_EGL_DIV0(3, 7, 7, 2), },
1500        { 1100000, E5420_EGL_DIV0(3, 7, 7, 2), },
1501        { 1000000, E5420_EGL_DIV0(3, 7, 6, 2), },
1502        {  900000, E5420_EGL_DIV0(3, 7, 6, 2), },
1503        {  800000, E5420_EGL_DIV0(3, 7, 5, 2), },
1504        {  700000, E5420_EGL_DIV0(3, 7, 5, 2), },
1505        {  600000, E5420_EGL_DIV0(3, 7, 4, 2), },
1506        {  500000, E5420_EGL_DIV0(3, 7, 3, 2), },
1507        {  400000, E5420_EGL_DIV0(3, 7, 3, 2), },
1508        {  300000, E5420_EGL_DIV0(3, 7, 3, 2), },
1509        {  200000, E5420_EGL_DIV0(3, 7, 3, 2), },
1510        {  0 },
1511};
1512
1513#define E5420_KFC_DIV(kpll, pclk, aclk)                                 \
1514                ((((kpll) << 24) | ((pclk) << 20) | ((aclk) << 4)))
1515
1516static const struct exynos_cpuclk_cfg_data exynos5420_kfcclk_d[] __initconst = {
1517        { 1400000, E5420_KFC_DIV(3, 5, 3), }, /* for Exynos5800 */
1518        { 1300000, E5420_KFC_DIV(3, 5, 2), },
1519        { 1200000, E5420_KFC_DIV(3, 5, 2), },
1520        { 1100000, E5420_KFC_DIV(3, 5, 2), },
1521        { 1000000, E5420_KFC_DIV(3, 5, 2), },
1522        {  900000, E5420_KFC_DIV(3, 5, 2), },
1523        {  800000, E5420_KFC_DIV(3, 5, 2), },
1524        {  700000, E5420_KFC_DIV(3, 4, 2), },
1525        {  600000, E5420_KFC_DIV(3, 4, 2), },
1526        {  500000, E5420_KFC_DIV(3, 4, 2), },
1527        {  400000, E5420_KFC_DIV(3, 3, 2), },
1528        {  300000, E5420_KFC_DIV(3, 3, 2), },
1529        {  200000, E5420_KFC_DIV(3, 3, 2), },
1530        {  0 },
1531};
1532
1533static const struct of_device_id ext_clk_match[] __initconst = {
1534        { .compatible = "samsung,exynos5420-oscclk", .data = (void *)0, },
1535        { },
1536};
1537
1538/* register exynos5420 clocks */
1539static void __init exynos5x_clk_init(struct device_node *np,
1540                enum exynos5x_soc soc)
1541{
1542        struct samsung_clk_provider *ctx;
1543
1544        if (np) {
1545                reg_base = of_iomap(np, 0);
1546                if (!reg_base)
1547                        panic("%s: failed to map registers\n", __func__);
1548        } else {
1549                panic("%s: unable to determine soc\n", __func__);
1550        }
1551
1552        exynos5x_soc = soc;
1553
1554        ctx = samsung_clk_init(np, reg_base, CLK_NR_CLKS);
1555
1556        samsung_clk_of_register_fixed_ext(ctx, exynos5x_fixed_rate_ext_clks,
1557                        ARRAY_SIZE(exynos5x_fixed_rate_ext_clks),
1558                        ext_clk_match);
1559
1560        if (_get_rate("fin_pll") == 24 * MHZ) {
1561                exynos5x_plls[apll].rate_table = exynos5420_pll2550x_24mhz_tbl;
1562                exynos5x_plls[epll].rate_table = exynos5420_epll_24mhz_tbl;
1563                exynos5x_plls[kpll].rate_table = exynos5420_pll2550x_24mhz_tbl;
1564        }
1565
1566        if (soc == EXYNOS5420)
1567                exynos5x_plls[bpll].rate_table = exynos5420_pll2550x_24mhz_tbl;
1568        else
1569                exynos5x_plls[bpll].rate_table = exynos5422_bpll_rate_table;
1570
1571        samsung_clk_register_pll(ctx, exynos5x_plls, ARRAY_SIZE(exynos5x_plls),
1572                                        reg_base);
1573        samsung_clk_register_fixed_rate(ctx, exynos5x_fixed_rate_clks,
1574                        ARRAY_SIZE(exynos5x_fixed_rate_clks));
1575        samsung_clk_register_fixed_factor(ctx, exynos5x_fixed_factor_clks,
1576                        ARRAY_SIZE(exynos5x_fixed_factor_clks));
1577        samsung_clk_register_mux(ctx, exynos5x_mux_clks,
1578                        ARRAY_SIZE(exynos5x_mux_clks));
1579        samsung_clk_register_div(ctx, exynos5x_div_clks,
1580                        ARRAY_SIZE(exynos5x_div_clks));
1581        samsung_clk_register_gate(ctx, exynos5x_gate_clks,
1582                        ARRAY_SIZE(exynos5x_gate_clks));
1583
1584        if (soc == EXYNOS5420) {
1585                samsung_clk_register_mux(ctx, exynos5420_mux_clks,
1586                                ARRAY_SIZE(exynos5420_mux_clks));
1587                samsung_clk_register_div(ctx, exynos5420_div_clks,
1588                                ARRAY_SIZE(exynos5420_div_clks));
1589                samsung_clk_register_gate(ctx, exynos5420_gate_clks,
1590                                ARRAY_SIZE(exynos5420_gate_clks));
1591        } else {
1592                samsung_clk_register_fixed_factor(
1593                                ctx, exynos5800_fixed_factor_clks,
1594                                ARRAY_SIZE(exynos5800_fixed_factor_clks));
1595                samsung_clk_register_mux(ctx, exynos5800_mux_clks,
1596                                ARRAY_SIZE(exynos5800_mux_clks));
1597                samsung_clk_register_div(ctx, exynos5800_div_clks,
1598                                ARRAY_SIZE(exynos5800_div_clks));
1599                samsung_clk_register_gate(ctx, exynos5800_gate_clks,
1600                                ARRAY_SIZE(exynos5800_gate_clks));
1601        }
1602
1603        if (soc == EXYNOS5420) {
1604                exynos_register_cpu_clock(ctx, CLK_ARM_CLK, "armclk",
1605                        mout_cpu_p[0], mout_cpu_p[1], 0x200,
1606                        exynos5420_eglclk_d, ARRAY_SIZE(exynos5420_eglclk_d), 0);
1607        } else {
1608                exynos_register_cpu_clock(ctx, CLK_ARM_CLK, "armclk",
1609                        mout_cpu_p[0], mout_cpu_p[1], 0x200,
1610                        exynos5800_eglclk_d, ARRAY_SIZE(exynos5800_eglclk_d), 0);
1611        }
1612        exynos_register_cpu_clock(ctx, CLK_KFC_CLK, "kfcclk",
1613                mout_kfc_p[0], mout_kfc_p[1], 0x28200,
1614                exynos5420_kfcclk_d, ARRAY_SIZE(exynos5420_kfcclk_d), 0);
1615
1616        samsung_clk_extended_sleep_init(reg_base,
1617                exynos5x_clk_regs, ARRAY_SIZE(exynos5x_clk_regs),
1618                exynos5420_set_clksrc, ARRAY_SIZE(exynos5420_set_clksrc));
1619
1620        if (soc == EXYNOS5800) {
1621                samsung_clk_sleep_init(reg_base, exynos5800_clk_regs,
1622                                       ARRAY_SIZE(exynos5800_clk_regs));
1623
1624                exynos5_subcmus_init(ctx, ARRAY_SIZE(exynos5800_subcmus),
1625                                     exynos5800_subcmus);
1626        } else {
1627                exynos5_subcmus_init(ctx, ARRAY_SIZE(exynos5x_subcmus),
1628                                     exynos5x_subcmus);
1629        }
1630
1631        samsung_clk_of_add_provider(np, ctx);
1632}
1633
1634static void __init exynos5420_clk_init(struct device_node *np)
1635{
1636        exynos5x_clk_init(np, EXYNOS5420);
1637}
1638CLK_OF_DECLARE_DRIVER(exynos5420_clk, "samsung,exynos5420-clock",
1639                      exynos5420_clk_init);
1640
1641static void __init exynos5800_clk_init(struct device_node *np)
1642{
1643        exynos5x_clk_init(np, EXYNOS5800);
1644}
1645CLK_OF_DECLARE_DRIVER(exynos5800_clk, "samsung,exynos5800-clock",
1646                      exynos5800_clk_init);
1647