2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2015-10-26 11:47:52 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Freescale Semiconductor
|
2021-06-03 02:51:19 +00:00
|
|
|
* Copyright 2019-2021 NXP
|
2015-10-26 11:47:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LS1043A_COMMON_H
|
|
|
|
#define __LS1043A_COMMON_H
|
|
|
|
|
2017-03-30 04:22:38 +00:00
|
|
|
/* SPL build */
|
|
|
|
#ifdef CONFIG_SPL_BUILD
|
|
|
|
#define SPL_NO_FMAN
|
|
|
|
#define SPL_NO_DSPI
|
|
|
|
#define SPL_NO_PCIE
|
|
|
|
#define SPL_NO_ENV
|
|
|
|
#define SPL_NO_MISC
|
|
|
|
#define SPL_NO_USB
|
|
|
|
#define SPL_NO_SATA
|
|
|
|
#define SPL_NO_QE
|
|
|
|
#define SPL_NO_EEPROM
|
|
|
|
#endif
|
|
|
|
#if (defined(CONFIG_SPL_BUILD) && defined(CONFIG_NAND_BOOT))
|
|
|
|
#define SPL_NO_MMC
|
|
|
|
#endif
|
2017-09-15 01:51:58 +00:00
|
|
|
#if (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SD_BOOT_QSPI))
|
2017-03-30 04:22:38 +00:00
|
|
|
#define SPL_NO_IFC
|
|
|
|
#endif
|
|
|
|
|
2017-03-22 06:36:27 +00:00
|
|
|
#include <asm/arch/stream_id_lsch2.h>
|
2015-10-26 11:47:52 +00:00
|
|
|
#include <asm/arch/config.h>
|
|
|
|
|
|
|
|
/* Link Definitions */
|
|
|
|
|
|
|
|
#define CONFIG_VERY_BIG_RAM
|
|
|
|
#define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000
|
2022-10-29 00:27:13 +00:00
|
|
|
#define CFG_SYS_FSL_DDR_SDRAM_BASE_PHY 0
|
2022-11-16 18:10:37 +00:00
|
|
|
#define CFG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
|
2015-11-23 07:23:48 +00:00
|
|
|
#define CONFIG_SYS_DDR_BLOCK2_BASE 0x880000000ULL
|
2015-10-26 11:47:52 +00:00
|
|
|
|
2020-06-01 19:53:26 +00:00
|
|
|
#define CPU_RELEASE_ADDR secondary_boot_addr
|
2015-10-26 11:47:57 +00:00
|
|
|
|
2015-10-26 11:47:52 +00:00
|
|
|
/* Serial Port */
|
2022-11-16 18:10:28 +00:00
|
|
|
#define CFG_SYS_NS16550_CLK (get_serial_clock())
|
2015-10-26 11:47:52 +00:00
|
|
|
|
2015-10-26 11:47:56 +00:00
|
|
|
/* SD boot SPL */
|
|
|
|
#ifdef CONFIG_SD_BOOT
|
2019-11-07 16:11:32 +00:00
|
|
|
#ifdef CONFIG_NXP_ESBC
|
2017-04-17 12:37:17 +00:00
|
|
|
#define CONFIG_U_BOOT_HDR_SIZE (16 << 10)
|
|
|
|
/*
|
|
|
|
* HDR would be appended at end of image and copied to DDR along
|
|
|
|
* with U-Boot image. Here u-boot max. size is 512K. So if binary
|
|
|
|
* size increases then increase this size in case of secure boot as
|
|
|
|
* it uses raw u-boot image instead of fit image.
|
|
|
|
*/
|
2019-11-07 16:11:32 +00:00
|
|
|
#endif /* ifdef CONFIG_NXP_ESBC */
|
2015-10-26 11:47:56 +00:00
|
|
|
#endif
|
|
|
|
|
2015-10-26 11:47:53 +00:00
|
|
|
/* NAND SPL */
|
|
|
|
#ifdef CONFIG_NAND_BOOT
|
2022-11-12 22:36:51 +00:00
|
|
|
#define CFG_SYS_NAND_U_BOOT_DST CONFIG_TEXT_BASE
|
|
|
|
#define CFG_SYS_NAND_U_BOOT_START CONFIG_TEXT_BASE
|
2017-04-17 12:37:18 +00:00
|
|
|
|
2019-11-07 16:11:32 +00:00
|
|
|
#ifdef CONFIG_NXP_ESBC
|
2017-04-17 12:37:18 +00:00
|
|
|
#define CONFIG_U_BOOT_HDR_SIZE (16 << 10)
|
2019-11-07 16:11:32 +00:00
|
|
|
#endif /* ifdef CONFIG_NXP_ESBC */
|
2017-04-17 12:37:18 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_U_BOOT_HDR_SIZE
|
|
|
|
/*
|
|
|
|
* HDR would be appended at end of image and copied to DDR along
|
|
|
|
* with U-Boot image. Here u-boot max. size is 512K. So if binary
|
|
|
|
* size increases then increase this size in case of secure boot as
|
|
|
|
* it uses raw u-boot image instead of fit image.
|
|
|
|
*/
|
|
|
|
#endif /* ifdef CONFIG_U_BOOT_HDR_SIZE */
|
|
|
|
|
2015-10-26 11:47:53 +00:00
|
|
|
#endif
|
|
|
|
|
2021-02-05 11:01:56 +00:00
|
|
|
/* GPIO */
|
|
|
|
|
2015-10-26 11:47:52 +00:00
|
|
|
/* IFC */
|
2017-03-30 04:22:38 +00:00
|
|
|
#ifndef SPL_NO_IFC
|
2018-11-05 18:02:44 +00:00
|
|
|
#if defined(CONFIG_TFABOOT) || \
|
|
|
|
(!defined(CONFIG_QSPI_BOOT) && !defined(CONFIG_SD_BOOT_QSPI))
|
2015-10-26 11:47:52 +00:00
|
|
|
/*
|
|
|
|
* CONFIG_SYS_FLASH_BASE has the final address (core view)
|
|
|
|
* CONFIG_SYS_FLASH_BASE_PHYS has the final address (IFC view)
|
|
|
|
* CONFIG_SYS_FLASH_BASE_PHYS_EARLY has the temporary IFC address
|
2022-10-21 00:22:39 +00:00
|
|
|
* CONFIG_TEXT_BASE is linked to 0x60000000 for booting
|
2015-10-26 11:47:52 +00:00
|
|
|
*/
|
|
|
|
#define CONFIG_SYS_FLASH_BASE 0x60000000
|
|
|
|
#define CONFIG_SYS_FLASH_BASE_PHYS CONFIG_SYS_FLASH_BASE
|
|
|
|
#define CONFIG_SYS_FLASH_BASE_PHYS_EARLY 0x00000000
|
|
|
|
|
2017-02-11 13:43:54 +00:00
|
|
|
#ifdef CONFIG_MTD_NOR_FLASH
|
2015-10-26 11:47:52 +00:00
|
|
|
#define CONFIG_FLASH_SHOW_PROGRESS 45 /* count down from 45/5: 9..1 */
|
|
|
|
#endif
|
2016-01-25 07:16:06 +00:00
|
|
|
#endif
|
2017-03-30 04:22:38 +00:00
|
|
|
#endif
|
2015-10-26 11:47:52 +00:00
|
|
|
|
|
|
|
/* I2C */
|
|
|
|
|
2016-01-25 07:16:05 +00:00
|
|
|
/* DSPI */
|
|
|
|
|
2015-10-26 11:47:54 +00:00
|
|
|
/* FMan ucode */
|
2017-03-30 04:22:38 +00:00
|
|
|
#ifndef SPL_NO_FMAN
|
2015-10-26 11:47:54 +00:00
|
|
|
#ifdef CONFIG_SYS_DPAA_FMAN
|
|
|
|
#define CONFIG_SYS_FM_MURAM_SIZE 0x60000
|
|
|
|
#endif
|
2017-03-30 04:22:38 +00:00
|
|
|
#endif
|
2015-10-26 11:47:54 +00:00
|
|
|
|
2015-10-26 11:47:52 +00:00
|
|
|
/* Miscellaneous configurable options */
|
|
|
|
|
|
|
|
#define CONFIG_HWCONFIG
|
|
|
|
#define HWCONFIG_BUFFER_SIZE 128
|
|
|
|
|
2017-03-30 04:22:38 +00:00
|
|
|
#ifndef SPL_NO_MISC
|
2017-06-08 07:59:48 +00:00
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
func(MMC, mmc, 0) \
|
2019-01-29 15:38:40 +00:00
|
|
|
func(USB, usb, 0) \
|
|
|
|
func(DHCP, dhcp, na)
|
2017-06-08 07:59:48 +00:00
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
|
2015-10-26 11:47:52 +00:00
|
|
|
/* Initial environment variables */
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
|
|
"hwconfig=fsl_ddr:bank_intlv=auto\0" \
|
|
|
|
"fdt_high=0xffffffffffffffff\0" \
|
|
|
|
"initrd_high=0xffffffffffffffff\0" \
|
2017-11-22 05:08:35 +00:00
|
|
|
"kernel_addr=0x61000000\0" \
|
2017-06-08 07:59:48 +00:00
|
|
|
"scriptaddr=0x80000000\0" \
|
2017-06-05 18:21:51 +00:00
|
|
|
"scripthdraddr=0x80080000\0" \
|
2017-06-08 07:59:48 +00:00
|
|
|
"fdtheader_addr_r=0x80100000\0" \
|
|
|
|
"kernelheader_addr_r=0x80200000\0" \
|
|
|
|
"kernel_addr_r=0x81000000\0" \
|
2018-11-20 08:55:25 +00:00
|
|
|
"kernel_start=0x1000000\0" \
|
|
|
|
"kernelheader_start=0x800000\0" \
|
2017-06-08 07:59:48 +00:00
|
|
|
"fdt_addr_r=0x90000000\0" \
|
|
|
|
"load_addr=0xa0000000\0" \
|
2020-11-05 08:38:55 +00:00
|
|
|
"kernelheader_addr=0x60600000\0" \
|
2016-03-15 08:35:57 +00:00
|
|
|
"kernel_size=0x2800000\0" \
|
2017-11-22 05:08:35 +00:00
|
|
|
"kernelheader_size=0x40000\0" \
|
2017-11-09 09:57:55 +00:00
|
|
|
"kernel_addr_sd=0x8000\0" \
|
|
|
|
"kernel_size_sd=0x14000\0" \
|
2020-11-05 08:38:55 +00:00
|
|
|
"kernelhdr_addr_sd=0x3000\0" \
|
2017-11-22 05:08:35 +00:00
|
|
|
"kernelhdr_size_sd=0x10\0" \
|
2017-06-08 07:59:48 +00:00
|
|
|
"console=ttyS0,115200\0" \
|
2017-09-28 15:42:16 +00:00
|
|
|
"boot_os=y\0" \
|
2017-06-08 07:59:48 +00:00
|
|
|
BOOTENV \
|
|
|
|
"boot_scripts=ls1043ardb_boot.scr\0" \
|
2017-06-05 18:21:51 +00:00
|
|
|
"boot_script_hdr=hdr_ls1043ardb_bs.out\0" \
|
2017-06-08 07:59:48 +00:00
|
|
|
"scan_dev_for_boot_part=" \
|
|
|
|
"part list ${devtype} ${devnum} devplist; " \
|
|
|
|
"env exists devplist || setenv devplist 1; " \
|
|
|
|
"for distro_bootpart in ${devplist}; do " \
|
|
|
|
"if fstype ${devtype} " \
|
|
|
|
"${devnum}:${distro_bootpart} " \
|
|
|
|
"bootfstype; then " \
|
|
|
|
"run scan_dev_for_boot; " \
|
|
|
|
"fi; " \
|
|
|
|
"done\0" \
|
2017-06-05 18:21:51 +00:00
|
|
|
"boot_a_script=" \
|
|
|
|
"load ${devtype} ${devnum}:${distro_bootpart} " \
|
|
|
|
"${scriptaddr} ${prefix}${script}; " \
|
|
|
|
"env exists secureboot && load ${devtype} " \
|
|
|
|
"${devnum}:${distro_bootpart} " \
|
2019-04-23 05:52:17 +00:00
|
|
|
"${scripthdraddr} ${prefix}${boot_script_hdr}; " \
|
|
|
|
"env exists secureboot " \
|
2017-06-05 18:21:51 +00:00
|
|
|
"&& esbc_validate ${scripthdraddr};" \
|
|
|
|
"source ${scriptaddr}\0" \
|
2017-06-08 07:59:48 +00:00
|
|
|
"qspi_bootcmd=echo Trying load from qspi..;" \
|
|
|
|
"sf probe && sf read $load_addr " \
|
2019-11-14 07:08:15 +00:00
|
|
|
"$kernel_start $kernel_size; env exists secureboot " \
|
|
|
|
"&& sf read $kernelheader_addr_r $kernelheader_start " \
|
2017-11-22 05:08:35 +00:00
|
|
|
"$kernelheader_size && esbc_validate ${kernelheader_addr_r}; " \
|
|
|
|
"bootm $load_addr#$board\0" \
|
2017-06-08 07:59:48 +00:00
|
|
|
"nor_bootcmd=echo Trying load from nor..;" \
|
|
|
|
"cp.b $kernel_addr $load_addr " \
|
2017-11-22 05:08:35 +00:00
|
|
|
"$kernel_size; env exists secureboot " \
|
|
|
|
"&& cp.b $kernelheader_addr $kernelheader_addr_r " \
|
|
|
|
"$kernelheader_size && esbc_validate ${kernelheader_addr_r}; " \
|
|
|
|
"bootm $load_addr#$board\0" \
|
2018-11-20 08:55:25 +00:00
|
|
|
"nand_bootcmd=echo Trying load from NAND..;" \
|
|
|
|
"nand info; nand read $load_addr " \
|
|
|
|
"$kernel_start $kernel_size; env exists secureboot " \
|
|
|
|
"&& nand read $kernelheader_addr_r $kernelheader_start " \
|
|
|
|
"$kernelheader_size && esbc_validate ${kernelheader_addr_r}; " \
|
|
|
|
"bootm $load_addr#$board\0" \
|
2017-11-09 09:57:55 +00:00
|
|
|
"sd_bootcmd=echo Trying load from SD ..;" \
|
|
|
|
"mmcinfo; mmc read $load_addr " \
|
|
|
|
"$kernel_addr_sd $kernel_size_sd && " \
|
2017-11-22 05:08:35 +00:00
|
|
|
"env exists secureboot && mmc read $kernelheader_addr_r " \
|
|
|
|
"$kernelhdr_addr_sd $kernelhdr_size_sd " \
|
|
|
|
" && esbc_validate ${kernelheader_addr_r};" \
|
2017-11-09 09:57:55 +00:00
|
|
|
"bootm $load_addr#$board\0"
|
|
|
|
|
2017-06-08 07:59:48 +00:00
|
|
|
|
2018-11-05 18:02:44 +00:00
|
|
|
#ifdef CONFIG_TFABOOT
|
|
|
|
#define QSPI_NOR_BOOTCOMMAND "run distro_bootcmd; run qspi_bootcmd; " \
|
|
|
|
"env exists secureboot && esbc_halt;"
|
|
|
|
#define SD_BOOTCOMMAND "run distro_bootcmd; run sd_bootcmd; " \
|
|
|
|
"env exists secureboot && esbc_halt;"
|
|
|
|
#define IFC_NOR_BOOTCOMMAND "run distro_bootcmd; run nor_bootcmd; " \
|
|
|
|
"env exists secureboot && esbc_halt;"
|
2018-12-27 04:37:53 +00:00
|
|
|
#define IFC_NAND_BOOTCOMMAND "run distro_bootcmd; run nand_bootcmd; " \
|
|
|
|
"env exists secureboot && esbc_halt;"
|
2017-03-30 04:22:38 +00:00
|
|
|
#endif
|
2018-11-05 18:02:44 +00:00
|
|
|
#endif
|
2015-10-26 11:47:52 +00:00
|
|
|
|
2017-05-17 14:23:10 +00:00
|
|
|
#include <asm/arch/soc.h>
|
|
|
|
|
2015-10-26 11:47:52 +00:00
|
|
|
#endif /* __LS1043A_COMMON_H */
|