| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
This fixes build with distros using usrmerge distro feature
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
|
|
| |
Backport relevant fix from upstream dpdk
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
|
|
| |
Setting TOOLCHAIN=clang helps it compile with meta-clang in mix
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
|
|
|
|
| |
Fetch QorIQ's source code from github.com/nxp-qoriq,
as original source.codeaurora.org/external/qoriq will
stop to access from April 2023.
Signed-off-by: Jun Zhu <junzhu@nxp.com>
|
|
|
|
|
|
|
|
|
|
|
|
| |
Since OE-Core commit 9379f80f48 ("license/insane: Show warning for
obsolete license usage"), LICENSE field not containing SPDX identifiers
are treated with WARNING.
An automated conversion using scripts/contrib/convert-spdx-licenses.py to
convert to use the standard SPDX license identifiers has been done on
the entire layer.
Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Essentially, we extend the overrides to a generic-bsp, nxp-bsp, and
mainline-bsp.
So, for example, the mx8mq override is split into:
- imx-generic-bsp: compatible with every i.MX SoC and both BSP variants
- imx-nxp-bsp: compatible with every i.MX SoC but specific to NXP BSP
- imx-mainline-bsp: compatible with every i.MX SoC but specific to Mainline BSP
- mx8-generic-bsp: compatible with every i.MX8 SoC and both BSP variants
- mx8-nxp-bsp: compatible with every i.MX8 SoC but specific to NXP BSP
- mx8-mainline-bsp: compatible with every i.MX8 SoC but specific to Mainline BSP
- mx8m-generic-bsp: compatible with every i.MX8M SoC and both BSP variants
- mx8m-nxp-bsp: compatible with every i.MX8M SoC but specific to NXP BSP
- mx8m-mainline-bsp: compatible with every i.MX8M SoC but specific to Mainline BSP
- mx8mq-generic-bsp: compatible with every i.MX8MQ SoC and both BSP variants
- mx8mq-nxp-bsp: compatible with every i.MX8MQ SoC8 but specific to NXP BSP
- mx8mq-mainline-bsp: compatible with every i.MX8MQ SoC but specific to Mainline BSP
The extender mechanism is responsible for extending the override list to
include the generic overrides. We can then use the three different
variants to handle the metadata correctly.
Generically speaking, the conversion mainly was automated (with a lot of
back and forth until getting it right).
To convert an existing layer, the following script can be used:
```sh
git ls-files classes recipes-* \
| xargs sed -i \
-e 's,:\(mx[6-8]\w*\),:\1-nxp-bsp,g' \
-e 's,(\(mx[6-8]\w*\)),(\1-nxp-bsp),g' \
-e 's,\(mx[6-8]\w*\)|,\1-nxp-bsp|,g' \
-e 's,|\(mx[6-8]\w*\)),|\1-nxp-bsp),g' \
\
-e 's,:\(mx[5s]\w*\),:\1-generic-bsp,g' \
-e 's,(\(mx[5s]\w*\)),(\1-generic-bsp),g' \
-e 's,\(mx[5s]\w*\)|,\1-generic-bsp|,g' \
-e 's,|\(mx[5s]\w*\)),|\1-generic-bsp),g' \
\
-e 's,:\(vf\w*\),:\1-generic-bsp,g' \
-e 's,:\(vf[56]0\w*\),:\1-generic-bsp,g' \
-e 's,\(vf\w*\)|,\1-generic-bsp|,g' \
-e 's,|\(vf\w*\)),|\1-generic-bsp),g' \
-e 's,\(vf[56]0\w*\)|,\1-generic-bsp|,g' \
-e 's,|\(vf[56]0\w*\)),|\1-generic-bsp),g' \
\
-e 's,:\(imx\) ,:\1-nxp-bsp ,g' \
-e 's,(\(imx\)),(\1-nxp-bsp),g' \
-e 's,\(imx\)|,\1-nxp-bsp|,g' \
-e 's,|\(imx\)),|\1-nxp-bsp),g'
for d in $(find -type d | egrep '/mx[6-8]w*'); do
git mv $d $d-nxp-bsp
done
for d in $(find -type d | egrep '/imx$'); do
git mv $d $d-nxp-bsp
done
for d in $(find -type d | egrep '/mx[5s]w*'); do
git mv $d $d-generic-bsp
done
```
Fixes: #791.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
| |
Signed-off-by: Ting Liu <ting.liu@nxp.com>
|
|
|
|
| |
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Key changes:
* bump version to 19.11.4
* fix build failures with gcc10
* Support of LX2162A QDS
* Crypto: SEC PDCP-SDAP format on LX2160A, non-HMAC auth algorithm on LX2160A
* Memory pool: optimizing the buffer allocation time
Remove two obosolete patches as fixes are included in source code.
Signed-off-by: Ting Liu <ting.liu@nxp.com>
|
|
|
|
| |
Signed-off-by: Ting Liu <ting.liu@nxp.com>
|
|
|
|
| |
Signed-off-by: Ting Liu <ting.liu@nxp.com>
|
|
|
|
|
|
| |
Correct LICENSE from LGPLv2 to LGPLv2.1 and use license files for checksum.
Signed-off-by: Ting Liu <ting.liu@nxp.com>
|
|
|
|
|
|
|
|
|
| |
Backport upstream fix of Kevin Traynor <ktraynor@redhat.com>:
afd2924 examples/ipsec-gw: fix gcc 10 maybe-uninitialized warning
With that fix applied, dpdk builds fine with recent poky.
Signed-off-by: Jens Rehsack <sno@netbsd.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Upgrade dpdk/dpdkvpp to v19.11+LSDK-20.04 tag.
Changes since v19.11:
4110a5fed net/enetc: erratum wa for Rx lock-up issue
7b822adfa UP: example/l2fwd-crypto: align private data size to cache size
22dd1e437 Merge pull request #1187 in GITAM/dpdk from 19.11-qoriq-dev to 19.11-qoriq
62aa9effb Merge pull request #1180 in GITAM/dpdk from DPDK-2262-enetc-perf to 19.11-qoriq-dev
08904e8d4 Merge pull request #1185 in GITAM/dpdk from bugfix/DPDK-2276 to 19.11-qoriq-dev
92949635d UP:crypto/dpaa2_sec: fix HFN override
b7ab49d77 UP: event/dpaa: align the SEC dependency in Makefile
b44c1ed9e UP: crypto/dpaa_sec: fix meson build
a64d9debe net/enetc: perf perf optimize the clean_tx_ring
ae9c0c9e8 Merge pull request #1177 in GITAM/dpdk from 19.11-qoriq-dev to 19.11-qoriq
e5b6183d7 Merge pull request #1176 in GITAM/dpdk from 19.11-qoriq-dev-gagan to 19.11-qoriq-dev
0ee480902 Merge pull request #1175 in GITAM/dpdk from 19.11-qoriq-dev to 19.11-qoriq
cc4d622d3 UP: config: fix caam jr endianness
16b13a832 UP: fix copyright year
598d084a1 Merge pull request #1172 in GITAM/dpdk from 19.11-qoriq-dev to 19.11-qoriq
4759abc4d nxp: fix rcu stall issue on DPAA2 platform
0a423ad9e UP: dpaa: enable set link status
f978c868c UP: net/dpaa: fix get link status fail after stop
4a315d718 UP: nxp/dpaa2: Fix ipsec secgw loopback script
82ec9abfe UP: nxp/dpaa2: fix ipfragment reassembly loopback script
f390adbe4 PVT: nxp: fix dpdk configure scrpt for ls1028
f81fe9fcd UP: bus/dpaa: debug log for no link status support
bb461ff2b crypto/dpaa_sec: reorganize structure members
8f008ce0c Merge pull request #1162 in GITAM/dpdk from 19.11-qoriq-dev to 19.11-qoriq
5f2522590 Merge pull request #1160 in GITAM/dpdk from 19.11-qoriq-dev-update-no-support-logs-for-link-status to 19.11-qoriq-dev
996e29e8c UP: bus/dpaa: debug log for no link status support
d1de550e5 crypto/dpaa_sec: reorganize structure members
4a7dd8d4c Merge pull request #1157 in GITAM/dpdk from 19.11-qoriq-dev-get-link-status-enable-fallback-support to 19.11-qoriq-dev
bbf0b0860 Merge pull request #1156 in GITAM/dpdk from DPDK-2192 to 19.11-qoriq-dev
088239dbc UP: dpaa: Get link status: Enable fallback support
15e4a9c91 PVT: net/dpaa: also check mac type while parsing fqids
c701b25ba PVT: nxp: reserve 0.4 percent CPU for all core performance
afa6d3b2d Revert "PVT: examples: add support for yield while busy looping"
975eb5d08 Merge pull request #1148 in GITAM/dpdk from 19.11-qoriq-dev to 19.11-qoriq
a2d1f9c9b common/dpaax/caamflib: fix 12 bit NULL auth case
0f8e62441 Merge pull request #1143 in GITAM/dpdk from 19.11-qoriq-dev-crypto-dev-on-dpaa-fixed to 19.11-qoriq-dev
fc70532d2 UP: crypto/dpaa_sec: fix performance issue
61a7018ba UP:examples/l2fwd-crypto:skip dev configure for masked devices
e5046968d Merge pull request #1132 in GITAM/dpdk from 19.11-qoriq-dev-enable-link-status-interrupt to 19.11-qoriq-dev
ae3abd98b UP: net/dpaa2: do not prefetch annotaion for physical mode
64804cafd UP: dpaa: enable link state interrupt
4194c6bed PVT: nxp: have one queue for guest eth port
cce1c740d Merge pull request #1140 in GITAM/dpdk from 19.11-qoriq-dev-gagan to 19.11-qoriq-dev
1dd87c986 Merge pull request #1139 in GITAM/dpdk from 19.11-qoriq-dev to 19.11-qoriq
65c02b739 Merge pull request #1138 in GITAM/dpdk from 19.11-qoriq-dev-gagan to 19.11-qoriq-dev
cbd5b3693 config: add IEEE1588 config flag
cc16ad4c7 UP: net/pfe: reduce driver intialization and teardown time
a54557544 UP: net/pfe: Fix double free mac address memory
6040ee7fd Merge pull request #1135 in GITAM/dpdk from 19.11-qoriq-dev to 19.11-qoriq
66c0eb5f5 Merge pull request #1137 in GITAM/dpdk from 19.11-qoriq-dev-legal to 19.11-qoriq-dev
7339deb78 PVT: bus/fslmc: fix check legal issues
01eb68d23 UP: net/pfe: Disable HW CRC stripping
9950a4518 Merge pull request #1129 in GITAM/dpdk from DPDK-2159 to 19.11-qoriq-dev
2b67be888 Merge pull request #1131 in GITAM/dpdk from 19.11-qoriq-dev-driver-dpaa-ethdev to 19.11-qoriq-dev
56119d269 UP: net/dpaa: ip_fragment fixed on dpaa platform
b6e8b63b9 Merge pull request #1111 in GITAM/dpdk from feature/DPDK-362-dpdk-ip-pipeline-application to 19.11-qoriq-dev
f9af75cf8 Merge pull request #1127 in GITAM/dpdk from bugfix/DPDK-2121-ls1046afrwy to 19.11-qoriq-dev
9d80f6baf PVT: net/dpaa read fmc file once
e80aa8f2f PVT: net/dpaa: remove port type check
1655fb735 UP: bus/fslmc: support portal migration
41b843cd7 UP: bus/dpaa: rename the cinh read functions used for ls1088
50f83204a UP: bus/fslmc: fix to handle portal alloc failure
98b1e5610 Merge pull request #1122 in GITAM/dpdk from DPDK-1912 to 19.11-qoriq-dev
2c8b62279 Merge pull request #1125 in GITAM/dpdk from misc_debug to 19.11-qoriq-dev
f23c47f97 Merge pull request #1109 in GITAM/dpdk from DPDK-1779_19.11 to 19.11-qoriq-dev
b8c3a12e0 Merge pull request #1110 in GITAM/dpdk from DPDK-2120-dpaa-devinfo to 19.11-qoriq-dev
4589e5faf Merge pull request #1123 in GITAM/dpdk from DPDK-704 to 19.11-qoriq-dev
31adcb12a UP: mk/toochain: Removed unsupported gcc option
d7cb91c62 UP: dpaa2: enhance portal allocation failure log
3113757b8 PVT: examples: add l2fwd-crypto-event example
6749e032d UP: net/dpaa2: reintroduce env for loopback and prefetch
b549face7 UP: net/dpaa2: add default rx params in info
1ecfd5119 UP: net/dpaa: update process specific device info
ff92525ae PVT: examples: qdma: fix meson and makefiles
2e5d2bc35 PVT: update QDMA demo readme
2e94c2735 PVT: examples: qdma_demo: add latency test
b4f961304 Merge pull request #1116 in GITAM/dpdk from bugfix/DPDK-2106 to 19.11-qoriq-dev
b8e6d709c PVT: nxp: update priority for ksoftirqd process
bf68d2a74 Merge pull request #1121 in GITAM/dpdk from DPDK-2139 to 19.11-qoriq-dev
de6f5d3e7 Merge pull request #1120 in GITAM/dpdk from bugfix/DPDK-2131-congestion-group-issue-on-rxqs-of-multiple-tcs to 19.11-qoriq-dev
f5b38eb4e UP: mk/toochain: Removed unsupported gcc option
210340c20 Merge pull request #1108 in GITAM/dpdk from DPDK-2113_19.11 to 19.11-qoriq-dev
fba7fb902 net/dpaa2: fix congestion group issue on multiple RX TCs
056fd8848 Merge pull request #1114 in GITAM/dpdk from bugfix/DPDK-2122-dpdk-l3fwd-do-not-work-on-ls2088ardb-with-latest-code-of-19.11-version to 19.11-qoriq-dev
4e87b9137 UP: net/dpaa2: distribution size set issue fix
1ecfe3e11 Merge pull request #1112 in GITAM/dpdk from bugfix/DPDK-688-dpaa1-fm_prev_cleanup-issue to 19.11-qoriq-dev
4b513262a Merge pull request #1115 in GITAM/dpdk from 19.11-qoriq-dev-coverity-issue-fixed to 19.11-qoriq-dev
14abb457d examples/ip_pipeline: fix to use sock id instead of cpuid
3dcf31770 examples/ip_pipeline: fix crypto queue config
f077c9bda PVT: app/test-crypto-perf: workaround to use priv mp for security session
5fc6eb7ed common/dpaax/caamflib: remove unnecessary jump for few PDCP cases
3a03387f9 UP: bus/fslmc: fix dereferencing null pointer
b1efc8fc2 UP: raw/skeleton: fix resource leak
178c0e70a UP: net/pfe: fix uninitialized scalar variable
95b029a81 UP: net/pfe: remove unused value
6a8a0c629 UP: net/pfe: fix dereferencing null pointer
6a0e191ad UP: raw/skeleton: fix wrong goto statement
bf1c6711e UP: raw/dpaa2_qdma: fix missing curly bracket
52a997de4 UP: event/dpaa2 : remove if check
456bf2d77 net/dpaa: fman previous cleanup issue fix
27eb1f230 Merge pull request #1101 in GITAM/dpdk from 19.11-qoriq-dev-gagan to 19.11-qoriq-dev
cb37ea62a UP: crypto/dpaa2_sec: fix atomic event processing
1922f5247 PVT: nxp: move qdma demo readme to nxp folder
1aa1e01dc PVT: examples/qdma_demo: use vaddr for job submissions
cbe62be22 UP: net/dpaa: enable Tx queue taildrop
1f5de3822 Merge pull request #1099 in GITAM/dpdk from feature/DPDK-1646-19-11-dpaa2-flow-control to 19.11-qoriq-dev
f371bb69c Merge pull request #1104 in GITAM/dpdk from 19.11-qoriq-dev-fix-coverity-issues to 19.11-qoriq-dev
77d60d4d3 UP: crypto/dpaa_sec: fix dereferencing null pointer
61d6ed3df UP: net/dpaa: free fm and pcd on failure
375e34273 UP: net/dpaa: fix incompatible argument issue
9ef2fdf12 UP: net/dpaa: fix the clang compilation with fmc code
279b30be8 PVT: nxp: add DPAA2 DPDK flow control readme
f768c3f75 UP: app/testpmd: support unequal number of RXQ and TXQ
2bdcdd237 UP: net/dpaa2: flow API FS miss action configuration
3787b0d24 UP: net/dpaa2: flow API QoS setup follows FS setup
0f1c69b4f UP: net/dpaa2: flow data sanity check
0343db1f2 UP: net/dpaa2: index of queue action for flow
ccfa1864e UP: net/dpaa2: distribution size set on multiple TCs
e863ece77 UP: net/dpaa2: discrimination between IPv4 and IPv6
d9c93734b UP: net/dpaa2: log of flow extracts and rules
57ca9aa30 UP: net/dpaa2: define the size of table entry
86ff22d75 UP: net/dpaa2: flow QoS/FS entry indexing
9063c76af UP: net/dpaa2: free flow rule memory
41785d1e5 UP: net/dpaa2: sanity check for flow extracts
f7f500e58 UP: net/dpaa2: key extracts of flow API
15486c2db UP: net/dpaa2: dynamic flow control support
7442336a3 UP: common/dpaax: fix wrong log message values
8ff50f9cd UP: common/dpaax: fix coverity issue
4dc287e45 UP: bus/dpaa: remove dead code
0f340bb99 UP: event/dpaa: remove unused variable
da68ae4a2 PVT: remove dpaa2 build target from build scripts
dc860c1f0 PVT: change dpaa2 build reference to dpaa
379106bb3 PVT: net/dpaa: shared mac support on fmcless mode
6ad066576 PVT: net/dpaa: add fmc parser support for VSP
f8e9f735b PVT: nxp: ls1046ardb shared mac support for dynamic interface
cb3bd515c PVT: nxp: update the mount point to /dev/hugepages
d11fb300b PVT: examples: add compilation of nxp applications
c129ac652 UP: net/dpaa2 - fix 10g port negotiation issue
e940faabe UP: net/dpaa2: add all thread specific variables in one structure
defb2f9a4 UP: example/ptpclient: add a check for timestamp support
7d1994447 UP: net/dpaa2: enable timestamp for IEEE1588
d2e6f1b87 PVT: examples/symmetric_mp_qdma: fix compilation issue
4b907541e PVT: lib/mempool: add 4k boundary errata workaround for LS1043
c827f0302 PVT: nxp: add shared mac and vsp readme and sample dts
60b25b2c9 PVT: nxp: add policy and config files for shared mac
3b55dc459 PVT: net/dpaa: Add support for Virtual Storage Profile
ab211b3ff PVT: net/dpaa: refactor the VSP FMLIB support
ddc017315 PVT: bus/dpaa: Parse dts to support vsp
0236173cb PVT: bus/dpaa: add shared mac support
122ec0118 PVT: net/dpaa: return error for multiple mp config on an device
3382dd2bd PVT: net/dpaa: do not reserve fqid for fmc less mode
0158ac572 PVT: bus/dpaa: update interfaces index as per kernel indexes
3ccfa1a26 drivers: fix copyrights for NXP pmds
19d8a67ea PVT: examples/l2fwd-crypto: add signal handler for exit
ebe95f9f2 PVT: examples/l2fwd-crypto: support multiprocess
f3676ad0a PVT: test/crypto: add test vector for ipsec lookaside offload
1f3116ba0 PVT: app/test-crypto-perf: improve dequeue logic
4db33181d PVT: crypto/dpaa2_sec: ordered queue support
b0e8b25c8 PVT: raw/dpaa2_qdma: add env variable for prefetch mode
5a61e9dba PVT: examples/multi_process: add symmetric_mp_qdma app
475eb09ed PVT: drivers/mempool: LS1043 errata diff
16de9fdbf PVT: net/dpaa: 2.5G support
5def708e1 PVT: bus/dpaa2: have pthread destructor called for dpaa2 only
f5d7018bc PVT: bus/fslmc: fix the null dpio_dev access in cleanup
8d837dbe8 PVT: net/dpaa: fix fd offset data type
22762c6d8 PVT: bus/fslmc: rework portal allocation to a per thread basis
52dfa2d87 PVT:crypto/dpaa2_sec: add security unit test compile time flag
b1a275f81 PVT: net/pfe: fix for 32 bit and PPC compilation
3129b6489 PVT: mbuf: adjust element size and data room size for LS1043 errata
c9f1ebdce PVT: net/dpaa: pre-allocate aligned fqids for rx queues
486aa8403 PVT: net/dpaa2: make parse error drops to be configurable
bb1d4fc45 PVT: net/dpaa: errata workaround for LS1043
87c85928a PVT:net/dpaa: add RSS update func with FMCless
19201b24b PVT:net/dpaa: add support for fmcless mode
1190c6364 PVT:net/dpaa: add support for fmlib in dpdk
6d444f7c9 PVT:net/dpaa2: make data stashing configurable
49baa6191 PVT:net/dpaa: env variable for taildrop enable/disable
0195218e3 PVT: ethdev: support fslmc and dpaa bus for iteration
3bd77f008 PVT: mk: remove pedantic from compile error list
ca1ae0657 PVT: drivers: fix 32 bit compilation
872e3ed85 PVT: config: nxp platform specific config optimizations
6313ae3e3 PVT:bus/dpaa: support for Core 0 performance
935c6f203 PVT:bus/fslmc: dpio affinity for virtual m/c using env variable
0a38634f3 PVT:bus/fslmc: support for Core 0 performance
37fb0dadc PVT:bus/dpaa: add flag to disable sec devices
2a46834bd PVT: examples/l3fwd: fix jumbo packet drop issue
f42d5c4b5 PVT: examples: add support for yield while busy looping
c6decfeee PVT: examples: l3fwd: Fix spec creation for traffic split scenario
8bbcd4b9a PVT: examples/l3fwd: add support for ethtype based traffic splitting
1973c8ac2 PVT: examples/l3fwd: fix the split mode option dpdmux connection naming
38160aa2a PVT: examples/l2fwd-qdma: add l2fwd qdma sample application
f180297d8 PVT:examples/l3fwd: add option for burst size config
f4e300172 PVT:examples/l2fwd: burst size as a argument
368ee5778 PVT: examples/l3fwd: support for traffic bifurcation
17d1fafac PVT: examples/l3fwd: add eventdev mode support
7fd2a5edf PVT: examples/l3fwd: enable per-port bufpool by default
5685d504b PVT: examples: add cmdif
e3fb7b4e2 PVT: examples: add qdma_demo
024f53ca6 PVT: add NXP specific scripts for all platforms
Signed-off-by: Jens Rehsack <sno@netbsd.org>
|
|
|
|
|
|
|
| |
The python3-subprocess package was merged into core as part of the
json manifest migration
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
*update to lsdk 1909 tag
include the following changes:
a36da6a - Merge pull request #1050 in GITAM/dpdk from 18.11-qoriq-dev to 18.11-qoriq
eb00ab7 - PVT: examples/l3fwd: fix jumbo packet drop issue
3e8b2c4 - Merge pull request #1046 in GITAM/dpdk from 18.11-qoriq-dev to 18.11-qoriq
a1a4961 - crypto/dpaa2_sec: compile off hw debug prints
0372f8e - crypto/dpaa2_sec: remove logs from datapath
beab8d5 - crypto/dpaa2_sec: fix SG dynamic ctxt patch
4ff9915 - app/crypto-perf: fix the multi seg buffer loop
3bf73bd - app/crypto-perf: add check for out-of-place case
5bba072 - app/crypto-perf: check range of socket id
371ba75 - Merge pull request #1043 in GITAM/dpdk from bugfix/DPDK-1983 to 18.11-qoriq-dev
e9e016f - crypto/dpaa_sec: change per cryptodev pool to per qp
2ff8c21 - examples/ip_fragmentation: add Scatter support to receive jumboframes
0bfaa19 - crypto/dpaa_sec: fix pdcp check ordering
7e6f996 - Merge pull request #1039 in GITAM/dpdk from 18.11-qoriq-dev to 18.11-qoriq
e703118 - Merge pull request #1031 in GITAM/dpdk from DPDK-1951-sg7 to 18.11-qoriq-dev
7a68386 - crypto/dpaa2_sec: fix to allocate context as per num_segs
9df93ab - PVT: misc fix for 32 bit and PPC compilation
c67478c - event/dpaa2: fix selftest shared build
58b5127 - crypto/dpaa2: fix clang compilation for PDCP
d48c6cf - Merge pull request #918 in GITAM/dpdk from feature/DPDK-990 to 18.11-qoriq-dev
a598283 - Merge pull request #1037 in GITAM/dpdk from DPDK-1945 to 18.11-qoriq-dev
fb3c653 - net/dpaa2: fix unintialized dpni_pools_cfg params
884de83 - event/dpaa: event crypto adapter
* install app into examples folder
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
|
|
|
|
| |
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
|
|
|
|
|
|
|
|
|
|
|
| |
Ideally a SOC layer should not have general purpose recipes like dpdk
and may be get the recipes from
http://git.yoctoproject.org/cgit/cgit.cgi/meta-dpdk working on imx SOCs
instead
This patch just limits the spill over to non nxp bsp layers
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
|
|
| |
Do not build for arm < v7
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
|
|
| |
Fixes missing numa.h issue
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
|
|
| |
Other architectures are not supported and musl is not either
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
*update to lsdk 1906 tag
include the following changes:
0123ced - Merge pull request #966 in GITAM/dpdk from 18.11-qoriq-dev to 18.11-qoriq
9e58741 - Merge pull request #965 in GITAM/dpdk from 18.11-qoriq-dev-ppfe to 18.11-qoriq-dev
87b8c52 - net/ppfe: add checksum offload in capability
ae172a2 - bus/dpaa: fix incorrect rte_free of malloc memory
866adf5 - Merge pull request #961 in GITAM/dpdk from 18.11-qoriq-dev to 18.11-qoriq
0b36cdd - Merge pull request #953 in GITAM/dpdk from DPDK-1790 to 18.11-qoriq-dev
7dfce10 - PVT: nxp: supress warnings from performance script
4e26967 - PVT: nxp/README: update with loopback and no prefetch devargs option
71f3ebd - PVT: net/dpaa2: add optional non-prefetch rx mode
025c689 - PVT: eth/dpaa2: reset frc and ctrl in sg tx fd
6e8d2fe - net/ppfe: fix no ports available issue
28bfd64 - PVT: examples: l3fwd: Fix spec creation for traffic split scenario
279901c - Merge pull request #946 in GITAM/dpdk from DPDK-1799-pdcp-security to 18.11-qoriq-dev
066ff8d - crypto/dpaa_sec: update dpovrd for hfn override in PDCP
73c6c39 - Merge pull request #947 in GITAM/dpdk from DPDK-1795-ecpri to 18.11-qoriq-dev
ef48961 - bus/dpaa: fix static initialization to 0
29235c3 - Merge pull request #948 in GITAM/dpdk from 18.11-qoriq-dev to 18.11-qoriq
c3a19c0 - PVT: test: restructure PDCP test cases into new file
627fc3d - Merge pull request #943 in GITAM/dpdk from feature/DPDK-1595-ovs-2.11-migration to 18.11-qoriq-dev
7b9db20 - PVT: examples/l3fwd: add support for ethtype based traffic splitting
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
|
|
|
|
| |
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
*Update to lsdk 1903 tag
include the following changes:
c0fe1b9 - PVT: LSDK Legal fix
e4236e8 - PVT: examples/qdma_demo: fix mem to mem restart issue
ef25767 - Merge pull request #903 in GITAM/dpdk from DPDK-1630-lsdk-19.03 to 17.11-qoriq-dev
9f0b86c - PVT: update NXP README for DPDK
4bd98af - PVT: drivers/event: fix dead code issue reported by coverity
ccbfa23 - Merge pull request #901 in GITAM/dpdk from DPDK-1630-lsdk-19.03 to 17.11-qoriq-dev
dd8cd08 - PVT: mempool: fix the LS1043 errata logic
e21296a - net/dpaa: add the errata define in datapath
11d1691 - add missing static keyword to globals
77c31f0 - bus/fslmc: remove unneeded strdup
4952d1d - bus/fslmc: don't log error for other devices
520a795 - vfio: do not needlessly setup device in secondary process
c584ff9 - gro: fix overflow of TCP payload calculation
e7f2d15 - doc: add cross-compilation in sample apps guide
e6700bf - bus/dpaa: fix build with gcc 9.0
b8ee5c4 - app/pdump: fix port id storage size
b2e2970 - Merge pull request #900 in GITAM/dpdk from DPDK-1627 to 17.11-qoriq-dev
074cd1d - PVT: net/dpaa2: pre-allocate aligned fqids for rx queues
a8ac57a - PVT: bus/dpaa: export qman fqid range allocation function
61ab58f - Merge pull request #899 in GITAM/dpdk from feature/DPDK-804-dpaa1-support-multiprocess-apps to 17.11-qoriq-dev
9fbf216 - drivers/crypto: update the SEC HW inline desc for sharing mode
fba143f - Merge pull request #895 in GITAM/dpdk from DPDK-1628 to 17.11-qoriq-dev
195da8c - PVT: crypto/dpaa2_sec: use mempool ptov conversion wherever applicable
88fe6c2 - PVT: net/dpaa2: use mempool ptov conversion wherever applicable
692ce13 - PVT: mempool/dpaa2: add fast ptov for mempool having single memseg
*Refresh patch
*Package arm64-dpaa-linuxapp-gcc/*.a as part of ${PN}
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
|
|
|
|
| |
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
*update to lsdk 1812 tag
include the following changes
f451d2b - PVT:dpaa: add ipv6 distribution in fmc xml scripts
c3c6697 - examples/l3fwd: add per port buffer pool support
8232d30 - PVT: bus/fslmc: fix array access in interrupt affinity for LCORE_ID_ANY
c09e3c4 - Merge pull request #824 in GITAM/dpdk from ~NXA19696/dpdk:17.11-qoriq-dev to 17.11-qoriq-dev
6e381aa - bus/fslmc: apply portal to cpu mapping only for non-rx portals
4f3b82f - Merge pull request #822 in GITAM/dpdk from ~NXA19696/dpdk:17.11-qoriq-dev to 17.11-qoriq-dev
58f92eb - bus/fslmc: Reset portal memory before use
7b8d2ee - bus/fslmc: Performance optimization in QBMan Enqueue functionality
2b6f083 - security: fix crash on destroy null session
559e318 - examples/l2fwd-crypto: skip device not supporting operation
df3b0ce - examples/l2fwd-crypto: check return value on IV size check
fe0af02 - examples/l2fwd-crypto: fix digest with AEAD algo
abbda5d - examples/ipsec-secgw: fix bypass rule processing
3f81162 - examples/ipsec-secgw: fix IPv4 checksum at Tx
2ddfbf9 - build: enable ARM NEON flag when __aarch64__ defined
bc5b0b6 - eal/arm64: fix instrinsic for GCC < 4.9
e25189f - eal: fix build with -O1
fa83a50 - table: add dedicated params struct for cuckoo hash
80833dd - net/dpaa2: fix MAC address initialization
84e9838 - PVT: change the map files default to 17.11
afa05d0 - doc: add doc for dpaa2 pmd timestamp api
2871fe5 - net/dpaa2: fix the copyright year due to changes
f78341c - net/dpaa2: fix clang compilation issues
db2dd17 - PVT:dpaa2: change dpsec to 8 by default
5a815c5 - mk: fix cross build
4c9beb5 - Merge pull request #821 in GITAM/dpdk from DPDK-1499-fmcless-pcd to 17.11-qoriq-dev
a077d74 - PVT: misc clang compilation fixes
4626a2d - PVT: net/dpaa: add schema for default pcd
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
|
|
|
|
|
|
|
| |
* dpdk do not support 32bit target
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
| |
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
*update to lsdk 1809 tag
include the following changes:
0c0332a - PVT: test: add NXP Copyright to test cryptodev
af17971 - Revert "PVT: bus/dpaa: avoid be to le conversion for status"
9e95cc5 - PVT:nxp/ipsec: add multiple ipsec proto testing script
7ceb022 - PVT:raw/dpaa2_qdma: add prefetch buffer support
4049033 - PVT:raw/dpaa2_qdma: add rbp mode support
275e3b9 - PVT:raw/dpaa2_qdma: fix the vq bulk dq mode
d8a75da - Merge pull request #771 in GITAM/dpdk from DPDK-816-dpaa2-eventtest to 17.11-qoriq-dev
aad507e - PVT:test/event: add dpaa2 unit test case
7750d0e - PVT:event/dpaa2: align evq with queue id for link and unlink
b039d3f - test/cryptodev: improve pdcp test presentation
2f33770 - crypto/dpaa2_sec: enable bi-endian changes in protocols
fa4a9a0 - PVT:event/dpaa2: fix max event port value
ae95b8f - PVT:event/dpaa2: fix missing mbuf assignment in atomic processing
01b71fe - PVT:event/dpaa2: implement dynanic portal support for enqueue
528d6f3 - mempool/dpaa2: change the print type for no buffers
97733ab - PVT:event/dpaa2: fix timeout handling
79877dd - net/dpaa2: add per queue stats get and reset support
dbb2592 - Merge pull request #746 in GITAM/dpdk from DPDK-729-pdcp to 17.11-qoriq-dev
afa3c21 - PVT: nxp: update copyright of performance scripts
b942c8b - event/dpaa: check for linked queue before decrementing
209bb9d - PVT: dpaa: logging improvements
3f0ae55 - PVT: net/dpaa: improve err handling for fmcless mode
3c57c29 - PVT: event/dpaa2: affining portal at runtime during I/O
339f46d - PVT:event/dpaa2: realign code with dpaa1
fc00d20 - PVT:event/dpaa2: rename evq info to dpaa2 eventq
58ac377 - PVT:bus/qbman: memset the portal memory to zero
f31431b - PVT: test: add pdcp tests for DPAA1 SEC
caed7a2 - crypto/dpaa_sec: add pdcp proto offload support
378536f - crypto/dpaa_sec: ipsec offload add null algo support
5367a25 - test/crypto: add test vectors for pdcp lookaside offload
15c2b90 - crypto/dpaa2_sec: add pdcp offload support
092cfb0 - security: add pdcp protocol support
ae65359 - PVT:add security unit test compile time flag
e22fee5 - test/crypto: add test vector for ipsec lookaside offload
33f4c26 - PVT:test/crypto: fix the devid testcases
d81dae3 - crypto/dpaa2_sec: multi algo support for ipsec session
0a7ebc3 - crypto/dpaa2_sec: add out of place crypto support
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
*include the following changes:
9448fe7 - PVT:nxp: increase DPMCP counts
e324b1f - crypto/armv8: fix HMAC supported digest sizes
cba260d - net/ppfe: port enable/disable fix on running traffic
57a1ec9 - net/ppfe: mtu errata workaround for LS1012Rev1
72172d2 - net/ppfe: app rerun fix on running traffic
370758e - net/ppfe: jumbo setting removed during initialization
faac20e - PVT:event/dpaa2: fix max port and parallel handling
8bc5683 - PVT:QDMA fix the IOVA as VA flag
b97bb46 - PVT:net/dpaa: fix push mode init queue handling
b2ad260 - PVT:bus/dpaa: fix LS1043 push mode disable patch
14096cb - crypto/openssl: sg support for inplace buffers
f96e21c - net/ppfe: add ETH_HEADER and CRC in mtu
01bc62f - PVT:net/dpaa2: fix the prefetch rx to honor nb pkts
4420f8f - PVT: net/dpaa2: minor log fixes
e52b626 - net/ppfe: fix crash on packet receive
ed2048b - PVT: dpaa: change the LS1043 errata flag to compile time with id
fdb1620 - nxp: make dynamic scripts executable
f4c5760 - PVT: net/dpaa: check if fmc is executed
93862f8 - PVT: net/dpaa: disable default push mode for LS1043
64a9038 - PVT: bus/dpaa: pass vdqcr exact configuration from the user
04e4240 - crypto/dpaa_sec: convert phys call to iova calls
3d8f00e - doc/eventdev: fix double entry for dpaa
3156f0a - app/crypto-perf: check minimum lcore number
2d705f8 - net/liquidio: fix link state fetching during start
33ba176 - net/bnxt: fix Rx checksum flags
9073e33 - net/failsafe: fix duplicate event registration
2531da7 - net/failsafe: fix removed sub-device cleanup
afdd810 - net/bonding: export mode 4 slave info routine
10180c8 - net/i40e: fix shifts of signed values
d647255 - net/qede: fix unicast filter routine return code
ce9aab5 - net/qede: fix missing loop index in Tx SG mode
30407bf - net/qede: fix multicast filtering
2219b5b - net/ixgbe: fix DCB configuration
*fix gcc-8 build error
*add l2fwd-qdma
*set EXTRA_CFLAGS for oe_runmake
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
1. Rename the recipe version
2. Remove add-RTE_KERNELDIR_OUT-to-split-kernel-bu.patch
3. Add cmdif demo and lib
4. Enable openssl and kni
5. Changes:
11d461d - PVT: dpaa: Coverity fixes
f48f745 - PVT: dpaa2: Coverity fixes
4294b65 - Merge pull request #581 in GITAM/dpdk from bugfix/DPDK-1236-vhost to 17.11-next-qoriq
ea9e9f5 - PVT:examples/vhost: add NXP NON upstream compilation flag
fa63d1a - PVT: dpaa2: add dynamic AIOP DPL script
0c5d852 - PVT: crypto/dpaa_sec: Adding a check to verify portal configuration
3be54a7 - PVT: crypto/dpaa_sec: adding a check to create mempool only once per device
09dc340 - PVT: test/test: add macro for dpaa_sec device name
edd313f - PVT: crypto/dpaa_sec: add macro for device name
cad0a33 - Merge pull request #571 in GITAM/dpdk from bugfix/DPDK-1222 to 17.11-next-qoriq
0057e69 - dpaa/event: rearranging of atomic queue support code
2a43d84 - Merge pull request #569 in GITAM/dpdk from feature/DPDK-781 to 17.11-next-qoriq
214085e - README: Update for l3fwd with eventdev config
5ab4786 - PVT: mbuf: change mempool set from register
4ecd97c - license: introduce SPDX identifiers
e762ed7 - doc: add DPAA eventdev guide
84956ed - crypto/dpaa2_sec: fix build with GCC < 7
e716b6f - crypto/dpaa2_sec: fix build with GCC 7
a38ca35 - lib: remove unused map symbols
4d8a6de - net/dpaa2: remove unused global variable
513dac2 - bus/fslmc: fix build with latest glibc
ae9a891 - bus/dpaa: fix default IOVA mode
3d4dacb - bus/fslmc: fix DPCI compare in scan
080fda4 - bus/dpaa: fix clang warnings
d82a750 - crypto/dpaa2_sec: fix enum conversion for GCM
17ae857 - crypto/dpaa_sec: fix enum conversion for GCM
2e1e748 - net/dpaa: fix potential memory leak
18a9fad - Merge pull request #566 in GITAM/dpdk from ~NXA15309/dpdk:DPDK-781-l3fwd-event to 17.11-next-qoriq
6acd7a7 - PVT: doc: update the cmdif doc with correct AIOP ELF path
0056df7 - PVT: examples/l3fwd: adding CLI parameters for eventdev config
46aaafa - PVT: raw/dpaa2_cmdif: use iova-vaddr conversion macros
e7933b2 - PVT: bus/fslmc: add typecast in iova-vaddr conversion macros
fa06a86 - PVT: doc: add DPAA2 based CMDIF demo
5fcd632 - PVT: examples/cmdif: add the command interface demo application
3bcae6d - PVT: examples/cmdif: add CMDIF SHBP library
a8ff22c - PVT: examples/cmdif: add CMDIF server library
86a71f5 - PVT: examples/cmdif: add CMDIF client library
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
| |
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
|
|
| |
*dpdk includes dpdk-extras
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
update to 076aa8e
*include the following changes:
076aa8e - bus/fslmc: change the eqcr stashing threshold to 1
adc0955 - net/dpaa: Change default tail drop size to 256.
a3921f8 - net/dpaa2 : Revert "enable fetching hash result from hardware"
e901680 - net/dpaa2:Setting correct frame size in dev_mtu_set
d61cd8f - net/dpaa:Setting correct frame size in dev_mtu_set
8bff395 - Merge branch '17.05-next-qoriq' into 17.05-qoriq
14f2b6f - Merge remote-tracking branch 'stable/17.05' into hotfix/DPDK-1036_stable_17.05-to_qoriq
5afa218 - Merge pull request #482 in GITAM/dpdk from DPDK-178-BE to 17.05-next-qoriq
0192452 - net/dpaa: add frame count based tail drop with CGR
d5026f6 - net/dpaa2: removing double env variable for Tail drop setting
7468d34 - net/ixgbe: fix compilation on ARM BE
c493e1f - net/i40e: fix compilation on ARM BE
f502ece - bus/dpaa: fix compilation on ARM BE
bfa94d6 - lpm: fix compilation on ARM BE
815ea7d - pmdinfogen: fix cross compilation for ARM BE
14c81be - Merge pull request #478 in GITAM/dpdk from DPDK-806-phyaddr to 17.05-next-qoriq
b31eb4d - Merge pull request #472 in GITAM/dpdk from DPDK-1010-misc to 17.05-next-qoriq
11c1c9e - bus/dpaa: fix missing symbol for shared build
07e60bd - net/dpaa2: set queues if reconfiguration is done
1918d8c - test/test: improve dequeue logic for crypto operation
b0c1ecb - net/dpaa2: support to configure taildrop size
223fe63 - net/dpaa2: support rx query count api
3333924 - net/dpaa2: enable parse error packet to driver by default
4eec0f0 - net/dpaa: optimize phy to virt for push mode queue
8b3e1c9 - net/dpaa: removing the data prefetch from driver
7505585 - net/dpaa: increase the tail drop length
23505e0 - net/dpaa: optional support for push mode queues
cad1ddb - crypto/dpaa: optimizing the virt to phy conversion
4c84009 - net/dpaa: optimize the phy to virt conversion
d44f70f - mempool: indicate if mempool elements are allocated from muliple memzones
77e5fd8 - errata: dpaa - change the block size flag name in alignment with upstream
305c71a - errata: mbuf - dpaa errata to use family mask
cd6f661 - bus/dpaa: adding fq as a parameter for portal get
2daf985 - Merge pull request #474 in GITAM/dpdk from bugfix/DPDK-845-correction to 17.05-next-qoriq
3a2ea0d - examples/ipsec-secgw: add protocol offload cfg files for 64x64 tunne
*install nxp config files
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
*update to 3d7a6ae
include the following changes
3d7a6ae - license: fix legal review request comments
148e3dc - Revert "crypto/openssl: fix compilation break with openssl 1.1"
9845264 - crypto/openssl: fix compilation break with openssl 1.1
95e380c - net/dpaa2: set queues if reconfiguration is done
64578fa - bus/dpaa: fix port order shuffling
f58c470 - Merge pull request #451 in GITAM/dpdk from feature/DPDK-837 to 17.05-qoriq
7132562 - dpaa: Patch to fix coverity issue
*remove 0001-fix-build-with-gcc-7.1.patch
patches have beed applyed
*remove load-devel-config.sh
fix the below error
|can't read load-devel-config.sh
*Remove the commented code.
*replace ${datadir}/tools with ${datadir}/*
*replace /usr/bin with ${bindir}
*replace /usr/sbin with ${sbindir}
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
*include the following changes
d17f3e0 - Remove "All rights reserved" in copyright
ce5e45a - dpaa: changing type of disable script
fc00cb6 - Update copyright text based on legal review input
3b1d9a8 - Services: disable_services.sh script added to disable the services
878feaf - dpaa2: make loopback script executable
a55e7b1 - dpaa2: disable PEB buffers for ls1088
327fd49 - dynamic_dpl: BOARD_TYPE environment variable dependancy removed
c56f9dd - dynamic_dpl: add board_type environment variable
72bd2b8 - dpaa2: loopback_ipsec_secgw.sh modified for latest application changes
53c368f - dpaa2: loopback_ipfragment_reassembly.sh modified for large size ping
b3ea7ab - dpaa2: adding support for PERF Buffers
Signed-off-by: Chunrong Guo <B40290@freescale.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
*include the following changes
98f548c - dpaa2: fix incorrect copyright string
7962baa - examples/ipsec-secgw: modify port numbers in config files
3217401 - dpdk-extras: updating submodule commit
e011184 - dpdk-extras: update commit of submodule
4bea5be - dpaa2: fix incorrect copyright string
09e88a4 - dpdk-extra: update submodule commit
7fc9dad - IPSEC:Enabling dequeue of all pending packets before retransmitting
eaf69d3 - Merge pull request #377 in GITAM/dpdk from ~B10814/dpdk:16.07-qoriq to 16.07-qoriq
6a5d817 - dpaa: naming alignment with 17.05 code
b802c02 - mempool: fix search of maximum contiguous pages
b889f0b - net/dpaa2: tx cgr setting to frame based
e3b9a92 - net/dpaa2: change rx and tx queue numbers from MC attributes
5aba5d9 - vfio: fix memseg error message
ec49f70 - Merge pull request #376 in GITAM/dpdk from ~B27504/dpdk:16.07-qoriq to 16.07-qoriq
c024799 - Merge pull request #373 in GITAM/dpdk from ~B10814/dpdk:16.07-qoriq to 16.07-qoriq
d3b2ef0 - dpaa1: have separate device id's for eth and sec
874df10 - dpaa: update the parsing mask
0eff523 - bus/fslmc: panic on failure to get DPIO
fbd65d1 - dpaa2: obtain kernel version and toggle MSI setup
2143d38 - dpaa: modify compatible string due to kernel update from 4.1 to 4.4
d17c69d - dpdk-extras: commit-id updated
43f4f81 - Merge pull request #369 in GITAM/dpdk from ~B10814/dpdk:16.07-qoriq to 16.07-qoriq
431ff86 - net/dpaa: expose env variable to disable taildrop
8e451ee - Merge pull request #366 in GITAM/dpdk from ~B49015/dpdk:16.07-qoriq_fix to 16.07-qoriq
3876243 - DPAA2: coverity issues fixes
Signed-off-by: Chunrong Guo <B40290@freescale.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
| |
Signed-off-by: Chunrong Guo <B40290@freescale.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
|
|
|
|
|
|
|
| |
*include the following changes
47ee260 - dpaa2: sync dynamic DPL creation and destroy scripts
210d969 - dpaa2: set platform specific value for QoS entries
31f9b14 - Adding BSD License - COPYING
be5e732 - Merge pull request #12 in GITAM/dpdk-extras from ~B46179/dpdk-extras:master to master
d0f97d4 - Removing LICENSE.GPL file
Signed-off-by: Chunrong Guo <B40290@freescale.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
*include the following changes
a3395d2 - Merge pull request #310 in GITAM/dpdk from hotfix/DPDK-477-l3fwd-performance to 16.07-qoriq
cda2d04 - dpaa2: disable bug_on in qbman
cd7609b - dpaa2: enable virt addressing by default
0a17438 - dpaa2: fix legal copyright for MC files
0b5b9f9 - Merge pull request #306 in GITAM/dpdk from ~B35197/dpdk:16.07-qoriq to 16.07-qoriq
e1ab876 - dpaa_sec: allocate ctx memory from per device mempool in place of malloc
2fcbd10 - dpaa: fix incorrect header macro name
23ec077 - dpaa2:pool: removing comments and remove mbuf_size
ed6da95 - dpaa2: fix 0 buffer release call to qbman
0bbba9c - dpaa2: update ext for dpl scripts
8061b41 - dpaa: enable frame queue taildrop for rx queues
baec797 - dpaa2: compilation warning with GCC 6.1
b6d8b7c - ext: updating the ext commit
f5a43ca - dpaa - update the readme files
27c2b01 - dpaa build check script with debug
a3e73f0 - dpaa2: remove unused sw annotation and duplicate code for rx buffer layout
c00e7cb - dpaa2: Handle boundary condition and set invalid bpid properly
0c4c95f - DPAA:Adding correct flib directories path in Makefile
5f9295f - dpaa2: in sync with upstream code
b3926f9 - Merge pull request #289 in GITAM/dpdk from ~B56361/dpdk-b56361:feature/DPDK-359 to 16.07-qoriq
9c3cb3e - dpaa_sec: boundary check for session and qp logic
13262d5 - dpaa2: add support for pause frames
adc1fe1 - Merge pull request #292 in GITAM/dpdk from ~B35197/dpdk:16.07-qoriq to 16.07-qoriq
306942a - dpaa2: Improve mbuf-fd conversion routines to support fragmentation
3a363b7 - Merge pull request #294 in GITAM/dpdk from ~B27504/dpdk:16.07-qoriq to 16.07-qoriq
d85e655 - dpaa1: Add functionality to enable/disable multicast ethernet frames
690eb31 - Merge pull request #293 in GITAM/dpdk from ~B10814/dpdk:16.07-qoriq to 16.07-qoriq
585f8bc - ethdev: prevent duplicate event callback
4534008 - eal/arm: fix file descriptor leak when getting CPU features
ce66837 - app/testpmd: fix timeout in Rx queue flushing
68f549a - app/testpmd: fix RSS hash key size
3e65873 - app/testpmd: fix help of MTU set commmand
011af8b - pmdinfogen: fix clang build
1fbb214 - examples/qos_sched: fix dequeue from ring
cbe4f1e - examples/l2fwd-crypto: fix verify with decrypt in chain
c1a7e72 - examples/ipsec-secgw: check SP only when setup
c7e10ca - timer: fix lag delay
34405e3 - vhost: fix Windows VM hang
d30eb3f - tools: fix virtio interface name when binding
24d1523 - tools: fix json output of pmdinfo
f198525 - Merge pull request #291 in GITAM/dpdk from ~B46179/dpdk_rebase:16.07-qoriq to 16.07-qoriq
60e04ab - IP_FRAG: Updating correct packet type in fragmented packets
5c13b51 - DPAA:Adding refcount support in ethernet driver
9355023 - net/dpaa2: add support for free buffer count
249254f - Merge pull request #285 in GITAM/dpdk from ~B35197/dpdk:16.07-qoriq to 16.07-qoriq
69eda52 - dpaa_sec: implement attach/detach qp with session apis
0038181 - ipsec-secgw: attach session to a queue pair
5b2a271 - cryptodev: add apis to attach session with queue pair
0a9ad9f - cryptodev: add max_nb_session_per_qp parameter in rte_cryptodev_info.sym
5777555 - Merge pull request #287 in GITAM/dpdk from ~B10814/dpdk:16.07-qoriq to 16.07-qoriq
505624c - dpaa1: fix coverity reported issues
da4765d - dpaa2: fix the coverity reported issues
cb0fa4e - dpaa2: upgrade MC to 10.1.0
5e45742 - DPAA: Removing usage of shared portals in QBMAN
2e9ee37 - DPAA: Adding perf optimizations in qman
e16eac0 - DPAA: Adding performance optimizations in ethernet driver
a08afad - DPAA: Adding L3_IPV4_EXT as supported ptype
1387949 - DPAA: Correcting the Parse results masks
dd7ea75 - mk: fix build of assembly files for ARM64
5cd5587 - flib/rta: fix HMAC key size in cnstr_shdsc_hmac()
c686a81 - crypto/dpaa2_sec: add per device mempool to store frame list entries
575b661 - Merge pull request #279 in GITAM/dpdk from ~B10814/dpdk:16.07-qoriq to 16.07-qoriq
ff60419 - Merge pull request #274 in GITAM/dpdk from ~B46179/dpdk_rebase:16.07-qoriq to 16.07-qoriq
9b4d9da - IP_RSMBL: Removing compilation failure from IP_Reassembly
588049f - DPAA: Adding checksum offload support for SG use-case
774a5e7 - dpaa: removing unused dtsec registers and routines
dc00642 - dpaa: add support for unicast mac addr filters
0c047b3 - dpaa: removing warning with 32 bit compilation
4cf6c40 - mbuf: use pktmbuf helper to create the pool
ee78cc9 - fsl_qbman: ceetm: fix parsing of lni and sp id ranges
6a80c9c - fsl_qbman: fix bman debugfs endianness
bd9d970 - fsl_qbman: fix kernel doc comments
0922755 - fsl_qbman: ceetm: add missing endianness conversions
704abbb - fsl_qman: Fix endianness in ccgr query
c299629 - fsl_qman: Fix endianness class queue query
5638a2c - fsl_qbman: Fix endianness for wq query
Signed-off-by: Chunrong Guo <B40290@freescale.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
| |
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|