Merge tag 'u-boot-at91-2022.07-b' of https://source.denx.de/u-boot/custodians/u-boot...
[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 #ifdef CONFIG_TFABOOT
14 #define CONFIG_SYS_INIT_SP_ADDR                CONFIG_SYS_TEXT_BASE
15 #else
16 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_FSL_OCRAM_BASE + 0xfff0)
17 #endif
18
19 #define CONFIG_SYS_DDR_SDRAM_BASE       0x80000000
20 #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY       0
21 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SYS_DDR_SDRAM_BASE
22 #define CONFIG_SYS_DDR_BLOCK2_BASE     0x880000000ULL
23
24 /* CSU */
25 #define CONFIG_LAYERSCAPE_NS_ACCESS
26
27 /*SPI device */
28 #define CONFIG_SYS_FSL_QSPI_BASE        0x40000000
29
30 /* SATA */
31
32 #define CONFIG_SYS_SATA                         AHCI_BASE_ADDR
33
34 /* I2C */
35
36 /* GPIO */
37
38 #define CONFIG_SYS_NS16550_SERIAL
39 #define CONFIG_SYS_NS16550_REG_SIZE     1
40 #define CONFIG_SYS_NS16550_CLK          (get_serial_clock())
41
42 #define CONFIG_HWCONFIG
43 #define HWCONFIG_BUFFER_SIZE            128
44
45 #ifndef CONFIG_SPL_BUILD
46 #define BOOT_TARGET_DEVICES(func) \
47         func(MMC, mmc, 0) \
48         func(USB, usb, 0) \
49         func(SCSI, scsi, 0) \
50         func(DHCP, dhcp, na)
51 #include <config_distro_bootcmd.h>
52 #endif
53
54 /* Initial environment variables */
55 #define CONFIG_EXTRA_ENV_SETTINGS               \
56         "verify=no\0"                           \
57         "loadaddr=0x80100000\0"                 \
58         "kernel_addr=0x100000\0"                \
59         "initrd_high=0xffffffffffffffff\0"      \
60         "kernel_start=0x1000000\0"              \
61         "kernel_load=0xa0000000\0"              \
62         "kernel_size=0x2800000\0"               \
63         "bootm_size=0x10000000\0"               \
64
65 #ifdef CONFIG_TFABOOT
66 #define QSPI_NOR_BOOTCOMMAND    "sf probe 0:0; sf read $kernel_load "\
67                                 "$kernel_start $kernel_size && "\
68                                 "bootm $kernel_load"
69 #endif
70
71 /* Monitor Command Prompt */
72 #define CONFIG_SYS_CBSIZE               512     /* Console I/O Buffer Size */
73 #define CONFIG_SYS_MAXARGS              64      /* max command args */
74
75 #define CONFIG_SYS_BOOTM_LEN   (64 << 20)      /* Increase max gunzip size */
76
77 #include <asm/arch/soc.h>
78
79 #endif /* __LS1012A_COMMON_H */