blob: f515299bc9a8ce56c6891e2b7cb2d1977d856f89 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dave Liub19ecd32007-09-18 12:37:57 +08002/*
Kumar Gala6bc9fd52010-09-30 09:15:03 -05003 * Copyright (C) 2007,2010 Freescale Semiconductor, Inc.
Dave Liub19ecd32007-09-18 12:37:57 +08004 * Dave Liu <daveliu@freescale.com>
Dave Liub19ecd32007-09-18 12:37:57 +08005 */
6
7#include <common.h>
Anton Vorontsov5cd61522009-06-10 00:25:31 +04008#include <hwconfig.h>
Dave Liub19ecd32007-09-18 12:37:57 +08009#include <i2c.h>
Simon Glassa7b51302019-11-14 12:57:46 -070010#include <init.h>
Simon Glass274e0b02020-05-10 11:39:56 -060011#include <net.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060012#include <asm/bitops.h>
Dave Liub8dc5872008-03-26 22:56:36 +080013#include <asm/io.h>
Kumar Galab7c3ccf2010-04-20 10:02:24 -050014#include <asm/fsl_mpc83xx_serdes.h>
Dave Liub19ecd32007-09-18 12:37:57 +080015#include <spd_sdram.h>
Anton Vorontsov32b1b702008-10-02 18:32:25 +040016#include <tsec.h>
Simon Glassdbd79542020-05-10 11:40:11 -060017#include <linux/delay.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090018#include <linux/libfdt.h>
Anton Vorontsov504867a2008-10-14 22:58:53 +040019#include <fdt_support.h>
Anton Vorontsov5cd61522009-06-10 00:25:31 +040020#include <fsl_esdhc.h>
Andy Fleming422effd2011-04-08 02:10:54 -050021#include <fsl_mdio.h>
Andy Fleming7832a462011-04-13 00:37:12 -050022#include <phy.h>
Anton Vorontsov62842ec2009-01-08 04:26:19 +030023#include "pci.h"
Dave Liub19ecd32007-09-18 12:37:57 +080024#include "../common/pq-mds-pib.h"
Dave Liub19ecd32007-09-18 12:37:57 +080025
Simon Glass39f90ba2017-03-31 08:40:25 -060026DECLARE_GLOBAL_DATA_PTR;
27
Dave Liub19ecd32007-09-18 12:37:57 +080028int board_early_init_f(void)
29{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020030 u8 *bcsr = (u8 *)CONFIG_SYS_BCSR;
Dave Liub19ecd32007-09-18 12:37:57 +080031
32 /* Enable flash write */
33 bcsr[0x9] &= ~0x04;
34 /* Clear all of the interrupt of BCSR */
35 bcsr[0xe] = 0xff;
36
Dave Liub8dc5872008-03-26 22:56:36 +080037#ifdef CONFIG_FSL_SERDES
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020038 immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
Dave Liub8dc5872008-03-26 22:56:36 +080039 u32 spridr = in_be32(&immr->sysconf.spridr);
40
41 /* we check only part num, and don't look for CPU revisions */
Dave Liu1f2f86e2008-03-31 17:05:12 +080042 switch (PARTID_NO_E(spridr)) {
Kim Phillipsecb2d6f2008-03-28 10:19:07 -050043 case SPR_8377:
Dave Liub8dc5872008-03-26 22:56:36 +080044 fsl_setup_serdes(CONFIG_FSL_SERDES1, FSL_SERDES_PROTO_SATA,
Andy Fleming1463b4b2008-10-30 16:50:14 -050045 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
Dave Liub8dc5872008-03-26 22:56:36 +080046 break;
Kim Phillipsecb2d6f2008-03-28 10:19:07 -050047 case SPR_8378:
Anton Vorontsov32b1b702008-10-02 18:32:25 +040048 fsl_setup_serdes(CONFIG_FSL_SERDES1, FSL_SERDES_PROTO_SGMII,
Andy Fleming1463b4b2008-10-30 16:50:14 -050049 FSL_SERDES_CLK_125, FSL_SERDES_VDD_1V);
Dave Liub8dc5872008-03-26 22:56:36 +080050 break;
Kim Phillipsecb2d6f2008-03-28 10:19:07 -050051 case SPR_8379:
Dave Liub8dc5872008-03-26 22:56:36 +080052 fsl_setup_serdes(CONFIG_FSL_SERDES1, FSL_SERDES_PROTO_SATA,
Andy Fleming1463b4b2008-10-30 16:50:14 -050053 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
Kim Phillipsecb2d6f2008-03-28 10:19:07 -050054 fsl_setup_serdes(CONFIG_FSL_SERDES2, FSL_SERDES_PROTO_SATA,
Andy Fleming1463b4b2008-10-30 16:50:14 -050055 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
Dave Liub8dc5872008-03-26 22:56:36 +080056 break;
57 default:
58 printf("serdes not configured: unknown CPU part number: "
Andy Fleming1463b4b2008-10-30 16:50:14 -050059 "%04x\n", spridr >> 16);
Dave Liub8dc5872008-03-26 22:56:36 +080060 break;
61 }
62#endif /* CONFIG_FSL_SERDES */
Dave Liub19ecd32007-09-18 12:37:57 +080063 return 0;
64}
65
Anton Vorontsov5cd61522009-06-10 00:25:31 +040066#ifdef CONFIG_FSL_ESDHC
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090067int board_mmc_init(struct bd_info *bd)
Anton Vorontsov5cd61522009-06-10 00:25:31 +040068{
69 struct immap __iomem *im = (struct immap __iomem *)CONFIG_SYS_IMMR;
70 u8 *bcsr = (u8 *)CONFIG_SYS_BCSR;
71
72 if (!hwconfig("esdhc"))
73 return 0;
74
75 /* Set SPI_SD, SER_SD, and IRQ4_WP so that SD signals go through */
76 bcsr[0xc] |= 0x4c;
77
78 /* Set proper bits in SICR to allow SD signals through */
79 clrsetbits_be32(&im->sysconf.sicrl, SICRL_USB_B, SICRL_USB_B_SD);
80 clrsetbits_be32(&im->sysconf.sicrh, SICRH_GPIO2_E | SICRH_SPI,
81 SICRH_GPIO2_E_SD | SICRH_SPI_SD);
82
83 return fsl_esdhc_mmc_init(bd);
84}
85#endif
86
Anton Vorontsov32b1b702008-10-02 18:32:25 +040087#if defined(CONFIG_TSEC1) || defined(CONFIG_TSEC2)
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090088int board_eth_init(struct bd_info *bd)
Anton Vorontsov32b1b702008-10-02 18:32:25 +040089{
Andy Fleming422effd2011-04-08 02:10:54 -050090 struct fsl_pq_mdio_info mdio_info;
Anton Vorontsov32b1b702008-10-02 18:32:25 +040091 struct tsec_info_struct tsec_info[2];
92 struct immap __iomem *im = (struct immap __iomem *)CONFIG_SYS_IMMR;
93 u32 rcwh = in_be32(&im->reset.rcwh);
94 u32 tsec_mode;
95 int num = 0;
96
97 /* New line after Net: */
98 printf("\n");
99
100#ifdef CONFIG_TSEC1
101 SET_STD_TSEC_INFO(tsec_info[num], 1);
102
103 printf(CONFIG_TSEC1_NAME ": ");
104
105 tsec_mode = rcwh & HRCWH_TSEC1M_MASK;
106 if (tsec_mode == HRCWH_TSEC1M_IN_RGMII) {
107 printf("RGMII\n");
108 /* this is default, no need to fixup */
109 } else if (tsec_mode == HRCWH_TSEC1M_IN_SGMII) {
110 printf("SGMII\n");
111 tsec_info[num].phyaddr = TSEC1_PHY_ADDR_SGMII;
112 tsec_info[num].flags = TSEC_GIGABIT;
113 } else {
114 printf("unsupported PHY type\n");
115 }
116 num++;
117#endif
118#ifdef CONFIG_TSEC2
119 SET_STD_TSEC_INFO(tsec_info[num], 2);
120
121 printf(CONFIG_TSEC2_NAME ": ");
122
123 tsec_mode = rcwh & HRCWH_TSEC2M_MASK;
124 if (tsec_mode == HRCWH_TSEC2M_IN_RGMII) {
125 printf("RGMII\n");
126 /* this is default, no need to fixup */
127 } else if (tsec_mode == HRCWH_TSEC2M_IN_SGMII) {
128 printf("SGMII\n");
129 tsec_info[num].phyaddr = TSEC2_PHY_ADDR_SGMII;
130 tsec_info[num].flags = TSEC_GIGABIT;
131 } else {
132 printf("unsupported PHY type\n");
133 }
134 num++;
135#endif
Andy Fleming422effd2011-04-08 02:10:54 -0500136
137 mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
138 mdio_info.name = DEFAULT_MII_NAME;
139 fsl_pq_mdio_init(bd, &mdio_info);
140
Anton Vorontsov32b1b702008-10-02 18:32:25 +0400141 return tsec_eth_init(bd, tsec_info, num);
142}
143
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900144static void __ft_tsec_fixup(void *blob, struct bd_info *bd, const char *alias,
Anton Vorontsov32b1b702008-10-02 18:32:25 +0400145 int phy_addr)
146{
Anton Vorontsov32b1b702008-10-02 18:32:25 +0400147 const u32 *ph;
148 int off;
149 int err;
150
151 off = fdt_path_offset(blob, alias);
152 if (off < 0) {
153 printf("WARNING: could not find %s alias: %s.\n", alias,
154 fdt_strerror(off));
155 return;
156 }
157
Andy Fleming7832a462011-04-13 00:37:12 -0500158 err = fdt_fixup_phy_connection(blob, off, PHY_INTERFACE_MODE_SGMII);
Kumar Gala6bc9fd52010-09-30 09:15:03 -0500159
Anton Vorontsov32b1b702008-10-02 18:32:25 +0400160 if (err) {
161 printf("WARNING: could not set phy-connection-type for %s: "
162 "%s.\n", alias, fdt_strerror(err));
163 return;
164 }
165
166 ph = (u32 *)fdt_getprop(blob, off, "phy-handle", 0);
167 if (!ph) {
168 printf("WARNING: could not get phy-handle for %s.\n",
169 alias);
170 return;
171 }
172
173 off = fdt_node_offset_by_phandle(blob, *ph);
174 if (off < 0) {
175 printf("WARNING: could not get phy node for %s: %s\n", alias,
176 fdt_strerror(off));
177 return;
178 }
179
180 phy_addr = cpu_to_fdt32(phy_addr);
181 err = fdt_setprop(blob, off, "reg", &phy_addr, sizeof(phy_addr));
182 if (err < 0) {
183 printf("WARNING: could not set phy node's reg for %s: "
184 "%s.\n", alias, fdt_strerror(err));
185 return;
186 }
187}
188
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900189static void ft_tsec_fixup(void *blob, struct bd_info *bd)
Anton Vorontsov32b1b702008-10-02 18:32:25 +0400190{
191 struct immap __iomem *im = (struct immap __iomem *)CONFIG_SYS_IMMR;
192 u32 rcwh = in_be32(&im->reset.rcwh);
193 u32 tsec_mode;
194
195#ifdef CONFIG_TSEC1
196 tsec_mode = rcwh & HRCWH_TSEC1M_MASK;
197 if (tsec_mode == HRCWH_TSEC1M_IN_SGMII)
198 __ft_tsec_fixup(blob, bd, "ethernet0", TSEC1_PHY_ADDR_SGMII);
199#endif
200
201#ifdef CONFIG_TSEC2
202 tsec_mode = rcwh & HRCWH_TSEC2M_MASK;
203 if (tsec_mode == HRCWH_TSEC2M_IN_SGMII)
204 __ft_tsec_fixup(blob, bd, "ethernet1", TSEC2_PHY_ADDR_SGMII);
205#endif
206}
207#else
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900208static inline void ft_tsec_fixup(void *blob, struct bd_info *bd) {}
Anton Vorontsov32b1b702008-10-02 18:32:25 +0400209#endif /* defined(CONFIG_TSEC1) || defined(CONFIG_TSEC2) */
210
Dave Liub19ecd32007-09-18 12:37:57 +0800211int board_early_init_r(void)
212{
213#ifdef CONFIG_PQ_MDS_PIB
214 pib_init();
215#endif
216 return 0;
217}
218
Peter Tysercb4731f2009-06-30 17:15:50 -0500219#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
Dave Liub19ecd32007-09-18 12:37:57 +0800220extern void ddr_enable_ecc(unsigned int dram_size);
221#endif
222int fixed_sdram(void);
223
Simon Glassd35f3382017-04-06 12:47:05 -0600224int dram_init(void)
Dave Liub19ecd32007-09-18 12:37:57 +0800225{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200226 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Dave Liub19ecd32007-09-18 12:37:57 +0800227 u32 msize = 0;
228
229 if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32) im)
Simon Glass39f90ba2017-03-31 08:40:25 -0600230 return -ENXIO;
Dave Liub19ecd32007-09-18 12:37:57 +0800231
232#if defined(CONFIG_SPD_EEPROM)
233 msize = spd_sdram();
234#else
235 msize = fixed_sdram();
236#endif
237
Peter Tysercb4731f2009-06-30 17:15:50 -0500238#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
Dave Liub19ecd32007-09-18 12:37:57 +0800239 /* Initialize DDR ECC byte */
240 ddr_enable_ecc(msize * 1024 * 1024);
241#endif
242
243 /* return total bus DDR size(bytes) */
Simon Glass39f90ba2017-03-31 08:40:25 -0600244 gd->ram_size = msize * 1024 * 1024;
245
246 return 0;
Dave Liub19ecd32007-09-18 12:37:57 +0800247}
248
249#if !defined(CONFIG_SPD_EEPROM)
250/*************************************************************************
251 * fixed sdram init -- doesn't use serial presence detect.
252 ************************************************************************/
253int fixed_sdram(void)
254{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200255 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
256 u32 msize = CONFIG_SYS_DDR_SIZE * 1024 * 1024;
Dave Liub19ecd32007-09-18 12:37:57 +0800257 u32 msize_log2 = __ilog2(msize);
258
Mario Six805cac12019-01-21 09:18:16 +0100259 im->sysconf.ddrlaw[0].bar = CONFIG_SYS_SDRAM_BASE & 0xfffff000;
Dave Liub19ecd32007-09-18 12:37:57 +0800260 im->sysconf.ddrlaw[0].ar = LBLAWAR_EN | (msize_log2 - 1);
261
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200262#if (CONFIG_SYS_DDR_SIZE != 512)
Dave Liub19ecd32007-09-18 12:37:57 +0800263#warning Currenly any ddr size other than 512 is not supported
264#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200265 im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE;
Dave Liub19ecd32007-09-18 12:37:57 +0800266 udelay(50000);
267
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200268 im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_SDRAM_CLK_CNTL;
Dave Liub19ecd32007-09-18 12:37:57 +0800269 udelay(1000);
270
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200271 im->ddr.csbnds[0].csbnds = CONFIG_SYS_DDR_CS0_BNDS;
272 im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG;
Dave Liub19ecd32007-09-18 12:37:57 +0800273 udelay(1000);
274
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200275 im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
276 im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
277 im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
278 im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
279 im->ddr.sdram_cfg = CONFIG_SYS_DDR_SDRAM_CFG;
280 im->ddr.sdram_cfg2 = CONFIG_SYS_DDR_SDRAM_CFG2;
281 im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE;
282 im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE2;
283 im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL;
Dave Liub19ecd32007-09-18 12:37:57 +0800284 __asm__ __volatile__("sync");
285 udelay(1000);
286
287 im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
288 udelay(2000);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200289 return CONFIG_SYS_DDR_SIZE;
Dave Liub19ecd32007-09-18 12:37:57 +0800290}
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200291#endif /*!CONFIG_SYS_SPD_EEPROM */
Dave Liub19ecd32007-09-18 12:37:57 +0800292
293int checkboard(void)
294{
295 puts("Board: Freescale MPC837xEMDS\n");
296 return 0;
297}
298
Anton Vorontsov30c69922008-10-02 19:17:33 +0400299#ifdef CONFIG_PCI
300int board_pci_host_broken(void)
301{
302 struct immap __iomem *im = (struct immap __iomem *)CONFIG_SYS_IMMR;
303 const u32 rcw_mask = HRCWH_PCI1_ARBITER_ENABLE | HRCWH_PCI_HOST;
Anton Vorontsov30c69922008-10-02 19:17:33 +0400304
305 /* It's always OK in case of external arbiter. */
Anton Vorontsovcb647ee2009-06-10 00:25:38 +0400306 if (hwconfig_subarg_cmp("pci", "arbiter", "external"))
Anton Vorontsov30c69922008-10-02 19:17:33 +0400307 return 0;
308
309 if ((in_be32(&im->reset.rcwh) & rcw_mask) != rcw_mask)
310 return 1;
311
312 return 0;
313}
314
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900315static void ft_pci_fixup(void *blob, struct bd_info *bd)
Anton Vorontsov30c69922008-10-02 19:17:33 +0400316{
317 const char *status = "broken (no arbiter)";
318 int off;
319 int err;
320
321 off = fdt_path_offset(blob, "pci0");
322 if (off < 0) {
323 printf("WARNING: could not find pci0 alias: %s.\n",
324 fdt_strerror(off));
325 return;
326 }
327
328 err = fdt_setprop(blob, off, "status", status, strlen(status) + 1);
329 if (err) {
330 printf("WARNING: could not set status for pci0: %s.\n",
331 fdt_strerror(err));
332 return;
333 }
334}
335#endif
336
Dave Liub19ecd32007-09-18 12:37:57 +0800337#if defined(CONFIG_OF_BOARD_SETUP)
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900338int ft_board_setup(void *blob, struct bd_info *bd)
Dave Liub19ecd32007-09-18 12:37:57 +0800339{
Dave Liub19ecd32007-09-18 12:37:57 +0800340 ft_cpu_setup(blob, bd);
Anton Vorontsov32b1b702008-10-02 18:32:25 +0400341 ft_tsec_fixup(blob, bd);
Sriram Dash9fd465c2016-09-16 17:12:15 +0530342 fsl_fdt_fixup_dr_usb(blob, bd);
Anton Vorontsov5cd61522009-06-10 00:25:31 +0400343 fdt_fixup_esdhc(blob, bd);
Dave Liub19ecd32007-09-18 12:37:57 +0800344#ifdef CONFIG_PCI
345 ft_pci_setup(blob, bd);
Anton Vorontsov30c69922008-10-02 19:17:33 +0400346 if (board_pci_host_broken())
347 ft_pci_fixup(blob, bd);
Anton Vorontsov62842ec2009-01-08 04:26:19 +0300348 ft_pcie_fixup(blob, bd);
Dave Liub19ecd32007-09-18 12:37:57 +0800349#endif
Simon Glass2aec3cc2014-10-23 18:58:47 -0600350
351 return 0;
Dave Liub19ecd32007-09-18 12:37:57 +0800352}
353#endif /* CONFIG_OF_BOARD_SETUP */