2009-01-28 20:40:16 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2004-2008
|
|
|
|
* Texas Instruments, <www.ti.com>
|
|
|
|
*
|
|
|
|
* Author :
|
|
|
|
* Nishanth Menon <nm@ti.com>
|
|
|
|
*
|
|
|
|
* Derived from Beagle Board and 3430 SDP code by
|
|
|
|
* Sunil Kumar <sunilsaini05@gmail.com>
|
|
|
|
* Shashi Ranjan <shashiranjanmca05@gmail.com>
|
|
|
|
* Richard Woodruff <r-woodruff2@ti.com>
|
|
|
|
* Syed Mohammed Khasim <khasim@ti.com>
|
|
|
|
*
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2009-01-28 20:40:16 +00:00
|
|
|
*/
|
|
|
|
#include <common.h>
|
2014-10-23 03:37:15 +00:00
|
|
|
#include <dm.h>
|
|
|
|
#include <ns16550.h>
|
2009-12-15 00:30:39 +00:00
|
|
|
#include <netdev.h>
|
2009-06-28 17:52:29 +00:00
|
|
|
#include <twl4030.h>
|
2016-07-12 18:28:16 +00:00
|
|
|
#include <linux/mtd/omap_gpmc.h>
|
2009-01-28 20:40:16 +00:00
|
|
|
#include <asm/io.h>
|
2014-04-08 14:50:52 +00:00
|
|
|
#include <asm/arch/mem.h>
|
2011-09-04 01:50:35 +00:00
|
|
|
#include <asm/arch/mmc_host_def.h>
|
2009-01-28 20:40:16 +00:00
|
|
|
#include <asm/arch/mux.h>
|
|
|
|
#include <asm/arch/sys_proto.h>
|
|
|
|
#include <asm/mach-types.h>
|
|
|
|
#include "zoom1.h"
|
|
|
|
|
2010-12-21 01:27:51 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2016-07-12 18:28:16 +00:00
|
|
|
/*
|
|
|
|
* gpmc_cfg is initialized by gpmc_init and we use it here.
|
|
|
|
* GPMC definitions for Ethenet Controller LAN9211
|
|
|
|
*/
|
2014-04-08 14:50:52 +00:00
|
|
|
static const u32 gpmc_lab_enet[] = {
|
|
|
|
ZOOM1_ENET_GPMC_CONF1,
|
|
|
|
ZOOM1_ENET_GPMC_CONF2,
|
|
|
|
ZOOM1_ENET_GPMC_CONF3,
|
|
|
|
ZOOM1_ENET_GPMC_CONF4,
|
|
|
|
ZOOM1_ENET_GPMC_CONF5,
|
|
|
|
ZOOM1_ENET_GPMC_CONF6,
|
|
|
|
/*CONF7- computed as params */
|
|
|
|
};
|
|
|
|
|
2014-10-23 03:37:15 +00:00
|
|
|
static const struct ns16550_platdata zoom1_serial = {
|
2016-03-08 03:08:49 +00:00
|
|
|
.base = OMAP34XX_UART3,
|
|
|
|
.reg_shift = 2,
|
2017-01-18 07:05:49 +00:00
|
|
|
.clock = V_NS16550_CLK,
|
|
|
|
.fcr = UART_FCR_DEFVAL,
|
2014-10-23 03:37:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DEVICE(zoom1_uart) = {
|
2015-11-19 13:48:12 +00:00
|
|
|
"ns16550_serial",
|
2014-10-23 03:37:15 +00:00
|
|
|
&zoom1_serial
|
|
|
|
};
|
|
|
|
|
2009-04-02 03:02:20 +00:00
|
|
|
/*
|
2009-01-28 20:40:16 +00:00
|
|
|
* Routine: board_init
|
|
|
|
* Description: Early hardware init.
|
2009-04-02 03:02:20 +00:00
|
|
|
*/
|
2009-01-28 20:40:16 +00:00
|
|
|
int board_init(void)
|
|
|
|
{
|
|
|
|
gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
|
2014-04-08 14:50:52 +00:00
|
|
|
/* CS1 is Ethernet LAN9211 */
|
|
|
|
enable_gpmc_cs_config(gpmc_lab_enet, &gpmc_cfg->cs[1],
|
|
|
|
DEBUG_BASE, GPMC_SIZE_16M);
|
2009-01-28 20:40:16 +00:00
|
|
|
/* board id for Linux */
|
|
|
|
gd->bd->bi_arch_number = MACH_TYPE_OMAP_LDP;
|
|
|
|
/* boot param addr */
|
|
|
|
gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-04-02 03:02:20 +00:00
|
|
|
/*
|
2009-01-28 20:40:16 +00:00
|
|
|
* Routine: misc_init_r
|
|
|
|
* Description: Configure zoom board specific configurations
|
2009-04-02 03:02:20 +00:00
|
|
|
*/
|
2009-01-28 20:40:16 +00:00
|
|
|
int misc_init_r(void)
|
|
|
|
{
|
2009-06-28 17:52:30 +00:00
|
|
|
twl4030_power_init();
|
2009-12-10 15:10:21 +00:00
|
|
|
twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
|
2015-08-27 17:37:13 +00:00
|
|
|
omap_die_id_display();
|
2009-06-28 17:52:29 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Board Reset
|
|
|
|
* The board is reset by holding the red button on the
|
|
|
|
* top right front face for eight seconds.
|
|
|
|
*/
|
|
|
|
twl4030_power_reset_init();
|
|
|
|
|
2009-01-28 20:40:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-04-02 03:02:20 +00:00
|
|
|
/*
|
2009-01-28 20:40:16 +00:00
|
|
|
* Routine: set_muxconf_regs
|
|
|
|
* Description: Setting up the configuration Mux registers specific to the
|
|
|
|
* hardware. Many pins need to be moved from protect to primary
|
|
|
|
* mode.
|
2009-04-02 03:02:20 +00:00
|
|
|
*/
|
2009-01-28 20:40:16 +00:00
|
|
|
void set_muxconf_regs(void)
|
|
|
|
{
|
|
|
|
/* platform specific muxes */
|
|
|
|
MUX_ZOOM1_MDK();
|
|
|
|
}
|
2009-12-15 00:30:39 +00:00
|
|
|
|
2017-05-09 11:31:39 +00:00
|
|
|
#ifdef CONFIG_MMC
|
2011-09-04 01:50:35 +00:00
|
|
|
int board_mmc_init(bd_t *bis)
|
|
|
|
{
|
2012-12-03 02:19:47 +00:00
|
|
|
return omap_mmc_init(0, 0, 0, -1, -1);
|
2011-09-04 01:50:35 +00:00
|
|
|
}
|
2014-11-08 19:55:47 +00:00
|
|
|
|
|
|
|
void board_mmc_power_init(void)
|
|
|
|
{
|
|
|
|
twl4030_power_mmc_init(0);
|
|
|
|
}
|
2011-09-04 01:50:35 +00:00
|
|
|
#endif
|
|
|
|
|
2009-12-15 00:30:39 +00:00
|
|
|
#ifdef CONFIG_CMD_NET
|
|
|
|
int board_eth_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
2014-04-08 14:50:53 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_SMC911X
|
|
|
|
#define STR_ENV_ETHADDR "ethaddr"
|
|
|
|
|
|
|
|
struct eth_device *dev;
|
|
|
|
uchar eth_addr[6];
|
|
|
|
|
|
|
|
rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
|
2017-08-03 18:22:14 +00:00
|
|
|
if (!eth_env_get_enetaddr(STR_ENV_ETHADDR, eth_addr)) {
|
2014-04-08 14:50:53 +00:00
|
|
|
dev = eth_get_dev_by_index(0);
|
|
|
|
if (dev) {
|
2017-08-03 18:22:11 +00:00
|
|
|
eth_env_set_enetaddr(STR_ENV_ETHADDR, dev->enetaddr);
|
2014-04-08 14:50:53 +00:00
|
|
|
} else {
|
|
|
|
printf("zoom1: Couldn't get eth device\n");
|
|
|
|
rc = -1;
|
|
|
|
}
|
|
|
|
}
|
2009-12-15 00:30:39 +00:00
|
|
|
#endif
|
2014-04-08 14:50:53 +00:00
|
|
|
|
2009-12-15 00:30:39 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
#endif
|