blob: 6abeeba43b5b25f2f659452bfd8c17ad3be76610 [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>
8#include <pci.h>
9#include <asm/processor.h>
10#include <asm/mmu.h>
Kumar Gala7c0d4a72008-09-22 14:11:11 -050011#include <asm/cache.h>
Kumar Gala129ba612008-08-12 11:13:08 -050012#include <asm/immap_85xx.h>
Kumar Galac8514622009-04-02 13:22:48 -050013#include <asm/fsl_pci.h>
York Sun5614e712013-09-30 09:22:09 -070014#include <fsl_ddr_sdram.h>
Kumar Gala129ba612008-08-12 11:13:08 -050015#include <asm/io.h>
Kumar Gala5d27e022010-12-15 04:55:20 -060016#include <asm/fsl_serdes.h>
Kumar Gala129ba612008-08-12 11:13:08 -050017#include <miiphy.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090018#include <linux/libfdt.h>
Kumar Gala129ba612008-08-12 11:13:08 -050019#include <fdt_support.h>
Liu Yu7e183ca2008-10-10 11:40:59 +080020#include <tsec.h>
Andy Fleming063c1262011-04-08 02:10:54 -050021#include <fsl_mdio.h>
Kumar Galab560ab82009-08-08 10:42:30 -050022#include <netdev.h>
Kumar Gala129ba612008-08-12 11:13:08 -050023
Liu Yu7e183ca2008-10-10 11:40:59 +080024#include "../common/sgmii_riser.h"
Kumar Gala129ba612008-08-12 11:13:08 -050025
Kumar Gala129ba612008-08-12 11:13:08 -050026int checkboard (void)
27{
Kumar Gala6bb5b412009-07-14 22:42:01 -050028 u8 vboot;
29 u8 *pixis_base = (u8 *)PIXIS_BASE;
30
Timur Tabi5d065c32012-03-15 11:42:27 +000031 printf("Board: MPC8572DS Sys ID: 0x%02x, "
Kumar Gala6bb5b412009-07-14 22:42:01 -050032 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
33 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
34 in_8(pixis_base + PIXIS_PVER));
35
36 vboot = in_8(pixis_base + PIXIS_VBOOT);
37 switch ((vboot & PIXIS_VBOOT_LBMAP) >> 6) {
38 case PIXIS_VBOOT_LBMAP_NOR0:
39 puts ("vBank: 0\n");
40 break;
41 case PIXIS_VBOOT_LBMAP_PJET:
42 puts ("Promjet\n");
43 break;
44 case PIXIS_VBOOT_LBMAP_NAND:
45 puts ("NAND\n");
46 break;
47 case PIXIS_VBOOT_LBMAP_NOR1:
48 puts ("vBank: 1\n");
49 break;
50 }
51
Kumar Gala129ba612008-08-12 11:13:08 -050052 return 0;
53}
54
Kumar Gala129ba612008-08-12 11:13:08 -050055
56#if !defined(CONFIG_SPD_EEPROM)
57/*
58 * Fixed sdram init -- doesn't use serial presence detect.
59 */
60
61phys_size_t fixed_sdram (void)
62{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020063 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
York Sun9a17eb52013-11-18 10:29:32 -080064 struct ccsr_ddr __iomem *ddr = &immap->im_ddr;
Kumar Gala129ba612008-08-12 11:13:08 -050065 uint d_init;
66
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020067 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
68 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
Kumar Gala129ba612008-08-12 11:13:08 -050069
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020070 ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
71 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
72 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
73 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
74 ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
75 ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
76 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
77 ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
78 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
79 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
Kumar Gala129ba612008-08-12 11:13:08 -050080
81#if defined (CONFIG_DDR_ECC)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020082 ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN;
83 ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS;
84 ddr->err_sbe = CONFIG_SYS_DDR_SBE;
Kumar Gala129ba612008-08-12 11:13:08 -050085#endif
86 asm("sync;isync");
87
88 udelay(500);
89
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020090 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
Kumar Gala129ba612008-08-12 11:13:08 -050091
92#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
93 d_init = 1;
94 debug("DDR - 1st controller: memory initializing\n");
95 /*
96 * Poll until memory is initialized.
97 * 512 Meg at 400 might hit this 200 times or so.
98 */
99 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) {
100 udelay(1000);
101 }
102 debug("DDR: memory initialized\n\n");
103 asm("sync; isync");
104 udelay(500);
105#endif
106
107 return 512 * 1024 * 1024;
108}
109
110#endif
111
Kumar Gala129ba612008-08-12 11:13:08 -0500112#ifdef CONFIG_PCI
113void pci_init_board(void)
114{
Kumar Gala18ea5552010-12-17 06:53:52 -0600115 struct pci_controller *hose;
Kumar Galaf61dae72009-09-03 10:20:09 -0500116
Kumar Gala18ea5552010-12-17 06:53:52 -0600117 fsl_pcie_init_board(0);
Kumar Galaf61dae72009-09-03 10:20:09 -0500118
Kumar Gala18ea5552010-12-17 06:53:52 -0600119 hose = find_hose_by_cfg_addr((void *)(CONFIG_SYS_PCIE3_ADDR));
Kumar Gala129ba612008-08-12 11:13:08 -0500120
Kumar Gala18ea5552010-12-17 06:53:52 -0600121 if (hose) {
122 u32 temp32;
123 u8 uli_busno = hose->first_busno + 2;
Kumar Gala129ba612008-08-12 11:13:08 -0500124
Kumar Galaf61dae72009-09-03 10:20:09 -0500125 /*
126 * Activate ULI1575 legacy chip by performing a fake
127 * memory access. Needed to make ULI RTC work.
128 * Device 1d has the first on-board memory BAR.
129 */
Kumar Gala18ea5552010-12-17 06:53:52 -0600130 pci_hose_read_config_dword(hose, PCI_BDF(uli_busno, 0x1d, 0),
Kumar Galaf61dae72009-09-03 10:20:09 -0500131 PCI_BASE_ADDRESS_1, &temp32);
Kumar Gala18ea5552010-12-17 06:53:52 -0600132
Kumar Galaf61dae72009-09-03 10:20:09 -0500133 if (temp32 >= CONFIG_SYS_PCIE3_MEM_BUS) {
Kumar Gala18ea5552010-12-17 06:53:52 -0600134 void *p = pci_mem_to_virt(PCI_BDF(uli_busno, 0x1d, 0),
Kumar Galaf61dae72009-09-03 10:20:09 -0500135 temp32, 4, 0);
136 debug(" uli1572 read to %p\n", p);
137 in_be32(p);
Kumar Gala129ba612008-08-12 11:13:08 -0500138 }
Kumar Gala129ba612008-08-12 11:13:08 -0500139 }
Kumar Gala129ba612008-08-12 11:13:08 -0500140}
141#endif
142
143int board_early_init_r(void)
144{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200145 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
York Sun9d045682014-06-24 21:16:20 -0700146 int flash_esel = find_tlb_idx((void *)flashbase, 1);
Kumar Gala129ba612008-08-12 11:13:08 -0500147
148 /*
149 * Remap Boot flash + PROMJET region to caching-inhibited
150 * so that flash can be erased properly.
151 */
152
Kumar Gala7c0d4a72008-09-22 14:11:11 -0500153 /* Flush d-cache and invalidate i-cache of any FLASH data */
Wolfgang Denk3cbd8232008-11-02 16:14:22 +0100154 flush_dcache();
155 invalidate_icache();
Kumar Gala129ba612008-08-12 11:13:08 -0500156
York Sun9d045682014-06-24 21:16:20 -0700157 if (flash_esel == -1) {
158 /* very unlikely unless something is messed up */
159 puts("Error: Could not find TLB for FLASH BASE\n");
160 flash_esel = 2; /* give our best effort to continue */
161 } else {
162 /* invalidate existing TLB entry for flash + promjet */
163 disable_tlb(flash_esel);
164 }
Kumar Gala129ba612008-08-12 11:13:08 -0500165
Kumar Galac953ddf2008-12-02 14:19:34 -0600166 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */
Kumar Gala129ba612008-08-12 11:13:08 -0500167 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */
168 0, flash_esel, BOOKE_PAGESZ_256M, 1); /* ts, esel, tsize, iprot */
169
170 return 0;
171}
172
Liu Yu7e183ca2008-10-10 11:40:59 +0800173int board_eth_init(bd_t *bis)
174{
Bin Meng4521ae92016-01-11 22:41:14 -0800175#ifdef CONFIG_TSEC_ENET
Andy Fleming063c1262011-04-08 02:10:54 -0500176 struct fsl_pq_mdio_info mdio_info;
Liu Yu7e183ca2008-10-10 11:40:59 +0800177 struct tsec_info_struct tsec_info[4];
Liu Yu7e183ca2008-10-10 11:40:59 +0800178 int num = 0;
179
180#ifdef CONFIG_TSEC1
181 SET_STD_TSEC_INFO(tsec_info[num], 1);
Kumar Gala058d7dc2010-12-16 14:28:06 -0600182 if (is_serdes_configured(SGMII_TSEC1)) {
183 puts("eTSEC1 is in sgmii mode.\n");
Liu Yu7e183ca2008-10-10 11:40:59 +0800184 tsec_info[num].flags |= TSEC_SGMII;
Kumar Gala058d7dc2010-12-16 14:28:06 -0600185 }
Liu Yu7e183ca2008-10-10 11:40:59 +0800186 num++;
187#endif
188#ifdef CONFIG_TSEC2
189 SET_STD_TSEC_INFO(tsec_info[num], 2);
Kumar Gala058d7dc2010-12-16 14:28:06 -0600190 if (is_serdes_configured(SGMII_TSEC2)) {
191 puts("eTSEC2 is in sgmii mode.\n");
Liu Yu7e183ca2008-10-10 11:40:59 +0800192 tsec_info[num].flags |= TSEC_SGMII;
Kumar Gala058d7dc2010-12-16 14:28:06 -0600193 }
Liu Yu7e183ca2008-10-10 11:40:59 +0800194 num++;
195#endif
196#ifdef CONFIG_TSEC3
197 SET_STD_TSEC_INFO(tsec_info[num], 3);
Kumar Gala058d7dc2010-12-16 14:28:06 -0600198 if (is_serdes_configured(SGMII_TSEC3)) {
199 puts("eTSEC3 is in sgmii mode.\n");
Liu Yu7e183ca2008-10-10 11:40:59 +0800200 tsec_info[num].flags |= TSEC_SGMII;
Kumar Gala058d7dc2010-12-16 14:28:06 -0600201 }
Liu Yu7e183ca2008-10-10 11:40:59 +0800202 num++;
203#endif
204#ifdef CONFIG_TSEC4
205 SET_STD_TSEC_INFO(tsec_info[num], 4);
Kumar Gala058d7dc2010-12-16 14:28:06 -0600206 if (is_serdes_configured(SGMII_TSEC4)) {
207 puts("eTSEC4 is in sgmii mode.\n");
Liu Yu7e183ca2008-10-10 11:40:59 +0800208 tsec_info[num].flags |= TSEC_SGMII;
Kumar Gala058d7dc2010-12-16 14:28:06 -0600209 }
Liu Yu7e183ca2008-10-10 11:40:59 +0800210 num++;
211#endif
212
213 if (!num) {
214 printf("No TSECs initialized\n");
215
216 return 0;
217 }
218
Andy Flemingfeede8b2008-12-05 20:10:22 -0600219#ifdef CONFIG_FSL_SGMII_RISER
Liu Yu7e183ca2008-10-10 11:40:59 +0800220 fsl_sgmii_riser_init(tsec_info, num);
Andy Flemingfeede8b2008-12-05 20:10:22 -0600221#endif
Liu Yu7e183ca2008-10-10 11:40:59 +0800222
Andy Fleming063c1262011-04-08 02:10:54 -0500223 mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
224 mdio_info.name = DEFAULT_MII_NAME;
225 fsl_pq_mdio_init(bis, &mdio_info);
226
Liu Yu7e183ca2008-10-10 11:40:59 +0800227 tsec_eth_init(bis, tsec_info, num);
Bin Meng4521ae92016-01-11 22:41:14 -0800228#endif
Liu Yu7e183ca2008-10-10 11:40:59 +0800229
Kumar Galab560ab82009-08-08 10:42:30 -0500230 return pci_eth_init(bis);
Liu Yu7e183ca2008-10-10 11:40:59 +0800231}
Liu Yu7e183ca2008-10-10 11:40:59 +0800232
Kumar Gala129ba612008-08-12 11:13:08 -0500233#if defined(CONFIG_OF_BOARD_SETUP)
Simon Glasse895a4b2014-10-23 18:58:47 -0600234int ft_board_setup(void *blob, bd_t *bd)
Kumar Gala129ba612008-08-12 11:13:08 -0500235{
Kumar Galab6730512009-02-09 22:03:04 -0600236 phys_addr_t base;
237 phys_size_t size;
Kumar Gala129ba612008-08-12 11:13:08 -0500238
239 ft_cpu_setup(blob, bd);
240
Simon Glass723806c2017-08-03 12:22:15 -0600241 base = env_get_bootm_low();
242 size = env_get_bootm_size();
Kumar Gala129ba612008-08-12 11:13:08 -0500243
244 fdt_fixup_memory(blob, (u64)base, (u64)size);
245
Kumar Gala6525d512010-07-08 22:37:44 -0500246 FT_FSL_PCI_SETUP;
247
Andy Flemingfeede8b2008-12-05 20:10:22 -0600248#ifdef CONFIG_FSL_SGMII_RISER
249 fsl_sgmii_riser_fdt_fixup(blob);
250#endif
Simon Glasse895a4b2014-10-23 18:58:47 -0600251
252 return 0;
Kumar Gala129ba612008-08-12 11:13:08 -0500253}
254#endif