twl-common.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #ifndef __OMAP_PMIC_COMMON__
  2. #define __OMAP_PMIC_COMMON__
  3. #include "common.h"
  4. #define TWL_COMMON_PDATA_USB (1 << 0)
  5. #define TWL_COMMON_PDATA_BCI (1 << 1)
  6. #define TWL_COMMON_PDATA_MADC (1 << 2)
  7. #define TWL_COMMON_PDATA_AUDIO (1 << 3)
  8. /* Common LDO regulators for TWL4030/TWL6030 */
  9. #define TWL_COMMON_REGULATOR_VDAC (1 << 0)
  10. #define TWL_COMMON_REGULATOR_VAUX1 (1 << 1)
  11. #define TWL_COMMON_REGULATOR_VAUX2 (1 << 2)
  12. #define TWL_COMMON_REGULATOR_VAUX3 (1 << 3)
  13. /* TWL6030 LDO regulators */
  14. #define TWL_COMMON_REGULATOR_VMMC (1 << 4)
  15. #define TWL_COMMON_REGULATOR_VPP (1 << 5)
  16. #define TWL_COMMON_REGULATOR_VUSIM (1 << 6)
  17. #define TWL_COMMON_REGULATOR_VANA (1 << 7)
  18. #define TWL_COMMON_REGULATOR_VCXIO (1 << 8)
  19. #define TWL_COMMON_REGULATOR_VUSB (1 << 9)
  20. #define TWL_COMMON_REGULATOR_CLK32KG (1 << 10)
  21. #define TWL_COMMON_REGULATOR_V1V8 (1 << 11)
  22. #define TWL_COMMON_REGULATOR_V2V1 (1 << 12)
  23. /* TWL4030 LDO regulators */
  24. #define TWL_COMMON_REGULATOR_VPLL1 (1 << 4)
  25. #define TWL_COMMON_REGULATOR_VPLL2 (1 << 5)
  26. struct twl4030_platform_data;
  27. struct twl6040_platform_data;
  28. struct omap_tw4030_pdata;
  29. struct i2c_board_info;
  30. void omap_pmic_init(int bus, u32 clkrate, const char *pmic_type, int pmic_irq,
  31. struct twl4030_platform_data *pmic_data);
  32. void omap_pmic_late_init(void);
  33. static inline void omap2_pmic_init(const char *pmic_type,
  34. struct twl4030_platform_data *pmic_data)
  35. {
  36. omap_pmic_init(2, 2600, pmic_type, 7 + OMAP_INTC_START, pmic_data);
  37. }
  38. static inline void omap3_pmic_init(const char *pmic_type,
  39. struct twl4030_platform_data *pmic_data)
  40. {
  41. omap_pmic_init(1, 2600, pmic_type, 7 + OMAP_INTC_START, pmic_data);
  42. }
  43. void omap4_pmic_init(const char *pmic_type,
  44. struct twl4030_platform_data *pmic_data,
  45. struct i2c_board_info *devices, int nr_devices);
  46. void omap3_pmic_get_config(struct twl4030_platform_data *pmic_data,
  47. u32 pdata_flags, u32 regulators_flags);
  48. void omap4_pmic_get_config(struct twl4030_platform_data *pmic_data,
  49. u32 pdata_flags, u32 regulators_flags);
  50. void omap_twl4030_audio_init(char *card_name, struct omap_tw4030_pdata *pdata);
  51. #endif /* __OMAP_PMIC_COMMON__ */