6a6c65fe5f2211231c61e730aecab4b792a7590e
[oweals/u-boot.git] / board / freescale / m5253demo / m5253demo.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2000-2003
4  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5  *
6  * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
7  * Hayden Fraser (Hayden.Fraser@freescale.com)
8  */
9
10 #include <common.h>
11 #include <init.h>
12 #include <net.h>
13 #include <asm/immap.h>
14 #include <netdev.h>
15 #include <asm/io.h>
16
17 DECLARE_GLOBAL_DATA_PTR;
18
19 int checkboard(void)
20 {
21         puts("Board: ");
22         puts("Freescale MCF5253 DEMO\n");
23         return 0;
24 };
25
26 int dram_init(void)
27 {
28         u32 dramsize = 0;
29
30         /*
31          * Check to see if the SDRAM has already been initialized
32          * by a run control tool
33          */
34         if (!(mbar_readLong(MCFSIM_DCR) & 0x8000)) {
35                 u32 RC, temp;
36
37                 RC = (CONFIG_SYS_CLK / 1000000) >> 1;
38                 RC = (RC * 15) >> 4;
39
40                 /* Initialize DRAM Control Register: DCR */
41                 mbar_writeShort(MCFSIM_DCR, (0x8400 | RC));
42                 __asm__("nop");
43
44                 mbar_writeLong(MCFSIM_DACR0, 0x00003224);
45                 __asm__("nop");
46
47                 /* Initialize DMR0 */
48                 dramsize = (CONFIG_SYS_SDRAM_SIZE << 20);
49                 temp = (dramsize - 1) & 0xFFFC0000;
50                 mbar_writeLong(MCFSIM_DMR0, temp | 1);
51                 __asm__("nop");
52
53                 mbar_writeLong(MCFSIM_DACR0, 0x0000322c);
54                 mb();
55                 __asm__("nop");
56
57                 /* Write to this block to initiate precharge */
58                 *(u32 *) (CONFIG_SYS_SDRAM_BASE) = 0xa5a5a5a5;
59                 mb();
60                 __asm__("nop");
61
62                 /* Set RE bit in DACR */
63                 mbar_writeLong(MCFSIM_DACR0,
64                                mbar_readLong(MCFSIM_DACR0) | 0x8000);
65                 __asm__("nop");
66
67                 /* Wait for at least 8 auto refresh cycles to occur */
68                 udelay(500);
69
70                 /* Finish the configuration by issuing the MRS */
71                 mbar_writeLong(MCFSIM_DACR0,
72                                mbar_readLong(MCFSIM_DACR0) | 0x0040);
73                 __asm__("nop");
74
75                 *(u32 *) (CONFIG_SYS_SDRAM_BASE + 0x800) = 0xa5a5a5a5;
76                 mb();
77         }
78
79         gd->ram_size = dramsize;
80
81         return 0;
82 }
83
84 int testdram(void)
85 {
86         /* TODO: XXX XXX XXX */
87         printf("DRAM test not implemented!\n");
88
89         return (0);
90 }
91
92 #ifdef CONFIG_IDE
93 #include <ata.h>
94 int ide_preinit(void)
95 {
96         return (0);
97 }
98
99 void ide_set_reset(int idereset)
100 {
101         atac_t *ata = (atac_t *) CONFIG_SYS_ATA_BASE_ADDR;
102         long period;
103         /*  t1,  t2,  t3,  t4,  t5,  t6,  t9, tRD,  tA */
104         int piotms[5][9] = { {70, 165, 60, 30, 50, 5, 20, 0, 35},       /* PIO 0 */
105         {50, 125, 45, 20, 35, 5, 15, 0, 35},    /* PIO 1 */
106         {30, 100, 30, 15, 20, 5, 10, 0, 35},    /* PIO 2 */
107         {30, 80, 30, 10, 20, 5, 10, 0, 35},     /* PIO 3 */
108         {25, 70, 20, 10, 20, 5, 10, 0, 35}      /* PIO 4 */
109         };
110
111         if (idereset) {
112                 /* control reset */
113                 out_8(&ata->cr, 0);
114                 udelay(100);
115         } else {
116                 mbar2_writeLong(CIM_MISCCR, CIM_MISCCR_CPUEND);
117
118 #define CALC_TIMING(t) (t + period - 1) / period
119                 period = 1000000000 / (CONFIG_SYS_CLK / 2);     /* period in ns */
120
121                 /*ata->ton = CALC_TIMING (180); */
122                 out_8(&ata->t1, CALC_TIMING(piotms[2][0]));
123                 out_8(&ata->t2w, CALC_TIMING(piotms[2][1]));
124                 out_8(&ata->t2r, CALC_TIMING(piotms[2][1]));
125                 out_8(&ata->ta, CALC_TIMING(piotms[2][8]));
126                 out_8(&ata->trd, CALC_TIMING(piotms[2][7]));
127                 out_8(&ata->t4, CALC_TIMING(piotms[2][3]));
128                 out_8(&ata->t9, CALC_TIMING(piotms[2][6]));
129
130                 /* IORDY enable */
131                 out_8(&ata->cr, 0x40);
132                 udelay(2000);
133                 /* IORDY enable */
134                 setbits_8(&ata->cr, 0x01);
135         }
136 }
137 #endif                          /* CONFIG_IDE */
138
139
140 #ifdef CONFIG_DRIVER_DM9000
141 int board_eth_init(bd_t *bis)
142 {
143         return dm9000_initialize(bis);
144 }
145 #endif