xref: /openbmc/u-boot/include/configs/mx53cx9020.h (revision 704744f8)
1 /*
2  * Copyright (C) 2015  Beckhoff Automation GmbH & Co. KG
3  * Patrick Bruenn <p.bruenn@beckhoff.com>
4  *
5  * Configuration settings for Beckhoff CX9020.
6  *
7  * Based on Freescale's Linux i.MX mx53loco.h file:
8  * Copyright (C) 2010-2011 Freescale Semiconductor.
9  *
10  * SPDX-License-Identifier:	GPL-2.0+
11  */
12 
13 #ifndef __CONFIG_H
14 #define __CONFIG_H
15 
16 #include <asm/arch/imx-regs.h>
17 
18 #define CONFIG_CMDLINE_TAG
19 #define CONFIG_SETUP_MEMORY_TAGS
20 #define CONFIG_INITRD_TAG
21 
22 #define CONFIG_SYS_FSL_CLK
23 
24 /* Size of malloc() pool */
25 #define CONFIG_SYS_MALLOC_LEN		(10 * 1024 * 1024)
26 
27 #define CONFIG_REVISION_TAG
28 
29 #define CONFIG_MXC_UART_BASE UART2_BASE
30 
31 #define CONFIG_FPGA_COUNT 1
32 
33 /* MMC Configs */
34 #define CONFIG_SYS_FSL_ESDHC_ADDR	0
35 #define CONFIG_SYS_FSL_ESDHC_NUM	2
36 
37 /* bootz: zImage/initrd.img support */
38 
39 /* Eth Configs */
40 #define CONFIG_MII
41 #define IMX_FEC_BASE	FEC_BASE_ADDR
42 #define CONFIG_ETHPRIME		"FEC0"
43 #define CONFIG_FEC_MXC_PHYADDR	0x1F
44 
45 /* USB Configs */
46 #define CONFIG_USB_EHCI_MX5
47 #define CONFIG_MXC_USB_PORT	1
48 #define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
49 #define CONFIG_MXC_USB_FLAGS	0
50 
51 /* allow to overwrite serial and ethaddr */
52 #define CONFIG_ENV_OVERWRITE
53 
54 /* Command definition */
55 
56 #define CONFIG_LOADADDR		0x70010000	/* loadaddr env var */
57 
58 #define CONFIG_EXTRA_ENV_SETTINGS \
59 	"fdt_addr_r=0x71ff0000\0" \
60 	"pxefile_addr_r=0x73000000\0" \
61 	"ramdisk_addr_r=0x72000000\0" \
62 	"console=ttymxc1,115200\0" \
63 	"uenv=/boot/uEnv.txt\0" \
64 	"optargs=\0" \
65 	"cmdline=\0" \
66 	"mmcdev=0\0" \
67 	"mmcpart=1\0" \
68 	"mmcrootfstype=ext4 rootwait fixrtc\0" \
69 	"mmcargs=setenv bootargs console=${console} " \
70 		"${optargs} " \
71 		"root=/dev/mmcblk${mmcdev}p${mmcpart} ro " \
72 		"rootfstype=${mmcrootfstype} " \
73 		"${cmdline}\0" \
74 	"loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
75 	"loadpxe=dhcp;setenv kernel_addr_r ${loadaddr};pxe get;pxe boot;\0" \
76 	"loadrd=load mmc ${bootpart} ${ramdisk_addr_r} ${bootdir}/${rdfile};" \
77 		"setenv rdsize ${filesize}\0" \
78 	"loadfdt=echo loading ${fdt_path} ...;" \
79 		"load mmc ${bootpart} ${fdt_addr_r} ${fdt_path}\0" \
80 	"mmcboot=mmc dev ${mmcdev}; " \
81 		"if mmc rescan; then " \
82 			"echo SD/MMC found on device ${mmcdev};" \
83 			"echo Checking for: ${uenv} ...;" \
84 			"setenv bootpart ${mmcdev}:${mmcpart};" \
85 			"if test -e mmc ${bootpart} ${uenv}; then " \
86 				"load mmc ${bootpart} ${loadaddr} ${uenv};" \
87 				"env import -t ${loadaddr} ${filesize};" \
88 				"echo Loaded environment from ${uenv};" \
89 				"if test -n ${dtb}; then " \
90 					"setenv fdt_file ${dtb};" \
91 					"echo Using: dtb=${fdt_file} ...;" \
92 				"fi;" \
93 				"echo Checking for uname_r in ${uenv}...;" \
94 				"if test -n ${uname_r}; then " \
95 					"echo Running uname_boot ...;" \
96 					"run uname_boot;" \
97 				"fi;" \
98 			"fi;" \
99 		"fi;\0" \
100 	"uname_boot="\
101 		"setenv bootdir /boot; " \
102 		"setenv bootfile vmlinuz-${uname_r}; " \
103 		"setenv ccatfile /boot/ccat.rbf; " \
104 		"echo loading CCAT firmware from ${ccatfile}; " \
105 		"load mmc ${bootpart} ${loadaddr} ${ccatfile}; " \
106 		"fpga load 0 ${loadaddr} ${filesize}; " \
107 		"if test -e mmc ${bootpart} ${bootdir}/${bootfile}; then " \
108 			"echo loading ${bootdir}/${bootfile} ...; " \
109 			"run loadimage;" \
110 			"setenv fdt_path /boot/dtbs/${uname_r}/${fdt_file}; " \
111 			"if test -e mmc ${bootpart} ${fdt_path}; then " \
112 				"run loadfdt;" \
113 			"else " \
114 				"echo; echo unable to find ${fdt_file} ...;" \
115 				"echo booting legacy ...;"\
116 				"run mmcargs;" \
117 				"echo debug: [${bootargs}] ... ;" \
118 				"echo debug: [bootz ${loadaddr}] ... ;" \
119 				"bootz ${loadaddr}; " \
120 			"fi;" \
121 			"run mmcargs;" \
122 			"echo debug: [${bootargs}] ... ;" \
123 			"echo debug: [bootz ${loadaddr} - ${fdt_addr_r}];" \
124 			"bootz ${loadaddr} - ${fdt_addr_r}; " \
125 		"else " \
126 			"echo loading from dhcp ...; " \
127 			"run loadpxe; " \
128 		"fi;\0"
129 
130 #define CONFIG_BOOTCOMMAND \
131 	"run mmcboot;"
132 
133 #define CONFIG_ARP_TIMEOUT	200UL
134 
135 /* Miscellaneous configurable options */
136 #define CONFIG_SYS_CBSIZE		512	/* Console I/O Buffer Size */
137 
138 #define CONFIG_SYS_MEMTEST_START       0x70000000
139 #define CONFIG_SYS_MEMTEST_END         0x70010000
140 
141 #define CONFIG_SYS_LOAD_ADDR		CONFIG_LOADADDR
142 
143 /* Physical Memory Map */
144 #define CONFIG_NR_DRAM_BANKS	2
145 #define PHYS_SDRAM_1			CSD0_BASE_ADDR
146 #define PHYS_SDRAM_1_SIZE		(gd->bd->bi_dram[0].size)
147 #define PHYS_SDRAM_2			CSD1_BASE_ADDR
148 #define PHYS_SDRAM_2_SIZE		(gd->bd->bi_dram[1].size)
149 #define PHYS_SDRAM_SIZE			(gd->ram_size)
150 
151 #define CONFIG_SYS_SDRAM_BASE		(PHYS_SDRAM_1)
152 #define CONFIG_SYS_INIT_RAM_ADDR	(IRAM_BASE_ADDR)
153 #define CONFIG_SYS_INIT_RAM_SIZE	(IRAM_SIZE)
154 
155 #define CONFIG_SYS_INIT_SP_OFFSET \
156 	(CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
157 #define CONFIG_SYS_INIT_SP_ADDR \
158 	(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
159 
160 /* environment organization */
161 #define CONFIG_ENV_OFFSET      (6 * 64 * 1024)
162 #define CONFIG_ENV_SIZE        (8 * 1024)
163 #define CONFIG_SYS_MMC_ENV_DEV 0
164 
165 /* Framebuffer and LCD */
166 #define CONFIG_PREBOOT
167 #define CONFIG_VIDEO_IPUV3
168 #define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
169 #define CONFIG_VIDEO_BMP_RLE8
170 #define CONFIG_SPLASH_SCREEN
171 #define CONFIG_BMP_16BPP
172 #define CONFIG_VIDEO_LOGO
173 
174 #endif /* __CONFIG_H */
175