Boris BREZILLON | ea4abe7 | 2015-03-12 15:54:27 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 Atmel |
| 3 | * |
| 4 | * Boris Brezillon <boris.brezillon@free-electrons.com |
| 5 | * |
| 6 | * This file is licensed under the terms of the GNU General Public |
| 7 | * License version 2. This program is licensed "as is" without any |
| 8 | * warranty of any kind, whether express or implied. |
| 9 | * |
| 10 | */ |
| 11 | |
| 12 | #ifndef __AT91_SOC_H |
| 13 | #define __AT91_SOC_H |
| 14 | |
| 15 | #include <linux/sys_soc.h> |
| 16 | |
| 17 | struct at91_soc { |
| 18 | u32 cidr_match; |
| 19 | u32 exid_match; |
| 20 | const char *name; |
| 21 | const char *family; |
| 22 | }; |
| 23 | |
| 24 | #define AT91_SOC(__cidr, __exid, __name, __family) \ |
| 25 | { \ |
| 26 | .cidr_match = (__cidr), \ |
| 27 | .exid_match = (__exid), \ |
| 28 | .name = (__name), \ |
| 29 | .family = (__family), \ |
| 30 | } |
| 31 | |
| 32 | struct soc_device * __init |
| 33 | at91_soc_init(const struct at91_soc *socs); |
| 34 | |
Alexandre Belloni | 7735f03 | 2015-03-12 15:54:28 +0100 | [diff] [blame] | 35 | #define AT91RM9200_CIDR_MATCH 0x09290780 |
| 36 | |
Alexandre Belloni | d18032d | 2015-03-12 15:54:29 +0100 | [diff] [blame] | 37 | #define AT91SAM9260_CIDR_MATCH 0x019803a0 |
| 38 | #define AT91SAM9261_CIDR_MATCH 0x019703a0 |
| 39 | #define AT91SAM9263_CIDR_MATCH 0x019607a0 |
| 40 | #define AT91SAM9G20_CIDR_MATCH 0x019905a0 |
| 41 | #define AT91SAM9RL64_CIDR_MATCH 0x019b03a0 |
| 42 | #define AT91SAM9G45_CIDR_MATCH 0x019b05a0 |
| 43 | #define AT91SAM9X5_CIDR_MATCH 0x019a05a0 |
| 44 | #define AT91SAM9N12_CIDR_MATCH 0x019a07a0 |
| 45 | |
| 46 | #define AT91SAM9M11_EXID_MATCH 0x00000001 |
| 47 | #define AT91SAM9M10_EXID_MATCH 0x00000002 |
| 48 | #define AT91SAM9G46_EXID_MATCH 0x00000003 |
| 49 | #define AT91SAM9G45_EXID_MATCH 0x00000004 |
| 50 | |
| 51 | #define AT91SAM9G15_EXID_MATCH 0x00000000 |
| 52 | #define AT91SAM9G35_EXID_MATCH 0x00000001 |
| 53 | #define AT91SAM9X35_EXID_MATCH 0x00000002 |
| 54 | #define AT91SAM9G25_EXID_MATCH 0x00000003 |
| 55 | #define AT91SAM9X25_EXID_MATCH 0x00000004 |
| 56 | |
| 57 | #define AT91SAM9CN12_EXID_MATCH 0x00000005 |
| 58 | #define AT91SAM9N12_EXID_MATCH 0x00000006 |
| 59 | #define AT91SAM9CN11_EXID_MATCH 0x00000009 |
| 60 | |
| 61 | #define AT91SAM9XE128_CIDR_MATCH 0x329973a0 |
| 62 | #define AT91SAM9XE256_CIDR_MATCH 0x329a93a0 |
| 63 | #define AT91SAM9XE512_CIDR_MATCH 0x329aa3a0 |
| 64 | |
Nicolas Ferre | c268a74 | 2015-07-30 19:12:12 +0200 | [diff] [blame] | 65 | #define SAMA5D2_CIDR_MATCH 0x0a5c08c0 |
| 66 | #define SAMA5D27_EXID_MATCH 0x00000021 |
| 67 | |
Alexandre Belloni | e733608 | 2015-03-12 15:54:30 +0100 | [diff] [blame] | 68 | #define SAMA5D3_CIDR_MATCH 0x0a5c07c0 |
| 69 | #define SAMA5D31_EXID_MATCH 0x00444300 |
| 70 | #define SAMA5D33_EXID_MATCH 0x00414300 |
| 71 | #define SAMA5D34_EXID_MATCH 0x00414301 |
| 72 | #define SAMA5D35_EXID_MATCH 0x00584300 |
| 73 | #define SAMA5D36_EXID_MATCH 0x00004301 |
| 74 | |
| 75 | #define SAMA5D4_CIDR_MATCH 0x0a5c07c0 |
| 76 | #define SAMA5D41_EXID_MATCH 0x00000001 |
| 77 | #define SAMA5D42_EXID_MATCH 0x00000002 |
| 78 | #define SAMA5D43_EXID_MATCH 0x00000003 |
| 79 | #define SAMA5D44_EXID_MATCH 0x00000004 |
| 80 | |
Boris BREZILLON | ea4abe7 | 2015-03-12 15:54:27 +0100 | [diff] [blame] | 81 | #endif /* __AT91_SOC_H */ |