blob: 670c487e17a8babb3fbef730b01d45c2e11127dd [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
York Sun667ab1a2012-10-11 07:13:37 +00002/*
3 * Copyright 2009-2012 Freescale Semiconductor, Inc.
Biwen Li3e9d3952020-05-01 20:04:17 +08004 * Copyright 2020 NXP
York Sun667ab1a2012-10-11 07:13:37 +00005 */
6
7#include <common.h>
8#include <command.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -06009#include <env.h>
Simon Glass3bbe70c2019-12-28 10:44:54 -070010#include <fdt_support.h>
York Sun667ab1a2012-10-11 07:13:37 +000011#include <i2c.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060012#include <image.h>
Simon Glassa7b51302019-11-14 12:57:46 -070013#include <init.h>
Simon Glass8f3f7612019-11-14 12:57:42 -070014#include <irq_func.h>
Simon Glass0f2af882020-05-10 11:40:05 -060015#include <log.h>
York Sun667ab1a2012-10-11 07:13:37 +000016#include <netdev.h>
17#include <linux/compiler.h>
18#include <asm/mmu.h>
19#include <asm/processor.h>
20#include <asm/cache.h>
21#include <asm/immap_85xx.h>
22#include <asm/fsl_law.h>
23#include <asm/fsl_serdes.h>
York Sun667ab1a2012-10-11 07:13:37 +000024#include <asm/fsl_liodn.h>
25#include <fm_eth.h>
26
27#include "../common/qixis.h"
28#include "../common/vsc3316_3308.h"
29#include "t4qds.h"
30#include "t4240qds_qixis.h"
31
32DECLARE_GLOBAL_DATA_PTR;
33
Shaohui Xie3d8095e2013-08-19 18:43:07 +080034static int8_t vsc3316_fsm1_tx[8][2] = { {0, 0}, {1, 1}, {6, 6}, {7, 7},
Timur Tabie9fabd82012-12-12 11:07:12 +000035 {8, 8}, {9, 9}, {14, 14}, {15, 15} };
36
Shaohui Xie3d8095e2013-08-19 18:43:07 +080037static int8_t vsc3316_fsm2_tx[8][2] = { {2, 2}, {3, 3}, {4, 4}, {5, 5},
Timur Tabie9fabd82012-12-12 11:07:12 +000038 {10, 10}, {11, 11}, {12, 12}, {13, 13} };
39
Shaohui Xie3d8095e2013-08-19 18:43:07 +080040static int8_t vsc3316_fsm1_rx[8][2] = { {2, 12}, {3, 13}, {4, 5}, {5, 4},
Timur Tabie9fabd82012-12-12 11:07:12 +000041 {10, 11}, {11, 10}, {12, 2}, {13, 3} };
42
Shaohui Xie3d8095e2013-08-19 18:43:07 +080043static int8_t vsc3316_fsm2_rx[8][2] = { {0, 15}, {1, 14}, {6, 7}, {7, 6},
Timur Tabie9fabd82012-12-12 11:07:12 +000044 {8, 9}, {9, 8}, {14, 1}, {15, 0} };
45
York Sun667ab1a2012-10-11 07:13:37 +000046int checkboard(void)
47{
Prabhakar Kushwaha033d07e2012-12-23 19:26:03 +000048 char buf[64];
York Sun667ab1a2012-10-11 07:13:37 +000049 u8 sw;
Simon Glassa8b57392012-12-13 20:48:48 +000050 struct cpu_type *cpu = gd->arch.cpu;
York Sun667ab1a2012-10-11 07:13:37 +000051 unsigned int i;
52
53 printf("Board: %sQDS, ", cpu->name);
Prabhakar Kushwaha033d07e2012-12-23 19:26:03 +000054 printf("Sys ID: 0x%02x, Sys Ver: 0x%02x, ",
York Sun9b85a482013-06-27 10:48:29 -070055 QIXIS_READ(id), QIXIS_READ(arch));
York Sun667ab1a2012-10-11 07:13:37 +000056
57 sw = QIXIS_READ(brdcfg[0]);
58 sw = (sw & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT;
59
60 if (sw < 0x8)
61 printf("vBank: %d\n", sw);
62 else if (sw == 0x8)
63 puts("Promjet\n");
64 else if (sw == 0x9)
65 puts("NAND\n");
66 else
67 printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH);
68
Prabhakar Kushwaha033d07e2012-12-23 19:26:03 +000069 printf("FPGA: v%d (%s), build %d",
York Sun9b85a482013-06-27 10:48:29 -070070 (int)QIXIS_READ(scver), qixis_read_tag(buf),
71 (int)qixis_read_minor());
Prabhakar Kushwaha033d07e2012-12-23 19:26:03 +000072 /* the timestamp string contains "\n" at the end */
73 printf(" on %s", qixis_read_time(buf));
74
York Sun667ab1a2012-10-11 07:13:37 +000075 /*
76 * Display the actual SERDES reference clocks as configured by the
77 * dip switches on the board. Note that the SWx registers could
78 * technically be set to force the reference clocks to match the
79 * values that the SERDES expects (or vice versa). For now, however,
80 * we just display both values and hope the user notices when they
81 * don't match.
82 */
83 puts("SERDES Reference Clocks: ");
84 sw = QIXIS_READ(brdcfg[2]);
85 for (i = 0; i < MAX_SERDES; i++) {
York Sun9b85a482013-06-27 10:48:29 -070086 static const char * const freq[] = {
York Sun667ab1a2012-10-11 07:13:37 +000087 "100", "125", "156.25", "161.1328125"};
Roy Zangc04362f2013-03-25 07:33:15 +000088 unsigned int clock = (sw >> (6 - 2 * i)) & 3;
York Sun667ab1a2012-10-11 07:13:37 +000089
90 printf("SERDES%u=%sMHz ", i+1, freq[clock]);
91 }
92 puts("\n");
93
94 return 0;
95}
96
Biwen Li3e9d3952020-05-01 20:04:17 +080097int select_i2c_ch_pca9547(u8 ch, int bus_num)
York Sun667ab1a2012-10-11 07:13:37 +000098{
99 int ret;
100
Biwen Li3e9d3952020-05-01 20:04:17 +0800101#ifdef CONFIG_DM_I2C
102 struct udevice *dev;
103
104 ret = i2c_get_chip_for_busnum(bus_num, I2C_MUX_PCA_ADDR_PRI,
105 1, &dev);
106 if (ret) {
107 printf("%s: Cannot find udev for a bus %d\n", __func__,
108 bus_num);
109 return ret;
110 }
111
112 ret = dm_i2c_write(dev, 0, &ch, 1);
113#else
York Sun667ab1a2012-10-11 07:13:37 +0000114 ret = i2c_write(I2C_MUX_PCA_ADDR_PRI, 0, 1, &ch, 1);
Biwen Li3e9d3952020-05-01 20:04:17 +0800115#endif
York Sun667ab1a2012-10-11 07:13:37 +0000116 if (ret) {
117 puts("PCA: failed to select proper channel\n");
118 return ret;
119 }
120
121 return 0;
122}
123
York Sund58bef12013-03-25 07:33:22 +0000124/*
125 * read_voltage from sensor on I2C bus
126 * We use average of 4 readings, waiting for 532us befor another reading
127 */
128#define NUM_READINGS 4 /* prefer to be power of 2 for efficiency */
129#define WAIT_FOR_ADC 532 /* wait for 532 microseconds for ADC */
130
131static inline int read_voltage(void)
132{
133 int i, ret, voltage_read = 0;
134 u16 vol_mon;
Biwen Li3e9d3952020-05-01 20:04:17 +0800135#ifdef CONFIG_DM_I2C
136 struct udevice *dev;
137 int bus_num = 0;
138#endif
York Sund58bef12013-03-25 07:33:22 +0000139
140 for (i = 0; i < NUM_READINGS; i++) {
Biwen Li3e9d3952020-05-01 20:04:17 +0800141#ifdef CONFIG_DM_I2C
142 ret = i2c_get_chip_for_busnum(bus_num, I2C_VOL_MONITOR_ADDR,
143 1, &dev);
144 if (ret) {
145 printf("%s: Cannot find udev for a bus %d\n", __func__,
146 bus_num);
147 return ret;
148 }
149
150 ret = dm_i2c_read(dev,
151 I2C_VOL_MONITOR_BUS_V_OFFSET,
152 (void *)&vol_mon, 2);
153#else
York Sund58bef12013-03-25 07:33:22 +0000154 ret = i2c_read(I2C_VOL_MONITOR_ADDR,
155 I2C_VOL_MONITOR_BUS_V_OFFSET, 1, (void *)&vol_mon, 2);
Biwen Li3e9d3952020-05-01 20:04:17 +0800156#endif
York Sund58bef12013-03-25 07:33:22 +0000157 if (ret) {
158 printf("VID: failed to read core voltage\n");
159 return ret;
160 }
161 if (vol_mon & I2C_VOL_MONITOR_BUS_V_OVF) {
162 printf("VID: Core voltage sensor error\n");
163 return -1;
164 }
165 debug("VID: bus voltage reads 0x%04x\n", vol_mon);
166 /* LSB = 4mv */
167 voltage_read += (vol_mon >> I2C_VOL_MONITOR_BUS_V_SHIFT) * 4;
168 udelay(WAIT_FOR_ADC);
169 }
170 /* calculate the average */
171 voltage_read /= NUM_READINGS;
172
173 return voltage_read;
174}
175
176/*
177 * We need to calculate how long before the voltage starts to drop or increase
178 * It returns with the loop count. Each loop takes several readings (532us)
179 */
180static inline int wait_for_voltage_change(int vdd_last)
181{
182 int timeout, vdd_current;
183
184 vdd_current = read_voltage();
185 /* wait until voltage starts to drop */
186 for (timeout = 0; abs(vdd_last - vdd_current) <= 4 &&
187 timeout < 100; timeout++) {
188 vdd_current = read_voltage();
189 }
190 if (timeout >= 100) {
191 printf("VID: Voltage adjustment timeout\n");
192 return -1;
193 }
194 return timeout;
195}
196
197/*
198 * argument 'wait' is the time we know the voltage difference can be measured
199 * this function keeps reading the voltage until it is stable
200 */
201static inline int wait_for_voltage_stable(int wait)
202{
203 int timeout, vdd_current, vdd_last;
204
205 vdd_last = read_voltage();
206 udelay(wait * NUM_READINGS * WAIT_FOR_ADC);
207 /* wait until voltage is stable */
208 vdd_current = read_voltage();
209 for (timeout = 0; abs(vdd_last - vdd_current) >= 4 &&
210 timeout < 100; timeout++) {
211 vdd_last = vdd_current;
212 udelay(wait * NUM_READINGS * WAIT_FOR_ADC);
213 vdd_current = read_voltage();
214 }
215 if (timeout >= 100) {
216 printf("VID: Voltage adjustment timeout\n");
217 return -1;
218 }
219
220 return vdd_current;
221}
222
223static inline int set_voltage(u8 vid)
224{
225 int wait, vdd_last;
226
227 vdd_last = read_voltage();
228 QIXIS_WRITE(brdcfg[6], vid);
229 wait = wait_for_voltage_change(vdd_last);
230 if (wait < 0)
231 return -1;
232 debug("VID: Waited %d us\n", wait * NUM_READINGS * WAIT_FOR_ADC);
233 wait = wait ? wait : 1;
234
235 vdd_last = wait_for_voltage_stable(wait);
236 if (vdd_last < 0)
237 return -1;
238 debug("VID: Current voltage is %d mV\n", vdd_last);
239
240 return vdd_last;
241}
242
243
York Sun844944c2013-03-25 07:40:01 +0000244static int adjust_vdd(ulong vdd_override)
York Sund58bef12013-03-25 07:33:22 +0000245{
246 int re_enable = disable_interrupts();
247 ccsr_gur_t __iomem *gur =
248 (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
249 u32 fusesr;
250 u8 vid, vid_current;
251 int vdd_target, vdd_current, vdd_last;
252 int ret;
York Sun844944c2013-03-25 07:40:01 +0000253 unsigned long vdd_string_override;
254 char *vdd_string;
York Sund58bef12013-03-25 07:33:22 +0000255 static const uint16_t vdd[32] = {
256 0, /* unused */
257 9875, /* 0.9875V */
258 9750,
259 9625,
260 9500,
261 9375,
262 9250,
263 9125,
264 9000,
265 8875,
266 8750,
267 8625,
268 8500,
269 8375,
270 8250,
271 8125,
272 10000, /* 1.0000V */
273 10125,
274 10250,
275 10375,
276 10500,
277 10625,
278 10750,
279 10875,
280 11000,
281 0, /* reserved */
282 };
283 struct vdd_drive {
284 u8 vid;
285 unsigned voltage;
286 };
287
Biwen Li3e9d3952020-05-01 20:04:17 +0800288 ret = select_i2c_ch_pca9547(I2C_MUX_CH_VOL_MONITOR, 0);
York Sund58bef12013-03-25 07:33:22 +0000289 if (ret) {
290 debug("VID: I2c failed to switch channel\n");
291 ret = -1;
292 goto exit;
293 }
294
295 /* get the voltage ID from fuse status register */
296 fusesr = in_be32(&gur->dcfg_fusesr);
297 vid = (fusesr >> FSL_CORENET_DCFG_FUSESR_VID_SHIFT) &
298 FSL_CORENET_DCFG_FUSESR_VID_MASK;
299 if (vid == FSL_CORENET_DCFG_FUSESR_VID_MASK) {
300 vid = (fusesr >> FSL_CORENET_DCFG_FUSESR_ALTVID_SHIFT) &
301 FSL_CORENET_DCFG_FUSESR_ALTVID_MASK;
302 }
303 vdd_target = vdd[vid];
York Sun844944c2013-03-25 07:40:01 +0000304
305 /* check override variable for overriding VDD */
Simon Glass64b723f2017-08-03 12:22:12 -0600306 vdd_string = env_get("t4240qds_vdd_mv");
York Sun844944c2013-03-25 07:40:01 +0000307 if (vdd_override == 0 && vdd_string &&
308 !strict_strtoul(vdd_string, 10, &vdd_string_override))
309 vdd_override = vdd_string_override;
310 if (vdd_override >= 819 && vdd_override <= 1212) {
311 vdd_target = vdd_override * 10; /* convert to 1/10 mV */
312 debug("VDD override is %lu\n", vdd_override);
313 } else if (vdd_override != 0) {
314 printf("Invalid value.\n");
315 }
316
York Sund58bef12013-03-25 07:33:22 +0000317 if (vdd_target == 0) {
318 debug("VID: VID not used\n");
319 ret = 0;
320 goto exit;
321 } else {
322 /* round up and divice by 10 to get a value in mV */
323 vdd_target = DIV_ROUND_UP(vdd_target, 10);
324 debug("VID: vid = %d mV\n", vdd_target);
325 }
326
327 /*
328 * Check current board VID setting
329 * Voltage regulator support output to 6.250mv step
330 * The highes voltage allowed for this board is (vid=0x40) 1.21250V
331 * the lowest is (vid=0x7f) 0.81875V
332 */
333 vid_current = QIXIS_READ(brdcfg[6]);
334 vdd_current = 121250 - (vid_current - 0x40) * 625;
335 debug("VID: Current vid setting is (0x%x) %d mV\n",
336 vid_current, vdd_current/100);
337
338 /*
339 * Read voltage monitor to check real voltage.
340 * Voltage monitor LSB is 4mv.
341 */
342 vdd_last = read_voltage();
343 if (vdd_last < 0) {
344 printf("VID: Could not read voltage sensor abort VID adjustment\n");
345 ret = -1;
346 goto exit;
347 }
348 debug("VID: Core voltage is at %d mV\n", vdd_last);
349 /*
350 * Adjust voltage to at or 8mV above target.
351 * Each step of adjustment is 6.25mV.
352 * Stepping down too fast may cause over current.
353 */
354 while (vdd_last > 0 && vid_current < 0x80 &&
355 vdd_last > (vdd_target + 8)) {
356 vid_current++;
357 vdd_last = set_voltage(vid_current);
358 }
359 /*
360 * Check if we need to step up
361 * This happens when board voltage switch was set too low
362 */
363 while (vdd_last > 0 && vid_current >= 0x40 &&
364 vdd_last < vdd_target + 2) {
365 vid_current--;
366 vdd_last = set_voltage(vid_current);
367 }
368 if (vdd_last > 0)
369 printf("VID: Core voltage %d mV\n", vdd_last);
370 else
371 ret = -1;
372
373exit:
374 if (re_enable)
375 enable_interrupts();
376 return ret;
377}
378
York Sun667ab1a2012-10-11 07:13:37 +0000379/* Configure Crossbar switches for Front-Side SerDes Ports */
380int config_frontside_crossbar_vsc3316(void)
381{
382 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
383 u32 srds_prtcl_s1, srds_prtcl_s2;
384 int ret;
385
Biwen Li3e9d3952020-05-01 20:04:17 +0800386 ret = select_i2c_ch_pca9547(I2C_MUX_CH_VSC3316_FS, 0);
York Sun667ab1a2012-10-11 07:13:37 +0000387 if (ret)
388 return ret;
389
390 srds_prtcl_s1 = in_be32(&gur->rcwsr[4]) &
391 FSL_CORENET2_RCWSR4_SRDS1_PRTCL;
392 srds_prtcl_s1 >>= FSL_CORENET2_RCWSR4_SRDS1_PRTCL_SHIFT;
Shaohui Xie6e078702013-08-19 18:57:57 +0800393 switch (srds_prtcl_s1) {
Shaohui Xied9a1d832014-05-16 10:52:33 +0800394 case 37:
Shaohui Xie6e078702013-08-19 18:57:57 +0800395 case 38:
396 /* swap first lane and third lane on slot1 */
397 vsc3316_fsm1_tx[0][1] = 14;
398 vsc3316_fsm1_tx[6][1] = 0;
399 vsc3316_fsm1_rx[1][1] = 2;
400 vsc3316_fsm1_rx[6][1] = 13;
Shaohui Xied9a1d832014-05-16 10:52:33 +0800401 case 39:
Shaohui Xie6e078702013-08-19 18:57:57 +0800402 case 40:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800403 case 45:
Shaohui Xie6e078702013-08-19 18:57:57 +0800404 case 46:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800405 case 47:
Shaohui Xie6e078702013-08-19 18:57:57 +0800406 case 48:
407 /* swap first lane and third lane on slot2 */
408 vsc3316_fsm1_tx[2][1] = 8;
409 vsc3316_fsm1_tx[4][1] = 6;
410 vsc3316_fsm1_rx[2][1] = 10;
411 vsc3316_fsm1_rx[5][1] = 5;
412 default:
York Sun667ab1a2012-10-11 07:13:37 +0000413 ret = vsc3316_config(VSC3316_FSM_TX_ADDR, vsc3316_fsm1_tx, 8);
414 if (ret)
415 return ret;
416 ret = vsc3316_config(VSC3316_FSM_RX_ADDR, vsc3316_fsm1_rx, 8);
417 if (ret)
418 return ret;
Shaohui Xie6e078702013-08-19 18:57:57 +0800419 break;
York Sun667ab1a2012-10-11 07:13:37 +0000420 }
421
422 srds_prtcl_s2 = in_be32(&gur->rcwsr[4]) &
423 FSL_CORENET2_RCWSR4_SRDS2_PRTCL;
424 srds_prtcl_s2 >>= FSL_CORENET2_RCWSR4_SRDS2_PRTCL_SHIFT;
Shaohui Xie6e078702013-08-19 18:57:57 +0800425 switch (srds_prtcl_s2) {
Shaohui Xied9a1d832014-05-16 10:52:33 +0800426 case 37:
Shaohui Xie6e078702013-08-19 18:57:57 +0800427 case 38:
428 /* swap first lane and third lane on slot3 */
429 vsc3316_fsm2_tx[2][1] = 11;
430 vsc3316_fsm2_tx[5][1] = 4;
431 vsc3316_fsm2_rx[2][1] = 9;
432 vsc3316_fsm2_rx[4][1] = 7;
Shaohui Xied9a1d832014-05-16 10:52:33 +0800433 case 39:
Shaohui Xie6e078702013-08-19 18:57:57 +0800434 case 40:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800435 case 45:
Shaohui Xie6e078702013-08-19 18:57:57 +0800436 case 46:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800437 case 47:
Shaohui Xie6e078702013-08-19 18:57:57 +0800438 case 48:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800439 case 49:
Shaohui Xie6e078702013-08-19 18:57:57 +0800440 case 50:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800441 case 51:
Shaohui Xie6e078702013-08-19 18:57:57 +0800442 case 52:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800443 case 53:
Shaohui Xie6e078702013-08-19 18:57:57 +0800444 case 54:
445 /* swap first lane and third lane on slot4 */
446 vsc3316_fsm2_tx[6][1] = 3;
447 vsc3316_fsm2_tx[1][1] = 12;
448 vsc3316_fsm2_rx[0][1] = 1;
449 vsc3316_fsm2_rx[6][1] = 15;
450 default:
York Sun667ab1a2012-10-11 07:13:37 +0000451 ret = vsc3316_config(VSC3316_FSM_TX_ADDR, vsc3316_fsm2_tx, 8);
452 if (ret)
453 return ret;
454 ret = vsc3316_config(VSC3316_FSM_RX_ADDR, vsc3316_fsm2_rx, 8);
455 if (ret)
456 return ret;
Shaohui Xie6e078702013-08-19 18:57:57 +0800457 break;
York Sun667ab1a2012-10-11 07:13:37 +0000458 }
459
460 return 0;
461}
462
463int config_backside_crossbar_mux(void)
464{
465 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
466 u32 srds_prtcl_s3, srds_prtcl_s4;
467 u8 brdcfg;
468
469 srds_prtcl_s3 = in_be32(&gur->rcwsr[4]) &
470 FSL_CORENET2_RCWSR4_SRDS3_PRTCL;
471 srds_prtcl_s3 >>= FSL_CORENET2_RCWSR4_SRDS3_PRTCL_SHIFT;
472 switch (srds_prtcl_s3) {
473 case 0:
474 /* SerDes3 is not enabled */
475 break;
Shaohui Xied9a1d832014-05-16 10:52:33 +0800476 case 1:
York Sun667ab1a2012-10-11 07:13:37 +0000477 case 2:
478 case 9:
479 case 10:
480 /* SD3(0:7) => SLOT5(0:7) */
481 brdcfg = QIXIS_READ(brdcfg[12]);
482 brdcfg &= ~BRDCFG12_SD3MX_MASK;
483 brdcfg |= BRDCFG12_SD3MX_SLOT5;
484 QIXIS_WRITE(brdcfg[12], brdcfg);
485 break;
Shaohui Xied9a1d832014-05-16 10:52:33 +0800486 case 3:
York Sun667ab1a2012-10-11 07:13:37 +0000487 case 4:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800488 case 5:
York Sun667ab1a2012-10-11 07:13:37 +0000489 case 6:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800490 case 7:
York Sun667ab1a2012-10-11 07:13:37 +0000491 case 8:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800492 case 11:
York Sun667ab1a2012-10-11 07:13:37 +0000493 case 12:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800494 case 13:
York Sun667ab1a2012-10-11 07:13:37 +0000495 case 14:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800496 case 15:
York Sun667ab1a2012-10-11 07:13:37 +0000497 case 16:
498 case 17:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800499 case 18:
York Sun667ab1a2012-10-11 07:13:37 +0000500 case 19:
501 case 20:
502 /* SD3(4:7) => SLOT6(0:3) */
503 brdcfg = QIXIS_READ(brdcfg[12]);
504 brdcfg &= ~BRDCFG12_SD3MX_MASK;
505 brdcfg |= BRDCFG12_SD3MX_SLOT6;
506 QIXIS_WRITE(brdcfg[12], brdcfg);
507 break;
508 default:
509 printf("WARNING: unsupported for SerDes3 Protocol %d\n",
York Sun9b85a482013-06-27 10:48:29 -0700510 srds_prtcl_s3);
York Sun667ab1a2012-10-11 07:13:37 +0000511 return -1;
512 }
513
514 srds_prtcl_s4 = in_be32(&gur->rcwsr[4]) &
515 FSL_CORENET2_RCWSR4_SRDS4_PRTCL;
516 srds_prtcl_s4 >>= FSL_CORENET2_RCWSR4_SRDS4_PRTCL_SHIFT;
517 switch (srds_prtcl_s4) {
518 case 0:
519 /* SerDes4 is not enabled */
520 break;
Shaohui Xied9a1d832014-05-16 10:52:33 +0800521 case 1:
York Sun667ab1a2012-10-11 07:13:37 +0000522 case 2:
523 /* 10b, SD4(0:7) => SLOT7(0:7) */
524 brdcfg = QIXIS_READ(brdcfg[12]);
525 brdcfg &= ~BRDCFG12_SD4MX_MASK;
526 brdcfg |= BRDCFG12_SD4MX_SLOT7;
527 QIXIS_WRITE(brdcfg[12], brdcfg);
528 break;
Shaohui Xied9a1d832014-05-16 10:52:33 +0800529 case 3:
York Sun667ab1a2012-10-11 07:13:37 +0000530 case 4:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800531 case 5:
York Sun667ab1a2012-10-11 07:13:37 +0000532 case 6:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800533 case 7:
York Sun667ab1a2012-10-11 07:13:37 +0000534 case 8:
535 /* x1b, SD4(4:7) => SLOT8(0:3) */
536 brdcfg = QIXIS_READ(brdcfg[12]);
537 brdcfg &= ~BRDCFG12_SD4MX_MASK;
538 brdcfg |= BRDCFG12_SD4MX_SLOT8;
539 QIXIS_WRITE(brdcfg[12], brdcfg);
540 break;
Shaohui Xied9a1d832014-05-16 10:52:33 +0800541 case 9:
York Sun667ab1a2012-10-11 07:13:37 +0000542 case 10:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800543 case 11:
York Sun667ab1a2012-10-11 07:13:37 +0000544 case 12:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800545 case 13:
York Sun667ab1a2012-10-11 07:13:37 +0000546 case 14:
Shaohui Xied9a1d832014-05-16 10:52:33 +0800547 case 15:
York Sun667ab1a2012-10-11 07:13:37 +0000548 case 16:
549 case 18:
550 /* 00b, SD4(4:5) => AURORA, SD4(6:7) => SATA */
551 brdcfg = QIXIS_READ(brdcfg[12]);
552 brdcfg &= ~BRDCFG12_SD4MX_MASK;
553 brdcfg |= BRDCFG12_SD4MX_AURO_SATA;
554 QIXIS_WRITE(brdcfg[12], brdcfg);
555 break;
556 default:
557 printf("WARNING: unsupported for SerDes4 Protocol %d\n",
York Sun9b85a482013-06-27 10:48:29 -0700558 srds_prtcl_s4);
York Sun667ab1a2012-10-11 07:13:37 +0000559 return -1;
560 }
561
562 return 0;
563}
564
565int board_early_init_r(void)
566{
567 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
York Sun220c3462014-06-24 21:16:20 -0700568 int flash_esel = find_tlb_idx((void *)flashbase, 1);
York Sun667ab1a2012-10-11 07:13:37 +0000569
570 /*
571 * Remap Boot flash + PROMJET region to caching-inhibited
572 * so that flash can be erased properly.
573 */
574
575 /* Flush d-cache and invalidate i-cache of any FLASH data */
576 flush_dcache();
577 invalidate_icache();
578
York Sun220c3462014-06-24 21:16:20 -0700579 if (flash_esel == -1) {
580 /* very unlikely unless something is messed up */
581 puts("Error: Could not find TLB for FLASH BASE\n");
582 flash_esel = 2; /* give our best effort to continue */
583 } else {
584 /* invalidate existing TLB entry for flash + promjet */
585 disable_tlb(flash_esel);
586 }
York Sun667ab1a2012-10-11 07:13:37 +0000587
588 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
York Sun9b85a482013-06-27 10:48:29 -0700589 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
590 0, flash_esel, BOOKE_PAGESZ_256M, 1);
York Sun667ab1a2012-10-11 07:13:37 +0000591
Ed Swarthouta55ec452013-03-25 07:39:37 +0000592 /* Disable remote I2C connection to qixis fpga */
593 QIXIS_WRITE(brdcfg[5], QIXIS_READ(brdcfg[5]) & ~BRDCFG5_IRE);
York Sun667ab1a2012-10-11 07:13:37 +0000594
York Sund58bef12013-03-25 07:33:22 +0000595 /*
596 * Adjust core voltage according to voltage ID
597 * This function changes I2C mux to channel 2.
598 */
York Sun844944c2013-03-25 07:40:01 +0000599 if (adjust_vdd(0))
York Sund58bef12013-03-25 07:33:22 +0000600 printf("Warning: Adjusting core voltage failed.\n");
601
York Sun667ab1a2012-10-11 07:13:37 +0000602 /* Configure board SERDES ports crossbar */
603 config_frontside_crossbar_vsc3316();
604 config_backside_crossbar_mux();
Biwen Li3e9d3952020-05-01 20:04:17 +0800605 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT, 0);
York Sun667ab1a2012-10-11 07:13:37 +0000606
607 return 0;
608}
609
610unsigned long get_board_sys_clk(void)
611{
612 u8 sysclk_conf = QIXIS_READ(brdcfg[1]);
Ed Swarthout817f28e2013-03-25 07:40:10 +0000613#ifdef CONFIG_FSL_QIXIS_CLOCK_MEASUREMENT
614 /* use accurate clock measurement */
615 int freq = QIXIS_READ(clk_freq[0]) << 8 | QIXIS_READ(clk_freq[1]);
616 int base = QIXIS_READ(clk_base[0]) << 8 | QIXIS_READ(clk_base[1]);
617 u32 val;
618
619 val = freq * base;
620 if (val) {
621 debug("SYS Clock measurement is: %d\n", val);
622 return val;
623 } else {
624 printf("Warning: SYS clock measurement is invalid, using value from brdcfg1.\n");
625 }
626#endif
York Sun667ab1a2012-10-11 07:13:37 +0000627
628 switch (sysclk_conf & 0x0F) {
629 case QIXIS_SYSCLK_83:
630 return 83333333;
631 case QIXIS_SYSCLK_100:
632 return 100000000;
633 case QIXIS_SYSCLK_125:
634 return 125000000;
635 case QIXIS_SYSCLK_133:
636 return 133333333;
637 case QIXIS_SYSCLK_150:
638 return 150000000;
639 case QIXIS_SYSCLK_160:
640 return 160000000;
641 case QIXIS_SYSCLK_166:
642 return 166666666;
643 }
644 return 66666666;
645}
646
647unsigned long get_board_ddr_clk(void)
648{
649 u8 ddrclk_conf = QIXIS_READ(brdcfg[1]);
Ed Swarthout817f28e2013-03-25 07:40:10 +0000650#ifdef CONFIG_FSL_QIXIS_CLOCK_MEASUREMENT
651 /* use accurate clock measurement */
652 int freq = QIXIS_READ(clk_freq[2]) << 8 | QIXIS_READ(clk_freq[3]);
653 int base = QIXIS_READ(clk_base[0]) << 8 | QIXIS_READ(clk_base[1]);
654 u32 val;
655
656 val = freq * base;
657 if (val) {
658 debug("DDR Clock measurement is: %d\n", val);
659 return val;
660 } else {
661 printf("Warning: DDR clock measurement is invalid, using value from brdcfg1.\n");
662 }
663#endif
York Sun667ab1a2012-10-11 07:13:37 +0000664
665 switch ((ddrclk_conf & 0x30) >> 4) {
666 case QIXIS_DDRCLK_100:
667 return 100000000;
668 case QIXIS_DDRCLK_125:
669 return 125000000;
670 case QIXIS_DDRCLK_133:
671 return 133333333;
672 }
673 return 66666666;
674}
675
York Sun667ab1a2012-10-11 07:13:37 +0000676int misc_init_r(void)
677{
678 u8 sw;
Shaohui Xiea24a6aa2014-06-27 14:39:31 +0800679 void *srds_base = (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
680 serdes_corenet_t *srds_regs;
York Sun667ab1a2012-10-11 07:13:37 +0000681 u32 actual[MAX_SERDES];
Shaohui Xiea24a6aa2014-06-27 14:39:31 +0800682 u32 pllcr0, expected;
York Sun667ab1a2012-10-11 07:13:37 +0000683 unsigned int i;
684
685 sw = QIXIS_READ(brdcfg[2]);
686 for (i = 0; i < MAX_SERDES; i++) {
Roy Zangc04362f2013-03-25 07:33:15 +0000687 unsigned int clock = (sw >> (6 - 2 * i)) & 3;
York Sun667ab1a2012-10-11 07:13:37 +0000688 switch (clock) {
689 case 0:
690 actual[i] = SRDS_PLLCR0_RFCK_SEL_100;
691 break;
692 case 1:
693 actual[i] = SRDS_PLLCR0_RFCK_SEL_125;
694 break;
695 case 2:
696 actual[i] = SRDS_PLLCR0_RFCK_SEL_156_25;
697 break;
698 case 3:
699 actual[i] = SRDS_PLLCR0_RFCK_SEL_161_13;
700 break;
701 }
702 }
703
704 for (i = 0; i < MAX_SERDES; i++) {
Shaohui Xiea24a6aa2014-06-27 14:39:31 +0800705 srds_regs = srds_base + i * 0x1000;
706 pllcr0 = srds_regs->bank[0].pllcr0;
707 expected = pllcr0 & SRDS_PLLCR0_RFCK_SEL_MASK;
York Sun667ab1a2012-10-11 07:13:37 +0000708 if (expected != actual[i]) {
York Sun9b85a482013-06-27 10:48:29 -0700709 printf("Warning: SERDES%u expects reference clock %sMHz, but actual is %sMHz\n",
710 i + 1, serdes_clock_to_string(expected),
York Sun667ab1a2012-10-11 07:13:37 +0000711 serdes_clock_to_string(actual[i]));
712 }
713 }
714
715 return 0;
716}
717
Simon Glass2aec3cc2014-10-23 18:58:47 -0600718int ft_board_setup(void *blob, bd_t *bd)
York Sun667ab1a2012-10-11 07:13:37 +0000719{
720 phys_addr_t base;
721 phys_size_t size;
722
723 ft_cpu_setup(blob, bd);
724
Simon Glassda1a1342017-08-03 12:22:15 -0600725 base = env_get_bootm_low();
726 size = env_get_bootm_size();
York Sun667ab1a2012-10-11 07:13:37 +0000727
728 fdt_fixup_memory(blob, (u64)base, (u64)size);
729
730#ifdef CONFIG_PCI
731 pci_of_setup(blob, bd);
732#endif
733
734 fdt_fixup_liodn(blob);
Sriram Dash9fd465c2016-09-16 17:12:15 +0530735 fsl_fdt_fixup_dr_usb(blob, bd);
York Sun667ab1a2012-10-11 07:13:37 +0000736
737#ifdef CONFIG_SYS_DPAA_FMAN
738 fdt_fixup_fman_ethernet(blob);
739 fdt_fixup_board_enet(blob);
740#endif
Simon Glass2aec3cc2014-10-23 18:58:47 -0600741
742 return 0;
York Sun667ab1a2012-10-11 07:13:37 +0000743}
Shaveta Leekha4038ab62012-12-23 19:25:50 +0000744
745/*
York Sun997f5122013-03-25 07:39:24 +0000746 * This function is called by bdinfo to print detail board information.
747 * As an exmaple for future board, we organize the messages into
748 * several sections. If applicable, the message is in the format of
749 * <name> = <value>
750 * It should aligned with normal output of bdinfo command.
751 *
752 * Voltage: Core, DDR and another configurable voltages
753 * Clock : Critical clocks which are not printed already
754 * RCW : RCW source if not printed already
755 * Misc : Other important information not in above catagories
756 */
757void board_detail(void)
758{
759 int i;
760 u8 brdcfg[16], dutcfg[16], rst_ctl;
761 int vdd, rcwsrc;
762 static const char * const clk[] = {"66.67", "100", "125", "133.33"};
763
764 for (i = 0; i < 16; i++) {
765 brdcfg[i] = qixis_read(offsetof(struct qixis, brdcfg[0]) + i);
766 dutcfg[i] = qixis_read(offsetof(struct qixis, dutcfg[0]) + i);
767 }
768
769 /* Voltage secion */
Biwen Li3e9d3952020-05-01 20:04:17 +0800770 if (!select_i2c_ch_pca9547(I2C_MUX_CH_VOL_MONITOR, 0)) {
York Sun997f5122013-03-25 07:39:24 +0000771 vdd = read_voltage();
772 if (vdd > 0)
773 printf("Core voltage= %d mV\n", vdd);
Biwen Li3e9d3952020-05-01 20:04:17 +0800774 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT, 0);
York Sun997f5122013-03-25 07:39:24 +0000775 }
776
777 printf("XVDD = 1.%d V\n", ((brdcfg[8] & 0xf) - 4) * 5 + 25);
778
779 /* clock section */
780 printf("SYSCLK = %s MHz\nDDRCLK = %s MHz\n",
781 clk[(brdcfg[11] >> 2) & 0x3], clk[brdcfg[11] & 3]);
782
783 /* RCW section */
784 rcwsrc = (dutcfg[0] << 1) + (dutcfg[1] & 1);
785 puts("RCW source = ");
786 switch (rcwsrc) {
787 case 0x017:
788 case 0x01f:
789 puts("8-bit NOR\n");
790 break;
791 case 0x027:
792 case 0x02F:
793 puts("16-bit NOR\n");
794 break;
795 case 0x040:
796 puts("SDHC/eMMC\n");
797 break;
798 case 0x044:
799 puts("SPI 16-bit addressing\n");
800 break;
801 case 0x045:
802 puts("SPI 24-bit addressing\n");
803 break;
804 case 0x048:
805 puts("I2C normal addressing\n");
806 break;
807 case 0x049:
808 puts("I2C extended addressing\n");
809 break;
810 case 0x108:
811 case 0x109:
812 case 0x10a:
813 case 0x10b:
814 puts("8-bit NAND, 2KB\n");
815 break;
816 default:
817 if ((rcwsrc >= 0x080) && (rcwsrc <= 0x09f))
818 puts("Hard-coded RCW\n");
819 else if ((rcwsrc >= 0x110) && (rcwsrc <= 0x11f))
820 puts("8-bit NAND, 4KB\n");
821 else
822 puts("unknown\n");
823 break;
824 }
825
826 /* Misc section */
827 rst_ctl = QIXIS_READ(rst_ctl);
828 puts("HRESET_REQ = ");
829 switch (rst_ctl & 0x30) {
830 case 0x00:
831 puts("Ignored\n");
832 break;
833 case 0x10:
834 puts("Assert HRESET\n");
835 break;
836 case 0x30:
837 puts("Reset system\n");
838 break;
839 default:
840 puts("N/A\n");
841 break;
842 }
843}
844
845/*
Shaveta Leekha4038ab62012-12-23 19:25:50 +0000846 * Reverse engineering switch settings.
847 * Some bits cannot be figured out. They will be displayed as
848 * underscore in binary format. mask[] has those bits.
849 * Some bits are calculated differently than the actual switches
850 * if booting with overriding by FPGA.
851 */
852void qixis_dump_switch(void)
853{
854 int i;
855 u8 sw[9];
856
857 /*
858 * Any bit with 1 means that bit cannot be reverse engineered.
859 * It will be displayed as _ in binary format.
860 */
York Sun9e698742013-03-25 07:40:14 +0000861 static const u8 mask[] = {0, 0, 0, 0, 0, 0x1, 0xcf, 0x3f, 0x1f};
Shaveta Leekha4038ab62012-12-23 19:25:50 +0000862 char buf[10];
863 u8 brdcfg[16], dutcfg[16];
864
865 for (i = 0; i < 16; i++) {
866 brdcfg[i] = qixis_read(offsetof(struct qixis, brdcfg[0]) + i);
867 dutcfg[i] = qixis_read(offsetof(struct qixis, dutcfg[0]) + i);
868 }
869
870 sw[0] = dutcfg[0];
York Sun9b85a482013-06-27 10:48:29 -0700871 sw[1] = (dutcfg[1] << 0x07) |
872 ((dutcfg[12] & 0xC0) >> 1) |
873 ((dutcfg[11] & 0xE0) >> 3) |
874 ((dutcfg[6] & 0x80) >> 6) |
Shaveta Leekha4038ab62012-12-23 19:25:50 +0000875 ((dutcfg[1] & 0x80) >> 7);
York Sun9b85a482013-06-27 10:48:29 -0700876 sw[2] = ((brdcfg[1] & 0x0f) << 4) |
877 ((brdcfg[1] & 0x30) >> 2) |
878 ((brdcfg[1] & 0x40) >> 5) |
Shaveta Leekha4038ab62012-12-23 19:25:50 +0000879 ((brdcfg[1] & 0x80) >> 7);
880 sw[3] = brdcfg[2];
York Sun9b85a482013-06-27 10:48:29 -0700881 sw[4] = ((dutcfg[2] & 0x01) << 7) |
882 ((dutcfg[2] & 0x06) << 4) |
883 ((~QIXIS_READ(present)) & 0x10) |
884 ((brdcfg[3] & 0x80) >> 4) |
885 ((brdcfg[3] & 0x01) << 2) |
886 ((brdcfg[6] == 0x62) ? 3 :
887 ((brdcfg[6] == 0x5a) ? 2 :
Shaveta Leekha4038ab62012-12-23 19:25:50 +0000888 ((brdcfg[6] == 0x5e) ? 1 : 0)));
York Sun9b85a482013-06-27 10:48:29 -0700889 sw[5] = ((brdcfg[0] & 0x0f) << 4) |
890 ((QIXIS_READ(rst_ctl) & 0x30) >> 2) |
Shaveta Leekha4038ab62012-12-23 19:25:50 +0000891 ((brdcfg[0] & 0x40) >> 5);
York Sun9e698742013-03-25 07:40:14 +0000892 sw[6] = (brdcfg[11] & 0x20) |
893 ((brdcfg[5] & 0x02) << 3);
York Sun9b85a482013-06-27 10:48:29 -0700894 sw[7] = (((~QIXIS_READ(rst_ctl)) & 0x40) << 1) |
Shaveta Leekha4038ab62012-12-23 19:25:50 +0000895 ((brdcfg[5] & 0x10) << 2);
York Sun9b85a482013-06-27 10:48:29 -0700896 sw[8] = ((brdcfg[12] & 0x08) << 4) |
Shaveta Leekha4038ab62012-12-23 19:25:50 +0000897 ((brdcfg[12] & 0x03) << 5);
898
899 puts("DIP switch (reverse-engineering)\n");
900 for (i = 0; i < 9; i++) {
901 printf("SW%d = 0b%s (0x%02x)\n",
York Sun9b85a482013-06-27 10:48:29 -0700902 i + 1, byte_to_binary_mask(sw[i], mask[i], buf), sw[i]);
Shaveta Leekha4038ab62012-12-23 19:25:50 +0000903 }
904}
York Sun844944c2013-03-25 07:40:01 +0000905
Simon Glassed38aef2020-05-10 11:40:03 -0600906static int do_vdd_adjust(struct cmd_tbl *cmdtp,
York Sun9b85a482013-06-27 10:48:29 -0700907 int flag, int argc,
Simon Glassed38aef2020-05-10 11:40:03 -0600908 char *const argv[])
York Sun844944c2013-03-25 07:40:01 +0000909{
910 ulong override;
911
912 if (argc < 2)
913 return CMD_RET_USAGE;
914 if (!strict_strtoul(argv[1], 10, &override))
915 adjust_vdd(override); /* the value is checked by callee */
916 else
917 return CMD_RET_USAGE;
918
919 return 0;
920}
921
922U_BOOT_CMD(
923 vdd_override, 2, 0, do_vdd_adjust,
924 "Override VDD",
925 "- override with the voltage specified in mV, eg. 1050"
926);