| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |