All of lore.kernel.org
 help / color / mirror / Atom feed
* [v2, 00/10] Support DPAA PTP clock and timestamping
@ 2018-06-07  3:22 ` Yangbo Lu
  0 siblings, 0 replies; 30+ messages in thread
From: Yangbo Lu @ 2018-06-07  3:22 UTC (permalink / raw)
  To: netdev, madalin.bucur, Richard Cochran, Rob Herring, Shawn Guo,
	David S . Miller
  Cc: devicetree, linuxppc-dev, linux-arm-kernel, linux-kernel, Yangbo Lu

This patchset is to support DPAA FMAN PTP clock and HW timestamping.
- The patch #1 to patch #5 are to support DPAA FMAN 1588 timer in
  ptp_qoriq driver.
- The patch #6 to patch #10 are to add HW timestamping support in
  DPAA ethernet driver.

Yangbo Lu (10):
  fsl/fman: share the event interrupt
  ptp: support DPAA FMan 1588 timer in ptp_qoriq
  dt-binding: ptp_qoriq: add DPAA FMan support
  powerpc/mpc85xx: move ptp timer out of fman in dts
  arm64: dts: fsl: move ptp timer out of fman
  fsl/fman: add set_tstamp interface
  fsl/fman_port: support getting timestamp field
  fsl/fman: define frame description command UPD
  dpaa_eth: add support for hardware timestamping
  dpaa_eth: add the get_ts_info interface for ethtool

 Documentation/devicetree/bindings/net/fsl-fman.txt |   25 +-----
 .../devicetree/bindings/ptp/ptp-qoriq.txt          |   15 +++-
 arch/arm64/boot/dts/freescale/qoriq-fman3-0.dtsi   |   14 ++-
 arch/powerpc/boot/dts/fsl/qoriq-fman-0.dtsi        |   14 ++-
 arch/powerpc/boot/dts/fsl/qoriq-fman-1.dtsi        |   14 ++-
 arch/powerpc/boot/dts/fsl/qoriq-fman3-0.dtsi       |   14 ++-
 arch/powerpc/boot/dts/fsl/qoriq-fman3-1.dtsi       |   14 ++-
 arch/powerpc/boot/dts/fsl/qoriq-fman3l-0.dtsi      |   14 ++-
 drivers/net/ethernet/freescale/dpaa/dpaa_eth.c     |  101 ++++++++++++++++++-
 drivers/net/ethernet/freescale/dpaa/dpaa_eth.h     |    3 +
 drivers/net/ethernet/freescale/dpaa/dpaa_ethtool.c |   39 ++++++++
 drivers/net/ethernet/freescale/fman/fman.c         |    3 +-
 drivers/net/ethernet/freescale/fman/fman.h         |    1 +
 drivers/net/ethernet/freescale/fman/fman_dtsec.c   |   27 +++++
 drivers/net/ethernet/freescale/fman/fman_dtsec.h   |    1 +
 drivers/net/ethernet/freescale/fman/fman_memac.c   |    5 +
 drivers/net/ethernet/freescale/fman/fman_memac.h   |    1 +
 drivers/net/ethernet/freescale/fman/fman_port.c    |   12 +++
 drivers/net/ethernet/freescale/fman/fman_port.h    |    3 +
 drivers/net/ethernet/freescale/fman/fman_tgec.c    |   21 ++++
 drivers/net/ethernet/freescale/fman/fman_tgec.h    |    1 +
 drivers/net/ethernet/freescale/fman/mac.c          |    3 +
 drivers/net/ethernet/freescale/fman/mac.h          |    1 +
 drivers/ptp/Kconfig                                |    2 +-
 drivers/ptp/ptp_qoriq.c                            |  104 ++++++++++++-------
 include/linux/fsl/ptp_qoriq.h                      |   38 ++++++--
 26 files changed, 375 insertions(+), 115 deletions(-)

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

end of thread, other threads:[~2018-06-07  9:21 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-07  3:22 [v2, 00/10] Support DPAA PTP clock and timestamping Yangbo Lu
2018-06-07  3:22 ` Yangbo Lu
2018-06-07  3:22 ` [v2, 01/10] fsl/fman: share the event interrupt Yangbo Lu
2018-06-07  3:22   ` Yangbo Lu
2018-06-07  3:22 ` [v2, 02/10] ptp: support DPAA FMan 1588 timer in ptp_qoriq Yangbo Lu
2018-06-07  3:22   ` Yangbo Lu
2018-06-07  3:22 ` [v2, 03/10] dt-binding: ptp_qoriq: add DPAA FMan support Yangbo Lu
2018-06-07  3:22   ` Yangbo Lu
2018-06-07  3:22 ` [v2, 04/10] powerpc/mpc85xx: move ptp timer out of fman in dts Yangbo Lu
2018-06-07  3:22   ` Yangbo Lu
2018-06-07  3:22 ` [v2, 05/10] arm64: dts: fsl: move ptp timer out of fman Yangbo Lu
2018-06-07  3:22   ` Yangbo Lu
2018-06-07  3:22 ` [v2, 06/10] fsl/fman: add set_tstamp interface Yangbo Lu
2018-06-07  3:22   ` Yangbo Lu
2018-06-07  3:22 ` [v2, 07/10] fsl/fman_port: support getting timestamp field Yangbo Lu
2018-06-07  3:22   ` Yangbo Lu
2018-06-07  3:22 ` [v2, 08/10] fsl/fman: define frame description command UPD Yangbo Lu
2018-06-07  3:22   ` Yangbo Lu
2018-06-07  3:22 ` [v2, 09/10] dpaa_eth: add support for hardware timestamping Yangbo Lu
2018-06-07  3:22   ` Yangbo Lu
2018-06-07  8:24   ` Madalin-cristian Bucur
2018-06-07  8:24     ` Madalin-cristian Bucur
2018-06-07  8:24     ` Madalin-cristian Bucur
2018-06-07  8:24     ` Madalin-cristian Bucur
2018-06-07  8:24     ` Madalin-cristian Bucur
2018-06-07  9:21     ` Y.b. Lu
2018-06-07  9:21       ` Y.b. Lu
2018-06-07  9:21       ` Y.b. Lu
2018-06-07  3:22 ` [v2, 10/10] dpaa_eth: add the get_ts_info interface for ethtool Yangbo Lu
2018-06-07  3:22   ` Yangbo Lu

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.