Lines Matching defs:rtl8169_private
639 struct rtl8169_private { struct
640 void __iomem *mmio_addr; /* memory map physical address */
641 struct pci_dev *pci_dev;
642 struct net_device *dev;
643 struct phy_device *phydev;
644 struct napi_struct napi;
645 enum mac_version mac_version;
646 enum rtl_dash_type dash_type;
647 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
648 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
649 u32 dirty_tx;
650 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
651 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
652 dma_addr_t TxPhyAddr;
653 dma_addr_t RxPhyAddr;
654 struct page *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
655 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
656 u16 cp_cmd;
657 u16 tx_lpi_timer;
658 u32 irq_mask;
659 int irq;
660 struct clk *clk;
662 struct {
686 typedef void (*rtl_generic_fct)(struct rtl8169_private *tp); argument