Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2010 Freescale Semiconductor, Inc. |
| 4 | * |
| 5 | * Configuration settings for the MX53-EVK Freescale board. |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __CONFIG_H |
| 9 | #define __CONFIG_H |
| 10 | |
Fabio Estevam | 00e11a4 | 2011-09-22 08:07:22 +0000 | [diff] [blame] | 11 | #define CONFIG_MACH_TYPE MACH_TYPE_MX53_EVK |
| 12 | |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 13 | #include <asm/arch/imx-regs.h> |
| 14 | |
Fabio Estevam | a7abca0 | 2011-10-27 01:32:43 +0000 | [diff] [blame] | 15 | #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */ |
Fabio Estevam | a7abca0 | 2011-10-27 01:32:43 +0000 | [diff] [blame] | 16 | #define CONFIG_SETUP_MEMORY_TAGS |
| 17 | #define CONFIG_INITRD_TAG |
Fabio Estevam | fd622f2 | 2013-04-24 14:44:26 +0000 | [diff] [blame] | 18 | #define CONFIG_REVISION_TAG |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 19 | |
Gong Qianyu | 18fb0e3 | 2015-10-26 19:47:42 +0800 | [diff] [blame] | 20 | #define CONFIG_SYS_FSL_CLK |
Fabio Estevam | 851f556 | 2014-04-22 15:34:58 -0300 | [diff] [blame] | 21 | |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 22 | /* Size of malloc() pool */ |
| 23 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2 * 1024 * 1024) |
| 24 | |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 25 | #define CONFIG_MXC_UART |
Stefano Babic | 40f6fff | 2011-11-22 15:22:39 +0100 | [diff] [blame] | 26 | #define CONFIG_MXC_UART_BASE UART1_BASE |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 27 | |
| 28 | /* I2C Configs */ |
trem | b089d03 | 2013-09-21 18:13:36 +0200 | [diff] [blame] | 29 | #define CONFIG_SYS_I2C |
| 30 | #define CONFIG_SYS_I2C_MXC |
Albert ARIBAUD \\(3ADEV\\) | 03544c6 | 2015-09-21 22:43:38 +0200 | [diff] [blame] | 31 | #define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */ |
| 32 | #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */ |
York Sun | f8cb101 | 2015-03-20 10:20:40 -0700 | [diff] [blame] | 33 | #define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */ |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 34 | |
| 35 | /* PMIC Configs */ |
Ćukasz Majewski | be3b51a | 2012-11-13 03:22:14 +0000 | [diff] [blame] | 36 | #define CONFIG_POWER |
| 37 | #define CONFIG_POWER_I2C |
| 38 | #define CONFIG_POWER_FSL |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 39 | #define CONFIG_SYS_FSL_PMIC_I2C_ADDR 8 |
Simon Glass | 913702c | 2014-05-20 06:01:34 -0600 | [diff] [blame] | 40 | #define CONFIG_POWER_FSL_MC13892 |
Fabio Estevam | 4f97c88 | 2011-10-25 01:44:19 +0000 | [diff] [blame] | 41 | #define CONFIG_RTC_MC13XXX |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 42 | |
| 43 | /* MMC Configs */ |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 44 | #define CONFIG_SYS_FSL_ESDHC_ADDR 0 |
| 45 | #define CONFIG_SYS_FSL_ESDHC_NUM 2 |
| 46 | |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 47 | /* Eth Configs */ |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 48 | |
| 49 | #define CONFIG_FEC_MXC |
| 50 | #define IMX_FEC_BASE FEC_BASE_ADDR |
| 51 | #define CONFIG_FEC_MXC_PHYADDR 0x1F |
| 52 | |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 53 | /* allow to overwrite serial and ethaddr */ |
| 54 | #define CONFIG_ENV_OVERWRITE |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 55 | |
| 56 | /* Command definition */ |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 57 | |
Wolfgang Grandegger | 28b119e | 2011-10-17 08:21:56 +0000 | [diff] [blame] | 58 | #define CONFIG_ETHPRIME "FEC0" |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 59 | |
| 60 | #define CONFIG_LOADADDR 0x70800000 /* loadaddr env var */ |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 61 | |
| 62 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 63 | "script=boot.scr\0" \ |
| 64 | "uimage=uImage\0" \ |
| 65 | "mmcdev=0\0" \ |
| 66 | "mmcpart=2\0" \ |
| 67 | "mmcroot=/dev/mmcblk0p3 rw\0" \ |
| 68 | "mmcrootfstype=ext3 rootwait\0" \ |
| 69 | "mmcargs=setenv bootargs console=ttymxc0,${baudrate} " \ |
| 70 | "root=${mmcroot} " \ |
| 71 | "rootfstype=${mmcrootfstype}\0" \ |
| 72 | "loadbootscript=" \ |
| 73 | "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ |
| 74 | "bootscript=echo Running bootscript from mmc ...; " \ |
| 75 | "source\0" \ |
| 76 | "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \ |
| 77 | "mmcboot=echo Booting from mmc ...; " \ |
| 78 | "run mmcargs; " \ |
| 79 | "bootm\0" \ |
| 80 | "netargs=setenv bootargs console=ttymxc0,${baudrate} " \ |
| 81 | "root=/dev/nfs " \ |
| 82 | "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \ |
| 83 | "netboot=echo Booting from net ...; " \ |
| 84 | "run netargs; " \ |
| 85 | "dhcp ${uimage}; bootm\0" \ |
| 86 | |
| 87 | #define CONFIG_BOOTCOMMAND \ |
Andrew Bradford | 6696811 | 2012-10-01 05:06:52 +0000 | [diff] [blame] | 88 | "mmc dev ${mmcdev}; if mmc rescan; then " \ |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 89 | "if run loadbootscript; then " \ |
| 90 | "run bootscript; " \ |
| 91 | "else " \ |
| 92 | "if run loaduimage; then " \ |
| 93 | "run mmcboot; " \ |
| 94 | "else run netboot; " \ |
| 95 | "fi; " \ |
| 96 | "fi; " \ |
| 97 | "else run netboot; fi" |
| 98 | |
| 99 | #define CONFIG_ARP_TIMEOUT 200UL |
| 100 | |
| 101 | /* Miscellaneous configurable options */ |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 102 | |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 103 | #define CONFIG_SYS_MEMTEST_START 0x70000000 |
Fabio Estevam | bc9d5ef | 2012-02-09 14:25:09 +0000 | [diff] [blame] | 104 | #define CONFIG_SYS_MEMTEST_END 0x70010000 |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 105 | |
| 106 | #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR |
| 107 | |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 108 | /* Physical Memory Map */ |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 109 | #define PHYS_SDRAM_1 CSD0_BASE_ADDR |
| 110 | #define PHYS_SDRAM_1_SIZE (512 * 1024 * 1024) |
| 111 | |
| 112 | #define CONFIG_SYS_SDRAM_BASE (PHYS_SDRAM_1) |
| 113 | #define CONFIG_SYS_INIT_RAM_ADDR (IRAM_BASE_ADDR) |
| 114 | #define CONFIG_SYS_INIT_RAM_SIZE (IRAM_SIZE) |
| 115 | |
| 116 | #define CONFIG_SYS_INIT_SP_OFFSET \ |
| 117 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
| 118 | #define CONFIG_SYS_INIT_SP_ADDR \ |
| 119 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) |
| 120 | |
Masahiro Yamada | e856bdc | 2017-02-11 22:43:54 +0900 | [diff] [blame] | 121 | /* environment organization */ |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 122 | #define CONFIG_ENV_OFFSET (6 * 64 * 1024) |
| 123 | #define CONFIG_ENV_SIZE (8 * 1024) |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 124 | #define CONFIG_SYS_MMC_ENV_DEV 0 |
| 125 | |
Liu Hui-R64343 | 94391fb | 2011-01-03 22:27:42 +0000 | [diff] [blame] | 126 | #endif /* __CONFIG_H */ |