/* SPDX-License-Identifier: GPL-2.0 */ /****************************************************************************/ /* * mcfsim.h -- ColdFire System Integration Module support. * * (C) Copyright 1999-2003, Greg Ungerer (gerg@snapgear.com) * (C) Copyright 2000, Lineo Inc. (www.lineo.com) */ /****************************************************************************/ #ifndef mcfsim_h #define mcfsim_h /****************************************************************************/ /* * Include the appropriate ColdFire CPU specific System Integration Module * (SIM) definitions. */ #if defined([31mCONFIG_M5206[0m) || defined([31mCONFIG_M5206e[0m) #include <asm/m5206sim.h> #include <asm/mcfintc.h> #elif defined([31mCONFIG_M520x[0m) #include <asm/m520xsim.h> #elif defined([31mCONFIG_M523x[0m) #include <asm/m523xsim.h> #include <asm/mcfintc.h> #elif defined([31mCONFIG_M5249[0m) || defined([31mCONFIG_M525x[0m) #include <asm/m525xsim.h> #include <asm/mcfintc.h> #elif defined([31mCONFIG_M527x[0m) #include <asm/m527xsim.h> #elif defined([31mCONFIG_M5272[0m) #include <asm/m5272sim.h> #elif defined([31mCONFIG_M528x[0m) #include <asm/m528xsim.h> #elif defined([31mCONFIG_M5307[0m) #include <asm/m5307sim.h> #include <asm/mcfintc.h> #elif defined([31mCONFIG_M53xx[0m) #include <asm/m53xxsim.h> #elif defined([31mCONFIG_M5407[0m) #include <asm/m5407sim.h> #include <asm/mcfintc.h> #elif defined([31mCONFIG_M54xx[0m) #include <asm/m54xxsim.h> #elif defined([31mCONFIG_M5441x[0m) #include <asm/m5441xsim.h> #endif /****************************************************************************/ #endif /* mcfsim_h */ |