1. 17 11月, 2010 1 次提交
  2. 01 10月, 2010 1 次提交
  3. 20 8月, 2010 1 次提交
  4. 19 6月, 2010 2 次提交
  5. 13 5月, 2010 2 次提交
    • B
      e1000e: fix checks for manageability enabled and management pass-through · a65a4a0d
      Bruce Allan 提交于
      The mac->arc_subsystem was being incorrectly used to flag whether or not
      manageability was enabled when it should only be used to state whether the
      ARC (Host interface) subsystem is available on a particular MAC _and_ only
      valid when any manageability is enabled. The ARC subsystem is currently
      only available on 80003es2lan and 82573 parts supported by the driver.
      
      A new flag, has_fwsm, is introduced to be used when checking if
      manageability is enabled but only on parts that acutally have an FWSM
      register. While the above parts have an FWSM register, there are other
      parts that have FWSM but do not have support for the ARC subsystem,
      namely 82571/2 and ICHx/PCH.
      
      And then there are parts that have manageability, but do not have either
      FWSM register or support for the ARC subsystem - these are 82574 and 82583.
      
      For 80003es2lan, 82571/2/3 and ICH/PCH parts, this patch makes no
      functional changes, it only corrects the usage of the manageability flags.
      For 82574 and 82583, it fixes the incorrect accesses of the non-existent
      FWSM register and ARC subsystem as well as corrects the check for
      management pass-through.
      Signed-off-by: NBruce Allan <bruce.w.allan@intel.com>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      a65a4a0d
    • B
      e1000e: initialize manageability (IPMI) pass-through in 82574/82583 · cd791618
      Bruce Allan 提交于
      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: NBruce Allan <bruce.w.allan@intel.com>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      cd791618
  6. 06 5月, 2010 1 次提交
  7. 06 3月, 2010 1 次提交
  8. 14 1月, 2010 1 次提交
  9. 09 12月, 2009 1 次提交
  10. 22 11月, 2009 1 次提交
  11. 30 10月, 2009 2 次提交
  12. 04 7月, 2009 2 次提交
  13. 09 6月, 2009 1 次提交
  14. 03 6月, 2009 2 次提交
  15. 11 2月, 2009 1 次提交
  16. 22 11月, 2008 1 次提交
    • B
      e1000e: check return code from NVM accesses and fix bank detection · e243455d
      Bruce Allan 提交于
      Check return code for all NVM accesses[1] and error out accordingly; log
      a debug message for failed accesses.
      
      For ICH8/9, the valid NVM bank detect function was not checking whether the
      SEC1VAL (sector 1 valid) bit in the EECD register was itself valid (bits 8
      and 9 also have to be set).  If invalid, it would have defaulted to the
      possibly invalid bank 0.  Instead, try to use the valid bank detection
      method used by ICH10 which has been cleaned up a bit.
      
      [1] - reads and updates only; not writes because those are only writing to
      the Shadow RAM, the update following the write is the only thing actually
      writing the modified Shadow RAM contents to the NVM.
      Signed-off-by: NBruce Allan <bruce.w.allan@intel.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      e243455d
  17. 17 11月, 2008 1 次提交
  18. 03 9月, 2008 2 次提交
  19. 14 8月, 2008 1 次提交
  20. 07 5月, 2008 1 次提交
    • B
      e1000e: Add support for BM PHYs on ICH9 · 97ac8cae
      Bruce Allan 提交于
      This patch adds support for the BM PHY, a new PHY model being used
      on ICH9-based implementations.
      
      This new PHY exposes issues in the ICH9 silicon when receiving
      jumbo frames large enough to use more than a certain part of the
      Rx FIFO, and this unfortunately breaks packet split jumbo receives.
      For this reason we re-introduce (for affected adapters only) the
      jumbo single-skb receive routine back so that people who do
      wish to use jumbo frames on these ich9 platforms can do so.
      Part of this problem has to do with CPU sleep states and to make
      sure that all the wake up timings are correctly we force them
      with the recently merged pm_qos infrastructure written by Mark
      Gross. (See http://lkml.org/lkml/2007/10/4/400).
      
      To make code read a bit easier we introduce a _IS_ICH flag so
      that we don't need to do mac type checks over the code.
      Signed-off-by: NBruce Allan <bruce.w.allan@intel.com>
      Signed-off-by: NAuke Kok <auke-jan.h.kok@intel.com>
      Signed-off-by: NJeff Garzik <jgarzik@redhat.com>
      97ac8cae
  21. 25 4月, 2008 2 次提交
  22. 29 3月, 2008 1 次提交
  23. 24 2月, 2008 1 次提交
  24. 03 2月, 2008 1 次提交
  25. 29 1月, 2008 1 次提交
  26. 11 10月, 2007 1 次提交
    • A
      [E1000E]: New pci-express e1000 driver (currently for ICH9 devices only) · bc7f75fa
      Auke Kok 提交于
      This driver implements support for the ICH9 on-board LAN ethernet
      device. The device is similar to ICH8.
      
      The driver encompasses code to support 82571/2/3, es2lan and ICH8
      devices as well, but those device IDs are disabled and will be
      "lifted" from the e1000 driver over one at a time once this driver
      receives some more live time.
      
      Changes to the last snapshot posted are exclusively in the internal
      hardware API organization. Many thanks to Jeff Garzik for jumping in
      and getting this organized with a keen eye on the future layout.
      
      [ Integrated napi_struct patch from Auke as well... -DaveM ]
      Signed-off-by: NAuke Kok <auke-jan.h.kok@intel.com>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      bc7f75fa