MPC86xADS.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * A collection of structures, addresses, and values associated with
  3. * the Motorola MPC8xxADS board. Copied from the FADS config.
  4. *
  5. * Copyright (c) 1998 Dan Malek (dmalek@jlc.net)
  6. *
  7. * Modified by, Yuli Barcohen, Arabella Software Ltd., yuli@arabellasw.com
  8. *
  9. * Values common to all FADS family boards are in board/fads/fads.h
  10. */
  11. #ifndef __CONFIG_H
  12. #define __CONFIG_H
  13. /*
  14. * High Level Configuration Options
  15. * (easy to change)
  16. */
  17. /* board type */
  18. #define CONFIG_MPC86xADS 1 /* new ADS */
  19. #define CONFIG_FADS 1 /* We are FADS compatible (more or less) */
  20. /* CPU type - pick one of these */
  21. #define CONFIG_MPC866T 1
  22. #undef CONFIG_MPC866P
  23. #undef CONFIG_MPC859T
  24. #undef CONFIG_MPC859DSL
  25. #undef CONFIG_MPC852T
  26. #define CONFIG_8xx_CONS_SMC1 1 /* Console is on SMC1 */
  27. #undef CONFIG_8xx_CONS_SMC2
  28. #undef CONFIG_8xx_CONS_NONE
  29. #define CONFIG_BAUDRATE 38400
  30. #define CONFIG_8xx_OSCLK 10000000 /* 10MHz oscillator on EXTCLK */
  31. #define CONFIG_8xx_CPUCLK_DEFAULT 50000000
  32. #define CONFIG_SYS_8xx_CPUCLK_MIN 40000000
  33. #define CONFIG_SYS_8xx_CPUCLK_MAX 80000000
  34. #define CONFIG_DRAM_50MHZ 1
  35. #define CONFIG_SDRAM_50MHZ 1
  36. #include "../../board/fads/fads.h"
  37. #define CONFIG_SYS_OR5_PRELIM 0xFFFF8110 /* 64Kbyte address space */
  38. #define CONFIG_SYS_BR5_PRELIM (CONFIG_SYS_PHYDEV_ADDR | BR_PS_8 | BR_V)
  39. #endif /* __CONFIG_H */