Merge tag 'u-boot-amlogic-20220107' of https://source.denx.de/u-boot/custodians/u...
[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 /* Generic Timer Definitions */
25 #define COUNTER_FREQUENCY               25000000        /* 25MHz */
26
27 /* CSU */
28 #define CONFIG_LAYERSCAPE_NS_ACCESS
29
30 /*SPI device */
31 #define CONFIG_SYS_FSL_QSPI_BASE        0x40000000
32
33 /* SATA */
34 #define CONFIG_SCSI_AHCI_PLAT
35
36 #define CONFIG_SYS_SATA                         AHCI_BASE_ADDR
37
38 #define CONFIG_SYS_SCSI_MAX_SCSI_ID             1
39 #define CONFIG_SYS_SCSI_MAX_LUN                 1
40 #define CONFIG_SYS_SCSI_MAX_DEVICE              (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
41                                                 CONFIG_SYS_SCSI_MAX_LUN)
42
43 /* I2C */
44
45 /* GPIO */
46
47 #define CONFIG_SYS_NS16550_SERIAL
48 #define CONFIG_SYS_NS16550_REG_SIZE     1
49 #define CONFIG_SYS_NS16550_CLK          (get_serial_clock())
50
51 #define CONFIG_HWCONFIG
52 #define HWCONFIG_BUFFER_SIZE            128
53
54 #ifndef CONFIG_SPL_BUILD
55 #define BOOT_TARGET_DEVICES(func) \
56         func(MMC, mmc, 0) \
57         func(USB, usb, 0) \
58         func(SCSI, scsi, 0) \
59         func(DHCP, dhcp, na)
60 #include <config_distro_bootcmd.h>
61 #endif
62
63 /* Initial environment variables */
64 #define CONFIG_EXTRA_ENV_SETTINGS               \
65         "verify=no\0"                           \
66         "loadaddr=0x80100000\0"                 \
67         "kernel_addr=0x100000\0"                \
68         "initrd_high=0xffffffffffffffff\0"      \
69         "kernel_start=0x1000000\0"              \
70         "kernel_load=0xa0000000\0"              \
71         "kernel_size=0x2800000\0"               \
72         "bootm_size=0x10000000\0"               \
73
74 #ifdef CONFIG_TFABOOT
75 #define QSPI_NOR_BOOTCOMMAND    "sf probe 0:0; sf read $kernel_load "\
76                                 "$kernel_start $kernel_size && "\
77                                 "bootm $kernel_load"
78 #endif
79
80 /* Monitor Command Prompt */
81 #define CONFIG_SYS_CBSIZE               512     /* Console I/O Buffer Size */
82 #define CONFIG_SYS_MAXARGS              64      /* max command args */
83
84 #define CONFIG_SYS_BOOTM_LEN   (64 << 20)      /* Increase max gunzip size */
85
86 #include <asm/arch/soc.h>
87
88 #endif /* __LS1012A_COMMON_H */