summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshwin Joshi <asjoshi@nvidia.com>2012-07-27 15:58:50 +0530
committerSimone Willett <swillett@nvidia.com>2012-08-20 16:23:27 -0700
commitb65484c57a46d23decc570350ca1c07bb5be111e (patch)
treedc3842b31c92da6914c776390cc29f74e7f4c0e2
parente2862b9cd75bb9f608db0c33bef47f3952df5f26 (diff)
ARM: tegra: e1853: Add build support for E1853
E1853 is T30 based automotive platform. Modify Makefile to support build of E1853 board. Also, added config option to Kconfig file. Bug 966833 Bug 1018258 Change-Id: I18dc015b79256fde1c77947198b426a0060a9017 Signed-off-by: Ashwin Joshi <asjoshi@nvidia.com> Reviewed-on: http://git-master/r/118932 Reviewed-by: Sandeep Trasi <strasi@nvidia.com> Reviewed-by: Automatic_Commit_Validation_User (cherry picked from commit bed57d893803f2ccef8f40bd30bdf1e8a44f184b) Reviewed-on: http://git-master/r/119652 GVS: Gerrit_Virtual_Submit Tested-by: Haribabu Narayanan <hnarayanan@nvidia.com> Reviewed-by: Bob Johnston <bjohnston@nvidia.com> Reviewed-by: Krishna Reddy <vdumpa@nvidia.com>
-rw-r--r--arch/arm/mach-tegra/Kconfig13
-rw-r--r--arch/arm/mach-tegra/Makefile5
2 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig
index b69f0dc6e24d..f4f4d58452ed 100644
--- a/arch/arm/mach-tegra/Kconfig
+++ b/arch/arm/mach-tegra/Kconfig
@@ -187,6 +187,12 @@ config MACH_P1852
help
Support for NVIDIA P1852 development platform
+config MACH_E1853
+ bool "E1853 board"
+ depends on ARCH_TEGRA_3x_SOC
+ help
+ Support for NVIDIA E1853 development platform
+
config MACH_TEGRA_ENTERPRISE
bool "Enterprise board"
depends on ARCH_TEGRA_3x_SOC
@@ -286,6 +292,13 @@ config TEGRA_P1852_TDM
Enables TDM mode driver for P1852 SKUs. If this
is not defined then I2S mode is selected by default.
+config TEGRA_TDM
+ bool "Enable TDM mode for Automotive SKUs"
+ depends on MACH_E1853
+ help
+ Enables TDM mode driver for Automotive SKUs. If this
+ is not defined then I2S mode is selected by default.
+
config TEGRA_CARDHU_DSI
bool "Support DSI panel on Cardhu"
depends on MACH_CARDHU
diff --git a/arch/arm/mach-tegra/Makefile b/arch/arm/mach-tegra/Makefile
index cb84614919bd..3aa3e32848f8 100644
--- a/arch/arm/mach-tegra/Makefile
+++ b/arch/arm/mach-tegra/Makefile
@@ -183,6 +183,11 @@ obj-${CONFIG_MACH_P1852} += board-p1852-panel.o
obj-${CONFIG_MACH_P1852} += board-p1852-pinmux.o
obj-${CONFIG_MACH_P1852} += board-p1852-sdhci.o
+obj-${CONFIG_MACH_E1853} += board-e1853.o
+obj-${CONFIG_MACH_E1853} += board-e1853-panel.o
+obj-${CONFIG_MACH_E1853} += board-e1853-pinmux.o
+obj-${CONFIG_MACH_E1853} += board-e1853-sdhci.o
+
obj-${CONFIG_MACH_TEGRA_ENTERPRISE} += board-enterprise.o
obj-${CONFIG_MACH_TEGRA_ENTERPRISE} += board-enterprise-panel.o
obj-${CONFIG_MACH_TEGRA_ENTERPRISE} += board-enterprise-pinmux.o