Searched refs:desc_hdr (Results 1 – 7 of 7) sorted by relevance
/kernel/linux/linux-5.10/include/linux/dma/ |
D | ti-cppi5.h | 198 static inline u32 cppi5_desc_get_type(struct cppi5_desc_hdr_t *desc_hdr) in cppi5_desc_get_type() argument 200 return (desc_hdr->pkt_info0 & CPPI5_INFO0_HDESC_TYPE_MASK) >> in cppi5_desc_get_type() 210 static inline u32 cppi5_desc_get_errflags(struct cppi5_desc_hdr_t *desc_hdr) in cppi5_desc_get_errflags() argument 212 return (desc_hdr->pkt_info1 & CPPI5_INFO1_DESC_PKTERROR_MASK) >> in cppi5_desc_get_errflags() 224 static inline void cppi5_desc_get_pktids(struct cppi5_desc_hdr_t *desc_hdr, in cppi5_desc_get_pktids() argument 227 *pkt_id = (desc_hdr->pkt_info1 & CPPI5_INFO1_DESC_PKTID_MASK) >> in cppi5_desc_get_pktids() 229 *flow_id = (desc_hdr->pkt_info1 & CPPI5_INFO1_DESC_FLOWID_MASK) >> in cppi5_desc_get_pktids() 239 static inline void cppi5_desc_set_pktids(struct cppi5_desc_hdr_t *desc_hdr, in cppi5_desc_set_pktids() argument 242 desc_hdr->pkt_info1 &= ~(CPPI5_INFO1_DESC_PKTID_MASK | in cppi5_desc_set_pktids() 244 desc_hdr->pkt_info1 |= (pkt_id << CPPI5_INFO1_DESC_PKTID_SHIFT) & in cppi5_desc_set_pktids() [all …]
|
/kernel/linux/linux-5.10/drivers/crypto/ |
D | talitos.h | 12 #define DESC_TYPE(desc_hdr) ((be32_to_cpu(desc_hdr) >> 3) & 0x1f) argument 13 #define PRIMARY_EU(desc_hdr) ((be32_to_cpu(desc_hdr) >> 28) & 0xf) argument 14 #define SECONDARY_EU(desc_hdr) ((be32_to_cpu(desc_hdr) >> 16) & 0xf) argument
|
D | talitos.c | 504 static void report_eu_error(struct device *dev, int ch, __be32 desc_hdr) in report_eu_error() argument 509 if (!desc_hdr) in report_eu_error() 510 desc_hdr = cpu_to_be32(in_be32(priv->chan[ch].reg + TALITOS_DESCBUF)); in report_eu_error() 512 switch (desc_hdr & DESC_HDR_SEL0_MASK) { in report_eu_error() 556 switch (desc_hdr & DESC_HDR_SEL1_MASK) { in report_eu_error()
|
/kernel/linux/linux-5.10/drivers/net/usb/ |
D | aqc111.c | 1080 u64 desc_hdr = 0; in aqc111_rx_fixup() local 1092 skb_trim(skb, skb->len - sizeof(desc_hdr)); in aqc111_rx_fixup() 1093 desc_hdr = le64_to_cpup((u64 *)skb_tail_pointer(skb)); in aqc111_rx_fixup() 1096 desc_offset = (desc_hdr & AQ_RX_DH_DESC_OFFSET_MASK) >> in aqc111_rx_fixup() 1098 pkt_count = desc_hdr & AQ_RX_DH_PKT_CNT_MASK; in aqc111_rx_fixup() 1099 start_of_descs = skb_len - ((pkt_count + 1) * sizeof(desc_hdr)); in aqc111_rx_fixup()
|
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath11k/ |
D | hal_desc.h | 1888 struct hal_desc_header desc_hdr; member 1896 struct hal_desc_header desc_hdr; member 1959 struct hal_desc_header desc_hdr; member
|
D | hal_rx.c | 706 ath11k_hal_reo_set_desc_hdr(&qdesc->desc_hdr, HAL_DESC_REO_OWNED, in ath11k_hal_reo_qdesc_setup() 766 ath11k_hal_reo_set_desc_hdr(&ext_desc->desc_hdr, HAL_DESC_REO_OWNED, in ath11k_hal_reo_qdesc_setup() 770 ath11k_hal_reo_set_desc_hdr(&ext_desc->desc_hdr, HAL_DESC_REO_OWNED, in ath11k_hal_reo_qdesc_setup() 774 ath11k_hal_reo_set_desc_hdr(&ext_desc->desc_hdr, HAL_DESC_REO_OWNED, in ath11k_hal_reo_qdesc_setup()
|
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath10k/ |
D | htt_tx.c | 563 struct htt_data_tx_desc *desc_hdr = NULL; in ath10k_htt_htc_tx_complete() local 572 desc_hdr = (struct htt_data_tx_desc *) in ath10k_htt_htc_tx_complete() 574 flags1 = __le16_to_cpu(desc_hdr->flags1); in ath10k_htt_htc_tx_complete() 585 __le16_to_cpu(desc_hdr->id), flags1); in ath10k_htt_htc_tx_complete() 591 tx_done.msdu_id = __le16_to_cpu(desc_hdr->id); in ath10k_htt_htc_tx_complete()
|