2012-09-24 08:09:32 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Freescale Semiconductor, Inc.
|
|
|
|
*
|
|
|
|
* Configuration settings for the Freescale i.MX6Q SabreSD board.
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2012-09-24 08:09:32 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MX6QSABRE_COMMON_CONFIG_H
|
|
|
|
#define __MX6QSABRE_COMMON_CONFIG_H
|
|
|
|
|
2013-02-26 12:28:29 +00:00
|
|
|
#include "mx6_common.h"
|
|
|
|
|
2014-11-20 13:14:15 +00:00
|
|
|
#define CONFIG_IMX6_THERMAL
|
|
|
|
|
2012-09-24 08:09:32 +00:00
|
|
|
/* Size of malloc() pool */
|
2013-07-25 17:12:14 +00:00
|
|
|
#define CONFIG_SYS_MALLOC_LEN (10 * SZ_1M)
|
2012-09-24 08:09:32 +00:00
|
|
|
|
|
|
|
#define CONFIG_BOARD_EARLY_INIT_F
|
2013-03-16 08:05:07 +00:00
|
|
|
#define CONFIG_BOARD_LATE_INIT
|
2012-09-24 08:09:32 +00:00
|
|
|
|
|
|
|
#define CONFIG_MXC_UART
|
|
|
|
|
2013-12-23 15:07:18 +00:00
|
|
|
#define CONFIG_CMD_FUSE
|
2014-11-20 13:14:15 +00:00
|
|
|
#if defined(CONFIG_CMD_FUSE) || defined(CONFIG_IMX6_THERMAL)
|
2013-12-23 15:07:18 +00:00
|
|
|
#define CONFIG_MXC_OCOTP
|
|
|
|
#endif
|
|
|
|
|
2012-09-24 08:09:32 +00:00
|
|
|
/* MMC Configs */
|
|
|
|
#define CONFIG_SYS_FSL_ESDHC_ADDR 0
|
|
|
|
|
|
|
|
#define CONFIG_CMD_PING
|
|
|
|
#define CONFIG_CMD_DHCP
|
|
|
|
#define CONFIG_CMD_MII
|
|
|
|
#define CONFIG_FEC_MXC
|
|
|
|
#define CONFIG_MII
|
|
|
|
#define IMX_FEC_BASE ENET_BASE_ADDR
|
|
|
|
#define CONFIG_FEC_XCV_TYPE RGMII
|
|
|
|
#define CONFIG_ETHPRIME "FEC"
|
|
|
|
#define CONFIG_FEC_MXC_PHYADDR 1
|
|
|
|
|
|
|
|
#define CONFIG_PHYLIB
|
|
|
|
#define CONFIG_PHY_ATHEROS
|
|
|
|
|
2013-11-08 18:20:54 +00:00
|
|
|
#define CONFIG_CMD_SF
|
|
|
|
#ifdef CONFIG_CMD_SF
|
|
|
|
#define CONFIG_SPI_FLASH
|
|
|
|
#define CONFIG_SPI_FLASH_STMICRO
|
|
|
|
#define CONFIG_MXC_SPI
|
|
|
|
#define CONFIG_SF_DEFAULT_BUS 0
|
spi: mxc: fix sf probe when using mxc_spi
MXC SPI driver has a feature whereas a GPIO line can be used to force CS high
across multiple transactions. This is set up by embedding the GPIO information
in the CS value:
cs = (cs | gpio << 8)
This merge of cs and gpio data into one value breaks the sf probe command:
if the use of gpio is required, invoking "sf probe <cs>" will not work, because
the CS argument doesn't have the GPIO information in it. Instead, the user must
use "sf probe <cs | gpio << 8>". For example, if bank 2 gpio 30 is used to force
cs high on cs 0, bus 0, then instead of typing "sf probe 0" the user now must
type "sf probe 15872".
This is inconsistent with the description of the sf probe command, and forces
the user to be aware of implementaiton details.
Fix this by introducing a new board function: board_spi_cs_gpio(), which will
accept a naked CS value, and provide the driver with the relevant GPIO, if one
is necessary.
Cc: Eric Nelson <eric.nelson@boundarydevices.com>
Cc: Eric Benard <eric@eukrea.com>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
Cc: Tim Harvey <tharvey@gateworks.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Tom Rini <trini@ti.com>
Cc: Marek Vasut <marex@denx.de>
Reviewed-by: Marek Vasut <marex@denx.de>
Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
Reviewed-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
2014-08-20 12:08:50 +00:00
|
|
|
#define CONFIG_SF_DEFAULT_CS 0
|
2013-11-08 18:20:54 +00:00
|
|
|
#define CONFIG_SF_DEFAULT_SPEED 20000000
|
|
|
|
#define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
|
|
|
|
#endif
|
|
|
|
|
2012-09-24 08:09:32 +00:00
|
|
|
/* Command definition */
|
2013-03-16 08:05:07 +00:00
|
|
|
#define CONFIG_CMD_BMODE
|
2012-09-24 08:09:32 +00:00
|
|
|
|
2014-01-06 15:27:20 +00:00
|
|
|
#ifdef CONFIG_SUPPORT_EMMC_BOOT
|
|
|
|
#define EMMC_ENV \
|
|
|
|
"emmcdev=2\0" \
|
|
|
|
"update_emmc_firmware=" \
|
|
|
|
"if test ${ip_dyn} = yes; then " \
|
|
|
|
"setenv get_cmd dhcp; " \
|
|
|
|
"else " \
|
|
|
|
"setenv get_cmd tftp; " \
|
|
|
|
"fi; " \
|
|
|
|
"if ${get_cmd} ${update_sd_firmware_filename}; then " \
|
2015-03-03 14:48:41 +00:00
|
|
|
"if mmc dev ${emmcdev} 1; then " \
|
2014-01-06 15:27:20 +00:00
|
|
|
"setexpr fw_sz ${filesize} / 0x200; " \
|
|
|
|
"setexpr fw_sz ${fw_sz} + 1; " \
|
|
|
|
"mmc write ${loadaddr} 0x2 ${fw_sz}; " \
|
|
|
|
"fi; " \
|
|
|
|
"fi\0"
|
|
|
|
#else
|
|
|
|
#define EMMC_ENV ""
|
|
|
|
#endif
|
|
|
|
|
2012-09-24 08:09:32 +00:00
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
|
|
"script=boot.scr\0" \
|
2014-01-16 21:58:03 +00:00
|
|
|
"image=zImage\0" \
|
2013-01-10 09:45:09 +00:00
|
|
|
"fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
|
2013-12-16 22:44:04 +00:00
|
|
|
"fdt_addr=0x18000000\0" \
|
2013-01-10 09:45:09 +00:00
|
|
|
"boot_fdt=try\0" \
|
|
|
|
"ip_dyn=yes\0" \
|
2012-09-26 11:37:01 +00:00
|
|
|
"console=" CONFIG_CONSOLE_DEV "\0" \
|
2012-09-24 08:09:32 +00:00
|
|
|
"fdt_high=0xffffffff\0" \
|
|
|
|
"initrd_high=0xffffffff\0" \
|
2013-01-10 09:00:53 +00:00
|
|
|
"mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
|
2013-06-04 15:05:39 +00:00
|
|
|
"mmcpart=1\0" \
|
2012-10-02 09:22:10 +00:00
|
|
|
"mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
|
2013-04-19 03:41:57 +00:00
|
|
|
"update_sd_firmware=" \
|
|
|
|
"if test ${ip_dyn} = yes; then " \
|
|
|
|
"setenv get_cmd dhcp; " \
|
|
|
|
"else " \
|
|
|
|
"setenv get_cmd tftp; " \
|
|
|
|
"fi; " \
|
|
|
|
"if mmc dev ${mmcdev}; then " \
|
|
|
|
"if ${get_cmd} ${update_sd_firmware_filename}; then " \
|
|
|
|
"setexpr fw_sz ${filesize} / 0x200; " \
|
|
|
|
"setexpr fw_sz ${fw_sz} + 1; " \
|
|
|
|
"mmc write ${loadaddr} 0x2 ${fw_sz}; " \
|
|
|
|
"fi; " \
|
|
|
|
"fi\0" \
|
2014-01-06 15:27:20 +00:00
|
|
|
EMMC_ENV \
|
2012-09-24 08:09:32 +00:00
|
|
|
"mmcargs=setenv bootargs console=${console},${baudrate} " \
|
|
|
|
"root=${mmcroot}\0" \
|
|
|
|
"loadbootscript=" \
|
|
|
|
"fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
|
|
|
|
"bootscript=echo Running bootscript from mmc ...; " \
|
|
|
|
"source\0" \
|
2014-01-16 21:58:03 +00:00
|
|
|
"loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
|
2013-01-10 09:45:09 +00:00
|
|
|
"loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
|
|
|
|
"mmcboot=echo Booting from mmc ...; " \
|
2012-09-24 08:09:32 +00:00
|
|
|
"run mmcargs; " \
|
2013-01-10 09:45:09 +00:00
|
|
|
"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
|
|
|
|
"if run loadfdt; then " \
|
2014-01-16 21:58:03 +00:00
|
|
|
"bootz ${loadaddr} - ${fdt_addr}; " \
|
2013-01-10 09:45:09 +00:00
|
|
|
"else " \
|
|
|
|
"if test ${boot_fdt} = try; then " \
|
2014-01-16 21:58:03 +00:00
|
|
|
"bootz; " \
|
2013-01-10 09:45:09 +00:00
|
|
|
"else " \
|
|
|
|
"echo WARN: Cannot load the DT; " \
|
|
|
|
"fi; " \
|
|
|
|
"fi; " \
|
|
|
|
"else " \
|
2014-01-16 21:58:03 +00:00
|
|
|
"bootz; " \
|
2013-01-10 09:45:09 +00:00
|
|
|
"fi;\0" \
|
2012-09-24 08:09:32 +00:00
|
|
|
"netargs=setenv bootargs console=${console},${baudrate} " \
|
|
|
|
"root=/dev/nfs " \
|
|
|
|
"ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
|
|
|
|
"netboot=echo Booting from net ...; " \
|
|
|
|
"run netargs; " \
|
2013-01-10 09:45:09 +00:00
|
|
|
"if test ${ip_dyn} = yes; then " \
|
|
|
|
"setenv get_cmd dhcp; " \
|
|
|
|
"else " \
|
|
|
|
"setenv get_cmd tftp; " \
|
|
|
|
"fi; " \
|
2014-01-16 21:58:03 +00:00
|
|
|
"${get_cmd} ${image}; " \
|
2013-01-10 09:45:09 +00:00
|
|
|
"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
|
|
|
|
"if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
|
2014-01-16 21:58:03 +00:00
|
|
|
"bootz ${loadaddr} - ${fdt_addr}; " \
|
2013-01-10 09:45:09 +00:00
|
|
|
"else " \
|
|
|
|
"if test ${boot_fdt} = try; then " \
|
2014-01-16 21:58:03 +00:00
|
|
|
"bootz; " \
|
2013-01-10 09:45:09 +00:00
|
|
|
"else " \
|
|
|
|
"echo WARN: Cannot load the DT; " \
|
|
|
|
"fi; " \
|
|
|
|
"fi; " \
|
|
|
|
"else " \
|
2014-01-16 21:58:03 +00:00
|
|
|
"bootz; " \
|
2013-01-10 09:45:09 +00:00
|
|
|
"fi;\0"
|
2012-09-24 08:09:32 +00:00
|
|
|
|
|
|
|
#define CONFIG_BOOTCOMMAND \
|
|
|
|
"mmc dev ${mmcdev};" \
|
2013-04-10 16:55:50 +00:00
|
|
|
"if mmc rescan; then " \
|
2012-09-24 08:09:32 +00:00
|
|
|
"if run loadbootscript; then " \
|
|
|
|
"run bootscript; " \
|
|
|
|
"else " \
|
2014-01-16 21:58:03 +00:00
|
|
|
"if run loadimage; then " \
|
2012-09-24 08:09:32 +00:00
|
|
|
"run mmcboot; " \
|
|
|
|
"else run netboot; " \
|
|
|
|
"fi; " \
|
|
|
|
"fi; " \
|
|
|
|
"else run netboot; fi"
|
|
|
|
|
|
|
|
#define CONFIG_ARP_TIMEOUT 200UL
|
|
|
|
|
|
|
|
#define CONFIG_SYS_MEMTEST_START 0x10000000
|
|
|
|
#define CONFIG_SYS_MEMTEST_END 0x10010000
|
2013-02-01 08:08:45 +00:00
|
|
|
#define CONFIG_SYS_MEMTEST_SCRATCH 0x10800000
|
2012-09-24 08:09:32 +00:00
|
|
|
|
|
|
|
#define CONFIG_STACKSIZE (128 * 1024)
|
|
|
|
|
|
|
|
/* Physical Memory Map */
|
|
|
|
#define CONFIG_NR_DRAM_BANKS 1
|
|
|
|
#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)
|
|
|
|
|
2015-05-22 16:30:45 +00:00
|
|
|
/* Environment organization */
|
2012-09-24 08:09:32 +00:00
|
|
|
#define CONFIG_ENV_SIZE (8 * 1024)
|
|
|
|
|
|
|
|
#define CONFIG_ENV_IS_IN_MMC
|
|
|
|
|
|
|
|
#if defined(CONFIG_ENV_IS_IN_MMC)
|
2014-11-12 06:02:04 +00:00
|
|
|
#define CONFIG_ENV_OFFSET (8 * 64 * 1024)
|
2012-09-24 08:09:32 +00:00
|
|
|
#endif
|
|
|
|
|
2014-09-22 16:55:53 +00:00
|
|
|
/* Framebuffer */
|
|
|
|
#define CONFIG_VIDEO
|
|
|
|
#define CONFIG_VIDEO_IPUV3
|
|
|
|
#define CONFIG_CFB_CONSOLE
|
|
|
|
#define CONFIG_VGA_AS_SINGLE_DEVICE
|
|
|
|
#define CONFIG_SYS_CONSOLE_IS_IN_ENV
|
|
|
|
#define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
|
|
|
|
#define CONFIG_VIDEO_BMP_RLE8
|
|
|
|
#define CONFIG_SPLASH_SCREEN
|
|
|
|
#define CONFIG_SPLASH_SCREEN_ALIGN
|
|
|
|
#define CONFIG_BMP_16BPP
|
|
|
|
#define CONFIG_VIDEO_LOGO
|
|
|
|
#define CONFIG_VIDEO_BMP_LOGO
|
|
|
|
#define CONFIG_IPUV3_CLK 260000000
|
|
|
|
#define CONFIG_IMX_HDMI
|
|
|
|
#define CONFIG_IMX_VIDEO_SKIP
|
|
|
|
|
2015-03-09 21:44:39 +00:00
|
|
|
#ifndef CONFIG_SPL
|
2015-02-26 19:58:55 +00:00
|
|
|
#define CONFIG_CI_UDC
|
|
|
|
#define CONFIG_USBD_HS
|
|
|
|
#define CONFIG_USB_GADGET_DUALSPEED
|
|
|
|
|
|
|
|
#define CONFIG_USB_GADGET
|
|
|
|
#define CONFIG_CMD_USB_MASS_STORAGE
|
|
|
|
#define CONFIG_USB_GADGET_MASS_STORAGE
|
|
|
|
#define CONFIG_USBDOWNLOAD_GADGET
|
|
|
|
#define CONFIG_USB_GADGET_VBUS_DRAW 2
|
|
|
|
|
|
|
|
#define CONFIG_G_DNL_VENDOR_NUM 0x0525
|
|
|
|
#define CONFIG_G_DNL_PRODUCT_NUM 0xa4a5
|
|
|
|
#define CONFIG_G_DNL_MANUFACTURER "FSL"
|
2015-03-09 21:44:39 +00:00
|
|
|
#endif
|
2015-02-26 19:58:55 +00:00
|
|
|
|
2012-09-24 08:09:32 +00:00
|
|
|
#endif /* __MX6QSABRE_COMMON_CONFIG_H */
|