blob: 9406e75517069f07381868fb1274c926c30be38a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Timur Tabic59e1b42010-06-14 15:28:24 -05002/*
ramneek mehresh3d7506f2012-04-18 19:39:53 +00003 * Copyright 2010-2012 Freescale Semiconductor, Inc.
Timur Tabic59e1b42010-06-14 15:28:24 -05004 * Authors: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
5 * Timur Tabi <timur@freescale.com>
Timur Tabic59e1b42010-06-14 15:28:24 -05006 */
7
8#include <common.h>
9#include <command.h>
Simon Glass7b51b572019-08-01 09:46:52 -060010#include <env.h>
Timur Tabic59e1b42010-06-14 15:28:24 -050011#include <pci.h>
12#include <asm/processor.h>
13#include <asm/mmu.h>
14#include <asm/cache.h>
15#include <asm/immap_85xx.h>
16#include <asm/fsl_pci.h>
York Sun5614e712013-09-30 09:22:09 -070017#include <fsl_ddr_sdram.h>
Timur Tabic59e1b42010-06-14 15:28:24 -050018#include <asm/fsl_serdes.h>
19#include <asm/io.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090020#include <linux/libfdt.h>
Timur Tabic59e1b42010-06-14 15:28:24 -050021#include <fdt_support.h>
Andy Fleming063c1262011-04-08 02:10:54 -050022#include <fsl_mdio.h>
Timur Tabic59e1b42010-06-14 15:28:24 -050023#include <tsec.h>
24#include <asm/fsl_law.h>
Timur Tabic59e1b42010-06-14 15:28:24 -050025#include <netdev.h>
26#include <i2c.h>
Timur Tabia2d12f82010-07-21 16:56:19 -050027#include <hwconfig.h>
Timur Tabic59e1b42010-06-14 15:28:24 -050028
29#include "../common/ngpixis.h"
30
Timur Tabic59e1b42010-06-14 15:28:24 -050031int board_early_init_f(void)
32{
33 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
34
35 /* Set pmuxcr to allow both i2c1 and i2c2 */
36 setbits_be32(&gur->pmuxcr, 0x1000);
Matthew McClintockaf253602012-05-18 06:04:17 +000037#ifdef CONFIG_SYS_RAMBOOT
38 setbits_be32(&gur->pmuxcr,
39 in_be32(&gur->pmuxcr) | MPC85xx_PMUXCR_SD_DATA);
40#endif
Timur Tabic59e1b42010-06-14 15:28:24 -050041
42 /* Read back the register to synchronize the write. */
43 in_be32(&gur->pmuxcr);
44
45 /* Set the pin muxing to enable ETSEC2. */
46 clrbits_be32(&gur->pmuxcr2, 0x001F8000);
47
Jiang Yutang9b6e9d12011-02-24 16:11:56 +080048 /* Enable the SPI */
49 clrsetbits_8(&pixis->brdcfg0, PIXIS_ELBC_SPI_MASK, PIXIS_SPI);
50
Timur Tabic59e1b42010-06-14 15:28:24 -050051 return 0;
52}
53
54int checkboard(void)
55{
56 u8 sw;
57
Timur Tabi5d065c32012-03-15 11:42:27 +000058 printf("Board: P1022DS Sys ID: 0x%02x, "
59 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
Timur Tabic59e1b42010-06-14 15:28:24 -050060 in_8(&pixis->id), in_8(&pixis->arch), in_8(&pixis->scver));
61
62 sw = in_8(&PIXIS_SW(PIXIS_LBMAP_SWITCH));
63
64 switch ((sw & PIXIS_LBMAP_MASK) >> 6) {
65 case 0:
66 printf ("vBank: %u\n", ((sw & 0x30) >> 4));
67 break;
68 case 1:
69 printf ("NAND\n");
70 break;
71 case 2:
72 case 3:
73 puts ("Promjet\n");
74 break;
75 }
76
77 return 0;
78}
79
Timur Tabic59e1b42010-06-14 15:28:24 -050080#define CONFIG_TFP410_I2C_ADDR 0x38
81
Timur Tabia2d12f82010-07-21 16:56:19 -050082/* Masks for the SSI_TDM and AUDCLK bits of the ngPIXIS BRDCFG1 register. */
83#define CONFIG_PIXIS_BRDCFG1_SSI_TDM_MASK 0x0c
84#define CONFIG_PIXIS_BRDCFG1_AUDCLK_MASK 0x03
85
86/* Route the I2C1 pins to the SSI port instead. */
87#define CONFIG_PIXIS_BRDCFG1_SSI_TDM_SSI 0x08
88
89/* Choose the 12.288Mhz codec reference clock */
90#define CONFIG_PIXIS_BRDCFG1_AUDCLK_12 0x02
91
92/* Choose the 11.2896Mhz codec reference clock */
93#define CONFIG_PIXIS_BRDCFG1_AUDCLK_11 0x01
94
Jiang Yutangb93f81a2011-03-04 10:25:54 +080095/* Connect to USB2 */
96#define CONFIG_PIXIS_BRDCFG0_USB2 0x10
97/* Connect to TFM bus */
98#define CONFIG_PIXIS_BRDCFG1_TDM 0x0c
99/* Connect to SPI */
100#define CONFIG_PIXIS_BRDCFG0_SPI 0x80
101
Timur Tabic59e1b42010-06-14 15:28:24 -0500102int misc_init_r(void)
103{
104 u8 temp;
Timur Tabia2d12f82010-07-21 16:56:19 -0500105 const char *audclk;
106 size_t arglen;
Jiang Yutangb93f81a2011-03-04 10:25:54 +0800107 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Timur Tabic59e1b42010-06-14 15:28:24 -0500108
Timur Tabia2d12f82010-07-21 16:56:19 -0500109 /* For DVI, enable the TFP410 Encoder. */
Timur Tabic59e1b42010-06-14 15:28:24 -0500110
111 temp = 0xBF;
112 if (i2c_write(CONFIG_TFP410_I2C_ADDR, 0x08, 1, &temp, sizeof(temp)) < 0)
113 return -1;
Timur Tabic59e1b42010-06-14 15:28:24 -0500114 if (i2c_read(CONFIG_TFP410_I2C_ADDR, 0x08, 1, &temp, sizeof(temp)) < 0)
115 return -1;
Timur Tabic59e1b42010-06-14 15:28:24 -0500116 debug("DVI Encoder Read: 0x%02x\n", temp);
117
118 temp = 0x10;
119 if (i2c_write(CONFIG_TFP410_I2C_ADDR, 0x0A, 1, &temp, sizeof(temp)) < 0)
120 return -1;
Timur Tabic59e1b42010-06-14 15:28:24 -0500121 if (i2c_read(CONFIG_TFP410_I2C_ADDR, 0x0A, 1, &temp, sizeof(temp)) < 0)
122 return -1;
Timur Tabic59e1b42010-06-14 15:28:24 -0500123 debug("DVI Encoder Read: 0x%02x\n",temp);
124
Jiang Yutangb93f81a2011-03-04 10:25:54 +0800125 /* Enable the USB2 in PMUXCR2 and FGPA */
126 if (hwconfig("usb2")) {
127 clrsetbits_be32(&gur->pmuxcr2, MPC85xx_PMUXCR2_ETSECUSB_MASK,
128 MPC85xx_PMUXCR2_USB);
129 setbits_8(&pixis->brdcfg0, CONFIG_PIXIS_BRDCFG0_USB2);
130 }
131
132 /* tdm and audio can not enable simultaneous*/
133 if (hwconfig("tdm") && hwconfig("audclk")){
134 printf("WARNING: TDM and AUDIO can not be enabled simultaneous !\n");
135 return -1;
136 }
137
138 /* Enable the TDM in PMUXCR and FGPA */
139 if (hwconfig("tdm")) {
140 clrsetbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_TDM_MASK,
141 MPC85xx_PMUXCR_TDM);
142 setbits_8(&pixis->brdcfg1, CONFIG_PIXIS_BRDCFG1_TDM);
143 /* TDM need some configration option by SPI */
144 clrsetbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_SPI_MASK,
145 MPC85xx_PMUXCR_SPI);
146 setbits_8(&pixis->brdcfg0, CONFIG_PIXIS_BRDCFG0_SPI);
147 }
148
Timur Tabia2d12f82010-07-21 16:56:19 -0500149 /*
150 * Enable the reference clock for the WM8776 codec, and route the MUX
151 * pins for SSI. The default is the 12.288 MHz clock
152 */
153
Jiang Yutangb93f81a2011-03-04 10:25:54 +0800154 if (hwconfig("audclk")) {
155 temp = in_8(&pixis->brdcfg1) & ~(CONFIG_PIXIS_BRDCFG1_SSI_TDM_MASK |
156 CONFIG_PIXIS_BRDCFG1_AUDCLK_MASK);
157 temp |= CONFIG_PIXIS_BRDCFG1_SSI_TDM_SSI;
Timur Tabia2d12f82010-07-21 16:56:19 -0500158
Jiang Yutangb93f81a2011-03-04 10:25:54 +0800159 audclk = hwconfig_arg("audclk", &arglen);
160 /* Check the first two chars only */
161 if (audclk && (strncmp(audclk, "11", 2) == 0))
162 temp |= CONFIG_PIXIS_BRDCFG1_AUDCLK_11;
163 else
164 temp |= CONFIG_PIXIS_BRDCFG1_AUDCLK_12;
165 setbits_8(&pixis->brdcfg1, temp);
166 }
Timur Tabia2d12f82010-07-21 16:56:19 -0500167
Timur Tabic59e1b42010-06-14 15:28:24 -0500168 return 0;
169}
170
Kumar Gala9f43d792010-07-08 22:27:30 -0500171/*
172 * A list of PCI and SATA slots
173 */
174enum slot_id {
175 SLOT_PCIE1 = 1,
176 SLOT_PCIE2,
177 SLOT_PCIE3,
178 SLOT_PCIE4,
179 SLOT_PCIE5,
180 SLOT_SATA1,
181 SLOT_SATA2
182};
183
184/*
185 * This array maps the slot identifiers to their names on the P1022DS board.
186 */
187static const char *slot_names[] = {
188 [SLOT_PCIE1] = "Slot 1",
189 [SLOT_PCIE2] = "Slot 2",
190 [SLOT_PCIE3] = "Slot 3",
191 [SLOT_PCIE4] = "Slot 4",
192 [SLOT_PCIE5] = "Mini-PCIe",
193 [SLOT_SATA1] = "SATA 1",
194 [SLOT_SATA2] = "SATA 2",
195};
196
197/*
198 * This array maps a given SERDES configuration and SERDES device to the PCI or
199 * SATA slot that it connects to. This mapping is hard-coded in the FPGA.
200 */
201static u8 serdes_dev_slot[][SATA2 + 1] = {
202 [0x01] = { [PCIE3] = SLOT_PCIE4, [PCIE2] = SLOT_PCIE5 },
203 [0x02] = { [SATA1] = SLOT_SATA1, [SATA2] = SLOT_SATA2 },
204 [0x09] = { [PCIE1] = SLOT_PCIE1, [PCIE3] = SLOT_PCIE4,
205 [PCIE2] = SLOT_PCIE5 },
206 [0x16] = { [PCIE1] = SLOT_PCIE1, [PCIE3] = SLOT_PCIE2,
207 [PCIE2] = SLOT_PCIE3,
208 [SATA1] = SLOT_SATA1, [SATA2] = SLOT_SATA2 },
209 [0x17] = { [PCIE1] = SLOT_PCIE1, [PCIE3] = SLOT_PCIE2,
210 [PCIE2] = SLOT_PCIE3 },
211 [0x1a] = { [PCIE1] = SLOT_PCIE1, [PCIE2] = SLOT_PCIE3,
212 [PCIE2] = SLOT_PCIE3,
213 [SATA1] = SLOT_SATA1, [SATA2] = SLOT_SATA2 },
214 [0x1c] = { [PCIE1] = SLOT_PCIE1,
215 [SATA1] = SLOT_SATA1, [SATA2] = SLOT_SATA2 },
216 [0x1e] = { [PCIE1] = SLOT_PCIE1, [PCIE3] = SLOT_PCIE3 },
217 [0x1f] = { [PCIE1] = SLOT_PCIE1 },
218};
219
220
221/*
222 * Returns the name of the slot to which the PCIe or SATA controller is
223 * connected
224 */
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600225const char *board_serdes_name(enum srds_prtcl device)
Kumar Gala9f43d792010-07-08 22:27:30 -0500226{
227 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
228 u32 pordevsr = in_be32(&gur->pordevsr);
229 unsigned int srds_cfg = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >>
230 MPC85xx_PORDEVSR_IO_SEL_SHIFT;
231 enum slot_id slot = serdes_dev_slot[srds_cfg][device];
232 const char *name = slot_names[slot];
233
234 if (name)
235 return name;
236 else
237 return "Nothing";
238}
239
Timur Tabic59e1b42010-06-14 15:28:24 -0500240#ifdef CONFIG_PCI
241void pci_init_board(void)
242{
Kumar Galaa4aafcc2010-12-15 14:21:41 -0600243 fsl_pcie_init_board(0);
Timur Tabic59e1b42010-06-14 15:28:24 -0500244}
245#endif
246
247int board_early_init_r(void)
248{
249 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
York Sun9d045682014-06-24 21:16:20 -0700250 int flash_esel = find_tlb_idx((void *)flashbase, 1);
Timur Tabic59e1b42010-06-14 15:28:24 -0500251
252 /*
253 * Remap Boot flash + PROMJET region to caching-inhibited
254 * so that flash can be erased properly.
255 */
256
257 /* Flush d-cache and invalidate i-cache of any FLASH data */
258 flush_dcache();
259 invalidate_icache();
260
York Sun9d045682014-06-24 21:16:20 -0700261 if (flash_esel == -1) {
262 /* very unlikely unless something is messed up */
263 puts("Error: Could not find TLB for FLASH BASE\n");
264 flash_esel = 2; /* give our best effort to continue */
265 } else {
266 /* invalidate existing TLB entry for flash + promjet */
267 disable_tlb(flash_esel);
268 }
Timur Tabic59e1b42010-06-14 15:28:24 -0500269
270 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
271 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
272 0, flash_esel, BOOKE_PAGESZ_256M, 1);
273
274 return 0;
275}
276
277/*
278 * Initialize on-board and/or PCI Ethernet devices
279 *
280 * Returns:
281 * <0, error
282 * 0, no ethernet devices found
283 * >0, number of ethernet devices initialized
284 */
285int board_eth_init(bd_t *bis)
286{
Andy Fleming063c1262011-04-08 02:10:54 -0500287 struct fsl_pq_mdio_info mdio_info;
Timur Tabic59e1b42010-06-14 15:28:24 -0500288 struct tsec_info_struct tsec_info[2];
289 unsigned int num = 0;
290
291#ifdef CONFIG_TSEC1
292 SET_STD_TSEC_INFO(tsec_info[num], 1);
293 num++;
294#endif
295#ifdef CONFIG_TSEC2
296 SET_STD_TSEC_INFO(tsec_info[num], 2);
297 num++;
298#endif
299
Andy Fleming063c1262011-04-08 02:10:54 -0500300 mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
301 mdio_info.name = DEFAULT_MII_NAME;
302 fsl_pq_mdio_init(bis, &mdio_info);
303
Timur Tabic59e1b42010-06-14 15:28:24 -0500304 return tsec_eth_init(bis, tsec_info, num) + pci_eth_init(bis);
305}
306
307#ifdef CONFIG_OF_BOARD_SETUP
Timur Tabia2d12f82010-07-21 16:56:19 -0500308/**
309 * ft_codec_setup - fix up the clock-frequency property of the codec node
310 *
311 * Update the clock-frequency property based on the value of the 'audclk'
Timur Tabi29b83d92011-06-08 12:10:49 -0500312 * hwconfig option. If audclk is not specified, then don't write anything
313 * to the device tree, because it means that the codec clock is disabled.
Timur Tabia2d12f82010-07-21 16:56:19 -0500314 */
315static void ft_codec_setup(void *blob, const char *compatible)
316{
317 const char *audclk;
318 size_t arglen;
319 u32 freq;
320
321 audclk = hwconfig_arg("audclk", &arglen);
Timur Tabi29b83d92011-06-08 12:10:49 -0500322 if (audclk) {
323 if (strncmp(audclk, "11", 2) == 0)
324 freq = 11289600;
325 else
326 freq = 12288000;
Timur Tabia2d12f82010-07-21 16:56:19 -0500327
Timur Tabi29b83d92011-06-08 12:10:49 -0500328 do_fixup_by_compat_u32(blob, compatible, "clock-frequency",
329 freq, 1);
330 }
Timur Tabia2d12f82010-07-21 16:56:19 -0500331}
332
Simon Glasse895a4b2014-10-23 18:58:47 -0600333int ft_board_setup(void *blob, bd_t *bd)
Timur Tabic59e1b42010-06-14 15:28:24 -0500334{
335 phys_addr_t base;
336 phys_size_t size;
337
338 ft_cpu_setup(blob, bd);
339
Simon Glass723806c2017-08-03 12:22:15 -0600340 base = env_get_bootm_low();
341 size = env_get_bootm_size();
Timur Tabic59e1b42010-06-14 15:28:24 -0500342
343 fdt_fixup_memory(blob, (u64)base, (u64)size);
344
ramneek mehresh3d7506f2012-04-18 19:39:53 +0000345#ifdef CONFIG_HAS_FSL_DR_USB
Sriram Dasha5c289b2016-09-16 17:12:15 +0530346 fsl_fdt_fixup_dr_usb(blob, bd);
ramneek mehresh3d7506f2012-04-18 19:39:53 +0000347#endif
348
Kumar Gala6525d512010-07-08 22:37:44 -0500349 FT_FSL_PCI_SETUP;
Timur Tabic59e1b42010-06-14 15:28:24 -0500350
351#ifdef CONFIG_FSL_SGMII_RISER
352 fsl_sgmii_riser_fdt_fixup(blob);
353#endif
Timur Tabia2d12f82010-07-21 16:56:19 -0500354
355 /* Update the WM8776 node's clock frequency property */
356 ft_codec_setup(blob, "wlf,wm8776");
Simon Glasse895a4b2014-10-23 18:58:47 -0600357
358 return 0;
Timur Tabic59e1b42010-06-14 15:28:24 -0500359}
360#endif