2011-10-14 02:58:26 +00:00
|
|
|
/*
|
|
|
|
* board.c
|
|
|
|
*
|
|
|
|
* Common board functions for AM33XX based boards
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR /PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2012-07-30 23:13:10 +00:00
|
|
|
#include <errno.h>
|
2012-08-13 19:03:19 +00:00
|
|
|
#include <spl.h>
|
2011-10-14 02:58:26 +00:00
|
|
|
#include <asm/arch/cpu.h>
|
|
|
|
#include <asm/arch/hardware.h>
|
2012-01-09 20:38:59 +00:00
|
|
|
#include <asm/arch/omap.h>
|
2011-10-14 02:58:26 +00:00
|
|
|
#include <asm/arch/ddr_defs.h>
|
|
|
|
#include <asm/arch/clock.h>
|
2012-06-04 05:35:34 +00:00
|
|
|
#include <asm/arch/gpio.h>
|
2012-01-09 20:38:59 +00:00
|
|
|
#include <asm/arch/mmc_host_def.h>
|
2012-07-31 17:50:01 +00:00
|
|
|
#include <asm/arch/sys_proto.h>
|
2011-10-14 02:58:26 +00:00
|
|
|
#include <asm/io.h>
|
2012-07-03 15:51:34 +00:00
|
|
|
#include <asm/emif.h>
|
2012-07-31 15:55:01 +00:00
|
|
|
#include <asm/gpio.h>
|
2012-07-30 23:13:10 +00:00
|
|
|
#include <i2c.h>
|
|
|
|
#include <miiphy.h>
|
|
|
|
#include <cpsw.h>
|
2011-10-14 02:58:26 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2012-06-04 05:35:34 +00:00
|
|
|
static const struct gpio_bank gpio_bank_am33xx[4] = {
|
|
|
|
{ (void *)AM33XX_GPIO0_BASE, METHOD_GPIO_24XX },
|
|
|
|
{ (void *)AM33XX_GPIO1_BASE, METHOD_GPIO_24XX },
|
|
|
|
{ (void *)AM33XX_GPIO2_BASE, METHOD_GPIO_24XX },
|
|
|
|
{ (void *)AM33XX_GPIO3_BASE, METHOD_GPIO_24XX },
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct gpio_bank *const omap_gpio_bank = gpio_bank_am33xx;
|
|
|
|
|
2012-01-09 20:38:58 +00:00
|
|
|
#if defined(CONFIG_OMAP_HSMMC) && !defined(CONFIG_SPL_BUILD)
|
2012-10-18 01:21:10 +00:00
|
|
|
int cpu_mmc_init(bd_t *bis)
|
2012-01-09 20:38:58 +00:00
|
|
|
{
|
2012-08-08 17:31:08 +00:00
|
|
|
int ret;
|
2012-10-18 01:21:10 +00:00
|
|
|
|
2012-08-08 17:31:08 +00:00
|
|
|
ret = omap_mmc_init(0, 0, 0);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return omap_mmc_init(1, 0, 0);
|
2012-01-09 20:38:58 +00:00
|
|
|
}
|
|
|
|
#endif
|
2012-01-09 20:38:59 +00:00
|
|
|
|
|
|
|
void setup_clocks_for_console(void)
|
|
|
|
{
|
|
|
|
/* Not yet implemented */
|
|
|
|
return;
|
|
|
|
}
|