]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
3d3befa7 WD |
2 | /* |
3 | * (C) Copyright 2003 | |
4 | * Texas Instruments. | |
5 | * Kshitij Gupta <[email protected]> | |
6 | * Configuation settings for the TI OMAP Innovator board. | |
7 | * | |
8 | * (C) Copyright 2004 | |
9 | * ARM Ltd. | |
10 | * Philippe Robin, <[email protected]> | |
11 | * Configuration for Integrator AP board. | |
3d3befa7 | 12 | */ |
fe7eb5d8 | 13 | |
3d3befa7 WD |
14 | #ifndef __CONFIG_H |
15 | #define __CONFIG_H | |
23b3ae0f | 16 | |
e62b008f LW |
17 | #include "integrator-common.h" |
18 | ||
19 | /* Integrator/AP-specific configuration */ | |
6d0f6bcf | 20 | #define CONFIG_SYS_HZ_CLOCK 24000000 /* Timer 1 is clocked at 24Mhz */ |
3d3befa7 | 21 | |
079a136c JL |
22 | /* |
23 | * BOOTP options | |
24 | */ | |
25 | #define CONFIG_BOOTP_BOOTFILESIZE | |
079a136c | 26 | |
1d2c6bc4 JL |
27 | /* |
28 | * Command line configuration. | |
29 | */ | |
716c1dcb | 30 | #define CONFIG_BOOTCOMMAND "" |
3d3befa7 | 31 | |
a7b00a7b LW |
32 | /* Flash settings */ |
33 | #define CONFIG_SYS_FLASH_SIZE 0x02000000 /* 32 MiB */ | |
6d0f6bcf | 34 | #define CONFIG_SYS_MAX_FLASH_SECT 128 |
46937b27 | 35 | #define CONFIG_ENV_SIZE 32768 |
3d3befa7 | 36 | |
3d3befa7 WD |
37 | /*----------------------------------------------------------------------- |
38 | * PCI definitions | |
39 | */ | |
40 | ||
2458716a | 41 | #define CONFIG_TULIP |
3d3befa7 | 42 | #define CONFIG_EEPRO100 |
6d0f6bcf | 43 | #define CONFIG_SYS_RX_ETH_BUFFER 8 /* use 8 rx buffer on eepro100 */ |
3d3befa7 | 44 | |
74f4304e WD |
45 | /*----------------------------------------------------------------------- |
46 | * There are various dependencies on the core module (CM) fitted | |
47 | * Users should refer to their CM user guide | |
48 | * - when porting adjust u-boot/Makefile accordingly | |
49 | * to define the necessary CONFIG_ s for the CM involved | |
50 | * see e.g. integratorcp_CM926EJ-S_config | |
51 | */ | |
9b880bd4 | 52 | #include "armcoremodule.h" |
74f4304e | 53 | |
716c1dcb | 54 | #endif /* __CONFIG_H */ |