blob: b43032cee8ad2d891960eb224974e9e3755a6187 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Gala129ba612008-08-12 11:13:08 -05002/*
Kumar Gala561e7102011-01-31 15:51:20 -06003 * Copyright 2007-2011 Freescale Semiconductor, Inc.
Kumar Gala129ba612008-08-12 11:13:08 -05004 */
5
6#include <common.h>
7#include <command.h>
Simon Glass7b51b572019-08-01 09:46:52 -06008#include <env.h>
Simon Glass4d72caa2020-05-10 11:40:01 -06009#include <image.h>
Simon Glass52559322019-11-14 12:57:46 -070010#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Simon Glass90526e92020-05-10 11:39:56 -060012#include <net.h>
Kumar Gala129ba612008-08-12 11:13:08 -050013#include <pci.h>
14#include <asm/processor.h>
15#include <asm/mmu.h>
Kumar Gala7c0d4a72008-09-22 14:11:11 -050016#include <asm/cache.h>
Kumar Gala129ba612008-08-12 11:13:08 -050017#include <asm/immap_85xx.h>
Kumar Galac8514622009-04-02 13:22:48 -050018#include <asm/fsl_pci.h>
York Sun5614e712013-09-30 09:22:09 -070019#include <fsl_ddr_sdram.h>
Kumar Gala129ba612008-08-12 11:13:08 -050020#include <asm/io.h>
Kumar Gala5d27e022010-12-15 04:55:20 -060021#include <asm/fsl_serdes.h>
Kumar Gala129ba612008-08-12 11:13:08 -050022#include <miiphy.h>
Simon Glassc05ed002020-05-10 11:40:11 -060023#include <linux/delay.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090024#include <linux/libfdt.h>
Kumar Gala129ba612008-08-12 11:13:08 -050025#include <fdt_support.h>
Liu Yu7e183ca2008-10-10 11:40:59 +080026#include <tsec.h>
Andy Fleming063c1262011-04-08 02:10:54 -050027#include <fsl_mdio.h>
Kumar Galab560ab82009-08-08 10:42:30 -050028#include <netdev.h>
Kumar Gala129ba612008-08-12 11:13:08 -050029
Liu Yu7e183ca2008-10-10 11:40:59 +080030#include "../common/sgmii_riser.h"
Kumar Gala129ba612008-08-12 11:13:08 -050031
Kumar Gala129ba612008-08-12 11:13:08 -050032int checkboard (void)
33{
Kumar Gala6bb5b412009-07-14 22:42:01 -050034 u8 vboot;
35 u8 *pixis_base = (u8 *)PIXIS_BASE;
36
Timur Tabi5d065c32012-03-15 11:42:27 +000037 printf("Board: MPC8572DS Sys ID: 0x%02x, "
Kumar Gala6bb5b412009-07-14 22:42:01 -050038 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
39 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
40 in_8(pixis_base + PIXIS_PVER));
41
42 vboot = in_8(pixis_base + PIXIS_VBOOT);
43 switch ((vboot & PIXIS_VBOOT_LBMAP) >> 6) {
44 case PIXIS_VBOOT_LBMAP_NOR0:
45 puts ("vBank: 0\n");
46 break;
47 case PIXIS_VBOOT_LBMAP_PJET:
48 puts ("Promjet\n");
49 break;
50 case PIXIS_VBOOT_LBMAP_NAND:
51 puts ("NAND\n");
52 break;
53 case PIXIS_VBOOT_LBMAP_NOR1:
54 puts ("vBank: 1\n");
55 break;
56 }
57
Kumar Gala129ba612008-08-12 11:13:08 -050058 return 0;
59}
60
Kumar Gala129ba612008-08-12 11:13:08 -050061
62#if !defined(CONFIG_SPD_EEPROM)
63/*
64 * Fixed sdram init -- doesn't use serial presence detect.
65 */
66
67phys_size_t fixed_sdram (void)
68{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020069 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
York Sun9a17eb52013-11-18 10:29:32 -080070 struct ccsr_ddr __iomem *ddr = &immap->im_ddr;
Kumar Gala129ba612008-08-12 11:13:08 -050071 uint d_init;
72
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020073 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
74 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
Kumar Gala129ba612008-08-12 11:13:08 -050075
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020076 ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
77 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
78 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
79 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
80 ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
81 ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
82 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
83 ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
84 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
85 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
Kumar Gala129ba612008-08-12 11:13:08 -050086
87#if defined (CONFIG_DDR_ECC)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020088 ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN;
89 ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS;
90 ddr->err_sbe = CONFIG_SYS_DDR_SBE;
Kumar Gala129ba612008-08-12 11:13:08 -050091#endif
92 asm("sync;isync");
93
94 udelay(500);
95
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020096 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
Kumar Gala129ba612008-08-12 11:13:08 -050097
98#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
99 d_init = 1;
100 debug("DDR - 1st controller: memory initializing\n");
101 /*
102 * Poll until memory is initialized.
103 * 512 Meg at 400 might hit this 200 times or so.
104 */
105 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) {
106 udelay(1000);
107 }
108 debug("DDR: memory initialized\n\n");
109 asm("sync; isync");
110 udelay(500);
111#endif
112
113 return 512 * 1024 * 1024;
114}
115
116#endif
117
Kumar Gala129ba612008-08-12 11:13:08 -0500118#ifdef CONFIG_PCI
119void pci_init_board(void)
120{
Kumar Gala18ea5552010-12-17 06:53:52 -0600121 struct pci_controller *hose;
Kumar Galaf61dae72009-09-03 10:20:09 -0500122
Kumar Gala18ea5552010-12-17 06:53:52 -0600123 fsl_pcie_init_board(0);
Kumar Galaf61dae72009-09-03 10:20:09 -0500124
Kumar Gala18ea5552010-12-17 06:53:52 -0600125 hose = find_hose_by_cfg_addr((void *)(CONFIG_SYS_PCIE3_ADDR));
Kumar Gala129ba612008-08-12 11:13:08 -0500126
Kumar Gala18ea5552010-12-17 06:53:52 -0600127 if (hose) {
128 u32 temp32;
129 u8 uli_busno = hose->first_busno + 2;
Kumar Gala129ba612008-08-12 11:13:08 -0500130
Kumar Galaf61dae72009-09-03 10:20:09 -0500131 /*
132 * Activate ULI1575 legacy chip by performing a fake
133 * memory access. Needed to make ULI RTC work.
134 * Device 1d has the first on-board memory BAR.
135 */
Kumar Gala18ea5552010-12-17 06:53:52 -0600136 pci_hose_read_config_dword(hose, PCI_BDF(uli_busno, 0x1d, 0),
Kumar Galaf61dae72009-09-03 10:20:09 -0500137 PCI_BASE_ADDRESS_1, &temp32);
Kumar Gala18ea5552010-12-17 06:53:52 -0600138
Kumar Galaf61dae72009-09-03 10:20:09 -0500139 if (temp32 >= CONFIG_SYS_PCIE3_MEM_BUS) {
Kumar Gala18ea5552010-12-17 06:53:52 -0600140 void *p = pci_mem_to_virt(PCI_BDF(uli_busno, 0x1d, 0),
Kumar Galaf61dae72009-09-03 10:20:09 -0500141 temp32, 4, 0);
142 debug(" uli1572 read to %p\n", p);
143 in_be32(p);
Kumar Gala129ba612008-08-12 11:13:08 -0500144 }
Kumar Gala129ba612008-08-12 11:13:08 -0500145 }
Kumar Gala129ba612008-08-12 11:13:08 -0500146}
147#endif
148
149int board_early_init_r(void)
150{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200151 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
York Sun9d045682014-06-24 21:16:20 -0700152 int flash_esel = find_tlb_idx((void *)flashbase, 1);
Kumar Gala129ba612008-08-12 11:13:08 -0500153
154 /*
155 * Remap Boot flash + PROMJET region to caching-inhibited
156 * so that flash can be erased properly.
157 */
158
Kumar Gala7c0d4a72008-09-22 14:11:11 -0500159 /* Flush d-cache and invalidate i-cache of any FLASH data */
Wolfgang Denk3cbd8232008-11-02 16:14:22 +0100160 flush_dcache();
161 invalidate_icache();
Kumar Gala129ba612008-08-12 11:13:08 -0500162
York Sun9d045682014-06-24 21:16:20 -0700163 if (flash_esel == -1) {
164 /* very unlikely unless something is messed up */
165 puts("Error: Could not find TLB for FLASH BASE\n");
166 flash_esel = 2; /* give our best effort to continue */
167 } else {
168 /* invalidate existing TLB entry for flash + promjet */
169 disable_tlb(flash_esel);
170 }
Kumar Gala129ba612008-08-12 11:13:08 -0500171
Kumar Galac953ddf2008-12-02 14:19:34 -0600172 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */
Kumar Gala129ba612008-08-12 11:13:08 -0500173 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */
174 0, flash_esel, BOOKE_PAGESZ_256M, 1); /* ts, esel, tsize, iprot */
175
176 return 0;
177}
178
Liu Yu7e183ca2008-10-10 11:40:59 +0800179int board_eth_init(bd_t *bis)
180{
Bin Meng4521ae92016-01-11 22:41:14 -0800181#ifdef CONFIG_TSEC_ENET
Andy Fleming063c1262011-04-08 02:10:54 -0500182 struct fsl_pq_mdio_info mdio_info;
Liu Yu7e183ca2008-10-10 11:40:59 +0800183 struct tsec_info_struct tsec_info[4];
Liu Yu7e183ca2008-10-10 11:40:59 +0800184 int num = 0;
185
186#ifdef CONFIG_TSEC1
187 SET_STD_TSEC_INFO(tsec_info[num], 1);
Kumar Gala058d7dc2010-12-16 14:28:06 -0600188 if (is_serdes_configured(SGMII_TSEC1)) {
189 puts("eTSEC1 is in sgmii mode.\n");
Liu Yu7e183ca2008-10-10 11:40:59 +0800190 tsec_info[num].flags |= TSEC_SGMII;
Kumar Gala058d7dc2010-12-16 14:28:06 -0600191 }
Liu Yu7e183ca2008-10-10 11:40:59 +0800192 num++;
193#endif
194#ifdef CONFIG_TSEC2
195 SET_STD_TSEC_INFO(tsec_info[num], 2);
Kumar Gala058d7dc2010-12-16 14:28:06 -0600196 if (is_serdes_configured(SGMII_TSEC2)) {
197 puts("eTSEC2 is in sgmii mode.\n");
Liu Yu7e183ca2008-10-10 11:40:59 +0800198 tsec_info[num].flags |= TSEC_SGMII;
Kumar Gala058d7dc2010-12-16 14:28:06 -0600199 }
Liu Yu7e183ca2008-10-10 11:40:59 +0800200 num++;
201#endif
202#ifdef CONFIG_TSEC3
203 SET_STD_TSEC_INFO(tsec_info[num], 3);
Kumar Gala058d7dc2010-12-16 14:28:06 -0600204 if (is_serdes_configured(SGMII_TSEC3)) {
205 puts("eTSEC3 is in sgmii mode.\n");
Liu Yu7e183ca2008-10-10 11:40:59 +0800206 tsec_info[num].flags |= TSEC_SGMII;
Kumar Gala058d7dc2010-12-16 14:28:06 -0600207 }
Liu Yu7e183ca2008-10-10 11:40:59 +0800208 num++;
209#endif
210#ifdef CONFIG_TSEC4
211 SET_STD_TSEC_INFO(tsec_info[num], 4);
Kumar Gala058d7dc2010-12-16 14:28:06 -0600212 if (is_serdes_configured(SGMII_TSEC4)) {
213 puts("eTSEC4 is in sgmii mode.\n");
Liu Yu7e183ca2008-10-10 11:40:59 +0800214 tsec_info[num].flags |= TSEC_SGMII;
Kumar Gala058d7dc2010-12-16 14:28:06 -0600215 }
Liu Yu7e183ca2008-10-10 11:40:59 +0800216 num++;
217#endif
218
219 if (!num) {
220 printf("No TSECs initialized\n");
221
222 return 0;
223 }
224
Andy Flemingfeede8b2008-12-05 20:10:22 -0600225#ifdef CONFIG_FSL_SGMII_RISER
Liu Yu7e183ca2008-10-10 11:40:59 +0800226 fsl_sgmii_riser_init(tsec_info, num);
Andy Flemingfeede8b2008-12-05 20:10:22 -0600227#endif
Liu Yu7e183ca2008-10-10 11:40:59 +0800228
Andy Fleming063c1262011-04-08 02:10:54 -0500229 mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
230 mdio_info.name = DEFAULT_MII_NAME;
231 fsl_pq_mdio_init(bis, &mdio_info);
232
Liu Yu7e183ca2008-10-10 11:40:59 +0800233 tsec_eth_init(bis, tsec_info, num);
Bin Meng4521ae92016-01-11 22:41:14 -0800234#endif
Liu Yu7e183ca2008-10-10 11:40:59 +0800235
Kumar Galab560ab82009-08-08 10:42:30 -0500236 return pci_eth_init(bis);
Liu Yu7e183ca2008-10-10 11:40:59 +0800237}
Liu Yu7e183ca2008-10-10 11:40:59 +0800238
Kumar Gala129ba612008-08-12 11:13:08 -0500239#if defined(CONFIG_OF_BOARD_SETUP)
Simon Glasse895a4b2014-10-23 18:58:47 -0600240int ft_board_setup(void *blob, bd_t *bd)
Kumar Gala129ba612008-08-12 11:13:08 -0500241{
Kumar Galab6730512009-02-09 22:03:04 -0600242 phys_addr_t base;
243 phys_size_t size;
Kumar Gala129ba612008-08-12 11:13:08 -0500244
245 ft_cpu_setup(blob, bd);
246
Simon Glass723806c2017-08-03 12:22:15 -0600247 base = env_get_bootm_low();
248 size = env_get_bootm_size();
Kumar Gala129ba612008-08-12 11:13:08 -0500249
250 fdt_fixup_memory(blob, (u64)base, (u64)size);
251
Kumar Gala6525d512010-07-08 22:37:44 -0500252 FT_FSL_PCI_SETUP;
253
Andy Flemingfeede8b2008-12-05 20:10:22 -0600254#ifdef CONFIG_FSL_SGMII_RISER
255 fsl_sgmii_riser_fdt_fixup(blob);
256#endif
Simon Glasse895a4b2014-10-23 18:58:47 -0600257
258 return 0;
Kumar Gala129ba612008-08-12 11:13:08 -0500259}
260#endif