e500.h 481 B

12345678910111213141516171819202122232425262728
  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. unsigned long freqQE;
  18. } MPC85xx_SYS_INFO;
  19. #endif /* _ASMLANGUAGE */
  20. #define RESET_VECTOR 0xfffffffc
  21. #endif /* __E500_H__ */