blob: 71875cf8f8ec316f674654de23e6ab6cd6d034a5 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dave Liu19580e62007-09-18 12:37:57 +08002/*
Kumar Galaa1964ea2010-09-30 09:15:03 -05003 * Copyright (C) 2007,2010 Freescale Semiconductor, Inc.
Dave Liu19580e62007-09-18 12:37:57 +08004 * Dave Liu <daveliu@freescale.com>
Dave Liu19580e62007-09-18 12:37:57 +08005 */
6
7#include <common.h>
Anton Vorontsovc78c6782009-06-10 00:25:31 +04008#include <hwconfig.h>
Dave Liu19580e62007-09-18 12:37:57 +08009#include <i2c.h>
Simon Glass52559322019-11-14 12:57:46 -070010#include <init.h>
Simon Glass90526e92020-05-10 11:39:56 -060011#include <net.h>
Simon Glasscd93d622020-05-10 11:40:13 -060012#include <asm/bitops.h>
Simon Glass401d1c42020-10-30 21:38:53 -060013#include <asm/global_data.h>
Dave Liu6f8c85e2008-03-26 22:56:36 +080014#include <asm/io.h>
Kumar Gala7e1afb62010-04-20 10:02:24 -050015#include <asm/fsl_mpc83xx_serdes.h>
Dave Liu19580e62007-09-18 12:37:57 +080016#include <spd_sdram.h>
Anton Vorontsov1da83a62008-10-02 18:32:25 +040017#include <tsec.h>
Simon Glassc05ed002020-05-10 11:40:11 -060018#include <linux/delay.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090019#include <linux/libfdt.h>
Anton Vorontsov3bf1be32008-10-14 22:58:53 +040020#include <fdt_support.h>
Anton Vorontsovc78c6782009-06-10 00:25:31 +040021#include <fsl_esdhc.h>
Andy Fleming063c1262011-04-08 02:10:54 -050022#include <fsl_mdio.h>
Andy Fleming865ff852011-04-13 00:37:12 -050023#include <phy.h>
Anton Vorontsov8b345572009-01-08 04:26:19 +030024#include "pci.h"
Dave Liu19580e62007-09-18 12:37:57 +080025#include "../common/pq-mds-pib.h"
Dave Liu19580e62007-09-18 12:37:57 +080026
Simon Glass088454c2017-03-31 08:40:25 -060027DECLARE_GLOBAL_DATA_PTR;
28
Dave Liu19580e62007-09-18 12:37:57 +080029int board_early_init_f(void)
30{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020031 u8 *bcsr = (u8 *)CONFIG_SYS_BCSR;
Dave Liu19580e62007-09-18 12:37:57 +080032
33 /* Enable flash write */
34 bcsr[0x9] &= ~0x04;
35 /* Clear all of the interrupt of BCSR */
36 bcsr[0xe] = 0xff;
37
Dave Liu6f8c85e2008-03-26 22:56:36 +080038#ifdef CONFIG_FSL_SERDES
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020039 immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
Dave Liu6f8c85e2008-03-26 22:56:36 +080040 u32 spridr = in_be32(&immr->sysconf.spridr);
41
42 /* we check only part num, and don't look for CPU revisions */
Dave Liu5fb5a682008-03-31 17:05:12 +080043 switch (PARTID_NO_E(spridr)) {
Kim Phillipse5c4ade2008-03-28 10:19:07 -050044 case SPR_8377:
Dave Liu6f8c85e2008-03-26 22:56:36 +080045 fsl_setup_serdes(CONFIG_FSL_SERDES1, FSL_SERDES_PROTO_SATA,
Andy Fleminge1ac3872008-10-30 16:50:14 -050046 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
Dave Liu6f8c85e2008-03-26 22:56:36 +080047 break;
Kim Phillipse5c4ade2008-03-28 10:19:07 -050048 case SPR_8378:
Anton Vorontsov1da83a62008-10-02 18:32:25 +040049 fsl_setup_serdes(CONFIG_FSL_SERDES1, FSL_SERDES_PROTO_SGMII,
Andy Fleminge1ac3872008-10-30 16:50:14 -050050 FSL_SERDES_CLK_125, FSL_SERDES_VDD_1V);
Kim Phillipse5c4ade2008-03-28 10:19:07 -050051 break;
52 case SPR_8379:
53 fsl_setup_serdes(CONFIG_FSL_SERDES1, FSL_SERDES_PROTO_SATA,
Andy Fleminge1ac3872008-10-30 16:50:14 -050054 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
Kim Phillipse5c4ade2008-03-28 10:19:07 -050055 fsl_setup_serdes(CONFIG_FSL_SERDES2, FSL_SERDES_PROTO_SATA,
Andy Fleminge1ac3872008-10-30 16:50:14 -050056 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
Kim Phillipse5c4ade2008-03-28 10:19:07 -050057 break;
Dave Liu6f8c85e2008-03-26 22:56:36 +080058 default:
59 printf("serdes not configured: unknown CPU part number: "
Andy Fleminge1ac3872008-10-30 16:50:14 -050060 "%04x\n", spridr >> 16);
Dave Liu6f8c85e2008-03-26 22:56:36 +080061 break;
62 }
63#endif /* CONFIG_FSL_SERDES */
Dave Liu19580e62007-09-18 12:37:57 +080064 return 0;
65}
66
Anton Vorontsovc78c6782009-06-10 00:25:31 +040067#ifdef CONFIG_FSL_ESDHC
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090068int board_mmc_init(struct bd_info *bd)
Anton Vorontsovc78c6782009-06-10 00:25:31 +040069{
70 struct immap __iomem *im = (struct immap __iomem *)CONFIG_SYS_IMMR;
71 u8 *bcsr = (u8 *)CONFIG_SYS_BCSR;
72
73 if (!hwconfig("esdhc"))
74 return 0;
75
76 /* Set SPI_SD, SER_SD, and IRQ4_WP so that SD signals go through */
77 bcsr[0xc] |= 0x4c;
78
79 /* Set proper bits in SICR to allow SD signals through */
80 clrsetbits_be32(&im->sysconf.sicrl, SICRL_USB_B, SICRL_USB_B_SD);
81 clrsetbits_be32(&im->sysconf.sicrh, SICRH_GPIO2_E | SICRH_SPI,
82 SICRH_GPIO2_E_SD | SICRH_SPI_SD);
83
84 return fsl_esdhc_mmc_init(bd);
85}
86#endif
87
Anton Vorontsov1da83a62008-10-02 18:32:25 +040088#if defined(CONFIG_TSEC1) || defined(CONFIG_TSEC2)
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090089int board_eth_init(struct bd_info *bd)
Anton Vorontsov1da83a62008-10-02 18:32:25 +040090{
Andy Fleming063c1262011-04-08 02:10:54 -050091 struct fsl_pq_mdio_info mdio_info;
Anton Vorontsov1da83a62008-10-02 18:32:25 +040092 struct tsec_info_struct tsec_info[2];
93 struct immap __iomem *im = (struct immap __iomem *)CONFIG_SYS_IMMR;
94 u32 rcwh = in_be32(&im->reset.rcwh);
95 u32 tsec_mode;
96 int num = 0;
97
98 /* New line after Net: */
99 printf("\n");
100
101#ifdef CONFIG_TSEC1
102 SET_STD_TSEC_INFO(tsec_info[num], 1);
103
104 printf(CONFIG_TSEC1_NAME ": ");
105
106 tsec_mode = rcwh & HRCWH_TSEC1M_MASK;
107 if (tsec_mode == HRCWH_TSEC1M_IN_RGMII) {
108 printf("RGMII\n");
109 /* this is default, no need to fixup */
110 } else if (tsec_mode == HRCWH_TSEC1M_IN_SGMII) {
111 printf("SGMII\n");
112 tsec_info[num].phyaddr = TSEC1_PHY_ADDR_SGMII;
113 tsec_info[num].flags = TSEC_GIGABIT;
114 } else {
115 printf("unsupported PHY type\n");
116 }
117 num++;
118#endif
119#ifdef CONFIG_TSEC2
120 SET_STD_TSEC_INFO(tsec_info[num], 2);
121
122 printf(CONFIG_TSEC2_NAME ": ");
123
124 tsec_mode = rcwh & HRCWH_TSEC2M_MASK;
125 if (tsec_mode == HRCWH_TSEC2M_IN_RGMII) {
126 printf("RGMII\n");
127 /* this is default, no need to fixup */
128 } else if (tsec_mode == HRCWH_TSEC2M_IN_SGMII) {
129 printf("SGMII\n");
130 tsec_info[num].phyaddr = TSEC2_PHY_ADDR_SGMII;
131 tsec_info[num].flags = TSEC_GIGABIT;
132 } else {
133 printf("unsupported PHY type\n");
134 }
135 num++;
136#endif
Andy Fleming063c1262011-04-08 02:10:54 -0500137
138 mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
139 mdio_info.name = DEFAULT_MII_NAME;
140 fsl_pq_mdio_init(bd, &mdio_info);
141
Anton Vorontsov1da83a62008-10-02 18:32:25 +0400142 return tsec_eth_init(bd, tsec_info, num);
143}
144
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900145static void __ft_tsec_fixup(void *blob, struct bd_info *bd, const char *alias,
Anton Vorontsov1da83a62008-10-02 18:32:25 +0400146 int phy_addr)
147{
Anton Vorontsov1da83a62008-10-02 18:32:25 +0400148 const u32 *ph;
149 int off;
150 int err;
151
152 off = fdt_path_offset(blob, alias);
153 if (off < 0) {
154 printf("WARNING: could not find %s alias: %s.\n", alias,
155 fdt_strerror(off));
156 return;
157 }
158
Andy Fleming865ff852011-04-13 00:37:12 -0500159 err = fdt_fixup_phy_connection(blob, off, PHY_INTERFACE_MODE_SGMII);
Kumar Galaa1964ea2010-09-30 09:15:03 -0500160
Anton Vorontsov1da83a62008-10-02 18:32:25 +0400161 if (err) {
162 printf("WARNING: could not set phy-connection-type for %s: "
163 "%s.\n", alias, fdt_strerror(err));
164 return;
165 }
166
167 ph = (u32 *)fdt_getprop(blob, off, "phy-handle", 0);
168 if (!ph) {
169 printf("WARNING: could not get phy-handle for %s.\n",
170 alias);
171 return;
172 }
173
174 off = fdt_node_offset_by_phandle(blob, *ph);
175 if (off < 0) {
176 printf("WARNING: could not get phy node for %s: %s\n", alias,
177 fdt_strerror(off));
178 return;
179 }
180
181 phy_addr = cpu_to_fdt32(phy_addr);
182 err = fdt_setprop(blob, off, "reg", &phy_addr, sizeof(phy_addr));
183 if (err < 0) {
184 printf("WARNING: could not set phy node's reg for %s: "
185 "%s.\n", alias, fdt_strerror(err));
186 return;
187 }
188}
189
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900190static void ft_tsec_fixup(void *blob, struct bd_info *bd)
Anton Vorontsov1da83a62008-10-02 18:32:25 +0400191{
192 struct immap __iomem *im = (struct immap __iomem *)CONFIG_SYS_IMMR;
193 u32 rcwh = in_be32(&im->reset.rcwh);
194 u32 tsec_mode;
195
196#ifdef CONFIG_TSEC1
197 tsec_mode = rcwh & HRCWH_TSEC1M_MASK;
198 if (tsec_mode == HRCWH_TSEC1M_IN_SGMII)
199 __ft_tsec_fixup(blob, bd, "ethernet0", TSEC1_PHY_ADDR_SGMII);
200#endif
201
202#ifdef CONFIG_TSEC2
203 tsec_mode = rcwh & HRCWH_TSEC2M_MASK;
204 if (tsec_mode == HRCWH_TSEC2M_IN_SGMII)
205 __ft_tsec_fixup(blob, bd, "ethernet1", TSEC2_PHY_ADDR_SGMII);
206#endif
207}
208#else
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900209static inline void ft_tsec_fixup(void *blob, struct bd_info *bd) {}
Anton Vorontsov1da83a62008-10-02 18:32:25 +0400210#endif /* defined(CONFIG_TSEC1) || defined(CONFIG_TSEC2) */
211
Dave Liu19580e62007-09-18 12:37:57 +0800212int board_early_init_r(void)
213{
214#ifdef CONFIG_PQ_MDS_PIB
215 pib_init();
216#endif
217 return 0;
218}
219
Peter Tyser9adda542009-06-30 17:15:50 -0500220#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
Dave Liu19580e62007-09-18 12:37:57 +0800221extern void ddr_enable_ecc(unsigned int dram_size);
222#endif
223int fixed_sdram(void);
224
Simon Glassf1683aa2017-04-06 12:47:05 -0600225int dram_init(void)
Dave Liu19580e62007-09-18 12:37:57 +0800226{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200227 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
Dave Liu19580e62007-09-18 12:37:57 +0800228 u32 msize = 0;
229
230 if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32) im)
Simon Glass088454c2017-03-31 08:40:25 -0600231 return -ENXIO;
Dave Liu19580e62007-09-18 12:37:57 +0800232
233#if defined(CONFIG_SPD_EEPROM)
234 msize = spd_sdram();
235#else
236 msize = fixed_sdram();
237#endif
238
Peter Tyser9adda542009-06-30 17:15:50 -0500239#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
Dave Liu19580e62007-09-18 12:37:57 +0800240 /* Initialize DDR ECC byte */
241 ddr_enable_ecc(msize * 1024 * 1024);
242#endif
243
244 /* return total bus DDR size(bytes) */
Simon Glass088454c2017-03-31 08:40:25 -0600245 gd->ram_size = msize * 1024 * 1024;
246
247 return 0;
Dave Liu19580e62007-09-18 12:37:57 +0800248}
249
250#if !defined(CONFIG_SPD_EEPROM)
251/*************************************************************************
252 * fixed sdram init -- doesn't use serial presence detect.
253 ************************************************************************/
254int fixed_sdram(void)
255{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200256 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
257 u32 msize = CONFIG_SYS_DDR_SIZE * 1024 * 1024;
Dave Liu19580e62007-09-18 12:37:57 +0800258 u32 msize_log2 = __ilog2(msize);
259
Mario Six133ec602019-01-21 09:18:16 +0100260 im->sysconf.ddrlaw[0].bar = CONFIG_SYS_SDRAM_BASE & 0xfffff000;
Dave Liu19580e62007-09-18 12:37:57 +0800261 im->sysconf.ddrlaw[0].ar = LBLAWAR_EN | (msize_log2 - 1);
262
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200263#if (CONFIG_SYS_DDR_SIZE != 512)
Dave Liu19580e62007-09-18 12:37:57 +0800264#warning Currenly any ddr size other than 512 is not supported
265#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200266 im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE;
Dave Liu19580e62007-09-18 12:37:57 +0800267 udelay(50000);
268
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200269 im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_SDRAM_CLK_CNTL;
Dave Liu19580e62007-09-18 12:37:57 +0800270 udelay(1000);
271
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200272 im->ddr.csbnds[0].csbnds = CONFIG_SYS_DDR_CS0_BNDS;
273 im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG;
Dave Liu19580e62007-09-18 12:37:57 +0800274 udelay(1000);
275
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200276 im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
277 im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
278 im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
279 im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
280 im->ddr.sdram_cfg = CONFIG_SYS_DDR_SDRAM_CFG;
281 im->ddr.sdram_cfg2 = CONFIG_SYS_DDR_SDRAM_CFG2;
282 im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE;
283 im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE2;
284 im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL;
Dave Liu19580e62007-09-18 12:37:57 +0800285 __asm__ __volatile__("sync");
286 udelay(1000);
287
288 im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
289 udelay(2000);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200290 return CONFIG_SYS_DDR_SIZE;
Dave Liu19580e62007-09-18 12:37:57 +0800291}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200292#endif /*!CONFIG_SYS_SPD_EEPROM */
Dave Liu19580e62007-09-18 12:37:57 +0800293
294int checkboard(void)
295{
296 puts("Board: Freescale MPC837xEMDS\n");
297 return 0;
298}
299
Anton Vorontsov00f7bba2008-10-02 19:17:33 +0400300#ifdef CONFIG_PCI
301int board_pci_host_broken(void)
302{
303 struct immap __iomem *im = (struct immap __iomem *)CONFIG_SYS_IMMR;
304 const u32 rcw_mask = HRCWH_PCI1_ARBITER_ENABLE | HRCWH_PCI_HOST;
Anton Vorontsov00f7bba2008-10-02 19:17:33 +0400305
306 /* It's always OK in case of external arbiter. */
Anton Vorontsovbfadb172009-06-10 00:25:38 +0400307 if (hwconfig_subarg_cmp("pci", "arbiter", "external"))
Anton Vorontsov00f7bba2008-10-02 19:17:33 +0400308 return 0;
309
310 if ((in_be32(&im->reset.rcwh) & rcw_mask) != rcw_mask)
311 return 1;
312
313 return 0;
314}
315
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900316static void ft_pci_fixup(void *blob, struct bd_info *bd)
Anton Vorontsov00f7bba2008-10-02 19:17:33 +0400317{
318 const char *status = "broken (no arbiter)";
319 int off;
320 int err;
321
322 off = fdt_path_offset(blob, "pci0");
323 if (off < 0) {
324 printf("WARNING: could not find pci0 alias: %s.\n",
325 fdt_strerror(off));
326 return;
327 }
328
329 err = fdt_setprop(blob, off, "status", status, strlen(status) + 1);
330 if (err) {
331 printf("WARNING: could not set status for pci0: %s.\n",
332 fdt_strerror(err));
333 return;
334 }
335}
336#endif
337
Dave Liu19580e62007-09-18 12:37:57 +0800338#if defined(CONFIG_OF_BOARD_SETUP)
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900339int ft_board_setup(void *blob, struct bd_info *bd)
Dave Liu19580e62007-09-18 12:37:57 +0800340{
Dave Liu19580e62007-09-18 12:37:57 +0800341 ft_cpu_setup(blob, bd);
Anton Vorontsov1da83a62008-10-02 18:32:25 +0400342 ft_tsec_fixup(blob, bd);
Sriram Dasha5c289b2016-09-16 17:12:15 +0530343 fsl_fdt_fixup_dr_usb(blob, bd);
Anton Vorontsovc78c6782009-06-10 00:25:31 +0400344 fdt_fixup_esdhc(blob, bd);
Dave Liu19580e62007-09-18 12:37:57 +0800345#ifdef CONFIG_PCI
346 ft_pci_setup(blob, bd);
Anton Vorontsov00f7bba2008-10-02 19:17:33 +0400347 if (board_pci_host_broken())
348 ft_pci_fixup(blob, bd);
Anton Vorontsov8b345572009-01-08 04:26:19 +0300349 ft_pcie_fixup(blob, bd);
Dave Liu19580e62007-09-18 12:37:57 +0800350#endif
Simon Glasse895a4b2014-10-23 18:58:47 -0600351
352 return 0;
Dave Liu19580e62007-09-18 12:37:57 +0800353}
354#endif /* CONFIG_OF_BOARD_SETUP */