linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [v2,00/11] Freescale DPAA FMan FLIB(s)
@ 2015-03-11  5:03 Igal.Liberman
  2015-03-12 15:57 ` Kumar Gala
  2015-03-12 19:11 ` Igal.Liberman
  0 siblings, 2 replies; 3+ messages in thread
From: Igal.Liberman @ 2015-03-11  5:03 UTC (permalink / raw)
  To: linuxppc-dev, netdev, linux-kernel; +Cc: scottwood, 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 multicore processors. This
architecture provides the infrastructure to support simplified
sharing of networking interfaces and accelerators by multiple CPU
cores and the accelerators.

One of the DPAA accelerators is the Frame Manager (FMan) which
enables the Ethernet network interfaces.

This patch presents the FMan Foundation Libraries (FLIB) headers.
The FMan FLIB adds basic support for the DPAA FMan hardware register
access.

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

Madalin Bucur (4):
  soc/fman: Add the FMan port FLIB headers
  soc/fman: Add the FMan MAC FLIB headers
  soc/fman: Add the FMan parser and KeyGen FLIB headers
  soc/fman: Add the FMan RTC FLIB header

 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                      |   11 +
 drivers/soc/fsl/fman/flib/common/general.h         |   41 +
 drivers/soc/fsl/fman/flib/fman_common.h            |   73 +
 drivers/soc/fsl/fman/flib/fsl_enet.h               |  275 ++++
 drivers/soc/fsl/fman/flib/fsl_fman.h               |  802 ++++++++++
 drivers/soc/fsl/fman/flib/fsl_fman_dtsec.h         | 1016 +++++++++++++
 drivers/soc/fsl/fman/flib/fsl_fman_dtsec_mii_acc.h |  103 ++
 drivers/soc/fsl/fman/flib/fsl_fman_kg.h            |  505 +++++++
 drivers/soc/fsl/fman/flib/fsl_fman_memac.h         |  494 +++++++
 drivers/soc/fsl/fman/flib/fsl_fman_memac_mii_acc.h |   76 +
 drivers/soc/fsl/fman/flib/fsl_fman_port.h          |  601 ++++++++
 drivers/soc/fsl/fman/flib/fsl_fman_prs.h           |  106 ++
 drivers/soc/fsl/fman/flib/fsl_fman_rtc.h           |  414 ++++++
 drivers/soc/fsl/fman/flib/fsl_fman_sp.h            |  132 ++
 drivers/soc/fsl/fman/flib/fsl_fman_tgec.h          |  483 ++++++
 drivers/soc/fsl/fman/fman.c                        | 1355 +++++++++++++++++
 drivers/soc/fsl/fman/mac/Makefile                  |    5 +
 drivers/soc/fsl/fman/mac/fman_crc32.c              |  116 ++
 drivers/soc/fsl/fman/mac/fman_crc32.h              |   39 +
 drivers/soc/fsl/fman/mac/fman_dtsec.c              |  838 +++++++++++
 drivers/soc/fsl/fman/mac/fman_dtsec_mii_acc.c      |  168 +++
 drivers/soc/fsl/fman/mac/fman_memac.c              |  510 +++++++
 drivers/soc/fsl/fman/mac/fman_memac_mii_acc.c      |  217 +++
 drivers/soc/fsl/fman/mac/fman_tgec.c               |  371 +++++
 drivers/soc/fsl/fman/pcd/Makefile                  |    3 +
 drivers/soc/fsl/fman/pcd/fman_kg.c                 |  849 +++++++++++
 drivers/soc/fsl/fman/pcd/fman_prs.c                |  126 ++
 drivers/soc/fsl/fman/port/Makefile                 |    3 +
 drivers/soc/fsl/fman/port/fman_port.c              | 1535 ++++++++++++++++++++
 drivers/soc/fsl/fman/rtc/Makefile                  |    3 +
 drivers/soc/fsl/fman/rtc/fman_rtc.c                |  353 +++++
 drivers/soc/fsl/fman/sp/Makefile                   |    3 +
 drivers/soc/fsl/fman/sp/fman_sp.c                  |  203 +++
 38 files changed, 11868 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

-- 
1.7.9.5

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

* Re: [v2,00/11] Freescale DPAA FMan FLIB(s)
  2015-03-11  5:03 [v2,00/11] Freescale DPAA FMan FLIB(s) Igal.Liberman
@ 2015-03-12 15:57 ` Kumar Gala
  2015-03-12 19:11 ` Igal.Liberman
  1 sibling, 0 replies; 3+ messages in thread
From: Kumar Gala @ 2015-03-12 15:57 UTC (permalink / raw)
  To: Igal.Liberman; +Cc: scottwood, netdev, linuxppc-dev, linux-kernel


On Mar 11, 2015, at 12:03 AM, Igal.Liberman =
<igal.liberman@freescale.com> wrote:

> From: Igal Liberman <Igal.Liberman@freescale.com>
>=20
> The Freescale Data Path Acceleration Architecture (DPAA) is a set of
> hardware components on specific QorIQ multicore processors. This
> architecture provides the infrastructure to support simplified
> sharing of networking interfaces and accelerators by multiple CPU
> cores and the accelerators.
>=20
> One of the DPAA accelerators is the Frame Manager (FMan) which
> enables the Ethernet network interfaces.
>=20
> This patch presents the FMan Foundation Libraries (FLIB) headers.
> The FMan FLIB adds basic support for the DPAA FMan hardware register
> access.
>=20
> 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
>=20
> Madalin Bucur (4):
>  soc/fman: Add the FMan port FLIB headers
>  soc/fman: Add the FMan MAC FLIB headers
>  soc/fman: Add the FMan parser and KeyGen FLIB headers
>  soc/fman: Add the FMan RTC FLIB header
>=20
> 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                      |   11 +
> drivers/soc/fsl/fman/flib/common/general.h         |   41 +
> drivers/soc/fsl/fman/flib/fman_common.h            |   73 +
> drivers/soc/fsl/fman/flib/fsl_enet.h               |  275 ++++
> drivers/soc/fsl/fman/flib/fsl_fman.h               |  802 ++++++++++
> drivers/soc/fsl/fman/flib/fsl_fman_dtsec.h         | 1016 =
+++++++++++++
> drivers/soc/fsl/fman/flib/fsl_fman_dtsec_mii_acc.h |  103 ++
> drivers/soc/fsl/fman/flib/fsl_fman_kg.h            |  505 +++++++
> drivers/soc/fsl/fman/flib/fsl_fman_memac.h         |  494 +++++++
> drivers/soc/fsl/fman/flib/fsl_fman_memac_mii_acc.h |   76 +
> drivers/soc/fsl/fman/flib/fsl_fman_port.h          |  601 ++++++++
> drivers/soc/fsl/fman/flib/fsl_fman_prs.h           |  106 ++
> drivers/soc/fsl/fman/flib/fsl_fman_rtc.h           |  414 ++++++
> drivers/soc/fsl/fman/flib/fsl_fman_sp.h            |  132 ++
> drivers/soc/fsl/fman/flib/fsl_fman_tgec.h          |  483 ++++++
> drivers/soc/fsl/fman/fman.c                        | 1355 =
+++++++++++++++++
> drivers/soc/fsl/fman/mac/Makefile                  |    5 +
> drivers/soc/fsl/fman/mac/fman_crc32.c              |  116 ++
> drivers/soc/fsl/fman/mac/fman_crc32.h              |   39 +
> drivers/soc/fsl/fman/mac/fman_dtsec.c              |  838 +++++++++++
> drivers/soc/fsl/fman/mac/fman_dtsec_mii_acc.c      |  168 +++
> drivers/soc/fsl/fman/mac/fman_memac.c              |  510 +++++++
> drivers/soc/fsl/fman/mac/fman_memac_mii_acc.c      |  217 +++
> drivers/soc/fsl/fman/mac/fman_tgec.c               |  371 +++++
> drivers/soc/fsl/fman/pcd/Makefile                  |    3 +
> drivers/soc/fsl/fman/pcd/fman_kg.c                 |  849 +++++++++++
> drivers/soc/fsl/fman/pcd/fman_prs.c                |  126 ++
> drivers/soc/fsl/fman/port/Makefile                 |    3 +
> drivers/soc/fsl/fman/port/fman_port.c              | 1535 =
++++++++++++++++++++
> drivers/soc/fsl/fman/rtc/Makefile                  |    3 +
> drivers/soc/fsl/fman/rtc/fman_rtc.c                |  353 +++++
> drivers/soc/fsl/fman/sp/Makefile                   |    3 +
> drivers/soc/fsl/fman/sp/fman_sp.c                  |  203 +++
> 38 files changed, 11868 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
>=20
> --=20
> 1.7.9.5

What changed in v2?

- k

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

* RE: [v2,00/11] Freescale DPAA FMan FLIB(s)
  2015-03-11  5:03 [v2,00/11] Freescale DPAA FMan FLIB(s) Igal.Liberman
  2015-03-12 15:57 ` Kumar Gala
@ 2015-03-12 19:11 ` Igal.Liberman
  1 sibling, 0 replies; 3+ messages in thread
From: Igal.Liberman @ 2015-03-12 19:11 UTC (permalink / raw)
  To: Igal.Liberman@freescale.com, linuxppc-dev@lists.ozlabs.org,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org
  Cc: Scott Wood

Hello,=20

In v2 of DPAA FMan FLIBs we've made the following updates:
- Split the header patch ([v2,01/11] soc/fman: Add the FMan FLIB headers) f=
rom one big patch to smaller patches - Kumar's feedback.
- Removed the KILOBYTE defines - Kumar's feedback.
- Addressed several comments from Scott on [v2,02/11] soc/fman: Add the FMa=
n FLIB.

Best regards,
Igal Liberman.

> -----Original Message-----
> From: Igal.Liberman [mailto:igal.liberman@freescale.com]
> Sent: Wednesday, March 11, 2015 7:04 AM
> To: linuxppc-dev@lists.ozlabs.org; netdev@vger.kernel.org; linux-
> kernel@vger.kernel.org
> Cc: Wood Scott-B07421; Liberman Igal-B31950
> Subject: [v2,00/11] Freescale DPAA FMan FLIB(s)
>=20
> From: Igal Liberman <Igal.Liberman@freescale.com>
>=20
> The Freescale Data Path Acceleration Architecture (DPAA) is a set of
> hardware components on specific QorIQ multicore processors. This
> architecture provides the infrastructure to support simplified sharing of
> networking interfaces and accelerators by multiple CPU cores and the
> accelerators.
>=20
> One of the DPAA accelerators is the Frame Manager (FMan) which enables
> the Ethernet network interfaces.
>=20
> This patch presents the FMan Foundation Libraries (FLIB) headers.
> The FMan FLIB adds basic support for the DPAA FMan hardware register
> access.
>=20
> 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
>=20
> Madalin Bucur (4):
>   soc/fman: Add the FMan port FLIB headers
>   soc/fman: Add the FMan MAC FLIB headers
>   soc/fman: Add the FMan parser and KeyGen FLIB headers
>   soc/fman: Add the FMan RTC FLIB header
>=20
>  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                      |   11 +
>  drivers/soc/fsl/fman/flib/common/general.h         |   41 +
>  drivers/soc/fsl/fman/flib/fman_common.h            |   73 +
>  drivers/soc/fsl/fman/flib/fsl_enet.h               |  275 ++++
>  drivers/soc/fsl/fman/flib/fsl_fman.h               |  802 ++++++++++
>  drivers/soc/fsl/fman/flib/fsl_fman_dtsec.h         | 1016 +++++++++++++
>  drivers/soc/fsl/fman/flib/fsl_fman_dtsec_mii_acc.h |  103 ++
>  drivers/soc/fsl/fman/flib/fsl_fman_kg.h            |  505 +++++++
>  drivers/soc/fsl/fman/flib/fsl_fman_memac.h         |  494 +++++++
>  drivers/soc/fsl/fman/flib/fsl_fman_memac_mii_acc.h |   76 +
>  drivers/soc/fsl/fman/flib/fsl_fman_port.h          |  601 ++++++++
>  drivers/soc/fsl/fman/flib/fsl_fman_prs.h           |  106 ++
>  drivers/soc/fsl/fman/flib/fsl_fman_rtc.h           |  414 ++++++
>  drivers/soc/fsl/fman/flib/fsl_fman_sp.h            |  132 ++
>  drivers/soc/fsl/fman/flib/fsl_fman_tgec.h          |  483 ++++++
>  drivers/soc/fsl/fman/fman.c                        | 1355 ++++++++++++++=
+++
>  drivers/soc/fsl/fman/mac/Makefile                  |    5 +
>  drivers/soc/fsl/fman/mac/fman_crc32.c              |  116 ++
>  drivers/soc/fsl/fman/mac/fman_crc32.h              |   39 +
>  drivers/soc/fsl/fman/mac/fman_dtsec.c              |  838 +++++++++++
>  drivers/soc/fsl/fman/mac/fman_dtsec_mii_acc.c      |  168 +++
>  drivers/soc/fsl/fman/mac/fman_memac.c              |  510 +++++++
>  drivers/soc/fsl/fman/mac/fman_memac_mii_acc.c      |  217 +++
>  drivers/soc/fsl/fman/mac/fman_tgec.c               |  371 +++++
>  drivers/soc/fsl/fman/pcd/Makefile                  |    3 +
>  drivers/soc/fsl/fman/pcd/fman_kg.c                 |  849 +++++++++++
>  drivers/soc/fsl/fman/pcd/fman_prs.c                |  126 ++
>  drivers/soc/fsl/fman/port/Makefile                 |    3 +
>  drivers/soc/fsl/fman/port/fman_port.c              | 1535
> ++++++++++++++++++++
>  drivers/soc/fsl/fman/rtc/Makefile                  |    3 +
>  drivers/soc/fsl/fman/rtc/fman_rtc.c                |  353 +++++
>  drivers/soc/fsl/fman/sp/Makefile                   |    3 +
>  drivers/soc/fsl/fman/sp/fman_sp.c                  |  203 +++
>  38 files changed, 11868 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
>=20
> --
> 1.7.9.5

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

end of thread, other threads:[~2015-03-12 19:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-11  5:03 [v2,00/11] Freescale DPAA FMan FLIB(s) Igal.Liberman
2015-03-12 15:57 ` Kumar Gala
2015-03-12 19:11 ` Igal.Liberman

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).