mcfsim.h 1.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/****************************************************************************/

/*
 *	mcfsim.h -- ColdFire System Integration Module support.
 *
 *	(C) Copyright 1999-2003, Greg Ungerer (gerg@snapgear.com)
7
 * 	(C) Copyright 2000, Lineo Inc. (www.lineo.com)
L
Linus Torvalds 已提交
8 9 10 11 12 13 14 15
 */

/****************************************************************************/
#ifndef	mcfsim_h
#define	mcfsim_h
/****************************************************************************/

/*
16 17
 * Include the appropriate ColdFire CPU specific System Integration Module
 * (SIM) definitions.
L
Linus Torvalds 已提交
18
 */
19
#if defined(CONFIG_M5206) || defined(CONFIG_M5206e)
L
Linus Torvalds 已提交
20
#include <asm/m5206sim.h>
21
#include <asm/mcfintc.h>
22 23
#elif defined(CONFIG_M520x)
#include <asm/m520xsim.h>
24 25
#elif defined(CONFIG_M523x)
#include <asm/m523xsim.h>
26
#include <asm/mcfintc.h>
L
Linus Torvalds 已提交
27 28
#elif defined(CONFIG_M5249)
#include <asm/m5249sim.h>
29
#include <asm/mcfintc.h>
L
Linus Torvalds 已提交
30 31 32 33 34 35 36 37
#elif defined(CONFIG_M527x)
#include <asm/m527xsim.h>
#elif defined(CONFIG_M5272)
#include <asm/m5272sim.h>
#elif defined(CONFIG_M528x)
#include <asm/m528xsim.h>
#elif defined(CONFIG_M5307)
#include <asm/m5307sim.h>
38
#include <asm/mcfintc.h>
39 40
#elif defined(CONFIG_M532x)
#include <asm/m532xsim.h>
L
Linus Torvalds 已提交
41 42
#elif defined(CONFIG_M5407)
#include <asm/m5407sim.h>
43
#include <asm/mcfintc.h>
L
Linus Torvalds 已提交
44 45 46 47
#endif

/****************************************************************************/
#endif	/* mcfsim_h */