blob: 4111d69b4b9c19ffecaba9856470142b336d334b [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 Glassa7b51302019-11-14 12:57:46 -07009#include <init.h>
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050010#include <pci.h>
11#include <asm/processor.h>
12#include <asm/mmu.h>
Kumar Galaf81f89f2008-09-22 14:11:11 -050013#include <asm/cache.h>
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050014#include <asm/immap_85xx.h>
Kumar Gala9bbd6432009-04-02 13:22:48 -050015#include <asm/fsl_pci.h>
York Sunf0626592013-09-30 09:22:09 -070016#include <fsl_ddr_sdram.h>
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050017#include <asm/io.h>
Kumar Gala3d020382010-12-15 04:55:20 -060018#include <asm/fsl_serdes.h>
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050019#include <miiphy.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090020#include <linux/libfdt.h>
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050021#include <fdt_support.h>
Liu Yuc49bce42008-10-10 11:40:59 +080022#include <tsec.h>
Andy Fleming422effd2011-04-08 02:10:54 -050023#include <fsl_mdio.h>
Kumar Galad3b1b662009-08-08 10:42:30 -050024#include <netdev.h>
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050025
Liu Yuc49bce42008-10-10 11:40:59 +080026#include "../common/sgmii_riser.h"
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050027
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050028int checkboard (void)
29{
Kumar Galae21db032009-07-14 22:42:01 -050030 u8 vboot;
31 u8 *pixis_base = (u8 *)PIXIS_BASE;
32
Timur Tabi56953ee2012-03-15 11:42:27 +000033 printf("Board: MPC8572DS Sys ID: 0x%02x, "
Kumar Galae21db032009-07-14 22:42:01 -050034 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
35 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
36 in_8(pixis_base + PIXIS_PVER));
37
38 vboot = in_8(pixis_base + PIXIS_VBOOT);
39 switch ((vboot & PIXIS_VBOOT_LBMAP) >> 6) {
40 case PIXIS_VBOOT_LBMAP_NOR0:
41 puts ("vBank: 0\n");
42 break;
43 case PIXIS_VBOOT_LBMAP_PJET:
44 puts ("Promjet\n");
45 break;
46 case PIXIS_VBOOT_LBMAP_NAND:
47 puts ("NAND\n");
48 break;
49 case PIXIS_VBOOT_LBMAP_NOR1:
50 puts ("vBank: 1\n");
51 break;
52 }
53
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050054 return 0;
55}
56
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050057
58#if !defined(CONFIG_SPD_EEPROM)
59/*
60 * Fixed sdram init -- doesn't use serial presence detect.
61 */
62
63phys_size_t fixed_sdram (void)
64{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020065 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
York Suna21803d2013-11-18 10:29:32 -080066 struct ccsr_ddr __iomem *ddr = &immap->im_ddr;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050067 uint d_init;
68
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020069 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
70 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050071
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020072 ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
73 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
74 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
75 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
76 ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
77 ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
78 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
79 ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
80 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
81 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050082
83#if defined (CONFIG_DDR_ECC)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020084 ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN;
85 ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS;
86 ddr->err_sbe = CONFIG_SYS_DDR_SBE;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050087#endif
88 asm("sync;isync");
89
90 udelay(500);
91
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020092 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -050093
94#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
95 d_init = 1;
96 debug("DDR - 1st controller: memory initializing\n");
97 /*
98 * Poll until memory is initialized.
99 * 512 Meg at 400 might hit this 200 times or so.
100 */
101 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) {
102 udelay(1000);
103 }
104 debug("DDR: memory initialized\n\n");
105 asm("sync; isync");
106 udelay(500);
107#endif
108
109 return 512 * 1024 * 1024;
110}
111
112#endif
113
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500114#ifdef CONFIG_PCI
115void pci_init_board(void)
116{
Kumar Galad165dc52010-12-17 06:53:52 -0600117 struct pci_controller *hose;
Kumar Galafd19d1e2009-09-03 10:20:09 -0500118
Kumar Galad165dc52010-12-17 06:53:52 -0600119 fsl_pcie_init_board(0);
Kumar Galafd19d1e2009-09-03 10:20:09 -0500120
Kumar Galad165dc52010-12-17 06:53:52 -0600121 hose = find_hose_by_cfg_addr((void *)(CONFIG_SYS_PCIE3_ADDR));
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500122
Kumar Galad165dc52010-12-17 06:53:52 -0600123 if (hose) {
124 u32 temp32;
125 u8 uli_busno = hose->first_busno + 2;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500126
Kumar Galafd19d1e2009-09-03 10:20:09 -0500127 /*
128 * Activate ULI1575 legacy chip by performing a fake
129 * memory access. Needed to make ULI RTC work.
130 * Device 1d has the first on-board memory BAR.
131 */
Kumar Galad165dc52010-12-17 06:53:52 -0600132 pci_hose_read_config_dword(hose, PCI_BDF(uli_busno, 0x1d, 0),
Kumar Galafd19d1e2009-09-03 10:20:09 -0500133 PCI_BASE_ADDRESS_1, &temp32);
Kumar Galad165dc52010-12-17 06:53:52 -0600134
Kumar Galafd19d1e2009-09-03 10:20:09 -0500135 if (temp32 >= CONFIG_SYS_PCIE3_MEM_BUS) {
Kumar Galad165dc52010-12-17 06:53:52 -0600136 void *p = pci_mem_to_virt(PCI_BDF(uli_busno, 0x1d, 0),
Kumar Galafd19d1e2009-09-03 10:20:09 -0500137 temp32, 4, 0);
138 debug(" uli1572 read to %p\n", p);
139 in_be32(p);
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500140 }
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500141 }
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500142}
143#endif
144
145int board_early_init_r(void)
146{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200147 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
York Sun220c3462014-06-24 21:16:20 -0700148 int flash_esel = find_tlb_idx((void *)flashbase, 1);
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500149
150 /*
151 * Remap Boot flash + PROMJET region to caching-inhibited
152 * so that flash can be erased properly.
153 */
154
Kumar Galaf81f89f2008-09-22 14:11:11 -0500155 /* Flush d-cache and invalidate i-cache of any FLASH data */
Wolfgang Denk82f15f32008-11-02 16:14:22 +0100156 flush_dcache();
157 invalidate_icache();
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500158
York Sun220c3462014-06-24 21:16:20 -0700159 if (flash_esel == -1) {
160 /* very unlikely unless something is messed up */
161 puts("Error: Could not find TLB for FLASH BASE\n");
162 flash_esel = 2; /* give our best effort to continue */
163 } else {
164 /* invalidate existing TLB entry for flash + promjet */
165 disable_tlb(flash_esel);
166 }
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500167
Kumar Gala4be8b572008-12-02 14:19:34 -0600168 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500169 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */
170 0, flash_esel, BOOKE_PAGESZ_256M, 1); /* ts, esel, tsize, iprot */
171
172 return 0;
173}
174
Liu Yuc49bce42008-10-10 11:40:59 +0800175int board_eth_init(bd_t *bis)
176{
Bin Meng28cedb22016-01-11 22:41:14 -0800177#ifdef CONFIG_TSEC_ENET
Andy Fleming422effd2011-04-08 02:10:54 -0500178 struct fsl_pq_mdio_info mdio_info;
Liu Yuc49bce42008-10-10 11:40:59 +0800179 struct tsec_info_struct tsec_info[4];
Liu Yuc49bce42008-10-10 11:40:59 +0800180 int num = 0;
181
182#ifdef CONFIG_TSEC1
183 SET_STD_TSEC_INFO(tsec_info[num], 1);
Kumar Galae6dc4842010-12-16 14:28:06 -0600184 if (is_serdes_configured(SGMII_TSEC1)) {
185 puts("eTSEC1 is in sgmii mode.\n");
Liu Yuc49bce42008-10-10 11:40:59 +0800186 tsec_info[num].flags |= TSEC_SGMII;
Kumar Galae6dc4842010-12-16 14:28:06 -0600187 }
Liu Yuc49bce42008-10-10 11:40:59 +0800188 num++;
189#endif
190#ifdef CONFIG_TSEC2
191 SET_STD_TSEC_INFO(tsec_info[num], 2);
Kumar Galae6dc4842010-12-16 14:28:06 -0600192 if (is_serdes_configured(SGMII_TSEC2)) {
193 puts("eTSEC2 is in sgmii mode.\n");
Liu Yuc49bce42008-10-10 11:40:59 +0800194 tsec_info[num].flags |= TSEC_SGMII;
Kumar Galae6dc4842010-12-16 14:28:06 -0600195 }
Liu Yuc49bce42008-10-10 11:40:59 +0800196 num++;
197#endif
198#ifdef CONFIG_TSEC3
199 SET_STD_TSEC_INFO(tsec_info[num], 3);
Kumar Galae6dc4842010-12-16 14:28:06 -0600200 if (is_serdes_configured(SGMII_TSEC3)) {
201 puts("eTSEC3 is in sgmii mode.\n");
Liu Yuc49bce42008-10-10 11:40:59 +0800202 tsec_info[num].flags |= TSEC_SGMII;
Kumar Galae6dc4842010-12-16 14:28:06 -0600203 }
Liu Yuc49bce42008-10-10 11:40:59 +0800204 num++;
205#endif
206#ifdef CONFIG_TSEC4
207 SET_STD_TSEC_INFO(tsec_info[num], 4);
Kumar Galae6dc4842010-12-16 14:28:06 -0600208 if (is_serdes_configured(SGMII_TSEC4)) {
209 puts("eTSEC4 is in sgmii mode.\n");
Liu Yuc49bce42008-10-10 11:40:59 +0800210 tsec_info[num].flags |= TSEC_SGMII;
Kumar Galae6dc4842010-12-16 14:28:06 -0600211 }
Liu Yuc49bce42008-10-10 11:40:59 +0800212 num++;
213#endif
214
215 if (!num) {
216 printf("No TSECs initialized\n");
217
218 return 0;
219 }
220
Andy Flemingacaccae2008-12-05 20:10:22 -0600221#ifdef CONFIG_FSL_SGMII_RISER
Liu Yuc49bce42008-10-10 11:40:59 +0800222 fsl_sgmii_riser_init(tsec_info, num);
Andy Flemingacaccae2008-12-05 20:10:22 -0600223#endif
Liu Yuc49bce42008-10-10 11:40:59 +0800224
Andy Fleming422effd2011-04-08 02:10:54 -0500225 mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
226 mdio_info.name = DEFAULT_MII_NAME;
227 fsl_pq_mdio_init(bis, &mdio_info);
228
Liu Yuc49bce42008-10-10 11:40:59 +0800229 tsec_eth_init(bis, tsec_info, num);
Bin Meng28cedb22016-01-11 22:41:14 -0800230#endif
Liu Yuc49bce42008-10-10 11:40:59 +0800231
Kumar Galad3b1b662009-08-08 10:42:30 -0500232 return pci_eth_init(bis);
Liu Yuc49bce42008-10-10 11:40:59 +0800233}
Liu Yuc49bce42008-10-10 11:40:59 +0800234
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500235#if defined(CONFIG_OF_BOARD_SETUP)
Simon Glass2aec3cc2014-10-23 18:58:47 -0600236int ft_board_setup(void *blob, bd_t *bd)
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500237{
Kumar Galaf281c5c2009-02-09 22:03:04 -0600238 phys_addr_t base;
239 phys_size_t size;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500240
241 ft_cpu_setup(blob, bd);
242
Simon Glassda1a1342017-08-03 12:22:15 -0600243 base = env_get_bootm_low();
244 size = env_get_bootm_size();
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500245
246 fdt_fixup_memory(blob, (u64)base, (u64)size);
247
Kumar Galad0f27d32010-07-08 22:37:44 -0500248 FT_FSL_PCI_SETUP;
249
Andy Flemingacaccae2008-12-05 20:10:22 -0600250#ifdef CONFIG_FSL_SGMII_RISER
251 fsl_sgmii_riser_fdt_fixup(blob);
252#endif
Simon Glass2aec3cc2014-10-23 18:58:47 -0600253
254 return 0;
Kumar Gala3ab0b2d2008-08-12 11:13:08 -0500255}
256#endif