summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* qemu-qoriq: Mark is specific to imx/qoriqKhem Raj2019-08-281-2/+1
| | | | | | | | It has started to fail now that we have libssh dependency in 4.1 instead of libssh2 in earlier versions, so this recipe needs to be upgraded to use 4.1 release as well, but I dont have way to test it out. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* u-boot-qoriq-fw-utils: Avoid stripping debug symbolsDaniel Klauer2019-08-271-3/+2
|
* u-boot-fslc-common: Bump revision to ca0ab15271Fabio Berton2019-08-231-1/+1
| | | | | | | | This commit includes the following change: ca0ab15271 pico-imx7d: Sync all defconfigs with pico-imx7d_defconfig Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
* mesa: switch mesa to swrast renderer for mx8mm machine, resolve build issueAndrey Zhizhikin2019-08-231-0/+13
| | | | | | | | | | | | | | | After mesa update to 19.1.0, the OSMesa is not anymore explicitly set to 'classic' rather than defaults to 'none'. If the DRI driver is included in the build and neither gl nor 'classic' osmesa is used - this causes the build to fail. This commit disables the gallium for mx8mm, sets the dri drivers to swrast and explicitly defines the 'classic' osmesa to be built. gallium is disabled since current support state of i.MX8M Mini GPU in gallium is unknown. Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com>
* recipes: Use BPN instead of PN in SRC_URIsAndrey Zhizhikin2019-08-232-2/+2
| | | | | | Fix QA issue: SRC_URI uses PN not BPN [src-uri-bad] Signed-off-by: Andrey Zhizhikin <andrey.z@gmail.com>
* atf: Fix builds of native tools during build processDaniel Klauer2019-08-151-0/+2
| | | | | | | | | | | | atf builds some native tools such as fiptool during its build process, this should use Yocto's native toolchain options instead of just the host's. This way the fiptool build will actually use the openssl-native dependency from Yocto's native sysroot, instead of the host's openssl (which may not exist). Signed-off-by: Daniel Klauer <daniel.klauer@gin.de>
* Split fiptool build into separate recipeDaniel Klauer2019-08-152-6/+27
| | | | | | | | | | | | Previously, ddr-phy built native fiptool during its own build process, but without using Yocto's native toolchain settings. This results in unexpected host dependencies. For example, fiptool depends on openssl, which may or may not be installed on the host. So now fiptool is built in a separate recipe (atf-tools-native) which can easily depend on openssl. Signed-off-by: Daniel Klauer <daniel.klauer@gin.de>
* atf: Only enable and depends on optee when supportedAlban Bedel2019-08-151-2/+6
| | | | | | | | | Use the new optee machine feature to only enable it when it is supported by the machine and the distro. We use a package config switch to only add the dependency when it is needed. This prevent a build failure on machines that don't support optee. Signed-off-by: Alban Bedel <alban.bedel@aerq.com>
* optee: Add optee as a machine feature to all supported boardsAlban Bedel2019-08-1510-0/+20
| | | | | | | | | | | | Currently we assume that all qoriq arm64 boards support optee, however that might not be the case for boards added by other layers building on top of meta-freescale. To better support this case add a machine feature to indicate if a given machine has optee support. Add the new optee feature to all qoriq arm64 except ls2080ardb as it doesn't seems to be supported by optee. Signed-off-by: Alban Bedel <alban.bedel@aerq.com>
* imx6sllevk:imx7dsabresd:imx7ulpevk: Remove firmware-imx-brcm dependencyDaiane Angolini2019-08-153-5/+1
| | | | | | | | The Broadcom support was removed by d94f748d14d89fd2c62f03ddf181706626b0de91 so we do not need to install it on images any more. Signed-off-by: Daiane Angolini <daiane.angolini@nxp.com>
* linux-fslc-lts: upgrade 4.19.56 -> 4.19.66Andreas Müller2019-08-151-2/+2
| | | | Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
* Fix WKS_FILE to use files with .in extensionFabio Berton2019-08-123-3/+3
| | | | | | | | | | meta-freescale commit 6be9d197386b5c3bd72023981df805d42f87684c renamed imx-uboot-spl-bootpart.wks to imx-uboot-spl-bootpart.wks.in The .in extension in wks files allows bitbake variables to be used in kickstarter files. Set WKS_FILES for all machines to match this new filename. Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
* linux-imx_4.14.98: Backport patches to fix building with gcc 9Daiane Angolini2019-08-083-0/+293
| | | | | | The issue is reported by issue #136 Signed-off-by: Daiane Angolini <daiane.angolini@nxp.com>
* libimxvpuapi2: Add recipeCarlos Rafael Giani2019-08-061-0/+25
| | | | | | | | | | | This is the successor to libimxvpuapi. Since at this moment, there is software still using the former, its recipe remains in place. Both versions (1 and 2) can coexist on the same rootfs. Version 2 introduces support for i.MX8 (mx8m and mx8mm for now), and also still supports i.MX6. Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
* libimxdmabuffer: Add recipeCarlos Rafael Giani2019-08-061-0/+41
| | | | | | | | | | | | | | | | | | libimxdmabuffer provides an API for allocating and handling physically contiguous buffers ("DMA buffers") on imx6, imx7, imx8 machines with the imx-kernel. The underlying allocation can be backed by the PxP, IPU, ION, DWL, G2D APIs. The API is backend agnostic. The same structures and functions can be used with the underlying PxP and IPU allocators for example. Furthermore, the library defines a "default" allocator (which one is the "default" is determined by the library and by the build configuration). By using this API, libraries can use compatible types for exchanging DMA buffers in userspace, and can also use the same API and support mx6, mx7, and mx8 machines, without requiring platform specific code changes. Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
* gstreamer1.0-plugins-base: Move bbappend to 1.16 versionCarlos Rafael Giani2019-08-061-0/+0
| | | | | | This follows the OE-Core upgrade. Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
* xf86-video-fbdev: Delete 0.4.2 version hereKhem Raj2019-08-061-11/+0
| | | | | | This is already in OE-core and a newer version Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dpdk,dpdkvpp: Define valid configs for armv7Khem Raj2019-08-062-0/+10
| | | | | | Do not build for arm < v7 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dpdkvpp: -mtls-dialect=trad is aarch64 specificKhem Raj2019-08-061-1/+4
| | | | | | | | Fixes x86_64-yoe-linux-gcc: error: unrecognized argument in option '-mtls-dialect=trad' x86_64-yoe-linux-gcc: note: valid arguments to '-mtls-dialect=' are: gnu gnu2 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dpdk,dpdkvpp: Depend on numactl for x86_64Khem Raj2019-08-062-0/+2
| | | | | | Fixes missing numa.h issue Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opencv: Adjust the bbappend for version 4.xKhem Raj2019-07-163-51/+3
| | | | | | The patch is no longer needed, relevant code no more present in opencv Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dpdk,dpdkvpp: Limit to x86/armKhem Raj2019-07-152-2/+16
| | | | | | Other architectures are not supported and musl is not either Signed-off-by: Khem Raj <raj.khem@gmail.com>
* kernel-module-qcacld-lea: Mark imx soc specificKhem Raj2019-07-151-1/+1
| | | | | | | | | It tries to build for qemuarm and qemuarm64 as well and fails to build e.g. https://errors.yoctoproject.org/Errors/Details/251571/ Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ls1046afrwy :add qe-ucodeChunrong Guo2019-07-121-1/+1
| | | | Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* ls1046ardb: add ls2-phyChunrong Guo2019-07-121-1/+1
| | | | Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* ls1046ardb: add qe-ucodeChunrong Guo2019-07-121-1/+1
| | | | Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* optee-test-qoriq: fix build failure with GCC9Chunrong Guo2019-07-123-40/+29
| | | | | | | *fix the below error: |error: '%*s' directive argument is not a nul-terminated string [-Werror=format-overflow=] Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* ls2-phy: set COMPATIBLE_MACHINE as qoriqChunrong Guo2019-07-121-1/+1
| | | | Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* dpdkvpp: add recipesChunrong Guo2019-07-125-0/+252
| | | | | | | | | | | *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 Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* vpp-core: update to ff7bf7bChunrong Guo2019-07-127-72/+129
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | *update to lsdk 1906 tag include the following changes: ff7bf7b - Merge pull request #32 in DQNS/vpp from ~NXA12342/vpp:19.01.1_devel to 19.01.1 5c2b539 - PVT: ipsec: Fixed capability matching for openssl based sha1 authentication a24588f - PVT: dpdk_plugin: introducing ipsec protocol offload 33d0d81 - Fixed Flexbuild integration issues c200b3f - dpdk-ipsec: Fixed ramdom Crash in esp traffic 2a0a031 - Enhanced the VPP startup configuration 05bce64 - Merge pull request #30 in DQNS/vpp from ~NXA19696/vpp:19.01.1 to 19.01.1 c63f8ad - Fixed RPM packaging of VPP libs w.r.t Tag format 85e9d4d - Merge pull request #29 in DQNS/vpp from ~NXA19696/vpp:19.01.1 to 19.01.1 26d2455 - Adding README for NXP platforms 9df88fa - Handled review comments d66c318 - Fixed Debian packing support for arm64 platform 513a05a - Fix for using Best mem pool ops as per platform d0f5fa4 - Updating path for cmake cross compile file fe17e96 - More Compilation Fixes e64c6ca - Cross compilation & RPM pkging known issues cbd68cb - 19.01.1 Release Notes 3262adc - cmake: fix out-of-git-tree build d302022 - Fix vpp crashing when attempting to run in kubernetes Pod 6342e48 - tcp: allow future acks if in window 46ee286 - IPSEC: crash on SA dump when SA are bound to tunnels bad0bcd - Fix crash in barrier sync when vlib_worker_threads is zero 372a33e - buffer chain linearization *update PV to "19.01" *refresh patch *update DEPENDS Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* pktgen-dpdk: Upgrade version to 3.6.6Chunrong Guo2019-07-121-7/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | include the following changes: b3d08bb - update version number and log 7c4187c - add new portInfo lua data 0c39019 - Cleanup build, add plugin support and meson build not working f6e9e33 - fix crash not resetting tty and other fixes 4199555 - Merge branch 'bug-fix' 3942af7 - fix Update to version 3.6.5 176df0a - fix ldflags order for lua lib 8c746d0 - minor message missing a word 5e29e43 - reorder the defines on the LDFLAGS line 6ed0bde - convert to DPDK network structs and fix offload code. 0e8ac37 - fix lua builds oni ubuntu 18.10 5b537c9 - change port command to use uint16_t 96776e5 - update .cfg file information b5133f1 - add page stats screen 5b883b2 - add more color to static info a0c5819 - convert all rte_delay_ms to rte_delay_us_sleep 83b1bfa - remove need for rte_timer_manage 4dcc2db - use faster timer routines then rte_timer_manage cca5864 - remove cycles.h header 0d5d9ab - change cli_use_timers routine to run rte_timer_manage 7283ba7 - remove crc-strip option b44f9e6 - remove init stats structure a82bbf5 - fix formatting with spaces 81623f1 - update readme, version and changelog Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* dpdk: Upgrade from version 17.11 to 18.11Chunrong Guo2019-07-126-108/+182
| | | | | | | | | | | | | | | | | | | | | | | | | | | *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>
* ddr-phy: fix typoChunrong Guo2019-07-121-1/+1
| | | | Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* ovs-dpdk: Upgrade 2.10 -> 2.11Chunrong Guo2019-07-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | *Update to lsdk 1906 tag include the following changes: abc80ef - netdev-dpdk: have env based configurable number of packet buffers 2410fad - rhel: Use PIDFile on forking systemd service files a631ef7 - dpif-netdev: fix meter at high packet rate. 6b14ed0 - dpif-netdev: Fix double parsing of packets when EMC disabled. 0118706 - dpif-netdev: Update comment about flow installation race. 3c54cf1 - netlink linux: fix to append the netnsid netlink attr. 9a72286 - conntrack: Fix minimum connections to clean. 9b2e4ff - datapath: Revert "datapath: Fix template leak in error cases." 62c7a9d - compiler: Fix compilation when using VStudio 2015/2017 2560908 - datapath: fix flow actions reallocation fae3311 - Docs: fix conntrack flow ct_state input daeab19 - netdev-dpdk: Fix printing masks with wrong byte order. 24909e6 - Prepare for 2.11.2. 022c173 - Set release date for 2.11.1. 044a61d - netdev-tc-offloads: Fix probe tc block support 434ffa9 - rhel: Include all header files in the Fedora's devel package 359a7d2 - reconnect.c: Don't transition back to ACTIVE when forced to RECONNECT. 2924b48 - OVN: Make periodic RAs consistent with RA responder. 54f2d11 - OVN: Always send prefix option in RAs 76f2c3b - OVN: Use offset instead of pointer into ofpbuf 6ffb917 - ofproto: fix the bug of bucket counter is not updated b1f9b4e - netdev-dpdk: Print netdev name for txq mapping. 9068a55 - dpif-netdev-perf: Fix millisecond stats precision with slower TSC. 3c440c2 - ifupdown.sh: Add missing "--may-exist" option b88dafd - dpif-netdev-perf: Fix double update of perf histograms. a55b827 - dpdk: Stop dumping memzones to stdout. 68b2304 - dpctl: Drop parser debug information. 5dea53a - netdev-tc-offloads: Properly get the block id on flow del/get 4c26dfd - netdev-tc-offloads: Improve log message for icmpv6 offload not supported d8bb89f - conntrack: Replace structure copy by memcpy(). Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* qemu-qoriq: update to 79df057Chunrong Guo2019-07-121-1/+1
| | | | | | | | | | | *include the following changes: 79df057 - vfio/fsl-mc: Check command version on dprc and dpmcp cmdif 475d962 - vfio/fsl-mc: Add support for DPRC command version-2 271b7fa - vfio/fsl-mc: Add interface for device region range 23f6ed8 - vfio/fsl-mc: Setup address space for QBman CE-SH region 89add80 - vfio/fsl-mc: Fix mc-command version check Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* ls1046afrwy: add machine configChunrong Guo2019-07-121-0/+35
| | | | Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* ls1046ardb: rename UEFI_NORBOOT -> UEFI_QSPIBOOTChunrong Guo2019-07-121-1/+1
| | | | Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* optee-os-qoriq: add OPTEEMACHINE for ls1088ardb-pb and ls1046afrwyChunrong Guo2019-07-121-0/+2
| | | | Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* secure-obj: update to cd3c353Chunrong Guo2019-07-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | *update to lsdk 1906 tag include the following changes: cd3c353 - updated the year in file copyright headers. 4d5cc8d - app/device_record: Stores the client's device record in a file. 322a6d6 - APP,TA,LIB: Creating 2 separate objects for public and private key for KeyPair bc0553a - removed dead code under compile time flag SK_INVALID_HANDLE f2fddd6 - added support for sk_digestinit sk_digestupdate sk_digestfinal. f509695 - APP_TA_LIB: Adding SK_ATTR_PRIVATE attribute for objects 6791873 - SOBJ_LIB: Exposing SK_CreateObject for PKCS#11 Library f3da9c0 - TA: Miscellaneous Changes 07ef069 - APP_ENG: Adding support for OAEP Encryption in engine and engine app 9fdbf7a - LIB_TA: Adding support for OAEP Encryption Scheme 1652924 - TA: Not returning TEE_ERROR_BAD_PARAMETERS for unmatched attributes 2a49505 - LIB: Exposing SK_GenerateKeyPair and SK_EraseObject Functions bbcbe6c - BUG: Fix for PLATSEC-666 e944456 - BUG: Fix for PLATSEC-628 41a0eaa - Making secure object components ompatible to OpenSSL 1.1.0 and 1.0.2 f72cf1a - Fix for PLATSEC-581 Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* libpkcs11: update to a243fb2Chunrong Guo2019-07-121-1/+1
| | | | | | | | | | *update to lsdk 1906 tag include the following changes: a243fb2 - corrected the start year ac5d4db - Updated the year in file header. d642bdd - Changes for making SK_GenerateKeyPair API compatible Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* crconf: add recipesChunrong Guo2019-07-122-0/+48
| | | | | | | | | | | | | | | | | include the following changes: 7b5819e - Restructure copy_name() to follow best practice 8bd9964 - Set algorithm mask only when type is provided 81bd24f - Don't overwrite compiler env. if alredy set 0248373 - Update dependencies - Linux kernel and iproute2 headers 547b464 - Fix potential segfault when omitting type argument 274eaba - Honor max length of alg/driver name in strncpy 9d0ae95 - Improve usage information 6ab1c3c - crconf: Fix error output on crconf_del_alg. d8a0a6f - crconf: Add a basic manpage 27a173f - crconf: Update headers to the Linux mainline 873058f - crconf - Linux crypto layer configuraton tool Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* dce: update to 1b9e9acChunrong Guo2019-07-121-1/+1
| | | | | | | | | | | | | | | | | *update to lsdk 1906 tag include the following changes: 1b9e9ac - .gitmodules: use codeaurora url e451edf - perf-test: Reject large input files 3bdbdf3 - perf-test: Error out in stateless decomp mismatch 64fc3b1 - dce-internals: Efficient FQ full scheme d1add39 - Merge pull request #32 in DPAA2/dce from ~NXA07713/dce:jira/QSDK-5623-update-dce-license-files to master b3c27ed - LICENSE: Remove GPL License 68a6dab - Merge pull request #31 in DPAA2/dce from ~NXA07713/dce:jira/QSDK-5623-update-dce-license-files to master 0f33f16 - LICENSE: Update License year and full BSD-3 text 0175bb4 - Merge pull request #30 in DPAA2/dce from ~NXA07713/dce:jira/QSDK-5621-dpdcei-object-fails-to-unassign-out-of-child-dprc to master 361e4d0 - dpdcei: Cleanup hanldes in dpdcei_deactivate Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* cst: update to e04690bChunrong Guo2019-07-121-1/+1
| | | | | | | | *update to lsdk 1906 tag include the following changes: e04690b - scripts/platform: LS1028A: Removes signing of PPA image Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* spc: update to be7dd8eChunrong Guo2019-07-121-1/+1
| | | | | | | | | | *update to lsdk 1906 tag include the following changes: be7dd8e - Increment SPC Tool version 2dafd3a - Refactoring following support for multiple protocols 727329a - Multiple protocols support Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* fmc: install all config filesChunrong Guo2019-07-121-1/+1
| | | | Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* linux-qoriq/4.14: update to e3aede3Chunrong Guo2019-07-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | *update to lsdk 1906 tag include the following changes: e3aede3 - tcp: enforce tcp_min_snd_mss in tcp_mtu_probing() 307f55b - tcp: add tcp_min_snd_mss sysctl c3f6a40 - tcp: tcp_fragment() should apply sane memory limits 7d63a76 - tcp: limit payload size of sacked skbs bc6fb71 - Revert "crypto: caam - fix concurrency issue in givencrypt descriptor" 5ead7f1 - dpaa2-eth: Remove FSL_DPAA2_ETH_DEBUGFS option 34ae8f0 - dpaa2-eth: Move CEETM config options under FSL_DPAA2_ETH 9ac3836 - ahci_qoriq: bug fix for ecc_addr f793640 - arm64: dts: ls1028a: add gpu node 043de79 - sdk_qbman: Avoid variable length array in USDPAA bd9550f - drivers: net: can: flexcan: fix flexcan not working 4660157 - dpaa2-eth: add irq for the dpmac connect/disconnect event 4319197 - dpaa2-eth: Fix incorrect version check e3f7267 - dpaa2-eth: Fix FQ-based enqueue 3b04038 - crypto: caam - fix pkcs1pad(rsa-caam, sha256) failure because of invalid input 4f0c3a1 - crypto: caam - fix concurrency issue in givencrypt descriptor 439f828 - arm64: dts: ls1028a: Add temperature sensor node 2353f24 - dpaa2-eth: No bql accounting for XDP frames 50c4adb - arm64: dts: ls1028a: Fix CPU idle fail. 815dbbc - dmaengine: fsl-edma: support little endian for edma driver e7275aa - arm64: dts: fsl: ls1028a: Add qDMA node 2e4a124 - arm64: dts: lx2160a: update interrupt property for Aquantia phy bd8ee34 - can: flexcan: Handle bit timings overflow 8330f91 - Fix flexcan compiling errors. Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* linux-qoriq/4.19: update to 1a4cab2Chunrong Guo2019-07-122-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | *update to lsdk 1906 tag include the following changes: 1a4cab2 - tcp: enforce tcp_min_snd_mss in tcp_mtu_probing() b20446e - tcp: add tcp_min_snd_mss sysctl 96340e0 - tcp: tcp_fragment() should apply sane memory limits 6aa0603 - tcp: limit payload size of sacked skbs 58cd089 - Revert "crypto: caam - fix concurrency issue in givencrypt descriptor" 2cf3e79 - ahci_qoriq: bug fix for ecc_addr 43aec2b - arm64: dts: ls1028a: add gpu node 8d67002 - sdk_qbman: Avoid variable length array in USDPAA 63a7aba - net: dev: introduce support for sch BYPASS for lockless qdisc e1924fc - net: sched: add empty status flag for NOLOCK qdisc 31639b0 - dpaa2-eth: add irq for the dpmac connect/disconnect event ad0e508 - dpaa2-eth: Fix incorrect version check 1816b9c - dpaa2-eth: Fix FQ-based enqueue 97894b93 - crypto: caam - fix pkcs1pad(rsa-caam, sha256) failure because of invalid input 1bee6b6 - crypto: caam - fix concurrency issue in givencrypt descriptor 582dfcb - arm64: dts: ls1028a: Add temperature sensor node 9be8742 - staging: fsl-dpaa2: Remove duplicate config options 6e189a2 - arm64: dts: ls1028a: Fix CPU idle fail. fe14f5f - spi: nxp-fspi: add "get_name" function 6aa2bb8 - dmaengine: fsl-edma: support little endian for edma driver 2505bc2 - arm64: dts: fsl: ls1028a: Add qDMA node 1a1da4d - arm64: dts: lx2160a: update interrupt property for Aquantia phy 052f93b - can: flexcan: Handle bit timings overflow 4687a6d - can: flexcan: enable flexcan for all architectures ab64674 - can: flexcan: modify the interrupt register handling ce7a15d - net: can: flexcan: can FD Format (FDF) changes *refresh patches. Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* qe-ucode: update recipesChunrong Guo2019-07-121-12/+3
| | | | | | | *install *.bin to boot *set COMPATIBLE_MACHINE to qoriq Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* ddy-phy: update depends atf commit idChunrong Guo2019-07-121-1/+1
| | | | | | *update atf to 1906 tag Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
* mc: update to f72b978Chunrong Guo2019-07-121-2/+2
| | | | | | | | | | | *update to lsdk 1906 tag include the following changes: f72b978 - Add the prebuilt binaries of mc 10.16.2 release a7d982e - Update the license file *Upgrade version to 10.16.2 Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>