Merge tag 'u-boot-at91-2022.07-a' of https://source.denx.de/u-boot/custodians/u-boot...
[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_POWER_FSL
27 #define CONFIG_POWER_FSL_MC13892
28 #define CONFIG_SYS_DIALOG_PMIC_I2C_ADDR 0x48
29 #define CONFIG_SYS_FSL_PMIC_I2C_ADDR    0x8
30
31 /* Command definition */
32
33 #define CONFIG_EXTRA_ENV_SETTINGS \
34         "script=boot.scr\0" \
35         "image=zImage\0" \
36         "fdt_addr=0x71000000\0" \
37         "boot_fdt=try\0" \
38         "ip_dyn=yes\0" \
39         "mmcdev=0\0" \
40         "mmcpart=1\0" \
41         "mmcroot=/dev/mmcblk0p2 rw rootwait\0" \
42         "mmcargs=setenv bootargs console=ttymxc0,${baudrate} root=${mmcroot}\0" \
43         "loadbootscript=" \
44                 "load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
45         "bootscript=echo Running bootscript from mmc ...; " \
46                 "source\0" \
47         "loadimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
48         "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
49         "mmcboot=echo Booting from mmc ...; " \
50                 "run mmcargs; " \
51                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
52                         "if run loadfdt; then " \
53                                 "bootz ${loadaddr} - ${fdt_addr}; " \
54                         "else " \
55                                 "if test ${boot_fdt} = try; then " \
56                                         "bootz; " \
57                                 "else " \
58                                         "echo WARN: Cannot load the DT; " \
59                                 "fi; " \
60                         "fi; " \
61                 "else " \
62                         "bootz; " \
63                 "fi;\0" \
64         "netargs=setenv bootargs console=ttymxc0,${baudrate} " \
65                 "root=/dev/nfs " \
66                 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
67         "netboot=echo Booting from net ...; " \
68                 "run netargs; " \
69                 "if test ${ip_dyn} = yes; then " \
70                         "setenv get_cmd dhcp; " \
71                 "else " \
72                         "setenv get_cmd tftp; " \
73                 "fi; " \
74                 "${get_cmd} ${image}; " \
75                 "if test ${boot_fdt} = yes ||  test ${boot_fdt} = try; then " \
76                         "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
77                                 "bootz ${loadaddr} - ${fdt_addr}; " \
78                         "else " \
79                                 "if test ${boot_fdt} = try; then " \
80                                         "bootz; " \
81                                 "else " \
82                                         "echo ERROR: Cannot load the DT; " \
83                                         "exit; " \
84                                 "fi; " \
85                         "fi; " \
86                 "else " \
87                         "bootz; " \
88                 "fi;\0"
89
90 /* Miscellaneous configurable options */
91 #define CONFIG_SYS_CBSIZE               512     /* Console I/O Buffer Size */
92
93 /* Physical Memory Map */
94 #define PHYS_SDRAM_1                    CSD0_BASE_ADDR
95 #define PHYS_SDRAM_1_SIZE               (gd->bd->bi_dram[0].size)
96 #define PHYS_SDRAM_2                    CSD1_BASE_ADDR
97 #define PHYS_SDRAM_2_SIZE               (gd->bd->bi_dram[1].size)
98 #define PHYS_SDRAM_SIZE                 (gd->ram_size)
99
100 #define CONFIG_SYS_SDRAM_BASE           (PHYS_SDRAM_1)
101 #define CONFIG_SYS_INIT_RAM_ADDR        (IRAM_BASE_ADDR)
102 #define CONFIG_SYS_INIT_RAM_SIZE        (IRAM_SIZE)
103
104 #define CONFIG_SYS_INIT_SP_OFFSET \
105         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
106 #define CONFIG_SYS_INIT_SP_ADDR \
107         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
108
109 /* Environment starts at 768k = 768 * 1024 = 786432 */
110 /*
111  * Detect overlap between U-Boot image and environment area in build-time
112  *
113  * CONFIG_BOARD_SIZE_LIMIT = CONFIG_ENV_OFFSET - u-boot.imx offset
114  * CONFIG_BOARD_SIZE_LIMIT = 768k - 1k = 767k = 785408
115  *
116  * Currently CONFIG_BOARD_SIZE_LIMIT does not handle expressions, so
117  * write the direct value here
118  */
119 #define CONFIG_BOARD_SIZE_LIMIT         785408
120
121 #ifdef CONFIG_CMD_SATA
122         #define CONFIG_DWC_AHSATA_PORT_ID       0
123         #define CONFIG_DWC_AHSATA_BASE_ADDR     SATA_BASE_ADDR
124         #define CONFIG_LBA48
125 #endif
126
127 /* Framebuffer and LCD */
128
129 #endif                          /* __CONFIG_H */