Lines Matching defs:rtl8169_private
621 struct rtl8169_private { struct
622 void __iomem *mmio_addr; /* memory map physical address */
623 struct pci_dev *pci_dev;
624 struct net_device *dev;
625 struct phy_device *phydev;
626 struct napi_struct napi;
627 enum mac_version mac_version;
628 enum rtl_dash_type dash_type;
629 u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
630 u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
631 u32 dirty_tx;
632 struct TxDesc *TxDescArray; /* 256-aligned Tx descriptor ring */
633 struct RxDesc *RxDescArray; /* 256-aligned Rx descriptor ring */
634 dma_addr_t TxPhyAddr;
635 dma_addr_t RxPhyAddr;
636 struct page *Rx_databuff[NUM_RX_DESC]; /* Rx data buffers */
637 struct ring_info tx_skb[NUM_TX_DESC]; /* Tx data buffers */
638 u16 cp_cmd;
639 u32 irq_mask;
640 int irq;
641 struct clk *clk;
643 struct {
669 typedef void (*rtl_generic_fct)(struct rtl8169_private *tp); argument