Merge branch 'next'
[u-boot/qq2440-u-boot.git] / board / atmel / at91rm9200ek / at91rm9200ek.c
blob64ab5726198ac11881594fd785ddd84999cf026c
1 /*
2 * (C) Copyright 2010 Andreas Bießmann <andreas.devel@gmail.com>
4 * derived from previous work
6 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Marius Groeger <mgroeger@sysgo.de>
10 * SPDX-License-Identifier: GPL-2.0+
13 #include <common.h>
14 #include <netdev.h>
15 #include <asm/arch/hardware.h>
16 #include <asm/arch/at91_pio.h>
17 #include <asm/arch/at91_pmc.h>
18 #include <asm/arch/at91_common.h>
19 #include <asm/io.h>
21 DECLARE_GLOBAL_DATA_PTR;
23 /* ------------------------------------------------------------------------- */
24 int board_init(void)
26 at91_pio_t *pio = (at91_pio_t *)AT91_PIO_BASE;
29 * Correct IRDA resistor problem
30 * Set PA23_TXD in Output
32 writel(ATMEL_PMX_AA_TXD2, &pio->pioa.oer);
34 /* arch number of AT91RM9200EK-Board */
35 gd->bd->bi_arch_number = MACH_TYPE_AT91RM9200EK;
36 /* adress of boot parameters */
37 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
39 return 0;
42 int board_early_init_f(void)
44 at91_seriald_hw_init();
45 return 0;
48 int dram_init (void)
50 /* dram_init must store complete ramsize in gd->ram_size */
51 gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
52 CONFIG_SYS_SDRAM_SIZE);
53 return 0;
56 #ifdef CONFIG_DRIVER_AT91EMAC
57 int board_eth_init(bd_t *bis)
59 return at91emac_register(bis, (u32) ATMEL_BASE_EMAC);
61 #endif