e500.h 457 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright 2003 Motorola,Inc.
  3. * Xianghua Xiao(x.xiao@motorola.com)
  4. */
  5. #ifndef __E500_H__
  6. #define __E500_H__
  7. #ifndef __ASSEMBLY__
  8. #ifndef CONFIG_NUM_CPUS
  9. #define CONFIG_NUM_CPUS 1
  10. #endif
  11. typedef struct
  12. {
  13. unsigned long freqProcessor[CONFIG_NUM_CPUS];
  14. unsigned long freqSystemBus;
  15. unsigned long freqDDRBus;
  16. unsigned long freqLocalBus;
  17. } MPC85xx_SYS_INFO;
  18. #endif /* _ASMLANGUAGE */
  19. #define RESET_VECTOR 0xfffffffc
  20. #endif /* __E500_H__ */