2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2010-06-08 20:07:46 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2010
|
|
|
|
* Texas Instruments Incorporated, <www.ti.com>
|
|
|
|
* Aneesh V <aneesh@ti.com>
|
|
|
|
* Steve Sakoman <steve@sakoman.com>
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
2020-05-10 17:40:02 +00:00
|
|
|
#include <init.h>
|
2020-05-10 17:39:56 +00:00
|
|
|
#include <net.h>
|
2010-11-25 10:52:04 +00:00
|
|
|
#include <twl6030.h>
|
2020-06-16 08:03:08 +00:00
|
|
|
#include <serial.h>
|
2010-06-08 20:07:46 +00:00
|
|
|
#include <asm/arch/sys_proto.h>
|
2010-09-19 03:59:54 +00:00
|
|
|
#include <asm/arch/mmc_host_def.h>
|
2010-06-08 20:07:46 +00:00
|
|
|
|
2011-07-21 13:10:01 +00:00
|
|
|
#include "sdp4430_mux_data.h"
|
2010-07-15 20:43:10 +00:00
|
|
|
|
2010-06-08 20:07:46 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
const struct omap_sysinfo sysinfo = {
|
|
|
|
"Board: OMAP4430 SDP\n"
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief board_init
|
|
|
|
*
|
|
|
|
* @return 0
|
|
|
|
*/
|
|
|
|
int board_init(void)
|
|
|
|
{
|
2010-07-15 20:19:16 +00:00
|
|
|
gpmc_init();
|
|
|
|
|
2010-06-08 20:07:46 +00:00
|
|
|
gd->bd->bi_boot_params = (0x80000000 + 0x100); /* boot param addr */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int board_eth_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief misc_init_r - Configure SDP board specific configurations
|
|
|
|
* such as power configurations, ethernet initialization as phase2 of
|
|
|
|
* boot sequence
|
|
|
|
*
|
|
|
|
* @return 0
|
|
|
|
*/
|
|
|
|
int misc_init_r(void)
|
|
|
|
{
|
2010-11-25 10:52:04 +00:00
|
|
|
#ifdef CONFIG_TWL6030_POWER
|
|
|
|
twl6030_init_battery_charging();
|
|
|
|
#endif
|
2010-06-08 20:07:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2010-07-15 20:43:10 +00:00
|
|
|
|
2016-02-27 18:18:56 +00:00
|
|
|
void set_muxconf_regs(void)
|
2011-11-15 14:49:55 +00:00
|
|
|
{
|
2013-05-30 02:54:30 +00:00
|
|
|
do_set_mux((*ctrl)->control_padconf_core_base,
|
|
|
|
core_padconf_array_essential,
|
2011-11-15 14:49:55 +00:00
|
|
|
sizeof(core_padconf_array_essential) /
|
|
|
|
sizeof(struct pad_conf_entry));
|
|
|
|
|
2013-05-30 02:54:30 +00:00
|
|
|
do_set_mux((*ctrl)->control_padconf_wkup_base,
|
|
|
|
wkup_padconf_array_essential,
|
2011-11-15 14:49:55 +00:00
|
|
|
sizeof(wkup_padconf_array_essential) /
|
|
|
|
sizeof(struct pad_conf_entry));
|
|
|
|
|
2013-08-06 12:18:51 +00:00
|
|
|
if ((omap_revision() >= OMAP4460_ES1_0) &&
|
|
|
|
(omap_revision() < OMAP4470_ES1_0))
|
2013-05-30 02:54:30 +00:00
|
|
|
do_set_mux((*ctrl)->control_padconf_wkup_base,
|
2011-11-15 14:49:55 +00:00
|
|
|
wkup_padconf_array_essential_4460,
|
|
|
|
sizeof(wkup_padconf_array_essential_4460) /
|
|
|
|
sizeof(struct pad_conf_entry));
|
|
|
|
}
|
|
|
|
|
2017-05-09 11:31:39 +00:00
|
|
|
#if defined(CONFIG_MMC)
|
2010-09-19 03:59:54 +00:00
|
|
|
int board_mmc_init(bd_t *bis)
|
|
|
|
{
|
2012-12-03 02:19:47 +00:00
|
|
|
omap_mmc_init(0, 0, 0, -1, -1);
|
|
|
|
omap_mmc_init(1, 0, 0, -1, -1);
|
2010-09-19 03:59:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2016-02-27 18:18:52 +00:00
|
|
|
|
2017-02-01 10:39:14 +00:00
|
|
|
#if !defined(CONFIG_SPL_BUILD)
|
2016-02-27 18:18:52 +00:00
|
|
|
void board_mmc_power_init(void)
|
|
|
|
{
|
|
|
|
twl6030_power_mmc_init(0);
|
|
|
|
twl6030_power_mmc_init(1);
|
|
|
|
}
|
2010-09-19 03:59:54 +00:00
|
|
|
#endif
|
2017-02-01 10:39:14 +00:00
|
|
|
#endif
|
2011-11-15 14:49:55 +00:00
|
|
|
|
2020-06-16 08:03:08 +00:00
|
|
|
#if defined(CONFIG_SPL_OS_BOOT)
|
|
|
|
int spl_start_uboot(void)
|
|
|
|
{
|
|
|
|
/* break into full u-boot on 'c' */
|
|
|
|
if (serial_tstc() && serial_getc() == 'c')
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_SPL_OS_BOOT */
|
|
|
|
|
2011-11-15 14:49:55 +00:00
|
|
|
/*
|
|
|
|
* get_board_rev() - get board revision
|
|
|
|
*/
|
|
|
|
u32 get_board_rev(void)
|
|
|
|
{
|
|
|
|
return 0x20;
|
|
|
|
}
|