2011-12-29 06:34:19 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010-2011 Freescale Semiconductor, Inc.
|
|
|
|
*
|
|
|
|
* Configuration settings for the Freescale i.MX6Q Sabre Lite board.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2012-04-16 21:13:51 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2011-12-29 06:34:19 +00:00
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
|
|
|
#define CONFIG_MX6Q
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_SYS_MX6_HCLK 24000000
|
|
|
|
#define CONFIG_SYS_MX6_CLK32 32768
|
2011-12-29 06:34:19 +00:00
|
|
|
#define CONFIG_DISPLAY_CPUINFO
|
|
|
|
#define CONFIG_DISPLAY_BOARDINFO
|
|
|
|
|
2012-03-04 10:51:36 +00:00
|
|
|
#define CONFIG_MACH_TYPE 3769
|
|
|
|
|
2011-12-29 06:34:19 +00:00
|
|
|
#include <asm/arch/imx-regs.h>
|
2012-08-19 21:33:50 +00:00
|
|
|
#include <asm/imx-common/gpio.h>
|
2011-12-29 06:34:19 +00:00
|
|
|
|
|
|
|
#define CONFIG_CMDLINE_TAG
|
|
|
|
#define CONFIG_SETUP_MEMORY_TAGS
|
|
|
|
#define CONFIG_INITRD_TAG
|
2012-03-12 15:04:12 +00:00
|
|
|
#define CONFIG_REVISION_TAG
|
2011-12-29 06:34:19 +00:00
|
|
|
|
|
|
|
/* Size of malloc() pool */
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2 * 1024 * 1024)
|
2011-12-29 06:34:19 +00:00
|
|
|
|
|
|
|
#define CONFIG_BOARD_EARLY_INIT_F
|
2012-04-25 14:14:04 +00:00
|
|
|
#define CONFIG_MISC_INIT_R
|
2011-12-29 06:34:19 +00:00
|
|
|
#define CONFIG_MXC_GPIO
|
|
|
|
|
|
|
|
#define CONFIG_MXC_UART
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_MXC_UART_BASE UART2_BASE
|
2011-12-29 06:34:19 +00:00
|
|
|
|
2012-01-31 07:52:05 +00:00
|
|
|
#define CONFIG_CMD_SF
|
|
|
|
#ifdef CONFIG_CMD_SF
|
|
|
|
#define CONFIG_SPI_FLASH
|
|
|
|
#define CONFIG_SPI_FLASH_SST
|
|
|
|
#define CONFIG_MXC_SPI
|
2012-01-31 07:52:09 +00:00
|
|
|
#define CONFIG_SF_DEFAULT_BUS 0
|
2012-08-19 21:33:50 +00:00
|
|
|
#define CONFIG_SF_DEFAULT_CS (0|(IMX_GPIO_NR(3, 19)<<8))
|
2012-01-31 07:52:05 +00:00
|
|
|
#define CONFIG_SF_DEFAULT_SPEED 25000000
|
|
|
|
#define CONFIG_SF_DEFAULT_MODE (SPI_MODE_0)
|
|
|
|
#endif
|
|
|
|
|
2012-04-24 17:33:26 +00:00
|
|
|
/* I2C Configs */
|
|
|
|
#define CONFIG_CMD_I2C
|
2012-07-19 08:18:26 +00:00
|
|
|
#define CONFIG_I2C_MULTI_BUS
|
2012-04-24 17:33:26 +00:00
|
|
|
#define CONFIG_I2C_MXC
|
2012-07-19 08:18:26 +00:00
|
|
|
#define CONFIG_SYS_I2C_SPEED 100000
|
2012-04-24 17:33:26 +00:00
|
|
|
|
2011-12-29 06:34:19 +00:00
|
|
|
/* MMC Configs */
|
|
|
|
#define CONFIG_FSL_ESDHC
|
|
|
|
#define CONFIG_FSL_USDHC
|
|
|
|
#define CONFIG_SYS_FSL_ESDHC_ADDR 0
|
|
|
|
#define CONFIG_SYS_FSL_USDHC_NUM 2
|
|
|
|
|
|
|
|
#define CONFIG_MMC
|
|
|
|
#define CONFIG_CMD_MMC
|
|
|
|
#define CONFIG_GENERIC_MMC
|
2012-03-02 12:55:09 +00:00
|
|
|
#define CONFIG_CMD_EXT2
|
2011-12-29 06:34:19 +00:00
|
|
|
#define CONFIG_CMD_FAT
|
|
|
|
#define CONFIG_DOS_PARTITION
|
|
|
|
|
2012-05-01 09:55:11 +00:00
|
|
|
#define CONFIG_CMD_SATA
|
|
|
|
/*
|
|
|
|
* SATA Configs
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_CMD_SATA
|
|
|
|
#define CONFIG_DWC_AHSATA
|
|
|
|
#define CONFIG_SYS_SATA_MAX_DEVICE 1
|
|
|
|
#define CONFIG_DWC_AHSATA_PORT_ID 0
|
|
|
|
#define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
|
|
|
|
#define CONFIG_LBA48
|
|
|
|
#define CONFIG_LIBATA
|
|
|
|
#endif
|
|
|
|
|
2012-01-12 22:56:16 +00:00
|
|
|
#define CONFIG_CMD_PING
|
|
|
|
#define CONFIG_CMD_DHCP
|
|
|
|
#define CONFIG_CMD_MII
|
|
|
|
#define CONFIG_CMD_NET
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_FEC_MXC
|
|
|
|
#define CONFIG_MII
|
2012-01-12 22:56:16 +00:00
|
|
|
#define IMX_FEC_BASE ENET_BASE_ADDR
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_FEC_XCV_TYPE RGMII
|
2012-01-12 22:56:16 +00:00
|
|
|
#define CONFIG_ETHPRIME "FEC"
|
|
|
|
#define CONFIG_FEC_MXC_PHYADDR 6
|
2012-02-07 14:08:50 +00:00
|
|
|
#define CONFIG_PHYLIB
|
|
|
|
#define CONFIG_PHY_MICREL
|
2012-06-28 08:00:28 +00:00
|
|
|
#define CONFIG_PHY_MICREL_KSZ9021
|
2012-01-12 22:56:16 +00:00
|
|
|
|
2012-02-08 22:33:26 +00:00
|
|
|
/* USB Configs */
|
|
|
|
#define CONFIG_CMD_USB
|
|
|
|
#define CONFIG_CMD_FAT
|
|
|
|
#define CONFIG_USB_EHCI
|
|
|
|
#define CONFIG_USB_EHCI_MX6
|
|
|
|
#define CONFIG_USB_STORAGE
|
|
|
|
#define CONFIG_USB_HOST_ETHER
|
|
|
|
#define CONFIG_USB_ETHER_ASIX
|
|
|
|
#define CONFIG_USB_ETHER_SMSC95XX
|
|
|
|
#define CONFIG_MXC_USB_PORT 1
|
|
|
|
#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
|
|
|
|
#define CONFIG_MXC_USB_FLAGS 0
|
|
|
|
|
2012-08-15 10:31:21 +00:00
|
|
|
/* Miscellaneous commands */
|
|
|
|
#define CONFIG_CMD_BMODE
|
|
|
|
|
2011-12-29 06:34:19 +00:00
|
|
|
/* allow to overwrite serial and ethaddr */
|
|
|
|
#define CONFIG_ENV_OVERWRITE
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_CONS_INDEX 1
|
|
|
|
#define CONFIG_BAUDRATE 115200
|
2011-12-29 06:34:19 +00:00
|
|
|
|
|
|
|
/* Command definition */
|
|
|
|
#include <config_cmd_default.h>
|
|
|
|
|
|
|
|
#undef CONFIG_CMD_IMLS
|
|
|
|
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_BOOTDELAY 3
|
2011-12-29 06:34:19 +00:00
|
|
|
|
2012-04-25 14:14:04 +00:00
|
|
|
#define CONFIG_PREBOOT ""
|
|
|
|
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_LOADADDR 0x10800000
|
|
|
|
#define CONFIG_SYS_TEXT_BASE 0x17800000
|
2011-12-29 06:34:19 +00:00
|
|
|
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
|
|
"script=boot.scr\0" \
|
|
|
|
"uimage=uImage\0" \
|
2012-03-28 09:45:26 +00:00
|
|
|
"console=ttymxc1\0" \
|
2012-01-12 23:49:24 +00:00
|
|
|
"fdt_high=0xffffffff\0" \
|
|
|
|
"initrd_high=0xffffffff\0" \
|
2011-12-29 06:34:19 +00:00
|
|
|
"mmcdev=0\0" \
|
|
|
|
"mmcpart=2\0" \
|
|
|
|
"mmcroot=/dev/mmcblk0p3 rootwait rw\0" \
|
|
|
|
"mmcargs=setenv bootargs console=${console},${baudrate} " \
|
2012-04-16 21:13:51 +00:00
|
|
|
"root=${mmcroot}\0" \
|
2011-12-29 06:34:19 +00:00
|
|
|
"loadbootscript=" \
|
2012-04-16 21:13:51 +00:00
|
|
|
"fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
|
2011-12-29 06:34:19 +00:00
|
|
|
"bootscript=echo Running bootscript from mmc ...; " \
|
2012-04-16 21:13:51 +00:00
|
|
|
"source\0" \
|
2011-12-29 06:34:19 +00:00
|
|
|
"loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \
|
|
|
|
"mmcboot=echo Booting from mmc ...; " \
|
2012-04-16 21:13:51 +00:00
|
|
|
"run mmcargs; " \
|
|
|
|
"bootm\0" \
|
2011-12-29 06:34:19 +00:00
|
|
|
"netargs=setenv bootargs console=${console},${baudrate} " \
|
2012-04-16 21:13:51 +00:00
|
|
|
"root=/dev/nfs " \
|
|
|
|
"ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
|
2011-12-29 06:34:19 +00:00
|
|
|
"netboot=echo Booting from net ...; " \
|
2012-04-16 21:13:51 +00:00
|
|
|
"run netargs; " \
|
|
|
|
"dhcp ${uimage}; bootm\0" \
|
2011-12-29 06:34:19 +00:00
|
|
|
|
|
|
|
#define CONFIG_BOOTCOMMAND \
|
|
|
|
"mmc dev ${mmcdev};" \
|
|
|
|
"if mmc rescan ${mmcdev}; then " \
|
2012-04-16 21:13:51 +00:00
|
|
|
"if run loadbootscript; then " \
|
|
|
|
"run bootscript; " \
|
|
|
|
"else " \
|
|
|
|
"if run loaduimage; then " \
|
|
|
|
"run mmcboot; " \
|
|
|
|
"else run netboot; " \
|
|
|
|
"fi; " \
|
|
|
|
"fi; " \
|
2011-12-29 06:34:19 +00:00
|
|
|
"else run netboot; fi"
|
|
|
|
|
|
|
|
#define CONFIG_ARP_TIMEOUT 200UL
|
|
|
|
|
|
|
|
/* Miscellaneous configurable options */
|
|
|
|
#define CONFIG_SYS_LONGHELP
|
|
|
|
#define CONFIG_SYS_HUSH_PARSER
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_SYS_PROMPT "MX6QSABRELITE U-Boot > "
|
2011-12-29 06:34:19 +00:00
|
|
|
#define CONFIG_AUTO_COMPLETE
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_SYS_CBSIZE 256
|
2011-12-29 06:34:19 +00:00
|
|
|
|
|
|
|
/* Print Buffer Size */
|
|
|
|
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_SYS_MAXARGS 16
|
2011-12-29 06:34:19 +00:00
|
|
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
|
|
|
|
|
|
|
#define CONFIG_SYS_MEMTEST_START 0x10000000
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_SYS_MEMTEST_END 0x10010000
|
2011-12-29 06:34:19 +00:00
|
|
|
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
|
|
|
|
#define CONFIG_SYS_HZ 1000
|
2011-12-29 06:34:19 +00:00
|
|
|
|
|
|
|
#define CONFIG_CMDLINE_EDITING
|
|
|
|
|
|
|
|
/* Physical Memory Map */
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_NR_DRAM_BANKS 1
|
|
|
|
#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
|
|
|
|
#define PHYS_SDRAM_SIZE (1u * 1024 * 1024 * 1024)
|
2011-12-29 06:34:19 +00:00
|
|
|
|
2012-04-16 21:13:51 +00:00
|
|
|
#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
|
2011-12-29 06:34:19 +00:00
|
|
|
#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)
|
|
|
|
|
|
|
|
/* FLASH and environment organization */
|
|
|
|
#define CONFIG_SYS_NO_FLASH
|
|
|
|
|
2012-01-31 07:52:10 +00:00
|
|
|
#define CONFIG_ENV_SIZE (8 * 1024)
|
|
|
|
|
2011-12-29 06:34:19 +00:00
|
|
|
#define CONFIG_ENV_IS_IN_MMC
|
2012-01-31 07:52:10 +00:00
|
|
|
/* #define CONFIG_ENV_IS_IN_SPI_FLASH */
|
|
|
|
|
|
|
|
#if defined(CONFIG_ENV_IS_IN_MMC)
|
|
|
|
#define CONFIG_ENV_OFFSET (6 * 64 * 1024)
|
|
|
|
#define CONFIG_SYS_MMC_ENV_DEV 0
|
|
|
|
#elif defined(CONFIG_ENV_IS_IN_SPI_FLASH)
|
|
|
|
#define CONFIG_ENV_OFFSET (768 * 1024)
|
|
|
|
#define CONFIG_ENV_SECT_SIZE (8 * 1024)
|
|
|
|
#define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS
|
|
|
|
#define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS
|
|
|
|
#define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE
|
|
|
|
#define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
|
|
|
|
#endif
|
2011-12-29 06:34:19 +00:00
|
|
|
|
|
|
|
#define CONFIG_OF_LIBFDT
|
2012-04-23 06:31:16 +00:00
|
|
|
#define CONFIG_CMD_BOOTZ
|
2011-12-29 06:34:19 +00:00
|
|
|
|
2012-03-04 11:47:38 +00:00
|
|
|
#define CONFIG_SYS_DCACHE_OFF
|
|
|
|
|
2012-03-04 11:47:39 +00:00
|
|
|
#ifndef CONFIG_SYS_DCACHE_OFF
|
|
|
|
#define CONFIG_CMD_CACHE
|
|
|
|
#endif
|
|
|
|
|
2012-04-16 21:13:51 +00:00
|
|
|
#endif /* __CONFIG_H */
|