blob: 8181293115e427b1087c95a3b56f041437fa1ced [file] [log] [blame]
Haavard Skinnemoen964d2192008-08-05 13:49:09 +02001/*
2 * AVR32 and (fake) AT91 CPU identification
3 *
4 * Copyright (C) 2007 Atmel Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#ifndef __ASM_ARCH_CPU_H
11#define __ASM_ARCH_CPU_H
12
13/*
14 * Only AT32AP7000 is defined for now. We can identify the specific
15 * chip at runtime, but I'm not sure if it's really worth it.
16 */
17#ifdef CONFIG_CPU_AT32AP700X
18# define cpu_is_at32ap7000() (1)
19#else
20# define cpu_is_at32ap7000() (0)
21#endif
22
23/*
24 * Since this is AVR32, we will never run on any AT91 CPU. But these
25 * definitions may reduce clutter in common drivers.
26 */
27#define cpu_is_at91rm9200() (0)
28#define cpu_is_at91sam9xe() (0)
29#define cpu_is_at91sam9260() (0)
30#define cpu_is_at91sam9261() (0)
31#define cpu_is_at91sam9263() (0)
32#define cpu_is_at91sam9rl() (0)
33#define cpu_is_at91cap9() (0)
Nicolas Ferre3000f002011-05-15 00:23:32 +020034#define cpu_is_at91cap9_revB() (0)
35#define cpu_is_at91cap9_revC() (0)
Nicolas Ferre2f5d46d2009-07-06 12:15:12 +020036#define cpu_is_at91sam9g10() (0)
Nicolas Ferre3000f002011-05-15 00:23:32 +020037#define cpu_is_at91sam9g20() (0)
Nicolas Ferre2f5d46d2009-07-06 12:15:12 +020038#define cpu_is_at91sam9g45() (0)
Nicolas Ferred8951ad2009-09-21 12:03:56 +020039#define cpu_is_at91sam9g45es() (0)
Nicolas Ferre3000f002011-05-15 00:23:32 +020040#define cpu_is_at91sam9m10() (0)
41#define cpu_is_at91sam9g46() (0)
42#define cpu_is_at91sam9m11() (0)
43#define cpu_is_at91sam9x5() (0)
44#define cpu_is_at91sam9g15() (0)
45#define cpu_is_at91sam9g35() (0)
46#define cpu_is_at91sam9x35() (0)
47#define cpu_is_at91sam9g25() (0)
48#define cpu_is_at91sam9x25() (0)
Haavard Skinnemoen964d2192008-08-05 13:49:09 +020049
50#endif /* __ASM_ARCH_CPU_H */