Merge patch series "upl: Prerequite patches for updated spec"
[u-boot.git] / include / configs / ls1012a_common.h
bloba5f680db2d37f699d38b7c6ea5294088308e165f
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * Copyright 2016 Freescale Semiconductor
4 */
6 #ifndef __LS1012A_COMMON_H
7 #define __LS1012A_COMMON_H
9 #include <asm/arch/config.h>
10 #include <asm/arch/stream_id_lsch2.h>
11 #include <linux/sizes.h>
13 #define CFG_SYS_DDR_SDRAM_BASE 0x80000000
14 #define CFG_SYS_FSL_DDR_SDRAM_BASE_PHY 0
15 #define CFG_SYS_SDRAM_BASE CFG_SYS_DDR_SDRAM_BASE
16 #define CFG_SYS_DDR_BLOCK2_BASE 0x880000000ULL
18 /*SPI device */
19 #define CFG_SYS_FSL_QSPI_BASE 0x40000000
21 /* I2C */
23 /* GPIO */
25 #define CFG_SYS_NS16550_CLK (get_serial_clock())
27 #define HWCONFIG_BUFFER_SIZE 128
29 #define BOOT_TARGET_DEVICES(func) \
30 func(MMC, mmc, 0) \
31 func(USB, usb, 0) \
32 func(SCSI, scsi, 0) \
33 func(DHCP, dhcp, na)
34 #include <config_distro_bootcmd.h>
36 /* Initial environment variables */
37 #define CFG_EXTRA_ENV_SETTINGS \
38 "verify=no\0" \
39 "loadaddr=0x80100000\0" \
40 "kernel_addr=0x100000\0" \
41 "initrd_high=0xffffffffffffffff\0" \
42 "kernel_start=0x1000000\0" \
43 "kernel_load=0xa0000000\0" \
44 "kernel_size=0x2800000\0" \
45 "bootm_size=0x10000000\0" \
47 #ifdef CONFIG_TFABOOT
48 #define QSPI_NOR_BOOTCOMMAND "sf probe 0:0; sf read $kernel_load "\
49 "$kernel_start $kernel_size && "\
50 "bootm $kernel_load"
51 #endif
53 #include <asm/arch/soc.h>
55 #endif /* __LS1012A_COMMON_H */