diff options
author | Narendra Damahe <ndamahe@nvidia.com> | 2011-04-29 12:09:25 -0700 |
---|---|---|
committer | Varun Colbert <vcolbert@nvidia.com> | 2011-05-05 14:30:55 -0700 |
commit | 3c3782887fa53fdfddb3c53437a034c7aca02621 (patch) | |
tree | 10c84246b83e9534629fae7ebdceb52983b06e7f /arch | |
parent | 22578f1d7065ea84855fdbcaf09a792e9f9d3856 (diff) |
arm:tegra: Do not power gate PCIE for tegra 3x SOC
Power gating of PCIE will be separately handled for 3x SOC.
This is to fix bug 821213
Change-Id: Id511778f4c3422ee9d92a2c77686803e09704ee4
Reviewed-on: http://git-master/r/29868
Reviewed-by: Varun Colbert <vcolbert@nvidia.com>
Tested-by: Varun Colbert <vcolbert@nvidia.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-tegra/common.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c index 57e76984372b..75b979eca1ff 100644 --- a/arch/arm/mach-tegra/common.c +++ b/arch/arm/mach-tegra/common.c @@ -171,7 +171,10 @@ static void __init tegra_init_power(void) { tegra_powergate_power_off(TEGRA_POWERGATE_MPE); tegra_powergate_power_off(TEGRA_POWERGATE_3D); +#ifndef CONFIG_ARCH_TEGRA_3x_SOC + /* for TEGRA_3x_SOC it will be handled seperately */ tegra_powergate_power_off(TEGRA_POWERGATE_PCIE); +#endif } static bool console_flushed; |