blob: 41bcf6f935e98050ffc222b2611c495eb61e8bdc [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +05302/*
3 * Copyright 2016 Freescale Semiconductor, Inc.
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +05304 */
5
6#include <common.h>
Simon Glass09140112020-05-10 11:40:03 -06007#include <command.h>
Simon Glass807765b2019-12-28 10:44:54 -07008#include <fdt_support.h>
Simon Glassdb41d652019-12-28 10:45:07 -07009#include <hang.h>
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053010#include <i2c.h>
Simon Glass90526e92020-05-10 11:39:56 -060011#include <asm/cache.h>
Simon Glass691d7192020-05-10 11:40:02 -060012#include <init.h>
Simon Glass401d1c42020-10-30 21:38:53 -060013#include <asm/global_data.h>
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053014#include <asm/io.h>
15#include <asm/arch/clock.h>
16#include <asm/arch/fsl_serdes.h>
Prabhakar Kushwaha5b404be2017-01-30 17:05:35 +053017#ifdef CONFIG_FSL_LS_PPA
18#include <asm/arch/ppa.h>
19#endif
York Sun4961eaf2017-03-06 09:02:34 -080020#include <asm/arch/mmu.h>
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053021#include <asm/arch/soc.h>
22#include <hwconfig.h>
23#include <ahci.h>
24#include <mmc.h>
25#include <scsi.h>
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053026#include <fsl_esdhc.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060027#include <env_internal.h>
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053028#include <fsl_mmdc.h>
29#include <netdev.h>
Vinitha Pillai-B5722311d14bf2017-03-23 13:48:20 +053030#include <fsl_sec.h>
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053031
32DECLARE_GLOBAL_DATA_PTR;
33
Jagdish Gediya3fa48f02018-04-13 00:18:22 +053034#define BOOT_FROM_UPPER_BANK 0x2
35#define BOOT_FROM_LOWER_BANK 0x1
36
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053037int checkboard(void)
38{
Bhaskar Upadhayab0ce1872018-01-11 20:03:31 +053039#ifdef CONFIG_TARGET_LS1012ARDB
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053040 u8 in1;
Biwen Lia0affb32019-12-31 15:33:41 +080041 int ret, bus_num = 0;
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053042
43 puts("Board: LS1012ARDB ");
44
45 /* Initialize i2c early for Serial flash bank information */
Igor Opaniuk2147a162021-02-09 13:52:45 +020046#if CONFIG_IS_ENABLED(DM_I2C)
Biwen Lia0affb32019-12-31 15:33:41 +080047 struct udevice *dev;
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053048
Biwen Lia0affb32019-12-31 15:33:41 +080049 ret = i2c_get_chip_for_busnum(bus_num, I2C_MUX_IO_ADDR,
50 1, &dev);
51 if (ret) {
52 printf("%s: Cannot find udev for a bus %d\n", __func__,
53 bus_num);
54 return -ENXIO;
55 }
56 ret = dm_i2c_read(dev, I2C_MUX_IO_1, &in1, 1);
57#else /* Non DM I2C support - will be removed */
58 i2c_set_bus_num(bus_num);
59 ret = i2c_read(I2C_MUX_IO_ADDR, I2C_MUX_IO_1, 1, &in1, 1);
60#endif
61 if (ret < 0) {
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053062 printf("Error reading i2c boot information!\n");
63 return 0; /* Don't want to hang() on this error */
64 }
65
66 puts("Version");
Yangbo Lu4a47bf82017-12-08 15:35:36 +080067 switch (in1 & SW_REV_MASK) {
68 case SW_REV_A:
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053069 puts(": RevA");
Yangbo Lu4a47bf82017-12-08 15:35:36 +080070 break;
71 case SW_REV_B:
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053072 puts(": RevB");
Yangbo Lu4a47bf82017-12-08 15:35:36 +080073 break;
74 case SW_REV_C:
75 puts(": RevC");
76 break;
77 case SW_REV_C1:
78 puts(": RevC1");
79 break;
80 case SW_REV_C2:
81 puts(": RevC2");
82 break;
83 case SW_REV_D:
84 puts(": RevD");
85 break;
86 case SW_REV_E:
87 puts(": RevE");
88 break;
89 default:
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053090 puts(": unknown");
Yangbo Lu4a47bf82017-12-08 15:35:36 +080091 break;
92 }
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053093
94 printf(", boot from QSPI");
Yangbo Lu481fb012017-12-08 15:35:35 +080095 if ((in1 & SW_BOOT_MASK) == SW_BOOT_EMU)
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053096 puts(": emu\n");
Yangbo Lu481fb012017-12-08 15:35:35 +080097 else if ((in1 & SW_BOOT_MASK) == SW_BOOT_BANK1)
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +053098 puts(": bank1\n");
Yangbo Lu481fb012017-12-08 15:35:35 +080099 else if ((in1 & SW_BOOT_MASK) == SW_BOOT_BANK2)
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530100 puts(": bank2\n");
101 else
102 puts("unknown\n");
Bhaskar Upadhayab0ce1872018-01-11 20:03:31 +0530103#else
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530104
Bhaskar Upadhayab0ce1872018-01-11 20:03:31 +0530105 puts("Board: LS1012A2G5RDB ");
106#endif
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530107 return 0;
108}
109
Rajesh Bhagat1f6180d2018-11-05 18:02:53 +0000110#ifdef CONFIG_TFABOOT
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530111int dram_init(void)
112{
Rajesh Bhagat1f6180d2018-11-05 18:02:53 +0000113 gd->ram_size = tfa_get_dram_size();
114 if (!gd->ram_size)
115 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
116
117 return 0;
118}
119#else
120int dram_init(void)
121{
122#ifndef CONFIG_TFABOOT
York Sun1fdcc8d2016-09-26 08:09:25 -0700123 static const struct fsl_mmdc_info mparam = {
124 0x05180000, /* mdctl */
125 0x00030035, /* mdpdc */
126 0x12554000, /* mdotc */
127 0xbabf7954, /* mdcfg0 */
128 0xdb328f64, /* mdcfg1 */
129 0x01ff00db, /* mdcfg2 */
130 0x00001680, /* mdmisc */
131 0x0f3c8000, /* mdref */
132 0x00002000, /* mdrwd */
133 0x00bf1023, /* mdor */
134 0x0000003f, /* mdasp */
135 0x0000022a, /* mpodtctrl */
136 0xa1390003, /* mpzqhwctrl */
137 };
138
139 mmdc_init(&mparam);
Rajesh Bhagat1f6180d2018-11-05 18:02:53 +0000140#endif
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530141
142 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
York Sun4961eaf2017-03-06 09:02:34 -0800143#if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
144 /* This will break-before-make MMU for DDR */
145 update_early_mmu_table();
146#endif
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530147
148 return 0;
149}
Rajesh Bhagat1f6180d2018-11-05 18:02:53 +0000150#endif
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530151
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530152
153int board_early_init_f(void)
154{
155 fsl_lsch2_early_init_f();
156
157 return 0;
158}
159
160int board_init(void)
161{
Ashish Kumar63b23162017-08-11 11:09:14 +0530162 struct ccsr_cci400 *cci = (struct ccsr_cci400 *)(CONFIG_SYS_IMMR +
163 CONFIG_SYS_CCI400_OFFSET);
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530164 /*
165 * Set CCI-400 control override register to enable barrier
166 * transaction
167 */
Rajesh Bhagat1f6180d2018-11-05 18:02:53 +0000168 if (current_el() == 3)
169 out_le32(&cci->ctrl_ord, CCI400_CTRLORD_EN_BARRIER);
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530170
Hou Zhiqiangb392a6d2016-08-02 19:03:27 +0800171#ifdef CONFIG_SYS_FSL_ERRATUM_A010315
172 erratum_a010315();
173#endif
174
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530175#ifdef CONFIG_ENV_IS_NOWHERE
176 gd->env_addr = (ulong)&default_environment[0];
177#endif
178
Vinitha Pillai-B5722311d14bf2017-03-23 13:48:20 +0530179#ifdef CONFIG_FSL_CAAM
180 sec_init();
181#endif
182
Prabhakar Kushwaha5b404be2017-01-30 17:05:35 +0530183#ifdef CONFIG_FSL_LS_PPA
184 ppa_init();
185#endif
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530186 return 0;
187}
188
Bhaskar Upadhayab0ce1872018-01-11 20:03:31 +0530189#ifdef CONFIG_TARGET_LS1012ARDB
Yangbo Lu5e4a6db2017-01-17 10:43:56 +0800190int esdhc_status_fixup(void *blob, const char *compat)
191{
Yangbo Lu5e4a6db2017-01-17 10:43:56 +0800192 char esdhc1_path[] = "/soc/esdhc@1580000";
Yangbo Lu6aaa5392017-12-08 15:35:37 +0800193 bool sdhc2_en = false;
Yangbo Lu5e4a6db2017-01-17 10:43:56 +0800194 u8 mux_sdhc2;
Yangbo Lu6aaa5392017-12-08 15:35:37 +0800195 u8 io = 0;
Biwen Lia0affb32019-12-31 15:33:41 +0800196 int ret, bus_num = 0;
Yangbo Lu5e4a6db2017-01-17 10:43:56 +0800197
Igor Opaniuk2147a162021-02-09 13:52:45 +0200198#if CONFIG_IS_ENABLED(DM_I2C)
Biwen Lia0affb32019-12-31 15:33:41 +0800199 struct udevice *dev;
Yangbo Lu5e4a6db2017-01-17 10:43:56 +0800200
Biwen Lia0affb32019-12-31 15:33:41 +0800201 ret = i2c_get_chip_for_busnum(bus_num, I2C_MUX_IO_ADDR,
202 1, &dev);
203 if (ret) {
204 printf("%s: Cannot find udev for a bus %d\n", __func__,
205 bus_num);
206 return -ENXIO;
207 }
208 ret = dm_i2c_read(dev, I2C_MUX_IO_1, &io, 1);
209#else
210 i2c_set_bus_num(bus_num);
Yangbo Lu6aaa5392017-12-08 15:35:37 +0800211 /* IO1[7:3] is the field of board revision info. */
Biwen Lia0affb32019-12-31 15:33:41 +0800212 ret = i2c_read(I2C_MUX_IO_ADDR, I2C_MUX_IO_1, 1, &io, 1);
213#endif
214 if (ret < 0) {
Yangbo Lu5e4a6db2017-01-17 10:43:56 +0800215 printf("Error reading i2c boot information!\n");
Yangbo Lu6aaa5392017-12-08 15:35:37 +0800216 return 0;
Yangbo Lu5e4a6db2017-01-17 10:43:56 +0800217 }
218
Yangbo Lu6aaa5392017-12-08 15:35:37 +0800219 /* hwconfig method is used for RevD and later versions. */
220 if ((io & SW_REV_MASK) <= SW_REV_D) {
221#ifdef CONFIG_HWCONFIG
222 if (hwconfig("esdhc1"))
223 sdhc2_en = true;
224#endif
225 } else {
226 /*
227 * The I2C IO-expander for mux select is used to control
228 * the muxing of various onboard interfaces.
229 *
230 * IO0[3:2] indicates SDHC2 interface demultiplexer
231 * select lines.
232 * 00 - SDIO wifi
233 * 01 - GPIO (to Arduino)
234 * 10 - eMMC Memory
235 * 11 - SPI
236 */
Igor Opaniuk2147a162021-02-09 13:52:45 +0200237#if CONFIG_IS_ENABLED(DM_I2C)
Biwen Lia0affb32019-12-31 15:33:41 +0800238 ret = dm_i2c_read(dev, I2C_MUX_IO_0, &io, 1);
239#else
240 ret = i2c_read(I2C_MUX_IO_ADDR, I2C_MUX_IO_0, 1, &io, 1);
241#endif
242 if (ret < 0) {
Yangbo Lu6aaa5392017-12-08 15:35:37 +0800243 printf("Error reading i2c boot information!\n");
244 return 0;
245 }
246
247 mux_sdhc2 = (io & 0x0c) >> 2;
248 /* Enable SDHC2 only when use SDIO wifi and eMMC */
249 if (mux_sdhc2 == 2 || mux_sdhc2 == 0)
250 sdhc2_en = true;
251 }
Yangbo Lu6aaa5392017-12-08 15:35:37 +0800252 if (sdhc2_en)
Yangbo Lu5e4a6db2017-01-17 10:43:56 +0800253 do_fixup_by_path(blob, esdhc1_path, "status", "okay",
254 sizeof("okay"), 1);
255 else
256 do_fixup_by_path(blob, esdhc1_path, "status", "disabled",
257 sizeof("disabled"), 1);
258 return 0;
259}
Bhaskar Upadhayab0ce1872018-01-11 20:03:31 +0530260#endif
Yangbo Lu5e4a6db2017-01-17 10:43:56 +0800261
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900262int ft_board_setup(void *blob, struct bd_info *bd)
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530263{
264 arch_fixup_fdt(blob);
265
266 ft_cpu_setup(blob, bd);
267
268 return 0;
269}
Jagdish Gediya3fa48f02018-04-13 00:18:22 +0530270
271static int switch_to_bank1(void)
272{
Biwen Lia0affb32019-12-31 15:33:41 +0800273 u8 data = 0xf4, chip_addr = 0x24, offset_addr = 0x03;
274 int ret, bus_num = 0;
Jagdish Gediya3fa48f02018-04-13 00:18:22 +0530275
Igor Opaniuk2147a162021-02-09 13:52:45 +0200276#if CONFIG_IS_ENABLED(DM_I2C)
Biwen Lia0affb32019-12-31 15:33:41 +0800277 struct udevice *dev;
Jagdish Gediya3fa48f02018-04-13 00:18:22 +0530278
Biwen Lia0affb32019-12-31 15:33:41 +0800279 ret = i2c_get_chip_for_busnum(bus_num, chip_addr,
280 1, &dev);
281 if (ret) {
282 printf("%s: Cannot find udev for a bus %d\n", __func__,
283 bus_num);
284 return -ENXIO;
285 }
286 /*
287 * --------------------------------------------------------------------
288 * |bus |I2C address| Device | Notes |
289 * --------------------------------------------------------------------
290 * |I2C1|0x24, 0x25,| IO expander (CFG,| Provides 16bits of General |
291 * | |0x26 | RESET, and INT/ | Purpose parallel Input/Output|
292 * | | | KW41GPIO) - NXP | (GPIO) expansion for the |
293 * | | | PCAL9555AHF | I2C bus |
294 * ----- --------------------------------------------------------------
295 * - mount three IO expander(PCAL9555AHF) on I2C1
296 *
297 * PCAL9555A device address
298 * slave address
299 * --------------------------------------
300 * | 0 | 1 | 0 | 0 | A2 | A1 | A0 | R/W |
301 * --------------------------------------
302 * | fixed | hardware selectable|
303 *
304 * Output port 1(Pinter register bits = 0x03)
305 *
306 * P1_[7~0] = 0xf4
307 * P1_0 <---> CFG_MUX_QSPI_S0
308 * P1_1 <---> CFG_MUX_QSPI_S1
309 * CFG_MUX_QSPI_S[1:0] = 0b00
310 *
311 * QSPI chip-select demultiplexer select
312 * ---------------------------------------------------------------------
313 * CFG_MUX_QSPI_S1|CFG_MUX_QSPI_S0| Values
314 * ---------------------------------------------------------------------
315 * 0 | 0 |CS routed to SPI memory bank1(default)
316 * ---------------------------------------------------------------------
317 * 0 | 1 |CS routed to SPI memory bank2
318 * ---------------------------------------------------------------------
319 *
320 */
321 ret = dm_i2c_write(dev, offset_addr, &data, 1);
322#else /* Non DM I2C support - will be removed */
323 i2c_set_bus_num(bus_num);
324 ret = i2c_write(chip_addr, offset_addr, 1, &data, 1);
325#endif
326
Jagdish Gediya3fa48f02018-04-13 00:18:22 +0530327 if (ret) {
328 printf("i2c write error to chip : %u, addr : %u, data : %u\n",
Biwen Lia0affb32019-12-31 15:33:41 +0800329 chip_addr, offset_addr, data);
Jagdish Gediya3fa48f02018-04-13 00:18:22 +0530330 }
331
332 return ret;
333}
334
335static int switch_to_bank2(void)
336{
Biwen Lia0affb32019-12-31 15:33:41 +0800337 u8 data[2] = {0xfc, 0xf5}, offset_addr[2] = {0x7, 0x3};
338 u8 chip_addr = 0x24;
339 int ret, i, bus_num = 0;
Jagdish Gediya3fa48f02018-04-13 00:18:22 +0530340
Igor Opaniuk2147a162021-02-09 13:52:45 +0200341#if CONFIG_IS_ENABLED(DM_I2C)
Biwen Lia0affb32019-12-31 15:33:41 +0800342 struct udevice *dev;
Jagdish Gediya3fa48f02018-04-13 00:18:22 +0530343
Biwen Lia0affb32019-12-31 15:33:41 +0800344 ret = i2c_get_chip_for_busnum(bus_num, chip_addr,
345 1, &dev);
Jagdish Gediya3fa48f02018-04-13 00:18:22 +0530346 if (ret) {
Biwen Lia0affb32019-12-31 15:33:41 +0800347 printf("%s: Cannot find udev for a bus %d\n", __func__,
348 bus_num);
349 return -ENXIO;
350 }
351#else /* Non DM I2C support - will be removed */
352 i2c_set_bus_num(bus_num);
353#endif
354
355 /*
356 * 1th step: config port 1
357 * - the port 1 pin is enabled as an output
358 * 2th step: output port 1
359 * - P1_[7:0] output 0xf5,
360 * then CFG_MUX_QSPI_S[1:0] equal to 0b01,
361 * CS routed to SPI memory bank2
362 */
363 for (i = 0; i < sizeof(data); i++) {
Igor Opaniuk2147a162021-02-09 13:52:45 +0200364#if CONFIG_IS_ENABLED(DM_I2C)
Biwen Lia0affb32019-12-31 15:33:41 +0800365 ret = dm_i2c_write(dev, offset_addr[i], &data[i], 1);
366#else /* Non DM I2C support - will be removed */
367 ret = i2c_write(chip_addr, offset_addr[i], 1, &data[i], 1);
368#endif
369 if (ret) {
370 printf("i2c write error to chip : %u, addr : %u, data : %u\n",
371 chip_addr, offset_addr[i], data[i]);
372 goto err;
373 }
Jagdish Gediya3fa48f02018-04-13 00:18:22 +0530374 }
375
Jagdish Gediya3fa48f02018-04-13 00:18:22 +0530376err:
377 return ret;
378}
379
380static int convert_flash_bank(int bank)
381{
382 int ret = 0;
383
384 switch (bank) {
385 case BOOT_FROM_UPPER_BANK:
386 ret = switch_to_bank2();
387 break;
388 case BOOT_FROM_LOWER_BANK:
389 ret = switch_to_bank1();
390 break;
391 default:
392 ret = CMD_RET_USAGE;
393 break;
394 };
395
396 return ret;
397}
398
Simon Glass09140112020-05-10 11:40:03 -0600399static int flash_bank_cmd(struct cmd_tbl *cmdtp, int flag, int argc,
400 char *const argv[])
Jagdish Gediya3fa48f02018-04-13 00:18:22 +0530401{
402 if (argc != 2)
403 return CMD_RET_USAGE;
404 if (strcmp(argv[1], "1") == 0)
405 convert_flash_bank(BOOT_FROM_LOWER_BANK);
406 else if (strcmp(argv[1], "2") == 0)
407 convert_flash_bank(BOOT_FROM_UPPER_BANK);
408 else
409 return CMD_RET_USAGE;
410
411 return 0;
412}
413
414U_BOOT_CMD(
415 boot_bank, 2, 0, flash_bank_cmd,
416 "Flash bank Selection Control",
417 "bank[1-lower bank/2-upper bank] (e.g. boot_bank 1)"
418);