2 * Copyright 2009-2012 Freescale Semiconductor, Inc.
4 * See file CREDITS for list of people who contributed to this
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 #include <linux/compiler.h>
29 #include <asm/processor.h>
30 #include <asm/cache.h>
31 #include <asm/immap_85xx.h>
32 #include <asm/fsl_law.h>
33 #include <asm/fsl_serdes.h>
34 #include <asm/fsl_portals.h>
35 #include <asm/fsl_liodn.h>
38 #include "../common/qixis.h"
39 #include "../common/vsc3316_3308.h"
41 #include "t4240qds_qixis.h"
43 DECLARE_GLOBAL_DATA_PTR;
45 static const int8_t vsc3316_fsm1_tx[8][2] = { {0, 0}, {1, 1}, {6, 6}, {7, 7},
46 {8, 8}, {9, 9}, {14, 14}, {15, 15} };
48 static const int8_t vsc3316_fsm2_tx[8][2] = { {2, 2}, {3, 3}, {4, 4}, {5, 5},
49 {10, 10}, {11, 11}, {12, 12}, {13, 13} };
51 static const int8_t vsc3316_fsm1_rx[8][2] = { {2, 12}, {3, 13}, {4, 5}, {5, 4},
52 {10, 11}, {11, 10}, {12, 2}, {13, 3} };
54 static const int8_t vsc3316_fsm2_rx[8][2] = { {0, 15}, {1, 14}, {6, 7}, {7, 6},
55 {8, 9}, {9, 8}, {14, 1}, {15, 0} };
61 struct cpu_type *cpu = gd->arch.cpu;
62 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
65 printf("Board: %sQDS, ", cpu->name);
66 printf("Sys ID: 0x%02x, Sys Ver: 0x%02x, ",
67 QIXIS_READ(id), QIXIS_READ(arch));
69 sw = QIXIS_READ(brdcfg[0]);
70 sw = (sw & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT;
73 printf("vBank: %d\n", sw);
79 printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH);
81 printf("FPGA: v%d (%s), build %d",
82 (int)QIXIS_READ(scver), qixis_read_tag(buf),
83 (int)qixis_read_minor());
84 /* the timestamp string contains "\n" at the end */
85 printf(" on %s", qixis_read_time(buf));
87 /* Display the RCW, so that no one gets confused as to what RCW
88 * we're actually using for this boot.
90 puts("Reset Configuration Word (RCW):");
91 for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) {
92 u32 rcw = in_be32(&gur->rcwsr[i]);
95 printf("\n %08x:", i * 4);
101 * Display the actual SERDES reference clocks as configured by the
102 * dip switches on the board. Note that the SWx registers could
103 * technically be set to force the reference clocks to match the
104 * values that the SERDES expects (or vice versa). For now, however,
105 * we just display both values and hope the user notices when they
108 puts("SERDES Reference Clocks: ");
109 sw = QIXIS_READ(brdcfg[2]);
110 for (i = 0; i < MAX_SERDES; i++) {
111 static const char *freq[] = {
112 "100", "125", "156.25", "161.1328125"};
113 unsigned int clock = (sw >> (6 - 2 * i)) & 3;
115 printf("SERDES%u=%sMHz ", i+1, freq[clock]);
122 int select_i2c_ch_pca9547(u8 ch)
126 ret = i2c_write(I2C_MUX_PCA_ADDR_PRI, 0, 1, &ch, 1);
128 puts("PCA: failed to select proper channel\n");
136 * read_voltage from sensor on I2C bus
137 * We use average of 4 readings, waiting for 532us befor another reading
139 #define NUM_READINGS 4 /* prefer to be power of 2 for efficiency */
140 #define WAIT_FOR_ADC 532 /* wait for 532 microseconds for ADC */
142 static inline int read_voltage(void)
144 int i, ret, voltage_read = 0;
147 for (i = 0; i < NUM_READINGS; i++) {
148 ret = i2c_read(I2C_VOL_MONITOR_ADDR,
149 I2C_VOL_MONITOR_BUS_V_OFFSET, 1, (void *)&vol_mon, 2);
151 printf("VID: failed to read core voltage\n");
154 if (vol_mon & I2C_VOL_MONITOR_BUS_V_OVF) {
155 printf("VID: Core voltage sensor error\n");
158 debug("VID: bus voltage reads 0x%04x\n", vol_mon);
160 voltage_read += (vol_mon >> I2C_VOL_MONITOR_BUS_V_SHIFT) * 4;
161 udelay(WAIT_FOR_ADC);
163 /* calculate the average */
164 voltage_read /= NUM_READINGS;
170 * We need to calculate how long before the voltage starts to drop or increase
171 * It returns with the loop count. Each loop takes several readings (532us)
173 static inline int wait_for_voltage_change(int vdd_last)
175 int timeout, vdd_current;
177 vdd_current = read_voltage();
178 /* wait until voltage starts to drop */
179 for (timeout = 0; abs(vdd_last - vdd_current) <= 4 &&
180 timeout < 100; timeout++) {
181 vdd_current = read_voltage();
183 if (timeout >= 100) {
184 printf("VID: Voltage adjustment timeout\n");
191 * argument 'wait' is the time we know the voltage difference can be measured
192 * this function keeps reading the voltage until it is stable
194 static inline int wait_for_voltage_stable(int wait)
196 int timeout, vdd_current, vdd_last;
198 vdd_last = read_voltage();
199 udelay(wait * NUM_READINGS * WAIT_FOR_ADC);
200 /* wait until voltage is stable */
201 vdd_current = read_voltage();
202 for (timeout = 0; abs(vdd_last - vdd_current) >= 4 &&
203 timeout < 100; timeout++) {
204 vdd_last = vdd_current;
205 udelay(wait * NUM_READINGS * WAIT_FOR_ADC);
206 vdd_current = read_voltage();
208 if (timeout >= 100) {
209 printf("VID: Voltage adjustment timeout\n");
216 static inline int set_voltage(u8 vid)
220 vdd_last = read_voltage();
221 QIXIS_WRITE(brdcfg[6], vid);
222 wait = wait_for_voltage_change(vdd_last);
225 debug("VID: Waited %d us\n", wait * NUM_READINGS * WAIT_FOR_ADC);
226 wait = wait ? wait : 1;
228 vdd_last = wait_for_voltage_stable(wait);
231 debug("VID: Current voltage is %d mV\n", vdd_last);
237 static int adjust_vdd(void)
239 int re_enable = disable_interrupts();
240 ccsr_gur_t __iomem *gur =
241 (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
244 int vdd_target, vdd_current, vdd_last;
246 static const uint16_t vdd[32] = {
279 ret = select_i2c_ch_pca9547(I2C_MUX_CH_VOL_MONITOR);
281 debug("VID: I2c failed to switch channel\n");
286 /* get the voltage ID from fuse status register */
287 fusesr = in_be32(&gur->dcfg_fusesr);
288 vid = (fusesr >> FSL_CORENET_DCFG_FUSESR_VID_SHIFT) &
289 FSL_CORENET_DCFG_FUSESR_VID_MASK;
290 if (vid == FSL_CORENET_DCFG_FUSESR_VID_MASK) {
291 vid = (fusesr >> FSL_CORENET_DCFG_FUSESR_ALTVID_SHIFT) &
292 FSL_CORENET_DCFG_FUSESR_ALTVID_MASK;
294 vdd_target = vdd[vid];
295 if (vdd_target == 0) {
296 debug("VID: VID not used\n");
300 /* round up and divice by 10 to get a value in mV */
301 vdd_target = DIV_ROUND_UP(vdd_target, 10);
302 debug("VID: vid = %d mV\n", vdd_target);
306 * Check current board VID setting
307 * Voltage regulator support output to 6.250mv step
308 * The highes voltage allowed for this board is (vid=0x40) 1.21250V
309 * the lowest is (vid=0x7f) 0.81875V
311 vid_current = QIXIS_READ(brdcfg[6]);
312 vdd_current = 121250 - (vid_current - 0x40) * 625;
313 debug("VID: Current vid setting is (0x%x) %d mV\n",
314 vid_current, vdd_current/100);
317 * Read voltage monitor to check real voltage.
318 * Voltage monitor LSB is 4mv.
320 vdd_last = read_voltage();
322 printf("VID: Could not read voltage sensor abort VID adjustment\n");
326 debug("VID: Core voltage is at %d mV\n", vdd_last);
328 * Adjust voltage to at or 8mV above target.
329 * Each step of adjustment is 6.25mV.
330 * Stepping down too fast may cause over current.
332 while (vdd_last > 0 && vid_current < 0x80 &&
333 vdd_last > (vdd_target + 8)) {
335 vdd_last = set_voltage(vid_current);
338 * Check if we need to step up
339 * This happens when board voltage switch was set too low
341 while (vdd_last > 0 && vid_current >= 0x40 &&
342 vdd_last < vdd_target + 2) {
344 vdd_last = set_voltage(vid_current);
347 printf("VID: Core voltage %d mV\n", vdd_last);
357 /* Configure Crossbar switches for Front-Side SerDes Ports */
358 int config_frontside_crossbar_vsc3316(void)
360 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
361 u32 srds_prtcl_s1, srds_prtcl_s2;
364 ret = select_i2c_ch_pca9547(I2C_MUX_CH_VSC3316_FS);
368 srds_prtcl_s1 = in_be32(&gur->rcwsr[4]) &
369 FSL_CORENET2_RCWSR4_SRDS1_PRTCL;
370 srds_prtcl_s1 >>= FSL_CORENET2_RCWSR4_SRDS1_PRTCL_SHIFT;
372 ret = vsc3316_config(VSC3316_FSM_TX_ADDR, vsc3316_fsm1_tx, 8);
375 ret = vsc3316_config(VSC3316_FSM_RX_ADDR, vsc3316_fsm1_rx, 8);
380 srds_prtcl_s2 = in_be32(&gur->rcwsr[4]) &
381 FSL_CORENET2_RCWSR4_SRDS2_PRTCL;
382 srds_prtcl_s2 >>= FSL_CORENET2_RCWSR4_SRDS2_PRTCL_SHIFT;
384 ret = vsc3316_config(VSC3316_FSM_TX_ADDR, vsc3316_fsm2_tx, 8);
387 ret = vsc3316_config(VSC3316_FSM_RX_ADDR, vsc3316_fsm2_rx, 8);
395 int config_backside_crossbar_mux(void)
397 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
398 u32 srds_prtcl_s3, srds_prtcl_s4;
401 srds_prtcl_s3 = in_be32(&gur->rcwsr[4]) &
402 FSL_CORENET2_RCWSR4_SRDS3_PRTCL;
403 srds_prtcl_s3 >>= FSL_CORENET2_RCWSR4_SRDS3_PRTCL_SHIFT;
404 switch (srds_prtcl_s3) {
406 /* SerDes3 is not enabled */
411 /* SD3(0:7) => SLOT5(0:7) */
412 brdcfg = QIXIS_READ(brdcfg[12]);
413 brdcfg &= ~BRDCFG12_SD3MX_MASK;
414 brdcfg |= BRDCFG12_SD3MX_SLOT5;
415 QIXIS_WRITE(brdcfg[12], brdcfg);
426 /* SD3(4:7) => SLOT6(0:3) */
427 brdcfg = QIXIS_READ(brdcfg[12]);
428 brdcfg &= ~BRDCFG12_SD3MX_MASK;
429 brdcfg |= BRDCFG12_SD3MX_SLOT6;
430 QIXIS_WRITE(brdcfg[12], brdcfg);
433 printf("WARNING: unsupported for SerDes3 Protocol %d\n",
438 srds_prtcl_s4 = in_be32(&gur->rcwsr[4]) &
439 FSL_CORENET2_RCWSR4_SRDS4_PRTCL;
440 srds_prtcl_s4 >>= FSL_CORENET2_RCWSR4_SRDS4_PRTCL_SHIFT;
441 switch (srds_prtcl_s4) {
443 /* SerDes4 is not enabled */
446 /* 10b, SD4(0:7) => SLOT7(0:7) */
447 brdcfg = QIXIS_READ(brdcfg[12]);
448 brdcfg &= ~BRDCFG12_SD4MX_MASK;
449 brdcfg |= BRDCFG12_SD4MX_SLOT7;
450 QIXIS_WRITE(brdcfg[12], brdcfg);
455 /* x1b, SD4(4:7) => SLOT8(0:3) */
456 brdcfg = QIXIS_READ(brdcfg[12]);
457 brdcfg &= ~BRDCFG12_SD4MX_MASK;
458 brdcfg |= BRDCFG12_SD4MX_SLOT8;
459 QIXIS_WRITE(brdcfg[12], brdcfg);
466 /* 00b, SD4(4:5) => AURORA, SD4(6:7) => SATA */
467 brdcfg = QIXIS_READ(brdcfg[12]);
468 brdcfg &= ~BRDCFG12_SD4MX_MASK;
469 brdcfg |= BRDCFG12_SD4MX_AURO_SATA;
470 QIXIS_WRITE(brdcfg[12], brdcfg);
473 printf("WARNING: unsupported for SerDes4 Protocol %d\n",
481 int board_early_init_r(void)
483 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
484 const u8 flash_esel = find_tlb_idx((void *)flashbase, 1);
487 * Remap Boot flash + PROMJET region to caching-inhibited
488 * so that flash can be erased properly.
491 /* Flush d-cache and invalidate i-cache of any FLASH data */
495 /* invalidate existing TLB entry for flash + promjet */
496 disable_tlb(flash_esel);
498 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
499 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
500 0, flash_esel, BOOKE_PAGESZ_256M, 1);
503 #ifdef CONFIG_SYS_DPAA_QBMAN
507 /* Disable remote I2C connection to qixis fpga */
508 QIXIS_WRITE(brdcfg[5], QIXIS_READ(brdcfg[5]) & ~BRDCFG5_IRE);
511 * Adjust core voltage according to voltage ID
512 * This function changes I2C mux to channel 2.
515 printf("Warning: Adjusting core voltage failed.\n");
517 /* Configure board SERDES ports crossbar */
518 config_frontside_crossbar_vsc3316();
519 config_backside_crossbar_mux();
520 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT);
525 unsigned long get_board_sys_clk(void)
527 u8 sysclk_conf = QIXIS_READ(brdcfg[1]);
529 switch (sysclk_conf & 0x0F) {
530 case QIXIS_SYSCLK_83:
532 case QIXIS_SYSCLK_100:
534 case QIXIS_SYSCLK_125:
536 case QIXIS_SYSCLK_133:
538 case QIXIS_SYSCLK_150:
540 case QIXIS_SYSCLK_160:
542 case QIXIS_SYSCLK_166:
548 unsigned long get_board_ddr_clk(void)
550 u8 ddrclk_conf = QIXIS_READ(brdcfg[1]);
552 switch ((ddrclk_conf & 0x30) >> 4) {
553 case QIXIS_DDRCLK_100:
555 case QIXIS_DDRCLK_125:
557 case QIXIS_DDRCLK_133:
563 static const char *serdes_clock_to_string(u32 clock)
566 case SRDS_PLLCR0_RFCK_SEL_100:
568 case SRDS_PLLCR0_RFCK_SEL_125:
570 case SRDS_PLLCR0_RFCK_SEL_156_25:
572 case SRDS_PLLCR0_RFCK_SEL_161_13:
573 return "161.1328125";
579 int misc_init_r(void)
582 serdes_corenet_t *srds_regs =
583 (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
584 u32 actual[MAX_SERDES];
587 sw = QIXIS_READ(brdcfg[2]);
588 for (i = 0; i < MAX_SERDES; i++) {
589 unsigned int clock = (sw >> (6 - 2 * i)) & 3;
592 actual[i] = SRDS_PLLCR0_RFCK_SEL_100;
595 actual[i] = SRDS_PLLCR0_RFCK_SEL_125;
598 actual[i] = SRDS_PLLCR0_RFCK_SEL_156_25;
601 actual[i] = SRDS_PLLCR0_RFCK_SEL_161_13;
606 for (i = 0; i < MAX_SERDES; i++) {
607 u32 pllcr0 = srds_regs->bank[i].pllcr0;
608 u32 expected = pllcr0 & SRDS_PLLCR0_RFCK_SEL_MASK;
609 if (expected != actual[i]) {
610 printf("Warning: SERDES%u expects reference clock"
611 " %sMHz, but actual is %sMHz\n", i + 1,
612 serdes_clock_to_string(expected),
613 serdes_clock_to_string(actual[i]));
620 void ft_board_setup(void *blob, bd_t *bd)
625 ft_cpu_setup(blob, bd);
627 base = getenv_bootm_low();
628 size = getenv_bootm_size();
630 fdt_fixup_memory(blob, (u64)base, (u64)size);
633 pci_of_setup(blob, bd);
636 fdt_fixup_liodn(blob);
637 fdt_fixup_dr_usb(blob, bd);
639 #ifdef CONFIG_SYS_DPAA_FMAN
640 fdt_fixup_fman_ethernet(blob);
641 fdt_fixup_board_enet(blob);
646 * This function is called by bdinfo to print detail board information.
647 * As an exmaple for future board, we organize the messages into
648 * several sections. If applicable, the message is in the format of
650 * It should aligned with normal output of bdinfo command.
652 * Voltage: Core, DDR and another configurable voltages
653 * Clock : Critical clocks which are not printed already
654 * RCW : RCW source if not printed already
655 * Misc : Other important information not in above catagories
657 void board_detail(void)
660 u8 brdcfg[16], dutcfg[16], rst_ctl;
662 static const char * const clk[] = {"66.67", "100", "125", "133.33"};
664 for (i = 0; i < 16; i++) {
665 brdcfg[i] = qixis_read(offsetof(struct qixis, brdcfg[0]) + i);
666 dutcfg[i] = qixis_read(offsetof(struct qixis, dutcfg[0]) + i);
670 if (!select_i2c_ch_pca9547(I2C_MUX_CH_VOL_MONITOR)) {
671 vdd = read_voltage();
673 printf("Core voltage= %d mV\n", vdd);
674 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT);
677 printf("XVDD = 1.%d V\n", ((brdcfg[8] & 0xf) - 4) * 5 + 25);
680 printf("SYSCLK = %s MHz\nDDRCLK = %s MHz\n",
681 clk[(brdcfg[11] >> 2) & 0x3], clk[brdcfg[11] & 3]);
684 rcwsrc = (dutcfg[0] << 1) + (dutcfg[1] & 1);
685 puts("RCW source = ");
693 puts("16-bit NOR\n");
699 puts("SPI 16-bit addressing\n");
702 puts("SPI 24-bit addressing\n");
705 puts("I2C normal addressing\n");
708 puts("I2C extended addressing\n");
714 puts("8-bit NAND, 2KB\n");
717 if ((rcwsrc >= 0x080) && (rcwsrc <= 0x09f))
718 puts("Hard-coded RCW\n");
719 else if ((rcwsrc >= 0x110) && (rcwsrc <= 0x11f))
720 puts("8-bit NAND, 4KB\n");
727 rst_ctl = QIXIS_READ(rst_ctl);
728 puts("HRESET_REQ = ");
729 switch (rst_ctl & 0x30) {
734 puts("Assert HRESET\n");
737 puts("Reset system\n");
746 * Reverse engineering switch settings.
747 * Some bits cannot be figured out. They will be displayed as
748 * underscore in binary format. mask[] has those bits.
749 * Some bits are calculated differently than the actual switches
750 * if booting with overriding by FPGA.
752 void qixis_dump_switch(void)
758 * Any bit with 1 means that bit cannot be reverse engineered.
759 * It will be displayed as _ in binary format.
761 static const u8 mask[] = {0, 0, 0, 0, 0, 0x1, 0xdf, 0x3f, 0x1f};
763 u8 brdcfg[16], dutcfg[16];
765 for (i = 0; i < 16; i++) {
766 brdcfg[i] = qixis_read(offsetof(struct qixis, brdcfg[0]) + i);
767 dutcfg[i] = qixis_read(offsetof(struct qixis, dutcfg[0]) + i);
771 sw[1] = (dutcfg[1] << 0x07) | \
772 ((dutcfg[12] & 0xC0) >> 1) | \
773 ((dutcfg[11] & 0xE0) >> 3) | \
774 ((dutcfg[6] & 0x80) >> 6) | \
775 ((dutcfg[1] & 0x80) >> 7);
776 sw[2] = ((brdcfg[1] & 0x0f) << 4) | \
777 ((brdcfg[1] & 0x30) >> 2) | \
778 ((brdcfg[1] & 0x40) >> 5) | \
779 ((brdcfg[1] & 0x80) >> 7);
781 sw[4] = ((dutcfg[2] & 0x01) << 7) | \
782 ((dutcfg[2] & 0x06) << 4) | \
783 ((~QIXIS_READ(present)) & 0x10) | \
784 ((brdcfg[3] & 0x80) >> 4) | \
785 ((brdcfg[3] & 0x01) << 2) | \
786 ((brdcfg[6] == 0x62) ? 3 : \
787 ((brdcfg[6] == 0x5a) ? 2 : \
788 ((brdcfg[6] == 0x5e) ? 1 : 0)));
789 sw[5] = ((brdcfg[0] & 0x0f) << 4) | \
790 ((QIXIS_READ(rst_ctl) & 0x30) >> 2) | \
791 ((brdcfg[0] & 0x40) >> 5);
792 sw[6] = (brdcfg[11] & 0x20);
793 sw[7] = (((~QIXIS_READ(rst_ctl)) & 0x40) << 1) | \
794 ((brdcfg[5] & 0x10) << 2);
795 sw[8] = ((brdcfg[12] & 0x08) << 4) | \
796 ((brdcfg[12] & 0x03) << 5);
798 puts("DIP switch (reverse-engineering)\n");
799 for (i = 0; i < 9; i++) {
800 printf("SW%d = 0b%s (0x%02x)\n",
801 i + 1, byte_to_binary_mask(sw[i], mask[i], buf), sw[i]);