2 * OMAP3 OPP table definitions.
4 * Copyright (C) 2009-2010 Texas Instruments Incorporated - http://www.ti.com/
7 * Copyright (C) 2010 Nokia Corporation.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
14 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
15 * kind, whether express or implied; without even the implied warranty
16 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 #include <linux/module.h>
23 #include "omap_opp_data.h"
25 static struct omap_opp_def __initdata omap34xx_opp_def_list
[] = {
27 OPP_INITIALIZER("mpu", true, 125000000, 975000),
29 OPP_INITIALIZER("mpu", true, 250000000, 1075000),
31 OPP_INITIALIZER("mpu", true, 500000000, 1200000),
33 OPP_INITIALIZER("mpu", true, 550000000, 1270000),
35 OPP_INITIALIZER("mpu", true, 600000000, 1350000),
38 * L3 OPP1 - 41.5 MHz is disabled because: The voltage for that OPP is
39 * almost the same than the one at 83MHz thus providing very little
40 * gain for the power point of view. In term of energy it will even
41 * increase the consumption due to the very negative performance
42 * impact that frequency will do to the MPU and the whole system in
45 OPP_INITIALIZER("l3_main", false, 41500000, 975000),
47 OPP_INITIALIZER("l3_main", true, 83000000, 1050000),
49 OPP_INITIALIZER("l3_main", true, 166000000, 1150000),
52 OPP_INITIALIZER("iva", true, 90000000, 975000),
54 OPP_INITIALIZER("iva", true, 180000000, 1075000),
56 OPP_INITIALIZER("iva", true, 360000000, 1200000),
58 OPP_INITIALIZER("iva", true, 400000000, 1270000),
60 OPP_INITIALIZER("iva", true, 430000000, 1350000),
63 static struct omap_opp_def __initdata omap36xx_opp_def_list
[] = {
64 /* MPU OPP1 - OPP50 */
65 OPP_INITIALIZER("mpu", true, 300000000, 1012500),
66 /* MPU OPP2 - OPP100 */
67 OPP_INITIALIZER("mpu", true, 600000000, 1200000),
68 /* MPU OPP3 - OPP-Turbo */
69 OPP_INITIALIZER("mpu", false, 800000000, 1325000),
70 /* MPU OPP4 - OPP-SB */
71 OPP_INITIALIZER("mpu", false, 1000000000, 1375000),
74 OPP_INITIALIZER("l3_main", true, 100000000, 1000000),
75 /* L3 OPP2 - OPP100, OPP-Turbo, OPP-SB */
76 OPP_INITIALIZER("l3_main", true, 200000000, 1200000),
78 /* DSP OPP1 - OPP50 */
79 OPP_INITIALIZER("iva", true, 260000000, 1012500),
80 /* DSP OPP2 - OPP100 */
81 OPP_INITIALIZER("iva", true, 520000000, 1200000),
82 /* DSP OPP3 - OPP-Turbo */
83 OPP_INITIALIZER("iva", false, 660000000, 1325000),
84 /* DSP OPP4 - OPP-SB */
85 OPP_INITIALIZER("iva", false, 800000000, 1375000),
89 * omap3_opp_init() - initialize omap3 opp table
91 static int __init
omap3_opp_init(void)
95 if (!cpu_is_omap34xx())
98 if (cpu_is_omap3630())
99 r
= omap_init_opp_table(omap36xx_opp_def_list
,
100 ARRAY_SIZE(omap36xx_opp_def_list
));
102 r
= omap_init_opp_table(omap34xx_opp_def_list
,
103 ARRAY_SIZE(omap34xx_opp_def_list
));
107 device_initcall(omap3_opp_init
);