xref: /freebsd/sys/dev/cxgbe/common/t4_regs_values.h (revision f05cddf9)
1 /*-
2  * Copyright (c) 2011 Chelsio Communications, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  *
28  */
29 
30 #ifndef __T4_REGS_VALUES_H__
31 #define __T4_REGS_VALUES_H__
32 
33 /*
34  * This file contains definitions for various T4 register value hardware
35  * constants.  The types of values encoded here are predominantly those for
36  * register fields which control "modal" behavior.  For the most part, we do
37  * not include definitions for register fields which are simple numeric
38  * metrics, etc.
39  *
40  * These new "modal values" use a naming convention which matches the
41  * currently existing macros in t4_reg.h.  For register field FOO which would
42  * have S_FOO, M_FOO, V_FOO() and G_FOO() macros, we introduce X_FOO_{MODE}
43  * definitions.  These can be used as V_FOO(X_FOO_MODE) or as (G_FOO(x) ==
44  * X_FOO_MODE).
45  *
46  * Note that this should all be part of t4_regs.h but the toolset used to
47  * generate that file doesn't [yet] have the capability of collecting these
48  * constants.
49  */
50 
51 /*
52  * SGE definitions.
53  * ================
54  */
55 
56 /*
57  * SGE register field values.
58  */
59 
60 /* CONTROL register */
61 #define X_FLSPLITMODE_FLSPLITMIN	0
62 #define X_FLSPLITMODE_ETHHDR		1
63 #define X_FLSPLITMODE_IPHDR		2
64 #define X_FLSPLITMODE_TCPHDR		3
65 
66 #define X_DCASYSTYPE_FSB		0
67 #define X_DCASYSTYPE_CSI		1
68 
69 #define X_EGSTATPAGESIZE_64B		0
70 #define X_EGSTATPAGESIZE_128B		1
71 
72 #define X_RXPKTCPLMODE_DATA		0
73 #define X_RXPKTCPLMODE_SPLIT		1
74 
75 #define X_INGPCIEBOUNDARY_SHIFT		5
76 #define X_INGPCIEBOUNDARY_32B		0
77 #define X_INGPCIEBOUNDARY_64B		1
78 #define X_INGPCIEBOUNDARY_128B		2
79 #define X_INGPCIEBOUNDARY_256B		3
80 #define X_INGPCIEBOUNDARY_512B		4
81 #define X_INGPCIEBOUNDARY_1024B		5
82 #define X_INGPCIEBOUNDARY_2048B		6
83 #define X_INGPCIEBOUNDARY_4096B		7
84 
85 #define X_INGPADBOUNDARY_SHIFT		5
86 #define X_INGPADBOUNDARY_32B		0
87 #define X_INGPADBOUNDARY_64B		1
88 #define X_INGPADBOUNDARY_128B		2
89 #define X_INGPADBOUNDARY_256B		3
90 #define X_INGPADBOUNDARY_512B		4
91 #define X_INGPADBOUNDARY_1024B		5
92 #define X_INGPADBOUNDARY_2048B		6
93 #define X_INGPADBOUNDARY_4096B		7
94 
95 #define X_EGRPCIEBOUNDARY_SHIFT		5
96 #define X_EGRPCIEBOUNDARY_32B		0
97 #define X_EGRPCIEBOUNDARY_64B		1
98 #define X_EGRPCIEBOUNDARY_128B		2
99 #define X_EGRPCIEBOUNDARY_256B		3
100 #define X_EGRPCIEBOUNDARY_512B		4
101 #define X_EGRPCIEBOUNDARY_1024B		5
102 #define X_EGRPCIEBOUNDARY_2048B		6
103 #define X_EGRPCIEBOUNDARY_4096B		7
104 
105 /* GTS register */
106 #define SGE_TIMERREGS			6
107 #define X_TIMERREG_COUNTER0		0
108 #define X_TIMERREG_COUNTER1		1
109 #define X_TIMERREG_COUNTER2		2
110 #define X_TIMERREG_COUNTER3		3
111 #define X_TIMERREG_COUNTER4		4
112 #define X_TIMERREG_COUNTER5		5
113 #define X_TIMERREG_RESTART_COUNTER	6
114 #define X_TIMERREG_UPDATE_CIDX		7
115 
116 /*
117  * Egress Context field values
118  */
119 #define EC_WR_UNITS			16
120 
121 #define X_FETCHBURSTMIN_SHIFT		4
122 #define X_FETCHBURSTMIN_16B		0
123 #define X_FETCHBURSTMIN_32B		1
124 #define X_FETCHBURSTMIN_64B		2
125 #define X_FETCHBURSTMIN_128B		3
126 
127 #define X_FETCHBURSTMAX_SHIFT		6
128 #define X_FETCHBURSTMAX_64B		0
129 #define X_FETCHBURSTMAX_128B		1
130 #define X_FETCHBURSTMAX_256B		2
131 #define X_FETCHBURSTMAX_512B		3
132 
133 #define X_HOSTFCMODE_NONE		0
134 #define X_HOSTFCMODE_INGRESS_QUEUE	1
135 #define X_HOSTFCMODE_STATUS_PAGE	2
136 #define X_HOSTFCMODE_BOTH		3
137 
138 #define X_HOSTFCOWNER_UP		0
139 #define X_HOSTFCOWNER_SGE		1
140 
141 #define X_CIDXFLUSHTHRESH_1		0
142 #define X_CIDXFLUSHTHRESH_2		1
143 #define X_CIDXFLUSHTHRESH_4		2
144 #define X_CIDXFLUSHTHRESH_8		3
145 #define X_CIDXFLUSHTHRESH_16		4
146 #define X_CIDXFLUSHTHRESH_32		5
147 #define X_CIDXFLUSHTHRESH_64		6
148 #define X_CIDXFLUSHTHRESH_128		7
149 
150 #define X_IDXSIZE_UNIT			64
151 
152 #define X_BASEADDRESS_ALIGN		512
153 
154 /*
155  * Ingress Context field values
156  */
157 #define X_UPDATESCHEDULING_TIMER	0
158 #define X_UPDATESCHEDULING_COUNTER_OPTTIMER	1
159 
160 #define X_UPDATEDELIVERY_NONE		0
161 #define X_UPDATEDELIVERY_INTERRUPT	1
162 #define X_UPDATEDELIVERY_STATUS_PAGE	2
163 #define X_UPDATEDELIVERY_BOTH		3
164 
165 #define X_INTERRUPTDESTINATION_PCIE	0
166 #define X_INTERRUPTDESTINATION_IQ	1
167 
168 #define X_QUEUEENTRYSIZE_16B		0
169 #define X_QUEUEENTRYSIZE_32B		1
170 #define X_QUEUEENTRYSIZE_64B		2
171 #define X_QUEUEENTRYSIZE_128B		3
172 
173 #define IC_SIZE_UNIT			16
174 #define IC_BASEADDRESS_ALIGN		512
175 
176 #define X_RSPD_TYPE_FLBUF		0
177 #define X_RSPD_TYPE_CPL			1
178 #define X_RSPD_TYPE_INTR		2
179 
180 /*
181  * CIM definitions.
182  * ================
183  */
184 
185 /*
186  * CIM register field values.
187  */
188 #define X_MBOWNER_NONE			0
189 #define X_MBOWNER_FW			1
190 #define X_MBOWNER_PL			2
191 
192 /*
193  * PCI-E definitions.
194  * ==================
195  */
196 
197 #define X_WINDOW_SHIFT			10
198 #define X_PCIEOFST_SHIFT		10
199 
200 /*
201  * TP definitions.
202  * ===============
203  */
204 
205 /*
206  * TP_VLAN_PRI_MAP controls which subset of fields will be present in the
207  * Compressed Filter Tuple for LE filters.  Each bit set in TP_VLAN_PRI_MAP
208  * selects for a particular field being present.  These fields, when present
209  * in the Compressed Filter Tuple, have the following widths in bits.
210  */
211 #define W_FT_FCOE			1
212 #define W_FT_PORT			3
213 #define W_FT_VNIC_ID			17
214 #define W_FT_VLAN			17
215 #define W_FT_TOS			8
216 #define W_FT_PROTOCOL			8
217 #define W_FT_ETHERTYPE			16
218 #define W_FT_MACMATCH			9
219 #define W_FT_MPSHITTYPE			3
220 #define W_FT_FRAGMENTATION		1
221 
222 /*
223  * Some of the Compressed Filter Tuple fields have internal structure.  These
224  * bit shifts/masks describe those structures.  All shifts are relative to the
225  * base position of the fields within the Compressed Filter Tuple
226  */
227 #define S_FT_VLAN_VLD			16
228 #define V_FT_VLAN_VLD(x)		((x) << S_FT_VLAN_VLD)
229 #define F_FT_VLAN_VLD			V_FT_VLAN_VLD(1U)
230 
231 #define S_FT_VNID_ID_VF			0
232 #define M_FT_VNID_ID_VF			0x7fU
233 #define V_FT_VNID_ID_VF(x)		((x) << S_FT_VNID_ID_VF)
234 #define G_FT_VNID_ID_VF(x)		(((x) >> S_FT_VNID_ID_VF) & M_FT_VNID_ID_VF)
235 
236 #define S_FT_VNID_ID_PF			7
237 #define M_FT_VNID_ID_PF			0x7U
238 #define V_FT_VNID_ID_PF(x)		((x) << S_FT_VNID_ID_PF)
239 #define G_FT_VNID_ID_PF(x)		(((x) >> S_FT_VNID_ID_PF) & M_FT_VNID_ID_PF)
240 
241 #define S_FT_VNID_ID_VLD		16
242 #define V_FT_VNID_ID_VLD(x)		((x) << S_FT_VNID_ID_VLD)
243 #define F_FT_VNID_ID_VLD(x)		V_FT_VNID_ID_VLD(1U)
244 
245 #endif /* __T4_REGS_VALUES_H__ */
246