Migrate CUSTOM_SYS_INIT_SP_ADDR to Kconfig using system-constants.h
[platform/kernel/u-boot.git] / include / configs / apalis_imx6.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2013-2019 Toradex, Inc.
4  *
5  * Configuration settings for the Toradex Apalis iMX6
6  */
7
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10
11 #include <linux/stringify.h>
12
13 #include "mx6_common.h"
14
15 #include <asm/arch/imx-regs.h>
16 #include <asm/mach-imx/gpio.h>
17
18 #ifdef CONFIG_SPL
19 #include "imx6_spl.h"
20 #endif
21
22 #define CONFIG_MXC_UART_BASE            UART1_BASE
23
24 /* MMC Configs */
25 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
26 #define CONFIG_SYS_FSL_USDHC_NUM        3
27
28 /*
29  * SATA Configs
30  */
31 #ifdef CONFIG_CMD_SATA
32 #define CONFIG_LBA48
33 #endif
34
35 /* Network */
36 #define PHY_ANEG_TIMEOUT                15000 /* PHY needs longer aneg time */
37
38 /* USB Configs */
39 /* Host */
40 #define CONFIG_USB_MAX_CONTROLLER_COUNT         2
41 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET        /* For OTG port */
42 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
43 #define CONFIG_MXC_USB_FLAGS            0
44 /* Client */
45 #define CONFIG_USBD_HS
46
47 /* Framebuffer and LCD */
48 #define CONFIG_IMX_HDMI
49 #define CONFIG_IMX_VIDEO_SKIP
50
51 /* Command definition */
52
53 #undef CONFIG_IPADDR
54 #define CONFIG_IPADDR                   192.168.10.2
55 #define CONFIG_NETMASK                  255.255.255.0
56 #undef CONFIG_SERVERIP
57 #define CONFIG_SERVERIP                 192.168.10.1
58
59 #ifndef CONFIG_SPL_BUILD
60 #define BOOT_TARGET_DEVICES(func) \
61         func(MMC, mmc, 1) \
62         func(MMC, mmc, 2) \
63         func(MMC, mmc, 0) \
64         func(USB, usb, 0) \
65         func(DHCP, dhcp, na)
66 #include <config_distro_bootcmd.h>
67 #undef BOOTENV_RUN_NET_USB_START
68 #define BOOTENV_RUN_NET_USB_START ""
69 #else /* CONFIG_SPL_BUILD */
70 #define BOOTENV
71 #endif /* CONFIG_SPL_BUILD */
72
73 #define UBOOT_UPDATE \
74         "uboot_hwpart=1\0" \
75         "uboot_blk=8a\0" \
76         "uboot_spl_blk=2\0" \
77         "set_blkcnt=setexpr blkcnt ${filesize} + 0x1ff && " \
78                 "setexpr blkcnt ${blkcnt} / 0x200\0" \
79         "update_uboot=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
80                 "mmc write ${loadaddr} ${uboot_blk} ${blkcnt}\0" \
81         "update_spl=run set_blkcnt && mmc dev 0 ${uboot_hwpart} && " \
82                 "mmc write ${loadaddr} ${uboot_spl_blk} ${blkcnt}\0"
83
84 #define MEM_LAYOUT_ENV_SETTINGS \
85         "bootm_size=0x20000000\0" \
86         "fdt_addr_r=0x12100000\0" \
87         "kernel_addr_r=0x11000000\0" \
88         "pxefile_addr_r=0x17100000\0" \
89         "ramdisk_addr_r=0x12200000\0" \
90         "scriptaddr=0x17000000\0"
91
92 #define CONFIG_EXTRA_ENV_SETTINGS \
93         BOOTENV \
94         "boot_file=zImage\0" \
95         "boot_script_dhcp=boot.scr\0" \
96         "console=ttymxc0\0" \
97         "defargs=enable_wait_mode=off vmalloc=400M\0" \
98         "fdt_board=eval\0" \
99         "fdt_fixup=;\0" \
100         MEM_LAYOUT_ENV_SETTINGS \
101         UBOOT_UPDATE \
102         "setethupdate=if env exists ethaddr; then; else setenv ethaddr " \
103                 "00:14:2d:00:00:00; fi; tftpboot ${loadaddr} " \
104                 "flash_eth.img && source ${loadaddr}\0" \
105         "setsdupdate=setenv interface mmc; setenv drive 1; mmc rescan; " \
106                 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img " \
107                 "|| setenv drive 2; mmc rescan; load ${interface} ${drive}:1" \
108                 " ${loadaddr} flash_blk.img && " \
109                 "source ${loadaddr}\0" \
110         "setup=setenv setupargs fec_mac=${ethaddr} " \
111                 "consoleblank=0 no_console_suspend=1 console=tty1 " \
112                 "console=${console},${baudrate}n8\0 " \
113         "setupdate=run setsdupdate || run setusbupdate || run setethupdate\0" \
114         "setusbupdate=usb start && setenv interface usb; setenv drive 0; " \
115                 "load ${interface} ${drive}:1 ${loadaddr} flash_blk.img && " \
116                 "source ${loadaddr}\0" \
117         "splashpos=m,m\0" \
118         "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
119         "vidargs=mxc_hdmi.only_cea=1 fbmem=32M\0"
120
121 /* Miscellaneous configurable options */
122
123 /* Physical Memory Map */
124 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
125
126 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
127 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
128 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
129
130 #endif  /* __CONFIG_H */