2007-08-16 18:20:50 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000-2003
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*
|
2012-03-26 21:49:04 +00:00
|
|
|
* Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
|
2007-08-16 18:20:50 +00:00
|
|
|
* Hayden Fraser (Hayden.Fraser@freescale.com)
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2007-08-16 18:20:50 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/immap.h>
|
2012-03-26 21:49:04 +00:00
|
|
|
#include <asm/io.h>
|
2007-08-16 18:20:50 +00:00
|
|
|
|
2017-03-31 14:40:25 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2007-08-16 18:20:50 +00:00
|
|
|
int checkboard(void)
|
|
|
|
{
|
|
|
|
puts("Board: ");
|
|
|
|
puts("Freescale MCF5253 EVBE\n");
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
|
2017-04-06 18:47:05 +00:00
|
|
|
int dram_init(void)
|
2007-08-16 18:20:50 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Check to see if the SDRAM has already been initialized
|
|
|
|
* by a run control tool
|
|
|
|
*/
|
|
|
|
if (!(mbar_readLong(MCFSIM_DCR) & 0x8000)) {
|
|
|
|
u32 RC, dramsize;
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
RC = (CONFIG_SYS_CLK / 1000000) >> 1;
|
2007-08-16 18:20:50 +00:00
|
|
|
RC = (RC * 15) >> 4;
|
|
|
|
|
|
|
|
/* Initialize DRAM Control Register: DCR */
|
|
|
|
mbar_writeShort(MCFSIM_DCR, (0x8400 | RC));
|
2008-08-06 19:11:36 +00:00
|
|
|
asm("nop");
|
2007-08-16 18:20:50 +00:00
|
|
|
|
2008-08-06 19:11:36 +00:00
|
|
|
mbar_writeLong(MCFSIM_DACR0, 0x00002320);
|
|
|
|
asm("nop");
|
2007-08-16 18:20:50 +00:00
|
|
|
|
|
|
|
/* Initialize DMR0 */
|
2008-10-16 13:01:15 +00:00
|
|
|
dramsize = ((CONFIG_SYS_SDRAM_SIZE << 20) - 1) & 0xFFFC0000;
|
2007-08-16 18:20:50 +00:00
|
|
|
mbar_writeLong(MCFSIM_DMR0, dramsize | 1);
|
2008-08-06 19:11:36 +00:00
|
|
|
asm("nop");
|
2007-08-16 18:20:50 +00:00
|
|
|
|
2008-08-06 19:11:36 +00:00
|
|
|
mbar_writeLong(MCFSIM_DACR0, 0x00002328);
|
|
|
|
asm("nop");
|
2007-08-16 18:20:50 +00:00
|
|
|
|
|
|
|
/* Write to this block to initiate precharge */
|
2008-10-16 13:01:15 +00:00
|
|
|
*(u32 *) (CONFIG_SYS_SDRAM_BASE) = 0xa5a5a5a5;
|
2008-08-06 19:11:36 +00:00
|
|
|
asm("nop");
|
2007-08-16 18:20:50 +00:00
|
|
|
|
|
|
|
/* Set RE bit in DACR */
|
|
|
|
mbar_writeLong(MCFSIM_DACR0,
|
|
|
|
mbar_readLong(MCFSIM_DACR0) | 0x8000);
|
2008-08-06 19:11:36 +00:00
|
|
|
asm("nop");
|
2007-08-16 18:20:50 +00:00
|
|
|
|
|
|
|
/* Wait for at least 8 auto refresh cycles to occur */
|
|
|
|
udelay(500);
|
|
|
|
|
|
|
|
/* Finish the configuration by issuing the MRS */
|
|
|
|
mbar_writeLong(MCFSIM_DACR0,
|
|
|
|
mbar_readLong(MCFSIM_DACR0) | 0x0040);
|
2008-08-06 19:11:36 +00:00
|
|
|
asm("nop");
|
2007-08-16 18:20:50 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
*(u32 *) (CONFIG_SYS_SDRAM_BASE + 0x800) = 0xa5a5a5a5;
|
2007-08-16 18:20:50 +00:00
|
|
|
}
|
|
|
|
|
2017-03-31 14:40:25 +00:00
|
|
|
gd->ram_size = CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
|
|
|
|
|
|
|
|
return 0;
|
2007-08-16 18:20:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int testdram(void)
|
|
|
|
{
|
|
|
|
/* TODO: XXX XXX XXX */
|
|
|
|
printf("DRAM test not implemented!\n");
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2017-05-17 09:25:30 +00:00
|
|
|
#ifdef CONFIG_IDE
|
2007-08-16 18:20:50 +00:00
|
|
|
#include <ata.h>
|
|
|
|
int ide_preinit(void)
|
|
|
|
{
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ide_set_reset(int idereset)
|
|
|
|
{
|
2012-03-26 21:49:04 +00:00
|
|
|
atac_t *ata = (atac_t *) CONFIG_SYS_ATA_BASE_ADDR;
|
2007-08-16 18:20:50 +00:00
|
|
|
long period;
|
|
|
|
/* t1, t2, t3, t4, t5, t6, t9, tRD, tA */
|
|
|
|
int piotms[5][9] = { {70, 165, 60, 30, 50, 5, 20, 0, 35}, /* PIO 0 */
|
|
|
|
{50, 125, 45, 20, 35, 5, 15, 0, 35}, /* PIO 1 */
|
|
|
|
{30, 100, 30, 15, 20, 5, 10, 0, 35}, /* PIO 2 */
|
|
|
|
{30, 80, 30, 10, 20, 5, 10, 0, 35}, /* PIO 3 */
|
|
|
|
{25, 70, 20, 10, 20, 5, 10, 0, 35} /* PIO 4 */
|
|
|
|
};
|
|
|
|
|
|
|
|
if (idereset) {
|
2012-03-26 21:49:04 +00:00
|
|
|
/* control reset */
|
|
|
|
out_8(&ata->cr, 0);
|
2007-08-16 18:20:50 +00:00
|
|
|
udelay(100);
|
|
|
|
} else {
|
|
|
|
mbar2_writeLong(CIM_MISCCR, CIM_MISCCR_CPUEND);
|
|
|
|
|
|
|
|
#define CALC_TIMING(t) (t + period - 1) / period
|
2008-10-16 13:01:15 +00:00
|
|
|
period = 1000000000 / (CONFIG_SYS_CLK / 2); /* period in ns */
|
2007-08-16 18:20:50 +00:00
|
|
|
|
|
|
|
/*ata->ton = CALC_TIMING (180); */
|
2012-03-26 21:49:04 +00:00
|
|
|
out_8(&ata->t1, CALC_TIMING(piotms[2][0]));
|
|
|
|
out_8(&ata->t2w, CALC_TIMING(piotms[2][1]));
|
|
|
|
out_8(&ata->t2r, CALC_TIMING(piotms[2][1]));
|
|
|
|
out_8(&ata->ta, CALC_TIMING(piotms[2][8]));
|
|
|
|
out_8(&ata->trd, CALC_TIMING(piotms[2][7]));
|
|
|
|
out_8(&ata->t4, CALC_TIMING(piotms[2][3]));
|
|
|
|
out_8(&ata->t9, CALC_TIMING(piotms[2][6]));
|
|
|
|
|
|
|
|
/* IORDY enable */
|
|
|
|
out_8(&ata->cr, 0x40);
|
2007-08-16 18:20:50 +00:00
|
|
|
udelay(2000);
|
2012-03-26 21:49:04 +00:00
|
|
|
/* IORDY enable */
|
|
|
|
setbits_8(&ata->cr, 0x01);
|
2007-08-16 18:20:50 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-17 09:25:30 +00:00
|
|
|
#endif /* CONFIG_IDE */
|