Otavio Salvador [Wed, 4 Oct 2017 20:36:04 +0000 (17:36 -0300)]
imx-base.inc: Generate a default IMAGE_BOOT_FILES
When the machine requires a boot partition, it needs to define the
IMAGE_BOOT_FILES to include the device tree files and Linux kernel
image. This is essentially a generic solution so instead of defining
it for all machines we are providing a default value for them.
To implement that, we borrowed an utility function from Raspberry Pi
BSP. It is copied as is at conf/machine/include/utilities.inc file.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Otavio Salvador [Thu, 5 Oct 2017 18:28:43 +0000 (15:28 -0300)]
Merge remote-tracking branch 'yocto/pyro' into pyro+ossystems
* yocto/pyro:
image_types_fsl: define SDCARD_GENERATION_COMMAND for use-mainline-bsp
imx-uuc: update to new git hash, where the patch is been accepted upstream
alsa-state: Add override to use with use-mainline-bsp
imx-uuc: Fix missing build ldflags leading to QA issues
Hiraku Toyooka [Thu, 5 Oct 2017 04:21:02 +0000 (13:21 +0900)]
image_types_fsl: define SDCARD_GENERATION_COMMAND for use-mainline-bsp
When we use the use-mainline-bsp override, SDCARD_GENERATION_COMMAND
becomes empty. As a result, incomplete SD card image is generated.
This patch fixes the problem by specifying appropriate command.
Signed-off-by: Hiraku Toyooka <hiraku.toyooka@cybertrust.co.jp> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Otavio Salvador [Fri, 29 Sep 2017 19:27:02 +0000 (16:27 -0300)]
wic: Force the use of 'msdos' partition tables
Some old SoC has problems to read GPT partition tables so we use
'msdos' as default here and if some vendor wants to override it, it
can still be done in their wks files.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Otavio Salvador [Fri, 29 Sep 2017 19:27:02 +0000 (16:27 -0300)]
wic: Move all wks files to root layer directory
The wic looks for wks files in many places. The root layer directory
is one of those and makes much easier to find the wks files for
reference and use.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Several recipes reference the LICENSE file in their LIC_FILES_CHKSUM variable as ${COREBASE}/LICENSE.
This forces distribution providers to keep this file verbatim or to overload the affected recipes.
The section "Moving to the Yocto Project 1.6 Release" in the Yocto manual suggests removing the LICENSE file where possible.
Remove LICENSE in cases where COPYING.MIT is also given and replace LICENSE with COPYING.MIT if the former was the only entry.
All modified recipes specify LICENSE = "MIT" and none of the in-tree files specify a different license either.
As the packages do not change (the license files are not contained in them), do not increase PR.
1de598e Merge pull request #5 from lijunone/master a5a05da Update linuxrc 61a1449 Merge pull request #4 from mhei/fixes af76f6a uuc: fix format nitpick f8d0c75 uu.c: fix compiler warnings for unused variables 625c36e Merge pull request #2 from mhei/fixes e6304a7 Merge pull request #3 from lijunone/master c342fb0 linuxrc: add utp mass storage setup via configfs f9a8e97 uuc: fix some compiler warnings 65d8bf7 sdimage: use fsync before closing the device a977121 Add travis hint 03d64cf Small Makefile improvements 9a8c844 sdimage: no need to open image file R/W 592fdb6 sdimage: fix partition size check 3d4b3fa Add a .gitignore with the binaries sdimage and uuc 86e0a1b sdimage: move BCB header to 4 sector offset 2fa75b4 uuc: fix format warnings f64baff Honour CFLAGS 85a0b23 sdimage: add includes to prevent warnings
Change-Id: I7e81dd0d4666d00b76be3d78982ef2b1bd039b53 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Max Krummenacher [Sun, 27 Aug 2017 10:22:43 +0000 (12:22 +0200)]
image_types_fsl: fix for dtb filenames containing multiple dots
In _generate_boot_image(), if a dtb file has more than one dot the
current logic fails. e.g. 'device.tree.dtb' will be truncated at the
first dot to 'device' while it should be 'device.tree'.
Fix by removing awk in favour of letting basename also remove
the .dtb extension.
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
This commit merge tag v4.9.43 into 4.9.x+fslc and add the
following change on top:
- 2e5f5cc50c72 ARM: dts: imx7d-pico: Add initial support
- 47e80564c4db ARM: imx_v6_v7_defconfig: Select the coda driver as module
- 62dd13a066b9 ARM: dts: imx6qdl-nitrogen6_som2: fix PCIe reset
Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
These fixes enable qmlglsink support with Qt5 EGLFS, and also fix a
flickering issue in qmlglsink caused by a data race (frames are drawn
while the decoder writes new frame data into their DMABUFs).
Change-Id: I51dc3efee26ebb441ea0ea8f601043f6a0024a5a Signed-off-by: Carlos Rafael Giani <dv7777@gmail.com> Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
mesa: Add patches for RGBA support, YUV, and for resource_changed
Patches 1-14 add support for RGBA-swapped formats and were ported from
https://github.com/austriancoder/mesa/commits/shader-variants
Patch 15 is an experimental patch to enable MESA_ycbcr support. Might not
be needed later on.
Patches 16-19 are needed to make sure new video frames are streamed into
the GPU when using DMABUF FDs.
WIP-st-dri-Allow-YUYV-import is an experimental patch to make use of the
Vivante GPU's hardwired YUV->RGB converter. A clean implementation of this
feature might require MESA_ycbcr or a derivative of that, but for now, this
patch works.
etnaviv-increment-the-resource-seqno-in-resource_changed.patch is a patch
for non-external textures recommended by Philipp Zabel. Does not affect
external EGLimage textures.
Change-Id: Idecd589e48ac0456896ce132e1881bb344426254 Signed-off-by: Carlos Rafael Giani <dv7777@gmail.com> Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Otavio Salvador [Mon, 10 Jul 2017 15:01:12 +0000 (12:01 -0300)]
alsa-lib: Ensure MACHINE_SOCARCH is used consistently
The alsa-lib needs to apply the patches for all i.MX SoCs so using the
'imx' override seems to be the best choice for this specific
use-case.
A missing aspect though was that this should also affect every package
which /depends/ on alsa-lib (e.g: alsa-utils) so it also goes to
MACHINE_SOCARCH architecture fixing the signature change across
different machines.
This fix has been tested using a massive parallel build using
multiconfig.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Chunrong Guo [Tue, 20 Jun 2017 03:27:02 +0000 (11:27 +0800)]
openssl-qoriq: s/inline/static/ to fix gcc7.1 issue
ix the following error:
| ../libcrypto.so: undefined reference to `spcf_bn2bin'
| ../libcrypto.so: undefined reference to `spcf_bn2bin_ex'
| collect2: error: ld returned 1 exit status
| make[2]: *** [link_app.gnu] Error 1
kmscube: Add patches for better GStreamer support and for YUY2 support
Change-Id: I17c77cbae9f23ba415a5d4bb433fcee28a04deab Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
This is a useful tool to test KMS and GBM-based EGL & OpenGL ES drawing
Change-Id: I23d276759c5bc1bec017956070da4ced6352d9eb Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Trevor Woerner [Mon, 29 May 2017 06:17:17 +0000 (02:17 -0400)]
u-boot-fslc.inc: add use-mainline-bsp
Add use-mainline-bsp to COMPATIBLE_MACHINE since this recipe is for situations
where the user wants to use mainline, and u-boot-fslc is considered mainline.
Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Yuqing Zhu [Tue, 23 May 2017 06:27:10 +0000 (14:27 +0800)]
imx-gst1.0-plugin: Upgrade to v4.1.6
-Add an interface in playengine to set video sink using GstElement
This interface is for qmlglsink use or something like that.
-Optimize imxv4l2sink and overlaysink to make
them work with qmlglsrc more effective
Add RGBA format support the two sink.
Reduce the interval to 1ms when do dequeue retry in v4l2.
-Add gst_phy_mem_meta_init()
Avoid critical warning as gst_meta_register add critical check for NULL init_func.
-Aiurdemux add wma voice support
-Add vertical and horizontal flip support for overlaysink and imxv4l2sink
Add vertical and horizontal flip for overlaysink and imxv4l2sink.
Change playengine set rotate interface to set enum value.
Signed-off-by: Yuqing Zhu <carol.zhu@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Yuqing Zhu [Tue, 23 May 2017 06:27:09 +0000 (14:27 +0800)]
imx-parser: Upgrade to v4.1.6
Upgrade license chksum to v16 EULA
Fix segmentation fault in ID3 parser when dataSize is abnormal
Update MP4 PARSER to 06.09.38
Update MP3 PARSER to 03.01.14
Update AAC PARSER to 03.00.11
Update FLAC PARSER to 03.00.6
Signed-off-by: Yuqing Zhu <carol.zhu@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Yuqing Zhu [Tue, 23 May 2017 06:27:08 +0000 (14:27 +0800)]
imx-codec: Upgrade to v4.1.6
-Upgrade license chksum to v16 EULA
Bugfixes:
-VORBIS_Wrapper/VORBIS_DEC: add error handler
Some fuzzy bitstream will cause segmentfault as error handler is not correct.
-Fix wma10_dec's Segmentation fault in performance test
Segmentation fault occurs when decoding several streams in performance test.
Add test_case[] array's size to fix it.
Signed-off-by: Yuqing Zhu <carol.zhu@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
**include the following changes 6c2b61c - update copyright notes f79d523 - fix: reset finish condition before test start e8f7a91 - Merge remote-tracking branch 'upstream/master' 6818263 - Fix ablkcipher algorithms usage in v4.8+ kernels 26e167f - zc: Use the power of #elif e49fe25 - adjust to API changes in kernel >=4.10 2b29be8 - adjust to API changes in kernel >=4.10 c3afb40 - add support for rsa speed tests c9b7a80 - close the session after every test ba49470 - add support for authenc(hmac(sha1), cbc(aes)) speed tests 690cd62 - Merge branch 'master' into hpe2016 5adf04e - Merge remote-tracking branch 'upstream/master' 840c7ba - remove not used variable 2dbbb23 - do more strict code checking to avoid maintenance issues 88223e4 - avoid implicit conversion between signed and unsigned char 8db6905 - use buf_align macro to reduce code duplication b6d0e0f - rename header file to clarify purpose 1fd6062 - fix warnings of "implicit declaration of function" in async_speed ff3c8ab - remove not used local variables 25a1276 - fix incorrect return code in case of error from openssl_cioccrypt e7ef4ea - Merge pull request #17 from michaelweiser/gup_flags 99c6d21 - fix ignored SIGALRM signals on some platforms 71975fa - setting KERNEL_DIR is not necessary to build tests a96ff97 - fix issues with install target 07748d3 - Merge branch 'master' into hpe2016 cc89148 - Fix ablkcipher algorithms usage in v4.8+ kernels 4d6e4fb - Merge remote-tracking branch 'upstream/master' f126e48 - Adjust to another change in the user page API 4257fce - add -async option to run_crypto_tests.sh f953164 - merge sync and async benchmarks into a single program e7af57b - add % to cpu idle for convenience 1883c95 - add a wrapper script for running all tests 998b66b - add notes about configured limits in SEC driver b1a35f3 - fix ignored SIGALRM signals on some platforms b754517 - use the same algorithm names in sync_speed as in async_speed 8baefa4 - force LC_TIME value to avoid mpstat not using ISO8601 format d0978b5 - add sync speed tests with the same format as async ones 15d890b - graceful exit if cryptodev is not built with ASYNC flags 9a595bf - fix typo, use consistent spacing 9461878 - remove output line because it does not add clarity to the results b09c17f - the C standard used by cryptodev is C90 with GNU extensions 447808d - exit early if cryptodev tests are not installed 493afd3 - fix incorrect handling of error cases... e0d2c88 - make default output tabular abc007a - really fix (again...) the mpstat issue 2696cd5 - use $(...) instead of `...` for consistency e8fb004 - fix the scale of the runtime value 119151b - remove old results to avoid incorrect reports 71ac3d5 - fix the reported unit 8c47a0c - setting KERNEL_DIR is not necessary to build tests 182b307 - fix issues with install target 5021828 - do more strict code checking to avoid maintenance issues ab239d7 - return error code of the test if there is one b5228f2 - remove not used local variables 90d67ce - avoid implicit conversion between signed and unsigned char 4b442ca - fix build warnings on implicit function declarations 2821b92 - add a little space in the output for clarity 9d0ef05 - more precision in running mpstat 0180e2b - fix some issues with parsing mpstat output 4257fce - add -async option to run_crypto_tests.sh f953164 - merge sync and async benchmarks into a single program e7af57b - add % to cpu idle for convenience 7d7a733 - sanity check on /dev/crypto availability 137c0c4 - gracefull stop for async speed tests 600eb70 - fix: set min value when allocating alligned memory buffers 18408c9 - add multithreaded wrapper for async speed test 854cc84 - rename algorithm names for clarity 216f235 - honor the -m flag in async_speed 1023ede - add flag to report in a machine friendly format 219a8b4 - enable async code by default 9def784 - Merge remote-tracking branch 'radualexe/new_tests` 149dc1c - add basic optargs support for async_speed test 9595499 - add support for crc32c hash sync speed test 83e3840 - add support for aes-256-xts sync speed test fff72ae - add support for sha2-256 hash async speed test b961800 - add support for sha1 hash async speed test fea5006 - add support for crc32c hash async speed test 8768fad - add aes-256-xts support for async speed test
Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
*include the following changes 209e0e6 - ring affinity: keep jobs and responses in the same ring pair 1cd87fb - remove unused parameter from function signature 688e402 - add new handshake parameters (like old is the new new :) bdd38f2 - fix irq missing issue for all rings b5f6504 - rename structure fields to match their content d0b6e25 - fix column alignment to avoid confusion 66ac4ef - remove not used fields from handshake structures 53716e6 - merge together the functions doing ring pairs initialization ffa6360 - make r_cntrs local to the app_ring structure 61a597f - remove not used allocation of s_c_cntrs_mem a1b8599 - remove not used allocation of cntrs_mem 1246eb8 - make ring indices local to the app_ring structure d01ed6c - remove redundant type casts a12f170 - allocate space for input rings independently instead of in bulk e41fc52 - num_of_rps is not used after initialization e827ac6 - refactoring: merge content of two functions 5dcdc32 - device ip_pool is not used on the host so we remove it 21bc000 - merge content of resource struct into c_mem_layout 4b39488 - remove not used function a276c46 - add U suffix to unsigned constants 6d13be3 - remove not used function 0aaeeab - remove redundant busyloop during handshake fe54ba4 - avoid returns from the middle of the handshake function fda0f8e - clean-up for consistent code indentation c441ffc - move macro definition to the header file e87f3e2 - wrap assembly directive with a macro 2091a40 - refactoring: clean-up code style f9261c3 - value returned by sel_sec_enqueue is ignored so make it void a7b2cf7 - avoid linking printf code by default a9cc62d - remove print_error because it duplicates print_debug 542c9d1 - remove deprecated or not used code 542c9d1 - remove deprecated or not used code b11bbbf - fix precision loss conversion errors 428c51c - remove not used code ecd79e6 - avoid playing with compiler optimizations games 5121ad3 - remove deprecated and not used code 949c908 - raise interrupt on the ring that submitted the jobs 92e7089 - refactoring: merge related code into a single function f131421 - remove no longer used handshake fields 6e3ab80 - simplify calculation of msi address 7e337a9 - rename local variables for clarity e4bef8e - refactoring: extract two functions to simplify code 9dd692d - move handshake state initialization to appropriate function 70f061b - cluster together initialization code e92ede5 - remove not used macros 31636ca - remove duplicated function 7c87c3a - search the ring that received rng descriptors and remove waiting 9d132e3 - remove inconsistently used local variable 4fab968 - remove ignored variable dcbdc8a - start counting SEC engines from 0 as in C29x documentation 2189d7a - remove not-used structure field sec_jr.id 739e1cc - remove not used structure field sec 4bb7e8f - use a dummy allocator to keep track of data addresses 0d960b7 - remove padding fields from handshake structures 6973141 - remove not used structure members dgb_print & err_print f3c1977 - remove not used structure members intr_*_ticks 612371b - rearrange code to merge two #ifdef's a86a0a9 - move definition to the header file ff8ce9d - remove unused function wait_for_timeout 97a0657 - remove unused typedef shadow_indexes_mem_t 5d0e0b0 - remove redundant definitions of standard types 86a6451 - remove unused function irja_signal_caam 8106252 - remove unused function circ_room 086f102 - job ring result has no significance as a signed integer dc8f37d - remove not used members of sec_engine structure 9a6a5c2 - rewrite the initalization code for sec engines list 8ab2b15 - remove priority queues and ignore ring order settings 1b48817 - remove not used struct member order_j_d_index e64f7fc - remove not used struct member resp_j_done_flag 7b20be4 - remove the assumption that ring 0 has any special significance 0d9946b - make explicit that we are using C89/90 standard with GNU extensions cf7cd79 - remove not used padding fields in handshake structure d7adc6e - pad not used handshake fields to prepare for their removal 670c95f - make explicit that we have a single response ring hardcoded to id 0 db84b26 - remove not used structure variable enqcount 07b9fda - remove not used structure pointer cmdrp b253763 - don't send available data through stack 0d19768 - remove macro hiding simple code 0aaba96 - remove commented code 8278186 - remove code supporting P4080 prototypes f88a9bc - remove non-high-perf supporting code 090755e - remove not used structure cmd_tbl_s 4f8184b - remove not used orig_rps structure variable 0a635a9 - remove not used structure variable drv_resp_ring_count 3432b1c - rename structure variable ring_count to num_of_rps 71a3a3d - remove duplicated assignment
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 5d4624f - ls2088a: Add RCW with a new SerDes protocol fe6844e - board: ls1012aqds: Add support of 0x2205 SerDes protocol 900340e - ls2088aqds: Add initial RCW binaries 32c580c - ls2088ardb: Add RCWs for serdes protocl 0x2a_0x41
Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
*include the following changes 9fcb080 - Fixing syntax error in $(CMN_SRC). ef15fbf - Adding infrastructure for prng driver. 6cac899 - Merge branch 'master' of http://sw-stash.freescale.net/scm/dnnpi/ppa-generic c9eba96 - Fixing syntax error for targets rdb-fit, qds-fit. 3c0d284 - rdb-fit : Fixed build issue from top level build script dacdc9a - Add support for LS1088 qds board. 8e0136a - Adding infrastructure for qds board support. eeabd6d - Suppressed benign error msg when build is not directly from git repo 7d5a230 - Adding prototype for _init_ddr(); Fixing undefined constants in ls2088 soc.s; Cleanup of sim plat.mk files;Using var ARMV8_ 098f92a - Final merge of ddr init. d164d7e - Merge branch 'ddr-init-v01'; This is a non-buildable intermediate commit. e77d7e4 - Saving/Restoring additional registers when called from Aarch32; Modified to use one common vector.s file. 4ebb613 - Cleaning bits 63:32 of input parameter registers when 64-bit function called from 32-bit interface. d863875 - Adding cpu hotplug capability to LS1088. 22b5260 - psci: ls1088a: add CPU_SUSPEND support 88f85df - Enabling SRE for ICC_SRE_EL1(S) and ICC_SRE_EL1(NS) in GICv3 initialization. b686af9 - common/makefile.inc: Fix dependency 13b87a5 - Changing mode on build script to 'execute'. 9ca1e42 - Reworked _soc_core_restart() of LS2088 to set interrupt priority and group on the core executing CPU_ON rather than the cor 3152e62 - Adding support for parallel (make -jn) builds. 91aeb18 - Reworking cpu_off for LS2080, LS2088; Cleanup _gic_init_percpu 7c702de - Forcing sequential processing by make. d70d1ff - Adding core timer enable in LS2088 _soc_core_entr_off(); Removing endian parameter from smc64_arch_el2_2_aarch32(). b5342e6 - Adding smp-boot support for the UA device.
Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
*fix the below error
|<50>ERROR: restool-git-r0 do_fetch: Fetcher failure: Unable to find revision eba25cdfdccef45f7ba02dd2f829b9b55198fbb1
|in branch sdk-v2.0.x even from upstream
Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
* include the following changes 49fce3a - Merge pull request #31 in SDK/usdpaa-apps from ~B18196/usdpaa-apps:sdk-v2.0.x to sdk-v2.0.x a487b87 - usdpaa_apps: Patch to disable the non-fmc support by default. 68c4db1 - Merge pull request #29 in SDK/usdpaa-apps from ~B06830/usdpaa-apps:bugfix/QUSDPA-870 to sdk-v2.0.x b54f883 - Revert "build: Eliminate the use of implicit rules and rule-specific variables"
Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
*include the following changes cea280f - Merge pull request #101 in DPAA2/dpl-examples from ls2088a to master 48d3ed0 - Merge pull request #102 in DPAA2/dpl-examples from ls1088a to master dfd7820 - Merge pull request #103 in DPAA2/dpl-examples from ls2080a to master 628c6c1 - Merge pull request #104 in DPAA2/dpl-examples from ls2085a to master 5dd1e38 - ls2088a: add copyright and license to all dts files 0aa371e - ls1088a: add copyright and license to all dts files 0a35813 - ls2080a: add copyright and license to all dts files e8376e9 - ls2085a: add copyright and license to all dts files e02d126 - Merge pull request #92 in DPAA2/dpl-examples from ls2088a to master 93846a0 - ls2088a: regenerate dtb files to reflect changes in dts 55f14af - Merge pull request #90 in DPAA2/dpl-examples from ls1088a to master 5191a60 - Merge pull request #89 in DPAA2/dpl-examples from ls2080a to master 87ad3dd - Merge pull request #88 in DPAA2/dpl-examples from ls2085a to master e4c5247 - Merge pull request #87 in DPAA2/dpl-examples from ls2088a to master 7f0f743 - ls2088a: rename DTS/DTB filenames in order to comply to the naming-rule 9769879 - ls2088a: move custom DPL/DPCs into a designated folder d4483e6 - ls2085a: move custom DPL/DPCs into a designated folder 2e47868 - ls2080a: move custom DPL/DPCs into a designated folder 57ecdea - ls1088a: move custom DPL/DPCs into a designated folder 7948392 - Merge pull request #82 in DPAA2/dpl-examples from ls2088a to master ef6717b - ls2088a: fix starting dpio index acad100 - Merge pull request #80 in DPAA2/dpl-examples from ls2085a to master 93e50c0 - Merge pull request #79 in DPAA2/dpl-examples from ls2080a to master 40026cb - Merge pull request #78 in DPAA2/dpl-examples from ls2088a to master c12a26d - Merge pull request #77 in DPAA2/dpl-examples from ls1088a to master 4e2d298 - Merge pull request #72 in DPAA2/dpl-examples from ~B55220/dpl-examples:ls2088a to ls2088a dde06c5 - ls1088a: change index of DPNI to 0 d79c0a2 - AIOPSL-1001: Added new dpc file for ADKs with increased BMAN buffers 609c1e8 - ls2088a: add flow steering/hashing specialized DPL 727ebcf - ls2080a: add dtb files for QDS and RDB 0d18fd7 - ls2080a: update DPLs to MC10.x version a0656ec - ls2085a: add dtb files for QDS and RDB 5635219 - ls2085a: update DPLs to MC10.x version 75a256d - ls2080a: rename files in order to follow a convention 43f4fbb - ls2085a: rename files in order to follow a convention 3d12541 - ls2088a: refactor object declaration debf636 - ls2088a: rename files in order to follow a convention ed3b0d7 - ls1088a: refactor object declaration 3c0f2ac - ls1088a: rename files in order to follow a convention ec92c4e - Merge pull request #70 in DPAA2/dpl-examples from ls2088a to master e42328d - ls1088a: added dpl for NSP e1a0817 - ls2088a: Add dtb files for QDS and RDB 5cf8ccd - ls2088a: Added versioning support to DPLs 1660e6c - ls1088a: Add dtb files for QDS and RDB 0d69b43 - ls1088a: Added versioning support to DPLs 59bee84 - ls1088a: add more DPMCPs c7b51df - ls1088a: QDS: add dprtc object to support dpaa2 1588 driver 833f9fc - ls1088a: RDB: add dprtc object to support dpaa2 1588 driver 0737ab2 - Add more DPMCPs for each of the DPMACs 05c433f - dts: Updated ls1088 DPL/DPC d7a93a4 - Update wq_ch_conversion to 24 for both QDS and RDB ad0ec82 - Added DPMACs and DPIOs to objects node d306562 - ls1088a-qds: Add DPL and DPC files 449f183 - ls1088a-rdb: Add DPC file 49e0208 - ls1088a-rdb: Update DPL file dddd5e5 - ls2088: change wq_ch_conversion value to 32 4cb3f63 - ls2085aqds: Increase number of 2-WQ channels 576f37b - Remove obsolete "compatible" properties 3d09df2 - 2088ardb: Connect dpni1 to dpmac5 60874e4 - ls2088aqds: Add DPC and DPL for SERDES configuration 0x4d_0x57 d9f27e6 - Merge pull request #55 in DPAA2/dpl-examples from ~B05472/dpl-examples:dpl_ls2088a to master 307ad01 - Merge pull request #52 in DPAA2/dpl-examples from ~B44149/dpl-examples:master to master 2924b1b - Merge pull request #45 in DPAA2/dpl-examples from ~B32168/dpl-examples:master to master 7916347 - ls2088aqds: Rename DPL file eb30fb2 - ls2088ardb: Use DPL from ls2085ardb f9b5094 - ls2088ardb: Add DPSW example 07e57ba - Merge pull request #54 in DPAA2/dpl-examples from ~B39531/dpl-examples:ls2088a-rdb to master a2eae0a - DPL and DPC for LS2088A RDB 8b5cc0f - DPL and DPC for LS2088A QDS ef66a78 - Update copyright details
Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
*include the following changes a292f9d - Change year format in COPYING file fb20b2b - Add NXP copyright in COPYING file 4e6b30b - Add NXP Copyright to files created/modified after 2016-11-07 d5c123b - Change platform name in input files for sd and nand boot fe94a1a - Add support for nand secure boot to powerpc platforms ff1f63c - Merge pull request #49 in SDK/cst from ~B57223/cst-create-pbi:master to master 7c815ad - Correct check_field_length function definition af8de9a - Merge pull request #48 in SDK/cst from ~B57223/cst-create-pbi:feature/ls1021_sd_boot to master 5a9d935 - Input files for SD secure boot 69cfefb - Added a new field in input file of pbi creation 1bd1235 - LS1021ATWR: Moved input file location 395cd67 - Merge pull request #46 in SDK/cst from feature/ls1021_sd_boot to master d592cfc - LS1021ATWR: Modifications in previous patches for sd sec boot f5461bb - LS1021ATWR: input files to be used for signing images a54adbd - LS1021ATWR: Sample input file for PBI creation tool ec264fc - LS1021ATWR: Modify tool for ACS write functionality a68286a - LS1021ATWR: Create tool to add pbi commands for sd secure 6f08868 - Merge pull request #43 in SDK/cst from ~B57231/cst:feature/QSDK-3343 to master 70c7c6b - Merge pull request #42 in SDK/cst from ~B57223/cst-create-pbi:master to feature/ls1021_sd_boot 7ace9c7 - LS2080A: Changes for IE key Extension feature d0d1bef - LS1012ARDB: Change kernel entry point in ie key input file 6ef3aeb - LS1012: Change entry point of kernel in inputfile b4c5d98 - LS1088 : Input files for IE key extension feature b840665 - LS2088 :PPA input file & updates headers addresses b5c6b02 - Add input files for LS1088 QSPI target
Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
The use-egl PACKAGECONFIG is already enabled by default.
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com> Signed-off-by: Alexandra Safta <alexandra-ioana.safta@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>