blob: 13cfe159ae1c7b1493edcafb1decb6c8d05a5e58 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Gala3ab0b2d2008-08-12 11:13:08 -05002/*
Kumar Gala365024c2011-01-31 15:51:20 -06003 * Copyright 2007-2011 Freescale Semiconductor, Inc.
Kumar Gala3ab0b2d2008-08-12 11:13:08 -05004 */
5
6#include <common.h>
7#include <command.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -06008#include <env.h>
Simon Glass2dc9c342020-05-10 11:40:01 -06009#include <image.h>
Simon Glassa7b51302019-11-14 12:57:46 -070010#include <init.h>
Simon Glass274e0b02020-05-10 11:39:56 -060011#include <net.h>
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050012#include <pci.h>
13#include <asm/processor.h>
14#include <asm/mmu.h>
Kumar Galaf81f89f2008-09-22 14:11:11 -050015#include <asm/cache.h>
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050016#include <asm/immap_85xx.h>
Kumar Gala9bbd6432009-04-02 13:22:48 -050017#include <asm/fsl_pci.h>
York Sunf0626592013-09-30 09:22:09 -070018#include <fsl_ddr_sdram.h>
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050019#include <asm/io.h>
Kumar Gala3d020382010-12-15 04:55:20 -060020#include <asm/fsl_serdes.h>
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050021#include <miiphy.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090022#include <linux/libfdt.h>
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050023#include <fdt_support.h>
Liu Yuc49bce42008-10-10 11:40:59 +080024#include <tsec.h>
Andy Fleming422effd2011-04-08 02:10:54 -050025#include <fsl_mdio.h>
Kumar Galad3b1b662009-08-08 10:42:30 -050026#include <netdev.h>
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050027
Liu Yuc49bce42008-10-10 11:40:59 +080028#include "../common/sgmii_riser.h"
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050029
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050030int checkboard (void)
31{
Kumar Galae21db032009-07-14 22:42:01 -050032 u8 vboot;
33 u8 *pixis_base = (u8 *)PIXIS_BASE;
34
Timur Tabi56953ee2012-03-15 11:42:27 +000035 printf("Board: MPC8572DS Sys ID: 0x%02x, "
Kumar Galae21db032009-07-14 22:42:01 -050036 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
37 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
38 in_8(pixis_base + PIXIS_PVER));
39
40 vboot = in_8(pixis_base + PIXIS_VBOOT);
41 switch ((vboot & PIXIS_VBOOT_LBMAP) >> 6) {
42 case PIXIS_VBOOT_LBMAP_NOR0:
43 puts ("vBank: 0\n");
44 break;
45 case PIXIS_VBOOT_LBMAP_PJET:
46 puts ("Promjet\n");
47 break;
48 case PIXIS_VBOOT_LBMAP_NAND:
49 puts ("NAND\n");
50 break;
51 case PIXIS_VBOOT_LBMAP_NOR1:
52 puts ("vBank: 1\n");
53 break;
54 }
55
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050056 return 0;
57}
58
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050059
60#if !defined(CONFIG_SPD_EEPROM)
61/*
62 * Fixed sdram init -- doesn't use serial presence detect.
63 */
64
65phys_size_t fixed_sdram (void)
66{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020067 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
York Suna21803d2013-11-18 10:29:32 -080068 struct ccsr_ddr __iomem *ddr = &immap->im_ddr;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050069 uint d_init;
70
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020071 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
72 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050073
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020074 ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
75 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
76 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
77 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
78 ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
79 ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
80 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
81 ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
82 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
83 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050084
85#if defined (CONFIG_DDR_ECC)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020086 ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN;
87 ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS;
88 ddr->err_sbe = CONFIG_SYS_DDR_SBE;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050089#endif
90 asm("sync;isync");
91
92 udelay(500);
93
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020094 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050095
96#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
97 d_init = 1;
98 debug("DDR - 1st controller: memory initializing\n");
99 /*
100 * Poll until memory is initialized.
101 * 512 Meg at 400 might hit this 200 times or so.
102 */
103 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) {
104 udelay(1000);
105 }
106 debug("DDR: memory initialized\n\n");
107 asm("sync; isync");
108 udelay(500);
109#endif
110
111 return 512 * 1024 * 1024;
112}
113
114#endif
115
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500116#ifdef CONFIG_PCI
117void pci_init_board(void)
118{
Kumar Galad165dc52010-12-17 06:53:52 -0600119 struct pci_controller *hose;
Kumar Galafd19d1e2009-09-03 10:20:09 -0500120
Kumar Galad165dc52010-12-17 06:53:52 -0600121 fsl_pcie_init_board(0);
Kumar Galafd19d1e2009-09-03 10:20:09 -0500122
Kumar Galad165dc52010-12-17 06:53:52 -0600123 hose = find_hose_by_cfg_addr((void *)(CONFIG_SYS_PCIE3_ADDR));
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500124
Kumar Galad165dc52010-12-17 06:53:52 -0600125 if (hose) {
126 u32 temp32;
127 u8 uli_busno = hose->first_busno + 2;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500128
Kumar Galafd19d1e2009-09-03 10:20:09 -0500129 /*
130 * Activate ULI1575 legacy chip by performing a fake
131 * memory access. Needed to make ULI RTC work.
132 * Device 1d has the first on-board memory BAR.
133 */
Kumar Galad165dc52010-12-17 06:53:52 -0600134 pci_hose_read_config_dword(hose, PCI_BDF(uli_busno, 0x1d, 0),
Kumar Galafd19d1e2009-09-03 10:20:09 -0500135 PCI_BASE_ADDRESS_1, &temp32);
Kumar Galad165dc52010-12-17 06:53:52 -0600136
Kumar Galafd19d1e2009-09-03 10:20:09 -0500137 if (temp32 >= CONFIG_SYS_PCIE3_MEM_BUS) {
Kumar Galad165dc52010-12-17 06:53:52 -0600138 void *p = pci_mem_to_virt(PCI_BDF(uli_busno, 0x1d, 0),
Kumar Galafd19d1e2009-09-03 10:20:09 -0500139 temp32, 4, 0);
140 debug(" uli1572 read to %p\n", p);
141 in_be32(p);
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500142 }
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500143 }
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500144}
145#endif
146
147int board_early_init_r(void)
148{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200149 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
York Sun220c3462014-06-24 21:16:20 -0700150 int flash_esel = find_tlb_idx((void *)flashbase, 1);
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500151
152 /*
153 * Remap Boot flash + PROMJET region to caching-inhibited
154 * so that flash can be erased properly.
155 */
156
Kumar Galaf81f89f2008-09-22 14:11:11 -0500157 /* Flush d-cache and invalidate i-cache of any FLASH data */
Wolfgang Denk82f15f32008-11-02 16:14:22 +0100158 flush_dcache();
159 invalidate_icache();
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500160
York Sun220c3462014-06-24 21:16:20 -0700161 if (flash_esel == -1) {
162 /* very unlikely unless something is messed up */
163 puts("Error: Could not find TLB for FLASH BASE\n");
164 flash_esel = 2; /* give our best effort to continue */
165 } else {
166 /* invalidate existing TLB entry for flash + promjet */
167 disable_tlb(flash_esel);
168 }
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500169
Kumar Gala4be8b572008-12-02 14:19:34 -0600170 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500171 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */
172 0, flash_esel, BOOKE_PAGESZ_256M, 1); /* ts, esel, tsize, iprot */
173
174 return 0;
175}
176
Liu Yuc49bce42008-10-10 11:40:59 +0800177int board_eth_init(bd_t *bis)
178{
Bin Meng28cedb22016-01-11 22:41:14 -0800179#ifdef CONFIG_TSEC_ENET
Andy Fleming422effd2011-04-08 02:10:54 -0500180 struct fsl_pq_mdio_info mdio_info;
Liu Yuc49bce42008-10-10 11:40:59 +0800181 struct tsec_info_struct tsec_info[4];
Liu Yuc49bce42008-10-10 11:40:59 +0800182 int num = 0;
183
184#ifdef CONFIG_TSEC1
185 SET_STD_TSEC_INFO(tsec_info[num], 1);
Kumar Galae6dc4842010-12-16 14:28:06 -0600186 if (is_serdes_configured(SGMII_TSEC1)) {
187 puts("eTSEC1 is in sgmii mode.\n");
Liu Yuc49bce42008-10-10 11:40:59 +0800188 tsec_info[num].flags |= TSEC_SGMII;
Kumar Galae6dc4842010-12-16 14:28:06 -0600189 }
Liu Yuc49bce42008-10-10 11:40:59 +0800190 num++;
191#endif
192#ifdef CONFIG_TSEC2
193 SET_STD_TSEC_INFO(tsec_info[num], 2);
Kumar Galae6dc4842010-12-16 14:28:06 -0600194 if (is_serdes_configured(SGMII_TSEC2)) {
195 puts("eTSEC2 is in sgmii mode.\n");
Liu Yuc49bce42008-10-10 11:40:59 +0800196 tsec_info[num].flags |= TSEC_SGMII;
Kumar Galae6dc4842010-12-16 14:28:06 -0600197 }
Liu Yuc49bce42008-10-10 11:40:59 +0800198 num++;
199#endif
200#ifdef CONFIG_TSEC3
201 SET_STD_TSEC_INFO(tsec_info[num], 3);
Kumar Galae6dc4842010-12-16 14:28:06 -0600202 if (is_serdes_configured(SGMII_TSEC3)) {
203 puts("eTSEC3 is in sgmii mode.\n");
Liu Yuc49bce42008-10-10 11:40:59 +0800204 tsec_info[num].flags |= TSEC_SGMII;
Kumar Galae6dc4842010-12-16 14:28:06 -0600205 }
Liu Yuc49bce42008-10-10 11:40:59 +0800206 num++;
207#endif
208#ifdef CONFIG_TSEC4
209 SET_STD_TSEC_INFO(tsec_info[num], 4);
Kumar Galae6dc4842010-12-16 14:28:06 -0600210 if (is_serdes_configured(SGMII_TSEC4)) {
211 puts("eTSEC4 is in sgmii mode.\n");
Liu Yuc49bce42008-10-10 11:40:59 +0800212 tsec_info[num].flags |= TSEC_SGMII;
Kumar Galae6dc4842010-12-16 14:28:06 -0600213 }
Liu Yuc49bce42008-10-10 11:40:59 +0800214 num++;
215#endif
216
217 if (!num) {
218 printf("No TSECs initialized\n");
219
220 return 0;
221 }
222
Andy Flemingacaccae2008-12-05 20:10:22 -0600223#ifdef CONFIG_FSL_SGMII_RISER
Liu Yuc49bce42008-10-10 11:40:59 +0800224 fsl_sgmii_riser_init(tsec_info, num);
Andy Flemingacaccae2008-12-05 20:10:22 -0600225#endif
Liu Yuc49bce42008-10-10 11:40:59 +0800226
Andy Fleming422effd2011-04-08 02:10:54 -0500227 mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
228 mdio_info.name = DEFAULT_MII_NAME;
229 fsl_pq_mdio_init(bis, &mdio_info);
230
Liu Yuc49bce42008-10-10 11:40:59 +0800231 tsec_eth_init(bis, tsec_info, num);
Bin Meng28cedb22016-01-11 22:41:14 -0800232#endif
Liu Yuc49bce42008-10-10 11:40:59 +0800233
Kumar Galad3b1b662009-08-08 10:42:30 -0500234 return pci_eth_init(bis);
Liu Yuc49bce42008-10-10 11:40:59 +0800235}
Liu Yuc49bce42008-10-10 11:40:59 +0800236
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500237#if defined(CONFIG_OF_BOARD_SETUP)
Simon Glass2aec3cc2014-10-23 18:58:47 -0600238int ft_board_setup(void *blob, bd_t *bd)
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500239{
Kumar Galaf281c5c2009-02-09 22:03:04 -0600240 phys_addr_t base;
241 phys_size_t size;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500242
243 ft_cpu_setup(blob, bd);
244
Simon Glassda1a1342017-08-03 12:22:15 -0600245 base = env_get_bootm_low();
246 size = env_get_bootm_size();
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500247
248 fdt_fixup_memory(blob, (u64)base, (u64)size);
249
Kumar Galad0f27d32010-07-08 22:37:44 -0500250 FT_FSL_PCI_SETUP;
251
Andy Flemingacaccae2008-12-05 20:10:22 -0600252#ifdef CONFIG_FSL_SGMII_RISER
253 fsl_sgmii_riser_fdt_fixup(blob);
254#endif
Simon Glass2aec3cc2014-10-23 18:58:47 -0600255
256 return 0;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500257}
258#endif