357 lines
9.9 KiB
C
Executable File
Vendored
357 lines
9.9 KiB
C
Executable File
Vendored
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
/*------------------------------------------------------------------------------
|
|
Constant
|
|
-------------------------------------------------------------------------------*/
|
|
/* This is columbus2 hardware */
|
|
#define CONFIG_ARCH_INFINITY 1
|
|
#define CONFIG_ARMCORTEXA7 /* This is an ARM V7 CPU core */
|
|
#define CONFIG_SYS_L2CACHE_OFF /* No L2 cache */
|
|
/*#define CONFIG_SYS_ARCH_TIMER 1*/
|
|
#define CONFIG_MS_PIU_TIMER 1
|
|
#define CONFIG_AUTOBOOT_KEYED
|
|
#define CONFIG_AUTOBOOT_DELAY_STR "\x0d" /* press ENTER to interrupt BOOT */
|
|
|
|
#define CONFIG_DISPLAY_BOARDINFO 1
|
|
|
|
#define CONFIG_BOARD_LATE_INIT
|
|
|
|
#if CONFIG_VERSION_FPGA
|
|
#define CONFIG_SYS_HZ_CLOCK 12000000
|
|
#define CONFIG_UART_CLOCK 12000000
|
|
#define CONFIG_BAUDRATE 38400
|
|
#else
|
|
#define CONFIG_SYS_HZ_CLOCK 400000000
|
|
#define CONFIG_UART_CLOCK 172800000
|
|
#define CONFIG_BAUDRATE 115200
|
|
#define CONFIG_PIUTIMER_CLOCK 12000000
|
|
#endif
|
|
|
|
|
|
|
|
/* define baud rate */
|
|
#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
|
|
|
|
/*------------------------------------------------------------------------------
|
|
Macro
|
|
-------------------------------------------------------------------------------*/
|
|
|
|
/* boot delay time */
|
|
#define CONFIG_BOOTDELAY 0
|
|
#define CONFIG_ZERO_BOOTDELAY_CHECK
|
|
|
|
/*
|
|
#define CONFIG_MS_ANDROID_RECOVERY 1
|
|
#define CONFIG_MS_DISPLAY 1
|
|
#define CONFIG_MS_SHOW_LOGO 1
|
|
#define CONFIG_MS_ISP 1
|
|
#define CONFIG_MS_PIUTIMER 1
|
|
*/
|
|
|
|
#define CONFIG_SKIP_LOWLEVEL_INIT
|
|
/*#define CONFIG_DISPLAY_BOARDINFO *//*for checkboard*/
|
|
/*
|
|
* Size of malloc() pool
|
|
*/
|
|
#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 4*1024*1024)/* (CONFIG_ENV_SIZE + 512*1024) */
|
|
|
|
/*
|
|
* Miscellaneous configurable options
|
|
*/
|
|
#define CONFIG_SYS_LONGHELP /* undef to save memory */
|
|
#define CONFIG_SYS_PROMPT "MStar # " /* Monitor Command Prompt */
|
|
#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
|
|
|
|
/* Print Buffer Size */
|
|
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
|
|
#define CONFIG_SYS_MAXARGS 32 /* max number of command args */
|
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
|
|
|
|
/*
|
|
* Stack sizes
|
|
*
|
|
* The stack sizes are set up in start.S using the settings below
|
|
*/
|
|
#define CONFIG_STACKSIZE (4*1024*1024) /* regular stack */
|
|
|
|
/*
|
|
* Physical Memory Map
|
|
*/
|
|
#define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of DRAM */
|
|
#define PHYS_SDRAM_1 0x20000000 /* SDRAM Bank #1 */
|
|
#define PHYS_SDRAM_1_SIZE 0x08000000 /* 128 MB */
|
|
|
|
/* following is a multiple DRAM bank sample*/
|
|
/*
|
|
* Physical Memory Map
|
|
*/
|
|
/* #define CONFIG_NR_DRAM_BANKS 4 // we have 2 banks of DRAM
|
|
* #define PHYS_SDRAM_1 0xa0000000 // SDRAM Bank #1
|
|
* #define PHYS_SDRAM_1_SIZE 0x04000000 // 64 MB
|
|
* #define PHYS_SDRAM_2 0xa4000000 // SDRAM Bank #2
|
|
* #define PHYS_SDRAM_2_SIZE 0x00000000 // 0 MB
|
|
* #define PHYS_SDRAM_3 0xa8000000 // SDRAM Bank #3
|
|
* #define PHYS_SDRAM_3_SIZE 0x00000000 // 0 MB
|
|
* #define PHYS_SDRAM_4 0xac000000 // SDRAM Bank #4
|
|
* #define PHYS_SDRAM_4_SIZE 0x00000000 // 0 MB
|
|
*/
|
|
|
|
|
|
#define CONFIG_SYS_MEMTEST_START 0x20000000 /* memtest works on */
|
|
#define CONFIG_SYS_MEMTEST_END 0x24000000 /* 0 ... 64 MB in DRAM */
|
|
|
|
#define CONFIG_SYS_TEXT_BASE 0x23E00000
|
|
#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
|
|
#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - GENERATED_GBL_DATA_SIZE)
|
|
|
|
#define CONFIG_UBOOT_RAM_SIZE 0x04000000 // let us to use only 64MB for uboot
|
|
|
|
|
|
|
|
/* RAM base address */
|
|
#define RAM_START_ADDR 0x20000000
|
|
|
|
/* RAM size */
|
|
#define RAM_SIZE PHYS_SDRAM_1_SIZE
|
|
/* The address used to save tag list used when kernel is booting */
|
|
#define BOOT_PARAMS (RAM_START_ADDR)
|
|
#define BOOT_PARAMS_LEN 0x2000
|
|
|
|
/* CFG load address */
|
|
#define CONFIG_SYS_LOAD_ADDR (BOOT_PARAMS+BOOT_PARAMS_LEN+0x4000)
|
|
|
|
#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
|
|
#define CONFIG_SETUP_MEMORY_TAGS 1
|
|
#define CONFIG_INITRD_TAG 1
|
|
|
|
/* kernel starting address */
|
|
#define KERNEL_RAM_BASE CFG_LOAD_ADDR
|
|
|
|
/* Which block used to save IPL, u-boot and kernel images */
|
|
#define IPL_NAND_BLOCK 0
|
|
#define UBOOT_NAND_BLOCK 1
|
|
#define KERNEL_NAND_BLOCK 2
|
|
|
|
|
|
/* #define CONFIG_CMDLINE_EDITING */
|
|
/* #define CONFIG_AUTO_COMPLETE */
|
|
|
|
/* boot time analysis*/
|
|
#define CONFIG_BOOT_TIME_ANALYSIS 0
|
|
#define CONFIG_BOOT_TIME_ANALYSIS_USE_RTC 0
|
|
|
|
#define CONFIG_SYS_NO_FLASH 1
|
|
|
|
#ifdef CONFIG_MS_ISP_FLASH
|
|
|
|
#define CONFIG_CMD_SF
|
|
|
|
#ifdef CONFIG_MS_SAVE_ENV_IN_ISP_FLASH
|
|
#define CONFIG_ENV_IS_IN_SPI_FLASH
|
|
#define CONFIG_ENV_SECT_SIZE 0x1000
|
|
#define CONFIG_ENV_SIZE 0x1000 /* Total Size of Environment Sector */
|
|
/* bottom 4KB of available space in Uboot */
|
|
/* 0x40000 reserved for UBoot, 0x40000 maximum storage size of uboot */
|
|
#define CONFIG_ENV_OFFSET 0x40000+0x40000-0x1000
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
/*
|
|
* File system, NAND flash, SD/MMC
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
* FLASH driver setup
|
|
*/
|
|
|
|
|
|
#ifdef CONFIG_MS_SDMMC
|
|
#define CONFIG_CMD_FAT
|
|
#define CONFIG_MMC
|
|
#define CONFIG_CMD_MMC
|
|
#define CONFIG_GENERIC_MMC
|
|
#define CONFIG_DOS_PARTITION
|
|
#define CONFIG_MS_SDMMC_MAX_READ_BLOCKS 1024
|
|
#endif
|
|
|
|
|
|
#ifdef CONFIG_MS_NAND
|
|
|
|
#if defined(CONFIG_MS_SAVE_ENV_IN_NAND_FLASH)
|
|
#define CONFIG_ENV_IS_IN_NAND
|
|
#define CONFIG_ENV_OFFSET CONFIG_MSTAR_ENV_NAND_OFFSET
|
|
#define CONFIG_MSTAR_ENV_NAND_OFFSET ms_nand_env_offset
|
|
#define CONFIG_ENV_SIZE 0x00020000
|
|
#endif
|
|
|
|
#define CONFIG_CMD_UBI
|
|
/* #define CONFIG_CMD_UBIFS */
|
|
#define CONFIG_UBI_MWRITE
|
|
|
|
#define MTDIDS_DEFAULT "nand0=nand0" /* "nor0=physmap-flash.0,nand0=nand" */
|
|
#define MTDPARTS_DEFAULT "mtdparts=nand0:0xC0000@0x140000(NPT),-(UBI)" /* must be different from real partition to test NAND partition function */
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
"mtdids=" MTDIDS_DEFAULT "\0" \
|
|
"mtdparts=" MTDPARTS_DEFAULT "\0" \
|
|
"partition=nand0,0\0" \
|
|
""
|
|
|
|
#define CONFIG_CMD_NAND
|
|
#define CONFIG_CMD_CIS
|
|
|
|
#ifdef CONFIG_CMD_NAND
|
|
#define CONFIG_SYS_NAND_MAX_CHIPS 1
|
|
#define CONFIG_SYS_MAX_NAND_DEVICE 1
|
|
#define CONFIG_SYS_NAND_BASE 0 /* not actually used */
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_MS_SPINAND
|
|
#if defined(CONFIG_MS_SAVE_ENV_IN_NAND_FLASH)
|
|
#define CONFIG_ENV_IS_IN_NAND
|
|
#define CONFIG_ENV_OFFSET CONFIG_MSTAR_ENV_NAND_OFFSET
|
|
#define CONFIG_MSTAR_ENV_NAND_OFFSET ms_nand_env_offset
|
|
/*#define CONFIG_MSTAR_ENV_NAND_OFFSET 0x440000*/
|
|
#define CONFIG_ENV_SIZE 0x00020000
|
|
#endif
|
|
|
|
#define CONFIG_CMD_SPINAND_CIS
|
|
#define CONFIG_CMD_UBI
|
|
/* #define CONFIG_CMD_UBIFS */
|
|
#define CONFIG_UBI_MWRITE
|
|
#define MTDIDS_DEFAULT "nand0=nand0" /* "nor0=physmap-flash.0,nand0=nand" */
|
|
/* must be different from real partition to test NAND partition function */
|
|
#define MTDPARTS_DEFAULT "mtdparts=nand0:0xC0000@0x140000(NPT),-(UBI)"
|
|
/* #define MTDPARTS_DEFAULT "mtdparts=nand0:0x60000@0x140000(IPL0),0x60000(IPL1),0x60000(IPL_CUST0),0x60000(IPL_CUST1),0xC0000(UBOOT0),0xC0000(UBOOT1),0x60000(ENV),0x340000(KERNEL),0x340000(RECOVERY),-(UBI)"*/
|
|
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
"mtdids=" MTDIDS_DEFAULT "\0" \
|
|
"mtdparts=" MTDPARTS_DEFAULT "\0" \
|
|
"partition=nand0,0\0" \
|
|
""
|
|
|
|
#define CONFIG_CMD_NAND
|
|
|
|
#ifdef CONFIG_CMD_NAND
|
|
#define CONFIG_SYS_NAND_MAX_CHIPS 1
|
|
#define CONFIG_SYS_MAX_NAND_DEVICE 1
|
|
#define CONFIG_SYS_NAND_BASE 0 /* not actually used */
|
|
#endif /*CONFIG_CMD_NAND*/
|
|
|
|
#endif /*CONFIG_MS_SPINAND*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_MS_EMMC
|
|
#define CONFIG_ENV_IS_IN_MMC 1
|
|
#define CONFIG_SYS_MMC_ENV_DEV 1
|
|
#define CONFIG_MS_EMMC_DEV_INDEX 1
|
|
#define CONFIG_EMMC_PARTITION
|
|
#define CONFIG_UNLZO_DST_ADDR 0x24000000
|
|
#endif
|
|
|
|
#if defined(CONFIG_ENV_IS_IN_NAND) || defined(CONFIG_ENV_IS_IN_MMC) || defined(CONFIG_ENV_IS_IN_SPI_FLASH)
|
|
|
|
#define CONFIG_CMD_SAVEENV /* saveenv */
|
|
#else
|
|
#define CONFIG_ENV_IS_NOWHERE
|
|
#define CONFIG_ENV_SIZE 0x00020000 /* Total Size of Environment Sector */
|
|
#define CONFIG_ENV_RANGE 0x00060000
|
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_MS_NAND) || defined(CONFIG_MS_MTD_ISP_FLASH) || defined(CONFIG_MS_SPINAND)
|
|
#define CONFIG_RBTREE
|
|
#define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
|
|
#define CONFIG_MTD_PARTITIONS
|
|
#define CONFIG_CMD_MTDPARTS
|
|
/*#define CONFIG_MTD_DEBUG
|
|
#define CONFIG_MTD_DEBUG_VERBOSE 7*/
|
|
#endif
|
|
|
|
|
|
/* CMD */
|
|
|
|
#define CONFIG_CMD_CACHE
|
|
#define CONFIG_CMD_MEMORY /* md mm nm mw cp cmp crc base loop mtest */
|
|
#define CONFIG_CMD_RUN /* run command in env variable */
|
|
#define CONFIG_AUTOSCRIPT
|
|
|
|
/*
|
|
* USB configuration
|
|
*/
|
|
#ifdef CONFIG_MS_USB
|
|
|
|
#define CONFIG_USB
|
|
#define CONFIG_CMD_USB
|
|
#define CONFIG_USB_STORAGE
|
|
|
|
#ifdef CONFIG_MS_ENABLE_USB_LAN_MODULE
|
|
#define ENABLE_USB_LAN_MODULE
|
|
#define CONFIG_CMD_NET
|
|
#define CONFIG_CMD_DHCP
|
|
#define CONFIG_CMD_PING
|
|
#define CONFIG_BOOTP_GATEWAY
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
#endif /* __CONFIG_H */
|
|
|
|
|
|
/*following config should be considered to be removed after confirmed*/
|
|
|
|
/* #define CONFIG_SKIP_RELOCATE_UBOOT dropped after uboot 201012 */
|
|
/*
|
|
#undef CONFIG_USE_IRQ // we don't need IRQ/FIQ stuff
|
|
*/
|
|
/*#define KERNEL_IMAGE_SIZE 0x1000000 // 10M kernel image size */
|
|
|
|
/* move to cedric_defconfig
|
|
*
|
|
* #define CONFIG_MS_SDMMC 1
|
|
* #define CONFIG_MS_EMMC 1
|
|
* #define CONFIG_MS_NAND 1
|
|
*
|
|
*/
|
|
|
|
/* Ethernet configuration */
|
|
#ifdef CONFIG_MS_EMAC
|
|
#define CONFIG_MINIUBOOT
|
|
#define CONFIG_BOOTP_GATEWAY
|
|
#define CONFIG_TFTP_PORT
|
|
#endif
|
|
|
|
#define XZ_DICT_ADDR 0x21000000 /*used for XZ decompress*/
|
|
#define XZ_DICT_LENGTH 0x01000000
|
|
|
|
/* I2C configuration */
|
|
#define CONFIG_CMD_I2C
|
|
#define CONFIG_SYS_I2C
|
|
#define CONFIG_I2C_MULTI_BUS
|
|
#define CONFIG_SYS_I2C_MSTAR
|
|
#define I2C_MS_DECLARATIONS2
|
|
#define CONFIG_SYS_I2C_MS_SPEED (300000)
|
|
#define CONFIG_SYS_I2C_MS_SLAVE (0x7F)
|
|
|
|
/* EEPROM */
|
|
#define CONFIG_CMD_EEPROM
|
|
#define CONFIG_HARD_I2C
|
|
#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN (2)
|
|
#define CONFIG_SYS_I2C_EEPROM_ADDR (0x54)
|
|
|
|
/* SENSOR */
|
|
#define CONFIG_MS_SRCFG
|