aboutsummaryrefslogtreecommitdiff
path: root/src/soc/nvidia/tegra132/chip.h
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2014-04-28 16:43:07 -0700
committerMarc Jones <marc.jones@se-eng.com>2015-01-26 11:41:17 +0100
commit4208e0c834fe1e2ed1704418e7170c86e14e141d (patch)
treea104e48d49e718c942c7b3edc64f19f8353769d3 /src/soc/nvidia/tegra132/chip.h
parent17b9c198e0ebbd79d1b581eba0810a4c7979f012 (diff)
tegra132: Add support for tegra132 soc
Add basic support for tegra132 soc. BUG=None BRANCH=None TEST=Compiles successfully for rush board using tegra132 soc Original-Change-Id: If2a3de80026e7729ac6da8484ff6c56607c52a63 Original-Signed-off-by: Furquan Shaikh <furquan@google.com> Original-Reviewed-on: https://chromium-review.googlesource.com/197398 Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org> Original-Commit-Queue: Furquan Shaikh <furquan@chromium.org> Original-Tested-by: Furquan Shaikh <furquan@chromium.org> (cherry picked from commit 4746bff6e9f4b20abc44d0b6fce9691aea63583c) Signed-off-by: Marc Jones <marc.jones@se-eng.com> Change-Id: If2a3de80026e7729ac6da8484ff6c56607c52a63 Reviewed-on: http://review.coreboot.org/8040 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/soc/nvidia/tegra132/chip.h')
-rw-r--r--src/soc/nvidia/tegra132/chip.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/soc/nvidia/tegra132/chip.h b/src/soc/nvidia/tegra132/chip.h
new file mode 100644
index 0000000000..394f0a4020
--- /dev/null
+++ b/src/soc/nvidia/tegra132/chip.h
@@ -0,0 +1,31 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2013 Google Inc.
+ *
+ * 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; version 2 of the License.
+ *
+ * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef __SOC_NVIDIA_TEGRA132_CHIP_H__
+#define __SOC_NVIDIA_TEGRA132_CHIP_H__
+#include <arch/cache.h>
+#include <soc/addressmap.h>
+
+#define EFAULT 1
+#define EINVAL 2
+
+struct soc_nvidia_tegra132_config {
+};
+
+#endif /* __SOC_NVIDIA_TEGRA132_CHIP_H__ */