Merge branch '2022-06-28-Kconfig-migrations' 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_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
92 /* Physical Memory Map */
93 #define PHYS_SDRAM_1                    CSD0_BASE_ADDR
94 #define PHYS_SDRAM_1_SIZE               (gd->bd->bi_dram[0].size)
95 #define PHYS_SDRAM_2                    CSD1_BASE_ADDR
96 #define PHYS_SDRAM_2_SIZE               (gd->bd->bi_dram[1].size)
97 #define PHYS_SDRAM_SIZE                 (gd->ram_size)
98
99 #define CONFIG_SYS_SDRAM_BASE           (PHYS_SDRAM_1)
100 #define CONFIG_SYS_INIT_RAM_ADDR        (IRAM_BASE_ADDR)
101 #define CONFIG_SYS_INIT_RAM_SIZE        (IRAM_SIZE)
102
103 /* Framebuffer and LCD */
104
105 #endif                          /* __CONFIG_H */