blob: 5907a7b4289de242f19ca8a0e120c8017c0878fe [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Galafd83aa82008-07-25 13:31:05 -05002/*
ramneek mehresh3d339632012-04-18 19:39:53 +00003 * Copyright 2008-2012 Freescale Semiconductor, Inc.
Kumar Galafd83aa82008-07-25 13:31:05 -05004 */
5
6#include <common.h>
7#include <command.h>
Simon Glassa7b51302019-11-14 12:57:46 -07008#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -06009#include <log.h>
Simon Glass274e0b02020-05-10 11:39:56 -060010#include <net.h>
Kumar Galafd83aa82008-07-25 13:31:05 -050011#include <pci.h>
12#include <asm/processor.h>
13#include <asm/mmu.h>
Kumar Galaf81f89f2008-09-22 14:11:11 -050014#include <asm/cache.h>
Kumar Galafd83aa82008-07-25 13:31:05 -050015#include <asm/immap_85xx.h>
Kumar Gala9bbd6432009-04-02 13:22:48 -050016#include <asm/fsl_pci.h>
York Sunf0626592013-09-30 09:22:09 -070017#include <fsl_ddr_sdram.h>
Kumar Galafd83aa82008-07-25 13:31:05 -050018#include <asm/io.h>
Kumar Gala0edddd92010-04-20 10:21:12 -050019#include <asm/fsl_serdes.h>
Kumar Galafd83aa82008-07-25 13:31:05 -050020#include <spd.h>
21#include <miiphy.h>
Simon Glassdbd79542020-05-10 11:40:11 -060022#include <linux/delay.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090023#include <linux/libfdt.h>
Kumar Galafd83aa82008-07-25 13:31:05 -050024#include <spd_sdram.h>
25#include <fdt_support.h>
Andy Fleming422effd2011-04-08 02:10:54 -050026#include <fsl_mdio.h>
Jason Jin21181fd2008-10-10 11:41:00 +080027#include <tsec.h>
28#include <netdev.h>
Wolfgang Denk51068622009-01-28 09:25:31 +010029#include <sata.h>
Kumar Galafd83aa82008-07-25 13:31:05 -050030
Jason Jin21181fd2008-10-10 11:41:00 +080031#include "../common/sgmii_riser.h"
Kumar Galafd83aa82008-07-25 13:31:05 -050032
Andy Fleming6843a6e2008-10-30 16:51:33 -050033int board_early_init_f (void)
34{
35#ifdef CONFIG_MMC
36 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
37
38 setbits_be32(&gur->pmuxcr,
Xie Xiaobo8f3933e2011-10-03 12:18:39 -070039 (MPC85xx_PMUXCR_SDHC_CD |
Andy Fleming6843a6e2008-10-30 16:51:33 -050040 MPC85xx_PMUXCR_SDHC_WP));
Xie Xiaobo0912b332011-10-03 12:18:40 -070041
42 /* The MPC8536DS board insert the SDHC_WP pin for erratum NMG_eSDHC118,
43 * however, this erratum only applies to MPC8536 Rev1.0.
44 * So set SDHC_WP to active-low when use MPC8536 Rev1.1 and greater.*/
45 if ((((SVR_MAJ(get_svr()) & 0x7) == 0x1) &&
46 (SVR_MIN(get_svr()) >= 0x1))
47 || (SVR_MAJ(get_svr() & 0x7) > 0x1))
48 setbits_be32(&gur->gencfgr, MPC85xx_GENCFGR_SDHC_WP_INV);
Andy Fleming6843a6e2008-10-30 16:51:33 -050049#endif
50 return 0;
51}
52
Kumar Galafd83aa82008-07-25 13:31:05 -050053int checkboard (void)
54{
Kumar Galae21db032009-07-14 22:42:01 -050055 u8 vboot;
56 u8 *pixis_base = (u8 *)PIXIS_BASE;
57
Timur Tabi56953ee2012-03-15 11:42:27 +000058 printf("Board: MPC8536DS Sys ID: 0x%02x, "
Kumar Galae21db032009-07-14 22:42:01 -050059 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
60 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
61 in_8(pixis_base + PIXIS_PVER));
62
63 vboot = in_8(pixis_base + PIXIS_VBOOT);
64 switch ((vboot & PIXIS_VBOOT_LBMAP) >> 5) {
65 case PIXIS_VBOOT_LBMAP_NOR0:
66 puts ("vBank: 0\n");
67 break;
68 case PIXIS_VBOOT_LBMAP_NOR1:
69 puts ("vBank: 1\n");
70 break;
71 case PIXIS_VBOOT_LBMAP_NOR2:
72 puts ("vBank: 2\n");
73 break;
74 case PIXIS_VBOOT_LBMAP_NOR3:
75 puts ("vBank: 3\n");
76 break;
77 case PIXIS_VBOOT_LBMAP_PJET:
78 puts ("Promjet\n");
79 break;
80 case PIXIS_VBOOT_LBMAP_NAND:
81 puts ("NAND\n");
82 break;
83 }
84
Kumar Galafd83aa82008-07-25 13:31:05 -050085 return 0;
86}
87
Kumar Galafd83aa82008-07-25 13:31:05 -050088#if !defined(CONFIG_SPD_EEPROM)
89/*
90 * Fixed sdram init -- doesn't use serial presence detect.
91 */
92
93phys_size_t fixed_sdram (void)
94{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020095 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
York Suna21803d2013-11-18 10:29:32 -080096 struct ccsr_ddr __iomem *ddr = &immap->im_ddr;
Kumar Galafd83aa82008-07-25 13:31:05 -050097 uint d_init;
98
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020099 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
100 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
Kumar Galafd83aa82008-07-25 13:31:05 -0500101
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200102 ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
103 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
104 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
105 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
106 ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
107 ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
108 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
109 ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
110 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
111 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
Kumar Galafd83aa82008-07-25 13:31:05 -0500112
113#if defined (CONFIG_DDR_ECC)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200114 ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN;
115 ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS;
116 ddr->err_sbe = CONFIG_SYS_DDR_SBE;
Kumar Galafd83aa82008-07-25 13:31:05 -0500117#endif
118 asm("sync;isync");
119
120 udelay(500);
121
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200122 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
Kumar Galafd83aa82008-07-25 13:31:05 -0500123
124#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
125 d_init = 1;
126 debug("DDR - 1st controller: memory initializing\n");
127 /*
128 * Poll until memory is initialized.
129 * 512 Meg at 400 might hit this 200 times or so.
130 */
131 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) {
132 udelay(1000);
133 }
134 debug("DDR: memory initialized\n\n");
135 asm("sync; isync");
136 udelay(500);
137#endif
138
139 return 512 * 1024 * 1024;
140}
141
142#endif
143
144#ifdef CONFIG_PCI1
145static struct pci_controller pci1_hose;
146#endif
147
Mingkai Hua83eab22009-10-28 10:49:31 +0800148#ifdef CONFIG_PCI
149void pci_init_board(void)
Kumar Galafd83aa82008-07-25 13:31:05 -0500150{
Mingkai Hua83eab22009-10-28 10:49:31 +0800151 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kumar Gala06bea372010-12-17 15:14:54 -0600152 struct fsl_pci_info pci_info;
153 u32 devdisr, pordevsr;
Mingkai Hua83eab22009-10-28 10:49:31 +0800154 u32 porpllsr, pci_agent, pci_speed, pci_32, pci_arb, pci_clk_sel;
Kumar Gala06bea372010-12-17 15:14:54 -0600155 int first_free_busno;
Mingkai Hua83eab22009-10-28 10:49:31 +0800156
Kumar Gala06bea372010-12-17 15:14:54 -0600157 first_free_busno = fsl_pcie_init_board(0);
Kumar Galafd83aa82008-07-25 13:31:05 -0500158
Kumar Gala06bea372010-12-17 15:14:54 -0600159#ifdef CONFIG_PCI1
Mingkai Hua83eab22009-10-28 10:49:31 +0800160 devdisr = in_be32(&gur->devdisr);
161 pordevsr = in_be32(&gur->pordevsr);
162 porpllsr = in_be32(&gur->porpllsr);
Kumar Galafd83aa82008-07-25 13:31:05 -0500163
Mingkai Hua83eab22009-10-28 10:49:31 +0800164 pci_speed = 66666000;
165 pci_32 = 1;
166 pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;
167 pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD;
Kumar Galafd83aa82008-07-25 13:31:05 -0500168
Kumar Galafd83aa82008-07-25 13:31:05 -0500169 if (!(devdisr & MPC85xx_DEVDISR_PCI1)) {
Kumar Gala06bea372010-12-17 15:14:54 -0600170 SET_STD_PCI_INFO(pci_info, 1);
171 set_next_law(pci_info.mem_phys,
172 law_size_bits(pci_info.mem_size), pci_info.law);
173 set_next_law(pci_info.io_phys,
174 law_size_bits(pci_info.io_size), pci_info.law);
175
176 pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs);
Peter Tyser2b91f712010-10-29 17:59:24 -0500177 printf("PCI: %d bit, %s MHz, %s, %s, %s (base address %lx)\n",
Kumar Galafd83aa82008-07-25 13:31:05 -0500178 (pci_32) ? 32 : 64,
179 (pci_speed == 33333000) ? "33" :
180 (pci_speed == 66666000) ? "66" : "unknown",
181 pci_clk_sel ? "sync" : "async",
182 pci_agent ? "agent" : "host",
183 pci_arb ? "arbiter" : "external-arbiter",
Kumar Gala06bea372010-12-17 15:14:54 -0600184 pci_info.regs);
Kumar Galac10a0c42008-10-21 08:28:33 -0500185
Kumar Gala06bea372010-12-17 15:14:54 -0600186 first_free_busno = fsl_pci_init_port(&pci_info,
Mingkai Hua83eab22009-10-28 10:49:31 +0800187 &pci1_hose, first_free_busno);
Kumar Galafd83aa82008-07-25 13:31:05 -0500188 } else {
Peter Tyser2b91f712010-10-29 17:59:24 -0500189 printf("PCI: disabled\n");
Kumar Galafd83aa82008-07-25 13:31:05 -0500190 }
Mingkai Hua83eab22009-10-28 10:49:31 +0800191
192 puts("\n");
Kumar Galafd83aa82008-07-25 13:31:05 -0500193#else
Mingkai Hua83eab22009-10-28 10:49:31 +0800194 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */
Kumar Galafd83aa82008-07-25 13:31:05 -0500195#endif
196}
Mingkai Hua83eab22009-10-28 10:49:31 +0800197#endif
Kumar Galafd83aa82008-07-25 13:31:05 -0500198
Kumar Galafd83aa82008-07-25 13:31:05 -0500199int board_early_init_r(void)
200{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200201 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
York Sun220c3462014-06-24 21:16:20 -0700202 int flash_esel = find_tlb_idx((void *)flashbase, 1);
Kumar Galafd83aa82008-07-25 13:31:05 -0500203
204 /*
205 * Remap Boot flash + PROMJET region to caching-inhibited
206 * so that flash can be erased properly.
207 */
208
Kumar Galaf81f89f2008-09-22 14:11:11 -0500209 /* Flush d-cache and invalidate i-cache of any FLASH data */
Wolfgang Denk82f15f32008-11-02 16:14:22 +0100210 flush_dcache();
211 invalidate_icache();
Kumar Galafd83aa82008-07-25 13:31:05 -0500212
York Sun220c3462014-06-24 21:16:20 -0700213 if (flash_esel == -1) {
214 /* very unlikely unless something is messed up */
215 puts("Error: Could not find TLB for FLASH BASE\n");
216 flash_esel = 1; /* give our best effort to continue */
217 } else {
218 /* invalidate existing TLB entry for flash + promjet */
219 disable_tlb(flash_esel);
220 }
Kumar Galafd83aa82008-07-25 13:31:05 -0500221
Kumar Gala4be8b572008-12-02 14:19:34 -0600222 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */
Kumar Galafd83aa82008-07-25 13:31:05 -0500223 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */
224 0, flash_esel, BOOKE_PAGESZ_256M, 1); /* ts, esel, tsize, iprot */
225
226 return 0;
227}
228
Jason Jin21181fd2008-10-10 11:41:00 +0800229int board_eth_init(bd_t *bis)
230{
231#ifdef CONFIG_TSEC_ENET
Andy Fleming422effd2011-04-08 02:10:54 -0500232 struct fsl_pq_mdio_info mdio_info;
Jason Jin21181fd2008-10-10 11:41:00 +0800233 struct tsec_info_struct tsec_info[2];
Jason Jin21181fd2008-10-10 11:41:00 +0800234 int num = 0;
Jason Jin21181fd2008-10-10 11:41:00 +0800235
236#ifdef CONFIG_TSEC1
237 SET_STD_TSEC_INFO(tsec_info[num], 1);
Kumar Galae6dc4842010-12-16 14:28:06 -0600238 if (is_serdes_configured(SGMII_TSEC1)) {
239 puts("eTSEC1 is in sgmii mode.\n");
Jason Jin21181fd2008-10-10 11:41:00 +0800240 tsec_info[num].phyaddr = 0;
241 tsec_info[num].flags |= TSEC_SGMII;
242 }
243 num++;
244#endif
245#ifdef CONFIG_TSEC3
246 SET_STD_TSEC_INFO(tsec_info[num], 3);
Kumar Galae6dc4842010-12-16 14:28:06 -0600247 if (is_serdes_configured(SGMII_TSEC3)) {
248 puts("eTSEC3 is in sgmii mode.\n");
Jason Jin21181fd2008-10-10 11:41:00 +0800249 tsec_info[num].phyaddr = 1;
250 tsec_info[num].flags |= TSEC_SGMII;
251 }
252 num++;
253#endif
254
255 if (!num) {
256 printf("No TSECs initialized\n");
257 return 0;
258 }
259
Andy Flemingacaccae2008-12-05 20:10:22 -0600260#ifdef CONFIG_FSL_SGMII_RISER
Kumar Galae6dc4842010-12-16 14:28:06 -0600261 if (is_serdes_configured(SGMII_TSEC1) ||
262 is_serdes_configured(SGMII_TSEC3)) {
Jason Jin21181fd2008-10-10 11:41:00 +0800263 fsl_sgmii_riser_init(tsec_info, num);
Kumar Galae6dc4842010-12-16 14:28:06 -0600264 }
Andy Flemingacaccae2008-12-05 20:10:22 -0600265#endif
Jason Jin21181fd2008-10-10 11:41:00 +0800266
Andy Fleming422effd2011-04-08 02:10:54 -0500267 mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
268 mdio_info.name = DEFAULT_MII_NAME;
269 fsl_pq_mdio_init(bis, &mdio_info);
270
Jason Jin21181fd2008-10-10 11:41:00 +0800271 tsec_eth_init(bis, tsec_info, num);
272#endif
273 return pci_eth_init(bis);
274}
275
Kumar Galafd83aa82008-07-25 13:31:05 -0500276#if defined(CONFIG_OF_BOARD_SETUP)
Simon Glass2aec3cc2014-10-23 18:58:47 -0600277int ft_board_setup(void *blob, bd_t *bd)
Kumar Galac10a0c42008-10-21 08:28:33 -0500278{
Kumar Galafd83aa82008-07-25 13:31:05 -0500279 ft_cpu_setup(blob, bd);
280
Kumar Galad0f27d32010-07-08 22:37:44 -0500281 FT_FSL_PCI_SETUP;
282
Andy Flemingacaccae2008-12-05 20:10:22 -0600283#ifdef CONFIG_FSL_SGMII_RISER
284 fsl_sgmii_riser_fdt_fixup(blob);
285#endif
ramneek mehresh3d339632012-04-18 19:39:53 +0000286
287#ifdef CONFIG_HAS_FSL_MPH_USB
Sriram Dash9fd465c2016-09-16 17:12:15 +0530288 fsl_fdt_fixup_dr_usb(blob, bd);
ramneek mehresh3d339632012-04-18 19:39:53 +0000289#endif
290
Simon Glass2aec3cc2014-10-23 18:58:47 -0600291 return 0;
Kumar Galafd83aa82008-07-25 13:31:05 -0500292}
293#endif