Lines Matching defs:gfar_private
1123 struct gfar_private { struct
1124 struct device *dev;
1125 struct net_device *ndev;
1126 enum gfar_errata errata;
1128 u16 uses_rxfcb;
1129 u16 padding;
1130 u32 device_flags;
1133 int hwts_rx_en;
1134 int hwts_tx_en;
1136 struct gfar_priv_tx_q *tx_queue[MAX_TX_QS];
1137 struct gfar_priv_rx_q *rx_queue[MAX_RX_QS];
1138 struct gfar_priv_grp gfargrp[MAXGROUPS];
1140 unsigned long state;
1142 unsigned short mode;
1143 unsigned short poll_mode;
1144 unsigned int num_tx_queues;
1145 unsigned int num_rx_queues;
1146 unsigned int num_grps;
1147 int tx_actual_en;
1150 struct gfar_extra_stats extra_stats;
1153 phy_interface_t interface;
1154 struct device_node *phy_node;
1155 struct device_node *tbi_node;
1156 struct phy_device *phydev;
1157 struct mii_bus *mii_bus;
1158 int oldspeed;
1159 int oldduplex;
1160 int oldlink;
1162 uint32_t msg_enable;
1164 struct work_struct reset_task;
1166 struct platform_device *ofdev;
1168 extended_hash:1,
1169 bd_stash_en:1,
1170 rx_filer_enable:1,
1172 prio_sched_en:1,
1174 pause_aneg_en:1,
1175 tx_pause_en:1,
1176 rx_pause_en:1;
1179 unsigned int total_tx_ring_size;
1180 unsigned int total_rx_ring_size;
1182 u32 rqueue;
1183 u32 tqueue;
1209 static inline int gfar_has_errata(struct gfar_private *priv, in gfar_has_errata() argument