MPC885ADS.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * A collection of structures, addresses, and values associated with
  3. * the Motorola MPC885ADS board. Values common to all FADS family boards
  4. * are in board/fads/fads.h
  5. *
  6. * Copyright (C) 2003-2004 Arabella Software Ltd.
  7. * Yuli Barcohen <yuli@arabellasw.com>
  8. */
  9. #ifndef __CONFIG_H
  10. #define __CONFIG_H
  11. #define CONFIG_MPC885ADS 1 /* MPC885ADS board */
  12. #define CONFIG_FADS 1 /* We are FADS compatible (more or less) */
  13. #define CONFIG_MPC885 1 /* MPC885 CPU (Duet family) */
  14. #define CONFIG_8xx_CONS_SMC1 1 /* Console is on SMC1 */
  15. #undef CONFIG_8xx_CONS_SMC2
  16. #undef CONFIG_8xx_CONS_NONE
  17. #define CONFIG_BAUDRATE 38400
  18. #define CONFIG_8xx_OSCLK 10000000 /* 10 MHz oscillator on EXTCLK */
  19. #define CONFIG_8xx_CPUCLK_DEFAULT 50000000
  20. #define CONFIG_SYS_8xx_CPUCLK_MIN 40000000
  21. #define CONFIG_SYS_8xx_CPUCLK_MAX 133000000
  22. #define CONFIG_SDRAM_50MHZ 1
  23. #include "../../board/fads/fads.h"
  24. #define CONFIG_SYS_OR5_PRELIM 0xFFFF8110 /* 64Kbyte address space */
  25. #define CONFIG_SYS_BR5_PRELIM (CONFIG_SYS_PHYDEV_ADDR | BR_PS_8 | BR_V)
  26. #define CONFIG_HAS_ETH1
  27. #endif /* __CONFIG_H */