Convert CONFIG_PCI_GT64120 to Kconfig
[platform/kernel/u-boot.git] / include / configs / mx6ullevk.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2016 Freescale Semiconductor, Inc.
4  *
5  * Configuration settings for the Freescale i.MX6UL 14x14 EVK board.
6  */
7 #ifndef __MX6ULLEVK_CONFIG_H
8 #define __MX6ULLEVK_CONFIG_H
9
10
11 #include <asm/arch/imx-regs.h>
12 #include <linux/sizes.h>
13 #include <linux/stringify.h>
14 #include "mx6_common.h"
15 #include <asm/mach-imx/gpio.h>
16
17 #define PHYS_SDRAM_SIZE SZ_512M
18
19 #define CONFIG_MXC_UART_BASE            UART1_BASE
20
21 /* MMC Configs */
22 #ifdef CONFIG_FSL_USDHC
23 #define CONFIG_SYS_FSL_ESDHC_ADDR       USDHC2_BASE_ADDR
24
25 /* NAND pin conflicts with usdhc2 */
26 #ifdef CONFIG_SYS_USE_NAND
27 #define CONFIG_SYS_FSL_USDHC_NUM        1
28 #else
29 #define CONFIG_SYS_FSL_USDHC_NUM        2
30 #endif
31 #endif
32
33 #define CONFIG_EXTRA_ENV_SETTINGS \
34         "script=boot.scr\0" \
35         "image=zImage\0" \
36         "console=ttymxc0\0" \
37         "fdt_high=0xffffffff\0" \
38         "initrd_high=0xffffffff\0" \
39         "fdt_file=undefined\0" \
40         "fdt_addr=0x83000000\0" \
41         "boot_fdt=try\0" \
42         "ip_dyn=yes\0" \
43         "videomode=video=ctfb:x:480,y:272,depth:24,pclk:108695,le:8,ri:4,up:2,lo:4,hs:41,vs:10,sync:0,vmode:0\0" \
44         "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
45         "mmcpart=1\0" \
46         "mmcroot=/dev/mmcblk1p2 rootwait rw\0" \
47         "mmcautodetect=yes\0" \
48         "mmcargs=setenv bootargs console=${console},${baudrate} " \
49                 "root=${mmcroot}\0" \
50         "loadbootscript=" \
51                 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
52         "bootscript=echo Running bootscript from mmc ...; " \
53                 "source\0" \
54         "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
55         "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
56         "mmcboot=echo Booting from mmc ...; " \
57                 "run mmcargs; " \
58                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
59                         "if run loadfdt; then " \
60                                 "bootz ${loadaddr} - ${fdt_addr}; " \
61                         "else " \
62                                 "if test ${boot_fdt} = try; then " \
63                                         "bootz; " \
64                                 "else " \
65                                         "echo WARN: Cannot load the DT; " \
66                                 "fi; " \
67                         "fi; " \
68                 "else " \
69                         "bootz; " \
70                 "fi;\0" \
71                 "findfdt="\
72                         "if test $fdt_file = undefined; then " \
73                                 "if test $board_name = ULZ-EVK && test $board_rev = 14X14; then " \
74                                         "setenv fdt_file imx6ulz-14x14-evk.dtb; fi; " \
75                                 "if test $board_name = EVK && test $board_rev = 14X14; then " \
76                                         "setenv fdt_file imx6ull-14x14-evk.dtb; fi; " \
77                                 "if test $fdt_file = undefined; then " \
78                                         "echo WARNING: Could not determine dtb to use; " \
79                                 "fi; " \
80                         "fi;\0" \
81         "netargs=setenv bootargs console=${console},${baudrate} " \
82                 "root=/dev/nfs " \
83         "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
84                 "netboot=echo Booting from net ...; " \
85                 "run netargs; " \
86                 "if test ${ip_dyn} = yes; then " \
87                         "setenv get_cmd dhcp; " \
88                 "else " \
89                         "setenv get_cmd tftp; " \
90                 "fi; " \
91                 "${get_cmd} ${image}; " \
92                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
93                         "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
94                                 "bootz ${loadaddr} - ${fdt_addr}; " \
95                         "else " \
96                                 "if test ${boot_fdt} = try; then " \
97                                         "bootz; " \
98                                 "else " \
99                                         "echo WARN: Cannot load the DT; " \
100                                 "fi; " \
101                         "fi; " \
102                 "else " \
103                         "bootz; " \
104                 "fi;\0" \
105
106 /* Miscellaneous configurable options */
107
108 /* Physical Memory Map */
109 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
110
111 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
112 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
113 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
114
115 /* environment organization */
116
117 #define CONFIG_IOMUX_LPSR
118
119 #ifdef CONFIG_CMD_NET
120 #define CONFIG_FEC_ENET_DEV             1
121 #endif
122
123 #endif