2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2009-03-27 22:26:43 +00:00
|
|
|
/*
|
2016-05-01 01:46:16 +00:00
|
|
|
* (C) Copyright 2010 Andreas Bießmann <andreas@biessmann.org>
|
2010-10-18 20:58:29 +00:00
|
|
|
*
|
|
|
|
* derived from previous work
|
|
|
|
*
|
2009-03-27 22:26:43 +00:00
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Marius Groeger <mgroeger@sysgo.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2010-01-23 11:03:45 +00:00
|
|
|
#include <netdev.h>
|
2017-06-01 01:47:48 +00:00
|
|
|
#include <asm/mach-types.h>
|
2010-10-18 20:58:29 +00:00
|
|
|
#include <asm/arch/hardware.h>
|
|
|
|
#include <asm/arch/at91_pio.h>
|
2011-06-12 01:49:14 +00:00
|
|
|
#include <asm/arch/at91_common.h>
|
2010-01-23 11:03:45 +00:00
|
|
|
#include <asm/io.h>
|
2009-03-27 22:26:43 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
2010-10-18 20:58:29 +00:00
|
|
|
int board_init(void)
|
2009-03-27 22:26:43 +00:00
|
|
|
{
|
2010-10-18 20:58:29 +00:00
|
|
|
at91_pio_t *pio = (at91_pio_t *)AT91_PIO_BASE;
|
2009-03-27 22:26:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Correct IRDA resistor problem
|
|
|
|
* Set PA23_TXD in Output
|
|
|
|
*/
|
2011-02-19 06:17:02 +00:00
|
|
|
writel(ATMEL_PMX_AA_TXD2, &pio->pioa.oer);
|
2009-03-27 22:26:43 +00:00
|
|
|
|
|
|
|
/* arch number of AT91RM9200EK-Board */
|
|
|
|
gd->bd->bi_arch_number = MACH_TYPE_AT91RM9200EK;
|
|
|
|
/* adress of boot parameters */
|
2010-10-18 20:58:29 +00:00
|
|
|
gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
|
2009-03-27 22:26:43 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-06-12 01:49:14 +00:00
|
|
|
int board_early_init_f(void)
|
|
|
|
{
|
|
|
|
at91_seriald_hw_init();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-03-27 22:26:43 +00:00
|
|
|
int dram_init (void)
|
|
|
|
{
|
2010-10-18 20:58:29 +00:00
|
|
|
/* dram_init must store complete ramsize in gd->ram_size */
|
2011-07-03 05:55:33 +00:00
|
|
|
gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
|
2010-10-18 20:58:29 +00:00
|
|
|
CONFIG_SYS_SDRAM_SIZE);
|
2009-03-27 22:26:43 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-23 11:03:45 +00:00
|
|
|
#ifdef CONFIG_DRIVER_AT91EMAC
|
|
|
|
int board_eth_init(bd_t *bis)
|
|
|
|
{
|
2011-02-19 06:17:02 +00:00
|
|
|
return at91emac_register(bis, (u32) ATMEL_BASE_EMAC);
|
2010-01-23 11:03:45 +00:00
|
|
|
}
|
|
|
|
#endif
|