Merge tag 'v2021.10-rc4' into next
[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_CLK_FREQ             125000000
14
15 #ifdef CONFIG_TFABOOT
16 #define CONFIG_SYS_INIT_SP_ADDR                CONFIG_SYS_TEXT_BASE
17 #else
18 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_FSL_OCRAM_BASE + 0xfff0)
19 #endif
20
21 #define CONFIG_SYS_DDR_SDRAM_BASE       0x80000000
22 #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY       0
23 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SYS_DDR_SDRAM_BASE
24 #define CONFIG_SYS_DDR_BLOCK2_BASE     0x880000000ULL
25
26 /* Generic Timer Definitions */
27 #define COUNTER_FREQUENCY               25000000        /* 25MHz */
28
29 /* CSU */
30 #define CONFIG_LAYERSCAPE_NS_ACCESS
31
32 /* PFE */
33 #define CONFIG_SYS_FMAN_FW_ADDR         0x400d0000
34 #define CONFIG_SYS_QE_FMAN_FW_LENGTH    0x300000
35
36 /*SPI device */
37 #define CONFIG_SYS_FSL_QSPI_BASE        0x40000000
38
39 /* SATA */
40 #define CONFIG_SCSI_AHCI_PLAT
41
42 #define CONFIG_SYS_SATA                         AHCI_BASE_ADDR
43
44 #define CONFIG_SYS_SCSI_MAX_SCSI_ID             1
45 #define CONFIG_SYS_SCSI_MAX_LUN                 1
46 #define CONFIG_SYS_SCSI_MAX_DEVICE              (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
47                                                 CONFIG_SYS_SCSI_MAX_LUN)
48
49 /* I2C */
50
51 /* GPIO */
52 #ifdef CONFIG_DM_GPIO
53 #ifndef CONFIG_MPC8XXX_GPIO
54 #define CONFIG_MPC8XXX_GPIO
55 #endif
56 #endif
57
58 #define CONFIG_SYS_NS16550_SERIAL
59 #define CONFIG_SYS_NS16550_REG_SIZE     1
60 #define CONFIG_SYS_NS16550_CLK          (get_serial_clock())
61
62 #define CONFIG_SYS_BAUDRATE_TABLE       { 9600, 19200, 38400, 57600, 115200 }
63
64 #define CONFIG_SYS_HZ                   1000
65
66 #define CONFIG_HWCONFIG
67 #define HWCONFIG_BUFFER_SIZE            128
68
69 #ifndef CONFIG_SPL_BUILD
70 #define BOOT_TARGET_DEVICES(func) \
71         func(MMC, mmc, 0) \
72         func(USB, usb, 0) \
73         func(SCSI, scsi, 0) \
74         func(DHCP, dhcp, na)
75 #include <config_distro_bootcmd.h>
76 #endif
77
78 /* Initial environment variables */
79 #define CONFIG_EXTRA_ENV_SETTINGS               \
80         "verify=no\0"                           \
81         "loadaddr=0x80100000\0"                 \
82         "kernel_addr=0x100000\0"                \
83         "initrd_high=0xffffffffffffffff\0"      \
84         "kernel_start=0x1000000\0"              \
85         "kernel_load=0xa0000000\0"              \
86         "kernel_size=0x2800000\0"               \
87         "bootm_size=0x10000000\0"               \
88
89 #undef CONFIG_BOOTCOMMAND
90 #ifdef CONFIG_TFABOOT
91 #define QSPI_NOR_BOOTCOMMAND    "sf probe 0:0; sf read $kernel_load "\
92                                 "$kernel_start $kernel_size && "\
93                                 "bootm $kernel_load"
94 #else
95 #define CONFIG_BOOTCOMMAND      "sf probe 0:0; sf read $kernel_load "\
96                                 "$kernel_start $kernel_size && "\
97                                 "bootm $kernel_load"
98 #endif
99
100 /* Monitor Command Prompt */
101 #define CONFIG_SYS_CBSIZE               512     /* Console I/O Buffer Size */
102 #define CONFIG_SYS_MAXARGS              64      /* max command args */
103
104 #define CONFIG_SYS_BOOTM_LEN   (64 << 20)      /* Increase max gunzip size */
105
106 #include <asm/arch/soc.h>
107
108 #endif /* __LS1012A_COMMON_H */