blob: 3073db9ff8fffe673eb9eb8af14ec91c1f36daae [file] [log] [blame]
Stefano Babic1fdabed2012-02-07 23:29:34 +00001/*
2 * Copyright (C) 2011
3 * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
4 *
Stefano Babic62986872012-08-29 01:22:07 +00005 *
6 * Configuration settings for the Teejet mt_ventoux board.
7 *
Stefano Babic1fdabed2012-02-07 23:29:34 +00008 * Copyright (C) 2009 TechNexion Ltd.
9 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Stefano Babic1fdabed2012-02-07 23:29:34 +000011 */
12
13#ifndef __CONFIG_H
14#define __CONFIG_H
15
16#include "tam3517-common.h"
17
Stefano Babic62986872012-08-29 01:22:07 +000018#undef CONFIG_SYS_MALLOC_LEN
19#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (128 << 10) + \
20 6 * 1024 * 1024)
21
Stefano Babic1fdabed2012-02-07 23:29:34 +000022#define MACH_TYPE_AM3517_MT_VENTOUX 3832
23#define CONFIG_MACH_TYPE MACH_TYPE_AM3517_MT_VENTOUX
24
25#define CONFIG_BOOTDELAY 10
26#define CONFIG_BOOTFILE "uImage"
27#define CONFIG_AUTO_COMPLETE
28
Stefano Babicd0e9fb12012-08-29 01:22:02 +000029#define CONFIG_OMAP3_GPIO_4
Stefano Babic1fdabed2012-02-07 23:29:34 +000030#define CONFIG_HOSTNAME mt_ventoux
31
32/*
Stefano Babic88b821b2012-03-21 00:14:25 +000033 * Set its own mtdparts, different from common
34 */
35#undef MTDIDS_DEFAULT
36#undef MTDPARTS_DEFAULT
37#define MTDIDS_DEFAULT "nand0=omap2-nand.0"
38#define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:512k(MLO)," \
39 "1m(u-boot),256k(env1)," \
40 "256k(env2),8m(ubisystem),-(rootfs)"
41
42/*
Stefano Babic1fdabed2012-02-07 23:29:34 +000043 * FPGA
44 */
Siva Durga Prasad Paladugu64e809a2014-03-14 16:35:38 +053045#define CONFIG_CMD_FPGA_LOADMK
Stefano Babic1fdabed2012-02-07 23:29:34 +000046#define CONFIG_FPGA
47#define CONFIG_FPGA_XILINX
48#define CONFIG_FPGA_SPARTAN3
49#define CONFIG_SYS_FPGA_PROG_FEEDBACK
50#define CONFIG_SYS_FPGA_WAIT 10000
51#define CONFIG_MAX_FPGA_DEVICES 1
52#define CONFIG_FPGA_DELAY() udelay(1)
53#define CONFIG_SYS_FPGA_PROG_FEEDBACK
54
Stefano Babic62986872012-08-29 01:22:07 +000055#define CONFIG_VIDEO
56#define CONFIG_CFB_CONSOLE
57#define CONFIG_VGA_AS_SINGLE_DEVICE
58#define CONFIG_SPLASH_SCREEN
59#define CONFIG_VIDEO_BMP_RLE8
60#define CONFIG_CMD_BMP
61#define CONFIG_VIDEO_OMAP3 /* DSS Support */
62#define CONFIG_SYS_CONSOLE_IS_IN_ENV
63
Stefano Babic1fdabed2012-02-07 23:29:34 +000064#define CONFIG_EXTRA_ENV_SETTINGS CONFIG_TAM3517_SETTINGS \
65 "bootcmd=run net_nfs\0"
66
67#endif /* __CONFIG_H */