blob: 644493baafd71735aef05a2b67ab5da8a431e829 [file] [log] [blame]
Dirk Eibach2da0fc02011-01-21 09:31:21 +01001/*
2 * (C) Copyright 2010
3 * Dirk Eibach, Guntermann & Drunck GmbH, eibach@gdsys.de
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 <command.h>
26#include <asm/processor.h>
27#include <asm/io.h>
28#include <asm/ppc4xx-gpio.h>
Dirk Eibachb19bf832012-04-26 03:54:23 +000029#include <dtt.h>
Dirk Eibach2da0fc02011-01-21 09:31:21 +010030
Dirk Eibach6e9e6c32012-04-26 03:54:22 +000031#include "405ep.h"
Dirk Eibach2da0fc02011-01-21 09:31:21 +010032#include <gdsys_fpga.h>
33
34#include "../common/osd.h"
35
Dirk Eibach6e9e6c32012-04-26 03:54:22 +000036#define LATCH0_BASE (CONFIG_SYS_LATCH_BASE)
37#define LATCH1_BASE (CONFIG_SYS_LATCH_BASE + 0x100)
Dirk Eibachb9ab8a92011-04-06 13:53:44 +020038#define LATCH2_BASE (CONFIG_SYS_LATCH_BASE + 0x200)
Dirk Eibach5cb41002011-04-06 13:53:46 +020039#define LATCH3_BASE (CONFIG_SYS_LATCH_BASE + 0x300)
40
Dirk Eibach6e9e6c32012-04-26 03:54:22 +000041#define LATCH2_MC2_PRESENT_N 0x0080
42
Dirk Eibach2da0fc02011-01-21 09:31:21 +010043enum {
44 UNITTYPE_VIDEO_USER = 0,
45 UNITTYPE_MAIN_USER = 1,
46 UNITTYPE_VIDEO_SERVER = 2,
47 UNITTYPE_MAIN_SERVER = 3,
48};
49
50enum {
51 HWVER_101 = 0,
52 HWVER_110 = 1,
Dirk Eibach2ade7be2012-04-26 03:54:24 +000053 HWVER_120 = 2,
54 HWVER_130 = 3,
Dirk Eibach2da0fc02011-01-21 09:31:21 +010055};
56
57enum {
58 AUDIO_NONE = 0,
59 AUDIO_TX = 1,
60 AUDIO_RX = 2,
61 AUDIO_RXTX = 3,
62};
63
64enum {
65 SYSCLK_156250 = 2,
66};
67
68enum {
69 RAM_NONE = 0,
70 RAM_DDR2_32 = 1,
71 RAM_DDR2_64 = 2,
72};
73
Dirk Eibachb19bf832012-04-26 03:54:23 +000074int misc_init_r(void)
75{
76 /* startup fans */
77 dtt_init();
78
79 return 0;
80}
81
Dirk Eibach5cb41002011-04-06 13:53:46 +020082static unsigned int get_hwver(void)
83{
84 u16 latch3 = in_le16((void *)LATCH3_BASE);
85
86 return latch3 & 0x0003;
87}
88
89static unsigned int get_mc2_present(void)
90{
91 u16 latch2 = in_le16((void *)LATCH2_BASE);
92
93 return !(latch2 & LATCH2_MC2_PRESENT_N);
94}
95
Dirk Eibach2da0fc02011-01-21 09:31:21 +010096static void print_fpga_info(unsigned dev)
97{
Dirk Eibach0e60aa82012-04-27 10:33:46 +020098 struct ihs_fpga *fpga = (struct ihs_fpga *) CONFIG_SYS_FPGA_BASE(dev);
Dirk Eibach2da0fc02011-01-21 09:31:21 +010099 u16 versions = in_le16(&fpga->versions);
100 u16 fpga_version = in_le16(&fpga->fpga_version);
101 u16 fpga_features = in_le16(&fpga->fpga_features);
102 unsigned unit_type;
103 unsigned hardware_version;
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100104 unsigned feature_rs232;
105 unsigned feature_audio;
106 unsigned feature_sysclock;
107 unsigned feature_ramconfig;
108 unsigned feature_carrier_speed;
109 unsigned feature_carriers;
110 unsigned feature_video_channels;
111 int fpga_state = get_fpga_state(dev);
112
113 printf("FPGA%d: ", dev);
114
115 hardware_version = versions & 0x000f;
116
117 if (fpga_state
118 && !((hardware_version == HWVER_101)
119 && (fpga_state == FPGA_STATE_DONE_FAILED))) {
120 puts("not available\n");
121 print_fpga_state(dev);
122 return;
123 }
124
125 unit_type = (versions >> 4) & 0x000f;
126 hardware_version = versions & 0x000f;
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100127 feature_rs232 = fpga_features & (1<<11);
128 feature_audio = (fpga_features >> 9) & 0x0003;
129 feature_sysclock = (fpga_features >> 7) & 0x0003;
130 feature_ramconfig = (fpga_features >> 5) & 0x0003;
131 feature_carrier_speed = fpga_features & (1<<4);
132 feature_carriers = (fpga_features >> 2) & 0x0003;
133 feature_video_channels = fpga_features & 0x0003;
134
135 switch (unit_type) {
136 case UNITTYPE_VIDEO_USER:
137 printf("Videochannel Userside");
138 break;
139
140 case UNITTYPE_MAIN_USER:
141 printf("Mainchannel Userside");
142 break;
143
144 case UNITTYPE_VIDEO_SERVER:
145 printf("Videochannel Serverside");
146 break;
147
148 case UNITTYPE_MAIN_SERVER:
149 printf("Mainchannel Serverside");
150 break;
151
152 default:
153 printf("UnitType %d(not supported)", unit_type);
154 break;
155 }
156
157 switch (hardware_version) {
158 case HWVER_101:
159 printf(" HW-Ver 1.01\n");
160 break;
161
162 case HWVER_110:
Dirk Eibach2ade7be2012-04-26 03:54:24 +0000163 printf(" HW-Ver 1.10-1.12\n");
164 break;
165
166 case HWVER_120:
167 printf(" HW-Ver 1.20\n");
168 break;
169
170 case HWVER_130:
171 printf(" HW-Ver 1.30\n");
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100172 break;
173
174 default:
175 printf(" HW-Ver %d(not supported)\n",
176 hardware_version);
177 break;
178 }
179
180 printf(" FPGA V %d.%02d, features:",
181 fpga_version / 100, fpga_version % 100);
182
183 printf(" %sRS232", feature_rs232 ? "" : "no ");
184
185 switch (feature_audio) {
186 case AUDIO_NONE:
187 printf(", no audio");
188 break;
189
190 case AUDIO_TX:
191 printf(", audio tx");
192 break;
193
194 case AUDIO_RX:
195 printf(", audio rx");
196 break;
197
198 case AUDIO_RXTX:
199 printf(", audio rx+tx");
200 break;
201
202 default:
203 printf(", audio %d(not supported)", feature_audio);
204 break;
205 }
206
207 switch (feature_sysclock) {
208 case SYSCLK_156250:
209 printf(", clock 156.25 MHz");
210 break;
211
212 default:
213 printf(", clock %d(not supported)", feature_sysclock);
214 break;
215 }
216
217 puts(",\n ");
218
219 switch (feature_ramconfig) {
220 case RAM_NONE:
221 printf("no RAM");
222 break;
223
224 case RAM_DDR2_32:
225 printf("RAM 32 bit DDR2");
226 break;
227
228 case RAM_DDR2_64:
229 printf("RAM 64 bit DDR2");
230 break;
231
232 default:
233 printf("RAM %d(not supported)", feature_ramconfig);
234 break;
235 }
236
237 printf(", %d carrier(s) %s", feature_carriers,
238 feature_carrier_speed ? "10 Gbit/s" : "of unknown speed");
239
240 printf(", %d video channel(s)\n", feature_video_channels);
241}
242
243/*
244 * Check Board Identity:
245 */
246int checkboard(void)
247{
Dirk Eibachb19bf832012-04-26 03:54:23 +0000248 char *s = getenv("serial#");
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100249
Dirk Eibachb19bf832012-04-26 03:54:23 +0000250 puts("Board: ");
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100251
Dirk Eibachb19bf832012-04-26 03:54:23 +0000252 puts("DLVision 10G");
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100253
Dirk Eibachb19bf832012-04-26 03:54:23 +0000254 if (s != NULL) {
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100255 puts(", serial# ");
Dirk Eibachb19bf832012-04-26 03:54:23 +0000256 puts(s);
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100257 }
258
259 puts("\n");
260
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100261 return 0;
262}
263
264int last_stage_init(void)
265{
Dirk Eibach0e60aa82012-04-27 10:33:46 +0200266 struct ihs_fpga *fpga = (struct ihs_fpga *) CONFIG_SYS_FPGA_BASE(0);
Dirk Eibachb9ab8a92011-04-06 13:53:44 +0200267 u16 versions = in_le16(&fpga->versions);
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100268
Dirk Eibachb19bf832012-04-26 03:54:23 +0000269 print_fpga_info(0);
270 if (get_mc2_present())
271 print_fpga_info(1);
272
Dirk Eibachb9ab8a92011-04-06 13:53:44 +0200273 if (((versions >> 4) & 0x000f) != UNITTYPE_MAIN_USER)
274 return 0;
275
Dirk Eibach5cb41002011-04-06 13:53:46 +0200276 if (!get_fpga_state(0) || (get_hwver() == HWVER_101))
Dirk Eibachb9ab8a92011-04-06 13:53:44 +0200277 osd_probe(0);
278
Dirk Eibach5cb41002011-04-06 13:53:46 +0200279 if (get_mc2_present() &&
280 (!get_fpga_state(1) || (get_hwver() == HWVER_101)))
Dirk Eibachb9ab8a92011-04-06 13:53:44 +0200281 osd_probe(1);
Dirk Eibach2da0fc02011-01-21 09:31:21 +0100282
283 return 0;
284}
Dirk Eibach6e9e6c32012-04-26 03:54:22 +0000285
286void gd405ep_init(void)
287{
288}
289
290void gd405ep_set_fpga_reset(unsigned state)
291{
292 if (state) {
293 out_le16((void *)LATCH0_BASE, CONFIG_SYS_LATCH0_RESET);
294 out_le16((void *)LATCH1_BASE, CONFIG_SYS_LATCH1_RESET);
295 } else {
296 out_le16((void *)LATCH0_BASE, CONFIG_SYS_LATCH0_BOOT);
297 out_le16((void *)LATCH1_BASE, CONFIG_SYS_LATCH1_BOOT);
298 }
299}
300
301void gd405ep_setup_hw(void)
302{
303 /*
304 * set "startup-finished"-gpios
305 */
306 gpio_write_bit(21, 0);
307 gpio_write_bit(22, 1);
308}
309
310int gd405ep_get_fpga_done(unsigned fpga)
311{
312 return in_le16((void *)LATCH2_BASE) & CONFIG_SYS_FPGA_DONE(fpga);
313}