Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: include/configs/chromeos/tegra2/common.h

Issue 6731090: Remove ChromeOS specific configs from the U-Boot repository. (Closed) Base URL: ssh://gitrw.chromium.org:9222/u-boot-next.git@chromeos-v2010.09
Patch Set: Rebase to TOT. Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/configs/chromeos/tegra2/aebl/stub.h ('k') | include/configs/chromeos/tegra2/developer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/configs/chromeos/tegra2/common.h
diff --git a/include/configs/chromeos/tegra2/common.h b/include/configs/chromeos/tegra2/common.h
deleted file mode 100644
index e2fc5eb22d1136577be84dde9a535ce5e4a50c39..0000000000000000000000000000000000000000
--- a/include/configs/chromeos/tegra2/common.h
+++ /dev/null
@@ -1,179 +0,0 @@
-/*
- * (C) Copyright 2010
- * 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 __configs_chromeos_tegra2_common_h__
-#define __configs_chromeos_tegra2_common_h__
-
-#include <configs/chromeos/common.h>
-#include <asm/arch/tegra2.h>
-
-/*
- * High Level Configuration Options
- */
-#define CONFIG_ARMCORTEXA9 1
-#define CONFIG_TEGRA2 1
-#define CONFIG_MACH_TEGRA_GENERIC 1
-#define CONFIG_L2_OFF 1
-
-#define CONFIG_ENABLE_CORTEXA9 1
-#undef TEGRA2_TRACE
-
-#undef CONFIG_USE_IRQ
-#define CONFIG_ARCH_CPU_INIT
-#define CONFIG_MISC_INIT_R
-#define CONFIG_SKIP_LOWLEVEL_INIT
-
-#define CONFIG_SYS_64BIT_STRTOUL 1
-#define CONFIG_SYS_64BIT_VSPRINTF 1
-
-/*
- * PllX Configuration
- */
-#define CONFIG_SYS_CPU_OSC_FREQUENCY 1000000 /* Set CPU clock to 1GHz */
-
-#define CONFIG_SYS_NO_FLASH
-
-/* Enable Warmboot code and lp0_vec */
-#define CONFIG_TEGRA2_LP0 1
-
-#ifdef CONFIG_TEGRA2_LP0
-#define TEGRA_LP0_DEFAULT_ADDR 0x1C406000
-#define TEGRA_LP0_SIZE 0x2000
-
-#define TEGRA_LP0_CMDLINE \
- "lp0_vec=" QUOTE(TEGRA_LP0_SIZE) "@" QUOTE(TEGRA_LP0_DEFAULT_ADDR) " "
-#else
-#define TEGRA_LP0_CMDLINE
-#endif
-
-/* Put kcrashmem at 32MB which is free */
-#define TEGRA_KCRASHMEM_DEFAULT_ADDR 0x02000000
-#define TEGRA_KCRASHMEM_SIZE 0x100000
-
-#define TEGRA_KCRASHMEM_CMDLINE "kcrashmem=" QUOTE(TEGRA_KCRASHMEM_SIZE) "@" \
- QUOTE(TEGRA_KCRASHMEM_DEFAULT_ADDR) \
-
-/* Add in our required kernel cmdline arguments */
-#define CONFIG_PLATFORM_EXTRAS_ARCH \
- TEGRA_LP0_CMDLINE \
- TEGRA_KCRASHMEM_CMDLINE
-
-#define CONFIG_BOOTDELAY 2 /* 2s to break to prompt */
-#define CONFIG_EXTRA_ENV_SETTINGS_ARCH_COMMON \
- "scriptaddr=0x408000\0" \
- "script_img=/u-boot/boot.scr.uimg\0" \
- "mmc0_boot=setenv devnum 0; run mmc_boot;\0" \
- "mmc1_boot=setenv devnum 1; run mmc_boot;\0" \
- "usb0_boot=usb start 0; run usb_boot;\0" \
- "usb1_boot=usb start 1; run usb_boot;\0" \
- "scr_boot=fatload ${devtype} ${devnum}:c ${scriptaddr} ${script_img};" \
- "source ${scriptaddr};" \
- "read ${devtype} ${devnum}:${kernelpart} ${scriptaddr} 0 10;" \
- "source ${scriptaddr};\0" \
- "mmc_boot=mmc init ${devnum};" \
- "setenv devtype mmc;" \
- "setenv devname mmcblk${devnum}p;" \
- "run scr_boot;\0" \
- "usb_boot=setenv devtype usb;" \
- "setenv devnum 0;" \
- "setenv devname sda;" \
- "run scr_boot;\0"
-
-#define CONFIG_SYS_LOAD_ADDR 0xA00800
-
-#define CONFIG_SYS_HZ 1000
-
-/*-----------------------------------------------------------------------
- * Stack sizes
- *
- * The stack sizes are set up in start.S using the settings below
- */
-#define CONFIG_STACKBASE (SZ_32M + SZ_8M)
-#define CONFIG_STACKSIZE SZ_128K
-
-#ifdef CONFIG_USE_IRQ
-#define CONFIG_STACKSIZE_IRQ SZ_4K
-#define CONFIG_STACKSIZE_FIQ SZ_4K
-#endif
-
-/*-----------------------------------------------------------------------
- * Physical Memory Map
- */
-#define CONFIG_NR_DRAM_BANKS 1
-#define PHYS_SDRAM_1 TEGRA2_SDRC_CS0
-#define PHYS_SDRAM_1_SIZE SZ_512M
-
-/*-----------------------------------------------------------------------
- * Common macros for constructing configurations. These are being used to
- * move configuration data out of the board C files and into the included
- * configuration files. The final goal is to move this configuration data
- * into a FDT blob.
- *
- * Tracker: http://code.google.com/p/chromium-os/issues/detail?id=11623
- */
-#define TEGRA_GPIO_INIT(_gpio, _state) { _gpio, _state },
-
-#define TEGRA_CLOCK(_name, _parent, _rate, _enabled) \
- { _name, _parent, _rate, _enabled },
-
-#define TEGRA_RESOURCE(_name, _start, _length) \
- { \
- .name = _name, \
- .start = _start, \
- .end = _start + _length - 1, \
- },
-
-#define TEGRA_PANEL(_name, _value) ._name = _value,
-
-/*-----------------------------------------------------------------------
- * Include component configurations.
- */
-
-#include <configs/chromeos/tegra2/parts/gpio.h>
-#include <configs/chromeos/tegra2/parts/i2c.h>
-#include <configs/chromeos/tegra2/parts/lcd.h>
-#include <configs/chromeos/tegra2/parts/mmc.h>
-#include <configs/chromeos/tegra2/parts/pinmux.h>
-#include <configs/chromeos/tegra2/parts/uart.h>
-
-#define CONFIG_DISPLAY_BOARDINFO 1
-
-/*-----------------------------------------------------------------------
- * Statically Allocated Buffers for Verified Boot
- */
-#define CONFIG_VB_SHARED_DATA_BLOB 0x10000000
-#define CONFIG_VB_SHARED_DATA_SIZE VB_SHARED_DATA_REC_SIZE
-
-/*
- * Kernel must be loaded to a fixed address because it is a part of the
- * verified boot security check.
- *
- * You have to make sure that memory range starting from CONFIG_LOADADDR
- * has at least CONFIG_MAX_KERNEL_SIZE free space available.
- */
-#define CONFIG_LOADADDR 0x00100000
-
-/* A sufficiently large buffer size for holding kernel image */
-#define CONFIG_MAX_KERNEL_SIZE 0x00800000
-
-#endif /*__configs_chromeos_tegra2_common_h__*/
« no previous file with comments | « include/configs/chromeos/tegra2/aebl/stub.h ('k') | include/configs/chromeos/tegra2/developer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698