blob: 7b71b541fda29609f5a7dbb85646f54ad4b5aa94 [file] [log] [blame]
York Sunee52b182012-10-11 07:13:37 +00001/*
2 * Copyright 2009-2012 Freescale Semiconductor, Inc.
3 *
York Sun3aab0cd2013-08-12 14:57:12 -07004 * SPDX-License-Identifier: GPL-2.0+
York Sunee52b182012-10-11 07:13:37 +00005 */
6
7#include <common.h>
8#include <command.h>
9#include <i2c.h>
10#include <netdev.h>
11#include <linux/compiler.h>
12#include <asm/mmu.h>
13#include <asm/processor.h>
14#include <asm/cache.h>
15#include <asm/immap_85xx.h>
16#include <asm/fsl_law.h>
17#include <asm/fsl_serdes.h>
York Sunee52b182012-10-11 07:13:37 +000018#include <asm/fsl_liodn.h>
19#include <fm_eth.h>
20
21#include "../common/qixis.h"
22#include "../common/vsc3316_3308.h"
23#include "t4qds.h"
24#include "t4240qds_qixis.h"
25
26DECLARE_GLOBAL_DATA_PTR;
27
Shaohui Xie7d0d3552013-08-19 18:43:07 +080028static int8_t vsc3316_fsm1_tx[8][2] = { {0, 0}, {1, 1}, {6, 6}, {7, 7},
Timur Tabide757a72012-12-12 11:07:12 +000029 {8, 8}, {9, 9}, {14, 14}, {15, 15} };
30
Shaohui Xie7d0d3552013-08-19 18:43:07 +080031static int8_t vsc3316_fsm2_tx[8][2] = { {2, 2}, {3, 3}, {4, 4}, {5, 5},
Timur Tabide757a72012-12-12 11:07:12 +000032 {10, 10}, {11, 11}, {12, 12}, {13, 13} };
33
Shaohui Xie7d0d3552013-08-19 18:43:07 +080034static int8_t vsc3316_fsm1_rx[8][2] = { {2, 12}, {3, 13}, {4, 5}, {5, 4},
Timur Tabide757a72012-12-12 11:07:12 +000035 {10, 11}, {11, 10}, {12, 2}, {13, 3} };
36
Shaohui Xie7d0d3552013-08-19 18:43:07 +080037static int8_t vsc3316_fsm2_rx[8][2] = { {0, 15}, {1, 14}, {6, 7}, {7, 6},
Timur Tabide757a72012-12-12 11:07:12 +000038 {8, 9}, {9, 8}, {14, 1}, {15, 0} };
39
York Sunee52b182012-10-11 07:13:37 +000040int checkboard(void)
41{
Prabhakar Kushwahaafa2b722012-12-23 19:26:03 +000042 char buf[64];
York Sunee52b182012-10-11 07:13:37 +000043 u8 sw;
Simon Glass67ac13b2012-12-13 20:48:48 +000044 struct cpu_type *cpu = gd->arch.cpu;
York Sunee52b182012-10-11 07:13:37 +000045 unsigned int i;
46
47 printf("Board: %sQDS, ", cpu->name);
Prabhakar Kushwahaafa2b722012-12-23 19:26:03 +000048 printf("Sys ID: 0x%02x, Sys Ver: 0x%02x, ",
York Sun1cb19fb2013-06-27 10:48:29 -070049 QIXIS_READ(id), QIXIS_READ(arch));
York Sunee52b182012-10-11 07:13:37 +000050
51 sw = QIXIS_READ(brdcfg[0]);
52 sw = (sw & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT;
53
54 if (sw < 0x8)
55 printf("vBank: %d\n", sw);
56 else if (sw == 0x8)
57 puts("Promjet\n");
58 else if (sw == 0x9)
59 puts("NAND\n");
60 else
61 printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH);
62
Prabhakar Kushwahaafa2b722012-12-23 19:26:03 +000063 printf("FPGA: v%d (%s), build %d",
York Sun1cb19fb2013-06-27 10:48:29 -070064 (int)QIXIS_READ(scver), qixis_read_tag(buf),
65 (int)qixis_read_minor());
Prabhakar Kushwahaafa2b722012-12-23 19:26:03 +000066 /* the timestamp string contains "\n" at the end */
67 printf(" on %s", qixis_read_time(buf));
68
York Sunee52b182012-10-11 07:13:37 +000069 /*
70 * Display the actual SERDES reference clocks as configured by the
71 * dip switches on the board. Note that the SWx registers could
72 * technically be set to force the reference clocks to match the
73 * values that the SERDES expects (or vice versa). For now, however,
74 * we just display both values and hope the user notices when they
75 * don't match.
76 */
77 puts("SERDES Reference Clocks: ");
78 sw = QIXIS_READ(brdcfg[2]);
79 for (i = 0; i < MAX_SERDES; i++) {
York Sun1cb19fb2013-06-27 10:48:29 -070080 static const char * const freq[] = {
York Sunee52b182012-10-11 07:13:37 +000081 "100", "125", "156.25", "161.1328125"};
Roy Zang9458f6d2013-03-25 07:33:15 +000082 unsigned int clock = (sw >> (6 - 2 * i)) & 3;
York Sunee52b182012-10-11 07:13:37 +000083
84 printf("SERDES%u=%sMHz ", i+1, freq[clock]);
85 }
86 puts("\n");
87
88 return 0;
89}
90
91int select_i2c_ch_pca9547(u8 ch)
92{
93 int ret;
94
95 ret = i2c_write(I2C_MUX_PCA_ADDR_PRI, 0, 1, &ch, 1);
96 if (ret) {
97 puts("PCA: failed to select proper channel\n");
98 return ret;
99 }
100
101 return 0;
102}
103
York Sun97c7fe62013-03-25 07:33:22 +0000104/*
105 * read_voltage from sensor on I2C bus
106 * We use average of 4 readings, waiting for 532us befor another reading
107 */
108#define NUM_READINGS 4 /* prefer to be power of 2 for efficiency */
109#define WAIT_FOR_ADC 532 /* wait for 532 microseconds for ADC */
110
111static inline int read_voltage(void)
112{
113 int i, ret, voltage_read = 0;
114 u16 vol_mon;
115
116 for (i = 0; i < NUM_READINGS; i++) {
117 ret = i2c_read(I2C_VOL_MONITOR_ADDR,
118 I2C_VOL_MONITOR_BUS_V_OFFSET, 1, (void *)&vol_mon, 2);
119 if (ret) {
120 printf("VID: failed to read core voltage\n");
121 return ret;
122 }
123 if (vol_mon & I2C_VOL_MONITOR_BUS_V_OVF) {
124 printf("VID: Core voltage sensor error\n");
125 return -1;
126 }
127 debug("VID: bus voltage reads 0x%04x\n", vol_mon);
128 /* LSB = 4mv */
129 voltage_read += (vol_mon >> I2C_VOL_MONITOR_BUS_V_SHIFT) * 4;
130 udelay(WAIT_FOR_ADC);
131 }
132 /* calculate the average */
133 voltage_read /= NUM_READINGS;
134
135 return voltage_read;
136}
137
138/*
139 * We need to calculate how long before the voltage starts to drop or increase
140 * It returns with the loop count. Each loop takes several readings (532us)
141 */
142static inline int wait_for_voltage_change(int vdd_last)
143{
144 int timeout, vdd_current;
145
146 vdd_current = read_voltage();
147 /* wait until voltage starts to drop */
148 for (timeout = 0; abs(vdd_last - vdd_current) <= 4 &&
149 timeout < 100; timeout++) {
150 vdd_current = read_voltage();
151 }
152 if (timeout >= 100) {
153 printf("VID: Voltage adjustment timeout\n");
154 return -1;
155 }
156 return timeout;
157}
158
159/*
160 * argument 'wait' is the time we know the voltage difference can be measured
161 * this function keeps reading the voltage until it is stable
162 */
163static inline int wait_for_voltage_stable(int wait)
164{
165 int timeout, vdd_current, vdd_last;
166
167 vdd_last = read_voltage();
168 udelay(wait * NUM_READINGS * WAIT_FOR_ADC);
169 /* wait until voltage is stable */
170 vdd_current = read_voltage();
171 for (timeout = 0; abs(vdd_last - vdd_current) >= 4 &&
172 timeout < 100; timeout++) {
173 vdd_last = vdd_current;
174 udelay(wait * NUM_READINGS * WAIT_FOR_ADC);
175 vdd_current = read_voltage();
176 }
177 if (timeout >= 100) {
178 printf("VID: Voltage adjustment timeout\n");
179 return -1;
180 }
181
182 return vdd_current;
183}
184
185static inline int set_voltage(u8 vid)
186{
187 int wait, vdd_last;
188
189 vdd_last = read_voltage();
190 QIXIS_WRITE(brdcfg[6], vid);
191 wait = wait_for_voltage_change(vdd_last);
192 if (wait < 0)
193 return -1;
194 debug("VID: Waited %d us\n", wait * NUM_READINGS * WAIT_FOR_ADC);
195 wait = wait ? wait : 1;
196
197 vdd_last = wait_for_voltage_stable(wait);
198 if (vdd_last < 0)
199 return -1;
200 debug("VID: Current voltage is %d mV\n", vdd_last);
201
202 return vdd_last;
203}
204
205
York Sun0aadf4a2013-03-25 07:40:01 +0000206static int adjust_vdd(ulong vdd_override)
York Sun97c7fe62013-03-25 07:33:22 +0000207{
208 int re_enable = disable_interrupts();
209 ccsr_gur_t __iomem *gur =
210 (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
211 u32 fusesr;
212 u8 vid, vid_current;
213 int vdd_target, vdd_current, vdd_last;
214 int ret;
York Sun0aadf4a2013-03-25 07:40:01 +0000215 unsigned long vdd_string_override;
216 char *vdd_string;
York Sun97c7fe62013-03-25 07:33:22 +0000217 static const uint16_t vdd[32] = {
218 0, /* unused */
219 9875, /* 0.9875V */
220 9750,
221 9625,
222 9500,
223 9375,
224 9250,
225 9125,
226 9000,
227 8875,
228 8750,
229 8625,
230 8500,
231 8375,
232 8250,
233 8125,
234 10000, /* 1.0000V */
235 10125,
236 10250,
237 10375,
238 10500,
239 10625,
240 10750,
241 10875,
242 11000,
243 0, /* reserved */
244 };
245 struct vdd_drive {
246 u8 vid;
247 unsigned voltage;
248 };
249
250 ret = select_i2c_ch_pca9547(I2C_MUX_CH_VOL_MONITOR);
251 if (ret) {
252 debug("VID: I2c failed to switch channel\n");
253 ret = -1;
254 goto exit;
255 }
256
257 /* get the voltage ID from fuse status register */
258 fusesr = in_be32(&gur->dcfg_fusesr);
259 vid = (fusesr >> FSL_CORENET_DCFG_FUSESR_VID_SHIFT) &
260 FSL_CORENET_DCFG_FUSESR_VID_MASK;
261 if (vid == FSL_CORENET_DCFG_FUSESR_VID_MASK) {
262 vid = (fusesr >> FSL_CORENET_DCFG_FUSESR_ALTVID_SHIFT) &
263 FSL_CORENET_DCFG_FUSESR_ALTVID_MASK;
264 }
265 vdd_target = vdd[vid];
York Sun0aadf4a2013-03-25 07:40:01 +0000266
267 /* check override variable for overriding VDD */
Simon Glass00caae62017-08-03 12:22:12 -0600268 vdd_string = env_get("t4240qds_vdd_mv");
York Sun0aadf4a2013-03-25 07:40:01 +0000269 if (vdd_override == 0 && vdd_string &&
270 !strict_strtoul(vdd_string, 10, &vdd_string_override))
271 vdd_override = vdd_string_override;
272 if (vdd_override >= 819 && vdd_override <= 1212) {
273 vdd_target = vdd_override * 10; /* convert to 1/10 mV */
274 debug("VDD override is %lu\n", vdd_override);
275 } else if (vdd_override != 0) {
276 printf("Invalid value.\n");
277 }
278
York Sun97c7fe62013-03-25 07:33:22 +0000279 if (vdd_target == 0) {
280 debug("VID: VID not used\n");
281 ret = 0;
282 goto exit;
283 } else {
284 /* round up and divice by 10 to get a value in mV */
285 vdd_target = DIV_ROUND_UP(vdd_target, 10);
286 debug("VID: vid = %d mV\n", vdd_target);
287 }
288
289 /*
290 * Check current board VID setting
291 * Voltage regulator support output to 6.250mv step
292 * The highes voltage allowed for this board is (vid=0x40) 1.21250V
293 * the lowest is (vid=0x7f) 0.81875V
294 */
295 vid_current = QIXIS_READ(brdcfg[6]);
296 vdd_current = 121250 - (vid_current - 0x40) * 625;
297 debug("VID: Current vid setting is (0x%x) %d mV\n",
298 vid_current, vdd_current/100);
299
300 /*
301 * Read voltage monitor to check real voltage.
302 * Voltage monitor LSB is 4mv.
303 */
304 vdd_last = read_voltage();
305 if (vdd_last < 0) {
306 printf("VID: Could not read voltage sensor abort VID adjustment\n");
307 ret = -1;
308 goto exit;
309 }
310 debug("VID: Core voltage is at %d mV\n", vdd_last);
311 /*
312 * Adjust voltage to at or 8mV above target.
313 * Each step of adjustment is 6.25mV.
314 * Stepping down too fast may cause over current.
315 */
316 while (vdd_last > 0 && vid_current < 0x80 &&
317 vdd_last > (vdd_target + 8)) {
318 vid_current++;
319 vdd_last = set_voltage(vid_current);
320 }
321 /*
322 * Check if we need to step up
323 * This happens when board voltage switch was set too low
324 */
325 while (vdd_last > 0 && vid_current >= 0x40 &&
326 vdd_last < vdd_target + 2) {
327 vid_current--;
328 vdd_last = set_voltage(vid_current);
329 }
330 if (vdd_last > 0)
331 printf("VID: Core voltage %d mV\n", vdd_last);
332 else
333 ret = -1;
334
335exit:
336 if (re_enable)
337 enable_interrupts();
338 return ret;
339}
340
York Sunee52b182012-10-11 07:13:37 +0000341/* Configure Crossbar switches for Front-Side SerDes Ports */
342int config_frontside_crossbar_vsc3316(void)
343{
344 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
345 u32 srds_prtcl_s1, srds_prtcl_s2;
346 int ret;
347
348 ret = select_i2c_ch_pca9547(I2C_MUX_CH_VSC3316_FS);
349 if (ret)
350 return ret;
351
352 srds_prtcl_s1 = in_be32(&gur->rcwsr[4]) &
353 FSL_CORENET2_RCWSR4_SRDS1_PRTCL;
354 srds_prtcl_s1 >>= FSL_CORENET2_RCWSR4_SRDS1_PRTCL_SHIFT;
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800355 switch (srds_prtcl_s1) {
Shaohui Xie94752f62014-05-16 10:52:33 +0800356 case 37:
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800357 case 38:
358 /* swap first lane and third lane on slot1 */
359 vsc3316_fsm1_tx[0][1] = 14;
360 vsc3316_fsm1_tx[6][1] = 0;
361 vsc3316_fsm1_rx[1][1] = 2;
362 vsc3316_fsm1_rx[6][1] = 13;
Shaohui Xie94752f62014-05-16 10:52:33 +0800363 case 39:
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800364 case 40:
Shaohui Xie94752f62014-05-16 10:52:33 +0800365 case 45:
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800366 case 46:
Shaohui Xie94752f62014-05-16 10:52:33 +0800367 case 47:
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800368 case 48:
369 /* swap first lane and third lane on slot2 */
370 vsc3316_fsm1_tx[2][1] = 8;
371 vsc3316_fsm1_tx[4][1] = 6;
372 vsc3316_fsm1_rx[2][1] = 10;
373 vsc3316_fsm1_rx[5][1] = 5;
374 default:
York Sunee52b182012-10-11 07:13:37 +0000375 ret = vsc3316_config(VSC3316_FSM_TX_ADDR, vsc3316_fsm1_tx, 8);
376 if (ret)
377 return ret;
378 ret = vsc3316_config(VSC3316_FSM_RX_ADDR, vsc3316_fsm1_rx, 8);
379 if (ret)
380 return ret;
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800381 break;
York Sunee52b182012-10-11 07:13:37 +0000382 }
383
384 srds_prtcl_s2 = in_be32(&gur->rcwsr[4]) &
385 FSL_CORENET2_RCWSR4_SRDS2_PRTCL;
386 srds_prtcl_s2 >>= FSL_CORENET2_RCWSR4_SRDS2_PRTCL_SHIFT;
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800387 switch (srds_prtcl_s2) {
Shaohui Xie94752f62014-05-16 10:52:33 +0800388 case 37:
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800389 case 38:
390 /* swap first lane and third lane on slot3 */
391 vsc3316_fsm2_tx[2][1] = 11;
392 vsc3316_fsm2_tx[5][1] = 4;
393 vsc3316_fsm2_rx[2][1] = 9;
394 vsc3316_fsm2_rx[4][1] = 7;
Shaohui Xie94752f62014-05-16 10:52:33 +0800395 case 39:
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800396 case 40:
Shaohui Xie94752f62014-05-16 10:52:33 +0800397 case 45:
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800398 case 46:
Shaohui Xie94752f62014-05-16 10:52:33 +0800399 case 47:
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800400 case 48:
Shaohui Xie94752f62014-05-16 10:52:33 +0800401 case 49:
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800402 case 50:
Shaohui Xie94752f62014-05-16 10:52:33 +0800403 case 51:
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800404 case 52:
Shaohui Xie94752f62014-05-16 10:52:33 +0800405 case 53:
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800406 case 54:
407 /* swap first lane and third lane on slot4 */
408 vsc3316_fsm2_tx[6][1] = 3;
409 vsc3316_fsm2_tx[1][1] = 12;
410 vsc3316_fsm2_rx[0][1] = 1;
411 vsc3316_fsm2_rx[6][1] = 15;
412 default:
York Sunee52b182012-10-11 07:13:37 +0000413 ret = vsc3316_config(VSC3316_FSM_TX_ADDR, vsc3316_fsm2_tx, 8);
414 if (ret)
415 return ret;
416 ret = vsc3316_config(VSC3316_FSM_RX_ADDR, vsc3316_fsm2_rx, 8);
417 if (ret)
418 return ret;
Shaohui Xieae3dcd02013-08-19 18:57:57 +0800419 break;
York Sunee52b182012-10-11 07:13:37 +0000420 }
421
422 return 0;
423}
424
425int config_backside_crossbar_mux(void)
426{
427 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
428 u32 srds_prtcl_s3, srds_prtcl_s4;
429 u8 brdcfg;
430
431 srds_prtcl_s3 = in_be32(&gur->rcwsr[4]) &
432 FSL_CORENET2_RCWSR4_SRDS3_PRTCL;
433 srds_prtcl_s3 >>= FSL_CORENET2_RCWSR4_SRDS3_PRTCL_SHIFT;
434 switch (srds_prtcl_s3) {
435 case 0:
436 /* SerDes3 is not enabled */
437 break;
Shaohui Xie94752f62014-05-16 10:52:33 +0800438 case 1:
York Sunee52b182012-10-11 07:13:37 +0000439 case 2:
440 case 9:
441 case 10:
442 /* SD3(0:7) => SLOT5(0:7) */
443 brdcfg = QIXIS_READ(brdcfg[12]);
444 brdcfg &= ~BRDCFG12_SD3MX_MASK;
445 brdcfg |= BRDCFG12_SD3MX_SLOT5;
446 QIXIS_WRITE(brdcfg[12], brdcfg);
447 break;
Shaohui Xie94752f62014-05-16 10:52:33 +0800448 case 3:
York Sunee52b182012-10-11 07:13:37 +0000449 case 4:
Shaohui Xie94752f62014-05-16 10:52:33 +0800450 case 5:
York Sunee52b182012-10-11 07:13:37 +0000451 case 6:
Shaohui Xie94752f62014-05-16 10:52:33 +0800452 case 7:
York Sunee52b182012-10-11 07:13:37 +0000453 case 8:
Shaohui Xie94752f62014-05-16 10:52:33 +0800454 case 11:
York Sunee52b182012-10-11 07:13:37 +0000455 case 12:
Shaohui Xie94752f62014-05-16 10:52:33 +0800456 case 13:
York Sunee52b182012-10-11 07:13:37 +0000457 case 14:
Shaohui Xie94752f62014-05-16 10:52:33 +0800458 case 15:
York Sunee52b182012-10-11 07:13:37 +0000459 case 16:
460 case 17:
Shaohui Xie94752f62014-05-16 10:52:33 +0800461 case 18:
York Sunee52b182012-10-11 07:13:37 +0000462 case 19:
463 case 20:
464 /* SD3(4:7) => SLOT6(0:3) */
465 brdcfg = QIXIS_READ(brdcfg[12]);
466 brdcfg &= ~BRDCFG12_SD3MX_MASK;
467 brdcfg |= BRDCFG12_SD3MX_SLOT6;
468 QIXIS_WRITE(brdcfg[12], brdcfg);
469 break;
470 default:
471 printf("WARNING: unsupported for SerDes3 Protocol %d\n",
York Sun1cb19fb2013-06-27 10:48:29 -0700472 srds_prtcl_s3);
York Sunee52b182012-10-11 07:13:37 +0000473 return -1;
474 }
475
476 srds_prtcl_s4 = in_be32(&gur->rcwsr[4]) &
477 FSL_CORENET2_RCWSR4_SRDS4_PRTCL;
478 srds_prtcl_s4 >>= FSL_CORENET2_RCWSR4_SRDS4_PRTCL_SHIFT;
479 switch (srds_prtcl_s4) {
480 case 0:
481 /* SerDes4 is not enabled */
482 break;
Shaohui Xie94752f62014-05-16 10:52:33 +0800483 case 1:
York Sunee52b182012-10-11 07:13:37 +0000484 case 2:
485 /* 10b, SD4(0:7) => SLOT7(0:7) */
486 brdcfg = QIXIS_READ(brdcfg[12]);
487 brdcfg &= ~BRDCFG12_SD4MX_MASK;
488 brdcfg |= BRDCFG12_SD4MX_SLOT7;
489 QIXIS_WRITE(brdcfg[12], brdcfg);
490 break;
Shaohui Xie94752f62014-05-16 10:52:33 +0800491 case 3:
York Sunee52b182012-10-11 07:13:37 +0000492 case 4:
Shaohui Xie94752f62014-05-16 10:52:33 +0800493 case 5:
York Sunee52b182012-10-11 07:13:37 +0000494 case 6:
Shaohui Xie94752f62014-05-16 10:52:33 +0800495 case 7:
York Sunee52b182012-10-11 07:13:37 +0000496 case 8:
497 /* x1b, SD4(4:7) => SLOT8(0:3) */
498 brdcfg = QIXIS_READ(brdcfg[12]);
499 brdcfg &= ~BRDCFG12_SD4MX_MASK;
500 brdcfg |= BRDCFG12_SD4MX_SLOT8;
501 QIXIS_WRITE(brdcfg[12], brdcfg);
502 break;
Shaohui Xie94752f62014-05-16 10:52:33 +0800503 case 9:
York Sunee52b182012-10-11 07:13:37 +0000504 case 10:
Shaohui Xie94752f62014-05-16 10:52:33 +0800505 case 11:
York Sunee52b182012-10-11 07:13:37 +0000506 case 12:
Shaohui Xie94752f62014-05-16 10:52:33 +0800507 case 13:
York Sunee52b182012-10-11 07:13:37 +0000508 case 14:
Shaohui Xie94752f62014-05-16 10:52:33 +0800509 case 15:
York Sunee52b182012-10-11 07:13:37 +0000510 case 16:
511 case 18:
512 /* 00b, SD4(4:5) => AURORA, SD4(6:7) => SATA */
513 brdcfg = QIXIS_READ(brdcfg[12]);
514 brdcfg &= ~BRDCFG12_SD4MX_MASK;
515 brdcfg |= BRDCFG12_SD4MX_AURO_SATA;
516 QIXIS_WRITE(brdcfg[12], brdcfg);
517 break;
518 default:
519 printf("WARNING: unsupported for SerDes4 Protocol %d\n",
York Sun1cb19fb2013-06-27 10:48:29 -0700520 srds_prtcl_s4);
York Sunee52b182012-10-11 07:13:37 +0000521 return -1;
522 }
523
524 return 0;
525}
526
527int board_early_init_r(void)
528{
529 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
York Sun9d045682014-06-24 21:16:20 -0700530 int flash_esel = find_tlb_idx((void *)flashbase, 1);
York Sunee52b182012-10-11 07:13:37 +0000531
532 /*
533 * Remap Boot flash + PROMJET region to caching-inhibited
534 * so that flash can be erased properly.
535 */
536
537 /* Flush d-cache and invalidate i-cache of any FLASH data */
538 flush_dcache();
539 invalidate_icache();
540
York Sun9d045682014-06-24 21:16:20 -0700541 if (flash_esel == -1) {
542 /* very unlikely unless something is messed up */
543 puts("Error: Could not find TLB for FLASH BASE\n");
544 flash_esel = 2; /* give our best effort to continue */
545 } else {
546 /* invalidate existing TLB entry for flash + promjet */
547 disable_tlb(flash_esel);
548 }
York Sunee52b182012-10-11 07:13:37 +0000549
550 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
York Sun1cb19fb2013-06-27 10:48:29 -0700551 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
552 0, flash_esel, BOOKE_PAGESZ_256M, 1);
York Sunee52b182012-10-11 07:13:37 +0000553
Ed Swarthout9c0a6de2013-03-25 07:39:37 +0000554 /* Disable remote I2C connection to qixis fpga */
555 QIXIS_WRITE(brdcfg[5], QIXIS_READ(brdcfg[5]) & ~BRDCFG5_IRE);
York Sunee52b182012-10-11 07:13:37 +0000556
York Sun97c7fe62013-03-25 07:33:22 +0000557 /*
558 * Adjust core voltage according to voltage ID
559 * This function changes I2C mux to channel 2.
560 */
York Sun0aadf4a2013-03-25 07:40:01 +0000561 if (adjust_vdd(0))
York Sun97c7fe62013-03-25 07:33:22 +0000562 printf("Warning: Adjusting core voltage failed.\n");
563
York Sunee52b182012-10-11 07:13:37 +0000564 /* Configure board SERDES ports crossbar */
565 config_frontside_crossbar_vsc3316();
566 config_backside_crossbar_mux();
567 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT);
568
569 return 0;
570}
571
572unsigned long get_board_sys_clk(void)
573{
574 u8 sysclk_conf = QIXIS_READ(brdcfg[1]);
Ed Swarthoutf4138812013-03-25 07:40:10 +0000575#ifdef CONFIG_FSL_QIXIS_CLOCK_MEASUREMENT
576 /* use accurate clock measurement */
577 int freq = QIXIS_READ(clk_freq[0]) << 8 | QIXIS_READ(clk_freq[1]);
578 int base = QIXIS_READ(clk_base[0]) << 8 | QIXIS_READ(clk_base[1]);
579 u32 val;
580
581 val = freq * base;
582 if (val) {
583 debug("SYS Clock measurement is: %d\n", val);
584 return val;
585 } else {
586 printf("Warning: SYS clock measurement is invalid, using value from brdcfg1.\n");
587 }
588#endif
York Sunee52b182012-10-11 07:13:37 +0000589
590 switch (sysclk_conf & 0x0F) {
591 case QIXIS_SYSCLK_83:
592 return 83333333;
593 case QIXIS_SYSCLK_100:
594 return 100000000;
595 case QIXIS_SYSCLK_125:
596 return 125000000;
597 case QIXIS_SYSCLK_133:
598 return 133333333;
599 case QIXIS_SYSCLK_150:
600 return 150000000;
601 case QIXIS_SYSCLK_160:
602 return 160000000;
603 case QIXIS_SYSCLK_166:
604 return 166666666;
605 }
606 return 66666666;
607}
608
609unsigned long get_board_ddr_clk(void)
610{
611 u8 ddrclk_conf = QIXIS_READ(brdcfg[1]);
Ed Swarthoutf4138812013-03-25 07:40:10 +0000612#ifdef CONFIG_FSL_QIXIS_CLOCK_MEASUREMENT
613 /* use accurate clock measurement */
614 int freq = QIXIS_READ(clk_freq[2]) << 8 | QIXIS_READ(clk_freq[3]);
615 int base = QIXIS_READ(clk_base[0]) << 8 | QIXIS_READ(clk_base[1]);
616 u32 val;
617
618 val = freq * base;
619 if (val) {
620 debug("DDR Clock measurement is: %d\n", val);
621 return val;
622 } else {
623 printf("Warning: DDR clock measurement is invalid, using value from brdcfg1.\n");
624 }
625#endif
York Sunee52b182012-10-11 07:13:37 +0000626
627 switch ((ddrclk_conf & 0x30) >> 4) {
628 case QIXIS_DDRCLK_100:
629 return 100000000;
630 case QIXIS_DDRCLK_125:
631 return 125000000;
632 case QIXIS_DDRCLK_133:
633 return 133333333;
634 }
635 return 66666666;
636}
637
York Sunee52b182012-10-11 07:13:37 +0000638int misc_init_r(void)
639{
640 u8 sw;
Shaohui Xiee55782e2014-06-27 14:39:31 +0800641 void *srds_base = (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
642 serdes_corenet_t *srds_regs;
York Sunee52b182012-10-11 07:13:37 +0000643 u32 actual[MAX_SERDES];
Shaohui Xiee55782e2014-06-27 14:39:31 +0800644 u32 pllcr0, expected;
York Sunee52b182012-10-11 07:13:37 +0000645 unsigned int i;
646
647 sw = QIXIS_READ(brdcfg[2]);
648 for (i = 0; i < MAX_SERDES; i++) {
Roy Zang9458f6d2013-03-25 07:33:15 +0000649 unsigned int clock = (sw >> (6 - 2 * i)) & 3;
York Sunee52b182012-10-11 07:13:37 +0000650 switch (clock) {
651 case 0:
652 actual[i] = SRDS_PLLCR0_RFCK_SEL_100;
653 break;
654 case 1:
655 actual[i] = SRDS_PLLCR0_RFCK_SEL_125;
656 break;
657 case 2:
658 actual[i] = SRDS_PLLCR0_RFCK_SEL_156_25;
659 break;
660 case 3:
661 actual[i] = SRDS_PLLCR0_RFCK_SEL_161_13;
662 break;
663 }
664 }
665
666 for (i = 0; i < MAX_SERDES; i++) {
Shaohui Xiee55782e2014-06-27 14:39:31 +0800667 srds_regs = srds_base + i * 0x1000;
668 pllcr0 = srds_regs->bank[0].pllcr0;
669 expected = pllcr0 & SRDS_PLLCR0_RFCK_SEL_MASK;
York Sunee52b182012-10-11 07:13:37 +0000670 if (expected != actual[i]) {
York Sun1cb19fb2013-06-27 10:48:29 -0700671 printf("Warning: SERDES%u expects reference clock %sMHz, but actual is %sMHz\n",
672 i + 1, serdes_clock_to_string(expected),
York Sunee52b182012-10-11 07:13:37 +0000673 serdes_clock_to_string(actual[i]));
674 }
675 }
676
677 return 0;
678}
679
Simon Glasse895a4b2014-10-23 18:58:47 -0600680int ft_board_setup(void *blob, bd_t *bd)
York Sunee52b182012-10-11 07:13:37 +0000681{
682 phys_addr_t base;
683 phys_size_t size;
684
685 ft_cpu_setup(blob, bd);
686
Simon Glass723806c2017-08-03 12:22:15 -0600687 base = env_get_bootm_low();
688 size = env_get_bootm_size();
York Sunee52b182012-10-11 07:13:37 +0000689
690 fdt_fixup_memory(blob, (u64)base, (u64)size);
691
692#ifdef CONFIG_PCI
693 pci_of_setup(blob, bd);
694#endif
695
696 fdt_fixup_liodn(blob);
Sriram Dasha5c289b2016-09-16 17:12:15 +0530697 fsl_fdt_fixup_dr_usb(blob, bd);
York Sunee52b182012-10-11 07:13:37 +0000698
699#ifdef CONFIG_SYS_DPAA_FMAN
700 fdt_fixup_fman_ethernet(blob);
701 fdt_fixup_board_enet(blob);
702#endif
Simon Glasse895a4b2014-10-23 18:58:47 -0600703
704 return 0;
York Sunee52b182012-10-11 07:13:37 +0000705}
Shaveta Leekha4457e3e2012-12-23 19:25:50 +0000706
707/*
York Sun9cefbd62013-03-25 07:39:24 +0000708 * This function is called by bdinfo to print detail board information.
709 * As an exmaple for future board, we organize the messages into
710 * several sections. If applicable, the message is in the format of
711 * <name> = <value>
712 * It should aligned with normal output of bdinfo command.
713 *
714 * Voltage: Core, DDR and another configurable voltages
715 * Clock : Critical clocks which are not printed already
716 * RCW : RCW source if not printed already
717 * Misc : Other important information not in above catagories
718 */
719void board_detail(void)
720{
721 int i;
722 u8 brdcfg[16], dutcfg[16], rst_ctl;
723 int vdd, rcwsrc;
724 static const char * const clk[] = {"66.67", "100", "125", "133.33"};
725
726 for (i = 0; i < 16; i++) {
727 brdcfg[i] = qixis_read(offsetof(struct qixis, brdcfg[0]) + i);
728 dutcfg[i] = qixis_read(offsetof(struct qixis, dutcfg[0]) + i);
729 }
730
731 /* Voltage secion */
732 if (!select_i2c_ch_pca9547(I2C_MUX_CH_VOL_MONITOR)) {
733 vdd = read_voltage();
734 if (vdd > 0)
735 printf("Core voltage= %d mV\n", vdd);
736 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT);
737 }
738
739 printf("XVDD = 1.%d V\n", ((brdcfg[8] & 0xf) - 4) * 5 + 25);
740
741 /* clock section */
742 printf("SYSCLK = %s MHz\nDDRCLK = %s MHz\n",
743 clk[(brdcfg[11] >> 2) & 0x3], clk[brdcfg[11] & 3]);
744
745 /* RCW section */
746 rcwsrc = (dutcfg[0] << 1) + (dutcfg[1] & 1);
747 puts("RCW source = ");
748 switch (rcwsrc) {
749 case 0x017:
750 case 0x01f:
751 puts("8-bit NOR\n");
752 break;
753 case 0x027:
754 case 0x02F:
755 puts("16-bit NOR\n");
756 break;
757 case 0x040:
758 puts("SDHC/eMMC\n");
759 break;
760 case 0x044:
761 puts("SPI 16-bit addressing\n");
762 break;
763 case 0x045:
764 puts("SPI 24-bit addressing\n");
765 break;
766 case 0x048:
767 puts("I2C normal addressing\n");
768 break;
769 case 0x049:
770 puts("I2C extended addressing\n");
771 break;
772 case 0x108:
773 case 0x109:
774 case 0x10a:
775 case 0x10b:
776 puts("8-bit NAND, 2KB\n");
777 break;
778 default:
779 if ((rcwsrc >= 0x080) && (rcwsrc <= 0x09f))
780 puts("Hard-coded RCW\n");
781 else if ((rcwsrc >= 0x110) && (rcwsrc <= 0x11f))
782 puts("8-bit NAND, 4KB\n");
783 else
784 puts("unknown\n");
785 break;
786 }
787
788 /* Misc section */
789 rst_ctl = QIXIS_READ(rst_ctl);
790 puts("HRESET_REQ = ");
791 switch (rst_ctl & 0x30) {
792 case 0x00:
793 puts("Ignored\n");
794 break;
795 case 0x10:
796 puts("Assert HRESET\n");
797 break;
798 case 0x30:
799 puts("Reset system\n");
800 break;
801 default:
802 puts("N/A\n");
803 break;
804 }
805}
806
807/*
Shaveta Leekha4457e3e2012-12-23 19:25:50 +0000808 * Reverse engineering switch settings.
809 * Some bits cannot be figured out. They will be displayed as
810 * underscore in binary format. mask[] has those bits.
811 * Some bits are calculated differently than the actual switches
812 * if booting with overriding by FPGA.
813 */
814void qixis_dump_switch(void)
815{
816 int i;
817 u8 sw[9];
818
819 /*
820 * Any bit with 1 means that bit cannot be reverse engineered.
821 * It will be displayed as _ in binary format.
822 */
York Sune1379b02013-03-25 07:40:14 +0000823 static const u8 mask[] = {0, 0, 0, 0, 0, 0x1, 0xcf, 0x3f, 0x1f};
Shaveta Leekha4457e3e2012-12-23 19:25:50 +0000824 char buf[10];
825 u8 brdcfg[16], dutcfg[16];
826
827 for (i = 0; i < 16; i++) {
828 brdcfg[i] = qixis_read(offsetof(struct qixis, brdcfg[0]) + i);
829 dutcfg[i] = qixis_read(offsetof(struct qixis, dutcfg[0]) + i);
830 }
831
832 sw[0] = dutcfg[0];
York Sun1cb19fb2013-06-27 10:48:29 -0700833 sw[1] = (dutcfg[1] << 0x07) |
834 ((dutcfg[12] & 0xC0) >> 1) |
835 ((dutcfg[11] & 0xE0) >> 3) |
836 ((dutcfg[6] & 0x80) >> 6) |
Shaveta Leekha4457e3e2012-12-23 19:25:50 +0000837 ((dutcfg[1] & 0x80) >> 7);
York Sun1cb19fb2013-06-27 10:48:29 -0700838 sw[2] = ((brdcfg[1] & 0x0f) << 4) |
839 ((brdcfg[1] & 0x30) >> 2) |
840 ((brdcfg[1] & 0x40) >> 5) |
Shaveta Leekha4457e3e2012-12-23 19:25:50 +0000841 ((brdcfg[1] & 0x80) >> 7);
842 sw[3] = brdcfg[2];
York Sun1cb19fb2013-06-27 10:48:29 -0700843 sw[4] = ((dutcfg[2] & 0x01) << 7) |
844 ((dutcfg[2] & 0x06) << 4) |
845 ((~QIXIS_READ(present)) & 0x10) |
846 ((brdcfg[3] & 0x80) >> 4) |
847 ((brdcfg[3] & 0x01) << 2) |
848 ((brdcfg[6] == 0x62) ? 3 :
849 ((brdcfg[6] == 0x5a) ? 2 :
Shaveta Leekha4457e3e2012-12-23 19:25:50 +0000850 ((brdcfg[6] == 0x5e) ? 1 : 0)));
York Sun1cb19fb2013-06-27 10:48:29 -0700851 sw[5] = ((brdcfg[0] & 0x0f) << 4) |
852 ((QIXIS_READ(rst_ctl) & 0x30) >> 2) |
Shaveta Leekha4457e3e2012-12-23 19:25:50 +0000853 ((brdcfg[0] & 0x40) >> 5);
York Sune1379b02013-03-25 07:40:14 +0000854 sw[6] = (brdcfg[11] & 0x20) |
855 ((brdcfg[5] & 0x02) << 3);
York Sun1cb19fb2013-06-27 10:48:29 -0700856 sw[7] = (((~QIXIS_READ(rst_ctl)) & 0x40) << 1) |
Shaveta Leekha4457e3e2012-12-23 19:25:50 +0000857 ((brdcfg[5] & 0x10) << 2);
York Sun1cb19fb2013-06-27 10:48:29 -0700858 sw[8] = ((brdcfg[12] & 0x08) << 4) |
Shaveta Leekha4457e3e2012-12-23 19:25:50 +0000859 ((brdcfg[12] & 0x03) << 5);
860
861 puts("DIP switch (reverse-engineering)\n");
862 for (i = 0; i < 9; i++) {
863 printf("SW%d = 0b%s (0x%02x)\n",
York Sun1cb19fb2013-06-27 10:48:29 -0700864 i + 1, byte_to_binary_mask(sw[i], mask[i], buf), sw[i]);
Shaveta Leekha4457e3e2012-12-23 19:25:50 +0000865 }
866}
York Sun0aadf4a2013-03-25 07:40:01 +0000867
York Sun1cb19fb2013-06-27 10:48:29 -0700868static int do_vdd_adjust(cmd_tbl_t *cmdtp,
869 int flag, int argc,
870 char * const argv[])
York Sun0aadf4a2013-03-25 07:40:01 +0000871{
872 ulong override;
873
874 if (argc < 2)
875 return CMD_RET_USAGE;
876 if (!strict_strtoul(argv[1], 10, &override))
877 adjust_vdd(override); /* the value is checked by callee */
878 else
879 return CMD_RET_USAGE;
880
881 return 0;
882}
883
884U_BOOT_CMD(
885 vdd_override, 2, 0, do_vdd_adjust,
886 "Override VDD",
887 "- override with the voltage specified in mV, eg. 1050"
888);