]>
Commit | Line | Data |
---|---|---|
180d3f74 WD |
1 | /* |
2 | * A collection of structures, addresses, and values associated with | |
8ff0208d | 3 | * the Motorola MPC885ADS board. Values common to all FADS family boards |
180d3f74 WD |
4 | * are in board/fads/fads.h |
5 | * | |
8ff0208d | 6 | * Copyright (C) 2003-2004 Arabella Software Ltd. |
180d3f74 WD |
7 | * Yuli Barcohen <[email protected]> |
8 | */ | |
9 | ||
10 | #ifndef __CONFIG_H | |
11 | #define __CONFIG_H | |
12 | ||
8ff0208d | 13 | #define CONFIG_MPC885ADS 1 /* MPC885ADS board */ |
180d3f74 WD |
14 | #define CONFIG_FADS 1 /* We are FADS compatible (more or less) */ |
15 | ||
8ff0208d | 16 | #define CONFIG_MPC885 1 /* MPC885 CPU (Duet family) */ |
180d3f74 | 17 | |
8ff0208d | 18 | #define CONFIG_8xx_CONS_SMC1 1 /* Console is on SMC1 */ |
180d3f74 WD |
19 | #undef CONFIG_8xx_CONS_SMC2 |
20 | #undef CONFIG_8xx_CONS_NONE | |
21 | #define CONFIG_BAUDRATE 38400 | |
22 | ||
8ff0208d WD |
23 | #define CONFIG_8xx_OSCLK 10000000 /* 10 MHz oscillator on EXTCLK */ |
24 | #define CONFIG_8xx_CPUCLK_DEFAULT 50000000 | |
25 | #define CFG_8xx_CPUCLK_MIN 40000000 | |
26 | #define CFG_8xx_CPUCLK_MAX 133000000 | |
180d3f74 WD |
27 | |
28 | #define CONFIG_SDRAM_50MHZ 1 | |
29 | ||
f2302d44 | 30 | #include "../../board/fads/fads.h" |
180d3f74 | 31 | |
180d3f74 WD |
32 | #define CFG_OR5_PRELIM 0xFFFF8110 /* 64Kbyte address space */ |
33 | #define CFG_BR5_PRELIM (CFG_PHYDEV_ADDR | BR_PS_8 | BR_V) | |
34 | ||
c2d0ab4d WD |
35 | #define CONFIG_HAS_ETH1 |
36 | ||
180d3f74 | 37 | #endif /* __CONFIG_H */ |