/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/b43/ |
D | xmit.c | 637 const struct b43_rxhdr_fw4 *rxhdr = _rxhdr; in b43_rx() local 648 phystat0 = le16_to_cpu(rxhdr->phy_status0); in b43_rx() 649 phystat3 = le16_to_cpu(rxhdr->phy_status3); in b43_rx() 652 macstat = le32_to_cpu(rxhdr->format_598.mac_status); in b43_rx() 653 mactime = le16_to_cpu(rxhdr->format_598.mac_time); in b43_rx() 654 chanstat = le16_to_cpu(rxhdr->format_598.channel); in b43_rx() 658 macstat = le32_to_cpu(rxhdr->format_351.mac_status); in b43_rx() 659 mactime = le16_to_cpu(rxhdr->format_351.mac_time); in b43_rx() 660 chanstat = le16_to_cpu(rxhdr->format_351.channel); in b43_rx() 723 max(rxhdr->phy_ht_power0, rxhdr->phy_ht_power1), in b43_rx() [all …]
|
D | pio.c | 605 struct b43_rxhdr_fw4 *rxhdr = in pio_rx_frame() local 607 size_t rxhdr_size = sizeof(*rxhdr); in pio_rx_frame() 609 BUILD_BUG_ON(sizeof(wl->pio_scratchspace) < sizeof(*rxhdr)); in pio_rx_frame() 613 rxhdr_size -= sizeof(rxhdr->format_598) - in pio_rx_frame() 614 sizeof(rxhdr->format_351); in pio_rx_frame() 619 memset(rxhdr, 0, rxhdr_size); in pio_rx_frame() 657 b43_block_read(dev, rxhdr, rxhdr_size, in pio_rx_frame() 661 b43_block_read(dev, rxhdr, rxhdr_size, in pio_rx_frame() 666 len = le16_to_cpu(rxhdr->frame_len); in pio_rx_frame() 678 macstat = le32_to_cpu(rxhdr->format_598.mac_status); in pio_rx_frame() [all …]
|
D | dma.c | 579 struct b43_rxhdr_fw4 *rxhdr; in b43_poison_rx_buffer() local 584 rxhdr = (struct b43_rxhdr_fw4 *)(skb->data); in b43_poison_rx_buffer() 585 rxhdr->frame_len = 0; in b43_poison_rx_buffer() 1587 struct b43_rxhdr_fw4 *rxhdr; in dma_rx() local 1598 rxhdr = (struct b43_rxhdr_fw4 *)skb->data; in dma_rx() 1599 len = le16_to_cpu(rxhdr->frame_len); in dma_rx() 1606 len = le16_to_cpu(rxhdr->frame_len); in dma_rx() 1658 b43_rx(ring->dev, skb, rxhdr); in dma_rx()
|
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/b43legacy/ |
D | xmit.c | 425 const struct b43legacy_rxhdr_fw3 *rxhdr = _rxhdr; in b43legacy_rx() local 439 phystat0 = le16_to_cpu(rxhdr->phy_status0); in b43legacy_rx() 440 phystat3 = le16_to_cpu(rxhdr->phy_status3); in b43legacy_rx() 441 jssi = rxhdr->jssi; in b43legacy_rx() 442 macstat = le16_to_cpu(rxhdr->mac_status); in b43legacy_rx() 443 mactime = le16_to_cpu(rxhdr->mac_time); in b43legacy_rx() 444 chanstat = le16_to_cpu(rxhdr->channel); in b43legacy_rx()
|
D | dma.c | 445 struct b43legacy_rxhdr_fw3 *rxhdr; in setup_rx_descbuffer() local 479 rxhdr = (struct b43legacy_rxhdr_fw3 *)(skb->data); in setup_rx_descbuffer() 480 rxhdr->frame_len = 0; in setup_rx_descbuffer() 1246 struct b43legacy_rxhdr_fw3 *rxhdr; in dma_rx() local 1277 rxhdr = (struct b43legacy_rxhdr_fw3 *)skb->data; in dma_rx() 1278 len = le16_to_cpu(rxhdr->frame_len); in dma_rx() 1285 len = le16_to_cpu(rxhdr->frame_len); in dma_rx() 1334 b43legacy_rx(ring->dev, skb, rxhdr); in dma_rx()
|
D | pio.c | 556 struct b43legacy_rxhdr_fw3 *rxhdr; in b43legacy_pio_rx() local 599 rxhdr = (struct b43legacy_rxhdr_fw3 *)preamble; in b43legacy_pio_rx() 600 macstat = le16_to_cpu(rxhdr->mac_status); in b43legacy_pio_rx() 631 b43legacy_rx(queue->dev, skb, rxhdr); in b43legacy_pio_rx()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/davicom/ |
D | dm9000.c | 1094 struct dm9000_rxhdr rxhdr; in dm9000_rx() local 1121 (db->inblk)(db->io_data, &rxhdr, sizeof(rxhdr)); in dm9000_rx() 1123 RxLen = le16_to_cpu(rxhdr.RxLen); in dm9000_rx() 1127 rxhdr.RxStatus, RxLen); in dm9000_rx() 1141 if (rxhdr.RxStatus & (RSR_FOE | RSR_CE | RSR_AE | in dm9000_rx() 1145 if (rxhdr.RxStatus & RSR_FOE) { in dm9000_rx() 1150 if (rxhdr.RxStatus & RSR_CE) { in dm9000_rx() 1155 if (rxhdr.RxStatus & RSR_RF) { in dm9000_rx()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/amd/ |
D | am79c961a.h | 136 unsigned long rxhdr; member
|
D | am79c961a.c | 268 priv->rxhdr = hdr_addr; in am79c961_init_for_open() 292 write_rreg (dev->base_addr, BASERXL, priv->rxhdr); in am79c961_init_for_open() 490 hdraddr = priv->rxhdr + (priv->rxtail << 3); in am79c961_rx()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/allwinner/ |
D | sun4i-emac.c | 504 u32 rxhdr, rxstatus, rxcount, rxlen; in emac_rx() local 579 rxhdr = readl(db->membase + EMAC_RX_IO_DATA_REG); in emac_rx() 582 dev_dbg(db->dev, "rxhdr: %x\n", *((int *)(&rxhdr))); in emac_rx() 584 rxlen = EMAC_RX_IO_DATA_LEN(rxhdr); in emac_rx() 585 rxstatus = EMAC_RX_IO_DATA_STATUS(rxhdr); in emac_rx()
|
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
D | sdio.c | 457 u8 *rxhdr; /* Header of current rx frame (in hdrbuf) */ member 1880 bus->rxhdr, BRCMF_FIRSTREAD); in brcmf_sdio_readframes() 1892 bus->rxhdr, SDPCM_HDRLEN, in brcmf_sdio_readframes() 1895 if (brcmf_sdio_hdparse(bus, bus->rxhdr, rd, in brcmf_sdio_readframes() 1905 brcmf_sdio_read_control(bus, bus->rxhdr, in brcmf_sdio_readframes() 1953 memcpy(pkt->data, bus->rxhdr, head_read); in brcmf_sdio_readframes() 1956 memcpy(bus->rxhdr, pkt->data, SDPCM_HDRLEN); in brcmf_sdio_readframes() 1959 if (brcmf_sdio_hdparse(bus, bus->rxhdr, &rd_new, in brcmf_sdio_readframes() 1986 bus->rxhdr, SDPCM_HDRLEN, in brcmf_sdio_readframes() 2007 if (SDPCM_GLOMDESC(&bus->rxhdr[SDPCM_HWHDR_LEN])) { in brcmf_sdio_readframes() [all …]
|
D | core.c | 56 struct d11rxhdr_le rxhdr; member 443 RxStatus1 = le16_to_cpu(wlc_rxhdr->rxhdr.RxStatus1); in brcmf_netif_mon_rx()
|