2 * OMAP2XXX powerdomain definitions
4 * Copyright (C) 2007-2008, 2011 Texas Instruments, Inc.
5 * Copyright (C) 2007-2011 Nokia Corporation
7 * Paul Walmsley, Jouni Högander
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/init.h>
18 #include "powerdomain.h"
19 #include "powerdomains2xxx_3xxx_data.h"
21 #include "prcm-common.h"
22 #include "prm2xxx_3xxx.h"
23 #include "prm-regbits-24xx.h"
25 /* 24XX powerdomains and dependencies */
29 static struct powerdomain dsp_pwrdm
= {
31 .prcm_offs
= OMAP24XX_DSP_MOD
,
32 .pwrsts
= PWRSTS_OFF_RET_ON
,
33 .pwrsts_logic_ret
= PWRSTS_RET
,
41 .voltdm
= { .name
= "core" },
44 static struct powerdomain mpu_24xx_pwrdm
= {
47 .pwrsts
= PWRSTS_OFF_RET_ON
,
48 .pwrsts_logic_ret
= PWRSTS_OFF_RET
,
56 .voltdm
= { .name
= "core" },
59 static struct powerdomain core_24xx_pwrdm
= {
61 .prcm_offs
= CORE_MOD
,
62 .pwrsts
= PWRSTS_OFF_RET_ON
,
65 [0] = PWRSTS_OFF_RET
, /* MEM1RETSTATE */
66 [1] = PWRSTS_OFF_RET
, /* MEM2RETSTATE */
67 [2] = PWRSTS_OFF_RET
, /* MEM3RETSTATE */
70 [0] = PWRSTS_OFF_RET_ON
, /* MEM1ONSTATE */
71 [1] = PWRSTS_OFF_RET_ON
, /* MEM2ONSTATE */
72 [2] = PWRSTS_OFF_RET_ON
, /* MEM3ONSTATE */
74 .voltdm
= { .name
= "core" },
79 * 2430-specific powerdomains
82 /* XXX 2430 KILLDOMAINWKUP bit? No current users apparently */
84 static struct powerdomain mdm_pwrdm
= {
86 .prcm_offs
= OMAP2430_MDM_MOD
,
87 .pwrsts
= PWRSTS_OFF_RET_ON
,
88 .pwrsts_logic_ret
= PWRSTS_RET
,
91 [0] = PWRSTS_RET
, /* MEMRETSTATE */
94 [0] = PWRSTS_ON
, /* MEMONSTATE */
96 .voltdm
= { .name
= "core" },
103 static struct powerdomain
*powerdomains_omap24xx
[] __initdata
= {
112 static struct powerdomain
*powerdomains_omap2430
[] __initdata
= {
117 void __init
omap242x_powerdomains_init(void)
119 if (!cpu_is_omap2420())
122 pwrdm_register_platform_funcs(&omap2_pwrdm_operations
);
123 pwrdm_register_pwrdms(powerdomains_omap24xx
);
124 pwrdm_complete_init();
127 void __init
omap243x_powerdomains_init(void)
129 if (!cpu_is_omap2430())
132 pwrdm_register_platform_funcs(&omap2_pwrdm_operations
);
133 pwrdm_register_pwrdms(powerdomains_omap24xx
);
134 pwrdm_register_pwrdms(powerdomains_omap2430
);
135 pwrdm_complete_init();