diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-05-21 17:07:19 -0400 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2012-06-20 14:37:41 -0400 |
commit | 2c95b7e06f63b264500fbcd5b4718c1a7258aa76 (patch) | |
tree | 1376bb5105df7d6de49d35527717597e35baa6c5 /arch/arm/mach-tegra | |
parent | 9132b0ed57320996b16eafbf651a04e02ad29092 (diff) |
ARM: tegra: remove CONFIG_MACH_TEGRA_DT
* Make ARCH_TEGRA select USE_OF; DT is the way forward.
* Build board-dt-tegra*.c when the relevant Tegra SoC support is enabled,
rather than requiring a specific config option for this.
* The board-specific config options already build board-*-pinmux.o, and
when booting from device tree these files are no longer needed, so we
can remove some Makefile commands related to those files.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra')
-rw-r--r-- | arch/arm/mach-tegra/Kconfig | 7 | ||||
-rw-r--r-- | arch/arm/mach-tegra/Makefile | 10 |
2 files changed, 3 insertions, 14 deletions
diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig index 5b9b1166003f..621466a717d1 100644 --- a/arch/arm/mach-tegra/Kconfig +++ b/arch/arm/mach-tegra/Kconfig | |||
@@ -87,13 +87,6 @@ config MACH_SEABOARD | |||
87 | also be included for some of the derivative boards that | 87 | also be included for some of the derivative boards that |
88 | have large similarities with the seaboard design. | 88 | have large similarities with the seaboard design. |
89 | 89 | ||
90 | config MACH_TEGRA_DT | ||
91 | bool "Generic Tegra20 board (FDT support)" | ||
92 | depends on ARCH_TEGRA_2x_SOC | ||
93 | select USE_OF | ||
94 | help | ||
95 | Support for generic NVIDIA Tegra20 boards using Flattened Device Tree | ||
96 | |||
97 | config MACH_TRIMSLICE | 90 | config MACH_TRIMSLICE |
98 | bool "TrimSlice board" | 91 | bool "TrimSlice board" |
99 | depends on ARCH_TEGRA_2x_SOC | 92 | depends on ARCH_TEGRA_2x_SOC |
diff --git a/arch/arm/mach-tegra/Makefile b/arch/arm/mach-tegra/Makefile index 2eb4445ddb14..60a02132d2da 100644 --- a/arch/arm/mach-tegra/Makefile +++ b/arch/arm/mach-tegra/Makefile | |||
@@ -13,7 +13,6 @@ obj-$(CONFIG_CPU_IDLE) += sleep.o | |||
13 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += powergate.o | 13 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += powergate.o |
14 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_clocks.o | 14 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_clocks.o |
15 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_emc.o | 15 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_emc.o |
16 | obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += board-dt-tegra30.o | ||
17 | obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += tegra30_clocks.o | 16 | obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += tegra30_clocks.o |
18 | obj-$(CONFIG_SMP) += platsmp.o headsmp.o | 17 | obj-$(CONFIG_SMP) += platsmp.o headsmp.o |
19 | obj-$(CONFIG_SMP) += reset.o | 18 | obj-$(CONFIG_SMP) += reset.o |
@@ -23,6 +22,9 @@ obj-$(CONFIG_CPU_FREQ) += cpu-tegra.o | |||
23 | obj-$(CONFIG_TEGRA_PCI) += pcie.o | 22 | obj-$(CONFIG_TEGRA_PCI) += pcie.o |
24 | obj-$(CONFIG_USB_SUPPORT) += usb_phy.o | 23 | obj-$(CONFIG_USB_SUPPORT) += usb_phy.o |
25 | 24 | ||
25 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += board-dt-tegra20.o | ||
26 | obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += board-dt-tegra30.o | ||
27 | |||
26 | obj-$(CONFIG_MACH_HARMONY) += board-harmony.o | 28 | obj-$(CONFIG_MACH_HARMONY) += board-harmony.o |
27 | obj-$(CONFIG_MACH_HARMONY) += board-harmony-pinmux.o | 29 | obj-$(CONFIG_MACH_HARMONY) += board-harmony-pinmux.o |
28 | obj-$(CONFIG_MACH_HARMONY) += board-harmony-pcie.o | 30 | obj-$(CONFIG_MACH_HARMONY) += board-harmony-pcie.o |
@@ -34,11 +36,5 @@ obj-$(CONFIG_MACH_PAZ00) += board-paz00-pinmux.o | |||
34 | obj-$(CONFIG_MACH_SEABOARD) += board-seaboard.o | 36 | obj-$(CONFIG_MACH_SEABOARD) += board-seaboard.o |
35 | obj-$(CONFIG_MACH_SEABOARD) += board-seaboard-pinmux.o | 37 | obj-$(CONFIG_MACH_SEABOARD) += board-seaboard-pinmux.o |
36 | 38 | ||
37 | obj-$(CONFIG_MACH_TEGRA_DT) += board-dt-tegra20.o | ||
38 | obj-$(CONFIG_MACH_TEGRA_DT) += board-harmony-pinmux.o | ||
39 | obj-$(CONFIG_MACH_TEGRA_DT) += board-seaboard-pinmux.o | ||
40 | obj-$(CONFIG_MACH_TEGRA_DT) += board-paz00-pinmux.o | ||
41 | obj-$(CONFIG_MACH_TEGRA_DT) += board-trimslice-pinmux.o | ||
42 | |||
43 | obj-$(CONFIG_MACH_TRIMSLICE) += board-trimslice.o | 39 | obj-$(CONFIG_MACH_TRIMSLICE) += board-trimslice.o |
44 | obj-$(CONFIG_MACH_TRIMSLICE) += board-trimslice-pinmux.o | 40 | obj-$(CONFIG_MACH_TRIMSLICE) += board-trimslice-pinmux.o |