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