blob: 95ed0ef429eb570b60edcc13919c46eacaadcc7e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Mingkai Hu4f1d1b72011-07-07 12:29:15 +08002/*
ramneek mehresh3d7506f2012-04-18 19:39:53 +00003 * Copyright 2011,2012 Freescale Semiconductor, Inc.
Mingkai Hu4f1d1b72011-07-07 12:29:15 +08004 */
5
6#include <common.h>
7#include <command.h>
Simon Glass7b51b572019-08-01 09:46:52 -06008#include <env.h>
Simon Glass807765b2019-12-28 10:44:54 -07009#include <fdt_support.h>
Simon Glass52559322019-11-14 12:57:46 -070010#include <init.h>
Mingkai Hu4f1d1b72011-07-07 12:29:15 +080011#include <netdev.h>
12#include <linux/compiler.h>
13#include <asm/mmu.h>
14#include <asm/processor.h>
15#include <asm/cache.h>
16#include <asm/immap_85xx.h>
17#include <asm/fsl_law.h>
18#include <asm/fsl_serdes.h>
Mingkai Hu4f1d1b72011-07-07 12:29:15 +080019#include <asm/fsl_liodn.h>
Mingkai Hu0787ecc2011-07-19 16:20:13 +080020#include <fm_eth.h>
Mingkai Hu4f1d1b72011-07-07 12:29:15 +080021
22extern void pci_of_setup(void *blob, bd_t *bd);
23
24#include "cpld.h"
25
26DECLARE_GLOBAL_DATA_PTR;
27
28int checkboard(void)
29{
30 u8 sw;
Simon Glass67ac13b2012-12-13 20:48:48 +000031 struct cpu_type *cpu = gd->arch.cpu;
Mingkai Hu4f1d1b72011-07-07 12:29:15 +080032 unsigned int i;
33
34 printf("Board: %sRDB, ", cpu->name);
35 printf("CPLD version: %d.%d ", CPLD_READ(cpld_ver),
36 CPLD_READ(cpld_ver_sub));
37
38 sw = CPLD_READ(fbank_sel);
39 printf("vBank: %d\n", sw & 0x1);
40
Mingkai Hu4f1d1b72011-07-07 12:29:15 +080041 /*
Mingkai Hu4f1d1b72011-07-07 12:29:15 +080042 * Display the actual SERDES reference clocks as configured by the
43 * dip switches on the board. Note that the SWx registers could
44 * technically be set to force the reference clocks to match the
45 * values that the SERDES expects (or vice versa). For now, however,
46 * we just display both values and hope the user notices when they
47 * don't match.
48 */
49 puts("SERDES Reference Clocks: ");
50 sw = in_8(&CPLD_SW(2)) >> 2;
51 for (i = 0; i < 2; i++) {
Shaohui Xie44978612011-12-02 09:38:12 +080052 static const char * const freq[][3] = {{"0", "100", "125"},
53 {"100", "156.25", "125"}
54 };
Mingkai Hu4f1d1b72011-07-07 12:29:15 +080055 unsigned int clock = (sw >> (2 * i)) & 3;
56
Shaohui Xie44978612011-12-02 09:38:12 +080057 printf("Bank%u=%sMhz ", i+1, freq[i][clock]);
Mingkai Hu4f1d1b72011-07-07 12:29:15 +080058 }
59 puts("\n");
60
61 return 0;
62}
63
64int board_early_init_f(void)
65{
66 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
67
68 /* board only uses the DDR_MCK0/1, so disable the DDR_MCK2/3 */
69 setbits_be32(&gur->ddrclkdr, 0x000f000f);
70
71 return 0;
72}
73
Shaohui Xie220d5062012-12-03 21:36:32 +000074#define CPLD_LANE_A_SEL 0x1
75#define CPLD_LANE_G_SEL 0x2
76#define CPLD_LANE_C_SEL 0x4
77#define CPLD_LANE_D_SEL 0x8
78
79void board_config_lanes_mux(void)
80{
81 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
82 int srds_prtcl = (in_be32(&gur->rcwsr[4]) &
83 FSL_CORENET_RCWSR4_SRDS_PRTCL) >> 26;
84
85 u8 mux = 0;
86 switch (srds_prtcl) {
87 case 0x2:
88 case 0x5:
89 case 0x9:
90 case 0xa:
91 case 0xf:
92 break;
93 case 0x8:
94 mux |= CPLD_LANE_C_SEL | CPLD_LANE_D_SEL;
95 break;
96 case 0x14:
97 mux |= CPLD_LANE_A_SEL;
98 break;
99 case 0x17:
100 mux |= CPLD_LANE_G_SEL;
101 break;
102 case 0x16:
103 case 0x19:
104 case 0x1a:
105 mux |= CPLD_LANE_G_SEL | CPLD_LANE_C_SEL | CPLD_LANE_D_SEL;
106 break;
107 case 0x1c:
108 mux |= CPLD_LANE_G_SEL | CPLD_LANE_A_SEL;
109 break;
110 default:
111 printf("Fman:Unsupported SerDes Protocol 0x%02x\n", srds_prtcl);
112 break;
113 }
114 CPLD_WRITE(serdes_mux, mux);
115}
116
Mingkai Hu4f1d1b72011-07-07 12:29:15 +0800117int board_early_init_r(void)
118{
119 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
York Sun9d045682014-06-24 21:16:20 -0700120 int flash_esel = find_tlb_idx((void *)flashbase, 1);
Mingkai Hu4f1d1b72011-07-07 12:29:15 +0800121
122 /*
123 * Remap Boot flash + PROMJET region to caching-inhibited
124 * so that flash can be erased properly.
125 */
126
127 /* Flush d-cache and invalidate i-cache of any FLASH data */
128 flush_dcache();
129 invalidate_icache();
130
York Sun9d045682014-06-24 21:16:20 -0700131 if (flash_esel == -1) {
132 /* very unlikely unless something is messed up */
133 puts("Error: Could not find TLB for FLASH BASE\n");
134 flash_esel = 2; /* give our best effort to continue */
135 } else {
136 /* invalidate existing TLB entry for flash + promjet */
137 disable_tlb(flash_esel);
138 }
Mingkai Hu4f1d1b72011-07-07 12:29:15 +0800139
140 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
141 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
142 0, flash_esel, BOOKE_PAGESZ_256M, 1);
143
Shaohui Xie220d5062012-12-03 21:36:32 +0000144 board_config_lanes_mux();
Mingkai Hu4f1d1b72011-07-07 12:29:15 +0800145
146 return 0;
147}
148
Shaohui Xie44d50f02011-09-13 17:55:11 +0800149unsigned long get_board_sys_clk(unsigned long dummy)
150{
151 u8 sysclk_conf = CPLD_READ(sysclk_sw1);
152
153 switch (sysclk_conf & 0x7) {
154 case CPLD_SYSCLK_83:
155 return 83333333;
156 case CPLD_SYSCLK_100:
157 return 100000000;
158 default:
159 return 66666666;
160 }
161}
162
Mingkai Hu4f1d1b72011-07-07 12:29:15 +0800163#define NUM_SRDS_BANKS 2
164
165int misc_init_r(void)
166{
167 serdes_corenet_t *regs = (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
168 u32 actual[NUM_SRDS_BANKS];
169 unsigned int i;
170 u8 sw;
Shaohui Xie44978612011-12-02 09:38:12 +0800171 static const int freq[][3] = {
172 {0, SRDS_PLLCR0_RFCK_SEL_100, SRDS_PLLCR0_RFCK_SEL_125},
173 {SRDS_PLLCR0_RFCK_SEL_100, SRDS_PLLCR0_RFCK_SEL_156_25,
174 SRDS_PLLCR0_RFCK_SEL_125}
175 };
Mingkai Hu4f1d1b72011-07-07 12:29:15 +0800176
177 sw = in_8(&CPLD_SW(2)) >> 2;
178 for (i = 0; i < NUM_SRDS_BANKS; i++) {
179 unsigned int clock = (sw >> (2 * i)) & 3;
Shaohui Xie44978612011-12-02 09:38:12 +0800180 if (clock == 0x3) {
Mingkai Hu4f1d1b72011-07-07 12:29:15 +0800181 printf("Warning: SDREFCLK%u switch setting of '11' is "
182 "unsupported\n", i + 1);
183 break;
184 }
Shaohui Xie44978612011-12-02 09:38:12 +0800185 if (i == 0 && clock == 0)
186 puts("Warning: SDREFCLK1 switch setting of"
187 "'00' is unsupported\n");
188 else
189 actual[i] = freq[i][clock];
Shaohui Xief9539a92013-03-25 07:40:18 +0000190
191 /*
192 * PC board uses a different CPLD with PB board, this CPLD
193 * has cpld_ver_sub = 1, and pcba_ver = 5. But CPLD on PB
194 * board has cpld_ver_sub = 0, and pcba_ver = 4.
195 */
196 if ((i == 1) && (CPLD_READ(cpld_ver_sub) == 1) &&
197 (CPLD_READ(pcba_ver) == 5)) {
198 /* PC board bank2 frequency */
199 actual[i] = freq[i-1][clock];
200 }
Mingkai Hu4f1d1b72011-07-07 12:29:15 +0800201 }
202
203 for (i = 0; i < NUM_SRDS_BANKS; i++) {
204 u32 expected = in_be32(&regs->bank[i].pllcr0);
205 expected &= SRDS_PLLCR0_RFCK_SEL_MASK;
206 if (expected != actual[i]) {
207 printf("Warning: SERDES bank %u expects reference clock"
208 " %sMHz, but actual is %sMHz\n", i + 1,
209 serdes_clock_to_string(expected),
210 serdes_clock_to_string(actual[i]));
211 }
212 }
213
214 return 0;
215}
216
Simon Glasse895a4b2014-10-23 18:58:47 -0600217int ft_board_setup(void *blob, bd_t *bd)
Mingkai Hu4f1d1b72011-07-07 12:29:15 +0800218{
219 phys_addr_t base;
220 phys_size_t size;
221
222 ft_cpu_setup(blob, bd);
223
Simon Glass723806c2017-08-03 12:22:15 -0600224 base = env_get_bootm_low();
225 size = env_get_bootm_size();
Mingkai Hu4f1d1b72011-07-07 12:29:15 +0800226
227 fdt_fixup_memory(blob, (u64)base, (u64)size);
228
ramneek mehresh3d7506f2012-04-18 19:39:53 +0000229#if defined(CONFIG_HAS_FSL_DR_USB) || defined(CONFIG_HAS_FSL_MPH_USB)
Sriram Dasha5c289b2016-09-16 17:12:15 +0530230 fsl_fdt_fixup_dr_usb(blob, bd);
ramneek mehresh3d7506f2012-04-18 19:39:53 +0000231#endif
232
Mingkai Hu4f1d1b72011-07-07 12:29:15 +0800233#ifdef CONFIG_PCI
234 pci_of_setup(blob, bd);
235#endif
236
237 fdt_fixup_liodn(blob);
Mingkai Hu0787ecc2011-07-19 16:20:13 +0800238#ifdef CONFIG_SYS_DPAA_FMAN
239 fdt_fixup_fman_ethernet(blob);
240#endif
Simon Glasse895a4b2014-10-23 18:58:47 -0600241
242 return 0;
Mingkai Hu4f1d1b72011-07-07 12:29:15 +0800243}