diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/mx53loco.h | 2 | ||||
| -rw-r--r-- | include/fsl_pmic.h | 10 | 
2 files changed, 12 insertions, 0 deletions
| diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index 8f43eecdd..87f6ed1e2 100644 --- a/include/configs/mx53loco.h +++ b/include/configs/mx53loco.h @@ -97,7 +97,9 @@  #define CONFIG_PMIC  #define CONFIG_PMIC_I2C  #define CONFIG_DIALOG_PMIC +#define CONFIG_PMIC_FSL  #define CONFIG_SYS_DIALOG_PMIC_I2C_ADDR	0x48 +#define CONFIG_SYS_FSL_PMIC_I2C_ADDR	0x8  /* allow to overwrite serial and ethaddr */  #define CONFIG_ENV_OVERWRITE diff --git a/include/fsl_pmic.h b/include/fsl_pmic.h index 742f2e19f..3b7cd37fb 100644 --- a/include/fsl_pmic.h +++ b/include/fsl_pmic.h @@ -122,4 +122,14 @@ enum {  /* Interrupt status 1 */  #define RTCRSTI		(1 << 7) +/* MC34708 Definitions */ +#define SWx_VOLT_MASK_MC34708	0x3F +#define SWx_1_250V_MC34708	0x30 +#define SWx_1_300V_MC34708	0x34 +#define TIMER_MASK_MC34708	0x300 +#define TIMER_4S_MC34708	0x100 +#define VUSBSEL_MC34708		(1 << 2) +#define VUSBEN_MC34708		(1 << 3) +#define SWBST_CTRL		31 +  #endif |