77f84e1c9eaada05a6edb55a9b54da66fb298721
[platform/kernel/u-boot.git] / include / configs / ls1012a_common.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2016 Freescale Semiconductor
4  */
5
6 #ifndef __LS1012A_COMMON_H
7 #define __LS1012A_COMMON_H
8
9 #include <asm/arch/config.h>
10 #include <asm/arch/stream_id_lsch2.h>
11 #include <linux/sizes.h>
12
13 #define CONFIG_SYS_DDR_SDRAM_BASE       0x80000000
14 #define CFG_SYS_FSL_DDR_SDRAM_BASE_PHY  0
15 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SYS_DDR_SDRAM_BASE
16 #define CONFIG_SYS_DDR_BLOCK2_BASE     0x880000000ULL
17
18 /*SPI device */
19 #define CFG_SYS_FSL_QSPI_BASE   0x40000000
20
21 /* SATA */
22
23 #define CONFIG_SYS_SATA                         AHCI_BASE_ADDR
24
25 /* I2C */
26
27 /* GPIO */
28
29 #define CONFIG_SYS_NS16550_SERIAL
30 #define CONFIG_SYS_NS16550_REG_SIZE     1
31 #define CONFIG_SYS_NS16550_CLK          (get_serial_clock())
32
33 #define CONFIG_HWCONFIG
34 #define HWCONFIG_BUFFER_SIZE            128
35
36 #define BOOT_TARGET_DEVICES(func) \
37         func(MMC, mmc, 0) \
38         func(USB, usb, 0) \
39         func(SCSI, scsi, 0) \
40         func(DHCP, dhcp, na)
41 #include <config_distro_bootcmd.h>
42
43 /* Initial environment variables */
44 #define CONFIG_EXTRA_ENV_SETTINGS               \
45         "verify=no\0"                           \
46         "loadaddr=0x80100000\0"                 \
47         "kernel_addr=0x100000\0"                \
48         "initrd_high=0xffffffffffffffff\0"      \
49         "kernel_start=0x1000000\0"              \
50         "kernel_load=0xa0000000\0"              \
51         "kernel_size=0x2800000\0"               \
52         "bootm_size=0x10000000\0"               \
53
54 #ifdef CONFIG_TFABOOT
55 #define QSPI_NOR_BOOTCOMMAND    "sf probe 0:0; sf read $kernel_load "\
56                                 "$kernel_start $kernel_size && "\
57                                 "bootm $kernel_load"
58 #endif
59
60 #include <asm/arch/soc.h>
61
62 #endif /* __LS1012A_COMMON_H */