Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
awilliam
GitHub Repository: awilliam/linux-vfio
Path: blob/master/arch/blackfin/mach-bf548/include/mach/blackfin.h
15159 views
1
/*
2
* Copyright 2007-2010 Analog Devices Inc.
3
*
4
* Licensed under the GPL-2 or later.
5
*/
6
7
#ifndef _MACH_BLACKFIN_H_
8
#define _MACH_BLACKFIN_H_
9
10
#include "bf548.h"
11
#include "anomaly.h"
12
13
#include <asm/def_LPBlackfin.h>
14
#ifdef CONFIG_BF542
15
# include "defBF542.h"
16
#endif
17
#ifdef CONFIG_BF544
18
# include "defBF544.h"
19
#endif
20
#ifdef CONFIG_BF547
21
# include "defBF547.h"
22
#endif
23
#ifdef CONFIG_BF548
24
# include "defBF548.h"
25
#endif
26
#ifdef CONFIG_BF549
27
# include "defBF549.h"
28
#endif
29
30
#ifndef __ASSEMBLY__
31
# include <asm/cdef_LPBlackfin.h>
32
# ifdef CONFIG_BF542
33
# include "cdefBF542.h"
34
# endif
35
# ifdef CONFIG_BF544
36
# include "cdefBF544.h"
37
# endif
38
# ifdef CONFIG_BF547
39
# include "cdefBF547.h"
40
# endif
41
# ifdef CONFIG_BF548
42
# include "cdefBF548.h"
43
# endif
44
# ifdef CONFIG_BF549
45
# include "cdefBF549.h"
46
# endif
47
#endif
48
49
#endif
50
51