2007-08-30 21:01:49 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007
|
|
|
|
* Stefano Babic, DENX Gmbh, sbabic@denx.de
|
|
|
|
*
|
|
|
|
* (C) Copyright 2004
|
|
|
|
* Robert Whaley, Applied Data Systems, Inc. rwhaley@applieddata.net
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Marius Groeger <mgroeger@sysgo.de>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2007-08-30 21:01:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/arch/pxa-regs.h>
|
2011-11-26 10:17:32 +00:00
|
|
|
#include <asm/arch/pxa.h>
|
2012-09-30 10:09:49 +00:00
|
|
|
#include <asm/arch/regs-mmc.h>
|
2009-05-02 19:49:18 +00:00
|
|
|
#include <netdev.h>
|
2010-09-09 07:50:39 +00:00
|
|
|
#include <asm/io.h>
|
2013-10-04 17:22:26 +00:00
|
|
|
#include <usb.h>
|
2007-08-30 21:01:49 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
#define RH_A_PSM (1 << 8) /* power switching mode */
|
|
|
|
#define RH_A_NPS (1 << 9) /* no power switching */
|
|
|
|
|
|
|
|
extern struct serial_device serial_ffuart_device;
|
|
|
|
extern struct serial_device serial_btuart_device;
|
|
|
|
extern struct serial_device serial_stuart_device;
|
|
|
|
|
2010-10-03 22:21:51 +00:00
|
|
|
#if CONFIG_MK_POLARIS
|
2009-07-01 18:40:41 +00:00
|
|
|
#define BOOT_CONSOLE "serial_stuart"
|
|
|
|
#else
|
|
|
|
#define BOOT_CONSOLE "serial_ffuart"
|
|
|
|
#endif
|
2007-08-30 21:01:49 +00:00
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Miscelaneous platform dependent initialisations
|
|
|
|
*/
|
|
|
|
|
2013-10-10 22:27:55 +00:00
|
|
|
int board_usb_init(int index, enum usb_init_type init)
|
2007-08-30 21:01:49 +00:00
|
|
|
{
|
2010-09-09 07:50:39 +00:00
|
|
|
writel((readl(UHCHR) | UHCHR_PCPL | UHCHR_PSPL) &
|
|
|
|
~(UHCHR_SSEP0 | UHCHR_SSEP1 | UHCHR_SSEP2 | UHCHR_SSE),
|
|
|
|
UHCHR);
|
2007-08-30 21:01:49 +00:00
|
|
|
|
2010-09-09 07:50:39 +00:00
|
|
|
writel(readl(UHCHR) | UHCHR_FSBIR, UHCHR);
|
2007-08-30 21:01:49 +00:00
|
|
|
|
2010-09-09 07:50:39 +00:00
|
|
|
while (readl(UHCHR) & UHCHR_FSBIR)
|
|
|
|
;
|
2007-08-30 21:01:49 +00:00
|
|
|
|
2010-09-09 07:50:39 +00:00
|
|
|
writel(readl(UHCHR) & ~UHCHR_SSE, UHCHR);
|
|
|
|
writel((UHCHIE_UPRIE | UHCHIE_RWIE), UHCHIE);
|
2007-08-30 21:01:49 +00:00
|
|
|
|
|
|
|
/* Clear any OTG Pin Hold */
|
2010-09-09 07:50:39 +00:00
|
|
|
if (readl(PSSR) & PSSR_OTGPH)
|
|
|
|
writel(readl(PSSR) | PSSR_OTGPH, PSSR);
|
2007-08-30 21:01:49 +00:00
|
|
|
|
2010-09-09 07:50:39 +00:00
|
|
|
writel(readl(UHCRHDA) & ~(RH_A_NPS), UHCRHDA);
|
|
|
|
writel(readl(UHCRHDA) | RH_A_PSM, UHCRHDA);
|
2007-08-30 21:01:49 +00:00
|
|
|
|
|
|
|
/* Set port power control mask bits, only 3 ports. */
|
2010-09-09 07:50:39 +00:00
|
|
|
writel(readl(UHCRHDB) | (0x7<<17), UHCRHDB);
|
2009-07-01 02:33:56 +00:00
|
|
|
|
|
|
|
return 0;
|
2007-08-30 21:01:49 +00:00
|
|
|
}
|
|
|
|
|
2013-10-10 22:27:55 +00:00
|
|
|
int board_usb_cleanup(int index, enum usb_init_type init)
|
2007-08-30 21:01:49 +00:00
|
|
|
{
|
2013-10-04 17:22:26 +00:00
|
|
|
return 0;
|
2007-08-30 21:01:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void usb_board_stop(void)
|
|
|
|
{
|
2010-09-09 07:50:39 +00:00
|
|
|
writel(readl(UHCHR) | UHCHR_FHR, UHCHR);
|
2007-08-30 21:01:49 +00:00
|
|
|
udelay(11);
|
2010-09-09 07:50:39 +00:00
|
|
|
writel(readl(UHCHR) & ~UHCHR_FHR, UHCHR);
|
2007-08-30 21:01:49 +00:00
|
|
|
|
2010-09-09 07:50:39 +00:00
|
|
|
writel(readl(UHCCOMS) | 1, UHCCOMS);
|
2007-08-30 21:01:49 +00:00
|
|
|
udelay(10);
|
|
|
|
|
2010-09-09 07:50:39 +00:00
|
|
|
writel(readl(CKEN) & ~CKEN10_USBHOST, CKEN);
|
2007-08-30 21:01:49 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int board_init (void)
|
|
|
|
{
|
2010-10-20 19:28:14 +00:00
|
|
|
/* We have RAM, disable cache */
|
|
|
|
dcache_disable();
|
|
|
|
icache_disable();
|
2007-08-30 21:01:49 +00:00
|
|
|
|
|
|
|
/* arch number of ConXS Board */
|
|
|
|
gd->bd->bi_arch_number = 776;
|
|
|
|
|
|
|
|
/* adress of boot parameters */
|
|
|
|
gd->bd->bi_boot_params = 0xa000003c;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int board_late_init(void)
|
|
|
|
{
|
|
|
|
char *console=getenv("boot_console");
|
|
|
|
|
2009-07-01 18:40:41 +00:00
|
|
|
if ((console == NULL) || (strcmp(console,"serial_btuart") &&
|
|
|
|
strcmp(console,"serial_stuart") &&
|
|
|
|
strcmp(console,"serial_ffuart"))) {
|
|
|
|
console = BOOT_CONSOLE;
|
2007-08-30 21:01:49 +00:00
|
|
|
}
|
2009-07-01 18:40:41 +00:00
|
|
|
setenv("stdout",console);
|
|
|
|
setenv("stdin", console);
|
|
|
|
setenv("stderr",console);
|
2007-08-30 21:01:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-10-20 19:28:14 +00:00
|
|
|
int dram_init(void)
|
|
|
|
{
|
2011-11-26 10:18:57 +00:00
|
|
|
pxa2xx_dram_init();
|
2010-10-20 19:28:14 +00:00
|
|
|
gd->ram_size = PHYS_SDRAM_1_SIZE;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dram_init_banksize(void)
|
2007-08-30 21:01:49 +00:00
|
|
|
{
|
|
|
|
gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
|
|
|
|
gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
|
|
|
|
}
|
2009-05-02 19:49:18 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_DRIVER_DM9000
|
|
|
|
int board_eth_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
return dm9000_initialize(bis);
|
|
|
|
}
|
|
|
|
#endif
|
2012-09-30 10:09:49 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_CMD_MMC
|
|
|
|
int board_mmc_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
pxa_mmc_register(0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|