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

Side by Side Diff: include/configs/chromeos/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, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « include/configs/chromeos/MSM8x60/stub.h ('k') | include/configs/chromeos/developer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_common_h__
8 #define __configs_chromeos_common_h__
9
10 #include <asm/sizes.h>
11 #include <config.h>
12
13 /*
14 * QUOTE(m) will evaluate to a string version of the value of the macro m
15 * passed in. The extra level of indirection here is to first evaluate the
16 * macro m before applying the quoting operator.
17 */
18 #define QUOTE_(m) #m
19 #define QUOTE(m) QUOTE_(m)
20
21 #define CONFIG_CHROMEOS
22
23 #define CONFIG_CMD_RUN
24 #define CONFIG_CMD_SOURCE
25
26 #define CONFIG_OF_LIBFDT 1
27 /*
28 * The early kernel mapping on ARM currently only maps from the base of DRAM
29 * to the end of the kernel image. The kernel is loaded at DRAM base + 0x8000.
30 * The early kernel pagetable uses DRAM base + 0x4000 to DRAM base + 0x8000,
31 * so that leaves DRAM base to DRAM base + 0x4000 available.
32 */
33 #define CONFIG_SYS_BOOTMAPSZ 0x4000
34
35 #define CONFIG_CMDLINE_TAG 1
36
37 #define CONFIG_ENV_SIZE SZ_128K
38 #define CONFIG_ENV_OVERWRITE 1
39
40 #define CONFIG_SYS_MALLOC_LEN SZ_1M
41 #define CONFIG_SYS_GBL_DATA_SIZE 128
42
43 #define CONFIG_BAUDRATE 115200
44 #define CONFIG_SYS_BAUDRATE_TABLE {4800, \
45 9600, \
46 19200, \
47 38400, \
48 57600, \
49 115200}
50
51 #define CONFIG_SYS_PROMPT "CrOS> "
52
53 #define CONFIG_EXTRA_ENV_SETTINGS \
54 CONFIG_EXTRA_ENV_SETTINGS_ARCH \
55 CONFIG_EXTRA_ENV_SETTINGS_BOARD \
56 "platform_extras=" \
57 CONFIG_PLATFORM_EXTRAS_ARCH " " \
58 CONFIG_PLATFORM_EXTRAS_BOARD "\0"
59
60 #define CONFIG_SYS_CBSIZE 512
61 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
62 sizeof(CONFIG_SYS_PROMPT) + \
63 64)
64 #define CONFIG_SYS_MAXARGS 64
65 #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
66
67 #endif /* __configs_chromeos_common_h__ */
OLDNEW
« no previous file with comments | « include/configs/chromeos/MSM8x60/stub.h ('k') | include/configs/chromeos/developer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698