a53b8e3b99
Introduce a new file, which will be used to configure common pmic (TWL) devices, regulators, and TWL audio. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Acked-by: Tony Lindgren <tony@atomide.com>
28 lines
852 B
C
28 lines
852 B
C
#ifndef __OMAP_PMIC_COMMON__
|
|
#define __OMAP_PMIC_COMMON__
|
|
|
|
struct twl4030_platform_data;
|
|
|
|
void omap_pmic_init(int bus, u32 clkrate, const char *pmic_type, int pmic_irq,
|
|
struct twl4030_platform_data *pmic_data);
|
|
|
|
static inline void omap2_pmic_init(const char *pmic_type,
|
|
struct twl4030_platform_data *pmic_data)
|
|
{
|
|
omap_pmic_init(2, 2600, pmic_type, INT_24XX_SYS_NIRQ, pmic_data);
|
|
}
|
|
|
|
static inline void omap3_pmic_init(const char *pmic_type,
|
|
struct twl4030_platform_data *pmic_data)
|
|
{
|
|
omap_pmic_init(1, 2600, pmic_type, INT_34XX_SYS_NIRQ, pmic_data);
|
|
}
|
|
|
|
static inline void omap4_pmic_init(const char *pmic_type,
|
|
struct twl4030_platform_data *pmic_data)
|
|
{
|
|
/* Phoenix Audio IC needs I2C1 to start with 400 KHz or less */
|
|
omap_pmic_init(1, 400, pmic_type, OMAP44XX_IRQ_SYS_1N, pmic_data);
|
|
}
|
|
|
|
#endif /* __OMAP_PMIC_COMMON__ */
|