linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] Freescale DPAA FMan FLIB(s)
@ 2015-03-05  5:45 Emil Medve
  2015-03-05  5:45 ` [PATCH 1/7] soc/fman: Add the FMan FLIB headers Emil Medve
                   ` (7 more replies)
  0 siblings, 8 replies; 15+ messages in thread
From: Emil Medve @ 2015-03-05  5:45 UTC (permalink / raw)
  To: linuxppc-dev, netdev, linux-kernel; +Cc: Igal Liberman

From: Igal Liberman <Igal.Liberman@freescale.com>

The Freescale Data Path Acceleration Architecture (DPAA) is a set of
hardware components on specific QorIQ P and T series multicore processors.
This architecture provides the infrastructure to support simplified
sharing of networking interfaces and accelerators by multiple CPU cores,
and the accelerators themselves.

One of the DPAA accelerators is the Frame Manager (FMan), which
combines the Ethernet network interfaces with packet distribution
logic to provide intelligent distribution and queuing decisions for
incoming traffic at line rate.

This patch presents the FMan Foundation Libraries (FLIB) headers.
The FMan FLIB suite adds basic support for the DPAA FMan hardware register access.
The FMan FLIB suite is used in Freescale's SDK Releases.

Igal Liberman (7):
  soc/fman: Add the FMan FLIB headers
  soc/fman: Add the FMan FLIB
  soc/fman: Add the FMan port FLIB
  soc/fman: Add the FMan MAC FLIB
  soc/fman: Add the FMan parser and KeyGen FLIB(s)
  soc/fman: Add the FMan RTC FLIB
  soc/fman: Add the FMan SP FLIB

 drivers/soc/Kconfig                                |    1 +
 drivers/soc/Makefile                               |    1 +
 drivers/soc/fsl/Kconfig                            |    1 +
 drivers/soc/fsl/Makefile                           |    1 +
 drivers/soc/fsl/fman/Kconfig                       |   35 +
 drivers/soc/fsl/fman/Makefile                      |   19 +
 drivers/soc/fsl/fman/flib/common/general.h         |   45 +
 drivers/soc/fsl/fman/flib/fman_common.h            |   74 +
 drivers/soc/fsl/fman/flib/fsl_enet.h               |  276 ++++
 drivers/soc/fsl/fman/flib/fsl_fman.h               |  801 ++++++++++
 drivers/soc/fsl/fman/flib/fsl_fman_dtsec.h         | 1017 +++++++++++++
 drivers/soc/fsl/fman/flib/fsl_fman_dtsec_mii_acc.h |  104 ++
 drivers/soc/fsl/fman/flib/fsl_fman_kg.h            |  506 +++++++
 drivers/soc/fsl/fman/flib/fsl_fman_memac.h         |  492 +++++++
 drivers/soc/fsl/fman/flib/fsl_fman_memac_mii_acc.h |   77 +
 drivers/soc/fsl/fman/flib/fsl_fman_port.h          |  602 ++++++++
 drivers/soc/fsl/fman/flib/fsl_fman_prs.h           |  106 ++
 drivers/soc/fsl/fman/flib/fsl_fman_rtc.h           |  415 ++++++
 drivers/soc/fsl/fman/flib/fsl_fman_sp.h            |  133 ++
 drivers/soc/fsl/fman/flib/fsl_fman_tgec.h          |  484 ++++++
 drivers/soc/fsl/fman/fman.c                        | 1396 ++++++++++++++++++
 drivers/soc/fsl/fman/mac/Makefile                  |   15 +
 drivers/soc/fsl/fman/mac/fman_crc32.c              |  117 ++
 drivers/soc/fsl/fman/mac/fman_crc32.h              |   40 +
 drivers/soc/fsl/fman/mac/fman_dtsec.c              |  844 +++++++++++
 drivers/soc/fsl/fman/mac/fman_dtsec_mii_acc.c      |  169 +++
 drivers/soc/fsl/fman/mac/fman_memac.c              |  504 +++++++
 drivers/soc/fsl/fman/mac/fman_memac_mii_acc.c      |  218 +++
 drivers/soc/fsl/fman/mac/fman_tgec.c               |  372 +++++
 drivers/soc/fsl/fman/pcd/Makefile                  |   13 +
 drivers/soc/fsl/fman/pcd/fman_kg.c                 |  850 +++++++++++
 drivers/soc/fsl/fman/pcd/fman_prs.c                |  127 ++
 drivers/soc/fsl/fman/port/Makefile                 |   13 +
 drivers/soc/fsl/fman/port/fman_port.c              | 1536 ++++++++++++++++++++
 drivers/soc/fsl/fman/rtc/Makefile                  |   13 +
 drivers/soc/fsl/fman/rtc/fman_rtc.c                |  354 +++++
 drivers/soc/fsl/fman/sp/Makefile                   |   13 +
 drivers/soc/fsl/fman/sp/fman_sp.c                  |  204 +++
 38 files changed, 11988 insertions(+)
 create mode 100644 drivers/soc/fsl/Kconfig
 create mode 100644 drivers/soc/fsl/Makefile
 create mode 100644 drivers/soc/fsl/fman/Kconfig
 create mode 100644 drivers/soc/fsl/fman/Makefile
 create mode 100644 drivers/soc/fsl/fman/flib/common/general.h
 create mode 100644 drivers/soc/fsl/fman/flib/fman_common.h
 create mode 100644 drivers/soc/fsl/fman/flib/fsl_enet.h
 create mode 100644 drivers/soc/fsl/fman/flib/fsl_fman.h
 create mode 100644 drivers/soc/fsl/fman/flib/fsl_fman_dtsec.h
 create mode 100644 drivers/soc/fsl/fman/flib/fsl_fman_dtsec_mii_acc.h
 create mode 100644 drivers/soc/fsl/fman/flib/fsl_fman_kg.h
 create mode 100644 drivers/soc/fsl/fman/flib/fsl_fman_memac.h
 create mode 100644 drivers/soc/fsl/fman/flib/fsl_fman_memac_mii_acc.h
 create mode 100644 drivers/soc/fsl/fman/flib/fsl_fman_port.h
 create mode 100644 drivers/soc/fsl/fman/flib/fsl_fman_prs.h
 create mode 100644 drivers/soc/fsl/fman/flib/fsl_fman_rtc.h
 create mode 100644 drivers/soc/fsl/fman/flib/fsl_fman_sp.h
 create mode 100644 drivers/soc/fsl/fman/flib/fsl_fman_tgec.h
 create mode 100644 drivers/soc/fsl/fman/fman.c
 create mode 100644 drivers/soc/fsl/fman/mac/Makefile
 create mode 100644 drivers/soc/fsl/fman/mac/fman_crc32.c
 create mode 100644 drivers/soc/fsl/fman/mac/fman_crc32.h
 create mode 100644 drivers/soc/fsl/fman/mac/fman_dtsec.c
 create mode 100644 drivers/soc/fsl/fman/mac/fman_dtsec_mii_acc.c
 create mode 100644 drivers/soc/fsl/fman/mac/fman_memac.c
 create mode 100644 drivers/soc/fsl/fman/mac/fman_memac_mii_acc.c
 create mode 100644 drivers/soc/fsl/fman/mac/fman_tgec.c
 create mode 100644 drivers/soc/fsl/fman/pcd/Makefile
 create mode 100644 drivers/soc/fsl/fman/pcd/fman_kg.c
 create mode 100644 drivers/soc/fsl/fman/pcd/fman_prs.c
 create mode 100644 drivers/soc/fsl/fman/port/Makefile
 create mode 100644 drivers/soc/fsl/fman/port/fman_port.c
 create mode 100644 drivers/soc/fsl/fman/rtc/Makefile
 create mode 100644 drivers/soc/fsl/fman/rtc/fman_rtc.c
 create mode 100644 drivers/soc/fsl/fman/sp/Makefile
 create mode 100644 drivers/soc/fsl/fman/sp/fman_sp.c

-- 
2.3.1

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

end of thread, other threads:[~2015-03-07  0:57 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-05  5:45 [PATCH 0/7] Freescale DPAA FMan FLIB(s) Emil Medve
2015-03-05  5:45 ` [PATCH 1/7] soc/fman: Add the FMan FLIB headers Emil Medve
2015-03-06 16:32   ` Kumar Gala
2015-03-05  5:45 ` [PATCH 2/7] soc/fman: Add the FMan FLIB Emil Medve
2015-03-07  0:57   ` Scott Wood
2015-03-05  5:45 ` [PATCH 3/7] soc/fman: Add the FMan port FLIB Emil Medve
2015-03-05  5:45 ` [PATCH 4/7] soc/fman: Add the FMan MAC FLIB Emil Medve
2015-03-05  5:45 ` [PATCH 5/7] soc/fman: Add the FMan parser and KeyGen FLIB(s) Emil Medve
2015-03-05  5:45 ` [PATCH 6/7] soc/fman: Add the FMan RTC FLIB Emil Medve
2015-03-05  5:45 ` [PATCH 7/7] soc/fman: Add the FMan SP FLIB Emil Medve
2015-03-05 12:32 ` [PATCH 0/7] Freescale DPAA FMan FLIB(s) Jamal Hadi Salim
2015-03-05 13:48   ` Emil Medve
2015-03-05 14:35     ` Jamal Hadi Salim
2015-03-05 15:04       ` Emil Medve
2015-03-06 15:09         ` Jamal Hadi Salim

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).