summaryrefslogtreecommitdiffstats
path: root/recipes-kernel
Commit message (Collapse)AuthorAgeFilesLines
* linux-xlnx_4.6.bb: Update kernel to v2016.3 tagManjukumar Matha2016-11-181-0/+5
| | | | | | | This patch updates xilinx kernel to v4.6 release Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/config: For Zynq hard disable CONFIG_DEBUG_RODATANathan Rossi2016-11-111-0/+3
| | | | | | | | | | | | CONFIG_DEBUG_RODATA was switched to default yes in v4.6+ kernels. Whilst the feature works correctly it causes changes with how the kernel .head.text and .text sections are padded which allows for memory below 0x80000 (512KB) to be non-reserved and used as memory for DMA allocations which do not work on Zynq due to devices not being allowed to access DDR below 0x80000. Disabling CONFIG_DEBUG_RODATA prevents the padding between .head.text/.text. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-yocto-tiny: Add support for building linux-yocto-tiny 4.8Nathan Rossi2016-10-294-0/+37
| | | | | | | This adds support for building linux-yocto-tiny 4.8 kernel for the 3 main meta-xilinx architectures. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/config: Add specific dependencies that are defaulted to yesNathan Rossi2016-10-299-1/+24
| | | | | | | | Add specific config options that are normally defaulted to yes when the kernel is configured with defaulting to yes. This allows for kernels that default no to be correctly configured. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/config: Add dependent configs for linux-xlnx ZynqMP featuresNathan Rossi2016-10-291-0/+2
| | | | | | | Enable config dependencies for DMA and PCI which are required for ZynqMP drivers/features. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* qemu* -> *qemu-*: Rename QEMU machinesNathan Rossi2016-10-277-10/+10
| | | | | | | | | | | | | | | Rename the QEMU machines to match the <board>-<design>-<arch> convention. QEMU only machines no longer need to be named qemu*. Note for qemuzynq it is special in that it does not model a board, as such it has no board in the name being just 'qemu-zynq7'. This updates the README.md to match the new machine names. Additional update all occurrences of the qemu* machines Signed-off-by: Nathan Rossi <nathan@nathanrossi.com> Reviewed-by: Alistair Francis <alistair.francis@xilinx.com>
* linux-xlnx.inc: Use KBRANCH, setting it to "" for branchlessNathan Rossi2016-10-112-3/+2
| | | | | | | | | | | The linux-yocto recipe and metadata tools handle branchless source. Letting KBRANCH = "master" for nobranch checkouts is not needed any more. Change all uses of SRCBRANCH to KBRANCH and set KBRANCH to the branch or empty by default. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx-dev: Remove duplicate setupNathan Rossi2016-10-111-6/+0
| | | | | | | | The PREFERRED_PROVIDER check is already done by linux-yocto.inc, avoid doing it twice. Also linux-xlnx.inc sets the PV correctly, no need to set it again. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx-dev: Update kernel to current master version at 4.6+Nathan Rossi2016-10-111-2/+2
| | | | | | | Update the linux-xlnx-dev recipe to the current HEAD of master. Which is at a v4.6 kernel. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/config: Clean up soc/microblaze.cfgNathan Rossi2016-09-281-4/+1
| | | | | | | | | * CONFIG_SERIAL_OF_PLATFORM is already configured with serial drivers in soc/drivers/xilinx.cfg * Use the syntax "# CONFIG_FTRACE is not set" so that it when the kernel config check is run it matches the value set in the .config Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/config: CONFIG_VT is not broken for MicroBlaze anymoreNathan Rossi2016-09-281-2/+0
| | | | | | Allow CONFIG_VT to be enabled for MicroBlaze. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/config: Update linux-xlnx config fragmentNathan Rossi2016-09-201-4/+0
| | | | | | | | | Remove the CONFIG_XILINX_AXIPCIE, this driver has been merged into mainline and is available with the kconfig CONFIG_PCIE_XILINX. The new config is also provided in the "bsp/xilinx/soc/drivers/xilinx-pcie.scc" feature. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/config: When enabling USB_GADGET_XILINX also enable USB_GADGETNathan Rossi2016-09-201-0/+1
| | | | Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/config: Clean up common zynq7.cfgNathan Rossi2016-09-201-5/+1
| | | | | | Add dependent configs and remove unused configs. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-yocto_4.8: Add appends for linux-yocto 4.8Nathan Rossi2016-09-201-0/+4
| | | | | | Add the default configuration appends for the linux-yocto 4.8 kernel. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx: KCONFIG_MODE values have changed, update to 'alldefconfig'Nathan Rossi2016-09-011-1/+1
| | | | | | | In commit 0f698dfd1c8bbc0d53ae7977e26685a7a3df52a3 of oe-core, the values for KCONFIG_MODE have changed, the values are no longer flags. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* zynqmp.cfg: Actually disable MALI in kernelMike Looijmans2016-07-311-1/+1
| | | | | | | | | | | Commit fbc9fcd55a20ec2050 "zynqmp.cfg: Disable MALI in kernel" sets CONFIG_ARM_MALI=n, which is incorrect and will not have any actual effect on the configuration. The correct syntax to disable the module is "# CONFIG_ARM_MALI is not set". Fixes: fbc9fcd55a20ec205088c8026f5d25feb08430a3 Signed-off-by: Mike Looijmans <mike.looijmans@topic.nl> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* board-common.cfg: Disable 4K sectors on QSPI NOR flashMike Looijmans2016-07-311-0/+1
| | | | | | | | | | | | The 4K sector support makes erasing much slower and prevents using wear-levelling filesystems like UBI, which needs erase sectors to be at least 16k in size. Until this situation has been properly resolved in the kernel, disable the setting. For a discussion on the topic, and the reason the config exists, see: https://patchwork.ozlabs.org/patch/380565/ Signed-off-by: Mike Looijmans <mike.looijmans@topic.nl> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux standard.cfg: Replace ext2/ext3 drivers with ext4Mike Looijmans2016-07-311-2/+1
| | | | | | | | | | The ext4 driver supports all "ext" filesystems, including ext2 and ext3, and usually even performs better on existing ext3 partitions. Omitting the obsolete drivers makes the kernel a bit smaller. Signed-off-by: Mike Looijmans <mike.looijmans@topic.nl> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx_4.4.bb: Update kernel to v2016.2 tagManjukumar Matha2016-07-161-2/+2
| | | | | | | Update Xilinx kernel recipe to xilinx-v2016.2 tag Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xilinx-machines.inc: Do not clobber COMPATIBLE_MACHINENathan Rossi2016-06-161-1/+1
| | | | | | | | | Do not clobber the value of COMPATIBLE_MACHINE, instead set it via ?=. This was clobbering the COMPATIBLE_MACHINE values from linux-yocto causing issues when the meta-xilinx layer was added but not building a meta-xilinx machine. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* zynqmp.cfg: Disable MALI in kernelManjukumar Matha2016-05-261-0/+1
| | | | | | | Disable MALI kernel module present in Xilinx kernel Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx.inc: Use kernel defconfig for ZynqMPManjukumar Matha2016-05-151-0/+3
| | | | | | | Use Xilinx kernel defconfig settings for ZCU102 board Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx_4.4.bb: Update to xilinx-v2016.1.01 tagManjukumar Matha2016-05-131-2/+2
| | | | | | | Update Xilinx kernel to release tag xilinx-v2016.1.01 Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xilinx-machines.inc: Add KC705 cfg to kernelManjukumar Matha2016-05-131-0/+1
| | | | | | | Fetch the latest config for KC705 board kit Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* xilinx.cfg: Enable CONFIG_XILINX_PHYManjukumar Matha2016-05-131-0/+1
| | | | | | | Enable Xilinx PHY config in kernel Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* kc705-microblazeel.scc: Add KC705 linux configManjukumar Matha2016-05-132-0/+17
| | | | | | | Add kernel configuration for KC705 kit according to latest v9.6 MB support Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* kc705-trd-microblazeel: Remove kc705-trd filesManjukumar Matha2016-05-132-18/+0
| | | | | | | Remove old kc705-trd reference Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xilinx-machines.inc: Remove kc705-trdManjukumar Matha2016-05-131-1/+0
| | | | | | | Remove old kc705-trd reference Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-yocto_4.1: Fix up "amba" node label for Zynq includeNathan Rossi2016-05-062-0/+32
| | | | | | | Partly backport a patch from v4.3+ kernels that adds the "amba" label to the amba bus node of the zynq-7000.dtsi. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/config: Clean up unused config fragmentsNathan Rossi2016-05-052-19/+0
| | | | Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx_4.0: Drop this version is it supersededNathan Rossi2016-05-051-10/+0
| | | | | | | The 4.0/xilinx-v2015.4.01 version of the linux-xlnx is dropped in favour of the newer 4.4/xilinx-v2016.1 kernel. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx_4.4: Add patch to resolve DPMS issuesNathan Rossi2016-05-032-1/+48
| | | | | | | This patch works around the issues with the Xilinx DRM drive to allow for the transition from DPMS off to DPMS on. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/config: Add config fragments for Digilent DRM encoderJason Wu2016-05-032-0/+12
| | | | | | | This also uses the drm-xilinx.scc Signed-off-by: Jason Wu <jason.wu.misc@gmail.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx: Add Digilent encoder and axi dynclk driversJason Wu2016-05-034-0/+903
| | | | | | | Add to both linux-xlnx_4.0.bb and linux-xlnx_4.4.bb. Signed-off-by: Jason Wu <jason.wu.misc@gmail.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/config: Add config fragment for enabling v4l2Jason Wu2016-05-032-0/+23
| | | | | | | This config fragment enables the v4l2 kernel interface to Xilinx devices. Signed-off-by: Jason Wu <jason.wu.misc@gmail.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/config: Add config fragments for Zybo sound supportJason Wu2016-05-032-0/+13
| | | | | Signed-off-by: Jason Wu <jason.wu.misc@gmail.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx-dev: Update kernel version from 4.0+ to 4.4+Jason Wu2016-05-031-1/+1
| | | | | Signed-off-by: Jason Wu <jason.wu.misc@gmail.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/config: Add keyboard gpio cfg and sccJason Wu2016-05-032-0/+7
| | | | | Signed-off-by: Jason Wu <jason.wu.misc@gmail.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/config: Add config fragments for Xilinx DRMJason Wu2016-05-032-0/+17
| | | | | | | | Enable Xilinx DRM support and also set up CMA size to 40MB support various pixel formats and Ubuntu rootfs. Signed-off-by: Jason Wu <jason.wu.misc@gmail.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx_4.4.bb: Update to xilinx-v2016.1 tagManjukumar Matha2016-05-031-3/+2
| | | | | | | Updated the recipe to point to release tag xilinx-v2016.1 Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-yocto_4.4: Add ZYBO USB patchNathan Rossi2016-04-072-0/+57
| | | | | | | Backport the ZYBO USB PHY patch so that the USB interface is functional using the in-kernel device tree. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx_4.4: Xilinx linux v4.4 releaseManjukumar Matha2016-02-261-0/+7
| | | | | | | | This is a preliminary release of Xilinx linux kernel v4.4. The SRCREV will updated once the kernel gets updated on github Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/configs: Enable SERIAL_OF_PLATFORM to fix up dt parsingNathan Rossi2016-01-201-0/+1
| | | | | | | | SERIAL_OF_PLATFORM needs to be set in order for the serial 8250 driver to parse and probe device tree configuration for 8250 nodes. This is needed so that the uart 16550 instances are probed correctly. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux/configs: Update zynqmp.cfg for newer kernelsNathan Rossi2016-01-181-2/+3
| | | | | | | * Fix up GPIOLIB to enable GPIO driver support * Fix up USB configs Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-yocto_4.4: Add bbappend to enable Xilinx machine supportNathan Rossi2016-01-171-0/+4
| | | | Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx_4.0: Update to 'xilinx-v2015.4.01' tagNathan Rossi2016-01-061-2/+2
| | | | | | Update to the newest version at the 'xilinx-v2015.4.01' tag. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xilinx-machines.inc: Default COMPATIBLE_MACHINE for ZynqMPNathan Rossi2016-01-065-8/+1
| | | | | | | All meta-xilinx kernels now support ZynqMP, set the compatiblity in common include instead of per kernel. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx_3.19: Remove 'xilinx-v2015.2.03' kernelNathan Rossi2016-01-062-70/+0
| | | | | | | | | This kernel is superseeded by newer kernels. This recipe is being dropped in favour of newer linux-xlnx kernels. Remove the recipe and clean up any remaining kernel 3.19 patches. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
* linux-xlnx_3.14: Remove 'xlnx_3.14' kernelNathan Rossi2016-01-065-270/+0
| | | | | | | This kernel is no longer maintained, and has custom device tree bindings for various drivers. Remove the kernel recipe and all patches it uses. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>