blob: 290996b51bc75394a5ab71b9f15fd25370e7ba54 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Peng Fan186585c2016-12-11 19:24:37 +08002/*
3 * Copyright 2013-2016 Freescale Semiconductor, Inc.
4 *
5 * Configuration settings for the Freescale i.MX6SL EVK board.
Peng Fan186585c2016-12-11 19:24:37 +08006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
11#include "mx6_common.h"
12
Tom Rinia17aa192022-12-04 10:04:55 -050013#define CFG_MXC_UART_BASE UART1_BASE
Peng Fan186585c2016-12-11 19:24:37 +080014
Tom Rinic9edebe2022-12-04 10:03:50 -050015#define CFG_EXTRA_ENV_SETTINGS \
Peng Fan186585c2016-12-11 19:24:37 +080016 "epdc_waveform=epdc_splash.bin\0" \
17 "script=boot.scr\0" \
18 "image=zImage\0" \
19 "console=ttymxc0\0" \
20 "fdt_high=0xffffffff\0" \
21 "initrd_high=0xffffffff\0" \
22 "fdt_file=imx6sll-evk.dtb\0" \
23 "fdt_addr=0x83000000\0" \
24 "boot_fdt=try\0" \
25 "ip_dyn=yes\0" \
26 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
27 "mmcpart=1\0" \
Peng Fanbb4bb582022-04-15 12:23:41 +080028 "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
Peng Fan186585c2016-12-11 19:24:37 +080029 "mmcautodetect=yes\0" \
30 "mmcargs=setenv bootargs console=${console},${baudrate} " \
31 "root=${mmcroot}\0" \
32 "loadbootscript=" \
33 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
34 "bootscript=echo Running bootscript from mmc ...; " \
35 "source\0" \
36 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
37 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
38 "mmcboot=echo Booting from mmc ...; " \
39 "run mmcargs; " \
40 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
41 "if run loadfdt; then " \
42 "bootz ${loadaddr} - ${fdt_addr}; " \
43 "else " \
44 "if test ${boot_fdt} = try; then " \
45 "bootz; " \
46 "else " \
47 "echo WARN: Cannot load the DT; " \
48 "fi; " \
49 "fi; " \
50 "else " \
51 "bootz; " \
52 "fi;\0" \
53 "netargs=setenv bootargs console=${console},${baudrate} " \
54 "root=/dev/nfs " \
55 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
56 "netboot=echo Booting from net ...; " \
57 "usb start; " \
58 "run netargs; " \
59 "if test ${ip_dyn} = yes; then " \
60 "setenv get_cmd dhcp; " \
61 "else " \
62 "setenv get_cmd tftp; " \
63 "fi; " \
64 "${get_cmd} ${image}; " \
65 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
66 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
67 "bootz ${loadaddr} - ${fdt_addr}; " \
68 "else " \
69 "if test ${boot_fdt} = try; then " \
70 "bootz; " \
71 "else " \
72 "echo WARN: Cannot load the DT; " \
73 "fi; " \
74 "fi; " \
75 "else " \
76 "bootz; " \
77 "fi;\0"
78
Peng Fan186585c2016-12-11 19:24:37 +080079/* Miscellaneous configurable options */
Peng Fan186585c2016-12-11 19:24:37 +080080
Peng Fan186585c2016-12-11 19:24:37 +080081/* Physical Memory Map */
Peng Fan186585c2016-12-11 19:24:37 +080082#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
83#define PHYS_SDRAM_SIZE SZ_2G
84
Tom Rinibb4dd962022-11-16 13:10:37 -050085#define CFG_SYS_SDRAM_BASE PHYS_SDRAM
Tom Rini6a5dccc2022-11-16 13:10:41 -050086#define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
87#define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE
Peng Fan186585c2016-12-11 19:24:37 +080088
Peng Fan186585c2016-12-11 19:24:37 +080089/* Environment organization */
Peng Fan186585c2016-12-11 19:24:37 +080090
Peng Fan186585c2016-12-11 19:24:37 +080091/* MMC Configs */
Tom Rini376b88a2022-10-28 20:27:13 -040092#define CFG_SYS_FSL_ESDHC_ADDR USDHC1_BASE_ADDR
93#define CFG_SYS_FSL_USDHC_NUM 3
Peng Fan186585c2016-12-11 19:24:37 +080094
Peng Fand85131e2016-12-22 17:06:44 +080095/* USB Configs */
96#ifdef CONFIG_CMD_USB
Tom Rinib9796e82022-12-04 10:04:56 -050097#define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
Peng Fand85131e2016-12-22 17:06:44 +080098#endif
99
Simon Glassfb64e362020-05-10 11:40:09 -0600100#include <linux/stringify.h>
Peng Fan186585c2016-12-11 19:24:37 +0800101#endif /* __CONFIG_H */