Skip to content

Commit

Permalink
ARM: tegra: PCIe: Provide 3.3V supply voltage
Browse files Browse the repository at this point in the history
The PCIe reference clock needs a 3.3V supply voltage to work properly.

Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Acked-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
  • Loading branch information
Thierry Reding authored and Olof Johansson committed Feb 26, 2012
1 parent 80c9473 commit 1dbe1df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arch/arm/mach-tegra/board-harmony-power.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,14 @@ static struct regulator_consumer_supply tps658621_ldo0_supply[] = {

static struct regulator_init_data ldo0_data = {
.constraints = {
.min_uV = 1250 * 1000,
.min_uV = 3300 * 1000,
.max_uV = 3300 * 1000,
.valid_modes_mask = (REGULATOR_MODE_NORMAL |
REGULATOR_MODE_STANDBY),
.valid_ops_mask = (REGULATOR_CHANGE_MODE |
REGULATOR_CHANGE_STATUS |
REGULATOR_CHANGE_VOLTAGE),
.apply_uV = 1,
},
.num_consumer_supplies = ARRAY_SIZE(tps658621_ldo0_supply),
.consumer_supplies = tps658621_ldo0_supply,
Expand Down

0 comments on commit 1dbe1df

Please sign in to comment.