xref: /rk3399_rockchip-uboot/include/configs/legoev3.h (revision 2ac07f75d1977008e829d00bcce16143e171765d)
1*2ac07f75SDavid Lechner /*
2*2ac07f75SDavid Lechner  * Copyright (C) 2016 David Lechner <david@lechnology.com>
3*2ac07f75SDavid Lechner  *
4*2ac07f75SDavid Lechner  * Based on da850evm.h
5*2ac07f75SDavid Lechner  *
6*2ac07f75SDavid Lechner  * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
7*2ac07f75SDavid Lechner  *
8*2ac07f75SDavid Lechner  * Based on davinci_dvevm.h. Original Copyrights follow:
9*2ac07f75SDavid Lechner  *
10*2ac07f75SDavid Lechner  * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
11*2ac07f75SDavid Lechner  *
12*2ac07f75SDavid Lechner  * SPDX-License-Identifier:	GPL-2.0+
13*2ac07f75SDavid Lechner  */
14*2ac07f75SDavid Lechner 
15*2ac07f75SDavid Lechner #ifndef __CONFIG_H
16*2ac07f75SDavid Lechner #define __CONFIG_H
17*2ac07f75SDavid Lechner 
18*2ac07f75SDavid Lechner /*
19*2ac07f75SDavid Lechner  * SoC Configuration
20*2ac07f75SDavid Lechner  */
21*2ac07f75SDavid Lechner #define CONFIG_MACH_DAVINCI_DA850_EVM
22*2ac07f75SDavid Lechner #define CONFIG_SOC_DA8XX		/* TI DA8xx SoC */
23*2ac07f75SDavid Lechner #define CONFIG_SOC_DA850		/* TI DA850 SoC */
24*2ac07f75SDavid Lechner #define CONFIG_SYS_EXCEPTION_VECTORS_HIGH
25*2ac07f75SDavid Lechner #define CONFIG_SYS_CLK_FREQ		clk_get(DAVINCI_ARM_CLKID)
26*2ac07f75SDavid Lechner #define CONFIG_SYS_OSCIN_FREQ		24000000
27*2ac07f75SDavid Lechner #define CONFIG_SYS_TIMERBASE		DAVINCI_TIMER0_BASE
28*2ac07f75SDavid Lechner #define CONFIG_SYS_HZ_CLOCK		clk_get(DAVINCI_AUXCLK_CLKID)
29*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL_INIT
30*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_DDR_INIT
31*2ac07f75SDavid Lechner 
32*2ac07f75SDavid Lechner #define CONFIG_SYS_TEXT_BASE		0xc1080000
33*2ac07f75SDavid Lechner 
34*2ac07f75SDavid Lechner 
35*2ac07f75SDavid Lechner /*
36*2ac07f75SDavid Lechner  * Memory Info
37*2ac07f75SDavid Lechner  */
38*2ac07f75SDavid Lechner #define CONFIG_SYS_MALLOC_LEN	(0x10000 + 1*1024*1024) /* malloc() len */
39*2ac07f75SDavid Lechner #define PHYS_SDRAM_1		DAVINCI_DDR_EMIF_DATA_BASE /* DDR Start */
40*2ac07f75SDavid Lechner #define PHYS_SDRAM_1_SIZE	(64 << 20) /* SDRAM size 64MB */
41*2ac07f75SDavid Lechner #define CONFIG_MAX_RAM_BANK_SIZE (512 << 20) /* max size from SPRS586*/
42*2ac07f75SDavid Lechner 
43*2ac07f75SDavid Lechner /* memtest start addr */
44*2ac07f75SDavid Lechner #define CONFIG_SYS_MEMTEST_START	(PHYS_SDRAM_1 + 0x2000000)
45*2ac07f75SDavid Lechner 
46*2ac07f75SDavid Lechner /* memtest will be run on 16MB */
47*2ac07f75SDavid Lechner #define CONFIG_SYS_MEMTEST_END 	(PHYS_SDRAM_1 + 0x2000000 + 16*1024*1024)
48*2ac07f75SDavid Lechner 
49*2ac07f75SDavid Lechner #define CONFIG_NR_DRAM_BANKS	1 /* we have 1 bank of DRAM */
50*2ac07f75SDavid Lechner 
51*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_SYSCFG_SUSPSRC (	\
52*2ac07f75SDavid Lechner 	DAVINCI_SYSCFG_SUSPSRC_TIMER0 |		\
53*2ac07f75SDavid Lechner 	DAVINCI_SYSCFG_SUSPSRC_SPI0 |		\
54*2ac07f75SDavid Lechner 	DAVINCI_SYSCFG_SUSPSRC_UART1 |		\
55*2ac07f75SDavid Lechner 	DAVINCI_SYSCFG_SUSPSRC_EMAC |		\
56*2ac07f75SDavid Lechner 	DAVINCI_SYSCFG_SUSPSRC_I2C)
57*2ac07f75SDavid Lechner 
58*2ac07f75SDavid Lechner /*
59*2ac07f75SDavid Lechner  * PLL configuration
60*2ac07f75SDavid Lechner  */
61*2ac07f75SDavid Lechner #define CONFIG_SYS_DV_CLKMODE          0
62*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL0_POSTDIV  1
63*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL0_PLLDIV1  0x8000
64*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL0_PLLDIV2  0x8001
65*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL0_PLLDIV3  0x8002
66*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL0_PLLDIV4  0x8003
67*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL0_PLLDIV5  0x8002
68*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL0_PLLDIV6  CONFIG_SYS_DA850_PLL0_PLLDIV1
69*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL0_PLLDIV7  0x8005
70*2ac07f75SDavid Lechner 
71*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL1_POSTDIV  1
72*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL1_PLLDIV1  0x8000
73*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL1_PLLDIV2  0x8001
74*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL1_PLLDIV3  0x8002
75*2ac07f75SDavid Lechner 
76*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL0_PLLM     24
77*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_PLL1_PLLM     21
78*2ac07f75SDavid Lechner 
79*2ac07f75SDavid Lechner /*
80*2ac07f75SDavid Lechner  * DDR2 memory configuration
81*2ac07f75SDavid Lechner  */
82*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_DDR2_DDRPHYCR (DV_DDR_PHY_PWRDNEN | \
83*2ac07f75SDavid Lechner 					DV_DDR_PHY_EXT_STRBEN | \
84*2ac07f75SDavid Lechner 					(0x4 << DV_DDR_PHY_RD_LATENCY_SHIFT))
85*2ac07f75SDavid Lechner 
86*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_DDR2_SDBCR (		\
87*2ac07f75SDavid Lechner 	(1 << DV_DDR_SDCR_MSDRAMEN_SHIFT) |	\
88*2ac07f75SDavid Lechner 	(1 << DV_DDR_SDCR_DDREN_SHIFT) |	\
89*2ac07f75SDavid Lechner 	(1 << DV_DDR_SDCR_SDRAMEN_SHIFT) |	\
90*2ac07f75SDavid Lechner 	(1 << DV_DDR_SDCR_BUS_WIDTH_SHIFT) |	\
91*2ac07f75SDavid Lechner 	(0x3 << DV_DDR_SDCR_CL_SHIFT) |		\
92*2ac07f75SDavid Lechner 	(0x2 << DV_DDR_SDCR_IBANK_SHIFT) |	\
93*2ac07f75SDavid Lechner 	(0x2 << DV_DDR_SDCR_PAGESIZE_SHIFT))
94*2ac07f75SDavid Lechner 
95*2ac07f75SDavid Lechner /* SDBCR2 is only used if IBANK_POS bit in SDBCR is set */
96*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_DDR2_SDBCR2 0
97*2ac07f75SDavid Lechner 
98*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_DDR2_SDTIMR (		\
99*2ac07f75SDavid Lechner 	(14 << DV_DDR_SDTMR1_RFC_SHIFT) |	\
100*2ac07f75SDavid Lechner 	(2 << DV_DDR_SDTMR1_RP_SHIFT) |		\
101*2ac07f75SDavid Lechner 	(2 << DV_DDR_SDTMR1_RCD_SHIFT) |	\
102*2ac07f75SDavid Lechner 	(1 << DV_DDR_SDTMR1_WR_SHIFT) |		\
103*2ac07f75SDavid Lechner 	(5 << DV_DDR_SDTMR1_RAS_SHIFT) |	\
104*2ac07f75SDavid Lechner 	(8 << DV_DDR_SDTMR1_RC_SHIFT) |		\
105*2ac07f75SDavid Lechner 	(1 << DV_DDR_SDTMR1_RRD_SHIFT) |	\
106*2ac07f75SDavid Lechner 	(0 << DV_DDR_SDTMR1_WTR_SHIFT))
107*2ac07f75SDavid Lechner 
108*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_DDR2_SDTIMR2 (		\
109*2ac07f75SDavid Lechner 	(7 << DV_DDR_SDTMR2_RASMAX_SHIFT) |	\
110*2ac07f75SDavid Lechner 	(0 << DV_DDR_SDTMR2_XP_SHIFT) |		\
111*2ac07f75SDavid Lechner 	(0 << DV_DDR_SDTMR2_ODT_SHIFT) |	\
112*2ac07f75SDavid Lechner 	(17 << DV_DDR_SDTMR2_XSNR_SHIFT) |	\
113*2ac07f75SDavid Lechner 	(199 << DV_DDR_SDTMR2_XSRD_SHIFT) |	\
114*2ac07f75SDavid Lechner 	(0 << DV_DDR_SDTMR2_RTP_SHIFT) |	\
115*2ac07f75SDavid Lechner 	(0 << DV_DDR_SDTMR2_CKE_SHIFT))
116*2ac07f75SDavid Lechner 
117*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_DDR2_SDRCR    0x00000494
118*2ac07f75SDavid Lechner #define CONFIG_SYS_DA850_DDR2_PBBPR    0x30
119*2ac07f75SDavid Lechner 
120*2ac07f75SDavid Lechner /*
121*2ac07f75SDavid Lechner  * Serial Driver info
122*2ac07f75SDavid Lechner  */
123*2ac07f75SDavid Lechner #define CONFIG_SYS_NS16550_SERIAL
124*2ac07f75SDavid Lechner #define CONFIG_SYS_NS16550_REG_SIZE	-4	/* NS16550 register size */
125*2ac07f75SDavid Lechner #define CONFIG_SYS_NS16550_COM1	DAVINCI_UART1_BASE /* Base address of UART1 */
126*2ac07f75SDavid Lechner #define CONFIG_SYS_NS16550_CLK	clk_get(DAVINCI_UART2_CLKID)
127*2ac07f75SDavid Lechner #define CONFIG_CONS_INDEX	1		/* use UART0 for console */
128*2ac07f75SDavid Lechner #define CONFIG_BAUDRATE		115200		/* Default baud rate */
129*2ac07f75SDavid Lechner 
130*2ac07f75SDavid Lechner #define CONFIG_SPI
131*2ac07f75SDavid Lechner #define CONFIG_CMD_SF
132*2ac07f75SDavid Lechner #define CONFIG_DAVINCI_SPI
133*2ac07f75SDavid Lechner #define CONFIG_SYS_SPI_BASE		DAVINCI_SPI0_BASE
134*2ac07f75SDavid Lechner #define CONFIG_SYS_SPI_CLK		clk_get(DAVINCI_SPI0_CLKID)
135*2ac07f75SDavid Lechner #define CONFIG_SF_DEFAULT_SPEED		50000000
136*2ac07f75SDavid Lechner #define CONFIG_ENV_SPI_MAX_HZ		CONFIG_SF_DEFAULT_SPEED
137*2ac07f75SDavid Lechner 
138*2ac07f75SDavid Lechner /*
139*2ac07f75SDavid Lechner  * I2C Configuration
140*2ac07f75SDavid Lechner  */
141*2ac07f75SDavid Lechner #define CONFIG_SYS_I2C
142*2ac07f75SDavid Lechner #define CONFIG_SYS_I2C_DAVINCI
143*2ac07f75SDavid Lechner #define CONFIG_SYS_DAVINCI_I2C_SPEED		400000
144*2ac07f75SDavid Lechner #define CONFIG_SYS_DAVINCI_I2C_SLAVE   10 /* Bogus, master-only in U-Boot */
145*2ac07f75SDavid Lechner 
146*2ac07f75SDavid Lechner /*
147*2ac07f75SDavid Lechner  * U-Boot general configuration
148*2ac07f75SDavid Lechner  */
149*2ac07f75SDavid Lechner #define CONFIG_BOARD_EARLY_INIT_F
150*2ac07f75SDavid Lechner #define CONFIG_BOOTFILE		"uImage" /* Boot file name */
151*2ac07f75SDavid Lechner #define CONFIG_SYS_CBSIZE	1024 /* Console I/O Buffer Size	*/
152*2ac07f75SDavid Lechner #define CONFIG_SYS_PBSIZE	(CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
153*2ac07f75SDavid Lechner #define CONFIG_SYS_MAXARGS	16 /* max number of command args */
154*2ac07f75SDavid Lechner #define CONFIG_SYS_BARGSIZE	CONFIG_SYS_CBSIZE /* Boot Args Buffer Size */
155*2ac07f75SDavid Lechner #define CONFIG_SYS_LOAD_ADDR	(PHYS_SDRAM_1 + 0x700000)
156*2ac07f75SDavid Lechner #define CONFIG_VERSION_VARIABLE
157*2ac07f75SDavid Lechner #define CONFIG_AUTO_COMPLETE
158*2ac07f75SDavid Lechner #define CONFIG_SYS_HUSH_PARSER
159*2ac07f75SDavid Lechner #define CONFIG_CMDLINE_EDITING
160*2ac07f75SDavid Lechner #define CONFIG_SYS_LONGHELP
161*2ac07f75SDavid Lechner #define CONFIG_CRC32_VERIFY
162*2ac07f75SDavid Lechner #define CONFIG_MX_CYCLIC
163*2ac07f75SDavid Lechner #define CONFIG_OF_LIBFDT
164*2ac07f75SDavid Lechner 
165*2ac07f75SDavid Lechner /*
166*2ac07f75SDavid Lechner  * Linux Information
167*2ac07f75SDavid Lechner  */
168*2ac07f75SDavid Lechner #define LINUX_BOOT_PARAM_ADDR	(PHYS_SDRAM_1 + 0x100)
169*2ac07f75SDavid Lechner #define CONFIG_HWCONFIG		/* enable hwconfig */
170*2ac07f75SDavid Lechner #define CONFIG_CMDLINE_TAG
171*2ac07f75SDavid Lechner #define CONFIG_REVISION_TAG
172*2ac07f75SDavid Lechner #define CONFIG_SERIAL_TAG
173*2ac07f75SDavid Lechner #define CONFIG_SETUP_MEMORY_TAGS
174*2ac07f75SDavid Lechner #define CONFIG_SETUP_INITRD_TAG
175*2ac07f75SDavid Lechner #define CONFIG_BOOTDELAY	0
176*2ac07f75SDavid Lechner #define CONFIG_ZERO_BOOTDELAY_CHECK
177*2ac07f75SDavid Lechner #define CONFIG_BOOTCOMMAND \
178*2ac07f75SDavid Lechner 	"if mmc rescan; then " \
179*2ac07f75SDavid Lechner 		"if run loadbootscr; then " \
180*2ac07f75SDavid Lechner 			"run bootscript; " \
181*2ac07f75SDavid Lechner 		"else " \
182*2ac07f75SDavid Lechner 			"if run loadimage; then " \
183*2ac07f75SDavid Lechner 				"run mmcargs; " \
184*2ac07f75SDavid Lechner 				"run mmcboot; " \
185*2ac07f75SDavid Lechner 			"else " \
186*2ac07f75SDavid Lechner 				"run flashargs; " \
187*2ac07f75SDavid Lechner 				"run flashboot; " \
188*2ac07f75SDavid Lechner 			"fi; " \
189*2ac07f75SDavid Lechner 		"fi; " \
190*2ac07f75SDavid Lechner 	"else " \
191*2ac07f75SDavid Lechner 		"run flashargs; " \
192*2ac07f75SDavid Lechner 		"run flashboot; " \
193*2ac07f75SDavid Lechner 	"fi"
194*2ac07f75SDavid Lechner #define CONFIG_EXTRA_ENV_SETTINGS \
195*2ac07f75SDavid Lechner 	"hostname=EV3\0" \
196*2ac07f75SDavid Lechner 	"memsize=64M\0" \
197*2ac07f75SDavid Lechner 	"filesyssize=10M\0" \
198*2ac07f75SDavid Lechner 	"verify=n\0" \
199*2ac07f75SDavid Lechner 	"console=ttyS1,115200n8\0" \
200*2ac07f75SDavid Lechner 	"bootscraddr=0xC0600000\0" \
201*2ac07f75SDavid Lechner 	"loadaddr=0xC0007FC0\0" \
202*2ac07f75SDavid Lechner 	"filesysaddr=0xC1180000\0" \
203*2ac07f75SDavid Lechner 	"fwupdateboot=mw 0xFFFF1FFC 0x5555AAAA; reset\0" \
204*2ac07f75SDavid Lechner 	"mmcargs=setenv bootargs mem=${memsize} console=${console} root=/dev/mmcblk0p2 rw rootwait lpj=747520\0" \
205*2ac07f75SDavid Lechner 	"mmcboot=bootm ${loadaddr}\0" \
206*2ac07f75SDavid Lechner 	"flashargs=setenv bootargs mem=${memsize} initrd=${filesysaddr},${filesyssize} root=/dev/ram0 rw rootfstype=squashfs console=${console} lpj=747520\0" \
207*2ac07f75SDavid Lechner 	"flashboot=sf probe 0; sf read ${loadaddr} 0x50000 0x300000; sf read ${filesysaddr} 0x350000 0x960000; bootm ${loadaddr}\0" \
208*2ac07f75SDavid Lechner 	"loadimage=fatload mmc 0 ${loadaddr} uImage\0" \
209*2ac07f75SDavid Lechner 	"loadbootscr=fatload mmc 0 ${bootscraddr} boot.scr\0" \
210*2ac07f75SDavid Lechner 	"bootscript=source ${bootscraddr}\0" \
211*2ac07f75SDavid Lechner 
212*2ac07f75SDavid Lechner /*
213*2ac07f75SDavid Lechner  * U-Boot commands
214*2ac07f75SDavid Lechner  */
215*2ac07f75SDavid Lechner #define CONFIG_CMD_ASKENV
216*2ac07f75SDavid Lechner #define CONFIG_CMD_DHCP
217*2ac07f75SDavid Lechner #define CONFIG_CMD_DIAG
218*2ac07f75SDavid Lechner #define CONFIG_CMD_MII
219*2ac07f75SDavid Lechner #define CONFIG_CMD_PING
220*2ac07f75SDavid Lechner #define CONFIG_CMD_SAVES
221*2ac07f75SDavid Lechner 
222*2ac07f75SDavid Lechner #ifdef CONFIG_CMD_BDI
223*2ac07f75SDavid Lechner #define CONFIG_CLOCKS
224*2ac07f75SDavid Lechner #endif
225*2ac07f75SDavid Lechner 
226*2ac07f75SDavid Lechner #define CONFIG_CMD_SPI
227*2ac07f75SDavid Lechner 
228*2ac07f75SDavid Lechner #define CONFIG_ENV_IS_NOWHERE
229*2ac07f75SDavid Lechner #define CONFIG_SYS_NO_FLASH
230*2ac07f75SDavid Lechner #define CONFIG_ENV_SIZE		(16 << 10)
231*2ac07f75SDavid Lechner 
232*2ac07f75SDavid Lechner /* SD/MMC configuration */
233*2ac07f75SDavid Lechner #define CONFIG_MMC
234*2ac07f75SDavid Lechner #define CONFIG_DAVINCI_MMC_SD1
235*2ac07f75SDavid Lechner #define CONFIG_GENERIC_MMC
236*2ac07f75SDavid Lechner #define CONFIG_DAVINCI_MMC
237*2ac07f75SDavid Lechner 
238*2ac07f75SDavid Lechner /*
239*2ac07f75SDavid Lechner  * Enable MMC commands only when
240*2ac07f75SDavid Lechner  * MMC support is present
241*2ac07f75SDavid Lechner  */
242*2ac07f75SDavid Lechner #ifdef CONFIG_MMC
243*2ac07f75SDavid Lechner #define CONFIG_DOS_PARTITION
244*2ac07f75SDavid Lechner #define CONFIG_CMD_EXT3
245*2ac07f75SDavid Lechner #define CONFIG_CMD_EXT4
246*2ac07f75SDavid Lechner #define CONFIG_CMD_FAT
247*2ac07f75SDavid Lechner #define CONFIG_CMD_MMC
248*2ac07f75SDavid Lechner #endif
249*2ac07f75SDavid Lechner 
250*2ac07f75SDavid Lechner /* additions for new relocation code, must added to all boards */
251*2ac07f75SDavid Lechner #define CONFIG_SYS_SDRAM_BASE		0xc0000000
252*2ac07f75SDavid Lechner 
253*2ac07f75SDavid Lechner #define CONFIG_SYS_INIT_SP_ADDR		0x80010000
254*2ac07f75SDavid Lechner 
255*2ac07f75SDavid Lechner #endif /* __CONFIG_H */
256