mcfsim.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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)
  25. #include <asm/m5249sim.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_M532x)
  37. #include <asm/m532xsim.h>
  38. #elif defined(CONFIG_M5407)
  39. #include <asm/m5407sim.h>
  40. #include <asm/mcfintc.h>
  41. #endif
  42. /****************************************************************************/
  43. #endif /* mcfsim_h */