1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24#include <common.h>
25#include <asm/processor.h>
26#include <asm/io.h>
27#include <command.h>
28#include <malloc.h>
29
30
31
32#if 0
33#define FPGA_DEBUG
34#endif
35
36extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
37extern void lxt971_no_sleep(void);
38
39
40const unsigned char fpgadata[] =
41{
42#include "fpgadata.c"
43};
44
45
46
47
48#include "../common/fpga.c"
49
50
51int board_early_init_f (void)
52{
53
54
55
56
57
58
59
60
61
62
63
64
65 mtdcr(UIC0SR, 0xFFFFFFFF);
66 mtdcr(UIC0ER, 0x00000000);
67 mtdcr(UIC0CR, 0x00000000);
68 mtdcr(UIC0PR, 0xFFFFFF9F);
69 mtdcr(UIC0TR, 0x10000000);
70 mtdcr(UIC0VCR, 0x00000001);
71 mtdcr(UIC0SR, 0xFFFFFFFF);
72
73
74
75
76 mtebc (EBC0_CFG, 0xa8400000);
77
78 return 0;
79}
80
81int misc_init_r (void)
82{
83 unsigned char *dst;
84 ulong len = sizeof(fpgadata);
85 int status;
86 int index;
87 int i;
88
89 dst = malloc(CONFIG_SYS_FPGA_MAX_SIZE);
90 if (gunzip (dst, CONFIG_SYS_FPGA_MAX_SIZE, (uchar *)fpgadata, &len) != 0) {
91 printf ("GUNZIP ERROR - must RESET board to recover\n");
92 do_reset (NULL, 0, 0, NULL);
93 }
94
95 status = fpga_boot(dst, len);
96 if (status != 0) {
97 printf("\nFPGA: Booting failed ");
98 switch (status) {
99 case ERROR_FPGA_PRG_INIT_LOW:
100 printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
101 break;
102 case ERROR_FPGA_PRG_INIT_HIGH:
103 printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
104 break;
105 case ERROR_FPGA_PRG_DONE:
106 printf("(Timeout: DONE not high after programming FPGA)\n ");
107 break;
108 }
109
110
111 index = 15;
112 for (i=0; i<4; i++) {
113 len = dst[index];
114 printf("FPGA: %s\n", &(dst[index+1]));
115 index += len+3;
116 }
117 putc ('\n');
118
119 for (i=20; i>0; i--) {
120 printf("Rebooting in %2d seconds \r",i);
121 for (index=0;index<1000;index++)
122 udelay(1000);
123 }
124 putc ('\n');
125 do_reset(NULL, 0, 0, NULL);
126 }
127
128 puts("FPGA: ");
129
130
131 index = 15;
132 for (i=0; i<4; i++) {
133 len = dst[index];
134 printf("%s ", &(dst[index+1]));
135 index += len+3;
136 }
137 putc ('\n');
138
139 free(dst);
140
141
142
143
144 SET_FPGA(FPGA_PRG | FPGA_CLK);
145 udelay(1000);
146 SET_FPGA(FPGA_PRG | FPGA_CLK | FPGA_DATA);
147 udelay(1000);
148
149
150
151
152 out_be32((void *)GPIO0_OR, in_be32((void *)GPIO0_OR) | CONFIG_SYS_DUART_RST);
153 udelay(10);
154 out_be32((void *)GPIO0_OR, in_be32((void *)GPIO0_OR) & ~CONFIG_SYS_DUART_RST);
155 udelay(1000);
156
157
158
159
160 out_8((void *)(DUART0_BA + 4), 0x08);
161 out_8((void *)(DUART1_BA + 4), 0x08);
162 out_8((void *)(DUART2_BA + 4), 0x08);
163 out_8((void *)(DUART3_BA + 4), 0x08);
164
165 return (0);
166}
167
168
169
170
171
172
173int checkboard (void)
174{
175 char str[64];
176 int i = getenv_r ("serial#", str, sizeof(str));
177
178 puts ("Board: ");
179
180 if (i == -1) {
181 puts ("### No HW ID - assuming ASH405");
182 } else {
183 puts(str);
184 }
185
186 putc ('\n');
187
188 return 0;
189}
190
191void reset_phy(void)
192{
193#ifdef CONFIG_LXT971_NO_SLEEP
194
195
196
197 lxt971_no_sleep();
198#endif
199}
200