Merge tag 'xilinx-for-v2020.07-rc2' of https://gitlab.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 #define CONFIG_GICV2
10
11 #include <asm/arch/config.h>
12 #include <asm/arch/stream_id_lsch2.h>
13
14 #define CONFIG_SYS_CLK_FREQ             125000000
15
16 #define CONFIG_SKIP_LOWLEVEL_INIT
17
18 #ifdef CONFIG_TFABOOT
19 #define CONFIG_SYS_INIT_SP_ADDR                CONFIG_SYS_TEXT_BASE
20 #else
21 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_FSL_OCRAM_BASE + 0xfff0)
22 #endif
23 #define CONFIG_SYS_LOAD_ADDR    (CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000)
24
25 #define CONFIG_SYS_DDR_SDRAM_BASE       0x80000000
26 #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY       0
27 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SYS_DDR_SDRAM_BASE
28 #define CONFIG_SYS_DDR_BLOCK2_BASE     0x880000000ULL
29
30 /* Generic Timer Definitions */
31 #define COUNTER_FREQUENCY               25000000        /* 25MHz */
32
33 /* CSU */
34 #define CONFIG_LAYERSCAPE_NS_ACCESS
35
36 /* Size of malloc() pool */
37 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + 128 * 1024)
38
39 /*SPI device */
40 #if defined(CONFIG_QSPI_BOOT) || defined(CONFIG_TFABOOT)
41 #define CONFIG_SYS_FMAN_FW_ADDR         0x400d0000
42 #define CONFIG_SPI_FLASH_SPANSION
43 #define CONFIG_FSL_SPI_INTERFACE
44 #define CONFIG_SF_DATAFLASH
45
46 #define QSPI0_AMBA_BASE         0x40000000
47 #define CONFIG_SPI_FLASH_SPANSION
48
49 #define FSL_QSPI_FLASH_SIZE             SZ_64M
50 #define FSL_QSPI_FLASH_NUM              2
51
52 /*
53  * Environment
54  */
55 #define CONFIG_ENV_OVERWRITE
56 #endif
57
58 /* SATA */
59 #define CONFIG_SCSI_AHCI_PLAT
60
61 #define CONFIG_SYS_SATA                         AHCI_BASE_ADDR
62
63 #define CONFIG_SYS_SCSI_MAX_SCSI_ID             1
64 #define CONFIG_SYS_SCSI_MAX_LUN                 1
65 #define CONFIG_SYS_SCSI_MAX_DEVICE              (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
66                                                 CONFIG_SYS_SCSI_MAX_LUN)
67
68 /* I2C */
69 #ifndef CONFIG_DM_I2C
70 #define CONFIG_SYS_I2C
71 #else
72 #define CONFIG_I2C_SET_DEFAULT_BUS_NUM
73 #define CONFIG_I2C_DEFAULT_BUS_NUMBER 0
74 #endif
75
76 #define CONFIG_SYS_NS16550_SERIAL
77 #define CONFIG_SYS_NS16550_REG_SIZE     1
78 #define CONFIG_SYS_NS16550_CLK          (get_serial_clock())
79
80 #define CONFIG_SYS_BAUDRATE_TABLE       { 9600, 19200, 38400, 57600, 115200 }
81
82 #define CONFIG_SYS_HZ                   1000
83
84 #define CONFIG_HWCONFIG
85 #define HWCONFIG_BUFFER_SIZE            128
86
87 #ifndef CONFIG_SPL_BUILD
88 #define BOOT_TARGET_DEVICES(func) \
89         func(MMC, mmc, 0) \
90         func(USB, usb, 0) \
91         func(SCSI, scsi, 0) \
92         func(DHCP, dhcp, na)
93 #include <config_distro_bootcmd.h>
94 #endif
95
96 /* Initial environment variables */
97 #define CONFIG_EXTRA_ENV_SETTINGS               \
98         "verify=no\0"                           \
99         "loadaddr=0x80100000\0"                 \
100         "kernel_addr=0x100000\0"                \
101         "fdt_high=0xffffffffffffffff\0"         \
102         "initrd_high=0xffffffffffffffff\0"      \
103         "kernel_start=0x1000000\0"              \
104         "kernel_load=0xa0000000\0"              \
105         "kernel_size=0x2800000\0"               \
106
107 #undef CONFIG_BOOTCOMMAND
108 #ifdef CONFIG_TFABOOT
109 #define QSPI_NOR_BOOTCOMMAND    "pfe stop; sf probe 0:0; sf read $kernel_load "\
110                                 "$kernel_start $kernel_size && "\
111                                 "bootm $kernel_load"
112 #else
113 #define CONFIG_BOOTCOMMAND      "pfe stop; sf probe 0:0; sf read $kernel_load "\
114                                 "$kernel_start $kernel_size && "\
115                                 "bootm $kernel_load"
116 #endif
117
118 /* Monitor Command Prompt */
119 #define CONFIG_SYS_CBSIZE               512     /* Console I/O Buffer Size */
120 #define CONFIG_SYS_MAXARGS              64      /* max command args */
121
122 #define CONFIG_SYS_BOOTM_LEN   (64 << 20)      /* Increase max gunzip size */
123
124 #include <asm/arch/soc.h>
125
126 #endif /* __LS1012A_COMMON_H */