Convert CONFIG_ETHPRIME to Kconfig
[platform/kernel/u-boot.git] / include / configs / mx53loco.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2011 Freescale Semiconductor, Inc.
4  * Jason Liu <r64343@freescale.com>
5  *
6  * Configuration settings for Freescale MX53 low cost board.
7  */
8
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11
12 #include <asm/arch/imx-regs.h>
13
14 #define CONFIG_MXC_UART_BASE    UART1_BASE
15
16 /* MMC Configs */
17 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
18 #define CONFIG_SYS_FSL_ESDHC_NUM        2
19
20 /* USB Configs */
21 #define CONFIG_MXC_USB_PORT     1
22 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
23 #define CONFIG_MXC_USB_FLAGS    0
24
25 /* PMIC Controller */
26 #define CONFIG_DIALOG_POWER
27 #define CONFIG_POWER_FSL
28 #define CONFIG_POWER_FSL_MC13892
29 #define CONFIG_SYS_DIALOG_PMIC_I2C_ADDR 0x48
30 #define CONFIG_SYS_FSL_PMIC_I2C_ADDR    0x8
31
32 /* Command definition */
33
34 #define CONFIG_EXTRA_ENV_SETTINGS \
35         "script=boot.scr\0" \
36         "image=zImage\0" \
37         "fdt_addr=0x71000000\0" \
38         "boot_fdt=try\0" \
39         "ip_dyn=yes\0" \
40         "mmcdev=0\0" \
41         "mmcpart=1\0" \
42         "mmcroot=/dev/mmcblk0p2 rw rootwait\0" \
43         "mmcargs=setenv bootargs console=ttymxc0,${baudrate} root=${mmcroot}\0" \
44         "loadbootscript=" \
45                 "load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
46         "bootscript=echo Running bootscript from mmc ...; " \
47                 "source\0" \
48         "loadimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
49         "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
50         "mmcboot=echo Booting from mmc ...; " \
51                 "run mmcargs; " \
52                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
53                         "if run loadfdt; then " \
54                                 "bootz ${loadaddr} - ${fdt_addr}; " \
55                         "else " \
56                                 "if test ${boot_fdt} = try; then " \
57                                         "bootz; " \
58                                 "else " \
59                                         "echo WARN: Cannot load the DT; " \
60                                 "fi; " \
61                         "fi; " \
62                 "else " \
63                         "bootz; " \
64                 "fi;\0" \
65         "netargs=setenv bootargs console=ttymxc0,${baudrate} " \
66                 "root=/dev/nfs " \
67                 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
68         "netboot=echo Booting from net ...; " \
69                 "run netargs; " \
70                 "if test ${ip_dyn} = yes; then " \
71                         "setenv get_cmd dhcp; " \
72                 "else " \
73                         "setenv get_cmd tftp; " \
74                 "fi; " \
75                 "${get_cmd} ${image}; " \
76                 "if test ${boot_fdt} = yes ||  test ${boot_fdt} = try; then " \
77                         "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
78                                 "bootz ${loadaddr} - ${fdt_addr}; " \
79                         "else " \
80                                 "if test ${boot_fdt} = try; then " \
81                                         "bootz; " \
82                                 "else " \
83                                         "echo ERROR: Cannot load the DT; " \
84                                         "exit; " \
85                                 "fi; " \
86                         "fi; " \
87                 "else " \
88                         "bootz; " \
89                 "fi;\0"
90
91 /* Miscellaneous configurable options */
92 #define CONFIG_SYS_CBSIZE               512     /* Console I/O Buffer Size */
93
94 /* Physical Memory Map */
95 #define PHYS_SDRAM_1                    CSD0_BASE_ADDR
96 #define PHYS_SDRAM_1_SIZE               (gd->bd->bi_dram[0].size)
97 #define PHYS_SDRAM_2                    CSD1_BASE_ADDR
98 #define PHYS_SDRAM_2_SIZE               (gd->bd->bi_dram[1].size)
99 #define PHYS_SDRAM_SIZE                 (gd->ram_size)
100
101 #define CONFIG_SYS_SDRAM_BASE           (PHYS_SDRAM_1)
102 #define CONFIG_SYS_INIT_RAM_ADDR        (IRAM_BASE_ADDR)
103 #define CONFIG_SYS_INIT_RAM_SIZE        (IRAM_SIZE)
104
105 #define CONFIG_SYS_INIT_SP_OFFSET \
106         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
107 #define CONFIG_SYS_INIT_SP_ADDR \
108         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
109
110 /* Environment starts at 768k = 768 * 1024 = 786432 */
111 /*
112  * Detect overlap between U-Boot image and environment area in build-time
113  *
114  * CONFIG_BOARD_SIZE_LIMIT = CONFIG_ENV_OFFSET - u-boot.imx offset
115  * CONFIG_BOARD_SIZE_LIMIT = 768k - 1k = 767k = 785408
116  *
117  * Currently CONFIG_BOARD_SIZE_LIMIT does not handle expressions, so
118  * write the direct value here
119  */
120 #define CONFIG_BOARD_SIZE_LIMIT         785408
121
122 #ifdef CONFIG_CMD_SATA
123         #define CONFIG_DWC_AHSATA_PORT_ID       0
124         #define CONFIG_DWC_AHSATA_BASE_ADDR     SATA_BASE_ADDR
125         #define CONFIG_LBA48
126 #endif
127
128 /* Framebuffer and LCD */
129
130 #endif                          /* __CONFIG_H */