| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (c) 2011 The Chromium OS Authors. All rights reserved. | |
| 3 * Use of this source code is governed by a BSD-style license that can be | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 #ifndef __configs_chromeos_tegra2_generic_common_h__ | |
| 8 #define __configs_chromeos_tegra2_generic_common_h__ | |
| 9 | |
| 10 #include <configs/chromeos/tegra2/common.h> | |
| 11 | |
| 12 /* Use default firmware layout */ | |
| 13 #include <configs/chromeos/firmware_layout.h> | |
| 14 | |
| 15 #define LINUX_MACH_TYPE MACH_TYPE_HARMONY | |
| 16 #define CONFIG_SYS_BOARD_ODMDATA 0x300d8011 /* lp1, 1GB */ | |
| 17 | |
| 18 #define CONFIG_SERIAL_MULTI 1 | |
| 19 #define CONFIG_TEGRA2_ENABLE_UARTB 1 | |
| 20 | |
| 21 #define CONFIG_CONSOLE_MUX 1 | |
| 22 #define CONFIG_SYS_CONSOLE_IS_IN_ENV 1 | |
| 23 | |
| 24 #define CONFIG_EXTRA_ENV_SETTINGS_BOARD \ | |
| 25 "stdin=serial\0" \ | |
| 26 "stdout=serial,lcd\0" \ | |
| 27 "stderr=serial,lcd\0" | |
| 28 | |
| 29 #define CONFIG_PLATFORM_EXTRAS_BOARD \ | |
| 30 "mem=384M@0M nvmem=128M@384M mem=512M@512M" | |
| 31 | |
| 32 #include <configs/chromeos/tegra2/generic/parts/i2c.h> | |
| 33 #include <configs/chromeos/tegra2/generic/parts/lcd.h> | |
| 34 #include <configs/chromeos/tegra2/generic/parts/mmc.h> | |
| 35 #include <configs/chromeos/tegra2/generic/parts/pinmux.h> | |
| 36 #include <configs/chromeos/tegra2/generic/parts/uart.h> | |
| 37 | |
| 38 #define CONFIG_CHROMEOS_HWID "ARM TEGRA2 GENERIC BOGUS 0000" | |
| 39 | |
| 40 #define CONFIG_CHROMEOS_FIRMWARE_STORAGE_NAND | |
| 41 #define CONFIG_CHROMEOS_DEFAULT_FIRMWARE_STORAGE_NAND | |
| 42 | |
| 43 #endif /*__configs_chromeos_tegra2_generic_common_h__*/ | |
| OLD | NEW |