blob: 244a053d7a42b06d0850334c2b59bedf8254b515 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Timur Tabi9b45b5a2010-06-14 15:28:24 -05002/*
ramneek mehresh3d339632012-04-18 19:39:53 +00003 * Copyright 2010-2012 Freescale Semiconductor, Inc.
Timur Tabi9b45b5a2010-06-14 15:28:24 -05004 * Authors: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
5 * Timur Tabi <timur@freescale.com>
Timur Tabi9b45b5a2010-06-14 15:28:24 -05006 */
7
8#include <common.h>
9#include <command.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060010#include <env.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060011#include <image.h>
Simon Glassa7b51302019-11-14 12:57:46 -070012#include <init.h>
Simon Glass274e0b02020-05-10 11:39:56 -060013#include <net.h>
Timur Tabi9b45b5a2010-06-14 15:28:24 -050014#include <pci.h>
15#include <asm/processor.h>
16#include <asm/mmu.h>
17#include <asm/cache.h>
18#include <asm/immap_85xx.h>
19#include <asm/fsl_pci.h>
York Sunf0626592013-09-30 09:22:09 -070020#include <fsl_ddr_sdram.h>
Timur Tabi9b45b5a2010-06-14 15:28:24 -050021#include <asm/fsl_serdes.h>
22#include <asm/io.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090023#include <linux/libfdt.h>
Timur Tabi9b45b5a2010-06-14 15:28:24 -050024#include <fdt_support.h>
Andy Fleming422effd2011-04-08 02:10:54 -050025#include <fsl_mdio.h>
Timur Tabi9b45b5a2010-06-14 15:28:24 -050026#include <tsec.h>
27#include <asm/fsl_law.h>
Timur Tabi9b45b5a2010-06-14 15:28:24 -050028#include <netdev.h>
29#include <i2c.h>
Timur Tabi8848d472010-07-21 16:56:19 -050030#include <hwconfig.h>
Timur Tabi9b45b5a2010-06-14 15:28:24 -050031
32#include "../common/ngpixis.h"
33
Timur Tabi9b45b5a2010-06-14 15:28:24 -050034int board_early_init_f(void)
35{
36 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
37
38 /* Set pmuxcr to allow both i2c1 and i2c2 */
39 setbits_be32(&gur->pmuxcr, 0x1000);
Matthew McClintockc4253e92012-05-18 06:04:17 +000040#ifdef CONFIG_SYS_RAMBOOT
41 setbits_be32(&gur->pmuxcr,
42 in_be32(&gur->pmuxcr) | MPC85xx_PMUXCR_SD_DATA);
43#endif
Timur Tabi9b45b5a2010-06-14 15:28:24 -050044
45 /* Read back the register to synchronize the write. */
46 in_be32(&gur->pmuxcr);
47
48 /* Set the pin muxing to enable ETSEC2. */
49 clrbits_be32(&gur->pmuxcr2, 0x001F8000);
50
Jiang Yutang382e3572011-02-24 16:11:56 +080051 /* Enable the SPI */
52 clrsetbits_8(&pixis->brdcfg0, PIXIS_ELBC_SPI_MASK, PIXIS_SPI);
53
Timur Tabi9b45b5a2010-06-14 15:28:24 -050054 return 0;
55}
56
57int checkboard(void)
58{
59 u8 sw;
60
Timur Tabi56953ee2012-03-15 11:42:27 +000061 printf("Board: P1022DS Sys ID: 0x%02x, "
62 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
Timur Tabi9b45b5a2010-06-14 15:28:24 -050063 in_8(&pixis->id), in_8(&pixis->arch), in_8(&pixis->scver));
64
65 sw = in_8(&PIXIS_SW(PIXIS_LBMAP_SWITCH));
66
67 switch ((sw & PIXIS_LBMAP_MASK) >> 6) {
68 case 0:
69 printf ("vBank: %u\n", ((sw & 0x30) >> 4));
70 break;
71 case 1:
72 printf ("NAND\n");
73 break;
74 case 2:
75 case 3:
76 puts ("Promjet\n");
77 break;
78 }
79
80 return 0;
81}
82
Timur Tabi9b45b5a2010-06-14 15:28:24 -050083#define CONFIG_TFP410_I2C_ADDR 0x38
84
Timur Tabi8848d472010-07-21 16:56:19 -050085/* Masks for the SSI_TDM and AUDCLK bits of the ngPIXIS BRDCFG1 register. */
86#define CONFIG_PIXIS_BRDCFG1_SSI_TDM_MASK 0x0c
87#define CONFIG_PIXIS_BRDCFG1_AUDCLK_MASK 0x03
88
89/* Route the I2C1 pins to the SSI port instead. */
90#define CONFIG_PIXIS_BRDCFG1_SSI_TDM_SSI 0x08
91
92/* Choose the 12.288Mhz codec reference clock */
93#define CONFIG_PIXIS_BRDCFG1_AUDCLK_12 0x02
94
95/* Choose the 11.2896Mhz codec reference clock */
96#define CONFIG_PIXIS_BRDCFG1_AUDCLK_11 0x01
97
Jiang Yutangf71233d2011-03-04 10:25:54 +080098/* Connect to USB2 */
99#define CONFIG_PIXIS_BRDCFG0_USB2 0x10
100/* Connect to TFM bus */
101#define CONFIG_PIXIS_BRDCFG1_TDM 0x0c
102/* Connect to SPI */
103#define CONFIG_PIXIS_BRDCFG0_SPI 0x80
104
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500105int misc_init_r(void)
106{
107 u8 temp;
Timur Tabi8848d472010-07-21 16:56:19 -0500108 const char *audclk;
109 size_t arglen;
Jiang Yutangf71233d2011-03-04 10:25:54 +0800110 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500111
Timur Tabi8848d472010-07-21 16:56:19 -0500112 /* For DVI, enable the TFP410 Encoder. */
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500113
114 temp = 0xBF;
115 if (i2c_write(CONFIG_TFP410_I2C_ADDR, 0x08, 1, &temp, sizeof(temp)) < 0)
116 return -1;
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500117 if (i2c_read(CONFIG_TFP410_I2C_ADDR, 0x08, 1, &temp, sizeof(temp)) < 0)
118 return -1;
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500119 debug("DVI Encoder Read: 0x%02x\n", temp);
120
121 temp = 0x10;
122 if (i2c_write(CONFIG_TFP410_I2C_ADDR, 0x0A, 1, &temp, sizeof(temp)) < 0)
123 return -1;
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500124 if (i2c_read(CONFIG_TFP410_I2C_ADDR, 0x0A, 1, &temp, sizeof(temp)) < 0)
125 return -1;
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500126 debug("DVI Encoder Read: 0x%02x\n",temp);
127
Jiang Yutangf71233d2011-03-04 10:25:54 +0800128 /* Enable the USB2 in PMUXCR2 and FGPA */
129 if (hwconfig("usb2")) {
130 clrsetbits_be32(&gur->pmuxcr2, MPC85xx_PMUXCR2_ETSECUSB_MASK,
131 MPC85xx_PMUXCR2_USB);
132 setbits_8(&pixis->brdcfg0, CONFIG_PIXIS_BRDCFG0_USB2);
133 }
134
135 /* tdm and audio can not enable simultaneous*/
136 if (hwconfig("tdm") && hwconfig("audclk")){
137 printf("WARNING: TDM and AUDIO can not be enabled simultaneous !\n");
138 return -1;
139 }
140
141 /* Enable the TDM in PMUXCR and FGPA */
142 if (hwconfig("tdm")) {
143 clrsetbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_TDM_MASK,
144 MPC85xx_PMUXCR_TDM);
145 setbits_8(&pixis->brdcfg1, CONFIG_PIXIS_BRDCFG1_TDM);
146 /* TDM need some configration option by SPI */
147 clrsetbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_SPI_MASK,
148 MPC85xx_PMUXCR_SPI);
149 setbits_8(&pixis->brdcfg0, CONFIG_PIXIS_BRDCFG0_SPI);
150 }
151
Timur Tabi8848d472010-07-21 16:56:19 -0500152 /*
153 * Enable the reference clock for the WM8776 codec, and route the MUX
154 * pins for SSI. The default is the 12.288 MHz clock
155 */
156
Jiang Yutangf71233d2011-03-04 10:25:54 +0800157 if (hwconfig("audclk")) {
158 temp = in_8(&pixis->brdcfg1) & ~(CONFIG_PIXIS_BRDCFG1_SSI_TDM_MASK |
159 CONFIG_PIXIS_BRDCFG1_AUDCLK_MASK);
160 temp |= CONFIG_PIXIS_BRDCFG1_SSI_TDM_SSI;
Timur Tabi8848d472010-07-21 16:56:19 -0500161
Jiang Yutangf71233d2011-03-04 10:25:54 +0800162 audclk = hwconfig_arg("audclk", &arglen);
163 /* Check the first two chars only */
164 if (audclk && (strncmp(audclk, "11", 2) == 0))
165 temp |= CONFIG_PIXIS_BRDCFG1_AUDCLK_11;
166 else
167 temp |= CONFIG_PIXIS_BRDCFG1_AUDCLK_12;
168 setbits_8(&pixis->brdcfg1, temp);
169 }
Timur Tabi8848d472010-07-21 16:56:19 -0500170
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500171 return 0;
172}
173
Kumar Galab07fbe62010-07-08 22:27:30 -0500174/*
175 * A list of PCI and SATA slots
176 */
177enum slot_id {
178 SLOT_PCIE1 = 1,
179 SLOT_PCIE2,
180 SLOT_PCIE3,
181 SLOT_PCIE4,
182 SLOT_PCIE5,
183 SLOT_SATA1,
184 SLOT_SATA2
185};
186
187/*
188 * This array maps the slot identifiers to their names on the P1022DS board.
189 */
190static const char *slot_names[] = {
191 [SLOT_PCIE1] = "Slot 1",
192 [SLOT_PCIE2] = "Slot 2",
193 [SLOT_PCIE3] = "Slot 3",
194 [SLOT_PCIE4] = "Slot 4",
195 [SLOT_PCIE5] = "Mini-PCIe",
196 [SLOT_SATA1] = "SATA 1",
197 [SLOT_SATA2] = "SATA 2",
198};
199
200/*
201 * This array maps a given SERDES configuration and SERDES device to the PCI or
202 * SATA slot that it connects to. This mapping is hard-coded in the FPGA.
203 */
204static u8 serdes_dev_slot[][SATA2 + 1] = {
205 [0x01] = { [PCIE3] = SLOT_PCIE4, [PCIE2] = SLOT_PCIE5 },
206 [0x02] = { [SATA1] = SLOT_SATA1, [SATA2] = SLOT_SATA2 },
207 [0x09] = { [PCIE1] = SLOT_PCIE1, [PCIE3] = SLOT_PCIE4,
208 [PCIE2] = SLOT_PCIE5 },
209 [0x16] = { [PCIE1] = SLOT_PCIE1, [PCIE3] = SLOT_PCIE2,
210 [PCIE2] = SLOT_PCIE3,
211 [SATA1] = SLOT_SATA1, [SATA2] = SLOT_SATA2 },
212 [0x17] = { [PCIE1] = SLOT_PCIE1, [PCIE3] = SLOT_PCIE2,
213 [PCIE2] = SLOT_PCIE3 },
214 [0x1a] = { [PCIE1] = SLOT_PCIE1, [PCIE2] = SLOT_PCIE3,
215 [PCIE2] = SLOT_PCIE3,
216 [SATA1] = SLOT_SATA1, [SATA2] = SLOT_SATA2 },
217 [0x1c] = { [PCIE1] = SLOT_PCIE1,
218 [SATA1] = SLOT_SATA1, [SATA2] = SLOT_SATA2 },
219 [0x1e] = { [PCIE1] = SLOT_PCIE1, [PCIE3] = SLOT_PCIE3 },
220 [0x1f] = { [PCIE1] = SLOT_PCIE1 },
221};
222
223
224/*
225 * Returns the name of the slot to which the PCIe or SATA controller is
226 * connected
227 */
Kumar Gala4d4384e2010-12-15 14:21:41 -0600228const char *board_serdes_name(enum srds_prtcl device)
Kumar Galab07fbe62010-07-08 22:27:30 -0500229{
230 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
231 u32 pordevsr = in_be32(&gur->pordevsr);
232 unsigned int srds_cfg = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >>
233 MPC85xx_PORDEVSR_IO_SEL_SHIFT;
234 enum slot_id slot = serdes_dev_slot[srds_cfg][device];
235 const char *name = slot_names[slot];
236
237 if (name)
238 return name;
239 else
240 return "Nothing";
241}
242
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500243#ifdef CONFIG_PCI
244void pci_init_board(void)
245{
Kumar Gala4d4384e2010-12-15 14:21:41 -0600246 fsl_pcie_init_board(0);
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500247}
248#endif
249
250int board_early_init_r(void)
251{
252 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
York Sun220c3462014-06-24 21:16:20 -0700253 int flash_esel = find_tlb_idx((void *)flashbase, 1);
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500254
255 /*
256 * Remap Boot flash + PROMJET region to caching-inhibited
257 * so that flash can be erased properly.
258 */
259
260 /* Flush d-cache and invalidate i-cache of any FLASH data */
261 flush_dcache();
262 invalidate_icache();
263
York Sun220c3462014-06-24 21:16:20 -0700264 if (flash_esel == -1) {
265 /* very unlikely unless something is messed up */
266 puts("Error: Could not find TLB for FLASH BASE\n");
267 flash_esel = 2; /* give our best effort to continue */
268 } else {
269 /* invalidate existing TLB entry for flash + promjet */
270 disable_tlb(flash_esel);
271 }
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500272
273 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
274 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
275 0, flash_esel, BOOKE_PAGESZ_256M, 1);
276
277 return 0;
278}
279
280/*
281 * Initialize on-board and/or PCI Ethernet devices
282 *
283 * Returns:
284 * <0, error
285 * 0, no ethernet devices found
286 * >0, number of ethernet devices initialized
287 */
288int board_eth_init(bd_t *bis)
289{
Andy Fleming422effd2011-04-08 02:10:54 -0500290 struct fsl_pq_mdio_info mdio_info;
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500291 struct tsec_info_struct tsec_info[2];
292 unsigned int num = 0;
293
294#ifdef CONFIG_TSEC1
295 SET_STD_TSEC_INFO(tsec_info[num], 1);
296 num++;
297#endif
298#ifdef CONFIG_TSEC2
299 SET_STD_TSEC_INFO(tsec_info[num], 2);
300 num++;
301#endif
302
Andy Fleming422effd2011-04-08 02:10:54 -0500303 mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
304 mdio_info.name = DEFAULT_MII_NAME;
305 fsl_pq_mdio_init(bis, &mdio_info);
306
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500307 return tsec_eth_init(bis, tsec_info, num) + pci_eth_init(bis);
308}
309
310#ifdef CONFIG_OF_BOARD_SETUP
Timur Tabi8848d472010-07-21 16:56:19 -0500311/**
312 * ft_codec_setup - fix up the clock-frequency property of the codec node
313 *
314 * Update the clock-frequency property based on the value of the 'audclk'
Timur Tabia6bfef72011-06-08 12:10:49 -0500315 * hwconfig option. If audclk is not specified, then don't write anything
316 * to the device tree, because it means that the codec clock is disabled.
Timur Tabi8848d472010-07-21 16:56:19 -0500317 */
318static void ft_codec_setup(void *blob, const char *compatible)
319{
320 const char *audclk;
321 size_t arglen;
322 u32 freq;
323
324 audclk = hwconfig_arg("audclk", &arglen);
Timur Tabia6bfef72011-06-08 12:10:49 -0500325 if (audclk) {
326 if (strncmp(audclk, "11", 2) == 0)
327 freq = 11289600;
328 else
329 freq = 12288000;
Timur Tabi8848d472010-07-21 16:56:19 -0500330
Timur Tabia6bfef72011-06-08 12:10:49 -0500331 do_fixup_by_compat_u32(blob, compatible, "clock-frequency",
332 freq, 1);
333 }
Timur Tabi8848d472010-07-21 16:56:19 -0500334}
335
Simon Glass2aec3cc2014-10-23 18:58:47 -0600336int ft_board_setup(void *blob, bd_t *bd)
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500337{
338 phys_addr_t base;
339 phys_size_t size;
340
341 ft_cpu_setup(blob, bd);
342
Simon Glassda1a1342017-08-03 12:22:15 -0600343 base = env_get_bootm_low();
344 size = env_get_bootm_size();
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500345
346 fdt_fixup_memory(blob, (u64)base, (u64)size);
347
ramneek mehresh3d339632012-04-18 19:39:53 +0000348#ifdef CONFIG_HAS_FSL_DR_USB
Sriram Dash9fd465c2016-09-16 17:12:15 +0530349 fsl_fdt_fixup_dr_usb(blob, bd);
ramneek mehresh3d339632012-04-18 19:39:53 +0000350#endif
351
Kumar Galad0f27d32010-07-08 22:37:44 -0500352 FT_FSL_PCI_SETUP;
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500353
354#ifdef CONFIG_FSL_SGMII_RISER
355 fsl_sgmii_riser_fdt_fixup(blob);
356#endif
Timur Tabi8848d472010-07-21 16:56:19 -0500357
358 /* Update the WM8776 node's clock frequency property */
359 ft_codec_setup(blob, "wlf,wm8776");
Simon Glass2aec3cc2014-10-23 18:58:47 -0600360
361 return 0;
Timur Tabi9b45b5a2010-06-14 15:28:24 -0500362}
363#endif