diff options
author | Bruce Allan <bruce.w.allan@intel.com> | 2010-05-10 16:59:51 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-13 08:31:10 +0200 |
commit | cd791618c28f524598bcfa941d948b1126a2394a (patch) | |
tree | ab4de6ffe1f8c278499eb1d69a958eb7b7559942 /drivers/net/e1000e/hw.h | |
parent | e1000e: bad state after running ethtool diagnostics with AMT enabled (diff) | |
download | linux-cd791618c28f524598bcfa941d948b1126a2394a.tar.xz linux-cd791618c28f524598bcfa941d948b1126a2394a.zip |
e1000e: initialize manageability (IPMI) pass-through in 82574/82583
82574/82583 uses different registers/bits to setup manageability filters
than all other parts supported by e1000e; set them accordingly for IPMI
pass-through. Rename the function to better reflect what it does.
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/e1000e/hw.h')
-rw-r--r-- | drivers/net/e1000e/hw.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/e1000e/hw.h b/drivers/net/e1000e/hw.h index 8bdcd5f24eff..6f66c3721349 100644 --- a/drivers/net/e1000e/hw.h +++ b/drivers/net/e1000e/hw.h @@ -208,6 +208,8 @@ enum e1e_registers { E1000_KMRNCTRLSTA = 0x00034, /* MAC-PHY interface - RW */ E1000_MANC2H = 0x05860, /* Management Control To Host - RW */ + E1000_MDEF_BASE = 0x05890, /* Management Decision Filters */ +#define E1000_MDEF(_n) (E1000_MDEF_BASE + ((_n) * 4)) E1000_SW_FW_SYNC = 0x05B5C, /* Software-Firmware Synchronization - RW */ E1000_GCR = 0x05B00, /* PCI-Ex Control */ E1000_GCR2 = 0x05B64, /* PCI-Ex Control #2 */ |