1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright 2014 Freescale Semiconductor, Inc.
5 * Configuration settings for the Freescale i.MX6SX Sabresd board.
11 #include <linux/stringify.h>
13 #include "mx6_common.h"
19 #define CONFIG_MXC_UART_BASE UART1_BASE
21 #ifdef CONFIG_IMX_BOOTAUX
23 #define UPDATE_M4_ENV \
24 "m4image=m4_qspi.bin\0" \
25 "loadm4image=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${m4image}\0" \
26 "update_m4_from_sd=" \
27 "if sf probe 1:0; then " \
28 "if run loadm4image; then " \
29 "setexpr fw_sz ${filesize} + 0xffff; " \
30 "setexpr fw_sz ${fw_sz} / 0x10000; " \
31 "setexpr fw_sz ${fw_sz} * 0x10000; " \
32 "sf erase 0x0 ${fw_sz}; " \
33 "sf write ${loadaddr} 0x0 ${filesize}; " \
36 "m4boot=sf probe 1:0; bootaux 0x78000000\0"
38 #define UPDATE_M4_ENV ""
41 #define CONFIG_EXTRA_ENV_SETTINGS \
46 "fdt_high=0xffffffff\0" \
47 "initrd_high=0xffffffff\0" \
48 "fdt_file=imx6sx-sdb.dtb\0" \
49 "fdt_addr=0x88000000\0" \
52 "videomode=video=ctfb:x:800,y:480,depth:24,pclk:29850,le:89,ri:164,up:23,lo:10,hs:10,vs:10,sync:0,vmode:0\0" \
55 "finduuid=part uuid mmc ${mmcdev}:2 uuid\0" \
56 "mmcargs=setenv bootargs console=${console},${baudrate} " \
57 "root=PARTUUID=${uuid} rootwait rw\0" \
59 "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
60 "bootscript=echo Running bootscript from mmc ...; " \
62 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
63 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
64 "mmcboot=echo Booting from mmc ...; " \
67 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
68 "if run loadfdt; then " \
69 "bootz ${loadaddr} - ${fdt_addr}; " \
71 "if test ${boot_fdt} = try; then " \
74 "echo WARN: Cannot load the DT; " \
80 "netargs=setenv bootargs console=${console},${baudrate} " \
82 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
83 "netboot=echo Booting from net ...; " \
85 "if test ${ip_dyn} = yes; then " \
86 "setenv get_cmd dhcp; " \
88 "setenv get_cmd tftp; " \
90 "${get_cmd} ${image}; " \
91 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
92 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
93 "bootz ${loadaddr} - ${fdt_addr}; " \
95 "if test ${boot_fdt} = try; then " \
98 "echo WARN: Cannot load the DT; " \
105 "if test test $board_rev = REVA ; then " \
106 "setenv fdt_file imx6sx-sdb-reva.dtb; fi; " \
108 /* Miscellaneous configurable options */
110 /* Physical Memory Map */
111 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
113 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
114 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
115 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
117 /* MMC Configuration */
118 #define CONFIG_SYS_FSL_ESDHC_ADDR USDHC4_BASE_ADDR
122 #define CONFIG_FEC_MXC_PHYADDR 0x1
124 #ifdef CONFIG_CMD_USB
125 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
126 #define CONFIG_MXC_USB_FLAGS 0
129 #ifdef CONFIG_CMD_PCI
130 #define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(2, 0)
131 #define CONFIG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(2, 1)
134 #define MXS_LCDIF_BASE MX6SX_LCDIF1_BASE_ADDR
136 #endif /* __CONFIG_H */