Merge git://www.denx.de/git/u-boot
[pandora-u-boot.git] / board / motionpro / motionpro.c
1 /*
2  * (C) Copyright 2003-2007
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * modified for Promess PRO - by Andy Joseph, andy@promessdev.com
6  * modified for Promess PRO-Motion - by Robert McCullough, rob@promessdev.com
7  * modified by Chris M. Tumas 6/20/06 Change CAS latency to 2 from 3
8  * Also changed the refresh for 100Mhz operation
9  *
10  * See file CREDITS for list of people who contributed to this
11  * project.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License as
15  * published by the Free Software Foundation; either version 2 of
16  * the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26  * MA 02111-1307 USA
27  */
28
29 #include <common.h>
30 #include <mpc5xxx.h>
31 #include <miiphy.h>
32 #include <libfdt.h>
33
34 #if defined(CONFIG_STATUS_LED)
35 #include <status_led.h>
36 #endif /* CONFIG_STATUS_LED */
37
38 /* Kollmorgen DPR initialization data */
39 struct init_elem {
40         unsigned long addr;
41         unsigned len;
42         char *data;
43         } init_seq[] = {
44                 {0x500003F2, 2, "\x86\x00"},            /* HW parameter */
45                 {0x500003F0, 2, "\x00\x00"},
46                 {0x500003EC, 4, "\x00\x80\xc1\x52"},    /* Magic word */
47         };
48
49 /*
50  * Initialize Kollmorgen DPR
51  */
52 static void kollmorgen_init(void)
53 {
54         unsigned i, j;
55         vu_char *p;
56
57         for (i = 0; i < sizeof(init_seq) / sizeof(struct init_elem); ++i) {
58                 p = (vu_char *)init_seq[i].addr;
59                 for (j = 0; j < init_seq[i].len; ++j)
60                         *(p + j) = *(init_seq[i].data + j);
61         }
62
63         printf("DPR:   Kollmorgen DPR initialized\n");
64 }
65
66
67 /*
68  * Early board initalization.
69  */
70 int board_early_init_r(void)
71 {
72         /* Now, when we are in RAM, disable Boot Chipselect and enable CS0 */
73         *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 25);
74         *(vu_long *)MPC5XXX_ADDECR |= (1 << 16);
75
76         /* Initialize Kollmorgen DPR */
77         kollmorgen_init();
78
79         return 0;
80 }
81
82
83 /*
84  * Additional PHY intialization. After being reset in mpc5xxx_fec_init_phy(),
85  * PHY goes into FX mode.  To take it out of the FX mode and switch into
86  * desired TX operation, one needs to clear the FX_SEL bit of Mode Control
87  * Register.
88  */
89 void reset_phy(void)
90 {
91         unsigned short mode_control;
92
93         miiphy_read("FEC ETHERNET", CONFIG_PHY_ADDR, 0x15, &mode_control);
94         miiphy_write("FEC ETHERNET", CONFIG_PHY_ADDR, 0x15,
95                         mode_control & 0xfffe);
96         return;
97 }
98
99 #ifndef CFG_RAMBOOT
100 /*
101  * Helper function to initialize SDRAM controller.
102  */
103 static void sdram_start(int hi_addr)
104 {
105         long hi_addr_bit = hi_addr ? 0x01000000 : 0;
106
107         /* unlock mode register */
108         *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000000 |
109                                                 hi_addr_bit;
110
111         /* precharge all banks */
112         *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000002 |
113                                                 hi_addr_bit;
114
115         /* auto refresh */
116         *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000004 |
117                                                 hi_addr_bit;
118
119         /* auto refresh, second time */
120         *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | 0x80000004 |
121                                                 hi_addr_bit;
122
123         /* set mode register */
124         *(vu_long *)MPC5XXX_SDRAM_MODE = SDRAM_MODE;
125
126         /* normal operation */
127         *(vu_long *)MPC5XXX_SDRAM_CTRL = SDRAM_CONTROL | hi_addr_bit;
128 }
129 #endif /* !CFG_RAMBOOT */
130
131
132 /*
133  * Initalize SDRAM - configure SDRAM controller, detect memory size.
134  */
135 long int initdram(int board_type)
136 {
137         ulong dramsize = 0;
138 #ifndef CFG_RAMBOOT
139         ulong test1, test2;
140
141         /* configure SDRAM start/end for detection */
142         *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x0000001e; /* 2G at 0x0 */
143         *(vu_long *)MPC5XXX_SDRAM_CS1CFG = 0x80000000; /* disabled */
144
145         /* setup config registers */
146         *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = SDRAM_CONFIG1;
147         *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = SDRAM_CONFIG2;
148
149         sdram_start(0);
150         test1 = get_ram_size((long *)CFG_SDRAM_BASE, 0x80000000);
151         sdram_start(1);
152         test2 = get_ram_size((long *)CFG_SDRAM_BASE, 0x80000000);
153         if (test1 > test2) {
154                 sdram_start(0);
155                 dramsize = test1;
156         } else {
157                 dramsize = test2;
158         }
159
160         /* memory smaller than 1MB is impossible */
161         if (dramsize < (1 << 20))
162                 dramsize = 0;
163
164         /* set SDRAM CS0 size according to the amount of RAM found */
165         if (dramsize > 0) {
166                 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x13 +
167                         __builtin_ffs(dramsize >> 20) - 1;
168         } else {
169                 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0; /* disabled */
170         }
171
172         /* let SDRAM CS1 start right after CS0 and disable it */
173         *(vu_long *) MPC5XXX_SDRAM_CS1CFG = dramsize;
174
175 #else /* !CFG_RAMBOOT */
176         /* retrieve size of memory connected to SDRAM CS0 */
177         dramsize = *(vu_long *)MPC5XXX_SDRAM_CS0CFG & 0xFF;
178         if (dramsize >= 0x13)
179                 dramsize = (1 << (dramsize - 0x13)) << 20;
180         else
181                 dramsize = 0;
182 #endif /* CFG_RAMBOOT */
183
184         /* return total ram size */
185         return dramsize;
186 }
187
188
189 int checkboard(void)
190 {
191         uchar rev = *(vu_char *)CPLD_REV_REGISTER;
192         printf("Board: Promess Motion-PRO board (CPLD rev. 0x%02x)\n", rev);
193         return 0;
194 }
195
196
197 #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
198 void ft_board_setup(void *blob, bd_t *bd)
199 {
200         ft_cpu_setup(blob, bd);
201 }
202 #endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */
203
204
205 #if defined(CONFIG_STATUS_LED)
206 void __led_init(led_id_t regaddr, int state)
207 {
208         *((vu_long *) regaddr) |= ENABLE_GPIO_OUT;
209
210         if (state == STATUS_LED_ON)
211                 *((vu_long *) regaddr) |= LED_ON;
212         else
213                 *((vu_long *) regaddr) &= ~LED_ON;
214 }
215
216 void __led_set(led_id_t regaddr, int state)
217 {
218         if (state == STATUS_LED_ON)
219                 *((vu_long *) regaddr) |= LED_ON;
220         else
221                 *((vu_long *) regaddr) &= ~LED_ON;
222 }
223
224 void __led_toggle(led_id_t regaddr)
225 {
226         *((vu_long *) regaddr) ^= LED_ON;
227 }
228 #endif /* CONFIG_STATUS_LED */