DPDK patches and discussions
 help / color / mirror / Atom feed
From: Hemant Agrawal <hemant.agrawal@nxp.com>
To: dev@dpdk.org, bruce.richardson@intel.com
Cc: thomas@monjalon.net
Subject: [dpdk-dev] [PATCH v3 00/10] meson build support for dpaaX
Date: Wed, 14 Mar 2018 13:25:56 +0530	[thread overview]
Message-ID: <1521014166-3201-1-git-send-email-hemant.agrawal@nxp.com> (raw)
In-Reply-To: <1519889597-5805-1-git-send-email-hemant.agrawal@nxp.com>

Earlier dpaaX was only compiled for armv8 target. This patch series first prepares the dpaaX drivers to be compiled for non-ARM platform as well.


Note: This patch changes all of the dpaa drivers/modules - So it shall be applied to master tree instead of meson build tree.

v3:
  - improved cross files and a function issue in dpaa2 bus.

v2: 
  - handle review comments from Bruce
  - move the dpaaX compilation to linuxapp

Hemant Agrawal (10):
  event/dpaa: fix include header
  bus/dpaa: fix the BE compilation issue
  dpaa: prepare for 32 bit compilation
  dpaa2: prepare for 32 bit compilation
  bus/fslmc: add 32 bit functional support for ARM
  bus/dpaa: enabling dpaa compilation for other platforms
  bus/fslmc: enabling dpaa2 compilation for other platforms
  config: add dpaaX build support in common linuxapp
  build: add meson support for dpaaX platforms
  build: add meson cross compile config for dpaaX

 app/test-pmd/meson.build                    |   3 +
 config/arm/arm64_dpaa2_linuxapp_gcc         |  15 +++++
 config/arm/arm64_dpaa_linuxapp_gcc          |  15 +++++
 config/arm/meson.build                      |  13 ++++
 config/common_armv8a_linuxapp               |  58 ----------------
 config/common_base                          |   4 ++
 config/common_linuxapp                      |  14 ++++
 config/rte_config.h                         |  12 +++-
 drivers/bus/dpaa/base/fman/fman.c           |   2 +-
 drivers/bus/dpaa/base/qbman/bman_driver.c   |   2 +-
 drivers/bus/dpaa/base/qbman/qman.c          |   5 +-
 drivers/bus/dpaa/base/qbman/qman_driver.c   |   5 +-
 drivers/bus/dpaa/dpaa_bus.c                 |   3 +-
 drivers/bus/dpaa/include/compat.h           |  30 ++++++++-
 drivers/bus/dpaa/meson.build                |  29 ++++++++
 drivers/bus/fslmc/fslmc_vfio.c              |  10 +--
 drivers/bus/fslmc/mc/fsl_mc_cmd.h           |   2 +-
 drivers/bus/fslmc/meson.build               |  27 ++++++++
 drivers/bus/fslmc/portal/dpaa2_hw_dpio.c    |  22 +++---
 drivers/bus/fslmc/portal/dpaa2_hw_pvt.h     |  37 +++++-----
 drivers/bus/fslmc/qbman/qbman_portal.c      |  14 ++--
 drivers/bus/fslmc/qbman/qbman_sys.h         |  30 ++++++++-
 drivers/bus/fslmc/qbman/qbman_sys_decl.h    |  23 +++++++
 drivers/bus/meson.build                     |   2 +-
 drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c | 101 ++++++++++++++--------------
 drivers/crypto/dpaa2_sec/meson.build        |  14 ++++
 drivers/crypto/dpaa_sec/dpaa_sec.c          |  30 ++++-----
 drivers/crypto/dpaa_sec/meson.build         |  13 ++++
 drivers/crypto/meson.build                  |   4 +-
 drivers/event/dpaa/dpaa_eventdev.c          |   2 +-
 drivers/event/dpaa/meson.build              |  10 +++
 drivers/event/dpaa2/dpaa2_eventdev.c        |  10 +--
 drivers/event/dpaa2/meson.build             |  11 +++
 drivers/event/meson.build                   |   2 +-
 drivers/mempool/dpaa/dpaa_mempool.c         |  10 +--
 drivers/mempool/dpaa/dpaa_mempool.h         |   2 +-
 drivers/mempool/dpaa/meson.build            |   9 +++
 drivers/mempool/dpaa2/dpaa2_hw_mempool.c    |   8 +--
 drivers/mempool/dpaa2/meson.build           |   9 +++
 drivers/mempool/meson.build                 |   2 +-
 drivers/net/dpaa/dpaa_rxtx.c                |  19 +++---
 drivers/net/dpaa/meson.build                |  14 ++++
 drivers/net/dpaa2/Makefile                  |   1 -
 drivers/net/dpaa2/base/dpaa2_hw_dpni.c      |   2 +-
 drivers/net/dpaa2/dpaa2_ethdev.c            |   6 +-
 drivers/net/dpaa2/dpaa2_rxtx.c              |  63 +++++++++--------
 drivers/net/dpaa2/meson.build               |  15 +++++
 drivers/net/meson.build                     |   2 +-
 48 files changed, 487 insertions(+), 249 deletions(-)
 create mode 100644 config/arm/arm64_dpaa2_linuxapp_gcc
 create mode 100644 config/arm/arm64_dpaa_linuxapp_gcc
 create mode 100644 drivers/bus/dpaa/meson.build
 create mode 100644 drivers/bus/fslmc/meson.build
 create mode 100644 drivers/crypto/dpaa2_sec/meson.build
 create mode 100644 drivers/crypto/dpaa_sec/meson.build
 create mode 100644 drivers/event/dpaa/meson.build
 create mode 100644 drivers/event/dpaa2/meson.build
 create mode 100644 drivers/mempool/dpaa/meson.build
 create mode 100644 drivers/mempool/dpaa2/meson.build
 create mode 100644 drivers/net/dpaa/meson.build
 create mode 100644 drivers/net/dpaa2/meson.build

-- 
2.7.4

  parent reply	other threads:[~2018-03-14  7:58 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-27 17:25 [dpdk-dev] [PATCH 0/7] " Hemant Agrawal
2018-02-27 17:25 ` [dpdk-dev] [PATCH 1/7] event/dpaa: fix include header Hemant Agrawal
2018-02-27 17:25 ` [dpdk-dev] [PATCH 2/7] dpaa: prepare for 32 bit compilation Hemant Agrawal
2018-02-27 17:25 ` [dpdk-dev] [PATCH 3/7] dpaa2: " Hemant Agrawal
2018-02-27 17:25 ` [dpdk-dev] [PATCH 4/7] bus/fslmc: add 32 bit functional support for ARM Hemant Agrawal
2018-02-27 17:25 ` [dpdk-dev] [PATCH 5/7] bus/dpaa: enabling dpaa compilation for other platforms Hemant Agrawal
2018-02-27 17:25 ` [dpdk-dev] [PATCH 6/7] bus/fslmc: enabling dpaa2 " Hemant Agrawal
2018-02-28 14:45   ` Bruce Richardson
2018-02-28 16:02     ` Hemant Agrawal
2018-02-28 16:33       ` Richardson, Bruce
2018-02-27 17:25 ` [dpdk-dev] [PATCH 7/7] build: add meson support for dpaaX platforms Hemant Agrawal
2018-02-28 14:44   ` Bruce Richardson
2018-03-01  6:10     ` Hemant Agrawal
2018-03-01 14:15       ` Thomas Monjalon
2018-03-09 16:49         ` Thomas Monjalon
2018-03-09 17:42           ` Hemant Agrawal
2018-03-01  7:33 ` [dpdk-dev] [PATCH v2 00/10] meson build support for dpaaX Hemant Agrawal
2018-03-01  7:33   ` [dpdk-dev] [PATCH v2 01/10] event/dpaa: fix include header Hemant Agrawal
2018-03-01  7:33   ` [dpdk-dev] [PATCH v2 02/10] bus/dpaa: fix the BE compilation issue Hemant Agrawal
2018-03-01 12:22     ` Shreyansh Jain
2018-03-01  7:33   ` [dpdk-dev] [PATCH v2 03/10] dpaa: prepare for 32 bit compilation Hemant Agrawal
2018-03-01  7:33   ` [dpdk-dev] [PATCH v2 04/10] dpaa2: " Hemant Agrawal
2018-03-01  7:33   ` [dpdk-dev] [PATCH v2 05/10] bus/fslmc: add 32 bit functional support for ARM Hemant Agrawal
2018-03-01  7:33   ` [dpdk-dev] [PATCH v2 06/10] bus/dpaa: enabling dpaa compilation for other platforms Hemant Agrawal
2018-03-01  7:33   ` [dpdk-dev] [PATCH v2 07/10] bus/fslmc: enabling dpaa2 " Hemant Agrawal
2018-03-01  7:33   ` [dpdk-dev] [PATCH v2 08/10] config: add dpaaX build support in common linuxapp Hemant Agrawal
2018-03-09 17:11     ` Thomas Monjalon
2018-03-09 17:22       ` Hemant Agrawal
2018-03-01  7:33   ` [dpdk-dev] [PATCH v2 09/10] build: add meson support for dpaaX platforms Hemant Agrawal
2018-03-01  7:33   ` [dpdk-dev] [PATCH v2 10/10] build: add meson cross compile config for dpaaX Hemant Agrawal
2018-03-14  7:55   ` Hemant Agrawal [this message]
2018-03-14  7:55     ` [dpdk-dev] [PATCH v3 01/10] event/dpaa: fix include header Hemant Agrawal
2018-03-14  7:55     ` [dpdk-dev] [PATCH v3 02/10] bus/dpaa: fix the BE compilation issue Hemant Agrawal
2018-03-14  7:55     ` [dpdk-dev] [PATCH v3 03/10] dpaa: prepare for 32 bit compilation Hemant Agrawal
2018-03-14  7:56     ` [dpdk-dev] [PATCH v3 04/10] dpaa2: " Hemant Agrawal
2018-03-14  7:56     ` [dpdk-dev] [PATCH v3 05/10] bus/fslmc: add 32 bit functional support for ARM Hemant Agrawal
2018-03-14  7:56     ` [dpdk-dev] [PATCH v3 06/10] bus/dpaa: enabling dpaa compilation for other platforms Hemant Agrawal
2018-03-14  7:56     ` [dpdk-dev] [PATCH v3 07/10] bus/fslmc: enabling dpaa2 " Hemant Agrawal
2018-03-14  7:56     ` [dpdk-dev] [PATCH v3 08/10] config: add dpaaX build support in common linuxapp Hemant Agrawal
2018-03-14  7:56     ` [dpdk-dev] [PATCH v3 09/10] build: add meson support for dpaaX platforms Hemant Agrawal
2018-03-14  7:56     ` [dpdk-dev] [PATCH v3 10/10] build: add meson cross compile config for dpaaX Hemant Agrawal
2018-03-14  9:08     ` [dpdk-dev] [PATCH v3 00/10] meson build support " Bruce Richardson
2018-03-14  9:12       ` Hemant Agrawal
2018-03-15 17:10     ` Bruce Richardson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1521014166-3201-1-git-send-email-hemant.agrawal@nxp.com \
    --to=hemant.agrawal@nxp.com \
    --cc=bruce.richardson@intel.com \
    --cc=dev@dpdk.org \
    --cc=thomas@monjalon.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).