2019-09-27 13:08:52 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Microchip Technology Inc. and its subsidiaries
|
|
|
|
*
|
|
|
|
* Author: Sandeep Sheriker M <sandeep.sheriker@microchip.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-12-28 17:45:05 +00:00
|
|
|
#include <init.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2019-09-27 13:08:52 +00:00
|
|
|
#include <asm/io.h>
|
2019-09-27 13:09:07 +00:00
|
|
|
#include <asm/arch/at91sam9_smc.h>
|
2019-09-27 13:08:52 +00:00
|
|
|
#include <asm/arch/at91_common.h>
|
|
|
|
#include <asm/arch/at91_rstc.h>
|
2019-09-27 13:09:07 +00:00
|
|
|
#include <asm/arch/at91_sfr.h>
|
2019-09-27 13:08:52 +00:00
|
|
|
#include <asm/arch/clk.h>
|
|
|
|
#include <asm/arch/gpio.h>
|
|
|
|
#include <debug_uart.h>
|
|
|
|
#include <asm/mach-types.h>
|
|
|
|
|
2019-09-30 07:29:01 +00:00
|
|
|
extern void at91_pda_detect(void);
|
|
|
|
|
2019-09-27 13:08:52 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
void at91_prepare_cpu_var(void);
|
|
|
|
|
|
|
|
#ifdef CONFIG_BOARD_LATE_INIT
|
|
|
|
int board_late_init(void)
|
|
|
|
{
|
|
|
|
at91_prepare_cpu_var();
|
2019-09-30 07:29:01 +00:00
|
|
|
|
|
|
|
at91_pda_detect();
|
|
|
|
|
2019-09-27 13:08:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG_UART_BOARD_INIT
|
|
|
|
void board_debug_uart_init(void)
|
|
|
|
{
|
|
|
|
at91_seriald_hw_init();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_BOARD_EARLY_INIT_F
|
|
|
|
int board_early_init_f(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-10-09 09:23:43 +00:00
|
|
|
#define MAC24AA_MAC_OFFSET 0xfa
|
|
|
|
|
|
|
|
#ifdef CONFIG_MISC_INIT_R
|
|
|
|
int misc_init_r(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_I2C_EEPROM
|
|
|
|
at91_set_ethaddr(MAC24AA_MAC_OFFSET);
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-09-27 13:08:52 +00:00
|
|
|
int board_init(void)
|
|
|
|
{
|
|
|
|
/* address of boot parameters */
|
2022-11-16 18:10:37 +00:00
|
|
|
gd->bd->bi_boot_params = CFG_SYS_SDRAM_BASE + 0x100;
|
2019-09-27 13:08:52 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int dram_init(void)
|
|
|
|
{
|
2022-11-16 18:10:37 +00:00
|
|
|
gd->ram_size = get_ram_size((void *)CFG_SYS_SDRAM_BASE,
|
|
|
|
CFG_SYS_SDRAM_SIZE);
|
2019-09-27 13:08:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|