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_QE_FW_IN_SPIFLASH
42 #define CONFIG_SYS_FMAN_FW_ADDR		0x400d0000
43 #define CONFIG_ENV_SPI_BUS		0
44 #define CONFIG_ENV_SPI_CS		0
45 #define CONFIG_ENV_SPI_MAX_HZ		1000000
46 #define CONFIG_ENV_SPI_MODE		0x03
47 #define CONFIG_SPI_FLASH_SPANSION
48 #define CONFIG_FSL_SPI_INTERFACE
49 #define CONFIG_SF_DATAFLASH
50 
51 #define CONFIG_FSL_QSPI
52 #define QSPI0_AMBA_BASE		0x40000000
53 #define CONFIG_SPI_FLASH_SPANSION
54 
55 #define FSL_QSPI_FLASH_SIZE		SZ_64M
56 #define FSL_QSPI_FLASH_NUM		2
57 
58 /*
59  * Environment
60  */
61 #define CONFIG_ENV_OVERWRITE
62 
63 #define CONFIG_ENV_SIZE			0x40000          /* 256KB */
64 #ifdef CONFIG_TFABOOT
65 #define CONFIG_ENV_OFFSET		0x500000        /* 5MB */
66 #else
67 #define CONFIG_ENV_OFFSET		0x300000        /* 3MB */
68 #endif
69 #define CONFIG_ENV_SECT_SIZE		0x40000
70 #endif
71 
72 /* SATA */
73 #define CONFIG_SCSI_AHCI_PLAT
74 
75 #define CONFIG_SYS_SATA				AHCI_BASE_ADDR
76 
77 #define CONFIG_SYS_SCSI_MAX_SCSI_ID		1
78 #define CONFIG_SYS_SCSI_MAX_LUN			1
79 #define CONFIG_SYS_SCSI_MAX_DEVICE		(CONFIG_SYS_SCSI_MAX_SCSI_ID * \
80 						CONFIG_SYS_SCSI_MAX_LUN)
81 
82 /* I2C */
83 #define CONFIG_SYS_I2C
84 
85 #define CONFIG_SYS_NS16550_SERIAL
86 #define CONFIG_SYS_NS16550_REG_SIZE     1
87 #define CONFIG_SYS_NS16550_CLK          (get_serial_clock())
88 
89 #define CONFIG_SYS_BAUDRATE_TABLE	{ 9600, 19200, 38400, 57600, 115200 }
90 
91 #define CONFIG_SYS_HZ			1000
92 
93 #define CONFIG_HWCONFIG
94 #define HWCONFIG_BUFFER_SIZE		128
95 
96 #ifndef CONFIG_SPL_BUILD
97 #define BOOT_TARGET_DEVICES(func) \
98 	func(SCSI, scsi, 0) \
99 	func(MMC, mmc, 0) \
100 	func(USB, usb, 0)
101 #include <config_distro_bootcmd.h>
102 #endif
103 
104 /* Initial environment variables */
105 #define CONFIG_EXTRA_ENV_SETTINGS		\
106 	"verify=no\0"				\
107 	"loadaddr=0x80100000\0"			\
108 	"kernel_addr=0x100000\0"		\
109 	"fdt_high=0xffffffffffffffff\0"		\
110 	"initrd_high=0xffffffffffffffff\0"	\
111 	"kernel_start=0x1000000\0"		\
112 	"kernel_load=0xa0000000\0"		\
113 	"kernel_size=0x2800000\0"		\
114 
115 #undef CONFIG_BOOTCOMMAND
116 #ifdef CONFIG_TFABOOT
117 #define QSPI_NOR_BOOTCOMMAND	"pfe stop; sf probe 0:0; sf read $kernel_load "\
118 				"$kernel_start $kernel_size && "\
119 				"bootm $kernel_load"
120 #else
121 #define CONFIG_BOOTCOMMAND	"pfe stop; sf probe 0:0; sf read $kernel_load "\
122 				"$kernel_start $kernel_size && "\
123 				"bootm $kernel_load"
124 #endif
125 
126 /* Monitor Command Prompt */
127 #define CONFIG_SYS_CBSIZE		512	/* Console I/O Buffer Size */
128 #define CONFIG_SYS_MAXARGS		64	/* max command args */
129 
130 #define CONFIG_SYS_BOOTM_LEN   (64 << 20)      /* Increase max gunzip size */
131 
132 #include <asm/arch/soc.h>
133 
134 #endif /* __LS1012A_COMMON_H */
135