| 
									
										
										
										
											2011-06-04 08:16:41 +03:00
										 |  |  | #ifndef __OMAP_PMIC_COMMON__
 | 
					
						
							|  |  |  | #define __OMAP_PMIC_COMMON__
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-27 17:43:01 -07:00
										 |  |  | #include "common.h"
 | 
					
						
							| 
									
										
										
										
											2011-11-23 14:43:01 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-07 10:26:46 +03:00
										 |  |  | #define TWL_COMMON_PDATA_USB		(1 << 0)
 | 
					
						
							| 
									
										
										
										
											2011-06-07 10:28:54 +03:00
										 |  |  | #define TWL_COMMON_PDATA_BCI		(1 << 1)
 | 
					
						
							|  |  |  | #define TWL_COMMON_PDATA_MADC		(1 << 2)
 | 
					
						
							|  |  |  | #define TWL_COMMON_PDATA_AUDIO		(1 << 3)
 | 
					
						
							| 
									
										
										
										
											2011-06-07 10:26:46 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Common LDO regulators for TWL4030/TWL6030 */ | 
					
						
							|  |  |  | #define TWL_COMMON_REGULATOR_VDAC	(1 << 0)
 | 
					
						
							|  |  |  | #define TWL_COMMON_REGULATOR_VAUX1	(1 << 1)
 | 
					
						
							|  |  |  | #define TWL_COMMON_REGULATOR_VAUX2	(1 << 2)
 | 
					
						
							|  |  |  | #define TWL_COMMON_REGULATOR_VAUX3	(1 << 3)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* TWL6030 LDO regulators */ | 
					
						
							|  |  |  | #define TWL_COMMON_REGULATOR_VMMC	(1 << 4)
 | 
					
						
							|  |  |  | #define TWL_COMMON_REGULATOR_VPP	(1 << 5)
 | 
					
						
							|  |  |  | #define TWL_COMMON_REGULATOR_VUSIM	(1 << 6)
 | 
					
						
							|  |  |  | #define TWL_COMMON_REGULATOR_VANA	(1 << 7)
 | 
					
						
							|  |  |  | #define TWL_COMMON_REGULATOR_VCXIO	(1 << 8)
 | 
					
						
							|  |  |  | #define TWL_COMMON_REGULATOR_VUSB	(1 << 9)
 | 
					
						
							|  |  |  | #define TWL_COMMON_REGULATOR_CLK32KG	(1 << 10)
 | 
					
						
							| 
									
										
										
										
											2012-05-09 14:19:16 -07:00
										 |  |  | #define TWL_COMMON_REGULATOR_V1V8	(1 << 11)
 | 
					
						
							|  |  |  | #define TWL_COMMON_REGULATOR_V2V1	(1 << 12)
 | 
					
						
							| 
									
										
										
										
											2011-06-07 10:26:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-07 11:38:24 +03:00
										 |  |  | /* TWL4030 LDO regulators */ | 
					
						
							|  |  |  | #define TWL_COMMON_REGULATOR_VPLL1	(1 << 4)
 | 
					
						
							|  |  |  | #define TWL_COMMON_REGULATOR_VPLL2	(1 << 5)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-04 08:16:41 +03:00
										 |  |  | struct twl4030_platform_data; | 
					
						
							| 
									
										
										
										
											2012-04-03 11:56:51 +03:00
										 |  |  | struct twl6040_platform_data; | 
					
						
							| 
									
										
										
										
											2012-12-05 14:45:23 +01:00
										 |  |  | struct omap_tw4030_pdata; | 
					
						
							| 
									
										
										
										
											2012-09-24 12:24:48 +03:00
										 |  |  | struct i2c_board_info; | 
					
						
							| 
									
										
										
										
											2011-06-04 08:16:41 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | void omap_pmic_init(int bus, u32 clkrate, const char *pmic_type, int pmic_irq, | 
					
						
							|  |  |  | 		    struct twl4030_platform_data *pmic_data); | 
					
						
							| 
									
										
										
										
											2011-11-23 14:43:01 -08:00
										 |  |  | void omap_pmic_late_init(void); | 
					
						
							| 
									
										
										
										
											2011-06-04 08:16:41 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | static inline void omap2_pmic_init(const char *pmic_type, | 
					
						
							|  |  |  | 				   struct twl4030_platform_data *pmic_data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-27 17:43:01 -07:00
										 |  |  | 	omap_pmic_init(2, 2600, pmic_type, 7 + OMAP_INTC_START, pmic_data); | 
					
						
							| 
									
										
										
										
											2011-06-04 08:16:41 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void omap3_pmic_init(const char *pmic_type, | 
					
						
							|  |  |  | 				   struct twl4030_platform_data *pmic_data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-27 17:43:01 -07:00
										 |  |  | 	omap_pmic_init(1, 2600, pmic_type, 7 + OMAP_INTC_START, pmic_data); | 
					
						
							| 
									
										
										
										
											2011-06-04 08:16:41 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-03 11:56:51 +03:00
										 |  |  | void omap4_pmic_init(const char *pmic_type, | 
					
						
							|  |  |  | 		    struct twl4030_platform_data *pmic_data, | 
					
						
							| 
									
										
										
										
											2012-09-24 12:24:48 +03:00
										 |  |  | 		    struct i2c_board_info *devices, int nr_devices); | 
					
						
							| 
									
										
										
										
											2011-06-04 08:16:41 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-07 10:28:54 +03:00
										 |  |  | void omap3_pmic_get_config(struct twl4030_platform_data *pmic_data, | 
					
						
							|  |  |  | 			   u32 pdata_flags, u32 regulators_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-07 10:26:46 +03:00
										 |  |  | void omap4_pmic_get_config(struct twl4030_platform_data *pmic_data, | 
					
						
							|  |  |  | 			   u32 pdata_flags, u32 regulators_flags); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-05 14:45:23 +01:00
										 |  |  | void omap_twl4030_audio_init(char *card_name, struct omap_tw4030_pdata *pdata); | 
					
						
							| 
									
										
										
										
											2012-08-14 12:07:57 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-04 08:16:41 +03:00
										 |  |  | #endif /* __OMAP_PMIC_COMMON__ */
 |