aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tg3.h
diff options
context:
space:
mode:
authorMatt Carlson <mcarlson@broadcom.com>2010-07-11 05:31:44 -0400
committerDavid S. Miller <davem@davemloft.net>2010-07-11 20:07:42 -0400
commit6867c843813a801d5f568b6fb006695316714f1b (patch)
treeeedcd0db062551aff3afa253e8cd91f09457cb63 /drivers/net/tg3.h
parent2138c002173abe3e439e213e5cc03b385b20508c (diff)
tg3: Report driver version to firmware
This patch changes the code so that the driver version can be reported to the firmware in addition to the current use. Signed-off-by: Matt Carlson <mcarlson@broadcom.com> Reviewed-by: Michael Chan <mchan@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tg3.h')
-rw-r--r--drivers/net/tg3.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/tg3.h b/drivers/net/tg3.h
index b72ac52b33fd..be7ab91f4dda 100644
--- a/drivers/net/tg3.h
+++ b/drivers/net/tg3.h
@@ -2193,7 +2193,9 @@
2193#define APE_HOST_SEG_LEN_MAGIC 0x0000001c 2193#define APE_HOST_SEG_LEN_MAGIC 0x0000001c
2194#define TG3_APE_HOST_INIT_COUNT 0x4208 2194#define TG3_APE_HOST_INIT_COUNT 0x4208
2195#define TG3_APE_HOST_DRIVER_ID 0x420c 2195#define TG3_APE_HOST_DRIVER_ID 0x420c
2196#define APE_HOST_DRIVER_ID_MAGIC 0xf0035100 2196#define APE_HOST_DRIVER_ID_LINUX 0xf0000000
2197#define APE_HOST_DRIVER_ID_MAGIC(maj, min) \
2198 (APE_HOST_DRIVER_ID_LINUX | (maj & 0xff) << 16 | (min & 0xff) << 8)
2197#define TG3_APE_HOST_BEHAVIOR 0x4210 2199#define TG3_APE_HOST_BEHAVIOR 0x4210
2198#define APE_HOST_BEHAV_NO_PHYLOCK 0x00000001 2200#define APE_HOST_BEHAV_NO_PHYLOCK 0x00000001
2199#define TG3_APE_HOST_HEARTBEAT_INT_MS 0x4214 2201#define TG3_APE_HOST_HEARTBEAT_INT_MS 0x4214