]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/esd/pci405/pci405.c
Make compile clean, fix the usual small problems.
[karo-tx-uboot.git] / board / esd / pci405 / pci405.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 <asm/processor.h>
26 #include <command.h>
27 #include <cmd_boot.h>
28 #include <malloc.h>
29 #include <pci.h>
30 #include <405gp_pci.h>
31
32 #include "pci405.h"
33
34
35 /* ------------------------------------------------------------------------- */
36
37 #if 0
38 #define FPGA_DEBUG
39 #endif
40
41 /* fpga configuration data - generated by bin2cc */
42 const unsigned char fpgadata[] =
43 {
44 #include "fpgadata.c"
45 };
46
47 /*
48  * include common fpga code (for esd boards)
49  */
50 #include "../common/fpga.c"
51
52
53 /* Prototypes */
54 int gunzip(void *, int, unsigned char *, int *);
55
56
57 int board_pre_init (void)
58 {
59         unsigned long cntrl0Reg;
60
61         /*
62          * IRQ 0-15  405GP internally generated; active high; level sensitive
63          * IRQ 16    405GP internally generated; active low; level sensitive
64          * IRQ 17-24 RESERVED
65          * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
66          * IRQ 26 (EXT IRQ 1) CAN1; active low; level sensitive
67          * IRQ 27 (EXT IRQ 2) CAN2; active low; level sensitive
68          * IRQ 28 (EXT IRQ 3) CAN3; active low; level sensitive
69          * IRQ 29 (EXT IRQ 4) unused; active low; level sensitive
70          * IRQ 30 (EXT IRQ 5) FPGA Timestamp; active low; level sensitive
71          * IRQ 31 (EXT IRQ 6) PCI Reset; active low; level sensitive
72          */
73         mtdcr(uicsr, 0xFFFFFFFF);        /* clear all ints */
74         mtdcr(uicer, 0x00000000);        /* disable all ints */
75         mtdcr(uiccr, 0x00000000);        /* set all to be non-critical*/
76         mtdcr(uicpr, 0xFFFFFF80);        /* set int polarities */
77         mtdcr(uictr, 0x10000000);        /* set int trigger levels */
78         mtdcr(uicvcr, 0x00000001);       /* set vect base=0,INT0 highest priority*/
79         mtdcr(uicsr, 0xFFFFFFFF);        /* clear all ints */
80
81         /*
82          * Setup GPIO pins (IRQ4/GPIO21 as GPIO)
83          */
84         cntrl0Reg = mfdcr(cntrl0);
85         mtdcr(cntrl0, cntrl0Reg | 0x00008000);
86
87         return 0;
88 }
89
90
91 /* ------------------------------------------------------------------------- */
92
93 int misc_init_f (void)
94 {
95         return 0;  /* dummy implementation */
96 }
97
98
99 int misc_init_r (void)
100 {
101         unsigned char *dst;
102         ulong len = sizeof(fpgadata);
103         int status;
104         int index;
105         int i;
106         unsigned int *ptr;
107         unsigned int *magic;
108
109         /*
110          * On PCI-405 the environment is saved in eeprom!
111          * FPGA can be gzip compressed (malloc) and booted this late.
112          */
113
114         dst = malloc(CFG_FPGA_MAX_SIZE);
115         if (gunzip (dst, CFG_FPGA_MAX_SIZE, (uchar *)fpgadata, (int *)&len) != 0) {
116                 printf ("GUNZIP ERROR - must RESET board to recover\n");
117                 do_reset (NULL, 0, 0, NULL);
118         }
119
120         status = fpga_boot(dst, len);
121         if (status != 0) {
122                 printf("\nFPGA: Booting failed ");
123                 switch (status) {
124                 case ERROR_FPGA_PRG_INIT_LOW:
125                         printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
126                         break;
127                 case ERROR_FPGA_PRG_INIT_HIGH:
128                         printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
129                         break;
130                 case ERROR_FPGA_PRG_DONE:
131                         printf("(Timeout: DONE not high after programming FPGA)\n ");
132                         break;
133                 }
134
135                 /* display infos on fpgaimage */
136                 index = 15;
137                 for (i=0; i<4; i++) {
138                         len = dst[index];
139                         printf("FPGA: %s\n", &(dst[index+1]));
140                         index += len+3;
141                 }
142                 putc ('\n');
143                 /* delayed reboot */
144                 for (i=20; i>0; i--) {
145                         printf("Rebooting in %2d seconds \r",i);
146                         for (index=0;index<1000;index++)
147                                 udelay(1000);
148                 }
149                 putc ('\n');
150                 do_reset(NULL, 0, 0, NULL);
151         }
152
153         puts("FPGA:  ");
154
155         /* display infos on fpgaimage */
156         index = 15;
157         for (i=0; i<4; i++) {
158                 len = dst[index];
159                 printf("%s ", &(dst[index+1]));
160                 index += len+3;
161         }
162         putc ('\n');
163
164         /*
165          * Reset FPGA via FPGA_DATA pin
166          */
167         SET_FPGA(FPGA_PRG | FPGA_CLK);
168         udelay(1000); /* wait 1ms */
169         SET_FPGA(FPGA_PRG | FPGA_CLK | FPGA_DATA);
170         udelay(1000); /* wait 1ms */
171
172         /*
173          * Check if magic for pci reconfig is written
174          */
175         magic = (unsigned int *)0x00000004;
176         if (*magic == PCI_RECONFIG_MAGIC) {
177                 /*
178                  * Rewrite pci config regs (only after soft-reset with magic set)
179                  */
180                 ptr = (unsigned int *)PCI_REGS_ADDR;
181                 if (crc32(0, (char *)PCI_REGS_ADDR+4, PCI_REGS_LEN-4) == *ptr) {
182                         puts("Restoring PCI Configurations Regs!\n");
183                         ptr = (unsigned int *)PCI_REGS_ADDR + 1;
184                         for (i=0; i<0x40; i+=4) {
185                                 pci_write_config_dword(PCIDEVID_405GP, i, *ptr++);
186                         }
187                 }
188                 mtdcr(uicsr, 0xFFFFFFFF);        /* clear all ints */
189                 
190                 *magic = 0;      /* clear pci reconfig magic again */
191         }
192
193         free(dst);
194         return (0);
195 }
196
197
198 /*
199  * Check Board Identity:
200  */
201
202 int checkboard (void)
203 {
204         unsigned char str[64];
205         int i = getenv_r ("serial#", str, sizeof(str));
206
207         puts ("Board: ");
208
209         if (i == -1) {
210                 puts ("### No HW ID - assuming PCI405");
211         } else {
212                 puts (str);
213         }
214         putc ('\n');
215
216         return 0;
217 }
218
219 /* ------------------------------------------------------------------------- */
220
221 long int initdram (int board_type)
222 {
223         unsigned long val;
224
225         mtdcr(memcfga, mem_mb0cf);
226         val = mfdcr(memcfgd);
227
228 #if 0
229         printf("\nmb0cf=%x\n", val); /* test-only */
230         printf("strap=%x\n", mfdcr(strap)); /* test-only */
231 #endif
232
233 #if 0 /* test-only: all PCI405 version must report 16mb */
234         return (4*1024*1024 << ((val & 0x000e0000) >> 17));
235 #else
236         return (16*1024*1024);
237 #endif
238 }
239
240 /* ------------------------------------------------------------------------- */
241
242 int testdram (void)
243 {
244         /* TODO: XXX XXX XXX */
245         printf ("test: 16 MB - ok\n");
246
247         return (0);
248 }
249
250 /* ------------------------------------------------------------------------- */