ARM: cpu topology: Add debugfs interface for cpu_power
[cmplus.git] / arch / arm / mach-omap2 / voltagedomains2xxx_data.c
blob69ff261ff1cbe2ab190bbc06cba6a8551b1d9bd3
1 /*
2 * OMAP3 voltage domain data
4 * Copyright (C) 2007, 2010 Texas Instruments, Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10 #include <linux/kernel.h>
11 #include <linux/init.h>
13 #include "voltage.h"
15 static struct voltagedomain omap2_voltdm_core = {
16 .name = "core",
19 static struct voltagedomain omap2_voltdm_wkup = {
20 .name = "wakeup",
23 static struct voltagedomain *voltagedomains_omap2[] __initdata = {
24 &omap2_voltdm_core,
25 &omap2_voltdm_wkup,
26 NULL,
29 void __init omap2xxx_voltagedomains_init(void)
31 voltdm_init(voltagedomains_omap2);