blob: 7e516bfa4079862e1c60f66d099bbb608a563003 [file] [log] [blame]
TsiChung Liew6d33c6a2008-07-23 17:11:47 -05001/*
2 * (C) Copyright 2000-2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Alison Wang32dbaaf2012-03-26 21:49:04 +00005 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
TsiChung Liew6d33c6a2008-07-23 17:11:47 -05006 * Hayden Fraser (Hayden.Fraser@freescale.com)
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
TsiChung Liew6d33c6a2008-07-23 17:11:47 -05009 */
10
11#include <common.h>
12#include <asm/immap.h>
Remy Bohmer60f61e62009-05-02 21:49:18 +020013#include <netdev.h>
Jason Jin6752da62011-04-18 17:54:04 +080014#include <asm/io.h>
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050015
16int checkboard(void)
17{
18 puts("Board: ");
19 puts("Freescale MCF5253 DEMO\n");
20 return 0;
21};
22
23phys_size_t initdram(int board_type)
24{
25 u32 dramsize = 0;
26
27 /*
28 * Check to see if the SDRAM has already been initialized
29 * by a run control tool
30 */
31 if (!(mbar_readLong(MCFSIM_DCR) & 0x8000)) {
32 u32 RC, temp;
33
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020034 RC = (CONFIG_SYS_CLK / 1000000) >> 1;
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050035 RC = (RC * 15) >> 4;
36
37 /* Initialize DRAM Control Register: DCR */
38 mbar_writeShort(MCFSIM_DCR, (0x8400 | RC));
39 __asm__("nop");
40
41 mbar_writeLong(MCFSIM_DACR0, 0x00003224);
42 __asm__("nop");
43
44 /* Initialize DMR0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045 dramsize = (CONFIG_SYS_SDRAM_SIZE << 20);
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050046 temp = (dramsize - 1) & 0xFFFC0000;
47 mbar_writeLong(MCFSIM_DMR0, temp | 1);
48 __asm__("nop");
49
50 mbar_writeLong(MCFSIM_DACR0, 0x0000322c);
Jason Jin6752da62011-04-18 17:54:04 +080051 mb();
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050052 __asm__("nop");
53
54 /* Write to this block to initiate precharge */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020055 *(u32 *) (CONFIG_SYS_SDRAM_BASE) = 0xa5a5a5a5;
Jason Jin6752da62011-04-18 17:54:04 +080056 mb();
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050057 __asm__("nop");
58
59 /* Set RE bit in DACR */
60 mbar_writeLong(MCFSIM_DACR0,
61 mbar_readLong(MCFSIM_DACR0) | 0x8000);
62 __asm__("nop");
63
64 /* Wait for at least 8 auto refresh cycles to occur */
65 udelay(500);
66
67 /* Finish the configuration by issuing the MRS */
68 mbar_writeLong(MCFSIM_DACR0,
69 mbar_readLong(MCFSIM_DACR0) | 0x0040);
70 __asm__("nop");
71
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020072 *(u32 *) (CONFIG_SYS_SDRAM_BASE + 0x800) = 0xa5a5a5a5;
Jason Jin6752da62011-04-18 17:54:04 +080073 mb();
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050074 }
75
76 return dramsize;
77}
78
79int testdram(void)
80{
81 /* TODO: XXX XXX XXX */
82 printf("DRAM test not implemented!\n");
83
84 return (0);
85}
86
87#ifdef CONFIG_CMD_IDE
88#include <ata.h>
89int ide_preinit(void)
90{
91 return (0);
92}
93
94void ide_set_reset(int idereset)
95{
Alison Wang32dbaaf2012-03-26 21:49:04 +000096 atac_t *ata = (atac_t *) CONFIG_SYS_ATA_BASE_ADDR;
TsiChung Liew6d33c6a2008-07-23 17:11:47 -050097 long period;
98 /* t1, t2, t3, t4, t5, t6, t9, tRD, tA */
99 int piotms[5][9] = { {70, 165, 60, 30, 50, 5, 20, 0, 35}, /* PIO 0 */
100 {50, 125, 45, 20, 35, 5, 15, 0, 35}, /* PIO 1 */
101 {30, 100, 30, 15, 20, 5, 10, 0, 35}, /* PIO 2 */
102 {30, 80, 30, 10, 20, 5, 10, 0, 35}, /* PIO 3 */
103 {25, 70, 20, 10, 20, 5, 10, 0, 35} /* PIO 4 */
104 };
105
106 if (idereset) {
Alison Wang32dbaaf2012-03-26 21:49:04 +0000107 /* control reset */
108 out_8(&ata->cr, 0);
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500109 udelay(100);
110 } else {
111 mbar2_writeLong(CIM_MISCCR, CIM_MISCCR_CPUEND);
112
113#define CALC_TIMING(t) (t + period - 1) / period
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200114 period = 1000000000 / (CONFIG_SYS_CLK / 2); /* period in ns */
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500115
116 /*ata->ton = CALC_TIMING (180); */
Alison Wang32dbaaf2012-03-26 21:49:04 +0000117 out_8(&ata->t1, CALC_TIMING(piotms[2][0]));
118 out_8(&ata->t2w, CALC_TIMING(piotms[2][1]));
119 out_8(&ata->t2r, CALC_TIMING(piotms[2][1]));
120 out_8(&ata->ta, CALC_TIMING(piotms[2][8]));
121 out_8(&ata->trd, CALC_TIMING(piotms[2][7]));
122 out_8(&ata->t4, CALC_TIMING(piotms[2][3]));
123 out_8(&ata->t9, CALC_TIMING(piotms[2][6]));
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500124
Alison Wang32dbaaf2012-03-26 21:49:04 +0000125 /* IORDY enable */
126 out_8(&ata->cr, 0x40);
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500127 udelay(2000);
Alison Wang32dbaaf2012-03-26 21:49:04 +0000128 /* IORDY enable */
129 setbits_8(&ata->cr, 0x01);
TsiChung Liew6d33c6a2008-07-23 17:11:47 -0500130 }
131}
132#endif /* CONFIG_CMD_IDE */
Remy Bohmer60f61e62009-05-02 21:49:18 +0200133
134
135#ifdef CONFIG_DRIVER_DM9000
136int board_eth_init(bd_t *bis)
137{
138 return dm9000_initialize(bis);
139}
140#endif