Skip to content

Commit 65676a8

Browse files
Leonid IziumtsevGerrit Code Review
authored andcommitted
omap4: add additional mpu_dpll_param tables
Add several mpu dpll configurations to support 600MHz, 700MHz, 800MHz MPU Frequencies. Change-Id: I289b8d459cbdf2de8e2a07db78da7a1e228d85e3 Signed-off-by: Leonid Iziumtsev <[email protected]>
1 parent 6f8729c commit 65676a8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

arch/omap4/clock.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,18 @@ struct dpll_param mpu_dpll_param = {
6767
#endif
6868
};
6969

70+
struct dpll_param mpu_dpll_param_800mhz = {
71+
0x7d, 0x05, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
72+
};
73+
74+
struct dpll_param mpu_dpll_param_700mhz = {
75+
0x36b, 0x2f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
76+
};
77+
78+
struct dpll_param mpu_dpll_param_600mhz = {
79+
0x7d, 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
80+
};
81+
7082
const struct dpll_param per_dpll_param = {
7183
0x14, 0x00, 0x08, 0x06, 0x0c, 0x09, 0x04, 0x05,
7284
};

0 commit comments

Comments
 (0)