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

Side by Side Diff: board/chromeos_st1q/board.c

Issue 1329001: ST1.5 board support and some ST1.0/1.5 common changes. (Closed)
Patch Set: Created 10 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 unified diff | Download patch
« no previous file with comments | « board/chromeos_st15/u-boot.lds ('k') | cpu/armv7Scorpion/QSD8x50/dram.c » ('j') | 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 4 * (C) Copyright 2002
5 * Sysgo Real-Time Solutions, GmbH <www.elinos.com> 5 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6 * Marius Groeger <mgroeger@sysgo.de> 6 * Marius Groeger <mgroeger@sysgo.de>
7 * 7 *
8 * (C) Copyright 2002 8 * (C) Copyright 2002
9 * David Mueller, ELSOFT AG, <d.mueller@elsoft.ch> 9 * David Mueller, ELSOFT AG, <d.mueller@elsoft.ch>
10 * 10 *
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 * Before proceeding, wait until ARM9 has finished booting. 109 * Before proceeding, wait until ARM9 has finished booting.
110 */ 110 */
111 #ifdef USE_PROC_COMM 111 #ifdef USE_PROC_COMM
112 proc_comm_init(); 112 proc_comm_init();
113 proc_comm_wait_for_modem_ready(); 113 proc_comm_wait_for_modem_ready();
114 #else 114 #else
115 115
116 udelay(5000000); 116 udelay(5000000);
117 #endif 117 #endif
118 118
119 #ifdef CONFIG_GENERIC_MMC
120 mmc_initialize(gd->bd);
121 #endif
122
123 #ifdef CONFIG_QSD8X50_LCDC 119 #ifdef CONFIG_QSD8X50_LCDC
124 gd->fb_base = LCDC_FB_ADDR; 120 gd->fb_base = LCDC_FB_ADDR;
125 #endif 121 #endif
126 122
127 return 0; 123 return 0;
128 } 124 }
129 125
130 #ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE 126 #ifdef CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
131 int overwrite_console(void) 127 int overwrite_console(void)
132 { 128 {
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 } 288 }
293 else 289 else
294 { 290 {
295 /* this board does not have an sd/mmc card on this interface. */ 291 /* this board does not have an sd/mmc card on this interface. */
296 return -1; 292 return -1;
297 } 293 }
298 294
299 return 0; 295 return 0;
300 } 296 }
301 #endif 297 #endif
OLDNEW
« no previous file with comments | « board/chromeos_st15/u-boot.lds ('k') | cpu/armv7Scorpion/QSD8x50/dram.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698