blob: 4ad62bcf1d6b5384fe72b8e816ec0f3e1e175b7c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kim Phillips5e918a92008-01-16 00:38:05 -06002/*
3 * Copyright (C) 2007 Freescale Semiconductor, Inc.
4 * Kevin Lam <kevin.lam@freescale.com>
5 * Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
Kim Phillips5e918a92008-01-16 00:38:05 -06006 */
7
8#include <common.h>
Simon Glass3a7d5572019-08-01 09:46:42 -06009#include <env.h>
Anton Vorontsovc9646ed2009-06-10 00:25:30 +040010#include <hwconfig.h>
Kim Phillips5e918a92008-01-16 00:38:05 -060011#include <i2c.h>
Kim Phillips5e918a92008-01-16 00:38:05 -060012#include <asm/io.h>
Kumar Gala7e1afb62010-04-20 10:02:24 -050013#include <asm/fsl_mpc83xx_serdes.h>
Jean-Christophe PLAGNIOL-VILLARD1ac4f322008-04-02 13:41:21 +020014#include <fdt_support.h>
Kim Phillips5e918a92008-01-16 00:38:05 -060015#include <spd_sdram.h>
Timur Tabi89c77842008-02-08 13:15:55 -060016#include <vsc7385.h>
Anton Vorontsovc9646ed2009-06-10 00:25:30 +040017#include <fsl_esdhc.h>
Timur Tabi89c77842008-02-08 13:15:55 -060018
Simon Glass088454c2017-03-31 08:40:25 -060019DECLARE_GLOBAL_DATA_PTR;
20
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020021#if defined(CONFIG_SYS_DRAM_TEST)
Kim Phillips5e918a92008-01-16 00:38:05 -060022int
23testdram(void)
24{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020025 uint *pstart = (uint *) CONFIG_SYS_MEMTEST_START;
26 uint *pend = (uint *) CONFIG_SYS_MEMTEST_END;
Kim Phillips5e918a92008-01-16 00:38:05 -060027 uint *p;
28
29 printf("Testing DRAM from 0x%08x to 0x%08x\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020030 CONFIG_SYS_MEMTEST_START,
31 CONFIG_SYS_MEMTEST_END);
Kim Phillips5e918a92008-01-16 00:38:05 -060032
33 printf("DRAM test phase 1:\n");
34 for (p = pstart; p < pend; p++)
35 *p = 0xaaaaaaaa;
36
37 for (p = pstart; p < pend; p++) {
38 if (*p != 0xaaaaaaaa) {
39 printf("DRAM test fails at: %08x\n", (uint) p);
40 return 1;
41 }
42 }
43
44 printf("DRAM test phase 2:\n");
45 for (p = pstart; p < pend; p++)
46 *p = 0x55555555;
47
48 for (p = pstart; p < pend; p++) {
49 if (*p != 0x55555555) {
50 printf("DRAM test fails at: %08x\n", (uint) p);
51 return 1;
52 }
53 }
54
55 printf("DRAM test passed.\n");
56 return 0;
57}
58#endif
59
Peter Tyser9adda542009-06-30 17:15:50 -050060#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
Kim Phillips5e918a92008-01-16 00:38:05 -060061void ddr_enable_ecc(unsigned int dram_size);
62#endif
63int fixed_sdram(void);
64
Simon Glassf1683aa2017-04-06 12:47:05 -060065int dram_init(void)
Kim Phillips5e918a92008-01-16 00:38:05 -060066{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020067 immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Kim Phillips5e918a92008-01-16 00:38:05 -060068 u32 msize = 0;
69
70 if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32) im)
Simon Glass088454c2017-03-31 08:40:25 -060071 return -ENXIO;
Kim Phillips5e918a92008-01-16 00:38:05 -060072
73#if defined(CONFIG_SPD_EEPROM)
74 msize = spd_sdram();
75#else
76 msize = fixed_sdram();
77#endif
78
Peter Tyser9adda542009-06-30 17:15:50 -050079#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
Kim Phillips5e918a92008-01-16 00:38:05 -060080 /* Initialize DDR ECC byte */
81 ddr_enable_ecc(msize * 1024 * 1024);
82#endif
83 /* return total bus DDR size(bytes) */
Simon Glass088454c2017-03-31 08:40:25 -060084 gd->ram_size = msize * 1024 * 1024;
85
86 return 0;
Kim Phillips5e918a92008-01-16 00:38:05 -060087}
88
89#if !defined(CONFIG_SPD_EEPROM)
90/*************************************************************************
91 * fixed sdram init -- doesn't use serial presence detect.
92 ************************************************************************/
93int fixed_sdram(void)
94{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020095 immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
96 u32 msize = CONFIG_SYS_DDR_SIZE * 1024 * 1024;
Kim Phillips5e918a92008-01-16 00:38:05 -060097 u32 msize_log2 = __ilog2(msize);
98
Mario Six133ec602019-01-21 09:18:16 +010099 im->sysconf.ddrlaw[0].bar = CONFIG_SYS_SDRAM_BASE & 0xfffff000;
Kim Phillips5e918a92008-01-16 00:38:05 -0600100 im->sysconf.ddrlaw[0].ar = LBLAWAR_EN | (msize_log2 - 1);
101
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200102 im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE;
Kim Phillips5e918a92008-01-16 00:38:05 -0600103 udelay(50000);
104
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200105 im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_SDRAM_CLK_CNTL;
Kim Phillips5e918a92008-01-16 00:38:05 -0600106 udelay(1000);
107
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200108 im->ddr.csbnds[0].csbnds = CONFIG_SYS_DDR_CS0_BNDS;
109 im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG;
Kim Phillips5e918a92008-01-16 00:38:05 -0600110 udelay(1000);
111
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200112 im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
113 im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
114 im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
115 im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
116 im->ddr.sdram_cfg = CONFIG_SYS_DDR_SDRAM_CFG;
117 im->ddr.sdram_cfg2 = CONFIG_SYS_DDR_SDRAM_CFG2;
118 im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE;
119 im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE2;
120 im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL;
Kim Phillips5e918a92008-01-16 00:38:05 -0600121 sync();
122 udelay(1000);
123
124 im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
125 udelay(2000);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200126 return CONFIG_SYS_DDR_SIZE;
Kim Phillips5e918a92008-01-16 00:38:05 -0600127}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200128#endif /*!CONFIG_SYS_SPD_EEPROM */
Kim Phillips5e918a92008-01-16 00:38:05 -0600129
130int checkboard(void)
131{
132 puts("Board: Freescale MPC837xERDB\n");
133 return 0;
134}
135
Anton Vorontsov2bd74602008-03-24 17:40:43 +0300136int board_early_init_f(void)
137{
138#ifdef CONFIG_FSL_SERDES
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200139 immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
Anton Vorontsov2bd74602008-03-24 17:40:43 +0300140 u32 spridr = in_be32(&immr->sysconf.spridr);
141
142 /* we check only part num, and don't look for CPU revisions */
Kim Phillipse5c4ade2008-03-28 10:19:07 -0500143 switch (PARTID_NO_E(spridr)) {
144 case SPR_8377:
Anton Vorontsov2bd74602008-03-24 17:40:43 +0300145 fsl_setup_serdes(CONFIG_FSL_SERDES1, FSL_SERDES_PROTO_SATA,
146 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
147 fsl_setup_serdes(CONFIG_FSL_SERDES2, FSL_SERDES_PROTO_PEX,
148 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
149 break;
Kim Phillipse5c4ade2008-03-28 10:19:07 -0500150 case SPR_8378:
Anton Vorontsov55c53192008-10-02 18:31:53 +0400151 fsl_setup_serdes(CONFIG_FSL_SERDES2, FSL_SERDES_PROTO_PEX,
Kim Phillipse5c4ade2008-03-28 10:19:07 -0500152 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
153 break;
154 case SPR_8379:
155 fsl_setup_serdes(CONFIG_FSL_SERDES1, FSL_SERDES_PROTO_SATA,
156 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
157 fsl_setup_serdes(CONFIG_FSL_SERDES2, FSL_SERDES_PROTO_SATA,
158 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
159 break;
Anton Vorontsov2bd74602008-03-24 17:40:43 +0300160 default:
161 printf("serdes not configured: unknown CPU part number: "
162 "%04x\n", spridr >> 16);
163 break;
164 }
165#endif /* CONFIG_FSL_SERDES */
166 return 0;
167}
168
Anton Vorontsovc9646ed2009-06-10 00:25:30 +0400169#ifdef CONFIG_FSL_ESDHC
170int board_mmc_init(bd_t *bd)
171{
172 struct immap __iomem *im = (struct immap __iomem *)CONFIG_SYS_IMMR;
Sinan Akman19e51182015-01-20 20:47:01 -0500173 char buffer[HWCONFIG_BUFFER_SIZE] = {0};
174 int esdhc_hwconfig_enabled = 0;
Anton Vorontsovc9646ed2009-06-10 00:25:30 +0400175
Simon Glass00caae62017-08-03 12:22:12 -0600176 if (env_get_f("hwconfig", buffer, sizeof(buffer)) > 0)
Sinan Akman19e51182015-01-20 20:47:01 -0500177 esdhc_hwconfig_enabled = hwconfig_f("esdhc", buffer);
178
179 if (esdhc_hwconfig_enabled == 0)
Anton Vorontsovc9646ed2009-06-10 00:25:30 +0400180 return 0;
181
182 clrsetbits_be32(&im->sysconf.sicrl, SICRL_USB_B, SICRL_USB_B_SD);
183 clrsetbits_be32(&im->sysconf.sicrh, SICRH_SPI, SICRH_SPI_SD);
184
185 return fsl_esdhc_mmc_init(bd);
186}
187#endif
188
Timur Tabi89c77842008-02-08 13:15:55 -0600189/*
190 * Miscellaneous late-boot configurations
191 *
192 * If a VSC7385 microcode image is present, then upload it.
193*/
194int misc_init_r(void)
195{
196 int rc = 0;
197
198#ifdef CONFIG_VSC7385_IMAGE
199 if (vsc7385_upload_firmware((void *) CONFIG_VSC7385_IMAGE,
200 CONFIG_VSC7385_IMAGE_SIZE)) {
201 puts("Failure uploading VSC7385 microcode.\n");
202 rc = 1;
203 }
204#endif
205
206 return rc;
207}
208
Kim Phillips5e918a92008-01-16 00:38:05 -0600209#if defined(CONFIG_OF_BOARD_SETUP)
210
Simon Glasse895a4b2014-10-23 18:58:47 -0600211int ft_board_setup(void *blob, bd_t *bd)
Kim Phillips5e918a92008-01-16 00:38:05 -0600212{
213#ifdef CONFIG_PCI
214 ft_pci_setup(blob, bd);
215#endif
216 ft_cpu_setup(blob, bd);
Sriram Dasha5c289b2016-09-16 17:12:15 +0530217 fsl_fdt_fixup_dr_usb(blob, bd);
Anton Vorontsovc9646ed2009-06-10 00:25:30 +0400218 fdt_fixup_esdhc(blob, bd);
Simon Glasse895a4b2014-10-23 18:58:47 -0600219
220 return 0;
Kim Phillips5e918a92008-01-16 00:38:05 -0600221}
222#endif /* CONFIG_OF_BOARD_SETUP */