diff options
Diffstat (limited to 'drivers/net/gianfar.h')
-rw-r--r-- | drivers/net/gianfar.h | 44 |
1 files changed, 21 insertions, 23 deletions
diff --git a/drivers/net/gianfar.h b/drivers/net/gianfar.h index 68984eb88ae0..440e69d8beff 100644 --- a/drivers/net/gianfar.h +++ b/drivers/net/gianfar.h | |||
@@ -9,7 +9,7 @@ | |||
9 | * Maintainer: Kumar Gala | 9 | * Maintainer: Kumar Gala |
10 | * Modifier: Sandeep Gopalpet <sandeep.kumar@freescale.com> | 10 | * Modifier: Sandeep Gopalpet <sandeep.kumar@freescale.com> |
11 | * | 11 | * |
12 | * Copyright 2002-2009 Freescale Semiconductor, Inc. | 12 | * Copyright 2002-2009, 2011 Freescale Semiconductor, Inc. |
13 | * | 13 | * |
14 | * This program is free software; you can redistribute it and/or modify it | 14 | * This program is free software; you can redistribute it and/or modify it |
15 | * under the terms of the GNU General Public License as published by the | 15 | * under the terms of the GNU General Public License as published by the |
@@ -274,7 +274,7 @@ extern const char gfar_driver_version[]; | |||
274 | #define RCTRL_PROM 0x00000008 | 274 | #define RCTRL_PROM 0x00000008 |
275 | #define RCTRL_EMEN 0x00000002 | 275 | #define RCTRL_EMEN 0x00000002 |
276 | #define RCTRL_REQ_PARSER (RCTRL_VLEX | RCTRL_IPCSEN | \ | 276 | #define RCTRL_REQ_PARSER (RCTRL_VLEX | RCTRL_IPCSEN | \ |
277 | RCTRL_TUCSEN) | 277 | RCTRL_TUCSEN | RCTRL_FILREN) |
278 | #define RCTRL_CHECKSUMMING (RCTRL_IPCSEN | RCTRL_TUCSEN | \ | 278 | #define RCTRL_CHECKSUMMING (RCTRL_IPCSEN | RCTRL_TUCSEN | \ |
279 | RCTRL_PRSDEP_INIT) | 279 | RCTRL_PRSDEP_INIT) |
280 | #define RCTRL_EXTHASH (RCTRL_GHTX) | 280 | #define RCTRL_EXTHASH (RCTRL_GHTX) |
@@ -382,23 +382,6 @@ extern const char gfar_driver_version[]; | |||
382 | #define BD_LFLAG(flags) ((flags) << 16) | 382 | #define BD_LFLAG(flags) ((flags) << 16) |
383 | #define BD_LENGTH_MASK 0x0000ffff | 383 | #define BD_LENGTH_MASK 0x0000ffff |
384 | 384 | ||
385 | #define CLASS_CODE_UNRECOG 0x00 | ||
386 | #define CLASS_CODE_DUMMY1 0x01 | ||
387 | #define CLASS_CODE_ETHERTYPE1 0x02 | ||
388 | #define CLASS_CODE_ETHERTYPE2 0x03 | ||
389 | #define CLASS_CODE_USER_PROG1 0x04 | ||
390 | #define CLASS_CODE_USER_PROG2 0x05 | ||
391 | #define CLASS_CODE_USER_PROG3 0x06 | ||
392 | #define CLASS_CODE_USER_PROG4 0x07 | ||
393 | #define CLASS_CODE_TCP_IPV4 0x08 | ||
394 | #define CLASS_CODE_UDP_IPV4 0x09 | ||
395 | #define CLASS_CODE_AH_ESP_IPV4 0x0a | ||
396 | #define CLASS_CODE_SCTP_IPV4 0x0b | ||
397 | #define CLASS_CODE_TCP_IPV6 0x0c | ||
398 | #define CLASS_CODE_UDP_IPV6 0x0d | ||
399 | #define CLASS_CODE_AH_ESP_IPV6 0x0e | ||
400 | #define CLASS_CODE_SCTP_IPV6 0x0f | ||
401 | |||
402 | #define FPR_FILER_MASK 0xFFFFFFFF | 385 | #define FPR_FILER_MASK 0xFFFFFFFF |
403 | #define MAX_FILER_IDX 0xFF | 386 | #define MAX_FILER_IDX 0xFF |
404 | 387 | ||
@@ -907,12 +890,21 @@ enum { | |||
907 | MQ_MG_MODE | 890 | MQ_MG_MODE |
908 | }; | 891 | }; |
909 | 892 | ||
893 | /* | ||
894 | * Per TX queue stats | ||
895 | */ | ||
896 | struct tx_q_stats { | ||
897 | unsigned long tx_packets; | ||
898 | unsigned long tx_bytes; | ||
899 | }; | ||
900 | |||
910 | /** | 901 | /** |
911 | * struct gfar_priv_tx_q - per tx queue structure | 902 | * struct gfar_priv_tx_q - per tx queue structure |
912 | * @txlock: per queue tx spin lock | 903 | * @txlock: per queue tx spin lock |
913 | * @tx_skbuff:skb pointers | 904 | * @tx_skbuff:skb pointers |
914 | * @skb_curtx: to be used skb pointer | 905 | * @skb_curtx: to be used skb pointer |
915 | * @skb_dirtytx:the last used skb pointer | 906 | * @skb_dirtytx:the last used skb pointer |
907 | * @stats: bytes/packets stats | ||
916 | * @qindex: index of this queue | 908 | * @qindex: index of this queue |
917 | * @dev: back pointer to the dev structure | 909 | * @dev: back pointer to the dev structure |
918 | * @grp: back pointer to the group to which this queue belongs | 910 | * @grp: back pointer to the group to which this queue belongs |
@@ -934,6 +926,7 @@ struct gfar_priv_tx_q { | |||
934 | struct txbd8 *tx_bd_base; | 926 | struct txbd8 *tx_bd_base; |
935 | struct txbd8 *cur_tx; | 927 | struct txbd8 *cur_tx; |
936 | struct txbd8 *dirty_tx; | 928 | struct txbd8 *dirty_tx; |
929 | struct tx_q_stats stats; | ||
937 | struct net_device *dev; | 930 | struct net_device *dev; |
938 | struct gfar_priv_grp *grp; | 931 | struct gfar_priv_grp *grp; |
939 | u16 skb_curtx; | 932 | u16 skb_curtx; |
@@ -1029,10 +1022,11 @@ enum gfar_errata { | |||
1029 | GFAR_ERRATA_74 = 0x01, | 1022 | GFAR_ERRATA_74 = 0x01, |
1030 | GFAR_ERRATA_76 = 0x02, | 1023 | GFAR_ERRATA_76 = 0x02, |
1031 | GFAR_ERRATA_A002 = 0x04, | 1024 | GFAR_ERRATA_A002 = 0x04, |
1025 | GFAR_ERRATA_12 = 0x08, /* a.k.a errata eTSEC49 */ | ||
1032 | }; | 1026 | }; |
1033 | 1027 | ||
1034 | /* Struct stolen almost completely (and shamelessly) from the FCC enet source | 1028 | /* Struct stolen almost completely (and shamelessly) from the FCC enet source |
1035 | * (Ok, that's not so true anymore, but there is a family resemblence) | 1029 | * (Ok, that's not so true anymore, but there is a family resemblance) |
1036 | * The GFAR buffer descriptors track the ring buffers. The rx_bd_base | 1030 | * The GFAR buffer descriptors track the ring buffers. The rx_bd_base |
1037 | * and tx_bd_base always point to the currently available buffer. | 1031 | * and tx_bd_base always point to the currently available buffer. |
1038 | * The dirty_tx tracks the current buffer that is being sent by the | 1032 | * The dirty_tx tracks the current buffer that is being sent by the |
@@ -1089,7 +1083,7 @@ struct gfar_private { | |||
1089 | struct device_node *phy_node; | 1083 | struct device_node *phy_node; |
1090 | struct device_node *tbi_node; | 1084 | struct device_node *tbi_node; |
1091 | u32 device_flags; | 1085 | u32 device_flags; |
1092 | unsigned char rx_csum_enable:1, | 1086 | unsigned char |
1093 | extended_hash:1, | 1087 | extended_hash:1, |
1094 | bd_stash_en:1, | 1088 | bd_stash_en:1, |
1095 | rx_filer_enable:1, | 1089 | rx_filer_enable:1, |
@@ -1113,10 +1107,12 @@ struct gfar_private { | |||
1113 | /* HW time stamping enabled flag */ | 1107 | /* HW time stamping enabled flag */ |
1114 | int hwts_rx_en; | 1108 | int hwts_rx_en; |
1115 | int hwts_tx_en; | 1109 | int hwts_tx_en; |
1110 | |||
1111 | /*Filer table*/ | ||
1112 | unsigned int ftp_rqfpr[MAX_FILER_IDX + 1]; | ||
1113 | unsigned int ftp_rqfcr[MAX_FILER_IDX + 1]; | ||
1116 | }; | 1114 | }; |
1117 | 1115 | ||
1118 | extern unsigned int ftp_rqfpr[MAX_FILER_IDX + 1]; | ||
1119 | extern unsigned int ftp_rqfcr[MAX_FILER_IDX + 1]; | ||
1120 | 1116 | ||
1121 | static inline int gfar_has_errata(struct gfar_private *priv, | 1117 | static inline int gfar_has_errata(struct gfar_private *priv, |
1122 | enum gfar_errata err) | 1118 | enum gfar_errata err) |
@@ -1159,6 +1155,8 @@ extern void gfar_phy_test(struct mii_bus *bus, struct phy_device *phydev, | |||
1159 | extern void gfar_configure_coalescing(struct gfar_private *priv, | 1155 | extern void gfar_configure_coalescing(struct gfar_private *priv, |
1160 | unsigned long tx_mask, unsigned long rx_mask); | 1156 | unsigned long tx_mask, unsigned long rx_mask); |
1161 | void gfar_init_sysfs(struct net_device *dev); | 1157 | void gfar_init_sysfs(struct net_device *dev); |
1158 | int gfar_set_features(struct net_device *dev, u32 features); | ||
1159 | extern void gfar_check_rx_parser_mode(struct gfar_private *priv); | ||
1162 | 1160 | ||
1163 | extern const struct ethtool_ops gfar_ethtool_ops; | 1161 | extern const struct ethtool_ops gfar_ethtool_ops; |
1164 | 1162 | ||