Home | History | Annotate | Download | only in configs
      1 /* SPDX-License-Identifier: GPL-2.0+ */
      2 /*
      3  * Copyright (C) 2011
      4  * Stefano Babic, DENX Software Engineering, sbabic (at) denx.de.
      5  *
      6  *
      7  * Configuration settings for the Teejet mt_ventoux board.
      8  *
      9  * Copyright (C) 2009 TechNexion Ltd.
     10  */
     11 
     12 #ifndef __CONFIG_H
     13 #define __CONFIG_H
     14 
     15 #include "tam3517-common.h"
     16 
     17 #undef CONFIG_SYS_MALLOC_LEN
     18 #define CONFIG_SYS_MALLOC_LEN		(CONFIG_ENV_SIZE + (128 << 10) + \
     19 					6 * 1024 * 1024)
     20 
     21 #define CONFIG_MACH_TYPE	MACH_TYPE_AM3517_MT_VENTOUX
     22 
     23 #define CONFIG_BOOTFILE		"uImage"
     24 
     25 #define CONFIG_HOSTNAME "mt_ventoux"
     26 
     27 /*
     28  * Set its own mtdparts, different from common
     29  */
     30 
     31 /*
     32  * FPGA
     33  */
     34 #define CONFIG_SYS_FPGA_PROG_FEEDBACK
     35 #define CONFIG_SYS_FPGA_WAIT	10000
     36 #define CONFIG_MAX_FPGA_DEVICES	1
     37 #define CONFIG_FPGA_DELAY() udelay(1)
     38 #define CONFIG_SYS_FPGA_PROG_FEEDBACK
     39 
     40 #define CONFIG_SPLASH_SCREEN
     41 #define CONFIG_VIDEO_BMP_RLE8
     42 #define CONFIG_VIDEO_OMAP3	/* DSS Support			*/
     43 
     44 #define	CONFIG_EXTRA_ENV_SETTINGS	CONFIG_TAM3517_SETTINGS \
     45 	"bootcmd=run net_nfs\0"
     46 
     47 #endif /* __CONFIG_H */
     48