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