]>
Commit | Line | Data |
---|---|---|
c609719b | 1 | /* |
57cac1fa | 2 | * (C) Copyright 2002-2006 |
c609719b WD |
3 | * Wolfgang Denk, DENX Software Engineering, [email protected]. |
4 | * | |
5 | * (C) Copyright 2002 | |
6 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> | |
7 | * Marius Groeger <[email protected]> | |
8 | * | |
1a459660 | 9 | * SPDX-License-Identifier: GPL-2.0+ |
c609719b WD |
10 | */ |
11 | ||
57cac1fa WD |
12 | /* |
13 | * To match the U-Boot user interface on ARM platforms to the U-Boot | |
14 | * standard (as on PPC platforms), some messages with debug character | |
15 | * are removed from the default U-Boot build. | |
16 | * | |
17 | * Define DEBUG here if you want additional info as shown below | |
18 | * printed upon startup: | |
19 | * | |
20 | * U-Boot code: 00F00000 -> 00F3C774 BSS: -> 00FC3274 | |
21 | * IRQ Stack: 00ebff7c | |
22 | * FIQ Stack: 00ebef7c | |
23 | */ | |
24 | ||
c609719b WD |
25 | #include <common.h> |
26 | #include <command.h> | |
06fd8538 | 27 | #include <environment.h> |
3595ac49 | 28 | #include <malloc.h> |
52cb4d4f | 29 | #include <stdio_dev.h> |
c609719b WD |
30 | #include <version.h> |
31 | #include <net.h> | |
b71190f3 | 32 | #include <serial.h> |
d6ac2ed8 SW |
33 | #include <nand.h> |
34 | #include <onenand_uboot.h> | |
379e9fc0 | 35 | #include <mmc.h> |
c6f3d50b | 36 | #include <scsi.h> |
f5437ad1 SG |
37 | #include <libfdt.h> |
38 | #include <fdtdec.h> | |
ea3681a6 VL |
39 | #include <post.h> |
40 | #include <logbuff.h> | |
e103b7ae | 41 | #include <asm/sections.h> |
c609719b | 42 | |
310cecb8 LCM |
43 | #ifdef CONFIG_BITBANGMII |
44 | #include <miiphy.h> | |
45 | #endif | |
46 | ||