1 /*
2  * This file is part of the Chelsio T4/T5 Ethernet driver for Linux.
3  *
4  * Copyright (c) 2003-2014 Chelsio Communications, Inc. All rights reserved.
5  *
6  * This software is available to you under a choice of one of two
7  * licenses.  You may choose to be licensed under the terms of the GNU
8  * General Public License (GPL) Version 2, available from the file
9  * COPYING in the main directory of this source tree, or the
10  * OpenIB.org BSD license below:
11  *
12  *     Redistribution and use in source and binary forms, with or
13  *     without modification, are permitted provided that the following
14  *     conditions are met:
15  *
16  *      - Redistributions of source code must retain the above
17  *        copyright notice, this list of conditions and the following
18  *        disclaimer.
19  *
20  *      - Redistributions in binary form must reproduce the above
21  *        copyright notice, this list of conditions and the following
22  *        disclaimer in the documentation and/or other materials
23  *        provided with the distribution.
24  *
25  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32  * SOFTWARE.
33  */
34 #ifndef __T4_PCI_ID_TBL_H__
35 #define __T4_PCI_ID_TBL_H__
36 
37 /* The code can defined cpp macros for creating a PCI Device ID Table. This is
38  * useful because it allows the PCI ID Table to be maintained in a single place.
39  *
40  * The macros are:
41  *
42  * CH_PCI_DEVICE_ID_TABLE_DEFINE_BEGIN
43  *   -- Used to start the definition of the PCI ID Table.
44  *
45  * CH_PCI_DEVICE_ID_FUNCTION
46  *   -- The PCI Function Number to use in the PCI Device ID Table.  "0"
47  *   -- for drivers attaching to PF0-3, "4" for drivers attaching to PF4,
48  *   -- "8" for drivers attaching to SR-IOV Virtual Functions, etc.
49  *
50  * CH_PCI_DEVICE_ID_FUNCTION2 [optional]
51  *   -- If defined, create a PCI Device ID Table with both
52  *   -- CH_PCI_DEVICE_ID_FUNCTION and CH_PCI_DEVICE_ID_FUNCTION2 populated.
53  *
54  * CH_PCI_ID_TABLE_ENTRY(DeviceID)
55  *   -- Used for the individual PCI Device ID entries.  Note that we will
56  *   -- be adding a trailing comma (",") after all of the entries (and
57  *   -- between the pairs of entries if CH_PCI_DEVICE_ID_FUNCTION2 is defined).
58  *
59  * CH_PCI_DEVICE_ID_TABLE_DEFINE_END
60  *   -- Used to finish the definition of the PCI ID Table.  Note that we
61  *   -- will be adding a trailing semi-colon (";") here.
62  */
63 #ifdef CH_PCI_DEVICE_ID_TABLE_DEFINE_BEGIN
64 
65 #ifndef CH_PCI_DEVICE_ID_FUNCTION
66 #error CH_PCI_DEVICE_ID_FUNCTION not defined!
67 #endif
68 #ifndef CH_PCI_ID_TABLE_ENTRY
69 #error CH_PCI_ID_TABLE_ENTRY not defined!
70 #endif
71 #ifndef CH_PCI_DEVICE_ID_TABLE_DEFINE_END
72 #error CH_PCI_DEVICE_ID_TABLE_DEFINE_END not defined!
73 #endif
74 
75 /* T4 and later ASICs use a PCI Device ID scheme of 0xVFPP where:
76  *
77  *   V  = "4" for T4; "5" for T5, etc.
78  *   F  = "0" for PF 0..3; "4".."7" for PF4..7; and "8" for VFs
79  *   PP = adapter product designation
80  *
81  * We use this consistency in order to create the proper PCI Device IDs
82  * for the specified CH_PCI_DEVICE_ID_FUNCTION.
83  */
84 #ifndef CH_PCI_DEVICE_ID_FUNCTION2
85 #define CH_PCI_ID_TABLE_FENTRY(devid) \
86 	CH_PCI_ID_TABLE_ENTRY((devid) | \
87 			      ((CH_PCI_DEVICE_ID_FUNCTION) << 8))
88 #else
89 #define CH_PCI_ID_TABLE_FENTRY(devid) \
90 	CH_PCI_ID_TABLE_ENTRY((devid) | \
91 			      ((CH_PCI_DEVICE_ID_FUNCTION) << 8)), \
92 	CH_PCI_ID_TABLE_ENTRY((devid) | \
93 			      ((CH_PCI_DEVICE_ID_FUNCTION2) << 8))
94 #endif
95 
96 CH_PCI_DEVICE_ID_TABLE_DEFINE_BEGIN
97 	/* T4 adapters:
98 	 */
99 	CH_PCI_ID_TABLE_FENTRY(0x4000),	/* T440-dbg */
100 	CH_PCI_ID_TABLE_FENTRY(0x4001),	/* T420-cr */
101 	CH_PCI_ID_TABLE_FENTRY(0x4002),	/* T422-cr */
102 	CH_PCI_ID_TABLE_FENTRY(0x4003),	/* T440-cr */
103 	CH_PCI_ID_TABLE_FENTRY(0x4004),	/* T420-bch */
104 	CH_PCI_ID_TABLE_FENTRY(0x4005),	/* T440-bch */
105 	CH_PCI_ID_TABLE_FENTRY(0x4006),	/* T440-ch */
106 	CH_PCI_ID_TABLE_FENTRY(0x4007),	/* T420-so */
107 	CH_PCI_ID_TABLE_FENTRY(0x4008),	/* T420-cx */
108 	CH_PCI_ID_TABLE_FENTRY(0x4009),	/* T420-bt */
109 	CH_PCI_ID_TABLE_FENTRY(0x400a),	/* T404-bt */
110 	CH_PCI_ID_TABLE_FENTRY(0x400b),	/* B420-sr */
111 	CH_PCI_ID_TABLE_FENTRY(0x400c),	/* B404-bt */
112 	CH_PCI_ID_TABLE_FENTRY(0x400d),	/* T480-cr */
113 	CH_PCI_ID_TABLE_FENTRY(0x400e),	/* T440-LP-cr */
114 	CH_PCI_ID_TABLE_FENTRY(0x4080),	/* Custom T480-cr */
115 	CH_PCI_ID_TABLE_FENTRY(0x4081),	/* Custom T440-cr */
116 	CH_PCI_ID_TABLE_FENTRY(0x4082),	/* Custom T420-cr */
117 	CH_PCI_ID_TABLE_FENTRY(0x4083),	/* Custom T420-xaui */
118 	CH_PCI_ID_TABLE_FENTRY(0x4084),	/* Custom T440-cr */
119 	CH_PCI_ID_TABLE_FENTRY(0x4085),	/* Custom T420-cr */
120 	CH_PCI_ID_TABLE_FENTRY(0x4086),	/* Custom T440-bt */
121 	CH_PCI_ID_TABLE_FENTRY(0x4087),	/* Custom T440-cr */
122 	CH_PCI_ID_TABLE_FENTRY(0x4088),	/* Custom T440 2-xaui, 2-xfi */
123 
124 	/* T5 adapters:
125 	 */
126 	CH_PCI_ID_TABLE_FENTRY(0x5000),	/* T580-dbg */
127 	CH_PCI_ID_TABLE_FENTRY(0x5001),	/* T520-cr */
128 	CH_PCI_ID_TABLE_FENTRY(0x5002),	/* T522-cr */
129 	CH_PCI_ID_TABLE_FENTRY(0x5003),	/* T540-cr */
130 	CH_PCI_ID_TABLE_FENTRY(0x5004),	/* T520-bch */
131 	CH_PCI_ID_TABLE_FENTRY(0x5005),	/* T540-bch */
132 	CH_PCI_ID_TABLE_FENTRY(0x5006),	/* T540-ch */
133 	CH_PCI_ID_TABLE_FENTRY(0x5007),	/* T520-so */
134 	CH_PCI_ID_TABLE_FENTRY(0x5008),	/* T520-cx */
135 	CH_PCI_ID_TABLE_FENTRY(0x5009),	/* T520-bt */
136 	CH_PCI_ID_TABLE_FENTRY(0x500a),	/* T504-bt */
137 	CH_PCI_ID_TABLE_FENTRY(0x500b),	/* B520-sr */
138 	CH_PCI_ID_TABLE_FENTRY(0x500c),	/* B504-bt */
139 	CH_PCI_ID_TABLE_FENTRY(0x500d),	/* T580-cr */
140 	CH_PCI_ID_TABLE_FENTRY(0x500e),	/* T540-LP-cr */
141 	CH_PCI_ID_TABLE_FENTRY(0x5010),	/* T580-LP-cr */
142 	CH_PCI_ID_TABLE_FENTRY(0x5011),	/* T520-LL-cr */
143 	CH_PCI_ID_TABLE_FENTRY(0x5012),	/* T560-cr */
144 	CH_PCI_ID_TABLE_FENTRY(0x5013),	/* T580-chr */
145 	CH_PCI_ID_TABLE_FENTRY(0x5014),	/* T580-so */
146 	CH_PCI_ID_TABLE_FENTRY(0x5015),	/* T502-bt */
147 	CH_PCI_ID_TABLE_FENTRY(0x5080),	/* Custom T540-cr */
148 	CH_PCI_ID_TABLE_FENTRY(0x5081),	/* Custom T540-LL-cr */
149 	CH_PCI_ID_TABLE_FENTRY(0x5082),	/* Custom T504-cr */
150 	CH_PCI_ID_TABLE_FENTRY(0x5083),	/* Custom T540-LP-CR */
151 	CH_PCI_ID_TABLE_FENTRY(0x5084),	/* Custom T580-cr */
152 	CH_PCI_ID_TABLE_FENTRY(0x5085),	/* Custom 3x T580-CR */
153 	CH_PCI_ID_TABLE_FENTRY(0x5086),	/* Custom 2x T580-CR */
154 	CH_PCI_ID_TABLE_FENTRY(0x5087),	/* Custom T580-CR */
155 	CH_PCI_ID_TABLE_FENTRY(0x5088),	/* Custom T570-CR */
156 CH_PCI_DEVICE_ID_TABLE_DEFINE_END;
157 
158 #endif /* CH_PCI_DEVICE_ID_TABLE_DEFINE_BEGIN */
159 
160 #endif /* __T4_PCI_ID_TBL_H__ */
161