Rework main Makefiles
[oweals/u-boot_mod.git] / u-boot / include / soc / soc_list.h
1 /*
2  * Copyright (C) 2016 Piotr Dymacz <piotr@dymacz.pl>
3  *
4  * SPDX-License-Identifier: GPL-2.0
5  */
6
7 #ifndef _SOC_LIST_H_
8 #define _SOC_LIST_H_
9
10 /* AR933x */
11 #define QCA_AR9330_SOC  0x00000001
12 #define QCA_AR9331_SOC  0x00000002
13 #define QCA_AR933X_SOC  (QCA_AR9330_SOC |\
14                          QCA_AR9331_SOC)
15
16 /* AR934x */
17 #define QCA_AR9341_SOC  0x00000010
18 #define QCA_AR9342_SOC  0x00000020
19 #define QCA_AR9344_SOC  0x00000040
20 #define QCA_AR934X_SOC  (QCA_AR9341_SOC |\
21                          QCA_AR9342_SOC |\
22                          QCA_AR9344_SOC)
23
24 /* QCA953x */
25 #define QCA_QCA9531_SOC 0x00000100
26 #define QCA_QCA9533_SOC 0x00000200
27 #define QCA_QCA953X_SOC (QCA_QCA9531_SOC |\
28                          QCA_QCA9533_SOC)
29
30 /* QCA956x */
31 #define QCA_QCA9561_SOC 0x00001000
32 #define QCA_QCA9563_SOC 0x00002000
33 #define QCA_QCA956X_SOC (QCA_QCA9561_SOC |\
34                          QCA_QCA9563_SOC)
35
36 /* QCA955x */
37 #define QCA_QCA9557_SOC 0x00010000
38 #define QCA_QCA9558_SOC 0x00020000
39 #define QCA_QCA955X_SOC (QCA_QCA9557_SOC |\
40                          QCA_QCA9558_SOC)
41
42 #endif /* _SOC_LIST_H_ */