diff options
author | wdenk <wdenk> | 2004-06-06 21:35:06 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-06-06 21:35:06 +0000 |
commit | 1114257c9df3fa3db39ff55dd03d1f7cbc5c0603 (patch) | |
tree | 7d62ed142cf3c00aea35e518ed28dc9f5c6887fd /include/configs/ADS860.h | |
parent | d7a04603ae9c85d496b3991f29dbb8ea339ace49 (diff) | |
download | u-boot-midas-1114257c9df3fa3db39ff55dd03d1f7cbc5c0603.tar.gz u-boot-midas-1114257c9df3fa3db39ff55dd03d1f7cbc5c0603.tar.bz2 u-boot-midas-1114257c9df3fa3db39ff55dd03d1f7cbc5c0603.zip |
Patch by Yuli Barcohen, 19 Apr 2004:
- Rename DUET_ADS to MPC885ADS
- Rename CONFIG_DUET to CONFIG_MPC885_FAMILY
- Rename CONFIG_866_et_al to CONFIG_MPC866_FAMILY
- Clean up FADS family port to use the new defines
Diffstat (limited to 'include/configs/ADS860.h')
-rw-r--r-- | include/configs/ADS860.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/include/configs/ADS860.h b/include/configs/ADS860.h index 916272dce1..df20965640 100644 --- a/include/configs/ADS860.h +++ b/include/configs/ADS860.h @@ -26,15 +26,17 @@ #define CONFIG_BAUDRATE 38400 /* Console baudrate */ -/* CFG_8XX_FACT * CFG_8XX_XIN = 50 MHz */ #if 0 -#define CFG_8XX_XIN 32768 /* 32.768 kHz input frequency */ -#define CFG_8XX_FACT 0x5F6 /* Multiply by 1526 */ +#define CFG_8XX_FACT 1526 /* 32.768 kHz crystal on XTAL/EXTAL */ #else -#define CFG_8XX_XIN 4000000 /* 4 MHz input frequency */ -#define CFG_8XX_FACT 12 /* Multiply by 12 */ +#define CFG_8XX_FACT 12 /* 4 MHz oscillator on EXTCLK */ #endif +#define CFG_PLPRCR (((CFG_8XX_FACT-1) << PLPRCR_MF_SHIFT) | \ + PLPRCR_SPLSS | PLPRCR_TEXPS | PLPRCR_TMIST) + +#define CONFIG_DRAM_50MHZ 1 + #define CONFIG_COMMANDS (CONFIG_CMD_DFL \ | CFG_CMD_DHCP \ | CFG_CMD_IMMAP \ @@ -42,13 +44,9 @@ | CFG_CMD_PING \ ) -#define CONFIG_DRAM_50MHZ 1 #include "fads.h" -#define CFG_PLPRCR (((CFG_8XX_FACT-1) << PLPRCR_MF_SHIFT) | \ - PLPRCR_SPLSS | PLPRCR_TEXPS | PLPRCR_TMIST) - #define CFG_PC_IDE_RESET ((ushort)0x0008) /* PC 12 */ #endif /* __CONFIG_H */ |