Peter Ujfalusi | a53b8e3 | 2011-06-04 08:16:41 +0300 | [diff] [blame] | 1 | #ifndef __OMAP_PMIC_COMMON__ |
| 2 | #define __OMAP_PMIC_COMMON__ |
| 3 | |
Kevin Hilman | 46232a3 | 2011-11-23 14:43:01 -0800 | [diff] [blame] | 4 | #include <plat/irqs.h> |
| 5 | |
Peter Ujfalusi | b22f954 | 2011-06-07 10:26:46 +0300 | [diff] [blame] | 6 | #define TWL_COMMON_PDATA_USB (1 << 0) |
Peter Ujfalusi | 827ed9a | 2011-06-07 10:28:54 +0300 | [diff] [blame] | 7 | #define TWL_COMMON_PDATA_BCI (1 << 1) |
| 8 | #define TWL_COMMON_PDATA_MADC (1 << 2) |
| 9 | #define TWL_COMMON_PDATA_AUDIO (1 << 3) |
Peter Ujfalusi | b22f954 | 2011-06-07 10:26:46 +0300 | [diff] [blame] | 10 | |
| 11 | /* Common LDO regulators for TWL4030/TWL6030 */ |
| 12 | #define TWL_COMMON_REGULATOR_VDAC (1 << 0) |
| 13 | #define TWL_COMMON_REGULATOR_VAUX1 (1 << 1) |
| 14 | #define TWL_COMMON_REGULATOR_VAUX2 (1 << 2) |
| 15 | #define TWL_COMMON_REGULATOR_VAUX3 (1 << 3) |
| 16 | |
| 17 | /* TWL6030 LDO regulators */ |
| 18 | #define TWL_COMMON_REGULATOR_VMMC (1 << 4) |
| 19 | #define TWL_COMMON_REGULATOR_VPP (1 << 5) |
| 20 | #define TWL_COMMON_REGULATOR_VUSIM (1 << 6) |
| 21 | #define TWL_COMMON_REGULATOR_VANA (1 << 7) |
| 22 | #define TWL_COMMON_REGULATOR_VCXIO (1 << 8) |
| 23 | #define TWL_COMMON_REGULATOR_VUSB (1 << 9) |
| 24 | #define TWL_COMMON_REGULATOR_CLK32KG (1 << 10) |
| 25 | |
Peter Ujfalusi | b252b0e | 2011-06-07 11:38:24 +0300 | [diff] [blame] | 26 | /* TWL4030 LDO regulators */ |
| 27 | #define TWL_COMMON_REGULATOR_VPLL1 (1 << 4) |
| 28 | #define TWL_COMMON_REGULATOR_VPLL2 (1 << 5) |
| 29 | |
| 30 | |
Peter Ujfalusi | a53b8e3 | 2011-06-04 08:16:41 +0300 | [diff] [blame] | 31 | struct twl4030_platform_data; |
Peter Ujfalusi | 8eaeb93 | 2012-04-03 11:56:51 +0300 | [diff] [blame] | 32 | struct twl6040_platform_data; |
Peter Ujfalusi | a53b8e3 | 2011-06-04 08:16:41 +0300 | [diff] [blame] | 33 | |
| 34 | void omap_pmic_init(int bus, u32 clkrate, const char *pmic_type, int pmic_irq, |
| 35 | struct twl4030_platform_data *pmic_data); |
Kevin Hilman | 46232a3 | 2011-11-23 14:43:01 -0800 | [diff] [blame] | 36 | void omap_pmic_late_init(void); |
Peter Ujfalusi | a53b8e3 | 2011-06-04 08:16:41 +0300 | [diff] [blame] | 37 | |
| 38 | static inline void omap2_pmic_init(const char *pmic_type, |
| 39 | struct twl4030_platform_data *pmic_data) |
| 40 | { |
| 41 | omap_pmic_init(2, 2600, pmic_type, INT_24XX_SYS_NIRQ, pmic_data); |
| 42 | } |
| 43 | |
| 44 | static inline void omap3_pmic_init(const char *pmic_type, |
| 45 | struct twl4030_platform_data *pmic_data) |
| 46 | { |
| 47 | omap_pmic_init(1, 2600, pmic_type, INT_34XX_SYS_NIRQ, pmic_data); |
| 48 | } |
| 49 | |
Peter Ujfalusi | 8eaeb93 | 2012-04-03 11:56:51 +0300 | [diff] [blame] | 50 | void omap4_pmic_init(const char *pmic_type, |
| 51 | struct twl4030_platform_data *pmic_data, |
| 52 | struct twl6040_platform_data *audio_data, int twl6040_irq); |
Peter Ujfalusi | a53b8e3 | 2011-06-04 08:16:41 +0300 | [diff] [blame] | 53 | |
Peter Ujfalusi | 827ed9a | 2011-06-07 10:28:54 +0300 | [diff] [blame] | 54 | void omap3_pmic_get_config(struct twl4030_platform_data *pmic_data, |
| 55 | u32 pdata_flags, u32 regulators_flags); |
| 56 | |
Peter Ujfalusi | b22f954 | 2011-06-07 10:26:46 +0300 | [diff] [blame] | 57 | void omap4_pmic_get_config(struct twl4030_platform_data *pmic_data, |
| 58 | u32 pdata_flags, u32 regulators_flags); |
| 59 | |
Peter Ujfalusi | a53b8e3 | 2011-06-04 08:16:41 +0300 | [diff] [blame] | 60 | #endif /* __OMAP_PMIC_COMMON__ */ |