blob: 275dde8cb27aa789ce4d9bfa89c8ed92fb122711 [file] [log] [blame]
Peter Ujfalusia53b8e32011-06-04 08:16:41 +03001#ifndef __OMAP_PMIC_COMMON__
2#define __OMAP_PMIC_COMMON__
3
Kevin Hilman46232a32011-11-23 14:43:01 -08004#include <plat/irqs.h>
5
Peter Ujfalusib22f9542011-06-07 10:26:46 +03006#define TWL_COMMON_PDATA_USB (1 << 0)
Peter Ujfalusi827ed9a2011-06-07 10:28:54 +03007#define TWL_COMMON_PDATA_BCI (1 << 1)
8#define TWL_COMMON_PDATA_MADC (1 << 2)
9#define TWL_COMMON_PDATA_AUDIO (1 << 3)
Peter Ujfalusib22f9542011-06-07 10:26:46 +030010
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 Ujfalusib252b0e2011-06-07 11:38:24 +030026/* TWL4030 LDO regulators */
27#define TWL_COMMON_REGULATOR_VPLL1 (1 << 4)
28#define TWL_COMMON_REGULATOR_VPLL2 (1 << 5)
29
30
Peter Ujfalusia53b8e32011-06-04 08:16:41 +030031struct twl4030_platform_data;
32
33void omap_pmic_init(int bus, u32 clkrate, const char *pmic_type, int pmic_irq,
34 struct twl4030_platform_data *pmic_data);
Kevin Hilman46232a32011-11-23 14:43:01 -080035void omap_pmic_late_init(void);
Peter Ujfalusia53b8e32011-06-04 08:16:41 +030036
37static inline void omap2_pmic_init(const char *pmic_type,
38 struct twl4030_platform_data *pmic_data)
39{
40 omap_pmic_init(2, 2600, pmic_type, INT_24XX_SYS_NIRQ, pmic_data);
41}
42
43static inline void omap3_pmic_init(const char *pmic_type,
44 struct twl4030_platform_data *pmic_data)
45{
46 omap_pmic_init(1, 2600, pmic_type, INT_34XX_SYS_NIRQ, pmic_data);
47}
48
49static inline void omap4_pmic_init(const char *pmic_type,
50 struct twl4030_platform_data *pmic_data)
51{
52 /* Phoenix Audio IC needs I2C1 to start with 400 KHz or less */
53 omap_pmic_init(1, 400, pmic_type, OMAP44XX_IRQ_SYS_1N, pmic_data);
54}
55
Peter Ujfalusi827ed9a2011-06-07 10:28:54 +030056void omap3_pmic_get_config(struct twl4030_platform_data *pmic_data,
57 u32 pdata_flags, u32 regulators_flags);
58
Peter Ujfalusib22f9542011-06-07 10:26:46 +030059void omap4_pmic_get_config(struct twl4030_platform_data *pmic_data,
60 u32 pdata_flags, u32 regulators_flags);
61
Peter Ujfalusia53b8e32011-06-04 08:16:41 +030062#endif /* __OMAP_PMIC_COMMON__ */