summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2011-09-29 16:47:04 -0700
committerSimon Glass <sjg@chromium.org>2011-10-06 20:54:26 -0700
commit88aa2ce35dd0ead61a7efcdbef6d0f35322bb744 (patch)
tree3cf0cfa06ea47c5b7d4f3668142b7d2bc3d66c6c /include
parentffcc2eff672f642eed343c4d37ab2bfe2aa4b0b3 (diff)
tegra3: Add config file for waluigi
This adds a very basic config file which will boot to a serial prompt. BUG=chromium-os:21033 TEST=build and boot on seaboard Change-Id: I03082d05b9de19473dbe41ef6aff366a2ff044e8 Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-on: http://gerrit.chromium.org/gerrit/8701
Diffstat (limited to 'include')
-rw-r--r--include/configs/waluigi.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/include/configs/waluigi.h b/include/configs/waluigi.h
new file mode 100644
index 0000000000..1fcdcbe3e8
--- /dev/null
+++ b/include/configs/waluigi.h
@@ -0,0 +1,66 @@
+/*
+ * (C) Copyright 2010,2011
+ * NVIDIA Corporation <www.nvidia.com>
+ * Portions Copyright (c) 2011 The Chromium OS Authors
+ *
+ * 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 __CONFIG_H
+#define __CONFIG_H
+
+#include <asm/sizes.h>
+
+/* High-level configuration options */
+#define TEGRA3_SYSMEM "mem=1023M@2048M"
+#define V_PROMPT "Tegra3 # "
+
+#define CONFIG_TEGRA3_WALUIGI
+#define CONFIG_SYS_SKIP_ARM_RELOCATION
+#define CONFIG_SYS_PLLP_BASE_IS_408MHZ
+
+#include "tegra3-common.h"
+
+#define CONFIG_EXTRA_ENV_SETTINGS \
+ CONFIG_EXTRA_ENV_SETTINGS_COMMON \
+ "board=waluigi\0" \
+
+#define CONFIG_DEFAULT_DEVICE_TREE "tegra3-waluigi"
+
+#define CONFIG_CONSOLE_MUX
+#define CONFIG_SYS_CONSOLE_IS_IN_ENV
+#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial,tegra-kbc\0" \
+ "stdout=serial,lcd\0" \
+ "stderr=serial,lcd\0"
+
+#define CONFIG_SYS_BOARD_ODMDATA 0x80080105 /* 2GB, ??? */
+
+#define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE
+#define CONFIG_ENV_OFFSET (SZ_4M - CONFIG_ENV_SECT_SIZE)
+
+/* GPIO */
+#define CONFIG_TEGRA_GPIO
+#define CONFIG_CMD_TEGRA_GPIO_INFO
+
+/* I2C - this does not implement the full interface yet */
+#define CONFIG_TEGRA_I2C
+
+#define CONFIG_ENV_IS_NOWHERE
+
+#endif /* __CONFIG_H */