xref: /openbmc/linux/drivers/net/ethernet/google/gve/gve_desc.h (revision c900529f3d9161bfde5cca0754f83b4d3c3e0220)
1f5cedc84SCatherine Sullivan /* SPDX-License-Identifier: (GPL-2.0 OR MIT)
2f5cedc84SCatherine Sullivan  * Google virtual Ethernet (gve) driver
3f5cedc84SCatherine Sullivan  *
4f5cedc84SCatherine Sullivan  * Copyright (C) 2015-2019 Google, Inc.
5f5cedc84SCatherine Sullivan  */
6f5cedc84SCatherine Sullivan 
7f5cedc84SCatherine Sullivan /* GVE Transmit Descriptor formats */
8f5cedc84SCatherine Sullivan 
9f5cedc84SCatherine Sullivan #ifndef _GVE_DESC_H_
10f5cedc84SCatherine Sullivan #define _GVE_DESC_H_
11f5cedc84SCatherine Sullivan 
12f5cedc84SCatherine Sullivan #include <linux/build_bug.h>
13f5cedc84SCatherine Sullivan 
14f5cedc84SCatherine Sullivan /* A note on seg_addrs
15f5cedc84SCatherine Sullivan  *
16f5cedc84SCatherine Sullivan  * Base addresses encoded in seg_addr are not assumed to be physical
17f5cedc84SCatherine Sullivan  * addresses. The ring format assumes these come from some linear address
18f5cedc84SCatherine Sullivan  * space. This could be physical memory, kernel virtual memory, user virtual
196f007c64SCatherine Sullivan  * memory.
206f007c64SCatherine Sullivan  * If raw dma addressing is not supported then gVNIC uses lists of registered
216f007c64SCatherine Sullivan  * pages. Each queue is assumed to be associated with a single such linear
226f007c64SCatherine Sullivan  * address space to ensure a consistent meaning for seg_addrs posted to its
236f007c64SCatherine Sullivan  * rings.
24f5cedc84SCatherine Sullivan  */
25f5cedc84SCatherine Sullivan 
26f5cedc84SCatherine Sullivan struct gve_tx_pkt_desc {
27f5cedc84SCatherine Sullivan 	u8	type_flags;  /* desc type is lower 4 bits, flags upper */
28f5cedc84SCatherine Sullivan 	u8	l4_csum_offset;  /* relative offset of L4 csum word */
29f5cedc84SCatherine Sullivan 	u8	l4_hdr_offset;  /* Offset of start of L4 headers in packet */
30f5cedc84SCatherine Sullivan 	u8	desc_cnt;  /* Total descriptors for this packet */
31f5cedc84SCatherine Sullivan 	__be16	len;  /* Total length of this packet (in bytes) */
32f5cedc84SCatherine Sullivan 	__be16	seg_len;  /* Length of this descriptor's segment */
33f5cedc84SCatherine Sullivan 	__be64	seg_addr;  /* Base address (see note) of this segment */
34f5cedc84SCatherine Sullivan } __packed;
35f5cedc84SCatherine Sullivan 
36497dbb2bSWillem de Bruijn struct gve_tx_mtd_desc {
37497dbb2bSWillem de Bruijn 	u8      type_flags;     /* type is lower 4 bits, subtype upper  */
38497dbb2bSWillem de Bruijn 	u8      path_state;     /* state is lower 4 bits, hash type upper */
39497dbb2bSWillem de Bruijn 	__be16  reserved0;
40497dbb2bSWillem de Bruijn 	__be32  path_hash;
41497dbb2bSWillem de Bruijn 	__be64  reserved1;
42497dbb2bSWillem de Bruijn } __packed;
43497dbb2bSWillem de Bruijn 
44f5cedc84SCatherine Sullivan struct gve_tx_seg_desc {
45f5cedc84SCatherine Sullivan 	u8	type_flags;	/* type is lower 4 bits, flags upper	*/
46f5cedc84SCatherine Sullivan 	u8	l3_offset;	/* TSO: 2 byte units to start of IPH	*/
47f5cedc84SCatherine Sullivan 	__be16	reserved;
48f5cedc84SCatherine Sullivan 	__be16	mss;		/* TSO MSS				*/
49f5cedc84SCatherine Sullivan 	__be16	seg_len;
50f5cedc84SCatherine Sullivan 	__be64	seg_addr;
51f5cedc84SCatherine Sullivan } __packed;
52f5cedc84SCatherine Sullivan 
53f5cedc84SCatherine Sullivan /* GVE Transmit Descriptor Types */
54f5cedc84SCatherine Sullivan #define	GVE_TXD_STD		(0x0 << 4) /* Std with Host Address	*/
55f5cedc84SCatherine Sullivan #define	GVE_TXD_TSO		(0x1 << 4) /* TSO with Host Address	*/
56f5cedc84SCatherine Sullivan #define	GVE_TXD_SEG		(0x2 << 4) /* Seg with Host Address	*/
57497dbb2bSWillem de Bruijn #define	GVE_TXD_MTD		(0x3 << 4) /* Metadata			*/
58f5cedc84SCatherine Sullivan 
59f5cedc84SCatherine Sullivan /* GVE Transmit Descriptor Flags for Std Pkts */
60f5cedc84SCatherine Sullivan #define	GVE_TXF_L4CSUM	BIT(0)	/* Need csum offload */
61f5cedc84SCatherine Sullivan #define	GVE_TXF_TSTAMP	BIT(2)	/* Timestamp required */
62f5cedc84SCatherine Sullivan 
63f5cedc84SCatherine Sullivan /* GVE Transmit Descriptor Flags for TSO Segs */
64f5cedc84SCatherine Sullivan #define	GVE_TXSF_IPV6	BIT(1)	/* IPv6 TSO */
65f5cedc84SCatherine Sullivan 
66497dbb2bSWillem de Bruijn /* GVE Transmit Descriptor Options for MTD Segs */
67497dbb2bSWillem de Bruijn #define GVE_MTD_SUBTYPE_PATH		0
68497dbb2bSWillem de Bruijn 
69497dbb2bSWillem de Bruijn #define GVE_MTD_PATH_STATE_DEFAULT	0
70497dbb2bSWillem de Bruijn #define GVE_MTD_PATH_STATE_TIMEOUT	1
71497dbb2bSWillem de Bruijn #define GVE_MTD_PATH_STATE_CONGESTION	2
72497dbb2bSWillem de Bruijn #define GVE_MTD_PATH_STATE_RETRANSMIT	3
73497dbb2bSWillem de Bruijn 
74497dbb2bSWillem de Bruijn #define GVE_MTD_PATH_HASH_NONE         (0x0 << 4)
75497dbb2bSWillem de Bruijn #define GVE_MTD_PATH_HASH_L4           (0x1 << 4)
76497dbb2bSWillem de Bruijn 
77f5cedc84SCatherine Sullivan /* GVE Receive Packet Descriptor */
78f5cedc84SCatherine Sullivan /* The start of an ethernet packet comes 2 bytes into the rx buffer.
79f5cedc84SCatherine Sullivan  * gVNIC adds this padding so that both the DMA and the L3/4 protocol header
80f5cedc84SCatherine Sullivan  * access is aligned.
81f5cedc84SCatherine Sullivan  */
82f5cedc84SCatherine Sullivan #define GVE_RX_PAD 2
83f5cedc84SCatherine Sullivan 
84f5cedc84SCatherine Sullivan struct gve_rx_desc {
85f5cedc84SCatherine Sullivan 	u8	padding[48];
86f5cedc84SCatherine Sullivan 	__be32	rss_hash;  /* Receive-side scaling hash (Toeplitz for gVNIC) */
87f5cedc84SCatherine Sullivan 	__be16	mss;
88f5cedc84SCatherine Sullivan 	__be16	reserved;  /* Reserved to zero */
89f5cedc84SCatherine Sullivan 	u8	hdr_len;  /* Header length (L2-L4) including padding */
90f5cedc84SCatherine Sullivan 	u8	hdr_off;  /* 64-byte-scaled offset into RX_DATA entry */
91f5cedc84SCatherine Sullivan 	__sum16	csum;  /* 1's-complement partial checksum of L3+ bytes */
92f5cedc84SCatherine Sullivan 	__be16	len;  /* Length of the received packet */
93f5cedc84SCatherine Sullivan 	__be16	flags_seq;  /* Flags [15:3] and sequence number [2:0] (1-7) */
94f5cedc84SCatherine Sullivan } __packed;
95f5cedc84SCatherine Sullivan static_assert(sizeof(struct gve_rx_desc) == 64);
96f5cedc84SCatherine Sullivan 
97ede3fcf5SCatherine Sullivan /* If the device supports raw dma addressing then the addr in data slot is
98ede3fcf5SCatherine Sullivan  * the dma address of the buffer.
99ede3fcf5SCatherine Sullivan  * If the device only supports registered segments then the addr is a byte
100ede3fcf5SCatherine Sullivan  * offset into the registered segment (an ordered list of pages) where the
101ede3fcf5SCatherine Sullivan  * buffer is.
102f5cedc84SCatherine Sullivan  */
103ede3fcf5SCatherine Sullivan union gve_rx_data_slot {
104f5cedc84SCatherine Sullivan 	__be64 qpl_offset;
105ede3fcf5SCatherine Sullivan 	__be64 addr;
106f5cedc84SCatherine Sullivan };
107f5cedc84SCatherine Sullivan 
108*68af9000SJesper Dangaard Brouer /* GVE Receive Packet Descriptor Seq No */
109f5cedc84SCatherine Sullivan #define GVE_SEQNO(x) (be16_to_cpu(x) & 0x7)
110f5cedc84SCatherine Sullivan 
111*68af9000SJesper Dangaard Brouer /* GVE Receive Packet Descriptor Flags */
112f5cedc84SCatherine Sullivan #define GVE_RXFLG(x)	cpu_to_be16(1 << (3 + (x)))
113f5cedc84SCatherine Sullivan #define	GVE_RXF_FRAG		GVE_RXFLG(3)	/* IP Fragment			*/
114f5cedc84SCatherine Sullivan #define	GVE_RXF_IPV4		GVE_RXFLG(4)	/* IPv4				*/
115f5cedc84SCatherine Sullivan #define	GVE_RXF_IPV6		GVE_RXFLG(5)	/* IPv6				*/
116f5cedc84SCatherine Sullivan #define	GVE_RXF_TCP		GVE_RXFLG(6)	/* TCP Packet			*/
117f5cedc84SCatherine Sullivan #define	GVE_RXF_UDP		GVE_RXFLG(7)	/* UDP Packet			*/
118f5cedc84SCatherine Sullivan #define	GVE_RXF_ERR		GVE_RXFLG(8)	/* Packet Error Detected	*/
11937149e93SDavid Awogbemila #define	GVE_RXF_PKT_CONT	GVE_RXFLG(10)	/* Multi Fragment RX packet	*/
120f5cedc84SCatherine Sullivan 
121f5cedc84SCatherine Sullivan /* GVE IRQ */
122f5cedc84SCatherine Sullivan #define GVE_IRQ_ACK	BIT(31)
123f5cedc84SCatherine Sullivan #define GVE_IRQ_MASK	BIT(30)
124f5cedc84SCatherine Sullivan #define GVE_IRQ_EVENT	BIT(29)
125f5cedc84SCatherine Sullivan 
gve_needs_rss(__be16 flag)126f5cedc84SCatherine Sullivan static inline bool gve_needs_rss(__be16 flag)
127f5cedc84SCatherine Sullivan {
128f5cedc84SCatherine Sullivan 	if (flag & GVE_RXF_FRAG)
129f5cedc84SCatherine Sullivan 		return false;
130f5cedc84SCatherine Sullivan 	if (flag & (GVE_RXF_IPV4 | GVE_RXF_IPV6))
131f5cedc84SCatherine Sullivan 		return true;
132f5cedc84SCatherine Sullivan 	return false;
133f5cedc84SCatherine Sullivan }
134f5cedc84SCatherine Sullivan 
gve_next_seqno(u8 seq)135f5cedc84SCatherine Sullivan static inline u8 gve_next_seqno(u8 seq)
136f5cedc84SCatherine Sullivan {
137f5cedc84SCatherine Sullivan 	return (seq + 1) == 8 ? 1 : seq + 1;
138f5cedc84SCatherine Sullivan }
139f5cedc84SCatherine Sullivan #endif /* _GVE_DESC_H_ */
140