2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-06-24 20:41:01 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Freescale Semiconductor, Inc.
|
|
|
|
*
|
|
|
|
* Configuration settings for the Freescale i.MX6SX Sabresd board.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
|
|
|
#include "mx6_common.h"
|
|
|
|
|
2014-12-30 09:24:00 +00:00
|
|
|
#ifdef CONFIG_SPL
|
|
|
|
#include "imx6_spl.h"
|
|
|
|
#endif
|
|
|
|
|
2014-06-24 20:41:01 +00:00
|
|
|
/* Size of malloc() pool */
|
|
|
|
#define CONFIG_SYS_MALLOC_LEN (3 * SZ_1M)
|
|
|
|
|
|
|
|
#define CONFIG_MXC_UART
|
|
|
|
#define CONFIG_MXC_UART_BASE UART1_BASE
|
|
|
|
|
2016-01-28 08:55:06 +00:00
|
|
|
#ifdef CONFIG_IMX_BOOTAUX
|
|
|
|
/* Set to QSPI2 B flash at default */
|
|
|
|
#define CONFIG_SYS_AUXCORE_BOOTDATA 0x78000000
|
|
|
|
|
|
|
|
#define UPDATE_M4_ENV \
|
|
|
|
"m4image=m4_qspi.bin\0" \
|
|
|
|
"loadm4image=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${m4image}\0" \
|
|
|
|
"update_m4_from_sd=" \
|
|
|
|
"if sf probe 1:0; then " \
|
|
|
|
"if run loadm4image; then " \
|
|
|
|
"setexpr fw_sz ${filesize} + 0xffff; " \
|
|
|
|
"setexpr fw_sz ${fw_sz} / 0x10000; " \
|
|
|
|
"setexpr fw_sz ${fw_sz} * 0x10000; " \
|
|
|
|
"sf erase 0x0 ${fw_sz}; " \
|
|
|
|
"sf write ${loadaddr} 0x0 ${filesize}; " \
|
|
|
|
"fi; " \
|
|
|
|
"fi\0" \
|
|
|
|
"m4boot=sf probe 1:0; bootaux "__stringify(CONFIG_SYS_AUXCORE_BOOTDATA)"\0"
|
|
|
|
#else
|
|
|
|
#define UPDATE_M4_ENV ""
|
|
|
|
#endif
|
|
|
|
|
2014-06-24 20:41:01 +00:00
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
2016-01-28 08:55:06 +00:00
|
|
|
UPDATE_M4_ENV \
|
2014-06-24 20:41:01 +00:00
|
|
|
"script=boot.scr\0" \
|
|
|
|
"image=zImage\0" \
|
|
|
|
"console=ttymxc0\0" \
|
|
|
|
"fdt_high=0xffffffff\0" \
|
|
|
|
"initrd_high=0xffffffff\0" \
|
|
|
|
"fdt_file=imx6sx-sdb.dtb\0" \
|
|
|
|
"fdt_addr=0x88000000\0" \
|
|
|
|
"boot_fdt=try\0" \
|
|
|
|
"ip_dyn=yes\0" \
|
2016-01-26 14:09:40 +00:00
|
|
|
"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" \
|
2019-12-19 17:59:42 +00:00
|
|
|
"mmcdev=3\0" \
|
2014-06-24 20:41:01 +00:00
|
|
|
"mmcpart=1\0" \
|
2019-12-19 17:59:42 +00:00
|
|
|
"finduuid=part uuid mmc ${mmcdev}:2 uuid\0" \
|
2014-06-24 20:41:01 +00:00
|
|
|
"mmcargs=setenv bootargs console=${console},${baudrate} " \
|
2017-11-22 13:15:28 +00:00
|
|
|
"root=PARTUUID=${uuid} rootwait rw\0" \
|
2014-06-24 20:41:01 +00:00
|
|
|
"loadbootscript=" \
|
|
|
|
"fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
|
|
|
|
"bootscript=echo Running bootscript from mmc ...; " \
|
|
|
|
"source\0" \
|
|
|
|
"loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
|
|
|
|
"loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
|
|
|
|
"mmcboot=echo Booting from mmc ...; " \
|
2017-11-22 13:15:28 +00:00
|
|
|
"run finduuid; " \
|
2014-06-24 20:41:01 +00:00
|
|
|
"run mmcargs; " \
|
|
|
|
"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
|
|
|
|
"if run loadfdt; then " \
|
|
|
|
"bootz ${loadaddr} - ${fdt_addr}; " \
|
|
|
|
"else " \
|
|
|
|
"if test ${boot_fdt} = try; then " \
|
|
|
|
"bootz; " \
|
|
|
|
"else " \
|
|
|
|
"echo WARN: Cannot load the DT; " \
|
|
|
|
"fi; " \
|
|
|
|
"fi; " \
|
|
|
|
"else " \
|
|
|
|
"bootz; " \
|
|
|
|
"fi;\0" \
|
|
|
|
"netargs=setenv bootargs console=${console},${baudrate} " \
|
|
|
|
"root=/dev/nfs " \
|
|
|
|
"ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
|
|
|
|
"netboot=echo Booting from net ...; " \
|
|
|
|
"run netargs; " \
|
|
|
|
"if test ${ip_dyn} = yes; then " \
|
|
|
|
"setenv get_cmd dhcp; " \
|
|
|
|
"else " \
|
|
|
|
"setenv get_cmd tftp; " \
|
|
|
|
"fi; " \
|
|
|
|
"${get_cmd} ${image}; " \
|
|
|
|
"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
|
|
|
|
"if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
|
|
|
|
"bootz ${loadaddr} - ${fdt_addr}; " \
|
|
|
|
"else " \
|
|
|
|
"if test ${boot_fdt} = try; then " \
|
|
|
|
"bootz; " \
|
|
|
|
"else " \
|
|
|
|
"echo WARN: Cannot load the DT; " \
|
|
|
|
"fi; " \
|
|
|
|
"fi; " \
|
|
|
|
"else " \
|
|
|
|
"bootz; " \
|
2017-11-27 12:25:10 +00:00
|
|
|
"fi;\0" \
|
|
|
|
"findfdt="\
|
|
|
|
"if test test $board_rev = REVA ; then " \
|
|
|
|
"setenv fdt_file imx6sx-sdb-reva.dtb; fi; " \
|
2014-06-24 20:41:01 +00:00
|
|
|
|
|
|
|
#define CONFIG_BOOTCOMMAND \
|
2017-11-27 12:25:10 +00:00
|
|
|
"run findfdt; " \
|
2014-06-24 20:41:01 +00:00
|
|
|
"mmc dev ${mmcdev}; if mmc rescan; then " \
|
|
|
|
"if run loadbootscript; then " \
|
|
|
|
"run bootscript; " \
|
|
|
|
"else " \
|
|
|
|
"if run loadimage; then " \
|
|
|
|
"run mmcboot; " \
|
|
|
|
"else run netboot; " \
|
|
|
|
"fi; " \
|
|
|
|
"fi; " \
|
|
|
|
"else run netboot; fi"
|
|
|
|
|
|
|
|
/* Miscellaneous configurable options */
|
|
|
|
#define CONFIG_SYS_MEMTEST_START 0x80000000
|
|
|
|
#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x10000)
|
|
|
|
|
|
|
|
/* Physical Memory Map */
|
|
|
|
#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
|
|
|
|
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
|
|
|
|
#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
|
|
|
|
#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
|
|
|
|
|
|
|
|
#define CONFIG_SYS_INIT_SP_OFFSET \
|
|
|
|
(CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
|
|
|
|
#define CONFIG_SYS_INIT_SP_ADDR \
|
|
|
|
(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
|
|
|
|
|
|
|
|
/* MMC Configuration */
|
2014-09-15 06:59:16 +00:00
|
|
|
#define CONFIG_SYS_FSL_ESDHC_ADDR USDHC4_BASE_ADDR
|
2014-06-24 20:41:01 +00:00
|
|
|
|
2014-07-09 19:13:30 +00:00
|
|
|
/* I2C Configs */
|
|
|
|
#define CONFIG_SYS_I2C_MXC
|
2015-09-21 20:43:38 +00:00
|
|
|
#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
|
|
|
|
#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
|
2015-03-20 17:20:40 +00:00
|
|
|
#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
|
2014-07-09 19:13:30 +00:00
|
|
|
#define CONFIG_SYS_I2C_SPEED 100000
|
|
|
|
|
2014-08-15 03:24:29 +00:00
|
|
|
/* Network */
|
|
|
|
#define CONFIG_FEC_MXC
|
|
|
|
|
|
|
|
#define IMX_FEC_BASE ENET_BASE_ADDR
|
|
|
|
#define CONFIG_FEC_MXC_PHYADDR 0x1
|
|
|
|
|
|
|
|
#define CONFIG_FEC_XCV_TYPE RGMII
|
|
|
|
#define CONFIG_ETHPRIME "FEC"
|
|
|
|
|
|
|
|
#define CONFIG_PHY_ATHEROS
|
|
|
|
|
2014-11-10 00:50:40 +00:00
|
|
|
#ifdef CONFIG_CMD_USB
|
|
|
|
#define CONFIG_EHCI_HCD_INIT_AFTER_RESET
|
|
|
|
#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
|
|
|
|
#define CONFIG_MXC_USB_FLAGS 0
|
|
|
|
#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
|
|
|
|
#endif
|
|
|
|
|
2014-08-25 17:26:46 +00:00
|
|
|
#ifdef CONFIG_CMD_PCI
|
|
|
|
#define CONFIG_PCI_SCAN_SHOW
|
|
|
|
#define CONFIG_PCIE_IMX
|
2014-09-30 17:05:39 +00:00
|
|
|
#define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(2, 0)
|
|
|
|
#define CONFIG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(2, 1)
|
2014-08-25 17:26:46 +00:00
|
|
|
#endif
|
|
|
|
|
2015-09-02 18:54:13 +00:00
|
|
|
#define CONFIG_IMX_THERMAL
|
2014-11-25 15:11:07 +00:00
|
|
|
|
2014-12-31 03:01:40 +00:00
|
|
|
#ifdef CONFIG_FSL_QSPI
|
|
|
|
#define CONFIG_SYS_FSL_QSPI_LE
|
2015-01-08 02:40:21 +00:00
|
|
|
#define CONFIG_SYS_FSL_QSPI_AHB
|
2015-01-04 09:07:15 +00:00
|
|
|
#ifdef CONFIG_MX6SX_SABRESD_REVA
|
2014-12-31 03:01:40 +00:00
|
|
|
#define FSL_QSPI_FLASH_SIZE SZ_16M
|
2015-01-04 09:07:15 +00:00
|
|
|
#else
|
|
|
|
#define FSL_QSPI_FLASH_SIZE SZ_32M
|
|
|
|
#endif
|
2014-12-31 03:01:40 +00:00
|
|
|
#define FSL_QSPI_FLASH_NUM 2
|
|
|
|
#endif
|
|
|
|
|
2016-01-26 14:09:40 +00:00
|
|
|
#ifndef CONFIG_SPL_BUILD
|
|
|
|
#ifdef CONFIG_VIDEO
|
|
|
|
#define CONFIG_VIDEO_MXS
|
|
|
|
#define CONFIG_VIDEO_LOGO
|
|
|
|
#define CONFIG_SPLASH_SCREEN
|
|
|
|
#define CONFIG_SPLASH_SCREEN_ALIGN
|
|
|
|
#define CONFIG_BMP_16BPP
|
|
|
|
#define CONFIG_VIDEO_BMP_RLE8
|
|
|
|
#define CONFIG_VIDEO_BMP_LOGO
|
|
|
|
#define MXS_LCDIF_BASE MX6SX_LCDIF1_BASE_ADDR
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2014-11-04 07:36:40 +00:00
|
|
|
#define CONFIG_SYS_FSL_USDHC_NUM 3
|
|
|
|
#if defined(CONFIG_ENV_IS_IN_MMC)
|
|
|
|
#define CONFIG_SYS_MMC_ENV_DEV 2 /*USDHC4*/
|
|
|
|
#endif
|
|
|
|
|
2014-06-24 20:41:01 +00:00
|
|
|
#endif /* __CONFIG_H */
|