]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/lib/board.c
Revert "ARM: move interrupt_init to before relocation"
[people/ms/u-boot.git] / arch / arm / lib / board.c
CommitLineData
c609719b 1/*
57cac1fa 2 * (C) Copyright 2002-2006
c609719b
WD
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2002
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
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>
f5437ad1
SG
36#include <libfdt.h>
37#include <fdtdec.h>
ea3681a6
VL
38#include <post.h>
39#include <logbuff.h>
e103b7ae 40#include <asm/sections.h>
c609719b 41
310cecb8
LCM
42#ifdef CONFIG_BITBANGMII
43#include <miiphy.h>
44#endif
45