blob: 251b6f0c37bb3b1f180fdb9ab75e08e7187eed1f [file] [log] [blame]
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +00001/*
2 * Copyright (C) 2010 Freescale Semiconductor, Inc.
3 *
4 * Configuration settings for the MX53-EVK Freescale board.
5 *
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +02006 * SPDX-License-Identifier: GPL-2.0+
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +00007 */
8
9#ifndef __CONFIG_H
10#define __CONFIG_H
11
12#define CONFIG_MX53
13
Fabio Estevam17978382011-09-22 08:07:22 +000014#define CONFIG_MACH_TYPE MACH_TYPE_MX53_EVK
15
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000016#include <asm/arch/imx-regs.h>
17
Fabio Estevamb1574ff2011-10-27 01:32:43 +000018#define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
Fabio Estevamb1574ff2011-10-27 01:32:43 +000019#define CONFIG_SETUP_MEMORY_TAGS
20#define CONFIG_INITRD_TAG
Fabio Estevam5db5f412013-04-24 14:44:26 +000021#define CONFIG_REVISION_TAG
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000022
Gong Qianyu52de2e52015-10-26 19:47:42 +080023#define CONFIG_SYS_FSL_CLK
Fabio Estevam31ab5852014-04-22 15:34:58 -030024
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000025/* Size of malloc() pool */
26#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2 * 1024 * 1024)
27
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000028#define CONFIG_MXC_GPIO
29
30#define CONFIG_MXC_UART
Stefano Babic1ca47d92011-11-22 15:22:39 +010031#define CONFIG_MXC_UART_BASE UART1_BASE
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000032
33/* I2C Configs */
trem03997412013-09-21 18:13:36 +020034#define CONFIG_SYS_I2C
35#define CONFIG_SYS_I2C_MXC
Albert ARIBAUD \\(3ADEV\\)eb943872015-09-21 22:43:38 +020036#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
37#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
York Sunf1a52162015-03-20 10:20:40 -070038#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000039
40/* PMIC Configs */
Ɓukasz Majewski1b6d9ed2012-11-13 03:22:14 +000041#define CONFIG_POWER
42#define CONFIG_POWER_I2C
43#define CONFIG_POWER_FSL
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000044#define CONFIG_SYS_FSL_PMIC_I2C_ADDR 8
Simon Glass02229812014-05-20 06:01:34 -060045#define CONFIG_POWER_FSL_MC13892
Fabio Estevamaf98ea02011-10-25 01:44:19 +000046#define CONFIG_RTC_MC13XXX
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000047
48/* MMC Configs */
49#define CONFIG_FSL_ESDHC
50#define CONFIG_SYS_FSL_ESDHC_ADDR 0
51#define CONFIG_SYS_FSL_ESDHC_NUM 2
52
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000053/* Eth Configs */
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000054#define CONFIG_MII
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000055
56#define CONFIG_FEC_MXC
57#define IMX_FEC_BASE FEC_BASE_ADDR
58#define CONFIG_FEC_MXC_PHYADDR 0x1F
59
Fabio Estevamaf98ea02011-10-25 01:44:19 +000060#define CONFIG_CMD_DATE
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000061
Troy Kiskydd793fc2012-08-15 10:31:22 +000062/* Miscellaneous commands */
63#define CONFIG_CMD_BMODE
64
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000065/* allow to overwrite serial and ethaddr */
66#define CONFIG_ENV_OVERWRITE
67#define CONFIG_CONS_INDEX 1
68#define CONFIG_BAUDRATE 115200
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000069
70/* Command definition */
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000071
Wolfgang Grandegger96529e22011-10-17 08:21:56 +000072#define CONFIG_ETHPRIME "FEC0"
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000073
74#define CONFIG_LOADADDR 0x70800000 /* loadaddr env var */
75#define CONFIG_SYS_TEXT_BASE 0x77800000
76
77#define CONFIG_EXTRA_ENV_SETTINGS \
78 "script=boot.scr\0" \
79 "uimage=uImage\0" \
80 "mmcdev=0\0" \
81 "mmcpart=2\0" \
82 "mmcroot=/dev/mmcblk0p3 rw\0" \
83 "mmcrootfstype=ext3 rootwait\0" \
84 "mmcargs=setenv bootargs console=ttymxc0,${baudrate} " \
85 "root=${mmcroot} " \
86 "rootfstype=${mmcrootfstype}\0" \
87 "loadbootscript=" \
88 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
89 "bootscript=echo Running bootscript from mmc ...; " \
90 "source\0" \
91 "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
92 "mmcboot=echo Booting from mmc ...; " \
93 "run mmcargs; " \
94 "bootm\0" \
95 "netargs=setenv bootargs console=ttymxc0,${baudrate} " \
96 "root=/dev/nfs " \
97 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
98 "netboot=echo Booting from net ...; " \
99 "run netargs; " \
100 "dhcp ${uimage}; bootm\0" \
101
102#define CONFIG_BOOTCOMMAND \
Andrew Bradforde1c7c8a2012-10-01 05:06:52 +0000103 "mmc dev ${mmcdev}; if mmc rescan; then " \
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +0000104 "if run loadbootscript; then " \
105 "run bootscript; " \
106 "else " \
107 "if run loaduimage; then " \
108 "run mmcboot; " \
109 "else run netboot; " \
110 "fi; " \
111 "fi; " \
112 "else run netboot; fi"
113
114#define CONFIG_ARP_TIMEOUT 200UL
115
116/* Miscellaneous configurable options */
117#define CONFIG_SYS_LONGHELP /* undef to save memory */
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +0000118#define CONFIG_AUTO_COMPLETE
119#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
120
121/* Print Buffer Size */
122#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
123#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
124#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
125
126#define CONFIG_SYS_MEMTEST_START 0x70000000
Fabio Estevam8d790c72012-02-09 14:25:09 +0000127#define CONFIG_SYS_MEMTEST_END 0x70010000
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +0000128
129#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
130
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +0000131#define CONFIG_CMDLINE_EDITING
132
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +0000133/* Physical Memory Map */
134#define CONFIG_NR_DRAM_BANKS 1
135#define PHYS_SDRAM_1 CSD0_BASE_ADDR
136#define PHYS_SDRAM_1_SIZE (512 * 1024 * 1024)
137
138#define CONFIG_SYS_SDRAM_BASE (PHYS_SDRAM_1)
139#define CONFIG_SYS_INIT_RAM_ADDR (IRAM_BASE_ADDR)
140#define CONFIG_SYS_INIT_RAM_SIZE (IRAM_SIZE)
141
142#define CONFIG_SYS_INIT_SP_OFFSET \
143 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
144#define CONFIG_SYS_INIT_SP_ADDR \
145 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
146
Masahiro Yamada8cea9b52017-02-11 22:43:54 +0900147/* environment organization */
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +0000148#define CONFIG_ENV_OFFSET (6 * 64 * 1024)
149#define CONFIG_ENV_SIZE (8 * 1024)
150#define CONFIG_ENV_IS_IN_MMC
151#define CONFIG_SYS_MMC_ENV_DEV 0
152
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +0000153#endif /* __CONFIG_H */