blob: 63bd80d6628878a9ebe23fb0e7e3e742e42125e5 [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
Fabio Estevam17978382011-09-22 08:07:22 +000012#define CONFIG_MACH_TYPE MACH_TYPE_MX53_EVK
13
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000014#include <asm/arch/imx-regs.h>
15
Fabio Estevamb1574ff2011-10-27 01:32:43 +000016#define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
Fabio Estevamb1574ff2011-10-27 01:32:43 +000017#define CONFIG_SETUP_MEMORY_TAGS
18#define CONFIG_INITRD_TAG
Fabio Estevam5db5f412013-04-24 14:44:26 +000019#define CONFIG_REVISION_TAG
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000020
Gong Qianyu52de2e52015-10-26 19:47:42 +080021#define CONFIG_SYS_FSL_CLK
Fabio Estevam31ab5852014-04-22 15:34:58 -030022
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000023/* Size of malloc() pool */
24#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2 * 1024 * 1024)
25
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000026#define CONFIG_MXC_GPIO
27
28#define CONFIG_MXC_UART
Stefano Babic1ca47d92011-11-22 15:22:39 +010029#define CONFIG_MXC_UART_BASE UART1_BASE
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000030
31/* I2C Configs */
trem03997412013-09-21 18:13:36 +020032#define CONFIG_SYS_I2C
33#define CONFIG_SYS_I2C_MXC
Albert ARIBAUD \\(3ADEV\\)eb943872015-09-21 22:43:38 +020034#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
35#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
York Sunf1a52162015-03-20 10:20:40 -070036#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000037
38/* PMIC Configs */
Ɓukasz Majewski1b6d9ed2012-11-13 03:22:14 +000039#define CONFIG_POWER
40#define CONFIG_POWER_I2C
41#define CONFIG_POWER_FSL
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000042#define CONFIG_SYS_FSL_PMIC_I2C_ADDR 8
Simon Glass02229812014-05-20 06:01:34 -060043#define CONFIG_POWER_FSL_MC13892
Fabio Estevamaf98ea02011-10-25 01:44:19 +000044#define CONFIG_RTC_MC13XXX
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000045
46/* MMC Configs */
47#define CONFIG_FSL_ESDHC
48#define CONFIG_SYS_FSL_ESDHC_ADDR 0
49#define CONFIG_SYS_FSL_ESDHC_NUM 2
50
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000051/* Eth Configs */
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000052#define CONFIG_MII
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000053
54#define CONFIG_FEC_MXC
55#define IMX_FEC_BASE FEC_BASE_ADDR
56#define CONFIG_FEC_MXC_PHYADDR 0x1F
57
Fabio Estevamaf98ea02011-10-25 01:44:19 +000058#define CONFIG_CMD_DATE
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000059
60/* allow to overwrite serial and ethaddr */
61#define CONFIG_ENV_OVERWRITE
62#define CONFIG_CONS_INDEX 1
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000063
64/* Command definition */
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000065
Wolfgang Grandegger96529e22011-10-17 08:21:56 +000066#define CONFIG_ETHPRIME "FEC0"
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000067
68#define CONFIG_LOADADDR 0x70800000 /* loadaddr env var */
69#define CONFIG_SYS_TEXT_BASE 0x77800000
70
71#define CONFIG_EXTRA_ENV_SETTINGS \
72 "script=boot.scr\0" \
73 "uimage=uImage\0" \
74 "mmcdev=0\0" \
75 "mmcpart=2\0" \
76 "mmcroot=/dev/mmcblk0p3 rw\0" \
77 "mmcrootfstype=ext3 rootwait\0" \
78 "mmcargs=setenv bootargs console=ttymxc0,${baudrate} " \
79 "root=${mmcroot} " \
80 "rootfstype=${mmcrootfstype}\0" \
81 "loadbootscript=" \
82 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
83 "bootscript=echo Running bootscript from mmc ...; " \
84 "source\0" \
85 "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
86 "mmcboot=echo Booting from mmc ...; " \
87 "run mmcargs; " \
88 "bootm\0" \
89 "netargs=setenv bootargs console=ttymxc0,${baudrate} " \
90 "root=/dev/nfs " \
91 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
92 "netboot=echo Booting from net ...; " \
93 "run netargs; " \
94 "dhcp ${uimage}; bootm\0" \
95
96#define CONFIG_BOOTCOMMAND \
Andrew Bradforde1c7c8a2012-10-01 05:06:52 +000097 "mmc dev ${mmcdev}; if mmc rescan; then " \
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +000098 "if run loadbootscript; then " \
99 "run bootscript; " \
100 "else " \
101 "if run loaduimage; then " \
102 "run mmcboot; " \
103 "else run netboot; " \
104 "fi; " \
105 "fi; " \
106 "else run netboot; fi"
107
108#define CONFIG_ARP_TIMEOUT 200UL
109
110/* Miscellaneous configurable options */
111#define CONFIG_SYS_LONGHELP /* undef to save memory */
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +0000112#define CONFIG_AUTO_COMPLETE
113#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
114
115/* Print Buffer Size */
116#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
117#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
118#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
119
120#define CONFIG_SYS_MEMTEST_START 0x70000000
Fabio Estevam8d790c72012-02-09 14:25:09 +0000121#define CONFIG_SYS_MEMTEST_END 0x70010000
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +0000122
123#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
124
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +0000125#define CONFIG_CMDLINE_EDITING
126
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +0000127/* Physical Memory Map */
128#define CONFIG_NR_DRAM_BANKS 1
129#define PHYS_SDRAM_1 CSD0_BASE_ADDR
130#define PHYS_SDRAM_1_SIZE (512 * 1024 * 1024)
131
132#define CONFIG_SYS_SDRAM_BASE (PHYS_SDRAM_1)
133#define CONFIG_SYS_INIT_RAM_ADDR (IRAM_BASE_ADDR)
134#define CONFIG_SYS_INIT_RAM_SIZE (IRAM_SIZE)
135
136#define CONFIG_SYS_INIT_SP_OFFSET \
137 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
138#define CONFIG_SYS_INIT_SP_ADDR \
139 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
140
Masahiro Yamada8cea9b52017-02-11 22:43:54 +0900141/* environment organization */
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +0000142#define CONFIG_ENV_OFFSET (6 * 64 * 1024)
143#define CONFIG_ENV_SIZE (8 * 1024)
144#define CONFIG_ENV_IS_IN_MMC
145#define CONFIG_SYS_MMC_ENV_DEV 0
146
Liu Hui-R643434cf4cd72011-01-03 22:27:42 +0000147#endif /* __CONFIG_H */