Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 226655
b: refs/heads/master
c: f17f972
h: refs/heads/master
i:
  226653: 503c0e2
  226651: 66ea76f
  226647: 254d69d
  226639: 264aa9f
  226623: 66aabc9
v: v3
  • Loading branch information
Jon Hunter authored and Paul Walmsley committed Dec 22, 2010
1 parent 2a89892 commit d15b385
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9bf8391846db849509a6aa6f1f0659843ca30662
refs/heads/master: f17f9726c27c3921e00a5750e85070e6dd7e1ff7
33 changes: 22 additions & 11 deletions trunk/arch/arm/mach-omap2/clock44xx_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,8 @@ static struct clk abe_24m_fclk = {
.name = "abe_24m_fclk",
.parent = &dpll_abe_m2x2_ck,
.ops = &clkops_null,
.recalc = &followparent_recalc,
.fixed_div = 8,
.recalc = &omap_fixed_divisor_recalc,
};

static const struct clksel_rate div3_1to4_rates[] = {
Expand Down Expand Up @@ -505,7 +506,8 @@ static struct clk ddrphy_ck = {
.name = "ddrphy_ck",
.parent = &dpll_core_m2_ck,
.ops = &clkops_null,
.recalc = &followparent_recalc,
.fixed_div = 2,
.recalc = &omap_fixed_divisor_recalc,
};

static struct clk dpll_core_m5x2_ck = {
Expand Down Expand Up @@ -590,7 +592,8 @@ static struct clk dll_clk_div_ck = {
.name = "dll_clk_div_ck",
.parent = &dpll_core_m4x2_ck,
.ops = &clkops_null,
.recalc = &followparent_recalc,
.fixed_div = 2,
.recalc = &omap_fixed_divisor_recalc,
};

static const struct clksel dpll_abe_m2_div[] = {
Expand Down Expand Up @@ -772,7 +775,8 @@ static struct clk per_hs_clk_div_ck = {
.name = "per_hs_clk_div_ck",
.parent = &dpll_abe_m3x2_ck,
.ops = &clkops_null,
.recalc = &followparent_recalc,
.fixed_div = 2,
.recalc = &omap_fixed_divisor_recalc,
};

static const struct clksel per_hsd_byp_clk_mux_sel[] = {
Expand Down Expand Up @@ -986,7 +990,8 @@ static struct clk usb_hs_clk_div_ck = {
.name = "usb_hs_clk_div_ck",
.parent = &dpll_abe_m3x2_ck,
.ops = &clkops_null,
.recalc = &followparent_recalc,
.fixed_div = 3,
.recalc = &omap_fixed_divisor_recalc,
};

/* DPLL_USB */
Expand Down Expand Up @@ -1066,21 +1071,24 @@ static struct clk func_12m_fclk = {
.name = "func_12m_fclk",
.parent = &dpll_per_m2x2_ck,
.ops = &clkops_null,
.recalc = &followparent_recalc,
.fixed_div = 16,
.recalc = &omap_fixed_divisor_recalc,
};

static struct clk func_24m_clk = {
.name = "func_24m_clk",
.parent = &dpll_per_m2_ck,
.ops = &clkops_null,
.recalc = &followparent_recalc,
.fixed_div = 4,
.recalc = &omap_fixed_divisor_recalc,
};

static struct clk func_24mc_fclk = {
.name = "func_24mc_fclk",
.parent = &dpll_per_m2x2_ck,
.ops = &clkops_null,
.recalc = &followparent_recalc,
.fixed_div = 8,
.recalc = &omap_fixed_divisor_recalc,
};

static const struct clksel_rate div2_4to8_rates[] = {
Expand Down Expand Up @@ -1110,7 +1118,8 @@ static struct clk func_48mc_fclk = {
.name = "func_48mc_fclk",
.parent = &dpll_per_m2x2_ck,
.ops = &clkops_null,
.recalc = &followparent_recalc,
.fixed_div = 4,
.recalc = &omap_fixed_divisor_recalc,
};

static const struct clksel_rate div2_2to4_rates[] = {
Expand Down Expand Up @@ -1227,7 +1236,8 @@ static struct clk lp_clk_div_ck = {
.name = "lp_clk_div_ck",
.parent = &dpll_abe_m2x2_ck,
.ops = &clkops_null,
.recalc = &followparent_recalc,
.fixed_div = 16,
.recalc = &omap_fixed_divisor_recalc,
};

static const struct clksel l4_wkup_clk_mux_sel[] = {
Expand Down Expand Up @@ -1295,7 +1305,8 @@ static struct clk per_abe_24m_fclk = {
.name = "per_abe_24m_fclk",
.parent = &dpll_abe_m2_ck,
.ops = &clkops_null,
.recalc = &followparent_recalc,
.fixed_div = 4,
.recalc = &omap_fixed_divisor_recalc,
};

static const struct clksel pmd_stm_clock_mux_sel[] = {
Expand Down

0 comments on commit d15b385

Please sign in to comment.