aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/plat-mxc/include
diff options
context:
space:
mode:
authorLily Zhang <r58066@freescale.com>2010-12-16 12:47:09 +0800
committerLily Zhang <r58066@freescale.com>2011-01-07 10:30:25 +0800
commit5f90f5c7c4c1bfc29c1cb1f5efa856c8b30948a9 (patch)
treea65bcddbacb0c5986851b948b06b7c4cfe24036f /arch/arm/plat-mxc/include
parent639a190b01cf99f5b3689ecd5163fae3b91a39ab (diff)
ENGR00137628 MX5: add busfreq platform data
Add platform data for MX5 bus frequency driver. Update regulator name for DA9053 PMIC. Otherwise, the system is broken to enter suspend Signed-off-by: Lily Zhang <r58066@freescale.com>
Diffstat (limited to 'arch/arm/plat-mxc/include')
-rw-r--r--arch/arm/plat-mxc/include/mach/mxc_dvfs.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/arch/arm/plat-mxc/include/mach/mxc_dvfs.h b/arch/arm/plat-mxc/include/mach/mxc_dvfs.h
index 05c6ea4bda7..35aefaa8796 100644
--- a/arch/arm/plat-mxc/include/mach/mxc_dvfs.h
+++ b/arch/arm/plat-mxc/include/mach/mxc_dvfs.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2009-2010 Freescale Semiconductor, Inc. All Rights Reserved.
+ * Copyright (C) 2009-2011 Freescale Semiconductor, Inc. All Rights Reserved.
*/
/*
@@ -226,6 +226,17 @@ struct mxc_dvfsper_data {
u32 lp_low;
};
+/*!
+ * This structure is used to define the platform data of bus freq
+ * driver. It includes the regulator name strings.
+ */
+
+struct mxc_bus_freq_platform_data {
+ /* VDDGP regulator name */
+ char *gp_reg_id;
+ /* VCC regulator name */
+ char *lp_reg_id;
+};
#if defined(CONFIG_MXC_DVFS_PER)
extern int start_dvfs_per(void);