blob: 1842d14e87e674e65a66ae03c1014ce4f2913974 [file] [log] [blame]
York Sun7288c2c2015-03-20 19:28:23 -07001/*
2 * Copyright 2015 Freescale Semiconductor
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6#include <common.h>
7#include <malloc.h>
8#include <errno.h>
9#include <netdev.h>
10#include <fsl_ifc.h>
11#include <fsl_ddr.h>
12#include <asm/io.h>
13#include <fdt_support.h>
14#include <libfdt.h>
York Sun7288c2c2015-03-20 19:28:23 -070015#include <fsl-mc/fsl_mc.h>
16#include <environment.h>
17#include <i2c.h>
Priyanka Jain7fb79e62015-06-29 15:39:40 +053018#include <rtc.h>
Mingkai Hu9f3183d2015-10-26 19:47:50 +080019#include <asm/arch/soc.h>
Haikun Wange71a9802015-06-26 19:58:12 +080020#include <hwconfig.h>
Saksham Jainfcfdb6d2016-03-23 16:24:35 +053021#include <fsl_sec.h>
Santan Kumar54ad7b52017-03-07 11:21:03 +053022#include <asm/arch/ppa.h>
23
York Sun7288c2c2015-03-20 19:28:23 -070024
25#include "../common/qixis.h"
Prabhakar Kushwaha44937212015-11-09 16:42:07 +053026#include "ls2080aqds_qixis.h"
Priyanka Jain35cc1002017-01-19 11:12:28 +053027#include "../common/vid.h"
York Sun7288c2c2015-03-20 19:28:23 -070028
Haikun Wange71a9802015-06-26 19:58:12 +080029#define PIN_MUX_SEL_SDHC 0x00
30#define PIN_MUX_SEL_DSPI 0x0a
Yuan Yao916d9f02016-06-08 18:24:52 +080031#define SCFG_QSPICLKCTRL_DIV_20 (5 << 27)
Haikun Wange71a9802015-06-26 19:58:12 +080032
33#define SET_SDHC_MUX_SEL(reg, value) ((reg & 0xf0) | value)
34
York Sun7288c2c2015-03-20 19:28:23 -070035DECLARE_GLOBAL_DATA_PTR;
36
Haikun Wange71a9802015-06-26 19:58:12 +080037enum {
38 MUX_TYPE_SDHC,
39 MUX_TYPE_DSPI,
40};
41
York Sun7288c2c2015-03-20 19:28:23 -070042unsigned long long get_qixis_addr(void)
43{
44 unsigned long long addr;
45
46 if (gd->flags & GD_FLG_RELOC)
47 addr = QIXIS_BASE_PHYS;
48 else
49 addr = QIXIS_BASE_PHYS_EARLY;
50
51 /*
52 * IFC address under 256MB is mapped to 0x30000000, any address above
53 * is mapped to 0x5_10000000 up to 4GB.
54 */
55 addr = addr > 0x10000000 ? addr + 0x500000000ULL : addr + 0x30000000;
56
57 return addr;
58}
59
60int checkboard(void)
61{
62 char buf[64];
63 u8 sw;
64 static const char *const freq[] = {"100", "125", "156.25",
65 "100 separate SSCG"};
66 int clock;
67
Prabhakar Kushwahaff1b8e32015-05-28 14:54:07 +053068 cpu_name(buf);
69 printf("Board: %s-QDS, ", buf);
70
York Sun7288c2c2015-03-20 19:28:23 -070071 sw = QIXIS_READ(arch);
York Sun7288c2c2015-03-20 19:28:23 -070072 printf("Board Arch: V%d, ", sw >> 4);
73 printf("Board version: %c, boot from ", (sw & 0xf) + 'A' - 1);
74
Prabhakar Kushwahaff1b8e32015-05-28 14:54:07 +053075 memset((u8 *)buf, 0x00, ARRAY_SIZE(buf));
76
York Sun7288c2c2015-03-20 19:28:23 -070077 sw = QIXIS_READ(brdcfg[0]);
78 sw = (sw & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT;
79
80 if (sw < 0x8)
81 printf("vBank: %d\n", sw);
82 else if (sw == 0x8)
83 puts("PromJet\n");
84 else if (sw == 0x9)
85 puts("NAND\n");
Yuan Yaoa646f662016-06-08 18:25:00 +080086 else if (sw == 0xf)
87 puts("QSPI\n");
York Sun7288c2c2015-03-20 19:28:23 -070088 else if (sw == 0x15)
89 printf("IFCCard\n");
90 else
91 printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH);
92
93 printf("FPGA: v%d (%s), build %d",
94 (int)QIXIS_READ(scver), qixis_read_tag(buf),
95 (int)qixis_read_minor());
96 /* the timestamp string contains "\n" at the end */
97 printf(" on %s", qixis_read_time(buf));
98
99 /*
100 * Display the actual SERDES reference clocks as configured by the
101 * dip switches on the board. Note that the SWx registers could
102 * technically be set to force the reference clocks to match the
103 * values that the SERDES expects (or vice versa). For now, however,
104 * we just display both values and hope the user notices when they
105 * don't match.
106 */
107 puts("SERDES1 Reference : ");
108 sw = QIXIS_READ(brdcfg[2]);
109 clock = (sw >> 6) & 3;
110 printf("Clock1 = %sMHz ", freq[clock]);
111 clock = (sw >> 4) & 3;
112 printf("Clock2 = %sMHz", freq[clock]);
113
114 puts("\nSERDES2 Reference : ");
115 clock = (sw >> 2) & 3;
116 printf("Clock1 = %sMHz ", freq[clock]);
117 clock = (sw >> 0) & 3;
118 printf("Clock2 = %sMHz\n", freq[clock]);
119
120 return 0;
121}
122
123unsigned long get_board_sys_clk(void)
124{
125 u8 sysclk_conf = QIXIS_READ(brdcfg[1]);
126
127 switch (sysclk_conf & 0x0F) {
128 case QIXIS_SYSCLK_83:
129 return 83333333;
130 case QIXIS_SYSCLK_100:
131 return 100000000;
132 case QIXIS_SYSCLK_125:
133 return 125000000;
134 case QIXIS_SYSCLK_133:
135 return 133333333;
136 case QIXIS_SYSCLK_150:
137 return 150000000;
138 case QIXIS_SYSCLK_160:
139 return 160000000;
140 case QIXIS_SYSCLK_166:
141 return 166666666;
142 }
143 return 66666666;
144}
145
146unsigned long get_board_ddr_clk(void)
147{
148 u8 ddrclk_conf = QIXIS_READ(brdcfg[1]);
149
150 switch ((ddrclk_conf & 0x30) >> 4) {
151 case QIXIS_DDRCLK_100:
152 return 100000000;
153 case QIXIS_DDRCLK_125:
154 return 125000000;
155 case QIXIS_DDRCLK_133:
156 return 133333333;
157 }
158 return 66666666;
159}
160
161int select_i2c_ch_pca9547(u8 ch)
162{
163 int ret;
164
165 ret = i2c_write(I2C_MUX_PCA_ADDR_PRI, 0, 1, &ch, 1);
166 if (ret) {
167 puts("PCA: failed to select proper channel\n");
168 return ret;
169 }
170
171 return 0;
172}
173
Haikun Wange71a9802015-06-26 19:58:12 +0800174int config_board_mux(int ctrl_type)
175{
176 u8 reg5;
177
178 reg5 = QIXIS_READ(brdcfg[5]);
179
180 switch (ctrl_type) {
181 case MUX_TYPE_SDHC:
182 reg5 = SET_SDHC_MUX_SEL(reg5, PIN_MUX_SEL_SDHC);
183 break;
184 case MUX_TYPE_DSPI:
185 reg5 = SET_SDHC_MUX_SEL(reg5, PIN_MUX_SEL_DSPI);
186 break;
187 default:
188 printf("Wrong mux interface type\n");
189 return -1;
190 }
191
192 QIXIS_WRITE(brdcfg[5], reg5);
193
194 return 0;
195}
196
York Sun7288c2c2015-03-20 19:28:23 -0700197int board_init(void)
198{
Haikun Wange71a9802015-06-26 19:58:12 +0800199 char *env_hwconfig;
200 u32 __iomem *dcfg_ccsr = (u32 __iomem *)DCFG_BASE;
201 u32 val;
202
York Sun7288c2c2015-03-20 19:28:23 -0700203 init_final_memctl_regs();
204
Haikun Wange71a9802015-06-26 19:58:12 +0800205 val = in_le32(dcfg_ccsr + DCFG_RCWSR13 / 4);
206
Simon Glass00caae62017-08-03 12:22:12 -0600207 env_hwconfig = env_get("hwconfig");
Haikun Wange71a9802015-06-26 19:58:12 +0800208
209 if (hwconfig_f("dspi", env_hwconfig) &&
210 DCFG_RCWSR13_DSPI == (val & (u32)(0xf << 8)))
211 config_board_mux(MUX_TYPE_DSPI);
212 else
213 config_board_mux(MUX_TYPE_SDHC);
214
Yuan Yao453418f2016-06-08 18:24:57 +0800215#if defined(CONFIG_NAND) && defined(CONFIG_FSL_QSPI)
216 val = in_le32(dcfg_ccsr + DCFG_RCWSR15 / 4);
217
218 if (DCFG_RCWSR15_IFCGRPABASE_QSPI == (val & (u32)0x3))
219 QIXIS_WRITE(brdcfg[9],
220 (QIXIS_READ(brdcfg[9]) & 0xf8) |
221 FSL_QIXIS_BRDCFG9_QSPI);
222#endif
223
York Sun7288c2c2015-03-20 19:28:23 -0700224#ifdef CONFIG_ENV_IS_NOWHERE
225 gd->env_addr = (ulong)&default_environment[0];
226#endif
227 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT);
Priyanka Jain7fb79e62015-06-29 15:39:40 +0530228 rtc_enable_32khz_output();
Udit Agarwal15e7c682017-08-16 07:13:29 -0400229#ifdef CONFIG_FSL_CAAM
230 sec_init();
231#endif
Santan Kumar54ad7b52017-03-07 11:21:03 +0530232
233#ifdef CONFIG_FSL_LS_PPA
234 ppa_init();
235#endif
236
York Sun7288c2c2015-03-20 19:28:23 -0700237 return 0;
238}
239
240int board_early_init_f(void)
241{
Yuan Yao8c77ef82016-06-08 18:24:54 +0800242#ifdef CONFIG_SYS_I2C_EARLY_INIT
243 i2c_early_init_f();
244#endif
York Sun7288c2c2015-03-20 19:28:23 -0700245 fsl_lsch3_early_init_f();
Yuan Yao916d9f02016-06-08 18:24:52 +0800246#ifdef CONFIG_FSL_QSPI
247 /* input clk: 1/2 platform clk, output: input/20 */
248 out_le32(SCFG_BASE + SCFG_QSPICLKCTLR, SCFG_QSPICLKCTRL_DIV_20);
249#endif
York Sun7288c2c2015-03-20 19:28:23 -0700250 return 0;
251}
252
Priyanka Jain35cc1002017-01-19 11:12:28 +0530253int misc_init_r(void)
254{
255 if (adjust_vdd(0))
256 printf("Warning: Adjusting core voltage failed.\n");
257
258 return 0;
259}
260
York Sun7288c2c2015-03-20 19:28:23 -0700261void detail_board_ddr_info(void)
262{
263 puts("\nDDR ");
264 print_size(gd->bd->bi_dram[0].size + gd->bd->bi_dram[1].size, "");
265 print_ddr_info(0);
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530266#ifdef CONFIG_SYS_FSL_HAS_DP_DDR
York Sun3c1d2182016-04-04 11:41:26 -0700267 if (soc_has_dp_ddr() && gd->bd->bi_dram[2].size) {
York Sun7288c2c2015-03-20 19:28:23 -0700268 puts("\nDP-DDR ");
269 print_size(gd->bd->bi_dram[2].size, "");
270 print_ddr_info(CONFIG_DP_DDR_CTRL);
271 }
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530272#endif
York Sun7288c2c2015-03-20 19:28:23 -0700273}
274
York Sun7288c2c2015-03-20 19:28:23 -0700275#if defined(CONFIG_ARCH_MISC_INIT)
276int arch_misc_init(void)
277{
York Sun7288c2c2015-03-20 19:28:23 -0700278 return 0;
279}
280#endif
281
Santan Kumar1f55a932017-05-05 15:42:29 +0530282#if defined(CONFIG_FSL_MC_ENET) && !defined(CONFIG_SPL_BUILD)
York Sun7288c2c2015-03-20 19:28:23 -0700283void fdt_fixup_board_enet(void *fdt)
284{
285 int offset;
286
Stuart Yodere91f1de2016-03-02 16:37:13 -0600287 offset = fdt_path_offset(fdt, "/soc/fsl-mc");
York Sun7288c2c2015-03-20 19:28:23 -0700288
289 if (offset < 0)
Stuart Yodere91f1de2016-03-02 16:37:13 -0600290 offset = fdt_path_offset(fdt, "/fsl-mc");
York Sun7288c2c2015-03-20 19:28:23 -0700291
292 if (offset < 0) {
293 printf("%s: ERROR: fsl-mc node not found in device tree (error %d)\n",
294 __func__, offset);
295 return;
296 }
297
298 if (get_mc_boot_status() == 0)
299 fdt_status_okay(fdt, offset);
300 else
301 fdt_status_fail(fdt, offset);
302}
Alexander Grafb7b84102016-11-17 01:02:57 +0100303
304void board_quiesce_devices(void)
305{
306 fsl_mc_ldpaa_exit(gd->bd);
307}
York Sun7288c2c2015-03-20 19:28:23 -0700308#endif
309
310#ifdef CONFIG_OF_BOARD_SETUP
311int ft_board_setup(void *blob, bd_t *bd)
312{
Bhupesh Sharmaa2dc8182015-05-28 14:54:10 +0530313 u64 base[CONFIG_NR_DRAM_BANKS];
314 u64 size[CONFIG_NR_DRAM_BANKS];
York Sun7288c2c2015-03-20 19:28:23 -0700315
316 ft_cpu_setup(blob, bd);
317
Bhupesh Sharmaa2dc8182015-05-28 14:54:10 +0530318 /* fixup DT for the two GPP DDR banks */
319 base[0] = gd->bd->bi_dram[0].start;
320 size[0] = gd->bd->bi_dram[0].size;
321 base[1] = gd->bd->bi_dram[1].start;
322 size[1] = gd->bd->bi_dram[1].size;
323
York Sun36cc0de2017-03-06 09:02:28 -0800324#ifdef CONFIG_RESV_RAM
325 /* reduce size if reserved memory is within this bank */
326 if (gd->arch.resv_ram >= base[0] &&
327 gd->arch.resv_ram < base[0] + size[0])
328 size[0] = gd->arch.resv_ram - base[0];
329 else if (gd->arch.resv_ram >= base[1] &&
330 gd->arch.resv_ram < base[1] + size[1])
331 size[1] = gd->arch.resv_ram - base[1];
332#endif
333
Bhupesh Sharmaa2dc8182015-05-28 14:54:10 +0530334 fdt_fixup_memory_banks(blob, base, size, 2);
York Sun7288c2c2015-03-20 19:28:23 -0700335
Sriram Dasha5c289b2016-09-16 17:12:15 +0530336 fsl_fdt_fixup_dr_usb(blob, bd);
Sriram Dashef53b8c2016-06-13 09:58:36 +0530337
Santan Kumar1f55a932017-05-05 15:42:29 +0530338#if defined(CONFIG_FSL_MC_ENET) && !defined(CONFIG_SPL_BUILD)
York Sun7288c2c2015-03-20 19:28:23 -0700339 fdt_fixup_board_enet(blob);
York Sun7288c2c2015-03-20 19:28:23 -0700340#endif
341
342 return 0;
343}
344#endif
345
346void qixis_dump_switch(void)
347{
348 int i, nr_of_cfgsw;
349
350 QIXIS_WRITE(cms[0], 0x00);
351 nr_of_cfgsw = QIXIS_READ(cms[1]);
352
353 puts("DIP switch settings dump:\n");
354 for (i = 1; i <= nr_of_cfgsw; i++) {
355 QIXIS_WRITE(cms[0], i);
356 printf("SW%d = (0x%02x)\n", i, QIXIS_READ(cms[1]));
357 }
358}