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

Side by Side Diff: include/configs/chromeos/qrdc/common.h

Issue 3530009: MSM8x60: Update params passed to kernel for qrdc (Closed) Base URL: http://git.chromium.org/git/u-boot.git
Patch Set: Created 10 years, 2 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2009-2010, Code Aurora Forum. All rights reserved. 2 * Copyright (c) 2009-2010, Code Aurora Forum. All rights reserved.
3 * 3 *
4 * (C) Copyright 2002-2005 4 * (C) Copyright 2002-2005
5 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de> 5 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
6 * (C) Copyright 2002 6 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com> 7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de> 8 * Marius Groeger <mgroeger@sysgo.de>
9 * Gary Jennejohn <gj@denx.de> 9 * Gary Jennejohn <gj@denx.de>
10 * 10 *
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 #define CONFIG_CONS_INDEX 0 122 #define CONFIG_CONS_INDEX 0
123 #define CONFIG_BAUDRATE 115200 123 #define CONFIG_BAUDRATE 115200
124 #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } 124 #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
125 125
126 #define CONFIG_BOOTP_MASK CONFIG_BOOTP_DEFAULT 126 #define CONFIG_BOOTP_MASK CONFIG_BOOTP_DEFAULT
127 127
128 #define CONFIG_CMD_SOURCE 128 #define CONFIG_CMD_SOURCE
129 129
130 #define CONFIG_BOOTDELAY 0 130 #define CONFIG_BOOTDELAY 0
131 131
132 #define CONFIG_BOOTARGS "console=tty0 root=/dev/mmcblk1p3 rootwait init=/sbin/in it pmem_kernel_ebi1_size=32M" 132 #define CONFIG_BOOTARGS "console=tty0 root=/dev/mmcblk1p3 rootwait init=/sbin/in it pmem_kernel_ebi1_size=96M"
133 133
134 #define CONFIG_BOOTCOMMAND \ 134 #define CONFIG_BOOTCOMMAND \
135 "if mmcinfo 1; then " \ 135 "if mmcinfo 1; then " \
136 "if ext2load mmc 1:3 0x40200000 boot/boot_script.uimg; then "\ 136 "if ext2load mmc 1:3 0x40200000 boot/boot_script.uimg; then "\
137 "source 0x40200000; " \ 137 "source 0x40200000; " \
138 "elif ext2load mmc 1:3 0x40207fc0 boot/vmlinux.uimg; then " \ 138 "elif ext2load mmc 1:3 0x40207fc0 boot/vmlinux.uimg; then " \
139 "bootm 0x40207fc0; " \ 139 "bootm 0x40207fc0; " \
140 "fi; " \ 140 "fi; " \
141 "elif mmcinfo 0; then " \ 141 "elif mmcinfo 0; then " \
142 "if ext2load mmc 0:3 0x40200000 boot/boot_script.uimg; then "\ 142 "if ext2load mmc 0:3 0x40200000 boot/boot_script.uimg; then "\
(...skipping 24 matching lines...) Expand all
167 * 167 *
168 * The stack sizes are set up in start.S using the settings below 168 * The stack sizes are set up in start.S using the settings below
169 */ 169 */
170 #define CONFIG_STACKSIZE (128*1024) /* regular stack */ 170 #define CONFIG_STACKSIZE (128*1024) /* regular stack */
171 #ifdef CONFIG_USE_IRQ 171 #ifdef CONFIG_USE_IRQ
172 #define CONFIG_STACKSIZE_IRQ (4*1024) /* IRQ stack */ 172 #define CONFIG_STACKSIZE_IRQ (4*1024) /* IRQ stack */
173 #define CONFIG_STACKSIZE_FIQ (4*1024) /* FIQ stack */ 173 #define CONFIG_STACKSIZE_FIQ (4*1024) /* FIQ stack */
174 #endif 174 #endif
175 175
176 /* 176 /*
177 * SDRAM: Memory available for kernel: 510MB. 177 * SDRAM: Memory available for kernel: 1022MB.
178 */ 178 */
179 #define CONFIG_NR_DRAM_BANKS 1 179 #define CONFIG_NR_DRAM_BANKS 1
180 #define PHYS_SDRAM_1 0x40200000 180 #define PHYS_SDRAM_1 0x40200000
181 #define PHYS_SDRAM_1_SIZE» 0x1FE00000 /* 510MB */ 181 #define PHYS_SDRAM_1_SIZE» 0x3FE00000 /* 1022MB */
182 182
183 #define CONFIG_ARM_DCC 183 #define CONFIG_ARM_DCC
184 #define CONFIG_ARM_DCC_MULTI 184 #define CONFIG_ARM_DCC_MULTI
185 #define CONFIG_CPU_V7 185 #define CONFIG_CPU_V7
186 #define CONFIG_SERIAL_CONSOLE 186 #define CONFIG_SERIAL_CONSOLE
187 //#define CONFIG_DCC_CONSOLE 187 //#define CONFIG_DCC_CONSOLE
188 188
189 /* Console setup */ 189 /* Console setup */
190 #if defined(CONFIG_SERIAL_CONSOLE) 190 #if defined(CONFIG_SERIAL_CONSOLE)
191 #define CONFIG_STDOUT "serial" 191 #define CONFIG_STDOUT "serial"
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 #define CONFIG_CMD_NET 243 #define CONFIG_CMD_NET
244 #define CONFIG_NET_MULTI 244 #define CONFIG_NET_MULTI
245 #define CONFIG_CMD_DHCP 245 #define CONFIG_CMD_DHCP
246 #define CONFIG_CMD_PING 246 #define CONFIG_CMD_PING
247 247
248 #define CONFIG_SMC911X 248 #define CONFIG_SMC911X
249 #define CONFIG_SMC911X_16_BIT 249 #define CONFIG_SMC911X_16_BIT
250 #define CONFIG_SMC911X_BASE 0x1B800000 250 #define CONFIG_SMC911X_BASE 0x1B800000
251 251
252 #endif /* __CONFIGS_CHROMEOS_QRDC_COMMON_H */ 252 #endif /* __CONFIGS_CHROMEOS_QRDC_COMMON_H */
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698