All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/14] gianfar improvements
@ 2008-12-16 23:20 Andy Fleming
  2008-12-16 23:20 ` [PATCH v2.6.29 01/14] gianfar: Use gfar_halt to stop DMA in gfar_probe Andy Fleming
  0 siblings, 1 reply; 26+ messages in thread
From: Andy Fleming @ 2008-12-16 23:20 UTC (permalink / raw)
  To: jeff; +Cc: galak, netdev

Many improvements have been made to the gianfar driver, including converting it
to be an OF driver, and adding support for scatter-gather

 b/Documentation/powerpc/dts-bindings/fsl/tsec.txt |   12 
 b/arch/powerpc/boot/dts/asp834x-redboot.dts       |   20 
 b/arch/powerpc/boot/dts/ksi8560.dts               |   20 
 b/arch/powerpc/boot/dts/mpc8313erdb.dts           |   20 
 b/arch/powerpc/boot/dts/mpc8315erdb.dts           |   19 
 b/arch/powerpc/boot/dts/mpc8349emitx.dts          |   18 
 b/arch/powerpc/boot/dts/mpc8349emitxgp.dts        |    5 
 b/arch/powerpc/boot/dts/mpc834x_mds.dts           |   19 
 b/arch/powerpc/boot/dts/mpc8377_mds.dts           |   19 
 b/arch/powerpc/boot/dts/mpc8377_rdb.dts           |   19 
 b/arch/powerpc/boot/dts/mpc8378_mds.dts           |   19 
 b/arch/powerpc/boot/dts/mpc8378_rdb.dts           |   17 
 b/arch/powerpc/boot/dts/mpc8379_mds.dts           |   18 
 b/arch/powerpc/boot/dts/mpc8379_rdb.dts           |   18 
 b/arch/powerpc/boot/dts/mpc8536ds.dts             |   18 
 b/arch/powerpc/boot/dts/mpc8540ads.dts            |   31 
 b/arch/powerpc/boot/dts/mpc8541cds.dts            |   18 
 b/arch/powerpc/boot/dts/mpc8544ds.dts             |   20 
 b/arch/powerpc/boot/dts/mpc8548cds.dts            |   44 +
 b/arch/powerpc/boot/dts/mpc8555cds.dts            |   18 
 b/arch/powerpc/boot/dts/mpc8560ads.dts            |   18 
 b/arch/powerpc/boot/dts/mpc8568mds.dts            |   18 
 b/arch/powerpc/boot/dts/mpc8572ds.dts             |   45 +
 b/arch/powerpc/boot/dts/mpc8641_hpcn.dts          |   45 +
 b/arch/powerpc/boot/dts/sbc8349.dts               |   18 
 b/arch/powerpc/boot/dts/sbc8548.dts               |   18 
 b/arch/powerpc/boot/dts/sbc8560.dts               |   18 
 b/arch/powerpc/boot/dts/sbc8641d.dts              |   44 +
 b/arch/powerpc/boot/dts/stx_gp3_8560.dts          |   18 
 b/arch/powerpc/boot/dts/tqm8540.dts               |   28 
 b/arch/powerpc/boot/dts/tqm8541.dts               |   18 
 b/arch/powerpc/boot/dts/tqm8548-bigflash.dts      |   44 +
 b/arch/powerpc/boot/dts/tqm8548.dts               |   44 +
 b/arch/powerpc/boot/dts/tqm8555.dts               |   18 
 b/arch/powerpc/boot/dts/tqm8560.dts               |   18 
 b/arch/powerpc/sysdev/fsl_soc.c                   |  241 ------
 b/drivers/net/gianfar.c                           |   14 
 b/drivers/net/gianfar.h                           |   21 
 b/drivers/net/gianfar_ethtool.c                   |   22 
 b/drivers/net/gianfar_mii.c                       |  212 +++--
 b/drivers/net/gianfar_mii.h                       |    2 
 b/include/linux/fsl_devices.h                     |   18 
 drivers/net/gianfar.c                             |  863 +++++++++++++---------
 drivers/net/gianfar.h                             |   57 +
 drivers/net/gianfar_ethtool.c                     |   67 -
 45 files changed, 1599 insertions(+), 722 deletions(-)



^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2008-12-16 23:36 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-12-16 23:20 [PATCH 0/14] gianfar improvements Andy Fleming
2008-12-16 23:20 ` [PATCH v2.6.29 01/14] gianfar: Use gfar_halt to stop DMA in gfar_probe Andy Fleming
2008-12-16 23:20   ` [PATCH v2.6.29 02/14] gianfar: Fix skb allocation error Andy Fleming
2008-12-16 23:20     ` [PATCH v2.6.29 03/14] gianfar: Convert gianfar to an of_platform_driver Andy Fleming
2008-12-16 23:20       ` [PATCH v2.6.29 04/14] gianfar: Optimize interrupt coalescing configuration Andy Fleming
2008-12-16 23:20         ` [PATCH v2.6.29 05/14] gianfar: Fix eTSEC configuration procedure Andy Fleming
2008-12-16 23:20           ` [PATCH v2.6.29 06/14] gianfar: Fix VLAN HW feature related frame/buffer size calculation Andy Fleming
2008-12-16 23:21             ` [PATCH v2.6.29 07/14] gianfar: Enable padding and Optimize the frame prepended bytes handling Andy Fleming
2008-12-16 23:21               ` [PATCH v2.6.29 08/14] gianfar: Remove unused gfar_add_fcb() function parameter Andy Fleming
2008-12-16 23:21                 ` [PATCH v2.6.29 09/14] gianfar: Add macros for stepping through BDs Andy Fleming
2008-12-16 23:21                   ` [PATCH v2.6.29 10/14] gianfar: Make all BD status writes 32-bit Andy Fleming
2008-12-16 23:21                     ` [PATCH v2.6.29 11/14] gianfar: Add Scatter Gather support Andy Fleming
2008-12-16 23:21                       ` [PATCH v2.6.29 12/14] gianfar: Use interface name in interrupt name to distinguish the source Andy Fleming
2008-12-16 23:21                         ` [PATCH v2.6.29 13/14] gianfar: Merge Tx and Rx interrupt for scheduling clean up ring Andy Fleming
2008-12-16 23:21                           ` [PATCH v2.6.29 14/14] gianfar: Continue polling until both tx and rx are empty Andy Fleming
2008-12-16 23:36                       ` [PATCH v2.6.29 11/14] gianfar: Add Scatter Gather support David Miller
2008-12-16 23:35                     ` [PATCH v2.6.29 10/14] gianfar: Make all BD status writes 32-bit David Miller
2008-12-16 23:33                   ` [PATCH v2.6.29 09/14] gianfar: Add macros for stepping through BDs David Miller
2008-12-16 23:33                 ` [PATCH v2.6.29 08/14] gianfar: Remove unused gfar_add_fcb() function parameter David Miller
2008-12-16 23:31               ` [PATCH v2.6.29 07/14] gianfar: Enable padding and Optimize the frame prepended bytes handling David Miller
2008-12-16 23:30             ` [PATCH v2.6.29 06/14] gianfar: Fix VLAN HW feature related frame/buffer size calculation David Miller
2008-12-16 23:30           ` [PATCH v2.6.29 05/14] gianfar: Fix eTSEC configuration procedure David Miller
2008-12-16 23:30         ` [PATCH v2.6.29 04/14] gianfar: Optimize interrupt coalescing configuration David Miller
2008-12-16 23:29       ` [PATCH v2.6.29 03/14] gianfar: Convert gianfar to an of_platform_driver David Miller
2008-12-16 23:28     ` [PATCH v2.6.29 02/14] gianfar: Fix skb allocation error David Miller
2008-12-16 23:25   ` [PATCH v2.6.29 01/14] gianfar: Use gfar_halt to stop DMA in gfar_probe David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.