blob: d96c28987638b2e9f7fd69afa2b8506e4fbabede [file] [log] [blame]
Peter Ujfalusia53b8e32011-06-04 08:16:41 +03001#ifndef __OMAP_PMIC_COMMON__
2#define __OMAP_PMIC_COMMON__
3
Peter Ujfalusib22f9542011-06-07 10:26:46 +03004#define TWL_COMMON_PDATA_USB (1 << 0)
5
6/* Common LDO regulators for TWL4030/TWL6030 */
7#define TWL_COMMON_REGULATOR_VDAC (1 << 0)
8#define TWL_COMMON_REGULATOR_VAUX1 (1 << 1)
9#define TWL_COMMON_REGULATOR_VAUX2 (1 << 2)
10#define TWL_COMMON_REGULATOR_VAUX3 (1 << 3)
11
12/* TWL6030 LDO regulators */
13#define TWL_COMMON_REGULATOR_VMMC (1 << 4)
14#define TWL_COMMON_REGULATOR_VPP (1 << 5)
15#define TWL_COMMON_REGULATOR_VUSIM (1 << 6)
16#define TWL_COMMON_REGULATOR_VANA (1 << 7)
17#define TWL_COMMON_REGULATOR_VCXIO (1 << 8)
18#define TWL_COMMON_REGULATOR_VUSB (1 << 9)
19#define TWL_COMMON_REGULATOR_CLK32KG (1 << 10)
20
Peter Ujfalusia53b8e32011-06-04 08:16:41 +030021struct twl4030_platform_data;
22
23void omap_pmic_init(int bus, u32 clkrate, const char *pmic_type, int pmic_irq,
24 struct twl4030_platform_data *pmic_data);
25
26static inline void omap2_pmic_init(const char *pmic_type,
27 struct twl4030_platform_data *pmic_data)
28{
29 omap_pmic_init(2, 2600, pmic_type, INT_24XX_SYS_NIRQ, pmic_data);
30}
31
32static inline void omap3_pmic_init(const char *pmic_type,
33 struct twl4030_platform_data *pmic_data)
34{
35 omap_pmic_init(1, 2600, pmic_type, INT_34XX_SYS_NIRQ, pmic_data);
36}
37
38static inline void omap4_pmic_init(const char *pmic_type,
39 struct twl4030_platform_data *pmic_data)
40{
41 /* Phoenix Audio IC needs I2C1 to start with 400 KHz or less */
42 omap_pmic_init(1, 400, pmic_type, OMAP44XX_IRQ_SYS_1N, pmic_data);
43}
44
Peter Ujfalusib22f9542011-06-07 10:26:46 +030045void omap4_pmic_get_config(struct twl4030_platform_data *pmic_data,
46 u32 pdata_flags, u32 regulators_flags);
47
Peter Ujfalusia53b8e32011-06-04 08:16:41 +030048#endif /* __OMAP_PMIC_COMMON__ */