1af866496SDavid Daney /***********************license start***************
2af866496SDavid Daney * Author: Cavium Networks
3af866496SDavid Daney *
4af866496SDavid Daney * Contact: support@caviumnetworks.com
5af866496SDavid Daney * This file is part of the OCTEON SDK
6af866496SDavid Daney *
7af866496SDavid Daney * Copyright (c) 2003-2008 Cavium Networks
8af866496SDavid Daney *
9af866496SDavid Daney * This file is free software; you can redistribute it and/or modify
10af866496SDavid Daney * it under the terms of the GNU General Public License, Version 2, as
11af866496SDavid Daney * published by the Free Software Foundation.
12af866496SDavid Daney *
13af866496SDavid Daney * This file is distributed in the hope that it will be useful, but
14af866496SDavid Daney * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
15af866496SDavid Daney * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
16af866496SDavid Daney * NONINFRINGEMENT. See the GNU General Public License for more
17af866496SDavid Daney * details.
18af866496SDavid Daney *
19af866496SDavid Daney * You should have received a copy of the GNU General Public License
20af866496SDavid Daney * along with this file; if not, write to the Free Software
21af866496SDavid Daney * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22af866496SDavid Daney * or visit http://www.gnu.org/licenses/.
23af866496SDavid Daney *
24af866496SDavid Daney * This file may also be available under a different license from Cavium.
25af866496SDavid Daney * Contact Cavium Networks for more information
26af866496SDavid Daney ***********************license end**************************************/
27af866496SDavid Daney
28af866496SDavid Daney /**
29af866496SDavid Daney *
30af866496SDavid Daney * This header file defines the work queue entry (wqe) data structure.
31af866496SDavid Daney * Since this is a commonly used structure that depends on structures
32af866496SDavid Daney * from several hardware blocks, those definitions have been placed
33af866496SDavid Daney * in this file to create a single point of definition of the wqe
34af866496SDavid Daney * format.
35af866496SDavid Daney * Data structures are still named according to the block that they
36af866496SDavid Daney * relate to.
37af866496SDavid Daney *
38af866496SDavid Daney */
39af866496SDavid Daney
40af866496SDavid Daney #ifndef __CVMX_WQE_H__
41af866496SDavid Daney #define __CVMX_WQE_H__
42af866496SDavid Daney
43a1ce3928SDavid Howells #include <asm/octeon/cvmx-packet.h>
44af866496SDavid Daney
45af866496SDavid Daney
46af866496SDavid Daney #define OCT_TAG_TYPE_STRING(x) \
47af866496SDavid Daney (((x) == CVMX_POW_TAG_TYPE_ORDERED) ? "ORDERED" : \
48af866496SDavid Daney (((x) == CVMX_POW_TAG_TYPE_ATOMIC) ? "ATOMIC" : \
49af866496SDavid Daney (((x) == CVMX_POW_TAG_TYPE_NULL) ? "NULL" : \
50af866496SDavid Daney "NULL_NULL")))
51af866496SDavid Daney
52af866496SDavid Daney /**
53af866496SDavid Daney * HW decode / err_code in work queue entry
54af866496SDavid Daney */
55af866496SDavid Daney typedef union {
56af866496SDavid Daney uint64_t u64;
57af866496SDavid Daney
58af866496SDavid Daney /* Use this struct if the hardware determines that the packet is IP */
59af866496SDavid Daney struct {
6011db04c8SPaul Martin #ifdef __BIG_ENDIAN_BITFIELD
61af866496SDavid Daney /* HW sets this to the number of buffers used by this packet */
62af866496SDavid Daney uint64_t bufs:8;
63af866496SDavid Daney /* HW sets to the number of L2 bytes prior to the IP */
64af866496SDavid Daney uint64_t ip_offset:8;
65af866496SDavid Daney /* set to 1 if we found DSA/VLAN in the L2 */
66af866496SDavid Daney uint64_t vlan_valid:1;
67af866496SDavid Daney /* Set to 1 if the DSA/VLAN tag is stacked */
68af866496SDavid Daney uint64_t vlan_stacked:1;
69af866496SDavid Daney uint64_t unassigned:1;
70af866496SDavid Daney /* HW sets to the DSA/VLAN CFI flag (valid when vlan_valid) */
71af866496SDavid Daney uint64_t vlan_cfi:1;
72af866496SDavid Daney /* HW sets to the DSA/VLAN_ID field (valid when vlan_valid) */
73af866496SDavid Daney uint64_t vlan_id:12;
74af866496SDavid Daney /* Ring Identifier (if PCIe). Requires PIP_GBL_CTL[RING_EN]=1 */
75af866496SDavid Daney uint64_t pr:4;
76af866496SDavid Daney uint64_t unassigned2:8;
77af866496SDavid Daney /* the packet needs to be decompressed */
78af866496SDavid Daney uint64_t dec_ipcomp:1;
79af866496SDavid Daney /* the packet is either TCP or UDP */
80af866496SDavid Daney uint64_t tcp_or_udp:1;
81af866496SDavid Daney /* the packet needs to be decrypted (ESP or AH) */
82af866496SDavid Daney uint64_t dec_ipsec:1;
83af866496SDavid Daney /* the packet is IPv6 */
84af866496SDavid Daney uint64_t is_v6:1;
85af866496SDavid Daney
86af866496SDavid Daney /*
87af866496SDavid Daney * (rcv_error, not_IP, IP_exc, is_frag, L4_error,
88af866496SDavid Daney * software, etc.).
89af866496SDavid Daney */
90af866496SDavid Daney
91af866496SDavid Daney /*
92af866496SDavid Daney * reserved for software use, hardware will clear on
93af866496SDavid Daney * packet creation.
94af866496SDavid Daney */
95af866496SDavid Daney uint64_t software:1;
96af866496SDavid Daney /* exceptional conditions below */
97af866496SDavid Daney /* the receive interface hardware detected an L4 error
98af866496SDavid Daney * (only applies if !is_frag) (only applies if
99af866496SDavid Daney * !rcv_error && !not_IP && !IP_exc && !is_frag)
100af866496SDavid Daney * failure indicated in err_code below, decode:
101af866496SDavid Daney *
102af866496SDavid Daney * - 1 = Malformed L4
103af866496SDavid Daney * - 2 = L4 Checksum Error: the L4 checksum value is
104af866496SDavid Daney * - 3 = UDP Length Error: The UDP length field would
105af866496SDavid Daney * make the UDP data longer than what remains in
106af866496SDavid Daney * the IP packet (as defined by the IP header
107af866496SDavid Daney * length field).
108af866496SDavid Daney * - 4 = Bad L4 Port: either the source or destination
109af866496SDavid Daney * TCP/UDP port is 0.
110af866496SDavid Daney * - 8 = TCP FIN Only: the packet is TCP and only the
111af866496SDavid Daney * FIN flag set.
112af866496SDavid Daney * - 9 = TCP No Flags: the packet is TCP and no flags
113af866496SDavid Daney * are set.
114af866496SDavid Daney * - 10 = TCP FIN RST: the packet is TCP and both FIN
115af866496SDavid Daney * and RST are set.
116af866496SDavid Daney * - 11 = TCP SYN URG: the packet is TCP and both SYN
117af866496SDavid Daney * and URG are set.
118af866496SDavid Daney * - 12 = TCP SYN RST: the packet is TCP and both SYN
119af866496SDavid Daney * and RST are set.
120af866496SDavid Daney * - 13 = TCP SYN FIN: the packet is TCP and both SYN
121af866496SDavid Daney * and FIN are set.
122af866496SDavid Daney */
123af866496SDavid Daney uint64_t L4_error:1;
124af866496SDavid Daney /* set if the packet is a fragment */
125af866496SDavid Daney uint64_t is_frag:1;
126af866496SDavid Daney /* the receive interface hardware detected an IP error
127af866496SDavid Daney * / exception (only applies if !rcv_error && !not_IP)
128af866496SDavid Daney * failure indicated in err_code below, decode:
129af866496SDavid Daney *
130af866496SDavid Daney * - 1 = Not IP: the IP version field is neither 4 nor
131af866496SDavid Daney * 6.
132af866496SDavid Daney * - 2 = IPv4 Header Checksum Error: the IPv4 header
133af866496SDavid Daney * has a checksum violation.
134af866496SDavid Daney * - 3 = IP Malformed Header: the packet is not long
135af866496SDavid Daney * enough to contain the IP header.
136af866496SDavid Daney * - 4 = IP Malformed: the packet is not long enough
137af866496SDavid Daney * to contain the bytes indicated by the IP
138af866496SDavid Daney * header. Pad is allowed.
139af866496SDavid Daney * - 5 = IP TTL Hop: the IPv4 TTL field or the IPv6
140af866496SDavid Daney * Hop Count field are zero.
141af866496SDavid Daney * - 6 = IP Options
142af866496SDavid Daney */
143af866496SDavid Daney uint64_t IP_exc:1;
144af866496SDavid Daney /*
145af866496SDavid Daney * Set if the hardware determined that the packet is a
146af866496SDavid Daney * broadcast.
147af866496SDavid Daney */
148af866496SDavid Daney uint64_t is_bcast:1;
149af866496SDavid Daney /*
150af866496SDavid Daney * St if the hardware determined that the packet is a
151af866496SDavid Daney * multi-cast.
152af866496SDavid Daney */
153af866496SDavid Daney uint64_t is_mcast:1;
154af866496SDavid Daney /*
155af866496SDavid Daney * Set if the packet may not be IP (must be zero in
156af866496SDavid Daney * this case).
157af866496SDavid Daney */
158af866496SDavid Daney uint64_t not_IP:1;
159af866496SDavid Daney /*
160af866496SDavid Daney * The receive interface hardware detected a receive
161af866496SDavid Daney * error (must be zero in this case).
162af866496SDavid Daney */
163af866496SDavid Daney uint64_t rcv_error:1;
164af866496SDavid Daney /* lower err_code = first-level descriptor of the
165af866496SDavid Daney * work */
166af866496SDavid Daney /* zero for packet submitted by hardware that isn't on
167af866496SDavid Daney * the slow path */
168af866496SDavid Daney /* type is cvmx_pip_err_t */
169af866496SDavid Daney uint64_t err_code:8;
17011db04c8SPaul Martin #else
17111db04c8SPaul Martin uint64_t err_code:8;
17211db04c8SPaul Martin uint64_t rcv_error:1;
17311db04c8SPaul Martin uint64_t not_IP:1;
17411db04c8SPaul Martin uint64_t is_mcast:1;
17511db04c8SPaul Martin uint64_t is_bcast:1;
17611db04c8SPaul Martin uint64_t IP_exc:1;
17711db04c8SPaul Martin uint64_t is_frag:1;
17811db04c8SPaul Martin uint64_t L4_error:1;
17911db04c8SPaul Martin uint64_t software:1;
18011db04c8SPaul Martin uint64_t is_v6:1;
18111db04c8SPaul Martin uint64_t dec_ipsec:1;
18211db04c8SPaul Martin uint64_t tcp_or_udp:1;
18311db04c8SPaul Martin uint64_t dec_ipcomp:1;
18411db04c8SPaul Martin uint64_t unassigned2:4;
18511db04c8SPaul Martin uint64_t unassigned2a:4;
18611db04c8SPaul Martin uint64_t pr:4;
18711db04c8SPaul Martin uint64_t vlan_id:12;
18811db04c8SPaul Martin uint64_t vlan_cfi:1;
18911db04c8SPaul Martin uint64_t unassigned:1;
19011db04c8SPaul Martin uint64_t vlan_stacked:1;
19111db04c8SPaul Martin uint64_t vlan_valid:1;
19211db04c8SPaul Martin uint64_t ip_offset:8;
19311db04c8SPaul Martin uint64_t bufs:8;
19411db04c8SPaul Martin #endif
195af866496SDavid Daney } s;
196f8023da8SJanne Huttunen struct {
197f8023da8SJanne Huttunen #ifdef __BIG_ENDIAN_BITFIELD
198f8023da8SJanne Huttunen uint64_t bufs:8;
199f8023da8SJanne Huttunen uint64_t ip_offset:8;
200f8023da8SJanne Huttunen uint64_t vlan_valid:1;
201f8023da8SJanne Huttunen uint64_t vlan_stacked:1;
202f8023da8SJanne Huttunen uint64_t unassigned:1;
203f8023da8SJanne Huttunen uint64_t vlan_cfi:1;
204f8023da8SJanne Huttunen uint64_t vlan_id:12;
205f8023da8SJanne Huttunen uint64_t port:12; /* MAC/PIP port number. */
206f8023da8SJanne Huttunen uint64_t dec_ipcomp:1;
207f8023da8SJanne Huttunen uint64_t tcp_or_udp:1;
208f8023da8SJanne Huttunen uint64_t dec_ipsec:1;
209f8023da8SJanne Huttunen uint64_t is_v6:1;
210f8023da8SJanne Huttunen uint64_t software:1;
211f8023da8SJanne Huttunen uint64_t L4_error:1;
212f8023da8SJanne Huttunen uint64_t is_frag:1;
213f8023da8SJanne Huttunen uint64_t IP_exc:1;
214f8023da8SJanne Huttunen uint64_t is_bcast:1;
215f8023da8SJanne Huttunen uint64_t is_mcast:1;
216f8023da8SJanne Huttunen uint64_t not_IP:1;
217f8023da8SJanne Huttunen uint64_t rcv_error:1;
218f8023da8SJanne Huttunen uint64_t err_code:8;
219f8023da8SJanne Huttunen #else
220f8023da8SJanne Huttunen uint64_t err_code:8;
221f8023da8SJanne Huttunen uint64_t rcv_error:1;
222f8023da8SJanne Huttunen uint64_t not_IP:1;
223f8023da8SJanne Huttunen uint64_t is_mcast:1;
224f8023da8SJanne Huttunen uint64_t is_bcast:1;
225f8023da8SJanne Huttunen uint64_t IP_exc:1;
226f8023da8SJanne Huttunen uint64_t is_frag:1;
227f8023da8SJanne Huttunen uint64_t L4_error:1;
228f8023da8SJanne Huttunen uint64_t software:1;
229f8023da8SJanne Huttunen uint64_t is_v6:1;
230f8023da8SJanne Huttunen uint64_t dec_ipsec:1;
231f8023da8SJanne Huttunen uint64_t tcp_or_udp:1;
232f8023da8SJanne Huttunen uint64_t dec_ipcomp:1;
233f8023da8SJanne Huttunen uint64_t port:12;
234f8023da8SJanne Huttunen uint64_t vlan_id:12;
235f8023da8SJanne Huttunen uint64_t vlan_cfi:1;
236f8023da8SJanne Huttunen uint64_t unassigned:1;
237f8023da8SJanne Huttunen uint64_t vlan_stacked:1;
238f8023da8SJanne Huttunen uint64_t vlan_valid:1;
239f8023da8SJanne Huttunen uint64_t ip_offset:8;
240f8023da8SJanne Huttunen uint64_t bufs:8;
241f8023da8SJanne Huttunen #endif
242f8023da8SJanne Huttunen } s_cn68xx;
243af866496SDavid Daney
244af866496SDavid Daney /* use this to get at the 16 vlan bits */
245af866496SDavid Daney struct {
24611db04c8SPaul Martin #ifdef __BIG_ENDIAN_BITFIELD
247af866496SDavid Daney uint64_t unused1:16;
248af866496SDavid Daney uint64_t vlan:16;
249af866496SDavid Daney uint64_t unused2:32;
25011db04c8SPaul Martin #else
25111db04c8SPaul Martin uint64_t unused2:32;
25211db04c8SPaul Martin uint64_t vlan:16;
25311db04c8SPaul Martin uint64_t unused1:16;
25411db04c8SPaul Martin
25511db04c8SPaul Martin #endif
256af866496SDavid Daney } svlan;
257af866496SDavid Daney
258af866496SDavid Daney /*
259af866496SDavid Daney * use this struct if the hardware could not determine that
260af866496SDavid Daney * the packet is ip.
261af866496SDavid Daney */
262af866496SDavid Daney struct {
26311db04c8SPaul Martin #ifdef __BIG_ENDIAN_BITFIELD
264af866496SDavid Daney /*
265af866496SDavid Daney * HW sets this to the number of buffers used by this
266af866496SDavid Daney * packet.
267af866496SDavid Daney */
268af866496SDavid Daney uint64_t bufs:8;
269af866496SDavid Daney uint64_t unused:8;
270af866496SDavid Daney /* set to 1 if we found DSA/VLAN in the L2 */
271af866496SDavid Daney uint64_t vlan_valid:1;
272af866496SDavid Daney /* Set to 1 if the DSA/VLAN tag is stacked */
273af866496SDavid Daney uint64_t vlan_stacked:1;
274af866496SDavid Daney uint64_t unassigned:1;
275af866496SDavid Daney /*
276af866496SDavid Daney * HW sets to the DSA/VLAN CFI flag (valid when
277af866496SDavid Daney * vlan_valid)
278af866496SDavid Daney */
279af866496SDavid Daney uint64_t vlan_cfi:1;
280af866496SDavid Daney /*
281af866496SDavid Daney * HW sets to the DSA/VLAN_ID field (valid when
282af866496SDavid Daney * vlan_valid).
283af866496SDavid Daney */
284af866496SDavid Daney uint64_t vlan_id:12;
285af866496SDavid Daney /*
286af866496SDavid Daney * Ring Identifier (if PCIe). Requires
287af866496SDavid Daney * PIP_GBL_CTL[RING_EN]=1
288af866496SDavid Daney */
289af866496SDavid Daney uint64_t pr:4;
290af866496SDavid Daney uint64_t unassigned2:12;
291af866496SDavid Daney /*
292af866496SDavid Daney * reserved for software use, hardware will clear on
293af866496SDavid Daney * packet creation.
294af866496SDavid Daney */
295af866496SDavid Daney uint64_t software:1;
296af866496SDavid Daney uint64_t unassigned3:1;
297af866496SDavid Daney /*
298af866496SDavid Daney * set if the hardware determined that the packet is
299af866496SDavid Daney * rarp.
300af866496SDavid Daney */
301af866496SDavid Daney uint64_t is_rarp:1;
302af866496SDavid Daney /*
303af866496SDavid Daney * set if the hardware determined that the packet is
304af866496SDavid Daney * arp
305af866496SDavid Daney */
306af866496SDavid Daney uint64_t is_arp:1;
307af866496SDavid Daney /*
308af866496SDavid Daney * set if the hardware determined that the packet is a
309af866496SDavid Daney * broadcast.
310af866496SDavid Daney */
311af866496SDavid Daney uint64_t is_bcast:1;
312af866496SDavid Daney /*
313af866496SDavid Daney * set if the hardware determined that the packet is a
314af866496SDavid Daney * multi-cast
315af866496SDavid Daney */
316af866496SDavid Daney uint64_t is_mcast:1;
317af866496SDavid Daney /*
318af866496SDavid Daney * set if the packet may not be IP (must be one in
319af866496SDavid Daney * this case)
320af866496SDavid Daney */
321af866496SDavid Daney uint64_t not_IP:1;
322af866496SDavid Daney /* The receive interface hardware detected a receive
323af866496SDavid Daney * error. Failure indicated in err_code below,
324af866496SDavid Daney * decode:
325af866496SDavid Daney *
326af866496SDavid Daney * - 1 = partial error: a packet was partially
327af866496SDavid Daney * received, but internal buffering / bandwidth
328af866496SDavid Daney * was not adequate to receive the entire
329af866496SDavid Daney * packet.
330af866496SDavid Daney * - 2 = jabber error: the RGMII packet was too large
331af866496SDavid Daney * and is truncated.
332af866496SDavid Daney * - 3 = overrun error: the RGMII packet is longer
333af866496SDavid Daney * than allowed and had an FCS error.
334af866496SDavid Daney * - 4 = oversize error: the RGMII packet is longer
335af866496SDavid Daney * than allowed.
336af866496SDavid Daney * - 5 = alignment error: the RGMII packet is not an
337af866496SDavid Daney * integer number of bytes
338af866496SDavid Daney * and had an FCS error (100M and 10M only).
339af866496SDavid Daney * - 6 = fragment error: the RGMII packet is shorter
340af866496SDavid Daney * than allowed and had an FCS error.
341af866496SDavid Daney * - 7 = GMX FCS error: the RGMII packet had an FCS
342af866496SDavid Daney * error.
343af866496SDavid Daney * - 8 = undersize error: the RGMII packet is shorter
344af866496SDavid Daney * than allowed.
345af866496SDavid Daney * - 9 = extend error: the RGMII packet had an extend
346af866496SDavid Daney * error.
347af866496SDavid Daney * - 10 = length mismatch error: the RGMII packet had
348af866496SDavid Daney * a length that did not match the length field
349af866496SDavid Daney * in the L2 HDR.
350af866496SDavid Daney * - 11 = RGMII RX error/SPI4 DIP4 Error: the RGMII
351af866496SDavid Daney * packet had one or more data reception errors
352af866496SDavid Daney * (RXERR) or the SPI4 packet had one or more
353af866496SDavid Daney * DIP4 errors.
354af866496SDavid Daney * - 12 = RGMII skip error/SPI4 Abort Error: the RGMII
355af866496SDavid Daney * packet was not large enough to cover the
356af866496SDavid Daney * skipped bytes or the SPI4 packet was
357af866496SDavid Daney * terminated with an About EOPS.
358af866496SDavid Daney * - 13 = RGMII nibble error/SPI4 Port NXA Error: the
359af866496SDavid Daney * RGMII packet had a studder error (data not
360af866496SDavid Daney * repeated - 10/100M only) or the SPI4 packet
361af866496SDavid Daney * was sent to an NXA.
362af866496SDavid Daney * - 16 = FCS error: a SPI4.2 packet had an FCS error.
363af866496SDavid Daney * - 17 = Skip error: a packet was not large enough to
364af866496SDavid Daney * cover the skipped bytes.
365af866496SDavid Daney * - 18 = L2 header malformed: the packet is not long
366af866496SDavid Daney * enough to contain the L2.
367af866496SDavid Daney */
368af866496SDavid Daney
369af866496SDavid Daney uint64_t rcv_error:1;
370af866496SDavid Daney /*
371af866496SDavid Daney * lower err_code = first-level descriptor of the
372af866496SDavid Daney * work
373af866496SDavid Daney */
374af866496SDavid Daney /*
375af866496SDavid Daney * zero for packet submitted by hardware that isn't on
376af866496SDavid Daney * the slow path
377af866496SDavid Daney */
378af866496SDavid Daney /* type is cvmx_pip_err_t (union, so can't use directly */
379af866496SDavid Daney uint64_t err_code:8;
38011db04c8SPaul Martin #else
38111db04c8SPaul Martin uint64_t err_code:8;
38211db04c8SPaul Martin uint64_t rcv_error:1;
38311db04c8SPaul Martin uint64_t not_IP:1;
38411db04c8SPaul Martin uint64_t is_mcast:1;
38511db04c8SPaul Martin uint64_t is_bcast:1;
38611db04c8SPaul Martin uint64_t is_arp:1;
38711db04c8SPaul Martin uint64_t is_rarp:1;
38811db04c8SPaul Martin uint64_t unassigned3:1;
38911db04c8SPaul Martin uint64_t software:1;
39011db04c8SPaul Martin uint64_t unassigned2:4;
39111db04c8SPaul Martin uint64_t unassigned2a:8;
39211db04c8SPaul Martin uint64_t pr:4;
39311db04c8SPaul Martin uint64_t vlan_id:12;
39411db04c8SPaul Martin uint64_t vlan_cfi:1;
39511db04c8SPaul Martin uint64_t unassigned:1;
39611db04c8SPaul Martin uint64_t vlan_stacked:1;
39711db04c8SPaul Martin uint64_t vlan_valid:1;
39811db04c8SPaul Martin uint64_t unused:8;
39911db04c8SPaul Martin uint64_t bufs:8;
40011db04c8SPaul Martin #endif
401af866496SDavid Daney } snoip;
402af866496SDavid Daney
403af866496SDavid Daney } cvmx_pip_wqe_word2;
404af866496SDavid Daney
405f8023da8SJanne Huttunen union cvmx_pip_wqe_word0 {
406f8023da8SJanne Huttunen struct {
40711db04c8SPaul Martin #ifdef __BIG_ENDIAN_BITFIELD
408af866496SDavid Daney /**
409af866496SDavid Daney * raw chksum result generated by the HW
410af866496SDavid Daney */
411af866496SDavid Daney uint16_t hw_chksum;
412af866496SDavid Daney /**
413af866496SDavid Daney * Field unused by hardware - available for software
414af866496SDavid Daney */
415af866496SDavid Daney uint8_t unused;
416af866496SDavid Daney /**
417af866496SDavid Daney * Next pointer used by hardware for list maintenance.
418af866496SDavid Daney * May be written/read by HW before the work queue
419f8023da8SJanne Huttunen * entry is scheduled to a PP (Only 36 bits used in
420f8023da8SJanne Huttunen * Octeon 1)
421af866496SDavid Daney */
422af866496SDavid Daney uint64_t next_ptr:40;
42311db04c8SPaul Martin #else
42411db04c8SPaul Martin uint64_t next_ptr:40;
42511db04c8SPaul Martin uint8_t unused;
42611db04c8SPaul Martin uint16_t hw_chksum;
42711db04c8SPaul Martin #endif
428f8023da8SJanne Huttunen } cn38xx;
429f8023da8SJanne Huttunen struct {
430f8023da8SJanne Huttunen #ifdef __BIG_ENDIAN_BITFIELD
431f8023da8SJanne Huttunen uint64_t l4ptr:8; /* 56..63 */
432f8023da8SJanne Huttunen uint64_t unused0:8; /* 48..55 */
433f8023da8SJanne Huttunen uint64_t l3ptr:8; /* 40..47 */
434f8023da8SJanne Huttunen uint64_t l2ptr:8; /* 32..39 */
435f8023da8SJanne Huttunen uint64_t unused1:18; /* 14..31 */
436f8023da8SJanne Huttunen uint64_t bpid:6; /* 8..13 */
437f8023da8SJanne Huttunen uint64_t unused2:2; /* 6..7 */
438f8023da8SJanne Huttunen uint64_t pknd:6; /* 0..5 */
439f8023da8SJanne Huttunen #else
440f8023da8SJanne Huttunen uint64_t pknd:6; /* 0..5 */
441f8023da8SJanne Huttunen uint64_t unused2:2; /* 6..7 */
442f8023da8SJanne Huttunen uint64_t bpid:6; /* 8..13 */
443f8023da8SJanne Huttunen uint64_t unused1:18; /* 14..31 */
444f8023da8SJanne Huttunen uint64_t l2ptr:8; /* 32..39 */
445f8023da8SJanne Huttunen uint64_t l3ptr:8; /* 40..47 */
446f8023da8SJanne Huttunen uint64_t unused0:8; /* 48..55 */
447f8023da8SJanne Huttunen uint64_t l4ptr:8; /* 56..63 */
448f8023da8SJanne Huttunen #endif
449f8023da8SJanne Huttunen } cn68xx;
450f8023da8SJanne Huttunen };
451af866496SDavid Daney
452f8023da8SJanne Huttunen union cvmx_wqe_word0 {
453f8023da8SJanne Huttunen uint64_t u64;
454f8023da8SJanne Huttunen union cvmx_pip_wqe_word0 pip;
455f8023da8SJanne Huttunen };
456f8023da8SJanne Huttunen
457f8023da8SJanne Huttunen union cvmx_wqe_word1 {
458f8023da8SJanne Huttunen uint64_t u64;
459f8023da8SJanne Huttunen struct {
460f8023da8SJanne Huttunen #ifdef __BIG_ENDIAN_BITFIELD
461f8023da8SJanne Huttunen uint64_t len:16;
462f8023da8SJanne Huttunen uint64_t varies:14;
463f8023da8SJanne Huttunen /**
464f8023da8SJanne Huttunen * the type of the tag (ORDERED, ATOMIC, NULL)
465af866496SDavid Daney */
466f8023da8SJanne Huttunen uint64_t tag_type:2;
467f8023da8SJanne Huttunen uint64_t tag:32;
468f8023da8SJanne Huttunen #else
469f8023da8SJanne Huttunen uint64_t tag:32;
470f8023da8SJanne Huttunen uint64_t tag_type:2;
471f8023da8SJanne Huttunen uint64_t varies:14;
472f8023da8SJanne Huttunen uint64_t len:16;
473f8023da8SJanne Huttunen #endif
474f8023da8SJanne Huttunen };
475f8023da8SJanne Huttunen struct {
476f8023da8SJanne Huttunen #ifdef __BIG_ENDIAN_BITFIELD
477f8023da8SJanne Huttunen uint64_t len:16;
478f8023da8SJanne Huttunen uint64_t zero_0:1;
479f8023da8SJanne Huttunen /**
480f8023da8SJanne Huttunen * HW sets this to what it thought the priority of
481f8023da8SJanne Huttunen * the input packet was
482f8023da8SJanne Huttunen */
483f8023da8SJanne Huttunen uint64_t qos:3;
484af866496SDavid Daney
485f8023da8SJanne Huttunen uint64_t zero_1:1;
486f8023da8SJanne Huttunen /**
487f8023da8SJanne Huttunen * the group that the work queue entry will be scheduled to
488f8023da8SJanne Huttunen */
489f8023da8SJanne Huttunen uint64_t grp:6;
490f8023da8SJanne Huttunen uint64_t zero_2:3;
491f8023da8SJanne Huttunen uint64_t tag_type:2;
492f8023da8SJanne Huttunen uint64_t tag:32;
493f8023da8SJanne Huttunen #else
494f8023da8SJanne Huttunen uint64_t tag:32;
495f8023da8SJanne Huttunen uint64_t tag_type:2;
496f8023da8SJanne Huttunen uint64_t zero_2:3;
497f8023da8SJanne Huttunen uint64_t grp:6;
498f8023da8SJanne Huttunen uint64_t zero_1:1;
499f8023da8SJanne Huttunen uint64_t qos:3;
500f8023da8SJanne Huttunen uint64_t zero_0:1;
501f8023da8SJanne Huttunen uint64_t len:16;
502f8023da8SJanne Huttunen #endif
503f8023da8SJanne Huttunen } cn68xx;
504f8023da8SJanne Huttunen struct {
50511db04c8SPaul Martin #ifdef __BIG_ENDIAN_BITFIELD
506af866496SDavid Daney /**
507af866496SDavid Daney * HW sets to the total number of bytes in the packet
508af866496SDavid Daney */
509af866496SDavid Daney uint64_t len:16;
510af866496SDavid Daney /**
511af866496SDavid Daney * HW sets this to input physical port
512af866496SDavid Daney */
513af866496SDavid Daney uint64_t ipprt:6;
514af866496SDavid Daney
515af866496SDavid Daney /**
516f8023da8SJanne Huttunen * HW sets this to what it thought the priority of
517f8023da8SJanne Huttunen * the input packet was
518af866496SDavid Daney */
519af866496SDavid Daney uint64_t qos:3;
520af866496SDavid Daney
521af866496SDavid Daney /**
522af866496SDavid Daney * the group that the work queue entry will be scheduled to
523af866496SDavid Daney */
524af866496SDavid Daney uint64_t grp:4;
525af866496SDavid Daney /**
526af866496SDavid Daney * the type of the tag (ORDERED, ATOMIC, NULL)
527af866496SDavid Daney */
528af866496SDavid Daney uint64_t tag_type:3;
529af866496SDavid Daney /**
530af866496SDavid Daney * the synchronization/ordering tag
531af866496SDavid Daney */
532af866496SDavid Daney uint64_t tag:32;
53311db04c8SPaul Martin #else
53411db04c8SPaul Martin uint64_t tag:32;
53511db04c8SPaul Martin uint64_t tag_type:2;
53611db04c8SPaul Martin uint64_t zero_2:1;
53711db04c8SPaul Martin uint64_t grp:4;
53811db04c8SPaul Martin uint64_t qos:3;
53911db04c8SPaul Martin uint64_t ipprt:6;
54011db04c8SPaul Martin uint64_t len:16;
54111db04c8SPaul Martin #endif
542f8023da8SJanne Huttunen } cn38xx;
543f8023da8SJanne Huttunen };
544f8023da8SJanne Huttunen
545f8023da8SJanne Huttunen /**
546f8023da8SJanne Huttunen * Work queue entry format
547f8023da8SJanne Huttunen *
548f8023da8SJanne Huttunen * must be 8-byte aligned
549f8023da8SJanne Huttunen */
550*f9546de4SChris Packham struct cvmx_wqe {
551f8023da8SJanne Huttunen
552f8023da8SJanne Huttunen /*****************************************************************
553f8023da8SJanne Huttunen * WORD 0
554f8023da8SJanne Huttunen * HW WRITE: the following 64 bits are filled by HW when a packet arrives
555f8023da8SJanne Huttunen */
556f8023da8SJanne Huttunen union cvmx_wqe_word0 word0;
557f8023da8SJanne Huttunen
558f8023da8SJanne Huttunen /*****************************************************************
559f8023da8SJanne Huttunen * WORD 1
560f8023da8SJanne Huttunen * HW WRITE: the following 64 bits are filled by HW when a packet arrives
561f8023da8SJanne Huttunen */
562f8023da8SJanne Huttunen union cvmx_wqe_word1 word1;
563af866496SDavid Daney
564af866496SDavid Daney /**
565af866496SDavid Daney * WORD 2 HW WRITE: the following 64-bits are filled in by
566af866496SDavid Daney * hardware when a packet arrives This indicates a variety of
567af866496SDavid Daney * status and error conditions.
568af866496SDavid Daney */
569af866496SDavid Daney cvmx_pip_wqe_word2 word2;
570af866496SDavid Daney
571af866496SDavid Daney /**
572af866496SDavid Daney * Pointer to the first segment of the packet.
573af866496SDavid Daney */
574af866496SDavid Daney union cvmx_buf_ptr packet_ptr;
575af866496SDavid Daney
576af866496SDavid Daney /**
577af866496SDavid Daney * HW WRITE: octeon will fill in a programmable amount from the
578af866496SDavid Daney * packet, up to (at most, but perhaps less) the amount
579af866496SDavid Daney * needed to fill the work queue entry to 128 bytes
580af866496SDavid Daney *
581af866496SDavid Daney * If the packet is recognized to be IP, the hardware starts
582af866496SDavid Daney * (except that the IPv4 header is padded for appropriate
583af866496SDavid Daney * alignment) writing here where the IP header starts. If the
584af866496SDavid Daney * packet is not recognized to be IP, the hardware starts
585af866496SDavid Daney * writing the beginning of the packet here.
586af866496SDavid Daney */
587af866496SDavid Daney uint8_t packet_data[96];
588af866496SDavid Daney
589af866496SDavid Daney /**
590af866496SDavid Daney * If desired, SW can make the work Q entry any length. For the
591af866496SDavid Daney * purposes of discussion here, Assume 128B always, as this is all that
592af866496SDavid Daney * the hardware deals with.
593af866496SDavid Daney *
594af866496SDavid Daney */
595af866496SDavid Daney
596*f9546de4SChris Packham } CVMX_CACHE_LINE_ALIGNED;
597af866496SDavid Daney
cvmx_wqe_get_port(struct cvmx_wqe * work)598*f9546de4SChris Packham static inline int cvmx_wqe_get_port(struct cvmx_wqe *work)
599f8023da8SJanne Huttunen {
600f8023da8SJanne Huttunen int port;
601f8023da8SJanne Huttunen
602f8023da8SJanne Huttunen if (octeon_has_feature(OCTEON_FEATURE_CN68XX_WQE))
603f8023da8SJanne Huttunen port = work->word2.s_cn68xx.port;
604f8023da8SJanne Huttunen else
605f8023da8SJanne Huttunen port = work->word1.cn38xx.ipprt;
606f8023da8SJanne Huttunen
607f8023da8SJanne Huttunen return port;
608f8023da8SJanne Huttunen }
609f8023da8SJanne Huttunen
cvmx_wqe_set_port(struct cvmx_wqe * work,int port)610*f9546de4SChris Packham static inline void cvmx_wqe_set_port(struct cvmx_wqe *work, int port)
611f8023da8SJanne Huttunen {
612f8023da8SJanne Huttunen if (octeon_has_feature(OCTEON_FEATURE_CN68XX_WQE))
613f8023da8SJanne Huttunen work->word2.s_cn68xx.port = port;
614f8023da8SJanne Huttunen else
615f8023da8SJanne Huttunen work->word1.cn38xx.ipprt = port;
616f8023da8SJanne Huttunen }
617f8023da8SJanne Huttunen
cvmx_wqe_get_grp(struct cvmx_wqe * work)618*f9546de4SChris Packham static inline int cvmx_wqe_get_grp(struct cvmx_wqe *work)
619f8023da8SJanne Huttunen {
620f8023da8SJanne Huttunen int grp;
621f8023da8SJanne Huttunen
622f8023da8SJanne Huttunen if (octeon_has_feature(OCTEON_FEATURE_CN68XX_WQE))
623f8023da8SJanne Huttunen grp = work->word1.cn68xx.grp;
624f8023da8SJanne Huttunen else
625f8023da8SJanne Huttunen grp = work->word1.cn38xx.grp;
626f8023da8SJanne Huttunen
627f8023da8SJanne Huttunen return grp;
628f8023da8SJanne Huttunen }
629f8023da8SJanne Huttunen
cvmx_wqe_set_grp(struct cvmx_wqe * work,int grp)630*f9546de4SChris Packham static inline void cvmx_wqe_set_grp(struct cvmx_wqe *work, int grp)
631f8023da8SJanne Huttunen {
632f8023da8SJanne Huttunen if (octeon_has_feature(OCTEON_FEATURE_CN68XX_WQE))
633f8023da8SJanne Huttunen work->word1.cn68xx.grp = grp;
634f8023da8SJanne Huttunen else
635f8023da8SJanne Huttunen work->word1.cn38xx.grp = grp;
636f8023da8SJanne Huttunen }
637f8023da8SJanne Huttunen
cvmx_wqe_get_qos(struct cvmx_wqe * work)638*f9546de4SChris Packham static inline int cvmx_wqe_get_qos(struct cvmx_wqe *work)
639f8023da8SJanne Huttunen {
640f8023da8SJanne Huttunen int qos;
641f8023da8SJanne Huttunen
642f8023da8SJanne Huttunen if (octeon_has_feature(OCTEON_FEATURE_CN68XX_WQE))
643f8023da8SJanne Huttunen qos = work->word1.cn68xx.qos;
644f8023da8SJanne Huttunen else
645f8023da8SJanne Huttunen qos = work->word1.cn38xx.qos;
646f8023da8SJanne Huttunen
647f8023da8SJanne Huttunen return qos;
648f8023da8SJanne Huttunen }
649f8023da8SJanne Huttunen
cvmx_wqe_set_qos(struct cvmx_wqe * work,int qos)650*f9546de4SChris Packham static inline void cvmx_wqe_set_qos(struct cvmx_wqe *work, int qos)
651f8023da8SJanne Huttunen {
652f8023da8SJanne Huttunen if (octeon_has_feature(OCTEON_FEATURE_CN68XX_WQE))
653f8023da8SJanne Huttunen work->word1.cn68xx.qos = qos;
654f8023da8SJanne Huttunen else
655f8023da8SJanne Huttunen work->word1.cn38xx.qos = qos;
656f8023da8SJanne Huttunen }
657f8023da8SJanne Huttunen
658af866496SDavid Daney #endif /* __CVMX_WQE_H__ */
659