mcfsim.h 1.5 KB

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