]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/esd/dasa_sim/dasa_sim.c
Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
[karo-tx-uboot.git] / board / esd / dasa_sim / dasa_sim.c
1 /*
2  * (C) Copyright 2001
3  * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 #include <common.h>
25 #include <netdev.h>
26 #include "dasa_sim.h"
27
28 /* ------------------------------------------------------------------------- */
29
30 #undef FPGA_DEBUG
31
32 #define _NOT_USED_      0xFFFFFFFF
33
34 /* ------------------------------------------------------------------------- */
35
36 /* fpga configuration data - generated by bit2inc */
37 static unsigned char fpgadata[] = {
38 #include "fpgadata.c"
39 };
40
41 #define FPGA_PRG_SLEEP         32       /* fpga program sleep-time */
42 #define LOAD_LONG(a)           a
43
44
45 /******************************************************************************
46  *
47  * sysFpgaBoot - Load fpga-image into fpga
48  *
49  */
50 static int fpgaBoot (void)
51 {
52         int i, j, index, len;
53         unsigned char b;
54         int imageSize;
55
56         imageSize = sizeof (fpgadata);
57
58         /* display infos on fpgaimage */
59         index = 15;
60         for (i = 0; i < 4; i++) {
61                 len = fpgadata[index];
62                 index += len + 3;
63         }
64
65         /* search for preamble 0xFF2X */
66         for (index = 0; index < imageSize - 1; index++) {
67                 if ((fpgadata[index] == 0xff)
68                         && ((fpgadata[index + 1] & 0xf0) == 0x20))
69                         break;
70         }
71
72         /* enable cs1 instead of user0... */
73         *(unsigned long *) 0x50000084 &= ~0x00000002;
74
75 #ifdef FPGA_DEBUG
76         printf ("%s\n",
77                         ((in32 (0x50000084) & 0x00010000) == 0) ? "NOT DONE" : "DONE");
78 #endif
79
80         /* init fpga by asserting and deasserting PROGRAM* (USER2)... */
81         *(unsigned long *) 0x50000084 &= ~0x00000400;
82         udelay (FPGA_PRG_SLEEP * 1000);
83
84         *(unsigned long *) 0x50000084 |= 0x00000400;
85         udelay (FPGA_PRG_SLEEP * 1000);
86
87 #ifdef FPGA_DEBUG
88         printf ("%s\n",
89                         ((in32 (0x50000084) & 0x00010000) == 0) ? "NOT DONE" : "DONE");
90 #endif
91
92         /* cs1: disable burst, disable ready */
93         *(unsigned long *) 0x50000114 &= ~0x00000300;
94
95         /* cs1: set write timing */
96         *(unsigned long *) 0x50000118 |= 0x00010900;
97
98         /* write configuration-data into fpga... */
99         for (i = index; i < imageSize; i++) {
100                 b = fpgadata[i];
101                 for (j = 0; j < 8; j++) {
102                         *(unsigned long *) 0x30000000 =
103                                 ((b & 0x80) == 0x80)
104                                 ? LOAD_LONG (0x03030101)
105                                 : LOAD_LONG (0x02020000);
106                         b <<= 1;
107                 }
108         }
109
110 #ifdef FPGA_DEBUG
111         printf ("%s\n",
112                         ((in32 (0x50000084) & 0x00010000) == 0) ? "NOT DONE" : "DONE");
113 #endif
114
115         /* set cs1 to 32 bit data-width, disable burst, enable ready */
116         *(unsigned long *) 0x50000114 |= 0x00000202;
117         *(unsigned long *) 0x50000114 &= ~0x00000100;
118
119         /* cs1: set iop access to little endian */
120         *(unsigned long *) 0x50000114 &= ~0x00000010;
121
122         /* cs1: set read and write timing */
123         *(unsigned long *) 0x50000118 = 0x00010000;
124         *(unsigned long *) 0x5000011c = 0x00010001;
125
126 #ifdef FPGA_DEBUG
127         printf ("%s\n",
128                         ((in32 (0x50000084) & 0x00010000) == 0) ? "NOT DONE" : "DONE");
129 #endif
130
131         /* wait for 30 ms... */
132         udelay (30 * 1000);
133         /* check if fpga's DONE signal - correctly booted ? */
134         if ((*(unsigned long *) 0x50000084 & 0x00010000) == 0)
135                 return -1;
136
137         return 0;
138 }
139
140
141 int board_early_init_f (void)
142 {
143         /*
144          * Init pci regs
145          */
146         *(unsigned long *) 0x50000304 = 0x02900007;     /* enable mem/io/master bits */
147         *(unsigned long *) 0x500001b4 = 0x00000000;     /* disable pci interrupt output enable */
148         *(unsigned long *) 0x50000354 = 0x00c05800;     /* disable emun interrupt output enable */
149         *(unsigned long *) 0x50000344 = 0x00000000;     /* disable pme interrupt output enable */
150         *(unsigned long *) 0x50000310 = 0x00000000;     /* pcibar0 */
151         *(unsigned long *) 0x50000314 = 0x00000000;     /* pcibar1 */
152         *(unsigned long *) 0x50000318 = 0x00000000;     /* pcibar2 */
153
154         return 0;
155 }
156
157
158 /*
159  * Check Board Identity:
160  */
161
162 int checkboard (void)
163 {
164         int index;
165         int len;
166         char str[64];
167         int i = getenv_r ("serial#", str, sizeof (str));
168         int fpga;
169         unsigned short val;
170
171         puts ("Board: ");
172
173         /*
174          * Boot onboard FPGA
175          */
176         fpga = fpgaBoot ();
177
178         if (!i || strncmp (str, "DASA_SIM", 8)) {
179                 puts ("### No HW ID - assuming DASA_SIM");
180         }
181
182         puts (str);
183
184         if (fpga == 0) {
185                 val = *(unsigned short *) 0x30000202;
186                 printf (" (Id=%d Version=%d Revision=%d)",
187                         (val & 0x07f8) >> 3, val & 0x0001, (val & 0x0006) >> 1);
188
189                 puts ("\nFPGA:  ");
190
191                 /* display infos on fpgaimage */
192                 index = 15;
193                 for (i = 0; i < 4; i++) {
194                         len = fpgadata[index];
195                         printf ("%s ", &(fpgadata[index + 1]));
196                         index += len + 3;
197                 }
198         } else {
199                 puts ("\nFPGA:  Booting failed!");
200         }
201
202         putc ('\n');
203
204         return 0;
205 }
206
207 phys_size_t initdram (int board_type)
208 {
209         return (16 * 1024 * 1024);
210 }