mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
e6550b3ee1
Based on the normalized pattern: this program is free software you may redistribute it and/or modify it under the terms of the gnu general public license as published by the free software foundation version 2 of the license the software is provided as is without warranty of any kind express or implied including but not limited to the warranties of merchantability fitness for a particular purpose and noninfringement in no event shall the authors or copyright holders be liable for any claim damages or other liability whether in an action of contract tort or otherwise arising from out of or in connection with the software or the use or other dealings in the software extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
47 lines
1.2 KiB
C
47 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright 2008 Cisco Systems, Inc. All rights reserved.
|
|
* Copyright 2007 Nuova Systems, Inc. All rights reserved.
|
|
*/
|
|
#ifndef _RQ_ENET_DESC_H_
|
|
#define _RQ_ENET_DESC_H_
|
|
|
|
/* Ethernet receive queue descriptor: 16B */
|
|
struct rq_enet_desc {
|
|
__le64 address;
|
|
__le16 length_type;
|
|
u8 reserved[6];
|
|
};
|
|
|
|
enum rq_enet_type_types {
|
|
RQ_ENET_TYPE_ONLY_SOP = 0,
|
|
RQ_ENET_TYPE_NOT_SOP = 1,
|
|
RQ_ENET_TYPE_RESV2 = 2,
|
|
RQ_ENET_TYPE_RESV3 = 3,
|
|
};
|
|
|
|
#define RQ_ENET_ADDR_BITS 64
|
|
#define RQ_ENET_LEN_BITS 14
|
|
#define RQ_ENET_LEN_MASK ((1 << RQ_ENET_LEN_BITS) - 1)
|
|
#define RQ_ENET_TYPE_BITS 2
|
|
#define RQ_ENET_TYPE_MASK ((1 << RQ_ENET_TYPE_BITS) - 1)
|
|
|
|
static inline void rq_enet_desc_enc(struct rq_enet_desc *desc,
|
|
u64 address, u8 type, u16 length)
|
|
{
|
|
desc->address = cpu_to_le64(address);
|
|
desc->length_type = cpu_to_le16((length & RQ_ENET_LEN_MASK) |
|
|
((type & RQ_ENET_TYPE_MASK) << RQ_ENET_LEN_BITS));
|
|
}
|
|
|
|
static inline void rq_enet_desc_dec(struct rq_enet_desc *desc,
|
|
u64 *address, u8 *type, u16 *length)
|
|
{
|
|
*address = le64_to_cpu(desc->address);
|
|
*length = le16_to_cpu(desc->length_type) & RQ_ENET_LEN_MASK;
|
|
*type = (u8)((le16_to_cpu(desc->length_type) >> RQ_ENET_LEN_BITS) &
|
|
RQ_ENET_TYPE_MASK);
|
|
}
|
|
|
|
#endif /* _RQ_ENET_DESC_H_ */
|