mcfsim.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /****************************************************************************/
  2. /*
  3. * mcfsim.h -- ColdFire System Integration Module support.
  4. *
  5. * (C) Copyright 1999-2003, Greg Ungerer (gerg@snapgear.com)
  6. * (C) Copyright 2000, Lineo Inc. (www.lineo.com)
  7. */
  8. /****************************************************************************/
  9. #ifndef mcfsim_h
  10. #define mcfsim_h
  11. /****************************************************************************/
  12. /*
  13. * Include the appropriate ColdFire CPU specific System Integration Module
  14. * (SIM) definitions.
  15. */
  16. #if defined(CONFIG_M5206) || defined(CONFIG_M5206e)
  17. #include <asm/m5206sim.h>
  18. #include <asm/mcfintc.h>
  19. #elif defined(CONFIG_M520x)
  20. #include <asm/m520xsim.h>
  21. #elif defined(CONFIG_M523x)
  22. #include <asm/m523xsim.h>
  23. #include <asm/mcfintc.h>
  24. #elif defined(CONFIG_M5249) || defined(CONFIG_M525x)
  25. #include <asm/m525xsim.h>
  26. #include <asm/mcfintc.h>
  27. #elif defined(CONFIG_M527x)
  28. #include <asm/m527xsim.h>
  29. #elif defined(CONFIG_M5272)
  30. #include <asm/m5272sim.h>
  31. #elif defined(CONFIG_M528x)
  32. #include <asm/m528xsim.h>
  33. #elif defined(CONFIG_M5307)
  34. #include <asm/m5307sim.h>
  35. #include <asm/mcfintc.h>
  36. #elif defined(CONFIG_M53xx)
  37. #include <asm/m53xxsim.h>
  38. #elif defined(CONFIG_M5407)
  39. #include <asm/m5407sim.h>
  40. #include <asm/mcfintc.h>
  41. #elif defined(CONFIG_M54xx)
  42. #include <asm/m54xxsim.h>
  43. #elif defined(CONFIG_M5441x)
  44. #include <asm/m5441xsim.h>
  45. #endif
  46. /****************************************************************************/
  47. #endif /* mcfsim_h */