Re: [PATCH 00/12] Freescale DPAA FMan

2015-06-10 Thread Scott Wood
On Wed, 2015-06-10 at 18:21 +0300, Madalin Bucur wrote:
 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 contains a series of hardware blocks: ports, Ethernet
 MACs, a multi user RAM (MURAM) and Storage Profile (SP).
 
 This patch set introduced the FMan driver code that configures
 and initializes the FMan hardware blocks, offering support for
 three different types of MACs (DTSEC, TGEC, MEMAC).
 
 The first 6 patches present the FMan Foundation Libraries (FLIBs).
 The FMan drivers make use of the basic API the FMan FLib provides
 to configure and control the FMan hardware. The remaining patches
 present the required FMan hardware module drivers.
 
 The driver structure and a hint on file naming:
  
   FMan MAC driver   |mac* files
  -- -- - --- 
  FMan | Port | MAC | MURAM | SP |fm_* files
  -- -- - --- 
 :  : FLib : : fman_* files
  ---
 
 This submission is based on the prior Freescale DPAA FMan V3,RFC
 submission. Several issues addresses in this submission:
   - Reduced MAC layering and complexity
   - Reduced code base
   - T1024/T2080 10G best effort support

How is this different from the patchset Igal posted 7 hours earlier?

Please don't use the chained reply option in git send-email (and the 
patches are in the wrong order, which makes the chained reply 
especially bad).

I don't see any mention of a dependency on the qbman patches.
Where is the actual ethernet driver -- the part that sends and 
receives packets?

-Scott

___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev

[PATCH 00/12] Freescale DPAA FMan

2015-06-10 Thread Madalin Bucur
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 contains a series of hardware blocks: ports, Ethernet
MACs, a multi user RAM (MURAM) and Storage Profile (SP).

This patch set introduced the FMan driver code that configures
and initializes the FMan hardware blocks, offering support for
three different types of MACs (DTSEC, TGEC, MEMAC).

The first 6 patches present the FMan Foundation Libraries (FLIBs).
The FMan drivers make use of the basic API the FMan FLib provides
to configure and control the FMan hardware. The remaining patches
present the required FMan hardware module drivers.

The driver structure and a hint on file naming:
 
|  FMan MAC driver   |  mac* files
 -- -- - --- 
| FMan | Port | MAC | MURAM | SP |  fm_* files
 -- -- - --- 
:  : FLib : :   fman_* files
 ---

This submission is based on the prior Freescale DPAA FMan V3,RFC
submission. Several issues addresses in this submission:
- Reduced MAC layering and complexity
- Reduced code base
- T1024/T2080 10G best effort support

Igal Liberman (12):
  fsl/fman: Add the FMan FLIB headers
  fsl/fman: Add the FMan FLIB
  fsl/fman: Add the FMan port FLIB headers
  fsl/fman: Add the FMan port FLIB
  fsl/fman: Add the FMan MAC FLIB headers
  fsl/fman: Add the FMan MAC FLIB
  fsl/fman: Add FMan MURAM support
  fsl/fman: Add Frame Manager support
  fsl/fman: Add FMan MAC support
  fsl/fman: Add FMan SP support
  fsl/fman: Add FMan Port Support
  fsl/fman: Add FMan MAC driver

 drivers/net/ethernet/freescale/Kconfig |1 +
 drivers/net/ethernet/freescale/Makefile|2 +
 drivers/net/ethernet/freescale/fman/Kconfig|   46 +
 drivers/net/ethernet/freescale/fman/Makefile   |   12 +
 .../ethernet/freescale/fman/flib/common/general.h  |   41 +
 .../net/ethernet/freescale/fman/flib/fman_common.h |   73 +
 .../net/ethernet/freescale/fman/flib/fsl_enet.h|  275 +++
 .../net/ethernet/freescale/fman/flib/fsl_fman.h|  609 ++
 .../ethernet/freescale/fman/flib/fsl_fman_dtsec.h  |  791 
 .../freescale/fman/flib/fsl_fman_dtsec_mii_acc.h   |  103 +
 .../ethernet/freescale/fman/flib/fsl_fman_memac.h  |  453 +
 .../freescale/fman/flib/fsl_fman_memac_mii_acc.h   |   76 +
 .../ethernet/freescale/fman/flib/fsl_fman_port.h   |  427 
 .../net/ethernet/freescale/fman/flib/fsl_fman_sp.h |   54 +
 .../ethernet/freescale/fman/flib/fsl_fman_tgec.h   |  409 
 drivers/net/ethernet/freescale/fman/fm.c   | 2036 
 drivers/net/ethernet/freescale/fman/fm.h   |  407 
 drivers/net/ethernet/freescale/fman/fm_common.h|  576 ++
 drivers/net/ethernet/freescale/fman/fm_drv.c   |  933 +
 drivers/net/ethernet/freescale/fman/fm_drv.h   |  125 ++
 drivers/net/ethernet/freescale/fman/fm_muram.c |  127 ++
 drivers/net/ethernet/freescale/fman/fm_port_drv.c  |  496 +
 drivers/net/ethernet/freescale/fman/fm_sp_common.h |  104 +
 drivers/net/ethernet/freescale/fman/fman.c |  973 ++
 .../ethernet/freescale/fman/inc/crc_mac_addr_ext.h |  343 
 drivers/net/ethernet/freescale/fman/inc/enet_ext.h |  199 ++
 drivers/net/ethernet/freescale/fman/inc/fm_ext.h   |  453 +
 .../net/ethernet/freescale/fman/inc/fm_muram_ext.h |  103 +
 .../net/ethernet/freescale/fman/inc/fm_port_ext.h  |  376 
 .../net/ethernet/freescale/fman/inc/fsl_fman_drv.h |  195 ++
 drivers/net/ethernet/freescale/fman/inc/mac.h  |  136 ++
 drivers/net/ethernet/freescale/fman/inc/net_ext.h  |  534 +
 drivers/net/ethernet/freescale/fman/inc/service.h  |   90 +
 drivers/net/ethernet/freescale/fman/mac/Makefile   |8 +
 drivers/net/ethernet/freescale/fman/mac/fm_dtsec.c | 1089 +++
 drivers/net/ethernet/freescale/fman/mac/fm_dtsec.h |  227 +++
 .../ethernet/freescale/fman/mac/fm_dtsec_mii_acc.c |   82 +
 .../ethernet/freescale/fman/mac/fm_dtsec_mii_acc.h |   43 +
 drivers/net/ethernet/freescale/fman/mac/fm_mac.h   |  250 +++
 drivers/net/ethernet/freescale/fman/mac/fm_memac.c |  741 +++
 drivers/net/ethernet/freescale/fman/mac/fm_memac.h |  124 ++
 .../ethernet/freescale/fman/mac/fm_memac_mii_acc.c |   66 +
 .../ethernet/freescale/fman/mac/fm_memac_mii_acc.h |   50 +
 drivers/net/ethernet/freescale/fman/mac/fm_tgec.c  |  652 +++
 drivers/net/ethernet/freescale/fman/mac/fm_tgec.h  |  126 ++
 .../net/ethernet/freescale/fman/mac/fman_dtsec.c   |  571 ++
 .../freescale/fman/mac/fman_dtsec_mii_acc.c|  168 ++
 .../net/ethernet/freescale/fman/mac/fman_memac.c   |  365