Added OMAP35x specific code for TPS65073 in board-omap35x-pmic.c Signed-off-by: Anuj Aggarwal <anuj.aggarwal@xxxxxx> --- arch/arm/mach-omap2/board-omap35x-pmic.c | 95 +++++++++++++++++++++++++++++- 1 files changed, 94 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap2/board-omap35x-pmic.c b/arch/arm/mach-omap2/board-omap35x-pmic.c index 0bf47fd..2c33965 100644 --- a/arch/arm/mach-omap2/board-omap35x-pmic.c +++ b/arch/arm/mach-omap2/board-omap35x-pmic.c @@ -124,6 +124,98 @@ static struct i2c_board_info __initdata board_tps65023_instances[] = { /* * Definitions specific to TPS65073 */ +#if defined(CONFIG_OMAP3EVM_TPS65073) +/* MPU voltage regulator of DCDC type */ +struct regulator_consumer_supply tps65073_mpu_consumers = { + .supply = "vdd1", +}; + +/* CORE voltage regulator of DCDC type */ +struct regulator_consumer_supply tps65073_core_consumers = { + .supply = "vdd2", +}; + +/* SRAM/MEM/WKUP_BG/VDDS voltage regulator of DCDC type */ +struct regulator_consumer_supply tps65073_vdds_consumers = { + .supply = "vdds", +}; + +/* DPLL voltage regulator of LDO type */ +struct regulator_consumer_supply tps65073_dpll_consumers = { + .supply = "dpll", +}; + +/* MMC voltage regulator of LDO type */ +struct regulator_consumer_supply tps65073_mmc_consumers = { + .supply = "mmc", +}; + +struct regulator_init_data tps65073_regulator_data[] = { + { + .constraints = { + .min_uV = 725000, + .max_uV = 3300000, + .valid_ops_mask = (REGULATOR_CHANGE_VOLTAGE | + REGULATOR_CHANGE_STATUS), + .boot_on = 1, + }, + .num_consumer_supplies = 1, + .consumer_supplies = &tps65073_vdds_consumers, + }, + { + .constraints = { + .min_uV = 725000, + .max_uV = 3300000, + .valid_ops_mask = (REGULATOR_CHANGE_VOLTAGE | + REGULATOR_CHANGE_STATUS), + .boot_on = 1, + }, + .num_consumer_supplies = 1, + .consumer_supplies = &tps65073_core_consumers, + }, + { + .constraints = { + .min_uV = 725000, + .max_uV = 3300000, + .valid_ops_mask = (REGULATOR_CHANGE_VOLTAGE | + REGULATOR_CHANGE_STATUS), + .boot_on = 1, + }, + .num_consumer_supplies = 1, + .consumer_supplies = &tps65073_mpu_consumers, + }, + { + .constraints = { + .min_uV = 1000000, + .max_uV = 3300000, + .valid_ops_mask = (REGULATOR_CHANGE_VOLTAGE | + REGULATOR_CHANGE_STATUS), + .boot_on = 1, + }, + .num_consumer_supplies = 1, + .consumer_supplies = &tps65073_dpll_consumers, + }, + { + .constraints = { + .min_uV = 725000, + .max_uV = 3300000, + .valid_ops_mask = (REGULATOR_CHANGE_VOLTAGE | + REGULATOR_CHANGE_STATUS), + .boot_on = 1, + }, + .num_consumer_supplies = 1, + .consumer_supplies = &tps65073_mmc_consumers, + }, +}; + +static struct i2c_board_info __initdata board_tps65073_instances[] = { + { + I2C_BOARD_INFO("tps6507x", 0x48), + .flags = I2C_CLIENT_WAKE, + .platform_data = &tps65073_regulator_data[0], + }, +}; +#endif static int flag_pmic_twl4030; static int flag_pmic_tps6235x; @@ -204,7 +296,8 @@ int oma35x_pmic_init(void) #endif #if defined(CONFIG_OMAP3EVM_TPS65073) - /* do stuff specific to TPS65073 */ + omap_register_i2c_bus(1, 400, board_tps65073_instances, + ARRAY_SIZE(board_tps65073_instances)); #endif return 0; -- 1.6.2.4 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html