summaryrefslogtreecommitdiffstats
path: root/recipes-bsp
Commit message (Collapse)AuthorAgeFilesLines
...
* ti-rm: Move from meta-arago to meta-tiSam Nelson2014-10-081-0/+49
| | | | | | | | - Moved recipe from meta-arago based on review comments - Provides resource manager low level driver Signed-off-by: Sam Nelson <sam.nelson@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* boot-monitor: pass float ABI flag to fix gcc-4.9.1 issue with stubsDenys Dmytriyenko2014-10-071-6/+7
| | | | | | | | Otherwise fails with the below error, similar to am33x-cm3: fatal error: gnu/stubs-soft.h: No such file or directory Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* uio-module-drv: Add new recipe for user space io driverSam Nelson2014-10-071-0/+21
| | | | | | | - Provides User space IO driver for on-chip modules Signed-off-by: Sam Nelson <sam.nelson@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* common-csl-ip: Update to csl version 2.1.0.5Sam Nelson2014-10-071-7/+6
| | | | | | | | | | - Updated description - Updated LICENSE to BSD-3-Clause - Updated Commit id - Removed trailing whitespaces Signed-off-by: Sam Nelson <sam.nelson@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* common-csl-ip: (ti-csl) Moved from meta-arago and renamedSam Nelson2014-10-071-0/+21
| | | | | | | | | | - Moved from meta-arago (where it was called ti-csl_git.bb) http://arago-project.org/git/?p=meta-arago.git;a=blob_plain;f=meta-arago-extras/recipes-bsp/ti-csl/ti-csl_git.bb;hb=HEAD - Renamed it to common-csl-ip_git.bb - This package provides chip support library interface files Signed-off-by: Sam Nelson <sam.nelson@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* omapdrm-pvr: recipe update for SGX KM compatible with Kernel 3.12Karthik Ramanan2014-10-071-4/+4
| | | | | | | * Also adapted recipe to directory restructuring Signed-off-by: Karthik Ramanan <a0393906@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* u-boot-ti-staging: update with numerous fixes on top of 2014.07Denys Dmytriyenko2014-09-221-3/+2
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* am33x-cm3: update to version 0x189Denys Dmytriyenko2014-09-221-2/+2
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* am33x-cm3: Add TOOLCHAIN_OPTIONS to redefined CCKhem Raj2014-09-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | This error will show up when using sstate which was generated using a different buiid time sysroot. Since we override CC we still need to honor --sysroot which is specified via TOOLCHAIN_OPTIONS Fixes | DEBUG: Executing shell function do_compile | CC src/sys_exec/sys_init.o | In file included from src/sys_exec/rsc_table.h:13:0, | from src/sys_exec/sys_init.c:19: | /home/ubuntu/work/angstrom/build/tmp-angstrom_next-glibc/sysroots/x86_64-linux/usr/lib/arm-angstrom-linux-gnueabi/gcc/arm-angstrom-linux-gnueabi/4.9.2/include/stdint.h:9:26: fatal error: stdint.h: No such file or directory | # include_next <stdint.h> | ^ | compilation terminated. | make: *** [src/sys_exec/sys_init.o] Error 1 Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* vpe-vpdma: pass float ABI flag to fix gcc-4.9.1 issue with stubsDenys Dmytriyenko2014-09-111-2/+4
| | | | | | Similar fix as 7b8ee4026e0e3b69a8ce5526be24ba70321e88dc, see for more details. Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* am33x-cm3: add voltage scaling binariesDenys Dmytriyenko2014-09-081-2/+3
| | | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com> Acked-by: Franklin Cooper Jr. <fcooper@ti.com>
* u-boot-ti-staging: update with DRA7 and AM335 ENV/FAT/SD changesDenys Dmytriyenko2014-08-201-2/+2
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* am33x-cm3: pass float ABI flag to fix gcc-4.9.1 issue with stubsDenys Dmytriyenko2014-08-181-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | Since we are re-using the Linux cross-compiler to compile Cortex-M3 firmware code and not a dedicated bare-metal compiler, we have to match the float ABI for the compiler to find the correct gnu/stubs.h files. In other words, if we built a hardfp compiler, it doesn't have the corresponding gnu/stubs-soft.h header and fails when building anything non-hardfp. Even though float ABI flag doesn't make any sense for Cortex-M3 build. The error looks like this: | CC src/sys_exec/trace.o | CC src/sys_exec/sys_init.o | In file included from /OE/sysroots/am335x-evm/usr/include/features.h:402:0, | from /OE/sysroots/am335x-evm/usr/include/stdint.h:25, | from /OE/sysroots/x86_64-linux/usr/lib/arm-oe-linux-gnueabi/gcc/arm-oe-linux-gnueabi/4.9.1/include/stdint.h:9, | from src/sys_exec/rsc_table.h:13, | from src/sys_exec/sys_init.c:19: | /OE/sysroots/am335x-evm/usr/include/gnu/stubs.h:7:29: fatal error: gnu/stubs-soft.h: No such file or directory | # include <gnu/stubs-soft.h> | ^ | compilation terminated. | Makefile:51: recipe for target 'src/sys_exec/sys_init.o' failed | make: *** [src/sys_exec/sys_init.o] Error 1 Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* am33x-cm3: update with version 1.8.7Denys Dmytriyenko2014-08-123-48/+7
| | | | | | | | * Move repo to git.ti.com * Bump PE due to versioning schema change * Drop init scripts needed back in 3.8 days Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* omap3-sgx-modules: update one of Darren's patches to match change in 3.14 APIDenys Dmytriyenko2014-08-052-5/+5
| | | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com> Acked-by: Franklin Cooper Jr. <fcooper@ti.com>
* omap3-sgx-modules 5.01.01.01: add Darren's patches to work with 3.14 kernelDenys Dmytriyenko2014-07-315-1/+377
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* u-boot-ti-staging: add TI staging version of u-boot 2014.07Denys Dmytriyenko2014-07-291-0/+21
| | | | | | | Mainline version of 2014.07 will be pushed to mainline OE-Core soon. Signed-off-by: Denys Dmytriyenko <denys@ti.com> Acked-by: Franklin Cooper Jr. <fcooper@ti.com>
* u-boot: update to 2014.07 release versionDenys Dmytriyenko2014-07-251-6/+3
| | | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com> Acked-by: Franklin Cooper Jr. <fcooper@ti.com>
* vis: inhibit package strip for DSP binariesMaupin, Chase2014-07-021-1/+4
| | | | | | | | | | | | * These binaries are for the DSP and the strip command in the ARM compiler does not work on them. Without this the following error is seen: * ERROR: runstrip: ''arm-linux-gnueabihf-strip' --remove-section=.comment --remove-section=.note '<PATH>/dra7-dsp1-fw-radio.xe66'' strip command failed Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* Update dra7xx-evm settings to use dra7xx SOC_FAMILYMaupin, Chase2014-07-022-4/+18
| | | | | | | | | * Update to use the dra7xx SOC_FAMILY instead of the specific dra7xx-evm machine type. Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Acked-by: Franklin Cooper Jr. <fcooper@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* u-boot: switch from SPL/MLO to "ais" image for omapl138 SOCsDenys Dmytriyenko2014-07-022-2/+5
| | | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com> Cc: Tom Rini <trini@ti.com>
* u-boot-am37x: remove old machine-specific version in favor of mainlineDenys Dmytriyenko2014-06-2410-664/+0
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* recipes: consolidate firmware recipes under recipes-bsp in own directoriesDenys Dmytriyenko2014-06-237-0/+85
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* libgles-omap3, omap3-sgx-modules: remove old 4.8.x and 5.x versionsDenys Dmytriyenko2014-06-234-242/+0
| | | | | | | Leave 4.9 as the last release providing softfp binaries and x11 support. Leave 4.5 for now as being widely used on legacy omap3 devices. Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* u-boot: remove old platform-specific versionsDenys Dmytriyenko2014-06-2381-11658/+0
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* u-boot-ti-staging:_2013.10: Update to pull in critical fixesFranklin S. Cooper Jr2014-06-231-3/+3
| | | | | | | | * Critical fixes have been added to the ti-u-boot-2013.10 branch for AM4x. * Update commit id to point to this new commit. * For all other platforms nothing should have changed. Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* u-boot: remove old mainline versionsMaupin, Chase2014-06-162-52/+0
| | | | | | | | * Remove old mainline u-boot versions since the latest version has better support for TI platforms. Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* u-boot: Add mainline u-boot version 2014.07-rc3Maupin, Chase2014-06-161-0/+27
| | | | | | | | | | | | | * The latest mainline u-boot works well for most TI devices and we want to enable more people to use and test it. Adding version 2014.07-rc3 will allow more people to build and use this u-boot version * Add a dependency on dtc-native since the latest mainline of u-boot now requires this and not every build host will have the right version. Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* keystone: u-boot: add build support for EMIF16 NAND gph imageHao Zhang2014-05-291-2/+13
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* formfactor: : remove PRINCAndreas Müller2014-05-211-1/+0
| | | | | | | last oe-core PR-bump was commited May 2nd Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* keystone: k2l-evm conf: add k2l-evm machine configHao Zhang2014-05-211-4/+3
| | | | | | | | k2l-evm machine config shares the same Keystone SoC family, it has K2L EVM specific machine configuration for UBI image, boot monitor, U-boot, etc. Signed-off-by: Hao Zhang <hzhang@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* keystone: machine config: change machine config name from keystone-evm to ↵Hao Zhang2014-05-211-1/+1
| | | | | | | | | | | k2hk-evm Keystone II SOC family has multiple devices and EVMs: k2hk, k2l and k2e, each EVM should have a separate machine config, and share the common keystone SOC family. Signed-off-by: Hao Zhang <hzhang@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* keystone: u-boot: rename tci6638 to k2hk evm configHao Zhang2014-05-211-3/+3
| | | | | | | Rename U-boot "tci6638_evm_config" to "k2hk_evm_config" to align with DTB device name. Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* u-boot-keystone: update to the latest versionDenys Dmytriyenko2014-05-091-5/+48
| | | | | | | | | Modified version of the original patch from Sam Nelson * Update source URL/REV * Added SPI NOR binaries and deployed images Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* am33x-cm3, ti-msp430: update license from TI-BSD to BSD-3-ClauseDenys Dmytriyenko2014-04-241-2/+2
| | | | | | Per recommendation from OSRB and Legal. Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* u-boot-ti-staging: update with QSPI fixesDenys Dmytriyenko2014-03-061-2/+3
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* Graphics SDK: Add version 05.01.01.01Franklin S. Cooper Jr2014-02-211-0/+67
| | | | | | | | * Add latest version of the Graphics SDK that includes bug fixes. * Fixed Suspend and Resume issue on AM43x. Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* am33x-cm3: update with I2C clock rate calculation fixesDenys Dmytriyenko2014-02-131-4/+4
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* u-boot-ti-staging: update with QSPI partition size changesDenys Dmytriyenko2014-02-111-2/+2
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* u-boot-ti-staging: update with fixes for NAND partition names and sizesDenys Dmytriyenko2014-02-061-2/+2
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* am33x-cm3: update md5 for license reformat, fix CC unset issueDenys Dmytriyenko2014-02-061-3/+3
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* u-boot-ti-staging: update with many fixes for the upcoming releaseDenys Dmytriyenko2014-02-051-3/+2
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* am33x-cm3: update with FW version 0x185 aka 05.00.00.02Denys Dmytriyenko2014-02-051-3/+3
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* boot-monitor: keystone-evm: update to latest versionSam Nelson2014-01-271-4/+5
| | | | | | | | | | | | | - Update SRC URL - Update Revision string - Update SRCREV commit id Signed-off-by: Sam Nelson <sam.nelson@ti.com> ----- Updated Revision numbers ----- Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* cmem: adding new recipe for cmemSam Nelson2014-01-273-0/+37
| | | | | | | cmem module provides user space contiguous memory allocation Signed-off-by: Sam Nelson <sam.nelson@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* am33x-cm3: clarify when initscripts are neededChase Maupin2014-01-171-0/+3
| | | | | Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* vpe-vpdma: update SRCREV and pass CROSS_COMPILEDenys Dmytriyenko2014-01-171-3/+3
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* Graphics SDK: Add 5.01.00.01 versionChase Maupin2014-01-141-0/+67
| | | | | | | | * Add the 5.01.00.01 version of the graphics SDK which supports suspend/resume operations for the v3.12 and later kernels. Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* vpe-vpdma: Package for VPE DMA FW and test appChase Maupin2014-01-141-0/+29
| | | | | | | | * This recipe will create the firmware and test application packages. Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
* u-boot-ti-staging: update with am43x dtb relocation fixDenys Dmytriyenko2013-12-171-2/+2
| | | | Signed-off-by: Denys Dmytriyenko <denys@ti.com>