1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27#include <common.h>
28#include <asm/immap.h>
29#include <netdev.h>
30#include <asm/io.h>
31
32int checkboard(void)
33{
34 puts("Board: ");
35 puts("Freescale MCF5253 DEMO\n");
36 return 0;
37};
38
39phys_size_t initdram(int board_type)
40{
41 u32 dramsize = 0;
42
43
44
45
46
47 if (!(mbar_readLong(MCFSIM_DCR) & 0x8000)) {
48 u32 RC, temp;
49
50 RC = (CONFIG_SYS_CLK / 1000000) >> 1;
51 RC = (RC * 15) >> 4;
52
53
54 mbar_writeShort(MCFSIM_DCR, (0x8400 | RC));
55 __asm__("nop");
56
57 mbar_writeLong(MCFSIM_DACR0, 0x00003224);
58 __asm__("nop");
59
60
61 dramsize = (CONFIG_SYS_SDRAM_SIZE << 20);
62 temp = (dramsize - 1) & 0xFFFC0000;
63 mbar_writeLong(MCFSIM_DMR0, temp | 1);
64 __asm__("nop");
65
66 mbar_writeLong(MCFSIM_DACR0, 0x0000322c);
67 mb();
68 __asm__("nop");
69
70
71 *(u32 *) (CONFIG_SYS_SDRAM_BASE) = 0xa5a5a5a5;
72 mb();
73 __asm__("nop");
74
75
76 mbar_writeLong(MCFSIM_DACR0,
77 mbar_readLong(MCFSIM_DACR0) | 0x8000);
78 __asm__("nop");
79
80
81 udelay(500);
82
83
84 mbar_writeLong(MCFSIM_DACR0,
85 mbar_readLong(MCFSIM_DACR0) | 0x0040);
86 __asm__("nop");
87
88 *(u32 *) (CONFIG_SYS_SDRAM_BASE + 0x800) = 0xa5a5a5a5;
89 mb();
90 }
91
92 return dramsize;
93}
94
95int testdram(void)
96{
97
98 printf("DRAM test not implemented!\n");
99
100 return (0);
101}
102
103#ifdef CONFIG_CMD_IDE
104#include <ata.h>
105int ide_preinit(void)
106{
107 return (0);
108}
109
110void ide_set_reset(int idereset)
111{
112 volatile atac_t *ata = (atac_t *) CONFIG_SYS_ATA_BASE_ADDR;
113 long period;
114
115 int piotms[5][9] = { {70, 165, 60, 30, 50, 5, 20, 0, 35},
116 {50, 125, 45, 20, 35, 5, 15, 0, 35},
117 {30, 100, 30, 15, 20, 5, 10, 0, 35},
118 {30, 80, 30, 10, 20, 5, 10, 0, 35},
119 {25, 70, 20, 10, 20, 5, 10, 0, 35}
120 };
121
122 if (idereset) {
123 ata->cr = 0;
124 udelay(100);
125 } else {
126 mbar2_writeLong(CIM_MISCCR, CIM_MISCCR_CPUEND);
127
128#define CALC_TIMING(t) (t + period - 1) / period
129 period = 1000000000 / (CONFIG_SYS_CLK / 2);
130
131
132 ata->t1 = CALC_TIMING(piotms[2][0]);
133 ata->t2w = CALC_TIMING(piotms[2][1]);
134 ata->t2r = CALC_TIMING(piotms[2][1]);
135 ata->ta = CALC_TIMING(piotms[2][8]);
136 ata->trd = CALC_TIMING(piotms[2][7]);
137 ata->t4 = CALC_TIMING(piotms[2][3]);
138 ata->t9 = CALC_TIMING(piotms[2][6]);
139
140 ata->cr = 0x40;
141 udelay(2000);
142 ata->cr |= 0x01;
143 }
144}
145#endif
146
147
148#ifdef CONFIG_DRIVER_DM9000
149int board_eth_init(bd_t *bis)
150{
151 return dm9000_initialize(bis);
152}
153#endif
154