mbox

Pull request: sfc-next 2013-08-28

Message ID 1377702837.2264.21.camel@bwh-desktop.uk.level5networks.com
State Accepted, archived
Delegated to: David Miller
Headers show

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/bwh/sfc-next.git for-davem

Message

Ben Hutchings Aug. 28, 2013, 3:13 p.m. UTC
The following changes since commit b766630b351c68c0383831dba9b81a905e5e84c6:

  sfc: Eliminate struct efx_mtd (2013-08-22 19:26:04 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/bwh/sfc-next.git for-davem

for you to fetch changes up to d4fbdcfe93928fbcb7374ea490e41f7b69d95380:

  sfc: Use extended MC_CMD_SENSOR_INFO and MC_CMD_READ_SENSORS (2013-08-27 22:29:56 +0100)

1. Further cleanup and refactoring in preparation for EF10.
2. Remove ethtool stats that are always zero on Falcon boards.
3. Add an ethtool stat for merged TX completions.
4. Prepare to support merged RX completions.
5. Prepare to support more hwmon sensors.
6. Add support for new events that are generated by EF10 firmware.
7. Update MC reboot detection for EF10.

Ben.

----------------------------------------------------------------
Alexandre Rames (2):
      sfc: Add EF10 support for TX/RX DMA error events handling.
      sfc: Return an error code when a sensor is busy.

Ben Hutchings (10):
      sfc: Move NIC-type-specific MTD partition date into separate structures
      sfc: Move MTD operations into efx_nic_type
      sfc: Remove more left-overs from Falcon GMAC support
      sfc: Remove driver-local struct ethtool_string
      sfc: Delegate MAC/NIC statistic description to efx_nic_type
      sfc: Remove early call to efx_nic_type::reconfigure_mac in efx_reset_up()
      sfc: Rename EFX_PAGE_BLOCK_SIZE to EFX_VI_PAGE_SIZE and adjust comments
      sfc: Add TX merged completion counter
      sfc: Add support for reading packet length from prefix
      sfc: Use extended MC_CMD_SENSOR_INFO and MC_CMD_READ_SENSORS

Daniel Pieczko (1):
      sfc: use MCDI epoch flag to improve MC reboot detection in the driver

Jon Cooper (1):
      sfc: Generalise packet hash lookup to support EF10 RX prefix

Laurence Evans (2):
      sfc: PTP MCDI requests need to initialise periph ID field
      sfc: Add a function pointer to abstract write of host time into NIC shared memory

 drivers/net/ethernet/sfc/efx.c        |  37 +-
 drivers/net/ethernet/sfc/efx.h        |   7 +-
 drivers/net/ethernet/sfc/enum.h       |   6 +-
 drivers/net/ethernet/sfc/ethtool.c    | 155 ++-------
 drivers/net/ethernet/sfc/falcon.c     | 616 ++++++++++++++++++++++++++--------
 drivers/net/ethernet/sfc/farch.c      |   6 +-
 drivers/net/ethernet/sfc/farch_regs.h |   4 +
 drivers/net/ethernet/sfc/io.h         |   8 +-
 drivers/net/ethernet/sfc/mcdi.c       | 392 ++++++++++++++--------
 drivers/net/ethernet/sfc/mcdi.h       |  34 +-
 drivers/net/ethernet/sfc/mcdi_mon.c   | 146 +++++---
 drivers/net/ethernet/sfc/mtd.c        | 551 +-----------------------------
 drivers/net/ethernet/sfc/net_driver.h | 143 ++++----
 drivers/net/ethernet/sfc/nic.c        |  83 +++++
 drivers/net/ethernet/sfc/nic.h        | 162 ++++++++-
 drivers/net/ethernet/sfc/ptp.c        |  10 +-
 drivers/net/ethernet/sfc/rx.c         |  27 +-
 drivers/net/ethernet/sfc/siena.c      | 373 +++++++++++++++-----
 drivers/net/ethernet/sfc/spi.h        |  99 ------
 drivers/net/ethernet/sfc/tx.c         |   3 +
 20 files changed, 1536 insertions(+), 1326 deletions(-)
 delete mode 100644 drivers/net/ethernet/sfc/spi.h

Comments

David Miller Aug. 29, 2013, 5:56 a.m. UTC | #1
From: Ben Hutchings <bhutchings@solarflare.com>
Date: Wed, 28 Aug 2013 16:13:57 +0100

> 1. Further cleanup and refactoring in preparation for EF10.
> 2. Remove ethtool stats that are always zero on Falcon boards.
> 3. Add an ethtool stat for merged TX completions.
> 4. Prepare to support merged RX completions.
> 5. Prepare to support more hwmon sensors.
> 6. Add support for new events that are generated by EF10 firmware.
> 7. Update MC reboot detection for EF10.

Pulled, thanks Ben.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Ben Hutchings Aug. 29, 2013, 11:29 a.m. UTC | #2
On Thu, 2013-08-29 at 01:56 -0400, David Miller wrote:
> From: Ben Hutchings <bhutchings@solarflare.com>
> Date: Wed, 28 Aug 2013 16:13:57 +0100
> 
> > 1. Further cleanup and refactoring in preparation for EF10.
> > 2. Remove ethtool stats that are always zero on Falcon boards.
> > 3. Add an ethtool stat for merged TX completions.
> > 4. Prepare to support merged RX completions.
> > 5. Prepare to support more hwmon sensors.
> > 6. Add support for new events that are generated by EF10 firmware.
> > 7. Update MC reboot detection for EF10.
> 
> Pulled, thanks Ben.

Thanks David.  I'lll be sending one more batch to enable the new
hardware.

Ben.