From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chris Metcalf Subject: [PATCH 00/13] update tile network drivers Date: Tue, 23 Jul 2013 16:05:48 -0400 Message-ID: Mime-Version: 1.0 Content-Type: text/plain To: , , Richard Cochran Return-path: Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org This patch series contains changes made to the Tilera on-chip network drivers for both the 64-bit tilegx and 32-bit tilepro architectures. The changes involve a number of bug fixes, support for the multiple mPIPEs on the new Gx72 chip, support for jumbo frames, TSO for IPv6, GRO, PTP support, and statistics improvements. The series can be pulled from: git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git tile-net-next Chris Metcalf (13): tile: handle 64-bit statistics in tilepro network driver tile: support rx_dropped/rx_errors in tilepro net driver tile: avoid bug in tilepro net driver built with old hypervisor tile: remove dead is_dup_ack() function from tilepro net driver tile: support PTP using the tilegx mPIPE (IEEE 1588) tile: support jumbo frames in the tilegx network driver tile: update dev->stats directly in tilegx network driver tile: fix panic bug in napi support for tilegx network driver tile: enable GRO in the tilegx network driver tile: support multiple mPIPE shims in tilegx network driver tile: support TSO for IPv6 in tilegx network driver tile: make "tile_net.custom" a proper bool module parameter tile: remove deprecated NETIF_F_LLTX flag from tile drivers arch/tile/gxio/iorpc_mpipe.c | 66 +++ arch/tile/gxio/iorpc_mpipe_info.c | 18 + arch/tile/gxio/mpipe.c | 44 +- arch/tile/include/gxio/iorpc_mpipe.h | 8 + arch/tile/include/gxio/iorpc_mpipe_info.h | 4 + arch/tile/include/gxio/mpipe.h | 142 ++++- arch/tile/include/hv/drv_mpipe_intf.h | 3 + drivers/net/ethernet/tile/Makefile | 1 + drivers/net/ethernet/tile/tilegx.c | 954 ++++++++++++++++++------------ drivers/net/ethernet/tile/tilegx_ptp.c | 212 +++++++ drivers/net/ethernet/tile/tilepro.c | 171 ++---- drivers/ptp/Kconfig | 10 + 12 files changed, 1127 insertions(+), 506 deletions(-) create mode 100644 drivers/net/ethernet/tile/tilegx_ptp.c -- 1.8.3.1