blob: 582c5b4f35de23baebf7751deacff1fe41c34e8a [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>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090022#include <linux/libfdt.h>
Kumar Galafd83aa82008-07-25 13:31:05 -050023#include <spd_sdram.h>
24#include <fdt_support.h>
Andy Fleming422effd2011-04-08 02:10:54 -050025#include <fsl_mdio.h>
Jason Jin21181fd2008-10-10 11:41:00 +080026#include <tsec.h>
27#include <netdev.h>
Wolfgang Denk51068622009-01-28 09:25:31 +010028#include <sata.h>
Kumar Galafd83aa82008-07-25 13:31:05 -050029
Jason Jin21181fd2008-10-10 11:41:00 +080030#include "../common/sgmii_riser.h"
Kumar Galafd83aa82008-07-25 13:31:05 -050031
Andy Fleming6843a6e2008-10-30 16:51:33 -050032int board_early_init_f (void)
33{
34#ifdef CONFIG_MMC
35 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
36
37 setbits_be32(&gur->pmuxcr,
Xie Xiaobo8f3933e2011-10-03 12:18:39 -070038 (MPC85xx_PMUXCR_SDHC_CD |
Andy Fleming6843a6e2008-10-30 16:51:33 -050039 MPC85xx_PMUXCR_SDHC_WP));
Xie Xiaobo0912b332011-10-03 12:18:40 -070040
41 /* The MPC8536DS board insert the SDHC_WP pin for erratum NMG_eSDHC118,
42 * however, this erratum only applies to MPC8536 Rev1.0.
43 * So set SDHC_WP to active-low when use MPC8536 Rev1.1 and greater.*/
44 if ((((SVR_MAJ(get_svr()) & 0x7) == 0x1) &&
45 (SVR_MIN(get_svr()) >= 0x1))
46 || (SVR_MAJ(get_svr() & 0x7) > 0x1))
47 setbits_be32(&gur->gencfgr, MPC85xx_GENCFGR_SDHC_WP_INV);
Andy Fleming6843a6e2008-10-30 16:51:33 -050048#endif
49 return 0;
50}
51
Kumar Galafd83aa82008-07-25 13:31:05 -050052int checkboard (void)
53{
Kumar Galae21db032009-07-14 22:42:01 -050054 u8 vboot;
55 u8 *pixis_base = (u8 *)PIXIS_BASE;
56
Timur Tabi56953ee2012-03-15 11:42:27 +000057 printf("Board: MPC8536DS Sys ID: 0x%02x, "
Kumar Galae21db032009-07-14 22:42:01 -050058 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
59 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
60 in_8(pixis_base + PIXIS_PVER));
61
62 vboot = in_8(pixis_base + PIXIS_VBOOT);
63 switch ((vboot & PIXIS_VBOOT_LBMAP) >> 5) {
64 case PIXIS_VBOOT_LBMAP_NOR0:
65 puts ("vBank: 0\n");
66 break;
67 case PIXIS_VBOOT_LBMAP_NOR1:
68 puts ("vBank: 1\n");
69 break;
70 case PIXIS_VBOOT_LBMAP_NOR2:
71 puts ("vBank: 2\n");
72 break;
73 case PIXIS_VBOOT_LBMAP_NOR3:
74 puts ("vBank: 3\n");
75 break;
76 case PIXIS_VBOOT_LBMAP_PJET:
77 puts ("Promjet\n");
78 break;
79 case PIXIS_VBOOT_LBMAP_NAND:
80 puts ("NAND\n");
81 break;
82 }
83
Kumar Galafd83aa82008-07-25 13:31:05 -050084 return 0;
85}
86
Kumar Galafd83aa82008-07-25 13:31:05 -050087#if !defined(CONFIG_SPD_EEPROM)
88/*
89 * Fixed sdram init -- doesn't use serial presence detect.
90 */
91
92phys_size_t fixed_sdram (void)
93{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020094 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
York Suna21803d2013-11-18 10:29:32 -080095 struct ccsr_ddr __iomem *ddr = &immap->im_ddr;
Kumar Galafd83aa82008-07-25 13:31:05 -050096 uint d_init;
97
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020098 ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
99 ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
Kumar Galafd83aa82008-07-25 13:31:05 -0500100
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200101 ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
102 ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
103 ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
104 ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
105 ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
106 ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
107 ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
108 ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
109 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
110 ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
Kumar Galafd83aa82008-07-25 13:31:05 -0500111
112#if defined (CONFIG_DDR_ECC)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200113 ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN;
114 ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS;
115 ddr->err_sbe = CONFIG_SYS_DDR_SBE;
Kumar Galafd83aa82008-07-25 13:31:05 -0500116#endif
117 asm("sync;isync");
118
119 udelay(500);
120
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200121 ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
Kumar Galafd83aa82008-07-25 13:31:05 -0500122
123#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
124 d_init = 1;
125 debug("DDR - 1st controller: memory initializing\n");
126 /*
127 * Poll until memory is initialized.
128 * 512 Meg at 400 might hit this 200 times or so.
129 */
130 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) {
131 udelay(1000);
132 }
133 debug("DDR: memory initialized\n\n");
134 asm("sync; isync");
135 udelay(500);
136#endif
137
138 return 512 * 1024 * 1024;
139}
140
141#endif
142
143#ifdef CONFIG_PCI1
144static struct pci_controller pci1_hose;
145#endif
146
Mingkai Hua83eab22009-10-28 10:49:31 +0800147#ifdef CONFIG_PCI
148void pci_init_board(void)
Kumar Galafd83aa82008-07-25 13:31:05 -0500149{
Mingkai Hua83eab22009-10-28 10:49:31 +0800150 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kumar Gala06bea372010-12-17 15:14:54 -0600151 struct fsl_pci_info pci_info;
152 u32 devdisr, pordevsr;
Mingkai Hua83eab22009-10-28 10:49:31 +0800153 u32 porpllsr, pci_agent, pci_speed, pci_32, pci_arb, pci_clk_sel;
Kumar Gala06bea372010-12-17 15:14:54 -0600154 int first_free_busno;
Mingkai Hua83eab22009-10-28 10:49:31 +0800155
Kumar Gala06bea372010-12-17 15:14:54 -0600156 first_free_busno = fsl_pcie_init_board(0);
Kumar Galafd83aa82008-07-25 13:31:05 -0500157
Kumar Gala06bea372010-12-17 15:14:54 -0600158#ifdef CONFIG_PCI1
Mingkai Hua83eab22009-10-28 10:49:31 +0800159 devdisr = in_be32(&gur->devdisr);
160 pordevsr = in_be32(&gur->pordevsr);
161 porpllsr = in_be32(&gur->porpllsr);
Kumar Galafd83aa82008-07-25 13:31:05 -0500162
Mingkai Hua83eab22009-10-28 10:49:31 +0800163 pci_speed = 66666000;
164 pci_32 = 1;
165 pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;
166 pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD;
Kumar Galafd83aa82008-07-25 13:31:05 -0500167
Kumar Galafd83aa82008-07-25 13:31:05 -0500168 if (!(devdisr & MPC85xx_DEVDISR_PCI1)) {
Kumar Gala06bea372010-12-17 15:14:54 -0600169 SET_STD_PCI_INFO(pci_info, 1);
170 set_next_law(pci_info.mem_phys,
171 law_size_bits(pci_info.mem_size), pci_info.law);
172 set_next_law(pci_info.io_phys,
173 law_size_bits(pci_info.io_size), pci_info.law);
174
175 pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs);
Peter Tyser2b91f712010-10-29 17:59:24 -0500176 printf("PCI: %d bit, %s MHz, %s, %s, %s (base address %lx)\n",
Kumar Galafd83aa82008-07-25 13:31:05 -0500177 (pci_32) ? 32 : 64,
178 (pci_speed == 33333000) ? "33" :
179 (pci_speed == 66666000) ? "66" : "unknown",
180 pci_clk_sel ? "sync" : "async",
181 pci_agent ? "agent" : "host",
182 pci_arb ? "arbiter" : "external-arbiter",
Kumar Gala06bea372010-12-17 15:14:54 -0600183 pci_info.regs);
Kumar Galac10a0c42008-10-21 08:28:33 -0500184
Kumar Gala06bea372010-12-17 15:14:54 -0600185 first_free_busno = fsl_pci_init_port(&pci_info,
Mingkai Hua83eab22009-10-28 10:49:31 +0800186 &pci1_hose, first_free_busno);
Kumar Galafd83aa82008-07-25 13:31:05 -0500187 } else {
Peter Tyser2b91f712010-10-29 17:59:24 -0500188 printf("PCI: disabled\n");
Kumar Galafd83aa82008-07-25 13:31:05 -0500189 }
Mingkai Hua83eab22009-10-28 10:49:31 +0800190
191 puts("\n");
Kumar Galafd83aa82008-07-25 13:31:05 -0500192#else
Mingkai Hua83eab22009-10-28 10:49:31 +0800193 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */
Kumar Galafd83aa82008-07-25 13:31:05 -0500194#endif
195}
Mingkai Hua83eab22009-10-28 10:49:31 +0800196#endif
Kumar Galafd83aa82008-07-25 13:31:05 -0500197
Kumar Galafd83aa82008-07-25 13:31:05 -0500198int board_early_init_r(void)
199{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200200 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
York Sun220c3462014-06-24 21:16:20 -0700201 int flash_esel = find_tlb_idx((void *)flashbase, 1);
Kumar Galafd83aa82008-07-25 13:31:05 -0500202
203 /*
204 * Remap Boot flash + PROMJET region to caching-inhibited
205 * so that flash can be erased properly.
206 */
207
Kumar Galaf81f89f2008-09-22 14:11:11 -0500208 /* Flush d-cache and invalidate i-cache of any FLASH data */
Wolfgang Denk82f15f32008-11-02 16:14:22 +0100209 flush_dcache();
210 invalidate_icache();
Kumar Galafd83aa82008-07-25 13:31:05 -0500211
York Sun220c3462014-06-24 21:16:20 -0700212 if (flash_esel == -1) {
213 /* very unlikely unless something is messed up */
214 puts("Error: Could not find TLB for FLASH BASE\n");
215 flash_esel = 1; /* give our best effort to continue */
216 } else {
217 /* invalidate existing TLB entry for flash + promjet */
218 disable_tlb(flash_esel);
219 }
Kumar Galafd83aa82008-07-25 13:31:05 -0500220
Kumar Gala4be8b572008-12-02 14:19:34 -0600221 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */
Kumar Galafd83aa82008-07-25 13:31:05 -0500222 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */
223 0, flash_esel, BOOKE_PAGESZ_256M, 1); /* ts, esel, tsize, iprot */
224
225 return 0;
226}
227
Jason Jin21181fd2008-10-10 11:41:00 +0800228int board_eth_init(bd_t *bis)
229{
230#ifdef CONFIG_TSEC_ENET
Andy Fleming422effd2011-04-08 02:10:54 -0500231 struct fsl_pq_mdio_info mdio_info;
Jason Jin21181fd2008-10-10 11:41:00 +0800232 struct tsec_info_struct tsec_info[2];
Jason Jin21181fd2008-10-10 11:41:00 +0800233 int num = 0;
Jason Jin21181fd2008-10-10 11:41:00 +0800234
235#ifdef CONFIG_TSEC1
236 SET_STD_TSEC_INFO(tsec_info[num], 1);
Kumar Galae6dc4842010-12-16 14:28:06 -0600237 if (is_serdes_configured(SGMII_TSEC1)) {
238 puts("eTSEC1 is in sgmii mode.\n");
Jason Jin21181fd2008-10-10 11:41:00 +0800239 tsec_info[num].phyaddr = 0;
240 tsec_info[num].flags |= TSEC_SGMII;
241 }
242 num++;
243#endif
244#ifdef CONFIG_TSEC3
245 SET_STD_TSEC_INFO(tsec_info[num], 3);
Kumar Galae6dc4842010-12-16 14:28:06 -0600246 if (is_serdes_configured(SGMII_TSEC3)) {
247 puts("eTSEC3 is in sgmii mode.\n");
Jason Jin21181fd2008-10-10 11:41:00 +0800248 tsec_info[num].phyaddr = 1;
249 tsec_info[num].flags |= TSEC_SGMII;
250 }
251 num++;
252#endif
253
254 if (!num) {
255 printf("No TSECs initialized\n");
256 return 0;
257 }
258
Andy Flemingacaccae2008-12-05 20:10:22 -0600259#ifdef CONFIG_FSL_SGMII_RISER
Kumar Galae6dc4842010-12-16 14:28:06 -0600260 if (is_serdes_configured(SGMII_TSEC1) ||
261 is_serdes_configured(SGMII_TSEC3)) {
Jason Jin21181fd2008-10-10 11:41:00 +0800262 fsl_sgmii_riser_init(tsec_info, num);
Kumar Galae6dc4842010-12-16 14:28:06 -0600263 }
Andy Flemingacaccae2008-12-05 20:10:22 -0600264#endif
Jason Jin21181fd2008-10-10 11:41:00 +0800265
Andy Fleming422effd2011-04-08 02:10:54 -0500266 mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
267 mdio_info.name = DEFAULT_MII_NAME;
268 fsl_pq_mdio_init(bis, &mdio_info);
269
Jason Jin21181fd2008-10-10 11:41:00 +0800270 tsec_eth_init(bis, tsec_info, num);
271#endif
272 return pci_eth_init(bis);
273}
274
Kumar Galafd83aa82008-07-25 13:31:05 -0500275#if defined(CONFIG_OF_BOARD_SETUP)
Simon Glass2aec3cc2014-10-23 18:58:47 -0600276int ft_board_setup(void *blob, bd_t *bd)
Kumar Galac10a0c42008-10-21 08:28:33 -0500277{
Kumar Galafd83aa82008-07-25 13:31:05 -0500278 ft_cpu_setup(blob, bd);
279
Kumar Galad0f27d32010-07-08 22:37:44 -0500280 FT_FSL_PCI_SETUP;
281
Andy Flemingacaccae2008-12-05 20:10:22 -0600282#ifdef CONFIG_FSL_SGMII_RISER
283 fsl_sgmii_riser_fdt_fixup(blob);
284#endif
ramneek mehresh3d339632012-04-18 19:39:53 +0000285
286#ifdef CONFIG_HAS_FSL_MPH_USB
Sriram Dash9fd465c2016-09-16 17:12:15 +0530287 fsl_fdt_fixup_dr_usb(blob, bd);
ramneek mehresh3d339632012-04-18 19:39:53 +0000288#endif
289
Simon Glass2aec3cc2014-10-23 18:58:47 -0600290 return 0;
Kumar Galafd83aa82008-07-25 13:31:05 -0500291}
292#endif