xref: /OK3568_Linux_fs/u-boot/include/configs/integratorap.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * (C) Copyright 2003
3*4882a593Smuzhiyun  * Texas Instruments.
4*4882a593Smuzhiyun  * Kshitij Gupta <kshitij@ti.com>
5*4882a593Smuzhiyun  * Configuation settings for the TI OMAP Innovator board.
6*4882a593Smuzhiyun  *
7*4882a593Smuzhiyun  * (C) Copyright 2004
8*4882a593Smuzhiyun  * ARM Ltd.
9*4882a593Smuzhiyun  * Philippe Robin, <philippe.robin@arm.com>
10*4882a593Smuzhiyun  * Configuration for Integrator AP board.
11*4882a593Smuzhiyun  *.
12*4882a593Smuzhiyun  * SPDX-License-Identifier:	GPL-2.0+
13*4882a593Smuzhiyun  */
14*4882a593Smuzhiyun 
15*4882a593Smuzhiyun #ifndef __CONFIG_H
16*4882a593Smuzhiyun #define __CONFIG_H
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun #include "integrator-common.h"
19*4882a593Smuzhiyun 
20*4882a593Smuzhiyun /* Integrator/AP-specific configuration */
21*4882a593Smuzhiyun #define CONFIG_SYS_HZ_CLOCK		24000000	/* Timer 1 is clocked at 24Mhz */
22*4882a593Smuzhiyun 
23*4882a593Smuzhiyun /*
24*4882a593Smuzhiyun  * BOOTP options
25*4882a593Smuzhiyun  */
26*4882a593Smuzhiyun #define CONFIG_BOOTP_BOOTFILESIZE
27*4882a593Smuzhiyun #define CONFIG_BOOTP_BOOTPATH
28*4882a593Smuzhiyun #define CONFIG_BOOTP_GATEWAY
29*4882a593Smuzhiyun #define CONFIG_BOOTP_HOSTNAME
30*4882a593Smuzhiyun 
31*4882a593Smuzhiyun /*
32*4882a593Smuzhiyun  * Command line configuration.
33*4882a593Smuzhiyun  */
34*4882a593Smuzhiyun #define CONFIG_BOOTCOMMAND	""
35*4882a593Smuzhiyun 
36*4882a593Smuzhiyun /* Flash settings */
37*4882a593Smuzhiyun #define CONFIG_SYS_FLASH_SIZE		0x02000000 /* 32 MiB */
38*4882a593Smuzhiyun #define CONFIG_SYS_MAX_FLASH_SECT	128
39*4882a593Smuzhiyun #define CONFIG_ENV_SIZE			32768
40*4882a593Smuzhiyun 
41*4882a593Smuzhiyun /*-----------------------------------------------------------------------
42*4882a593Smuzhiyun  * PCI definitions
43*4882a593Smuzhiyun  */
44*4882a593Smuzhiyun 
45*4882a593Smuzhiyun #define CONFIG_TULIP
46*4882a593Smuzhiyun #define CONFIG_EEPRO100
47*4882a593Smuzhiyun #define CONFIG_SYS_RX_ETH_BUFFER	8	/* use 8 rx buffer on eepro100	*/
48*4882a593Smuzhiyun 
49*4882a593Smuzhiyun /*-----------------------------------------------------------------------
50*4882a593Smuzhiyun  * There are various dependencies on the core module (CM) fitted
51*4882a593Smuzhiyun  * Users should refer to their CM user guide
52*4882a593Smuzhiyun  * - when porting adjust u-boot/Makefile accordingly
53*4882a593Smuzhiyun  *   to define the necessary CONFIG_ s for the CM involved
54*4882a593Smuzhiyun  * see e.g. integratorcp_CM926EJ-S_config
55*4882a593Smuzhiyun  */
56*4882a593Smuzhiyun #include "armcoremodule.h"
57*4882a593Smuzhiyun 
58*4882a593Smuzhiyun #endif	/* __CONFIG_H */
59