]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/lib/board.c
Move lib_$ARCH directories to arch/$ARCH/lib
[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 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
57cac1fa
WD
28/*
29 * To match the U-Boot user interface on ARM platforms to the U-Boot
30 * standard (as on PPC platforms), some messages with debug character
31 * are removed from the default U-Boot build.
32 *
33 * Define DEBUG here if you want additional info as shown below
34 * printed upon startup:
35 *
36 * U-Boot code: 00F00000 -> 00F3C774 BSS: -> 00FC3274
37 * IRQ Stack: 00ebff7c
38 * FIQ Stack: 00ebef7c
39 */
40
c609719b
WD
41#include <common.h>
42#include <command.h>
3595ac49 43#include <malloc.h>
52cb4d4f 44#include <stdio_dev.h>
561858ee 45#include <timestamp.h>
c609719b
WD
46#include <version.h>
47#include <net.h>
b71190f3 48#include <serial.h>
d6ac2ed8
SW
49#include <nand.h>
50#include <onenand_uboot.h>
379e9fc0 51#include <mmc.h>
c609719b 52
310cecb8
LCM
53#ifdef CONFIG_BITBANGMII
54#include <miiphy.h>
55#endif
56
f39748ae 57#ifdef CONFIG_DRIVER_SMC91111
2439e4bf 58#include "../drivers/net/smc91111.h"
f39748ae
WD
59#endif
60#ifdef CONFIG_DRIVER_LAN91C96
2439e4bf 61#include "../drivers/net/lan91c96.h"
f39748ae
WD
62#endif
63