Commit 6b262bf1 authored by Kukjin Kim's avatar Kukjin Kim

Merge branch 'for_3.16/clk_fixes_non_critical' of...

Merge branch 'for_3.16/clk_fixes_non_critical' of git://git.kernel.org/pub/scm/linux/kernel/git/tfiga/samsung-clk into v3.16-next/clk-samsung

Pull Samsung clock non-critical fixes from Tomasz Figa:

"This pull requests contains a number of non-critical fixes for Samsung clock
framework and drivers, including:

1) a series of fixes for Exynos5420 to correct clock definitions and make the
driver closer to the documentation,

2) several missing clocks and clock IDs added to Exynos4, Exynos5250 and
Exynos5420 drivers,

3) fix for incorrect initialization of clock table with NULL,

4) compiler warning fix."
Acked-by: default avatarMike Turquette <mturquette@linaro.org>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parents 4b2f5cd0 77342432
...@@ -549,7 +549,7 @@ hsi2c_4: i2c@12CA0000 { ...@@ -549,7 +549,7 @@ hsi2c_4: i2c@12CA0000 {
#size-cells = <0>; #size-cells = <0>;
pinctrl-names = "default"; pinctrl-names = "default";
pinctrl-0 = <&i2c4_hs_bus>; pinctrl-0 = <&i2c4_hs_bus>;
clocks = <&clock CLK_I2C4>; clocks = <&clock CLK_USI0>;
clock-names = "hsi2c"; clock-names = "hsi2c";
status = "disabled"; status = "disabled";
}; };
...@@ -562,7 +562,7 @@ hsi2c_5: i2c@12CB0000 { ...@@ -562,7 +562,7 @@ hsi2c_5: i2c@12CB0000 {
#size-cells = <0>; #size-cells = <0>;
pinctrl-names = "default"; pinctrl-names = "default";
pinctrl-0 = <&i2c5_hs_bus>; pinctrl-0 = <&i2c5_hs_bus>;
clocks = <&clock CLK_I2C5>; clocks = <&clock CLK_USI1>;
clock-names = "hsi2c"; clock-names = "hsi2c";
status = "disabled"; status = "disabled";
}; };
...@@ -575,7 +575,7 @@ hsi2c_6: i2c@12CC0000 { ...@@ -575,7 +575,7 @@ hsi2c_6: i2c@12CC0000 {
#size-cells = <0>; #size-cells = <0>;
pinctrl-names = "default"; pinctrl-names = "default";
pinctrl-0 = <&i2c6_hs_bus>; pinctrl-0 = <&i2c6_hs_bus>;
clocks = <&clock CLK_I2C6>; clocks = <&clock CLK_USI2>;
clock-names = "hsi2c"; clock-names = "hsi2c";
status = "disabled"; status = "disabled";
}; };
...@@ -588,7 +588,7 @@ hsi2c_7: i2c@12CD0000 { ...@@ -588,7 +588,7 @@ hsi2c_7: i2c@12CD0000 {
#size-cells = <0>; #size-cells = <0>;
pinctrl-names = "default"; pinctrl-names = "default";
pinctrl-0 = <&i2c7_hs_bus>; pinctrl-0 = <&i2c7_hs_bus>;
clocks = <&clock CLK_I2C7>; clocks = <&clock CLK_USI3>;
clock-names = "hsi2c"; clock-names = "hsi2c";
status = "disabled"; status = "disabled";
}; };
...@@ -601,7 +601,7 @@ hsi2c_8: i2c@12E00000 { ...@@ -601,7 +601,7 @@ hsi2c_8: i2c@12E00000 {
#size-cells = <0>; #size-cells = <0>;
pinctrl-names = "default"; pinctrl-names = "default";
pinctrl-0 = <&i2c8_hs_bus>; pinctrl-0 = <&i2c8_hs_bus>;
clocks = <&clock CLK_I2C8>; clocks = <&clock CLK_USI4>;
clock-names = "hsi2c"; clock-names = "hsi2c";
status = "disabled"; status = "disabled";
}; };
...@@ -614,7 +614,7 @@ hsi2c_9: i2c@12E10000 { ...@@ -614,7 +614,7 @@ hsi2c_9: i2c@12E10000 {
#size-cells = <0>; #size-cells = <0>;
pinctrl-names = "default"; pinctrl-names = "default";
pinctrl-0 = <&i2c9_hs_bus>; pinctrl-0 = <&i2c9_hs_bus>;
clocks = <&clock CLK_I2C9>; clocks = <&clock CLK_USI5>;
clock-names = "hsi2c"; clock-names = "hsi2c";
status = "disabled"; status = "disabled";
}; };
...@@ -627,7 +627,7 @@ hsi2c_10: i2c@12E20000 { ...@@ -627,7 +627,7 @@ hsi2c_10: i2c@12E20000 {
#size-cells = <0>; #size-cells = <0>;
pinctrl-names = "default"; pinctrl-names = "default";
pinctrl-0 = <&i2c10_hs_bus>; pinctrl-0 = <&i2c10_hs_bus>;
clocks = <&clock CLK_I2C10>; clocks = <&clock CLK_USI6>;
clock-names = "hsi2c"; clock-names = "hsi2c";
status = "disabled"; status = "disabled";
}; };
......
...@@ -428,7 +428,7 @@ static struct samsung_fixed_rate_clock exynos4_fixed_rate_ext_clks[] __initdata ...@@ -428,7 +428,7 @@ static struct samsung_fixed_rate_clock exynos4_fixed_rate_ext_clks[] __initdata
/* fixed rate clocks generated inside the soc */ /* fixed rate clocks generated inside the soc */
static struct samsung_fixed_rate_clock exynos4_fixed_rate_clks[] __initdata = { static struct samsung_fixed_rate_clock exynos4_fixed_rate_clks[] __initdata = {
FRATE(0, "sclk_hdmi24m", NULL, CLK_IS_ROOT, 24000000), FRATE(0, "sclk_hdmi24m", NULL, CLK_IS_ROOT, 24000000),
FRATE(0, "sclk_hdmiphy", NULL, CLK_IS_ROOT, 27000000), FRATE(CLK_SCLK_HDMIPHY, "sclk_hdmiphy", NULL, CLK_IS_ROOT, 27000000),
FRATE(0, "sclk_usbphy0", NULL, CLK_IS_ROOT, 48000000), FRATE(0, "sclk_usbphy0", NULL, CLK_IS_ROOT, 48000000),
}; };
...@@ -903,7 +903,7 @@ static struct samsung_gate_clock exynos4x12_gate_clks[] __initdata = { ...@@ -903,7 +903,7 @@ static struct samsung_gate_clock exynos4x12_gate_clks[] __initdata = {
GATE(CLK_AUDSS, "audss", "sclk_epll", E4X12_GATE_IP_MAUDIO, 0, 0, 0), GATE(CLK_AUDSS, "audss", "sclk_epll", E4X12_GATE_IP_MAUDIO, 0, 0, 0),
GATE(CLK_MDNIE0, "mdnie0", "aclk160", GATE_IP_LCD0, 2, 0, 0), GATE(CLK_MDNIE0, "mdnie0", "aclk160", GATE_IP_LCD0, 2, 0, 0),
GATE(CLK_ROTATOR, "rotator", "aclk200", E4X12_GATE_IP_IMAGE, 1, 0, 0), GATE(CLK_ROTATOR, "rotator", "aclk200", E4X12_GATE_IP_IMAGE, 1, 0, 0),
GATE(CLK_MDMA2, "mdma2", "aclk200", E4X12_GATE_IP_IMAGE, 2, 0, 0), GATE(CLK_MDMA, "mdma", "aclk200", E4X12_GATE_IP_IMAGE, 2, 0, 0),
GATE(CLK_SMMU_MDMA, "smmu_mdma", "aclk200", E4X12_GATE_IP_IMAGE, 5, 0, GATE(CLK_SMMU_MDMA, "smmu_mdma", "aclk200", E4X12_GATE_IP_IMAGE, 5, 0,
0), 0),
GATE(CLK_MIPI_HSI, "mipi_hsi", "aclk133", GATE_IP_FSYS, 10, 0, 0), GATE(CLK_MIPI_HSI, "mipi_hsi", "aclk133", GATE_IP_FSYS, 10, 0, 0),
......
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
#define VPLL_CON0 0x10140 #define VPLL_CON0 0x10140
#define GPLL_CON0 0x10150 #define GPLL_CON0 0x10150
#define SRC_TOP0 0x10210 #define SRC_TOP0 0x10210
#define SRC_TOP1 0x10214
#define SRC_TOP2 0x10218 #define SRC_TOP2 0x10218
#define SRC_TOP3 0x1021c #define SRC_TOP3 0x1021c
#define SRC_GSCL 0x10220 #define SRC_GSCL 0x10220
...@@ -71,6 +72,7 @@ ...@@ -71,6 +72,7 @@
#define GATE_IP_GSCL 0x10920 #define GATE_IP_GSCL 0x10920
#define GATE_IP_DISP1 0x10928 #define GATE_IP_DISP1 0x10928
#define GATE_IP_MFC 0x1092c #define GATE_IP_MFC 0x1092c
#define GATE_IP_G3D 0x10930
#define GATE_IP_GEN 0x10934 #define GATE_IP_GEN 0x10934
#define GATE_IP_FSYS 0x10944 #define GATE_IP_FSYS 0x10944
#define GATE_IP_PERIC 0x10950 #define GATE_IP_PERIC 0x10950
...@@ -100,6 +102,7 @@ static unsigned long exynos5250_clk_regs[] __initdata = { ...@@ -100,6 +102,7 @@ static unsigned long exynos5250_clk_regs[] __initdata = {
DIV_CPU0, DIV_CPU0,
SRC_CORE1, SRC_CORE1,
SRC_TOP0, SRC_TOP0,
SRC_TOP1,
SRC_TOP2, SRC_TOP2,
SRC_TOP3, SRC_TOP3,
SRC_GSCL, SRC_GSCL,
...@@ -133,6 +136,7 @@ static unsigned long exynos5250_clk_regs[] __initdata = { ...@@ -133,6 +136,7 @@ static unsigned long exynos5250_clk_regs[] __initdata = {
DIV_PERIC5, DIV_PERIC5,
GATE_IP_GSCL, GATE_IP_GSCL,
GATE_IP_MFC, GATE_IP_MFC,
GATE_IP_G3D,
GATE_IP_GEN, GATE_IP_GEN,
GATE_IP_FSYS, GATE_IP_FSYS,
GATE_IP_PERIC, GATE_IP_PERIC,
...@@ -189,10 +193,12 @@ PNAME(mout_vpllsrc_p) = { "fin_pll", "sclk_hdmi27m" }; ...@@ -189,10 +193,12 @@ PNAME(mout_vpllsrc_p) = { "fin_pll", "sclk_hdmi27m" };
PNAME(mout_vpll_p) = { "mout_vpllsrc", "fout_vpll" }; PNAME(mout_vpll_p) = { "mout_vpllsrc", "fout_vpll" };
PNAME(mout_cpll_p) = { "fin_pll", "fout_cpll" }; PNAME(mout_cpll_p) = { "fin_pll", "fout_cpll" };
PNAME(mout_epll_p) = { "fin_pll", "fout_epll" }; PNAME(mout_epll_p) = { "fin_pll", "fout_epll" };
PNAME(mout_gpll_p) = { "fin_pll", "fout_gpll" };
PNAME(mout_mpll_user_p) = { "fin_pll", "mout_mpll" }; PNAME(mout_mpll_user_p) = { "fin_pll", "mout_mpll" };
PNAME(mout_bpll_user_p) = { "fin_pll", "mout_bpll" }; PNAME(mout_bpll_user_p) = { "fin_pll", "mout_bpll" };
PNAME(mout_aclk166_p) = { "mout_cpll", "mout_mpll_user" }; PNAME(mout_aclk166_p) = { "mout_cpll", "mout_mpll_user" };
PNAME(mout_aclk200_p) = { "mout_mpll_user", "mout_bpll_user" }; PNAME(mout_aclk200_p) = { "mout_mpll_user", "mout_bpll_user" };
PNAME(mout_aclk400_p) = { "mout_aclk400_g3d_mid", "mout_gpll" };
PNAME(mout_aclk200_sub_p) = { "fin_pll", "div_aclk200" }; PNAME(mout_aclk200_sub_p) = { "fin_pll", "div_aclk200" };
PNAME(mout_aclk266_sub_p) = { "fin_pll", "div_aclk266" }; PNAME(mout_aclk266_sub_p) = { "fin_pll", "div_aclk266" };
PNAME(mout_aclk333_sub_p) = { "fin_pll", "div_aclk333" }; PNAME(mout_aclk333_sub_p) = { "fin_pll", "div_aclk333" };
...@@ -273,12 +279,16 @@ static struct samsung_mux_clock exynos5250_mux_clks[] __initdata = { ...@@ -273,12 +279,16 @@ static struct samsung_mux_clock exynos5250_mux_clks[] __initdata = {
MUX(0, "mout_aclk166", mout_aclk166_p, SRC_TOP0, 8, 1), MUX(0, "mout_aclk166", mout_aclk166_p, SRC_TOP0, 8, 1),
MUX(0, "mout_aclk200", mout_aclk200_p, SRC_TOP0, 12, 1), MUX(0, "mout_aclk200", mout_aclk200_p, SRC_TOP0, 12, 1),
MUX(0, "mout_aclk333", mout_aclk166_p, SRC_TOP0, 16, 1), MUX(0, "mout_aclk333", mout_aclk166_p, SRC_TOP0, 16, 1),
MUX(0, "mout_aclk400_g3d_mid", mout_aclk200_p, SRC_TOP0, 20, 1),
MUX(0, "mout_aclk400_g3d", mout_aclk400_p, SRC_TOP1, 28, 1),
MUX(0, "mout_cpll", mout_cpll_p, SRC_TOP2, 8, 1), MUX(0, "mout_cpll", mout_cpll_p, SRC_TOP2, 8, 1),
MUX(0, "mout_epll", mout_epll_p, SRC_TOP2, 12, 1), MUX(0, "mout_epll", mout_epll_p, SRC_TOP2, 12, 1),
MUX(0, "mout_vpll", mout_vpll_p, SRC_TOP2, 16, 1), MUX(0, "mout_vpll", mout_vpll_p, SRC_TOP2, 16, 1),
MUX(0, "mout_mpll_user", mout_mpll_user_p, SRC_TOP2, 20, 1), MUX(0, "mout_mpll_user", mout_mpll_user_p, SRC_TOP2, 20, 1),
MUX(0, "mout_bpll_user", mout_bpll_user_p, SRC_TOP2, 24, 1), MUX(0, "mout_bpll_user", mout_bpll_user_p, SRC_TOP2, 24, 1),
MUX(CLK_MOUT_GPLL, "mout_gpll", mout_gpll_p, SRC_TOP2, 28, 1),
MUX(0, "mout_aclk200_disp1_sub", mout_aclk200_sub_p, SRC_TOP3, 4, 1), MUX(0, "mout_aclk200_disp1_sub", mout_aclk200_sub_p, SRC_TOP3, 4, 1),
MUX(0, "mout_aclk266_gscl_sub", mout_aclk266_sub_p, SRC_TOP3, 8, 1), MUX(0, "mout_aclk266_gscl_sub", mout_aclk266_sub_p, SRC_TOP3, 8, 1),
...@@ -351,6 +361,8 @@ static struct samsung_div_clock exynos5250_div_clks[] __initdata = { ...@@ -351,6 +361,8 @@ static struct samsung_div_clock exynos5250_div_clks[] __initdata = {
DIV(0, "div_aclk200", "mout_aclk200", DIV_TOP0, 12, 3), DIV(0, "div_aclk200", "mout_aclk200", DIV_TOP0, 12, 3),
DIV(0, "div_aclk266", "mout_mpll_user", DIV_TOP0, 16, 3), DIV(0, "div_aclk266", "mout_mpll_user", DIV_TOP0, 16, 3),
DIV(0, "div_aclk333", "mout_aclk333", DIV_TOP0, 20, 3), DIV(0, "div_aclk333", "mout_aclk333", DIV_TOP0, 20, 3),
DIV(0, "div_aclk400_g3d", "mout_aclk400_g3d", DIV_TOP0,
24, 3),
DIV(0, "div_aclk66_pre", "mout_mpll_user", DIV_TOP1, 24, 3), DIV(0, "div_aclk66_pre", "mout_mpll_user", DIV_TOP1, 24, 3),
...@@ -428,6 +440,7 @@ static struct samsung_gate_clock exynos5250_gate_clks[] __initdata = { ...@@ -428,6 +440,7 @@ static struct samsung_gate_clock exynos5250_gate_clks[] __initdata = {
* CMU_ACP * CMU_ACP
*/ */
GATE(CLK_MDMA0, "mdma0", "div_aclk266", GATE_IP_ACP, 1, 0, 0), GATE(CLK_MDMA0, "mdma0", "div_aclk266", GATE_IP_ACP, 1, 0, 0),
GATE(CLK_SSS, "sss", "div_aclk266", GATE_IP_ACP, 2, 0, 0),
GATE(CLK_G2D, "g2d", "div_aclk200", GATE_IP_ACP, 3, 0, 0), GATE(CLK_G2D, "g2d", "div_aclk200", GATE_IP_ACP, 3, 0, 0),
GATE(CLK_SMMU_MDMA0, "smmu_mdma0", "div_aclk266", GATE_IP_ACP, 5, 0, 0), GATE(CLK_SMMU_MDMA0, "smmu_mdma0", "div_aclk266", GATE_IP_ACP, 5, 0, 0),
...@@ -533,7 +546,8 @@ static struct samsung_gate_clock exynos5250_gate_clks[] __initdata = { ...@@ -533,7 +546,8 @@ static struct samsung_gate_clock exynos5250_gate_clks[] __initdata = {
0), 0),
GATE(CLK_SMMU_MFCL, "smmu_mfcl", "mout_aclk333_sub", GATE_IP_MFC, 2, 0, GATE(CLK_SMMU_MFCL, "smmu_mfcl", "mout_aclk333_sub", GATE_IP_MFC, 2, 0,
0), 0),
GATE(CLK_G3D, "g3d", "div_aclk400_g3d", GATE_IP_G3D, 0,
CLK_SET_RATE_PARENT, 0),
GATE(CLK_ROTATOR, "rotator", "div_aclk266", GATE_IP_GEN, 1, 0, 0), GATE(CLK_ROTATOR, "rotator", "div_aclk266", GATE_IP_GEN, 1, 0, 0),
GATE(CLK_JPEG, "jpeg", "div_aclk166", GATE_IP_GEN, 2, 0, 0), GATE(CLK_JPEG, "jpeg", "div_aclk166", GATE_IP_GEN, 2, 0, 0),
GATE(CLK_MDMA1, "mdma1", "div_aclk266", GATE_IP_GEN, 4, 0, 0), GATE(CLK_MDMA1, "mdma1", "div_aclk266", GATE_IP_GEN, 4, 0, 0),
......
This diff is collapsed.
...@@ -54,14 +54,19 @@ struct samsung_clk_provider *__init samsung_clk_init(struct device_node *np, ...@@ -54,14 +54,19 @@ struct samsung_clk_provider *__init samsung_clk_init(struct device_node *np,
struct samsung_clk_provider *ctx; struct samsung_clk_provider *ctx;
struct clk **clk_table; struct clk **clk_table;
int ret; int ret;
int i;
ctx = kzalloc(sizeof(struct samsung_clk_provider), GFP_KERNEL); ctx = kzalloc(sizeof(struct samsung_clk_provider), GFP_KERNEL);
if (!ctx) if (!ctx)
panic("could not allocate clock provider context.\n"); panic("could not allocate clock provider context.\n");
clk_table = kzalloc(sizeof(struct clk *) * nr_clks, GFP_KERNEL); clk_table = kcalloc(nr_clks, sizeof(struct clk *), GFP_KERNEL);
if (!clk_table) if (!clk_table)
panic("could not allocate clock lookup table\n"); panic("could not allocate clock lookup table\n");
for (i = 0; i < nr_clks; ++i)
clk_table[i] = ERR_PTR(-ENOENT);
ctx->reg_base = base; ctx->reg_base = base;
ctx->clk_data.clks = clk_table; ctx->clk_data.clks = clk_table;
ctx->clk_data.clk_num = nr_clks; ctx->clk_data.clk_num = nr_clks;
...@@ -288,7 +293,7 @@ void __init samsung_clk_of_register_fixed_ext(struct samsung_clk_provider *ctx, ...@@ -288,7 +293,7 @@ void __init samsung_clk_of_register_fixed_ext(struct samsung_clk_provider *ctx,
for_each_matching_node_and_match(clk_np, clk_matches, &match) { for_each_matching_node_and_match(clk_np, clk_matches, &match) {
if (of_property_read_u32(clk_np, "clock-frequency", &freq)) if (of_property_read_u32(clk_np, "clock-frequency", &freq))
continue; continue;
fixed_rate_clk[(u32)match->data].fixed_rate = freq; fixed_rate_clk[(unsigned long)match->data].fixed_rate = freq;
} }
samsung_clk_register_fixed_rate(ctx, fixed_rate_clk, nr_fixed_rate_clk); samsung_clk_register_fixed_rate(ctx, fixed_rate_clk, nr_fixed_rate_clk);
} }
......
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#define CLK_MOUT_MPLL_USER_C 18 /* Exynos4x12 only */ #define CLK_MOUT_MPLL_USER_C 18 /* Exynos4x12 only */
#define CLK_MOUT_CORE 19 #define CLK_MOUT_CORE 19
#define CLK_MOUT_APLL 20 #define CLK_MOUT_APLL 20
#define CLK_SCLK_HDMIPHY 22
/* gate for special clocks (sclk) */ /* gate for special clocks (sclk) */
#define CLK_SCLK_FIMC0 128 #define CLK_SCLK_FIMC0 128
...@@ -181,7 +182,6 @@ ...@@ -181,7 +182,6 @@
#define CLK_KEYIF 347 #define CLK_KEYIF 347
#define CLK_AUDSS 348 #define CLK_AUDSS 348
#define CLK_MIPI_HSI 349 /* Exynos4210 only */ #define CLK_MIPI_HSI 349 /* Exynos4210 only */
#define CLK_MDMA2 350 /* Exynos4210 only */
#define CLK_PIXELASYNCM0 351 #define CLK_PIXELASYNCM0 351
#define CLK_PIXELASYNCM1 352 #define CLK_PIXELASYNCM1 352
#define CLK_FIMC_LITE0 353 /* Exynos4x12 only */ #define CLK_FIMC_LITE0 353 /* Exynos4x12 only */
......
...@@ -150,11 +150,14 @@ ...@@ -150,11 +150,14 @@
#define CLK_G2D 345 #define CLK_G2D 345
#define CLK_MDMA0 346 #define CLK_MDMA0 346
#define CLK_SMMU_MDMA0 347 #define CLK_SMMU_MDMA0 347
#define CLK_SSS 348
#define CLK_G3D 349
/* mux clocks */ /* mux clocks */
#define CLK_MOUT_HDMI 1024 #define CLK_MOUT_HDMI 1024
#define CLK_MOUT_GPLL 1025
/* must be greater than maximal clock id */ /* must be greater than maximal clock id */
#define CLK_NR_CLKS 1025 #define CLK_NR_CLKS 1026
#endif /* _DT_BINDINGS_CLOCK_EXYNOS_5250_H */ #endif /* _DT_BINDINGS_CLOCK_EXYNOS_5250_H */
...@@ -58,6 +58,9 @@ ...@@ -58,6 +58,9 @@
#define CLK_SCLK_GSCL_WA 156 #define CLK_SCLK_GSCL_WA 156
#define CLK_SCLK_GSCL_WB 157 #define CLK_SCLK_GSCL_WB 157
#define CLK_SCLK_HDMIPHY 158 #define CLK_SCLK_HDMIPHY 158
#define CLK_MAU_EPLL 159
#define CLK_SCLK_HSIC_12M 160
#define CLK_SCLK_MPHY_IXTAL24 161
/* gate clocks */ /* gate clocks */
#define CLK_ACLK66_PERIC 256 #define CLK_ACLK66_PERIC 256
...@@ -69,10 +72,10 @@ ...@@ -69,10 +72,10 @@
#define CLK_I2C1 262 #define CLK_I2C1 262
#define CLK_I2C2 263 #define CLK_I2C2 263
#define CLK_I2C3 264 #define CLK_I2C3 264
#define CLK_I2C4 265 #define CLK_USI0 265
#define CLK_I2C5 266 #define CLK_USI1 266
#define CLK_I2C6 267 #define CLK_USI2 267
#define CLK_I2C7 268 #define CLK_USI3 268
#define CLK_I2C_HDMI 269 #define CLK_I2C_HDMI 269
#define CLK_TSADC 270 #define CLK_TSADC 270
#define CLK_SPI0 271 #define CLK_SPI0 271
...@@ -85,9 +88,9 @@ ...@@ -85,9 +88,9 @@
#define CLK_PCM2 278 #define CLK_PCM2 278
#define CLK_PWM 279 #define CLK_PWM 279
#define CLK_SPDIF 280 #define CLK_SPDIF 280
#define CLK_I2C8 281 #define CLK_USI4 281
#define CLK_I2C9 282 #define CLK_USI5 282
#define CLK_I2C10 283 #define CLK_USI6 283
#define CLK_ACLK66_PSGEN 300 #define CLK_ACLK66_PSGEN 300
#define CLK_CHIPID 301 #define CLK_CHIPID 301
#define CLK_SYSREG 302 #define CLK_SYSREG 302
...@@ -140,7 +143,8 @@ ...@@ -140,7 +143,8 @@
#define CLK_HDMI 413 #define CLK_HDMI 413
#define CLK_ACLK300_DISP1 420 #define CLK_ACLK300_DISP1 420
#define CLK_FIMD1 421 #define CLK_FIMD1 421
#define CLK_SMMU_FIMD1 422 #define CLK_SMMU_FIMD1M0 422
#define CLK_SMMU_FIMD1M1 423
#define CLK_ACLK166 430 #define CLK_ACLK166 430
#define CLK_MIXER 431 #define CLK_MIXER 431
#define CLK_ACLK266 440 #define CLK_ACLK266 440
...@@ -152,6 +156,7 @@ ...@@ -152,6 +156,7 @@
#define CLK_JPEG 451 #define CLK_JPEG 451
#define CLK_JPEG2 452 #define CLK_JPEG2 452
#define CLK_SMMU_JPEG 453 #define CLK_SMMU_JPEG 453
#define CLK_SMMU_JPEG2 454
#define CLK_ACLK300_GSCL 460 #define CLK_ACLK300_GSCL 460
#define CLK_SMMU_GSCL0 461 #define CLK_SMMU_GSCL0 461
#define CLK_SMMU_GSCL1 462 #define CLK_SMMU_GSCL1 462
...@@ -159,7 +164,7 @@ ...@@ -159,7 +164,7 @@
#define CLK_GSCL_WB 464 #define CLK_GSCL_WB 464
#define CLK_GSCL0 465 #define CLK_GSCL0 465
#define CLK_GSCL1 466 #define CLK_GSCL1 466
#define CLK_CLK_3AA 467 #define CLK_FIMC_3AA 467
#define CLK_ACLK266_G2D 470 #define CLK_ACLK266_G2D 470
#define CLK_SSS 471 #define CLK_SSS 471
#define CLK_SLIM_SSS 472 #define CLK_SLIM_SSS 472
...@@ -172,12 +177,28 @@ ...@@ -172,12 +177,28 @@
#define CLK_SMMU_FIMCL1 493 #define CLK_SMMU_FIMCL1 493
#define CLK_SMMU_FIMCL3 494 #define CLK_SMMU_FIMCL3 494
#define CLK_FIMC_LITE3 495 #define CLK_FIMC_LITE3 495
#define CLK_FIMC_LITE0 496
#define CLK_FIMC_LITE1 497
#define CLK_ACLK_G3D 500 #define CLK_ACLK_G3D 500
#define CLK_G3D 501 #define CLK_G3D 501
#define CLK_SMMU_MIXER 502 #define CLK_SMMU_MIXER 502
#define CLK_SMMU_G2D 503
#define CLK_SMMU_MDMA0 504
#define CLK_MC 505
#define CLK_TOP_RTC 506
#define CLK_SCLK_UART_ISP 510
#define CLK_SCLK_SPI0_ISP 511
#define CLK_SCLK_SPI1_ISP 512
#define CLK_SCLK_PWM_ISP 513
#define CLK_SCLK_ISP_SENSOR0 514
#define CLK_SCLK_ISP_SENSOR1 515
#define CLK_SCLK_ISP_SENSOR2 516
/* mux clocks */ /* mux clocks */
#define CLK_MOUT_HDMI 640 #define CLK_MOUT_HDMI 640
#define CLK_MOUT_G3D 641
#define CLK_MOUT_VPLL 642
#define CLK_MOUT_MAUDIO0 643
/* divider clocks */ /* divider clocks */
#define CLK_DOUT_PIXEL 768 #define CLK_DOUT_PIXEL 768
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment