summaryrefslogtreecommitdiff
path: root/arch/arm/include/asm/arch-tegra3/tegra.h
diff options
context:
space:
mode:
authorTom Warren <twarren@nvidia.com>2011-09-01 16:49:30 -0700
committerSimon Glass <sjg@chromium.org>2011-09-15 12:42:37 -0700
commit615217e1f756332820e3aed926a26ede9451a2be (patch)
treeab93ea89979666e020b66948937c07a1f1f22c31 /arch/arm/include/asm/arch-tegra3/tegra.h
parente26a6be71dd36659af343b9f0ec14ea981d23692 (diff)
tegra3: Add basic Tegra30 support
This adds the most basic Tegra30 support to U-Boot, by making use of existing tegra2 code and adding what is necessary to build. BUG=chromium-os:19004 TEST=build and boot on T30 board Change-Id: If75599b2e76dbec3281fffb8a244b6145e9648cc Reviewed-on: http://gerrit.chromium.org/gerrit/7130 Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/include/asm/arch-tegra3/tegra.h')
-rw-r--r--arch/arm/include/asm/arch-tegra3/tegra.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-tegra3/tegra.h b/arch/arm/include/asm/arch-tegra3/tegra.h
new file mode 100644
index 0000000000..92a19703c3
--- /dev/null
+++ b/arch/arm/include/asm/arch-tegra3/tegra.h
@@ -0,0 +1,36 @@
+/*
+ * (C) Copyright 2010,2011
+ * NVIDIA Corporation <www.nvidia.com>
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+#ifndef _TEGRA3_H_
+#define _TEGRA3_H_
+
+#define NV_PA_SDRAM_BASE 0x80000000
+
+#define NV_PA_SDMMC1_BASE 0x78000000
+#define NV_PA_SDMMC2_BASE 0x78000200
+#define NV_PA_SDMMC3_BASE 0x78000400
+#define NV_PA_SDMMC4_BASE 0x78000600
+
+#include <asm/arch-tegra/tegra.h>
+
+#endif