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"
|
|
|
|
|
2015-09-02 18:54:13 +00:00
|
|
|
#define CONFIG_IMX_THERMAL
|
2014-11-20 13:14:15 +00:00
|
|
|
|
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_MXC_UART
|
|
|
|
|
|
|
|
/* MMC Configs */
|
|
|
|
#define CONFIG_SYS_FSL_ESDHC_ADDR 0
|
|
|
|
|
|
|
|
#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
|
|
|
#ifdef CONFIG_CMD_SF
|
|
|
|
#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
|
|
|
|
|
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
|
|
|
|
|
2015-07-11 03:38:46 +00:00
|
|
|
#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
|
|
|
|
|
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" \
|
2015-07-11 03:38:46 +00:00
|
|
|
"fdt_file=undefined\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" \
|
2016-10-18 02:12:39 +00:00
|
|
|
"console=" CONSOLE_DEV "\0" \
|
2015-09-23 03:52:33 +00:00
|
|
|
"dfuspi=dfu 0 sf 0:0:10000000:0\0" \
|
|
|
|
"dfu_alt_info_spl=spl raw 0x400\0" \
|
|
|
|
"dfu_alt_info_img=u-boot raw 0x10000\0" \
|
|
|
|
"dfu_alt_info=spl raw 0x400\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; " \
|
2015-07-11 03:38:46 +00:00
|
|
|
"fi;\0" \
|
|
|
|
"findfdt="\
|
|
|
|
"if test $fdt_file = undefined; then " \
|
imx: mx6qpsabreauto: Add MX6QP SABREAUTO CPU3 board support
1. Add DDR script for mx6qpsabreauto board.
2. On CPU3 board, enet RGMII tx clock is from internal PLL. Set the GPR5[9]
and init the enet pll output to 125Mhz.
3. On CPU3 board, SW1ABC=VDDSOC_IN, SW2=VDDARM_IN.
Build target: mx6qpsabreauto_config
Boot Log:
U-Boot 2015.07-rc2-00071-gfd985ff (Jun 29 2015 - 22:10:55 +0800)
CPU: Freescale i.MX6QP rev1.0 996 MHz (running at 792 MHz)
CPU: Automotive temperature grade (-40C to 125C) at 34C
Reset cause: POR
Board: MX6Q-Sabreauto revA
I2C: ready
DRAM: 2 GiB
PMIC: PFUZE100 ID=0x10
Flash: 32 MiB
NAND: 0 MiB
MMC: FSL_SDHC: 0
*** Warning - bad CRC, using default environment
No panel detected: default to HDMI
Display: HDMI (1024x768)
In: serial
Out: serial
Err: serial
Net: FEC [PRIME]
Hit any key to stop autoboot: 0
Note:
In this patch, we still add a new config mx6qpsabreauto_config,
since SPL is not supported now, and IMX_CONFIG is needed at
build time, so add this config. Future, when SPL is converted,
this config can be removed.
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Signed-off-by: Robin Gong <b38343@freescale.com>
Signed-off-by: Ye.Li <B37916@freescale.com>
Reviewed-by: Fabio Estevam <fabio.estevam@freescale.com>
2015-07-11 03:38:47 +00:00
|
|
|
"if test $board_name = SABREAUTO && test $board_rev = MX6QP; then " \
|
|
|
|
"setenv fdt_file imx6qp-sabreauto.dtb; fi; " \
|
2015-07-11 03:38:46 +00:00
|
|
|
"if test $board_name = SABREAUTO && test $board_rev = MX6Q; then " \
|
|
|
|
"setenv fdt_file imx6q-sabreauto.dtb; fi; " \
|
|
|
|
"if test $board_name = SABREAUTO && test $board_rev = MX6DL; then " \
|
|
|
|
"setenv fdt_file imx6dl-sabreauto.dtb; fi; " \
|
2015-10-15 10:05:59 +00:00
|
|
|
"if test $board_name = SABRESD && test $board_rev = MX6QP; then " \
|
|
|
|
"setenv fdt_file imx6qp-sabresd.dtb; fi; " \
|
2015-07-11 03:38:46 +00:00
|
|
|
"if test $board_name = SABRESD && test $board_rev = MX6Q; then " \
|
|
|
|
"setenv fdt_file imx6q-sabresd.dtb; fi; " \
|
|
|
|
"if test $board_name = SABRESD && test $board_rev = MX6DL; then " \
|
|
|
|
"setenv fdt_file imx6dl-sabresd.dtb; fi; " \
|
|
|
|
"if test $fdt_file = undefined; then " \
|
|
|
|
"echo WARNING: Could not determine dtb to use; fi; " \
|
|
|
|
"fi;\0" \
|
|
|
|
|
2012-09-24 08:09:32 +00:00
|
|
|
#define CONFIG_BOOTCOMMAND \
|
2015-07-11 03:38:46 +00:00
|
|
|
"run findfdt;" \
|
2012-09-24 08:09:32 +00:00
|
|
|
"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
|
|
|
|
|
|
|
/* 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)
|
2016-03-21 14:00:53 +00:00
|
|
|
#define CONFIG_ENV_OFFSET (768 * 1024)
|
2012-09-24 08:09:32 +00:00
|
|
|
#endif
|
|
|
|
|
2014-09-22 16:55:53 +00:00
|
|
|
/* Framebuffer */
|
|
|
|
#define CONFIG_VIDEO_IPUV3
|
|
|
|
#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
|
2016-03-09 08:07:22 +00:00
|
|
|
#ifdef CONFIG_MX6DL
|
|
|
|
#define CONFIG_IPUV3_CLK 198000000
|
|
|
|
#else
|
|
|
|
#define CONFIG_IPUV3_CLK 264000000
|
|
|
|
#endif
|
2014-09-22 16:55:53 +00:00
|
|
|
#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_USBD_HS
|
|
|
|
|
2015-06-12 17:56:58 +00:00
|
|
|
#define CONFIG_USB_FUNCTION_MASS_STORAGE
|
2015-02-26 19:58:55 +00:00
|
|
|
|
2015-09-10 19:03:38 +00:00
|
|
|
#define CONFIG_USB_FUNCTION_FASTBOOT
|
|
|
|
#define CONFIG_CMD_FASTBOOT
|
|
|
|
#define CONFIG_ANDROID_BOOT_IMAGE
|
|
|
|
#define CONFIG_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR
|
|
|
|
#define CONFIG_FASTBOOT_BUF_SIZE 0x07000000
|
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 */
|