18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/****************************************************************************/ 38c2ecf20Sopenharmony_ci 48c2ecf20Sopenharmony_ci/* 58c2ecf20Sopenharmony_ci * mcfsim.h -- ColdFire System Integration Module support. 68c2ecf20Sopenharmony_ci * 78c2ecf20Sopenharmony_ci * (C) Copyright 1999-2003, Greg Ungerer (gerg@snapgear.com) 88c2ecf20Sopenharmony_ci * (C) Copyright 2000, Lineo Inc. (www.lineo.com) 98c2ecf20Sopenharmony_ci */ 108c2ecf20Sopenharmony_ci 118c2ecf20Sopenharmony_ci/****************************************************************************/ 128c2ecf20Sopenharmony_ci#ifndef mcfsim_h 138c2ecf20Sopenharmony_ci#define mcfsim_h 148c2ecf20Sopenharmony_ci/****************************************************************************/ 158c2ecf20Sopenharmony_ci 168c2ecf20Sopenharmony_ci/* 178c2ecf20Sopenharmony_ci * Include the appropriate ColdFire CPU specific System Integration Module 188c2ecf20Sopenharmony_ci * (SIM) definitions. 198c2ecf20Sopenharmony_ci */ 208c2ecf20Sopenharmony_ci#if defined(CONFIG_M5206) || defined(CONFIG_M5206e) 218c2ecf20Sopenharmony_ci#include <asm/m5206sim.h> 228c2ecf20Sopenharmony_ci#include <asm/mcfintc.h> 238c2ecf20Sopenharmony_ci#elif defined(CONFIG_M520x) 248c2ecf20Sopenharmony_ci#include <asm/m520xsim.h> 258c2ecf20Sopenharmony_ci#elif defined(CONFIG_M523x) 268c2ecf20Sopenharmony_ci#include <asm/m523xsim.h> 278c2ecf20Sopenharmony_ci#include <asm/mcfintc.h> 288c2ecf20Sopenharmony_ci#elif defined(CONFIG_M5249) || defined(CONFIG_M525x) 298c2ecf20Sopenharmony_ci#include <asm/m525xsim.h> 308c2ecf20Sopenharmony_ci#include <asm/mcfintc.h> 318c2ecf20Sopenharmony_ci#elif defined(CONFIG_M527x) 328c2ecf20Sopenharmony_ci#include <asm/m527xsim.h> 338c2ecf20Sopenharmony_ci#elif defined(CONFIG_M5272) 348c2ecf20Sopenharmony_ci#include <asm/m5272sim.h> 358c2ecf20Sopenharmony_ci#elif defined(CONFIG_M528x) 368c2ecf20Sopenharmony_ci#include <asm/m528xsim.h> 378c2ecf20Sopenharmony_ci#elif defined(CONFIG_M5307) 388c2ecf20Sopenharmony_ci#include <asm/m5307sim.h> 398c2ecf20Sopenharmony_ci#include <asm/mcfintc.h> 408c2ecf20Sopenharmony_ci#elif defined(CONFIG_M53xx) 418c2ecf20Sopenharmony_ci#include <asm/m53xxsim.h> 428c2ecf20Sopenharmony_ci#elif defined(CONFIG_M5407) 438c2ecf20Sopenharmony_ci#include <asm/m5407sim.h> 448c2ecf20Sopenharmony_ci#include <asm/mcfintc.h> 458c2ecf20Sopenharmony_ci#elif defined(CONFIG_M54xx) 468c2ecf20Sopenharmony_ci#include <asm/m54xxsim.h> 478c2ecf20Sopenharmony_ci#elif defined(CONFIG_M5441x) 488c2ecf20Sopenharmony_ci#include <asm/m5441xsim.h> 498c2ecf20Sopenharmony_ci#endif 508c2ecf20Sopenharmony_ci 518c2ecf20Sopenharmony_ci/****************************************************************************/ 528c2ecf20Sopenharmony_ci#endif /* mcfsim_h */ 53