diff options
| author | Nathan Rossi <nathan.rossi@xilinx.com> | 2013-08-02 12:41:14 +1000 |
|---|---|---|
| committer | Nathan Rossi <nathan.rossi@xilinx.com> | 2013-08-02 12:41:14 +1000 |
| commit | d9617006376d73e37f1db17857ee06c24e6b7c03 (patch) | |
| tree | cbdb30df192a62d9b6a5f614ec7f7bbb97a5231f | |
| parent | ceeecb15ade62e65b94153101cd28c5013ce43fd (diff) | |
| download | meta-xilinx-d9617006376d73e37f1db17857ee06c24e6b7c03.tar.gz | |
meta-*: Remove deprecated sublayers
* The machines supported in the sublayer BSPs are now supported in the base
meta-xilinx layer, these sublayers are no longer required.
* Relevant documentation has also been relocated into meta-xilinx/docs/*.
Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com>
32 files changed, 0 insertions, 2522 deletions
diff --git a/meta-kc705/COPYING.MIT b/meta-kc705/COPYING.MIT deleted file mode 100644 index fb950dc6..00000000 --- a/meta-kc705/COPYING.MIT +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| 2 | of this software and associated documentation files (the "Software"), to deal | ||
| 3 | in the Software without restriction, including without limitation the rights | ||
| 4 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| 5 | copies of the Software, and to permit persons to whom the Software is | ||
| 6 | furnished to do so, subject to the following conditions: | ||
| 7 | |||
| 8 | The above copyright notice and this permission notice shall be included in | ||
| 9 | all copies or substantial portions of the Software. | ||
| 10 | |||
| 11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 12 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 13 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| 14 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| 15 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| 16 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| 17 | THE SOFTWARE. | ||
diff --git a/meta-kc705/README b/meta-kc705/README deleted file mode 100644 index 538d2a2c..00000000 --- a/meta-kc705/README +++ /dev/null | |||
| @@ -1,65 +0,0 @@ | |||
| 1 | meta-kc705 | ||
| 2 | ========== | ||
| 3 | |||
| 4 | This README file contains information on using the meta-kc705 BSP layer. | ||
| 5 | |||
| 6 | The KC705 is an evaluation board by Xilinx for the MicroBlaze architecture: | ||
| 7 | http://www.xilinx.com/products/boards-and-kits/DK-K7-EMBD-G.htm | ||
| 8 | |||
| 9 | Please refer to the meta-xilinx/README for details regarding patch submission, | ||
| 10 | layer dependencies, build process, etc. | ||
| 11 | |||
| 12 | Supported Boards/Machines | ||
| 13 | ========================= | ||
| 14 | |||
| 15 | Xilinx KC705 Embedded TRD (MicroBlaze) - 'kc705-trd' | ||
| 16 | The 'KC705_System' or 'BIST system' as described in the documentation. | ||
| 17 | |||
| 18 | Note: this design contains the 'Xylon logiSDHC' additional IP cores, this is | ||
| 19 | not supported by this BSP. | ||
| 20 | |||
| 21 | Reference files and documents | ||
| 22 | ============================= | ||
| 23 | |||
| 24 | For details on the TRD and Evaluation board: | ||
| 25 | http://www.xilinx.com/products/boards-and-kits/DK-K7-EMBD-G.htm | ||
| 26 | |||
| 27 | For documentation and design files for the TRD: | ||
| 28 | http://www.xilinx.com/support/index.html/content/xilinx/en/supportNav/boards_and_kits/kintex-7_boards_and_kits/kintex-7_fpga_embedded_kit.html | ||
| 29 | |||
| 30 | Additional information on MicroBlaze architecture can be found at: | ||
| 31 | http://www.xilinx.com/support/index.htm | ||
| 32 | |||
| 33 | RAMFS/INITRD Boot (via JTAG/TFTP) | ||
| 34 | ================================= | ||
| 35 | |||
| 36 | Note: This boot flow requires a TFTP server as well as access to Xilinx tools | ||
| 37 | (for JTAG programming). | ||
| 38 | |||
| 39 | Place the following images into the root of the TFTP server directory: | ||
| 40 | * core-image-minimal-<machine name>.ext2.gz.u-boot (RootFS) | ||
| 41 | * linux.bin.ub (Linux Kernel) | ||
| 42 | * linux.bin.ub-<machine name>.dtb (DTB) | ||
| 43 | |||
| 44 | Download the bitstream for the target machine using JTAG (The pre-built | ||
| 45 | bitstream provided in the reference design files should be used). | ||
| 46 | |||
| 47 | Download the 'u-boot.elf' to the target CPU via the use of XMD. | ||
| 48 | $ xmd | ||
| 49 | XMD% connect mb mdm | ||
| 50 | XMD% rst | ||
| 51 | XMD% dow u-boot.elf | ||
| 52 | XMD% con | ||
| 53 | |||
| 54 | The serial console of the KC705 board (the USB-UART interface) will display the | ||
| 55 | U-Boot console. Configure the 'ipaddr' and 'serverip' of the U-Boot environment. | ||
| 56 | U-Boot> set serverip <server ip> | ||
| 57 | U-Boot> set ipaddr <board ip> | ||
| 58 | |||
| 59 | Using the U-Boot console; load the Kernel (at 0x86000000), RootFS | ||
| 60 | (at 0x85000000) and the DTB (at 0x84000000) into memory. And then boot Linux | ||
| 61 | using the 'bootm' command. | ||
| 62 | U-Boot> tftp 0x86000000 linux.bin.ub | ||
| 63 | U-Boot> tftp 0x85000000 core-image-minimal-<machine name>.ext2.gz.u-boot | ||
| 64 | U-Boot> tftp 0x84000000 linux.bin.ub-<machine name>.dtb | ||
| 65 | U-Boot> bootm 0x86000000 0x85000000 0x84000000 | ||
diff --git a/meta-kc705/conf/layer.conf b/meta-kc705/conf/layer.conf deleted file mode 100644 index 5a065067..00000000 --- a/meta-kc705/conf/layer.conf +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | # We have a conf and classes directory, add to BBPATH | ||
| 2 | BBPATH := "${BBPATH}:${LAYERDIR}" | ||
| 3 | |||
| 4 | # We have a packages directory, add to BBFILES | ||
| 5 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb" | ||
| 6 | BBFILES += " ${LAYERDIR}/recipes-*/*/*.bbappend" | ||
| 7 | |||
| 8 | BBFILE_COLLECTIONS += "kc705" | ||
| 9 | BBFILE_PATTERN_kc705 := "^${LAYERDIR}/" | ||
| 10 | BBFILE_PRIORITY_kc705 = "8" | ||
| 11 | |||
diff --git a/meta-kc705/conf/machine/kc705-trd.conf b/meta-kc705/conf/machine/kc705-trd.conf deleted file mode 100644 index d9a79969..00000000 --- a/meta-kc705/conf/machine/kc705-trd.conf +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | #@TYPE: Machine | ||
| 2 | #@NAME: kc705-trd | ||
| 3 | #@DESCRIPTION: Machine support for Xilinx KC705 TRD. | ||
| 4 | |||
| 5 | TARGET_CPU = "microblazeel" | ||
| 6 | MACHINE_FEATURES := "" | ||
| 7 | |||
| 8 | require conf/machine/include/tune-microblaze.inc | ||
| 9 | TUNE_FEATURES_tune-microblaze += "v8.50 little-endian barrel-shift pattern-compare reorder multiply-low" | ||
| 10 | |||
| 11 | SERIAL_CONSOLE = "115200 ttyS0" | ||
diff --git a/meta-kc705/recipes-bsp/u-boot/files/config.mk b/meta-kc705/recipes-bsp/u-boot/files/config.mk deleted file mode 100644 index 50dafe00..00000000 --- a/meta-kc705/recipes-bsp/u-boot/files/config.mk +++ /dev/null | |||
| @@ -1,9 +0,0 @@ | |||
| 1 | PLATFORM_CPPFLAGS += -mxl-pattern-compare | ||
| 2 | PLATFORM_CPPFLAGS += -mxl-barrel-shift | ||
| 3 | PLATFORM_CPPFLAGS += -mxl-soft-div | ||
| 4 | PLATFORM_CPPFLAGS += -mno-xl-multiply-high | ||
| 5 | PLATFORM_CPPFLAGS += -mno-xl-soft-mul | ||
| 6 | PLATFORM_CPPFLAGS += -mcpu=v8.50.a | ||
| 7 | |||
| 8 | TEXT_BASE = 0xbfc00000 | ||
| 9 | CONFIG_SYS_TEXT_BASE = 0xbfc00000 | ||
diff --git a/meta-kc705/recipes-bsp/u-boot/files/xparameters.h b/meta-kc705/recipes-bsp/u-boot/files/xparameters.h deleted file mode 100644 index 994a26e6..00000000 --- a/meta-kc705/recipes-bsp/u-boot/files/xparameters.h +++ /dev/null | |||
| @@ -1,48 +0,0 @@ | |||
| 1 | /* Microblaze is microblaze_0 */ | ||
| 2 | #define XILINX_USE_MSR_INSTR 1 | ||
| 3 | #define XILINX_PVR 2 | ||
| 4 | #define XILINX_FSL_NUMBER 0 | ||
| 5 | #define XILINX_USE_ICACHE 1 | ||
| 6 | #define XILINX_USE_DCACHE 1 | ||
| 7 | #define XILINX_DCACHE_BYTE_SIZE 8192 | ||
| 8 | |||
| 9 | /* Interrupt controller is interrupt_cntlr */ | ||
| 10 | #define XILINX_INTC_BASEADDR 0x40100000 | ||
| 11 | #define XILINX_INTC_NUM_INTR_INPUTS 8 | ||
| 12 | |||
| 13 | /* Timer pheriphery is dual_timer_counter */ | ||
| 14 | #define XILINX_TIMER_BASEADDR 0x40300000 | ||
| 15 | #define XILINX_TIMER_IRQ 3 | ||
| 16 | |||
| 17 | /* System Timer Clock Frequency */ | ||
| 18 | #define XILINX_CLOCK_FREQ 100000000 | ||
| 19 | |||
| 20 | /* Uart console is rs232_uart_1 */ | ||
| 21 | #define XILINX_UART16550 | ||
| 22 | #define XILINX_UART16550_BASEADDR 0x40400000 | ||
| 23 | #define XILINX_UART16550_CLOCK_HZ 100000000 | ||
| 24 | #define XILINX_UARTLITE_BASEADDR 0x40200000 | ||
| 25 | #define CONFIG_CONS_INDEX 1 | ||
| 26 | |||
| 27 | /* IIC pheriphery is iic_eeprom */ | ||
| 28 | #define XILINX_IIC_0_BASEADDR 0x40a00000 | ||
| 29 | #define XILINX_IIC_0_FREQ 100000 | ||
| 30 | #define XILINX_IIC_0_BIT 0 | ||
| 31 | |||
| 32 | /* GPIO doesn't exist */ | ||
| 33 | |||
| 34 | /* SDIO doesn't exist */ | ||
| 35 | |||
| 36 | /* Main Memory is ddr3_sdram */ | ||
| 37 | #define XILINX_RAM_START 0x80000000 | ||
| 38 | #define XILINX_RAM_SIZE 0x40000000 | ||
| 39 | |||
| 40 | /* Flash Memory is linear_flash */ | ||
| 41 | #define XILINX_FLASH_START 0x48000000 | ||
| 42 | #define XILINX_FLASH_SIZE 0x08000000 | ||
| 43 | |||
| 44 | /* Sysace doesn't exist */ | ||
| 45 | |||
| 46 | /* Ethernet controller is soft_ethernet_mac */ | ||
| 47 | #define XILINX_AXIEMAC_BASEADDR 0x50100000 | ||
| 48 | #define XILINX_AXIDMA_BASEADDR 0x50000000 | ||
diff --git a/meta-kc705/recipes-bsp/u-boot/u-boot-xlnx_2013.01.bbappend b/meta-kc705/recipes-bsp/u-boot/u-boot-xlnx_2013.01.bbappend deleted file mode 100644 index 154793f8..00000000 --- a/meta-kc705/recipes-bsp/u-boot/u-boot-xlnx_2013.01.bbappend +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | |||
| 2 | FILESEXTRAPATHS_append_kc705-trd := "${THISDIR}/files:" | ||
| 3 | SRC_URI_append_kc705-trd = " \ | ||
| 4 | file://config.mk \ | ||
| 5 | file://xparameters.h \ | ||
| 6 | " | ||
diff --git a/meta-kc705/recipes-kernel/linux/linux-xlnx.inc b/meta-kc705/recipes-kernel/linux/linux-xlnx.inc deleted file mode 100644 index b93086a3..00000000 --- a/meta-kc705/recipes-kernel/linux/linux-xlnx.inc +++ /dev/null | |||
| @@ -1,9 +0,0 @@ | |||
| 1 | # linux-xlnx specific modifications for Xilinx KC705 TRD | ||
| 2 | |||
| 3 | FILESEXTRAPATHS_prepend := "${THISDIR}/linux-xlnx:" | ||
| 4 | SRC_URI_append_kc705-trd += "file://defconfig" | ||
| 5 | |||
| 6 | SRC_URI_append_kc705-trd += "file://kc705-trd.dts" | ||
| 7 | KERNEL_DEVICETREE_kc705-trd = "${WORKDIR}/kc705-trd.dts" | ||
| 8 | |||
| 9 | COMPATIBLE_MACHINE_kc705-trd = "kc705-trd" | ||
diff --git a/meta-kc705/recipes-kernel/linux/linux-xlnx/defconfig b/meta-kc705/recipes-kernel/linux/linux-xlnx/defconfig deleted file mode 100644 index d01b8120..00000000 --- a/meta-kc705/recipes-kernel/linux/linux-xlnx/defconfig +++ /dev/null | |||
| @@ -1,1182 +0,0 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated file; DO NOT EDIT. | ||
| 3 | # Linux/microblaze 3.6.0 Kernel Configuration | ||
| 4 | # | ||
| 5 | CONFIG_MICROBLAZE=y | ||
| 6 | # CONFIG_SWAP is not set | ||
| 7 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 8 | CONFIG_ZONE_DMA=y | ||
| 9 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
| 10 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
| 11 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
| 12 | CONFIG_GENERIC_HWEIGHT=y | ||
| 13 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 14 | CONFIG_GENERIC_GPIO=y | ||
| 15 | CONFIG_GENERIC_CSUM=y | ||
| 16 | CONFIG_STACKTRACE_SUPPORT=y | ||
| 17 | CONFIG_LOCKDEP_SUPPORT=y | ||
| 18 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
| 19 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
| 20 | |||
| 21 | # | ||
| 22 | # General setup | ||
| 23 | # | ||
| 24 | CONFIG_EXPERIMENTAL=y | ||
| 25 | CONFIG_BROKEN_ON_SMP=y | ||
| 26 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 27 | CONFIG_CROSS_COMPILE="" | ||
| 28 | CONFIG_LOCALVERSION="" | ||
| 29 | CONFIG_LOCALVERSION_AUTO=y | ||
| 30 | CONFIG_DEFAULT_HOSTNAME="(none)" | ||
| 31 | CONFIG_SYSVIPC=y | ||
| 32 | CONFIG_SYSVIPC_SYSCTL=y | ||
| 33 | CONFIG_POSIX_MQUEUE=y | ||
| 34 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
| 35 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 36 | # CONFIG_FHANDLE is not set | ||
| 37 | # CONFIG_TASKSTATS is not set | ||
| 38 | # CONFIG_AUDIT is not set | ||
| 39 | CONFIG_HAVE_GENERIC_HARDIRQS=y | ||
| 40 | |||
| 41 | # | ||
| 42 | # IRQ subsystem | ||
| 43 | # | ||
| 44 | CONFIG_GENERIC_HARDIRQS=y | ||
| 45 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 46 | CONFIG_GENERIC_IRQ_SHOW=y | ||
| 47 | CONFIG_IRQ_DOMAIN=y | ||
| 48 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
| 49 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
| 50 | |||
| 51 | # | ||
| 52 | # Timers subsystem | ||
| 53 | # | ||
| 54 | CONFIG_TICK_ONESHOT=y | ||
| 55 | CONFIG_NO_HZ=y | ||
| 56 | CONFIG_HIGH_RES_TIMERS=y | ||
| 57 | |||
| 58 | # | ||
| 59 | # RCU Subsystem | ||
| 60 | # | ||
| 61 | CONFIG_TINY_RCU=y | ||
| 62 | # CONFIG_PREEMPT_RCU is not set | ||
| 63 | # CONFIG_TREE_RCU_TRACE is not set | ||
| 64 | CONFIG_IKCONFIG=y | ||
| 65 | CONFIG_IKCONFIG_PROC=y | ||
| 66 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 67 | # CONFIG_CGROUPS is not set | ||
| 68 | # CONFIG_CHECKPOINT_RESTORE is not set | ||
| 69 | # CONFIG_NAMESPACES is not set | ||
| 70 | # CONFIG_SCHED_AUTOGROUP is not set | ||
| 71 | CONFIG_SYSFS_DEPRECATED=y | ||
| 72 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
| 73 | # CONFIG_RELAY is not set | ||
| 74 | CONFIG_BLK_DEV_INITRD=y | ||
| 75 | CONFIG_INITRAMFS_SOURCE="" | ||
| 76 | CONFIG_INITRAMFS_ROOT_UID=0 | ||
| 77 | CONFIG_INITRAMFS_ROOT_GID=0 | ||
| 78 | CONFIG_RD_GZIP=y | ||
| 79 | # CONFIG_RD_BZIP2 is not set | ||
| 80 | # CONFIG_RD_LZMA is not set | ||
| 81 | # CONFIG_RD_XZ is not set | ||
| 82 | # CONFIG_RD_LZO is not set | ||
| 83 | CONFIG_INITRAMFS_COMPRESSION_NONE=y | ||
| 84 | # CONFIG_INITRAMFS_COMPRESSION_GZIP is not set | ||
| 85 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
| 86 | CONFIG_SYSCTL=y | ||
| 87 | CONFIG_ANON_INODES=y | ||
| 88 | CONFIG_EXPERT=y | ||
| 89 | CONFIG_SYSCTL_SYSCALL=y | ||
| 90 | CONFIG_KALLSYMS=y | ||
| 91 | # CONFIG_KALLSYMS_ALL is not set | ||
| 92 | CONFIG_HOTPLUG=y | ||
| 93 | CONFIG_PRINTK=y | ||
| 94 | CONFIG_BUG=y | ||
| 95 | CONFIG_ELF_CORE=y | ||
| 96 | CONFIG_BASE_FULL=y | ||
| 97 | CONFIG_FUTEX=y | ||
| 98 | CONFIG_EPOLL=y | ||
| 99 | CONFIG_SIGNALFD=y | ||
| 100 | CONFIG_TIMERFD=y | ||
| 101 | CONFIG_EVENTFD=y | ||
| 102 | CONFIG_SHMEM=y | ||
| 103 | CONFIG_AIO=y | ||
| 104 | CONFIG_EMBEDDED=y | ||
| 105 | |||
| 106 | # | ||
| 107 | # Kernel Performance Events And Counters | ||
| 108 | # | ||
| 109 | CONFIG_VM_EVENT_COUNTERS=y | ||
| 110 | CONFIG_COMPAT_BRK=y | ||
| 111 | CONFIG_SLAB=y | ||
| 112 | # CONFIG_SLUB is not set | ||
| 113 | # CONFIG_SLOB is not set | ||
| 114 | # CONFIG_PROFILING is not set | ||
| 115 | CONFIG_HAVE_OPROFILE=y | ||
| 116 | CONFIG_HAVE_DMA_ATTRS=y | ||
| 117 | CONFIG_HAVE_DMA_API_DEBUG=y | ||
| 118 | CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y | ||
| 119 | |||
| 120 | # | ||
| 121 | # GCOV-based kernel profiling | ||
| 122 | # | ||
| 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
| 124 | CONFIG_SLABINFO=y | ||
| 125 | CONFIG_RT_MUTEXES=y | ||
| 126 | CONFIG_BASE_SMALL=0 | ||
| 127 | CONFIG_MODULES=y | ||
| 128 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
| 129 | CONFIG_MODULE_UNLOAD=y | ||
| 130 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 131 | # CONFIG_MODVERSIONS is not set | ||
| 132 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
| 133 | CONFIG_BLOCK=y | ||
| 134 | CONFIG_LBDAF=y | ||
| 135 | CONFIG_BLK_DEV_BSG=y | ||
| 136 | # CONFIG_BLK_DEV_BSGLIB is not set | ||
| 137 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
| 138 | |||
| 139 | # | ||
| 140 | # Partition Types | ||
| 141 | # | ||
| 142 | # CONFIG_PARTITION_ADVANCED is not set | ||
| 143 | CONFIG_MSDOS_PARTITION=y | ||
| 144 | |||
| 145 | # | ||
| 146 | # IO Schedulers | ||
| 147 | # | ||
| 148 | CONFIG_IOSCHED_NOOP=y | ||
| 149 | CONFIG_IOSCHED_DEADLINE=y | ||
| 150 | CONFIG_IOSCHED_CFQ=y | ||
| 151 | # CONFIG_DEFAULT_DEADLINE is not set | ||
| 152 | CONFIG_DEFAULT_CFQ=y | ||
| 153 | # CONFIG_DEFAULT_NOOP is not set | ||
| 154 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
| 155 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
| 156 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
| 157 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
| 158 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
| 159 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
| 160 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
| 161 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
| 162 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
| 163 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
| 164 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
| 165 | # CONFIG_INLINE_READ_LOCK is not set | ||
| 166 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
| 167 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
| 168 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
| 169 | CONFIG_INLINE_READ_UNLOCK=y | ||
| 170 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
| 171 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
| 172 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
| 173 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
| 174 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
| 175 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
| 176 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
| 177 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
| 178 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
| 179 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
| 180 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
| 181 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
| 182 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
| 183 | # CONFIG_FREEZER is not set | ||
| 184 | |||
| 185 | # | ||
| 186 | # Platform options | ||
| 187 | # | ||
| 188 | CONFIG_PLATFORM_GENERIC=y | ||
| 189 | # CONFIG_OPT_LIB_FUNCTION is not set | ||
| 190 | |||
| 191 | # | ||
| 192 | # Definitions for MICROBLAZE0 | ||
| 193 | # | ||
| 194 | CONFIG_KERNEL_BASE_ADDR=0x80000000 | ||
| 195 | CONFIG_XILINX_MICROBLAZE0_FAMILY="kintex7" | ||
| 196 | CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR=1 | ||
| 197 | CONFIG_XILINX_MICROBLAZE0_USE_PCMP_INSTR=1 | ||
| 198 | CONFIG_XILINX_MICROBLAZE0_USE_BARREL=1 | ||
| 199 | CONFIG_XILINX_MICROBLAZE0_USE_DIV=0 | ||
| 200 | CONFIG_XILINX_MICROBLAZE0_USE_HW_MUL=1 | ||
| 201 | CONFIG_XILINX_MICROBLAZE0_USE_FPU=0 | ||
| 202 | CONFIG_XILINX_MICROBLAZE0_HW_VER="8.50.a" | ||
| 203 | |||
| 204 | # | ||
| 205 | # Processor type and features | ||
| 206 | # | ||
| 207 | CONFIG_PREEMPT_NONE=y | ||
| 208 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
| 209 | # CONFIG_PREEMPT is not set | ||
| 210 | # CONFIG_HZ_100 is not set | ||
| 211 | CONFIG_HZ_250=y | ||
| 212 | # CONFIG_HZ_300 is not set | ||
| 213 | # CONFIG_HZ_1000 is not set | ||
| 214 | CONFIG_HZ=250 | ||
| 215 | CONFIG_SCHED_HRTICK=y | ||
| 216 | CONFIG_MMU=y | ||
| 217 | |||
| 218 | # | ||
| 219 | # Boot options | ||
| 220 | # | ||
| 221 | # CONFIG_CMDLINE_BOOL is not set | ||
| 222 | CONFIG_SECCOMP=y | ||
| 223 | |||
| 224 | # | ||
| 225 | # Advanced setup | ||
| 226 | # | ||
| 227 | CONFIG_ADVANCED_OPTIONS=y | ||
| 228 | # CONFIG_HIGHMEM is not set | ||
| 229 | CONFIG_LOWMEM_SIZE_BOOL=y | ||
| 230 | CONFIG_LOWMEM_SIZE=0x30000000 | ||
| 231 | CONFIG_MANUAL_RESET_VECTOR=0x0 | ||
| 232 | CONFIG_KERNEL_START_BOOL=y | ||
| 233 | CONFIG_KERNEL_START=0xc0000000 | ||
| 234 | CONFIG_TASK_SIZE_BOOL=y | ||
| 235 | CONFIG_TASK_SIZE=0x80000000 | ||
| 236 | CONFIG_KERNEL_PAD=0x80000 | ||
| 237 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 238 | CONFIG_FLATMEM_MANUAL=y | ||
| 239 | CONFIG_FLATMEM=y | ||
| 240 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 241 | CONFIG_HAVE_MEMBLOCK=y | ||
| 242 | CONFIG_HAVE_MEMBLOCK_NODE_MAP=y | ||
| 243 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
| 244 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
| 245 | # CONFIG_COMPACTION is not set | ||
| 246 | # CONFIG_PHYS_ADDR_T_64BIT is not set | ||
| 247 | CONFIG_ZONE_DMA_FLAG=1 | ||
| 248 | CONFIG_BOUNCE=y | ||
| 249 | CONFIG_VIRT_TO_BUS=y | ||
| 250 | # CONFIG_KSM is not set | ||
| 251 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | ||
| 252 | CONFIG_CROSS_MEMORY_ATTACH=y | ||
| 253 | CONFIG_NEED_PER_CPU_KM=y | ||
| 254 | # CONFIG_CLEANCACHE is not set | ||
| 255 | |||
| 256 | # | ||
| 257 | # Executable file formats | ||
| 258 | # | ||
| 259 | CONFIG_BINFMT_ELF=y | ||
| 260 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
| 261 | # CONFIG_HAVE_AOUT is not set | ||
| 262 | CONFIG_BINFMT_MISC=y | ||
| 263 | |||
| 264 | # | ||
| 265 | # Bus Options | ||
| 266 | # | ||
| 267 | # CONFIG_PCI is not set | ||
| 268 | # CONFIG_PCI_DOMAINS is not set | ||
| 269 | # CONFIG_PCI_SYSCALL is not set | ||
| 270 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
| 271 | CONFIG_NET=y | ||
| 272 | |||
| 273 | # | ||
| 274 | # Networking options | ||
| 275 | # | ||
| 276 | CONFIG_PACKET=y | ||
| 277 | CONFIG_UNIX=y | ||
| 278 | # CONFIG_UNIX_DIAG is not set | ||
| 279 | CONFIG_XFRM=y | ||
| 280 | # CONFIG_XFRM_USER is not set | ||
| 281 | # CONFIG_XFRM_SUB_POLICY is not set | ||
| 282 | # CONFIG_XFRM_MIGRATE is not set | ||
| 283 | # CONFIG_XFRM_STATISTICS is not set | ||
| 284 | # CONFIG_NET_KEY is not set | ||
| 285 | CONFIG_INET=y | ||
| 286 | # CONFIG_IP_MULTICAST is not set | ||
| 287 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
| 288 | # CONFIG_IP_PNP is not set | ||
| 289 | # CONFIG_NET_IPIP is not set | ||
| 290 | # CONFIG_NET_IPGRE_DEMUX is not set | ||
| 291 | # CONFIG_ARPD is not set | ||
| 292 | # CONFIG_SYN_COOKIES is not set | ||
| 293 | # CONFIG_NET_IPVTI is not set | ||
| 294 | # CONFIG_INET_AH is not set | ||
| 295 | # CONFIG_INET_ESP is not set | ||
| 296 | # CONFIG_INET_IPCOMP is not set | ||
| 297 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
| 298 | # CONFIG_INET_TUNNEL is not set | ||
| 299 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
| 300 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
| 301 | CONFIG_INET_XFRM_MODE_BEET=y | ||
| 302 | CONFIG_INET_LRO=y | ||
| 303 | CONFIG_INET_DIAG=y | ||
| 304 | CONFIG_INET_TCP_DIAG=y | ||
| 305 | # CONFIG_INET_UDP_DIAG is not set | ||
| 306 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
| 307 | CONFIG_TCP_CONG_CUBIC=y | ||
| 308 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
| 309 | # CONFIG_TCP_MD5SIG is not set | ||
| 310 | # CONFIG_IPV6 is not set | ||
| 311 | # CONFIG_NETWORK_SECMARK is not set | ||
| 312 | # CONFIG_NETWORK_PHY_TIMESTAMPING is not set | ||
| 313 | # CONFIG_NETFILTER is not set | ||
| 314 | # CONFIG_IP_DCCP is not set | ||
| 315 | # CONFIG_IP_SCTP is not set | ||
| 316 | # CONFIG_RDS is not set | ||
| 317 | # CONFIG_TIPC is not set | ||
| 318 | # CONFIG_ATM is not set | ||
| 319 | # CONFIG_L2TP is not set | ||
| 320 | # CONFIG_BRIDGE is not set | ||
| 321 | # CONFIG_NET_DSA is not set | ||
| 322 | # CONFIG_VLAN_8021Q is not set | ||
| 323 | # CONFIG_DECNET is not set | ||
| 324 | # CONFIG_LLC2 is not set | ||
| 325 | # CONFIG_IPX is not set | ||
| 326 | # CONFIG_ATALK is not set | ||
| 327 | # CONFIG_X25 is not set | ||
| 328 | # CONFIG_LAPB is not set | ||
| 329 | # CONFIG_WAN_ROUTER is not set | ||
| 330 | # CONFIG_PHONET is not set | ||
| 331 | # CONFIG_IEEE802154 is not set | ||
| 332 | # CONFIG_NET_SCHED is not set | ||
| 333 | # CONFIG_DCB is not set | ||
| 334 | # CONFIG_BATMAN_ADV is not set | ||
| 335 | # CONFIG_OPENVSWITCH is not set | ||
| 336 | CONFIG_BQL=y | ||
| 337 | |||
| 338 | # | ||
| 339 | # Network testing | ||
| 340 | # | ||
| 341 | # CONFIG_NET_PKTGEN is not set | ||
| 342 | # CONFIG_HAMRADIO is not set | ||
| 343 | # CONFIG_CAN is not set | ||
| 344 | # CONFIG_IRDA is not set | ||
| 345 | # CONFIG_BT is not set | ||
| 346 | # CONFIG_AF_RXRPC is not set | ||
| 347 | CONFIG_WIRELESS=y | ||
| 348 | # CONFIG_CFG80211 is not set | ||
| 349 | # CONFIG_LIB80211 is not set | ||
| 350 | |||
| 351 | # | ||
| 352 | # CFG80211 needs to be enabled for MAC80211 | ||
| 353 | # | ||
| 354 | # CONFIG_WIMAX is not set | ||
| 355 | # CONFIG_RFKILL is not set | ||
| 356 | # CONFIG_NET_9P is not set | ||
| 357 | # CONFIG_CAIF is not set | ||
| 358 | # CONFIG_CEPH_LIB is not set | ||
| 359 | # CONFIG_NFC is not set | ||
| 360 | |||
| 361 | # | ||
| 362 | # Device Drivers | ||
| 363 | # | ||
| 364 | |||
| 365 | # | ||
| 366 | # Generic Driver Options | ||
| 367 | # | ||
| 368 | CONFIG_UEVENT_HELPER_PATH="" | ||
| 369 | CONFIG_DEVTMPFS=y | ||
| 370 | CONFIG_DEVTMPFS_MOUNT=y | ||
| 371 | CONFIG_STANDALONE=y | ||
| 372 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 373 | CONFIG_FW_LOADER=y | ||
| 374 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
| 375 | CONFIG_EXTRA_FIRMWARE="" | ||
| 376 | # CONFIG_DEBUG_DRIVER is not set | ||
| 377 | # CONFIG_DEBUG_DEVRES is not set | ||
| 378 | # CONFIG_SYS_HYPERVISOR is not set | ||
| 379 | CONFIG_GENERIC_CPU_DEVICES=y | ||
| 380 | # CONFIG_DMA_SHARED_BUFFER is not set | ||
| 381 | # CONFIG_CONNECTOR is not set | ||
| 382 | CONFIG_MTD=y | ||
| 383 | # CONFIG_MTD_TESTS is not set | ||
| 384 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
| 385 | CONFIG_MTD_CMDLINE_PARTS=y | ||
| 386 | CONFIG_MTD_OF_PARTS=y | ||
| 387 | # CONFIG_MTD_AR7_PARTS is not set | ||
| 388 | |||
| 389 | # | ||
| 390 | # User Modules And Translation Layers | ||
| 391 | # | ||
| 392 | CONFIG_MTD_CHAR=y | ||
| 393 | # CONFIG_MTD_BLKDEVS is not set | ||
| 394 | # CONFIG_MTD_BLOCK is not set | ||
| 395 | # CONFIG_MTD_BLOCK_RO is not set | ||
| 396 | # CONFIG_FTL is not set | ||
| 397 | # CONFIG_NFTL is not set | ||
| 398 | # CONFIG_INFTL is not set | ||
| 399 | # CONFIG_RFD_FTL is not set | ||
| 400 | # CONFIG_SSFDC is not set | ||
| 401 | # CONFIG_SM_FTL is not set | ||
| 402 | # CONFIG_MTD_OOPS is not set | ||
| 403 | |||
| 404 | # | ||
| 405 | # RAM/ROM/Flash chip drivers | ||
| 406 | # | ||
| 407 | CONFIG_MTD_CFI=y | ||
| 408 | CONFIG_MTD_JEDECPROBE=y | ||
| 409 | CONFIG_MTD_GEN_PROBE=y | ||
| 410 | CONFIG_MTD_CFI_ADV_OPTIONS=y | ||
| 411 | CONFIG_MTD_CFI_NOSWAP=y | ||
| 412 | # CONFIG_MTD_CFI_BE_BYTE_SWAP is not set | ||
| 413 | # CONFIG_MTD_CFI_LE_BYTE_SWAP is not set | ||
| 414 | # CONFIG_MTD_CFI_GEOMETRY is not set | ||
| 415 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
| 416 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
| 417 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
| 418 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
| 419 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
| 420 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
| 421 | CONFIG_MTD_CFI_I1=y | ||
| 422 | CONFIG_MTD_CFI_I2=y | ||
| 423 | # CONFIG_MTD_CFI_I4 is not set | ||
| 424 | # CONFIG_MTD_CFI_I8 is not set | ||
| 425 | # CONFIG_MTD_OTP is not set | ||
| 426 | CONFIG_MTD_CFI_INTELEXT=y | ||
| 427 | CONFIG_MTD_CFI_AMDSTD=y | ||
| 428 | CONFIG_MTD_CFI_STAA=y | ||
| 429 | CONFIG_MTD_CFI_UTIL=y | ||
| 430 | CONFIG_MTD_RAM=y | ||
| 431 | # CONFIG_MTD_ROM is not set | ||
| 432 | # CONFIG_MTD_ABSENT is not set | ||
| 433 | |||
| 434 | # | ||
| 435 | # Mapping drivers for chip access | ||
| 436 | # | ||
| 437 | CONFIG_MTD_COMPLEX_MAPPINGS=y | ||
| 438 | CONFIG_MTD_PHYSMAP=y | ||
| 439 | # CONFIG_MTD_PHYSMAP_COMPAT is not set | ||
| 440 | CONFIG_MTD_PHYSMAP_OF=y | ||
| 441 | # CONFIG_MTD_GPIO_ADDR is not set | ||
| 442 | # CONFIG_MTD_PLATRAM is not set | ||
| 443 | # CONFIG_MTD_LATCH_ADDR is not set | ||
| 444 | |||
| 445 | # | ||
| 446 | # Self-contained MTD device drivers | ||
| 447 | # | ||
| 448 | # CONFIG_MTD_DATAFLASH is not set | ||
| 449 | # CONFIG_MTD_M25P80 is not set | ||
| 450 | # CONFIG_MTD_SST25L is not set | ||
| 451 | # CONFIG_MTD_SLRAM is not set | ||
| 452 | # CONFIG_MTD_PHRAM is not set | ||
| 453 | # CONFIG_MTD_MTDRAM is not set | ||
| 454 | # CONFIG_MTD_BLOCK2MTD is not set | ||
| 455 | |||
| 456 | # | ||
| 457 | # Disk-On-Chip Device Drivers | ||
| 458 | # | ||
| 459 | # CONFIG_MTD_DOCG3 is not set | ||
| 460 | # CONFIG_MTD_NAND is not set | ||
| 461 | # CONFIG_MTD_ONENAND is not set | ||
| 462 | |||
| 463 | # | ||
| 464 | # LPDDR flash memory drivers | ||
| 465 | # | ||
| 466 | # CONFIG_MTD_LPDDR is not set | ||
| 467 | # CONFIG_MTD_UBI is not set | ||
| 468 | CONFIG_DTC=y | ||
| 469 | CONFIG_OF=y | ||
| 470 | |||
| 471 | # | ||
| 472 | # Device Tree and Open Firmware support | ||
| 473 | # | ||
| 474 | CONFIG_PROC_DEVICETREE=y | ||
| 475 | # CONFIG_OF_SELFTEST is not set | ||
| 476 | CONFIG_OF_FLATTREE=y | ||
| 477 | CONFIG_OF_EARLY_FLATTREE=y | ||
| 478 | CONFIG_OF_ADDRESS=y | ||
| 479 | CONFIG_OF_IRQ=y | ||
| 480 | CONFIG_OF_DEVICE=y | ||
| 481 | CONFIG_OF_NET=y | ||
| 482 | CONFIG_OF_MDIO=y | ||
| 483 | CONFIG_OF_MTD=y | ||
| 484 | # CONFIG_PARPORT is not set | ||
| 485 | CONFIG_BLK_DEV=y | ||
| 486 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 487 | # CONFIG_BLK_DEV_LOOP is not set | ||
| 488 | |||
| 489 | # | ||
| 490 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
| 491 | # | ||
| 492 | # CONFIG_BLK_DEV_NBD is not set | ||
| 493 | CONFIG_BLK_DEV_RAM=y | ||
| 494 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 495 | CONFIG_BLK_DEV_RAM_SIZE=16384 | ||
| 496 | # CONFIG_BLK_DEV_XIP is not set | ||
| 497 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 498 | # CONFIG_ATA_OVER_ETH is not set | ||
| 499 | CONFIG_XILINX_SYSACE=y | ||
| 500 | # CONFIG_BLK_DEV_RBD is not set | ||
| 501 | |||
| 502 | # | ||
| 503 | # Misc devices | ||
| 504 | # | ||
| 505 | # CONFIG_AD525X_DPOT is not set | ||
| 506 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
| 507 | # CONFIG_TI_DAC7512 is not set | ||
| 508 | # CONFIG_BMP085_SPI is not set | ||
| 509 | # CONFIG_C2PORT is not set | ||
| 510 | |||
| 511 | # | ||
| 512 | # EEPROM support | ||
| 513 | # | ||
| 514 | # CONFIG_EEPROM_AT25 is not set | ||
| 515 | # CONFIG_EEPROM_93CX6 is not set | ||
| 516 | # CONFIG_EEPROM_93XX46 is not set | ||
| 517 | |||
| 518 | # | ||
| 519 | # Texas Instruments shared transport line discipline | ||
| 520 | # | ||
| 521 | # CONFIG_TI_ST is not set | ||
| 522 | |||
| 523 | # | ||
| 524 | # Altera FPGA firmware download module | ||
| 525 | # | ||
| 526 | |||
| 527 | # | ||
| 528 | # SCSI device support | ||
| 529 | # | ||
| 530 | CONFIG_SCSI_MOD=y | ||
| 531 | # CONFIG_RAID_ATTRS is not set | ||
| 532 | # CONFIG_SCSI is not set | ||
| 533 | # CONFIG_SCSI_DMA is not set | ||
| 534 | # CONFIG_SCSI_NETLINK is not set | ||
| 535 | # CONFIG_ATA is not set | ||
| 536 | # CONFIG_MD is not set | ||
| 537 | CONFIG_NETDEVICES=y | ||
| 538 | CONFIG_NET_CORE=y | ||
| 539 | # CONFIG_BONDING is not set | ||
| 540 | # CONFIG_DUMMY is not set | ||
| 541 | # CONFIG_EQUALIZER is not set | ||
| 542 | # CONFIG_MII is not set | ||
| 543 | # CONFIG_NET_TEAM is not set | ||
| 544 | # CONFIG_MACVLAN is not set | ||
| 545 | # CONFIG_NETCONSOLE is not set | ||
| 546 | # CONFIG_NETPOLL is not set | ||
| 547 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 548 | # CONFIG_TUN is not set | ||
| 549 | # CONFIG_VETH is not set | ||
| 550 | |||
| 551 | # | ||
| 552 | # CAIF transport drivers | ||
| 553 | # | ||
| 554 | CONFIG_ETHERNET=y | ||
| 555 | CONFIG_NET_VENDOR_BROADCOM=y | ||
| 556 | # CONFIG_B44 is not set | ||
| 557 | # CONFIG_NET_CALXEDA_XGMAC is not set | ||
| 558 | CONFIG_NET_VENDOR_CHELSIO=y | ||
| 559 | # CONFIG_DNET is not set | ||
| 560 | CONFIG_NET_VENDOR_INTEL=y | ||
| 561 | CONFIG_NET_VENDOR_I825XX=y | ||
| 562 | CONFIG_NET_VENDOR_MARVELL=y | ||
| 563 | CONFIG_NET_VENDOR_MICREL=y | ||
| 564 | # CONFIG_KS8851 is not set | ||
| 565 | # CONFIG_KS8851_MLL is not set | ||
| 566 | CONFIG_NET_VENDOR_MICROCHIP=y | ||
| 567 | # CONFIG_ENC28J60 is not set | ||
| 568 | CONFIG_NET_VENDOR_NATSEMI=y | ||
| 569 | CONFIG_NET_VENDOR_8390=y | ||
| 570 | # CONFIG_ETHOC is not set | ||
| 571 | CONFIG_NET_VENDOR_SEEQ=y | ||
| 572 | # CONFIG_SEEQ8005 is not set | ||
| 573 | CONFIG_NET_VENDOR_STMICRO=y | ||
| 574 | # CONFIG_STMMAC_ETH is not set | ||
| 575 | CONFIG_NET_VENDOR_WIZNET=y | ||
| 576 | # CONFIG_WIZNET_W5100 is not set | ||
| 577 | # CONFIG_WIZNET_W5300 is not set | ||
| 578 | CONFIG_NET_VENDOR_XILINX=y | ||
| 579 | CONFIG_XILINX_EMACLITE=y | ||
| 580 | CONFIG_XILINX_AXI_EMAC=y | ||
| 581 | CONFIG_XILINX_LLTEMAC=y | ||
| 582 | # CONFIG_XILINX_LLTEMAC_MARVELL_88E1111_RGMII is not set | ||
| 583 | CONFIG_XILINX_LLTEMAC_MARVELL_88E1111_GMII=y | ||
| 584 | # CONFIG_XILINX_LLTEMAC_MARVELL_88E1111_MII is not set | ||
| 585 | # CONFIG_XILINX_LLTEMAC_XILINX_1000BASEX is not set | ||
| 586 | CONFIG_PHYLIB=y | ||
| 587 | |||
| 588 | # | ||
| 589 | # MII PHY device drivers | ||
| 590 | # | ||
| 591 | # CONFIG_AMD_PHY is not set | ||
| 592 | # CONFIG_MARVELL_PHY is not set | ||
| 593 | # CONFIG_DAVICOM_PHY is not set | ||
| 594 | # CONFIG_QSEMI_PHY is not set | ||
| 595 | # CONFIG_LXT_PHY is not set | ||
| 596 | # CONFIG_CICADA_PHY is not set | ||
| 597 | # CONFIG_VITESSE_PHY is not set | ||
| 598 | # CONFIG_SMSC_PHY is not set | ||
| 599 | # CONFIG_BROADCOM_PHY is not set | ||
| 600 | # CONFIG_BCM87XX_PHY is not set | ||
| 601 | # CONFIG_ICPLUS_PHY is not set | ||
| 602 | # CONFIG_REALTEK_PHY is not set | ||
| 603 | # CONFIG_NATIONAL_PHY is not set | ||
| 604 | # CONFIG_STE10XP is not set | ||
| 605 | # CONFIG_LSI_ET1011C_PHY is not set | ||
| 606 | # CONFIG_MICREL_PHY is not set | ||
| 607 | # CONFIG_FIXED_PHY is not set | ||
| 608 | # CONFIG_MDIO_BITBANG is not set | ||
| 609 | # CONFIG_MDIO_BUS_MUX_GPIO is not set | ||
| 610 | # CONFIG_MICREL_KS8995MA is not set | ||
| 611 | # CONFIG_PPP is not set | ||
| 612 | # CONFIG_SLIP is not set | ||
| 613 | CONFIG_WLAN=y | ||
| 614 | # CONFIG_HOSTAP is not set | ||
| 615 | # CONFIG_WL_TI is not set | ||
| 616 | |||
| 617 | # | ||
| 618 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
| 619 | # | ||
| 620 | # CONFIG_WAN is not set | ||
| 621 | # CONFIG_ISDN is not set | ||
| 622 | |||
| 623 | # | ||
| 624 | # Input device support | ||
| 625 | # | ||
| 626 | # CONFIG_INPUT is not set | ||
| 627 | |||
| 628 | # | ||
| 629 | # Hardware I/O ports | ||
| 630 | # | ||
| 631 | # CONFIG_SERIO is not set | ||
| 632 | # CONFIG_GAMEPORT is not set | ||
| 633 | |||
| 634 | # | ||
| 635 | # Character devices | ||
| 636 | # | ||
| 637 | # CONFIG_VT is not set | ||
| 638 | CONFIG_UNIX98_PTYS=y | ||
| 639 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
| 640 | # CONFIG_LEGACY_PTYS is not set | ||
| 641 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 642 | # CONFIG_N_GSM is not set | ||
| 643 | # CONFIG_TRACE_SINK is not set | ||
| 644 | CONFIG_DEVKMEM=y | ||
| 645 | |||
| 646 | # | ||
| 647 | # Serial drivers | ||
| 648 | # | ||
| 649 | CONFIG_SERIAL_8250=y | ||
| 650 | CONFIG_SERIAL_8250_CONSOLE=y | ||
| 651 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
| 652 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
| 653 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
| 654 | # CONFIG_SERIAL_8250_DW is not set | ||
| 655 | |||
| 656 | # | ||
| 657 | # Non-8250 serial port support | ||
| 658 | # | ||
| 659 | # CONFIG_SERIAL_MAX3100 is not set | ||
| 660 | # CONFIG_SERIAL_MAX3107 is not set | ||
| 661 | CONFIG_SERIAL_UARTLITE=y | ||
| 662 | CONFIG_SERIAL_UARTLITE_CONSOLE=y | ||
| 663 | CONFIG_SERIAL_CORE=y | ||
| 664 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 665 | CONFIG_SERIAL_OF_PLATFORM=y | ||
| 666 | # CONFIG_SERIAL_TIMBERDALE is not set | ||
| 667 | # CONFIG_SERIAL_ALTERA_JTAGUART is not set | ||
| 668 | # CONFIG_SERIAL_ALTERA_UART is not set | ||
| 669 | # CONFIG_SERIAL_IFX6X60 is not set | ||
| 670 | # CONFIG_TTY_PRINTK is not set | ||
| 671 | # CONFIG_IPMI_HANDLER is not set | ||
| 672 | # CONFIG_HW_RANDOM is not set | ||
| 673 | # CONFIG_RTC is not set | ||
| 674 | # CONFIG_GEN_RTC is not set | ||
| 675 | # CONFIG_XILINX_HWICAP is not set | ||
| 676 | # CONFIG_R3964 is not set | ||
| 677 | |||
| 678 | # | ||
| 679 | # PCMCIA character devices | ||
| 680 | # | ||
| 681 | # CONFIG_RAW_DRIVER is not set | ||
| 682 | # CONFIG_TCG_TPM is not set | ||
| 683 | # CONFIG_I2C is not set | ||
| 684 | CONFIG_SPI=y | ||
| 685 | # CONFIG_SPI_DEBUG is not set | ||
| 686 | CONFIG_SPI_MASTER=y | ||
| 687 | |||
| 688 | # | ||
| 689 | # SPI Master Controller Drivers | ||
| 690 | # | ||
| 691 | # CONFIG_SPI_ALTERA is not set | ||
| 692 | CONFIG_SPI_BITBANG=y | ||
| 693 | # CONFIG_SPI_GPIO is not set | ||
| 694 | # CONFIG_SPI_OC_TINY is not set | ||
| 695 | # CONFIG_SPI_PXA2XX_PCI is not set | ||
| 696 | CONFIG_SPI_XILINX=y | ||
| 697 | # CONFIG_SPI_DESIGNWARE is not set | ||
| 698 | |||
| 699 | # | ||
| 700 | # SPI Protocol Masters | ||
| 701 | # | ||
| 702 | # CONFIG_SPI_SPIDEV is not set | ||
| 703 | # CONFIG_SPI_TLE62X0 is not set | ||
| 704 | # CONFIG_HSI is not set | ||
| 705 | |||
| 706 | # | ||
| 707 | # PPS support | ||
| 708 | # | ||
| 709 | # CONFIG_PPS is not set | ||
| 710 | |||
| 711 | # | ||
| 712 | # PPS generators support | ||
| 713 | # | ||
| 714 | |||
| 715 | # | ||
| 716 | # PTP clock support | ||
| 717 | # | ||
| 718 | |||
| 719 | # | ||
| 720 | # Enable Device Drivers -> PPS to see the PTP clock options. | ||
| 721 | # | ||
| 722 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
| 723 | CONFIG_GPIOLIB=y | ||
| 724 | CONFIG_OF_GPIO=y | ||
| 725 | # CONFIG_DEBUG_GPIO is not set | ||
| 726 | CONFIG_GPIO_SYSFS=y | ||
| 727 | |||
| 728 | # | ||
| 729 | # Memory mapped GPIO drivers: | ||
| 730 | # | ||
| 731 | # CONFIG_GPIO_GENERIC_PLATFORM is not set | ||
| 732 | CONFIG_GPIO_XILINX=y | ||
| 733 | |||
| 734 | # | ||
| 735 | # I2C GPIO expanders: | ||
| 736 | # | ||
| 737 | |||
| 738 | # | ||
| 739 | # PCI GPIO expanders: | ||
| 740 | # | ||
| 741 | |||
| 742 | # | ||
| 743 | # SPI GPIO expanders: | ||
| 744 | # | ||
| 745 | # CONFIG_GPIO_MAX7301 is not set | ||
| 746 | # CONFIG_GPIO_MCP23S08 is not set | ||
| 747 | # CONFIG_GPIO_MC33880 is not set | ||
| 748 | # CONFIG_GPIO_74X164 is not set | ||
| 749 | |||
| 750 | # | ||
| 751 | # AC97 GPIO expanders: | ||
| 752 | # | ||
| 753 | |||
| 754 | # | ||
| 755 | # MODULbus GPIO expanders: | ||
| 756 | # | ||
| 757 | # CONFIG_W1 is not set | ||
| 758 | # CONFIG_POWER_SUPPLY is not set | ||
| 759 | # CONFIG_POWER_AVS is not set | ||
| 760 | # CONFIG_HWMON is not set | ||
| 761 | # CONFIG_THERMAL is not set | ||
| 762 | # CONFIG_WATCHDOG is not set | ||
| 763 | CONFIG_SSB_POSSIBLE=y | ||
| 764 | |||
| 765 | # | ||
| 766 | # Sonics Silicon Backplane | ||
| 767 | # | ||
| 768 | # CONFIG_SSB is not set | ||
| 769 | CONFIG_BCMA_POSSIBLE=y | ||
| 770 | |||
| 771 | # | ||
| 772 | # Broadcom specific AMBA | ||
| 773 | # | ||
| 774 | # CONFIG_BCMA is not set | ||
| 775 | |||
| 776 | # | ||
| 777 | # Multifunction device drivers | ||
| 778 | # | ||
| 779 | # CONFIG_MFD_CORE is not set | ||
| 780 | # CONFIG_MFD_SM501 is not set | ||
| 781 | # CONFIG_HTC_PASIC3 is not set | ||
| 782 | # CONFIG_MFD_TPS65912_SPI is not set | ||
| 783 | # CONFIG_MFD_STMPE is not set | ||
| 784 | # CONFIG_MFD_TMIO is not set | ||
| 785 | # CONFIG_MFD_DA9052_SPI is not set | ||
| 786 | # CONFIG_MFD_ARIZONA_SPI is not set | ||
| 787 | # CONFIG_MFD_WM831X_SPI is not set | ||
| 788 | # CONFIG_MFD_MC13XXX_SPI is not set | ||
| 789 | # CONFIG_ABX500_CORE is not set | ||
| 790 | # CONFIG_EZX_PCAP is not set | ||
| 791 | # CONFIG_REGULATOR is not set | ||
| 792 | # CONFIG_MEDIA_SUPPORT is not set | ||
| 793 | |||
| 794 | # | ||
| 795 | # Graphics support | ||
| 796 | # | ||
| 797 | # CONFIG_DRM is not set | ||
| 798 | # CONFIG_VGASTATE is not set | ||
| 799 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
| 800 | # CONFIG_FB is not set | ||
| 801 | # CONFIG_EXYNOS_VIDEO is not set | ||
| 802 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
| 803 | # CONFIG_SOUND is not set | ||
| 804 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
| 805 | CONFIG_USB_ARCH_HAS_EHCI=y | ||
| 806 | # CONFIG_USB_ARCH_HAS_XHCI is not set | ||
| 807 | # CONFIG_USB_SUPPORT is not set | ||
| 808 | # CONFIG_MMC is not set | ||
| 809 | # CONFIG_MEMSTICK is not set | ||
| 810 | # CONFIG_NEW_LEDS is not set | ||
| 811 | # CONFIG_ACCESSIBILITY is not set | ||
| 812 | # CONFIG_RTC_CLASS is not set | ||
| 813 | # CONFIG_DMADEVICES is not set | ||
| 814 | # CONFIG_AUXDISPLAY is not set | ||
| 815 | CONFIG_XILINX_EDK=y | ||
| 816 | # CONFIG_XILINX_LLDMA_USE_DCR is not set | ||
| 817 | CONFIG_XILINX_DRIVERS=y | ||
| 818 | CONFIG_NEED_XILINX_LLDMA=y | ||
| 819 | CONFIG_UIO=y | ||
| 820 | CONFIG_UIO_PDRV_GENIRQ=y | ||
| 821 | |||
| 822 | # | ||
| 823 | # Virtio drivers | ||
| 824 | # | ||
| 825 | # CONFIG_VIRTIO_BALLOON is not set | ||
| 826 | # CONFIG_VIRTIO_MMIO is not set | ||
| 827 | |||
| 828 | # | ||
| 829 | # Microsoft Hyper-V guest support | ||
| 830 | # | ||
| 831 | # CONFIG_STAGING is not set | ||
| 832 | |||
| 833 | # | ||
| 834 | # Hardware Spinlock drivers | ||
| 835 | # | ||
| 836 | CONFIG_IOMMU_SUPPORT=y | ||
| 837 | CONFIG_OF_IOMMU=y | ||
| 838 | |||
| 839 | # | ||
| 840 | # Remoteproc drivers (EXPERIMENTAL) | ||
| 841 | # | ||
| 842 | |||
| 843 | # | ||
| 844 | # Rpmsg drivers (EXPERIMENTAL) | ||
| 845 | # | ||
| 846 | # CONFIG_VIRT_DRIVERS is not set | ||
| 847 | # CONFIG_PM_DEVFREQ is not set | ||
| 848 | # CONFIG_EXTCON is not set | ||
| 849 | # CONFIG_MEMORY is not set | ||
| 850 | # CONFIG_IIO is not set | ||
| 851 | # CONFIG_PWM is not set | ||
| 852 | # CONFIG_PMODS is not set | ||
| 853 | |||
| 854 | # | ||
| 855 | # File systems | ||
| 856 | # | ||
| 857 | CONFIG_EXT2_FS=y | ||
| 858 | CONFIG_EXT2_FS_XATTR=y | ||
| 859 | CONFIG_EXT2_FS_POSIX_ACL=y | ||
| 860 | CONFIG_EXT2_FS_SECURITY=y | ||
| 861 | CONFIG_EXT2_FS_XIP=y | ||
| 862 | CONFIG_EXT3_FS=y | ||
| 863 | CONFIG_EXT3_DEFAULTS_TO_ORDERED=y | ||
| 864 | CONFIG_EXT3_FS_XATTR=y | ||
| 865 | CONFIG_EXT3_FS_POSIX_ACL=y | ||
| 866 | CONFIG_EXT3_FS_SECURITY=y | ||
| 867 | # CONFIG_EXT4_FS is not set | ||
| 868 | CONFIG_FS_XIP=y | ||
| 869 | CONFIG_JBD=y | ||
| 870 | CONFIG_FS_MBCACHE=y | ||
| 871 | # CONFIG_REISERFS_FS is not set | ||
| 872 | # CONFIG_JFS_FS is not set | ||
| 873 | # CONFIG_XFS_FS is not set | ||
| 874 | # CONFIG_GFS2_FS is not set | ||
| 875 | # CONFIG_BTRFS_FS is not set | ||
| 876 | # CONFIG_NILFS2_FS is not set | ||
| 877 | CONFIG_FS_POSIX_ACL=y | ||
| 878 | CONFIG_FILE_LOCKING=y | ||
| 879 | CONFIG_FSNOTIFY=y | ||
| 880 | # CONFIG_DNOTIFY is not set | ||
| 881 | CONFIG_INOTIFY_USER=y | ||
| 882 | # CONFIG_FANOTIFY is not set | ||
| 883 | # CONFIG_QUOTA is not set | ||
| 884 | # CONFIG_QUOTACTL is not set | ||
| 885 | # CONFIG_AUTOFS4_FS is not set | ||
| 886 | # CONFIG_FUSE_FS is not set | ||
| 887 | |||
| 888 | # | ||
| 889 | # Caches | ||
| 890 | # | ||
| 891 | # CONFIG_FSCACHE is not set | ||
| 892 | |||
| 893 | # | ||
| 894 | # CD-ROM/DVD Filesystems | ||
| 895 | # | ||
| 896 | # CONFIG_ISO9660_FS is not set | ||
| 897 | # CONFIG_UDF_FS is not set | ||
| 898 | |||
| 899 | # | ||
| 900 | # DOS/FAT/NT Filesystems | ||
| 901 | # | ||
| 902 | # CONFIG_MSDOS_FS is not set | ||
| 903 | # CONFIG_VFAT_FS is not set | ||
| 904 | # CONFIG_NTFS_FS is not set | ||
| 905 | |||
| 906 | # | ||
| 907 | # Pseudo filesystems | ||
| 908 | # | ||
| 909 | CONFIG_PROC_FS=y | ||
| 910 | # CONFIG_PROC_KCORE is not set | ||
| 911 | CONFIG_PROC_SYSCTL=y | ||
| 912 | CONFIG_PROC_PAGE_MONITOR=y | ||
| 913 | CONFIG_SYSFS=y | ||
| 914 | CONFIG_TMPFS=y | ||
| 915 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
| 916 | # CONFIG_TMPFS_XATTR is not set | ||
| 917 | # CONFIG_HUGETLB_PAGE is not set | ||
| 918 | # CONFIG_CONFIGFS_FS is not set | ||
| 919 | CONFIG_MISC_FILESYSTEMS=y | ||
| 920 | # CONFIG_ADFS_FS is not set | ||
| 921 | # CONFIG_AFFS_FS is not set | ||
| 922 | # CONFIG_HFS_FS is not set | ||
| 923 | # CONFIG_HFSPLUS_FS is not set | ||
| 924 | # CONFIG_BEFS_FS is not set | ||
| 925 | # CONFIG_BFS_FS is not set | ||
| 926 | # CONFIG_EFS_FS is not set | ||
| 927 | CONFIG_JFFS2_FS=y | ||
| 928 | CONFIG_JFFS2_FS_DEBUG=0 | ||
| 929 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
| 930 | # CONFIG_JFFS2_FS_WBUF_VERIFY is not set | ||
| 931 | CONFIG_JFFS2_SUMMARY=y | ||
| 932 | # CONFIG_JFFS2_FS_XATTR is not set | ||
| 933 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
| 934 | CONFIG_JFFS2_ZLIB=y | ||
| 935 | # CONFIG_JFFS2_LZO is not set | ||
| 936 | CONFIG_JFFS2_RTIME=y | ||
| 937 | # CONFIG_JFFS2_RUBIN is not set | ||
| 938 | # CONFIG_LOGFS is not set | ||
| 939 | # CONFIG_CRAMFS is not set | ||
| 940 | # CONFIG_SQUASHFS is not set | ||
| 941 | # CONFIG_VXFS_FS is not set | ||
| 942 | # CONFIG_MINIX_FS is not set | ||
| 943 | # CONFIG_MINIX_FS_NATIVE_ENDIAN is not set | ||
| 944 | # CONFIG_OMFS_FS is not set | ||
| 945 | # CONFIG_HPFS_FS is not set | ||
| 946 | # CONFIG_QNX4FS_FS is not set | ||
| 947 | # CONFIG_QNX6FS_FS is not set | ||
| 948 | # CONFIG_ROMFS_FS is not set | ||
| 949 | # CONFIG_PSTORE is not set | ||
| 950 | # CONFIG_SYSV_FS is not set | ||
| 951 | # CONFIG_UFS_FS is not set | ||
| 952 | CONFIG_NETWORK_FILESYSTEMS=y | ||
| 953 | CONFIG_NFS_FS=y | ||
| 954 | CONFIG_NFS_V2=y | ||
| 955 | CONFIG_NFS_V3=y | ||
| 956 | # CONFIG_NFS_V3_ACL is not set | ||
| 957 | # CONFIG_NFS_V4 is not set | ||
| 958 | # CONFIG_NFS_SWAP is not set | ||
| 959 | # CONFIG_NFSD is not set | ||
| 960 | CONFIG_LOCKD=y | ||
| 961 | CONFIG_LOCKD_V4=y | ||
| 962 | CONFIG_NFS_COMMON=y | ||
| 963 | CONFIG_SUNRPC=y | ||
| 964 | # CONFIG_SUNRPC_DEBUG is not set | ||
| 965 | # CONFIG_CEPH_FS is not set | ||
| 966 | # CONFIG_CIFS is not set | ||
| 967 | # CONFIG_NCP_FS is not set | ||
| 968 | # CONFIG_CODA_FS is not set | ||
| 969 | # CONFIG_AFS_FS is not set | ||
| 970 | # CONFIG_NLS is not set | ||
| 971 | |||
| 972 | # | ||
| 973 | # Kernel hacking | ||
| 974 | # | ||
| 975 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
| 976 | # CONFIG_PRINTK_TIME is not set | ||
| 977 | CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4 | ||
| 978 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
| 979 | CONFIG_ENABLE_MUST_CHECK=y | ||
| 980 | CONFIG_FRAME_WARN=1024 | ||
| 981 | # CONFIG_MAGIC_SYSRQ is not set | ||
| 982 | # CONFIG_STRIP_ASM_SYMS is not set | ||
| 983 | # CONFIG_READABLE_ASM is not set | ||
| 984 | # CONFIG_UNUSED_SYMBOLS is not set | ||
| 985 | # CONFIG_DEBUG_FS is not set | ||
| 986 | # CONFIG_HEADERS_CHECK is not set | ||
| 987 | # CONFIG_DEBUG_SECTION_MISMATCH is not set | ||
| 988 | CONFIG_DEBUG_KERNEL=y | ||
| 989 | # CONFIG_DEBUG_SHIRQ is not set | ||
| 990 | # CONFIG_LOCKUP_DETECTOR is not set | ||
| 991 | # CONFIG_HARDLOCKUP_DETECTOR is not set | ||
| 992 | # CONFIG_PANIC_ON_OOPS is not set | ||
| 993 | CONFIG_PANIC_ON_OOPS_VALUE=0 | ||
| 994 | # CONFIG_DETECT_HUNG_TASK is not set | ||
| 995 | CONFIG_SCHED_DEBUG=y | ||
| 996 | # CONFIG_SCHEDSTATS is not set | ||
| 997 | # CONFIG_TIMER_STATS is not set | ||
| 998 | # CONFIG_DEBUG_OBJECTS is not set | ||
| 999 | # CONFIG_DEBUG_SLAB is not set | ||
| 1000 | # CONFIG_DEBUG_KMEMLEAK is not set | ||
| 1001 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
| 1002 | # CONFIG_RT_MUTEX_TESTER is not set | ||
| 1003 | # CONFIG_DEBUG_SPINLOCK is not set | ||
| 1004 | # CONFIG_DEBUG_MUTEXES is not set | ||
| 1005 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
| 1006 | # CONFIG_PROVE_LOCKING is not set | ||
| 1007 | # CONFIG_SPARSE_RCU_POINTER is not set | ||
| 1008 | # CONFIG_LOCK_STAT is not set | ||
| 1009 | # CONFIG_DEBUG_ATOMIC_SLEEP is not set | ||
| 1010 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
| 1011 | # CONFIG_DEBUG_STACK_USAGE is not set | ||
| 1012 | # CONFIG_DEBUG_KOBJECT is not set | ||
| 1013 | # CONFIG_DEBUG_INFO is not set | ||
| 1014 | # CONFIG_DEBUG_VM is not set | ||
| 1015 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
| 1016 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
| 1017 | # CONFIG_DEBUG_LIST is not set | ||
| 1018 | # CONFIG_TEST_LIST_SORT is not set | ||
| 1019 | # CONFIG_DEBUG_SG is not set | ||
| 1020 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
| 1021 | # CONFIG_DEBUG_CREDENTIALS is not set | ||
| 1022 | # CONFIG_BOOT_PRINTK_DELAY is not set | ||
| 1023 | # CONFIG_RCU_TORTURE_TEST is not set | ||
| 1024 | # CONFIG_RCU_TRACE is not set | ||
| 1025 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
| 1026 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | ||
| 1027 | # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set | ||
| 1028 | # CONFIG_NOTIFIER_ERROR_INJECTION is not set | ||
| 1029 | # CONFIG_FAULT_INJECTION is not set | ||
| 1030 | # CONFIG_LATENCYTOP is not set | ||
| 1031 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
| 1032 | CONFIG_HAVE_FUNCTION_TRACER=y | ||
| 1033 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
| 1034 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | ||
| 1035 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
| 1036 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
| 1037 | CONFIG_TRACING_SUPPORT=y | ||
| 1038 | # CONFIG_FTRACE is not set | ||
| 1039 | # CONFIG_DMA_API_DEBUG is not set | ||
| 1040 | # CONFIG_ATOMIC64_SELFTEST is not set | ||
| 1041 | # CONFIG_SAMPLES is not set | ||
| 1042 | CONFIG_HAVE_ARCH_KGDB=y | ||
| 1043 | # CONFIG_KGDB is not set | ||
| 1044 | # CONFIG_TEST_KSTRTOX is not set | ||
| 1045 | CONFIG_EARLY_PRINTK=y | ||
| 1046 | # CONFIG_HEART_BEAT is not set | ||
| 1047 | |||
| 1048 | # | ||
| 1049 | # Security options | ||
| 1050 | # | ||
| 1051 | # CONFIG_KEYS is not set | ||
| 1052 | # CONFIG_SECURITY_DMESG_RESTRICT is not set | ||
| 1053 | # CONFIG_SECURITY is not set | ||
| 1054 | # CONFIG_SECURITYFS is not set | ||
| 1055 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
| 1056 | CONFIG_DEFAULT_SECURITY="" | ||
| 1057 | CONFIG_CRYPTO=y | ||
| 1058 | |||
| 1059 | # | ||
| 1060 | # Crypto core or helper | ||
| 1061 | # | ||
| 1062 | # CONFIG_CRYPTO_MANAGER is not set | ||
| 1063 | # CONFIG_CRYPTO_MANAGER2 is not set | ||
| 1064 | # CONFIG_CRYPTO_USER is not set | ||
| 1065 | # CONFIG_CRYPTO_GF128MUL is not set | ||
| 1066 | # CONFIG_CRYPTO_NULL is not set | ||
| 1067 | # CONFIG_CRYPTO_CRYPTD is not set | ||
| 1068 | # CONFIG_CRYPTO_AUTHENC is not set | ||
| 1069 | # CONFIG_CRYPTO_TEST is not set | ||
| 1070 | |||
| 1071 | # | ||
| 1072 | # Authenticated Encryption with Associated Data | ||
| 1073 | # | ||
| 1074 | # CONFIG_CRYPTO_CCM is not set | ||
| 1075 | # CONFIG_CRYPTO_GCM is not set | ||
| 1076 | # CONFIG_CRYPTO_SEQIV is not set | ||
| 1077 | |||
| 1078 | # | ||
| 1079 | # Block modes | ||
| 1080 | # | ||
| 1081 | # CONFIG_CRYPTO_CBC is not set | ||
| 1082 | # CONFIG_CRYPTO_CTR is not set | ||
| 1083 | # CONFIG_CRYPTO_CTS is not set | ||
| 1084 | # CONFIG_CRYPTO_ECB is not set | ||
| 1085 | # CONFIG_CRYPTO_LRW is not set | ||
| 1086 | # CONFIG_CRYPTO_PCBC is not set | ||
| 1087 | # CONFIG_CRYPTO_XTS is not set | ||
| 1088 | |||
| 1089 | # | ||
| 1090 | # Hash modes | ||
| 1091 | # | ||
| 1092 | # CONFIG_CRYPTO_HMAC is not set | ||
| 1093 | # CONFIG_CRYPTO_XCBC is not set | ||
| 1094 | # CONFIG_CRYPTO_VMAC is not set | ||
| 1095 | |||
| 1096 | # | ||
| 1097 | # Digest | ||
| 1098 | # | ||
| 1099 | # CONFIG_CRYPTO_CRC32C is not set | ||
| 1100 | # CONFIG_CRYPTO_GHASH is not set | ||
| 1101 | # CONFIG_CRYPTO_MD4 is not set | ||
| 1102 | # CONFIG_CRYPTO_MD5 is not set | ||
| 1103 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
| 1104 | # CONFIG_CRYPTO_RMD128 is not set | ||
| 1105 | # CONFIG_CRYPTO_RMD160 is not set | ||
| 1106 | # CONFIG_CRYPTO_RMD256 is not set | ||
| 1107 | # CONFIG_CRYPTO_RMD320 is not set | ||
| 1108 | # CONFIG_CRYPTO_SHA1 is not set | ||
| 1109 | # CONFIG_CRYPTO_SHA256 is not set | ||
| 1110 | # CONFIG_CRYPTO_SHA512 is not set | ||
| 1111 | # CONFIG_CRYPTO_TGR192 is not set | ||
| 1112 | # CONFIG_CRYPTO_WP512 is not set | ||
| 1113 | |||
| 1114 | # | ||
| 1115 | # Ciphers | ||
| 1116 | # | ||
| 1117 | # CONFIG_CRYPTO_AES is not set | ||
| 1118 | # CONFIG_CRYPTO_ANUBIS is not set | ||
| 1119 | # CONFIG_CRYPTO_ARC4 is not set | ||
| 1120 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
| 1121 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
| 1122 | # CONFIG_CRYPTO_CAST5 is not set | ||
| 1123 | # CONFIG_CRYPTO_CAST6 is not set | ||
| 1124 | # CONFIG_CRYPTO_DES is not set | ||
| 1125 | # CONFIG_CRYPTO_FCRYPT is not set | ||
| 1126 | # CONFIG_CRYPTO_KHAZAD is not set | ||
| 1127 | # CONFIG_CRYPTO_SALSA20 is not set | ||
| 1128 | # CONFIG_CRYPTO_SEED is not set | ||
| 1129 | # CONFIG_CRYPTO_SERPENT is not set | ||
| 1130 | # CONFIG_CRYPTO_TEA is not set | ||
| 1131 | # CONFIG_CRYPTO_TWOFISH is not set | ||
| 1132 | |||
| 1133 | # | ||
| 1134 | # Compression | ||
| 1135 | # | ||
| 1136 | # CONFIG_CRYPTO_DEFLATE is not set | ||
| 1137 | # CONFIG_CRYPTO_ZLIB is not set | ||
| 1138 | # CONFIG_CRYPTO_LZO is not set | ||
| 1139 | |||
| 1140 | # | ||
| 1141 | # Random Number Generation | ||
| 1142 | # | ||
| 1143 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | ||
| 1144 | # CONFIG_CRYPTO_USER_API_HASH is not set | ||
| 1145 | # CONFIG_CRYPTO_USER_API_SKCIPHER is not set | ||
| 1146 | CONFIG_CRYPTO_HW=y | ||
| 1147 | # CONFIG_BINARY_PRINTF is not set | ||
| 1148 | |||
| 1149 | # | ||
| 1150 | # Library routines | ||
| 1151 | # | ||
| 1152 | CONFIG_BITREVERSE=y | ||
| 1153 | CONFIG_GENERIC_PCI_IOMAP=y | ||
| 1154 | CONFIG_GENERIC_IO=y | ||
| 1155 | # CONFIG_CRC_CCITT is not set | ||
| 1156 | # CONFIG_CRC16 is not set | ||
| 1157 | # CONFIG_CRC_T10DIF is not set | ||
| 1158 | # CONFIG_CRC_ITU_T is not set | ||
| 1159 | CONFIG_CRC32=y | ||
| 1160 | # CONFIG_CRC32_SELFTEST is not set | ||
| 1161 | CONFIG_CRC32_SLICEBY8=y | ||
| 1162 | # CONFIG_CRC32_SLICEBY4 is not set | ||
| 1163 | # CONFIG_CRC32_SARWATE is not set | ||
| 1164 | # CONFIG_CRC32_BIT is not set | ||
| 1165 | # CONFIG_CRC7 is not set | ||
| 1166 | # CONFIG_LIBCRC32C is not set | ||
| 1167 | # CONFIG_CRC8 is not set | ||
| 1168 | CONFIG_ZLIB_INFLATE=y | ||
| 1169 | CONFIG_ZLIB_DEFLATE=y | ||
| 1170 | # CONFIG_XZ_DEC is not set | ||
| 1171 | # CONFIG_XZ_DEC_BCJ is not set | ||
| 1172 | CONFIG_DECOMPRESS_GZIP=y | ||
| 1173 | CONFIG_HAS_IOMEM=y | ||
| 1174 | CONFIG_HAS_IOPORT=y | ||
| 1175 | CONFIG_HAS_DMA=y | ||
| 1176 | CONFIG_DQL=y | ||
| 1177 | CONFIG_NLATTR=y | ||
| 1178 | CONFIG_GENERIC_ATOMIC64=y | ||
| 1179 | CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y | ||
| 1180 | # CONFIG_AVERAGE is not set | ||
| 1181 | # CONFIG_CORDIC is not set | ||
| 1182 | # CONFIG_DDR is not set | ||
diff --git a/meta-kc705/recipes-kernel/linux/linux-xlnx/kc705-trd.dts b/meta-kc705/recipes-kernel/linux/linux-xlnx/kc705-trd.dts deleted file mode 100644 index 00ae72a0..00000000 --- a/meta-kc705/recipes-kernel/linux/linux-xlnx/kc705-trd.dts +++ /dev/null | |||
| @@ -1,502 +0,0 @@ | |||
| 1 | /dts-v1/; | ||
| 2 | / { | ||
| 3 | #address-cells = <1>; | ||
| 4 | #size-cells = <1>; | ||
| 5 | compatible = "xlnx,microblaze"; | ||
| 6 | model = "Xilinx-KC705-TRD"; | ||
| 7 | aliases { | ||
| 8 | ethernet0 = &soft_ethernet_mac; | ||
| 9 | serial0 = &rs232_uart_1; | ||
| 10 | } ; | ||
| 11 | chosen { | ||
| 12 | bootargs = "console=ttyS0,115200 root=/dev/ram rw"; | ||
| 13 | linux,stdout-path = "/axi@2/serial@40400000"; | ||
| 14 | } ; | ||
| 15 | cpus { | ||
| 16 | #address-cells = <1>; | ||
| 17 | #cpus = <0x1>; | ||
| 18 | #size-cells = <0>; | ||
| 19 | microblaze_0: cpu@0 { | ||
| 20 | clock-frequency = <150000000>; | ||
| 21 | compatible = "xlnx,microblaze-8.50.a"; | ||
| 22 | d-cache-baseaddr = <0x80000000>; | ||
| 23 | d-cache-highaddr = <0xffffffff>; | ||
| 24 | d-cache-line-size = <0x20>; | ||
| 25 | d-cache-size = <0x2000>; | ||
| 26 | device_type = "cpu"; | ||
| 27 | i-cache-baseaddr = <0x80000000>; | ||
| 28 | i-cache-highaddr = <0xffffffff>; | ||
| 29 | i-cache-line-size = <0x20>; | ||
| 30 | i-cache-size = <0x2000>; | ||
| 31 | model = "microblaze,8.50.a"; | ||
| 32 | reg = <0>; | ||
| 33 | timebase-frequency = <150000000>; | ||
| 34 | xlnx,addr-tag-bits = <0x12>; | ||
| 35 | xlnx,allow-dcache-wr = <0x1>; | ||
| 36 | xlnx,allow-icache-wr = <0x1>; | ||
| 37 | xlnx,area-optimized = <0x0>; | ||
| 38 | xlnx,avoid-primitives = <0x0>; | ||
| 39 | xlnx,base-vectors = <0x0>; | ||
| 40 | xlnx,branch-target-cache-size = <0x0>; | ||
| 41 | xlnx,cache-byte-size = <0x2000>; | ||
| 42 | xlnx,d-axi = <0x1>; | ||
| 43 | xlnx,d-lmb = <0x1>; | ||
| 44 | xlnx,d-plb = <0x0>; | ||
| 45 | xlnx,data-size = <0x20>; | ||
| 46 | xlnx,dcache-addr-tag = <0x12>; | ||
| 47 | xlnx,dcache-always-used = <0x1>; | ||
| 48 | xlnx,dcache-byte-size = <0x2000>; | ||
| 49 | xlnx,dcache-data-width = <0x0>; | ||
| 50 | xlnx,dcache-force-tag-lutram = <0x1>; | ||
| 51 | xlnx,dcache-interface = <0x0>; | ||
| 52 | xlnx,dcache-line-len = <0x8>; | ||
| 53 | xlnx,dcache-use-fsl = <0x0>; | ||
| 54 | xlnx,dcache-use-writeback = <0x0>; | ||
| 55 | xlnx,dcache-victims = <0x0>; | ||
| 56 | xlnx,debug-enabled = <0x1>; | ||
| 57 | xlnx,div-zero-exception = <0x0>; | ||
| 58 | xlnx,dynamic-bus-sizing = <0x1>; | ||
| 59 | xlnx,ecc-use-ce-exception = <0x0>; | ||
| 60 | xlnx,edge-is-positive = <0x1>; | ||
| 61 | xlnx,endianness = <0x1>; | ||
| 62 | xlnx,family = "kintex7"; | ||
| 63 | xlnx,fault-tolerant = <0x0>; | ||
| 64 | xlnx,fpu-exception = <0x0>; | ||
| 65 | xlnx,freq = <0x8f0d180>; | ||
| 66 | xlnx,fsl-data-size = <0x20>; | ||
| 67 | xlnx,fsl-exception = <0x0>; | ||
| 68 | xlnx,fsl-links = <0x0>; | ||
| 69 | xlnx,i-axi = <0x0>; | ||
| 70 | xlnx,i-lmb = <0x1>; | ||
| 71 | xlnx,i-plb = <0x0>; | ||
| 72 | xlnx,icache-always-used = <0x1>; | ||
| 73 | xlnx,icache-data-width = <0x0>; | ||
| 74 | xlnx,icache-force-tag-lutram = <0x1>; | ||
| 75 | xlnx,icache-interface = <0x0>; | ||
| 76 | xlnx,icache-line-len = <0x8>; | ||
| 77 | xlnx,icache-streams = <0x0>; | ||
| 78 | xlnx,icache-use-fsl = <0x0>; | ||
| 79 | xlnx,icache-victims = <0x0>; | ||
| 80 | xlnx,ill-opcode-exception = <0x1>; | ||
| 81 | xlnx,instance = "microblaze_0"; | ||
| 82 | xlnx,interconnect = <0x2>; | ||
| 83 | xlnx,interrupt-is-edge = <0x0>; | ||
| 84 | xlnx,lockstep-slave = <0x0>; | ||
| 85 | xlnx,mmu-dtlb-size = <0x2>; | ||
| 86 | xlnx,mmu-itlb-size = <0x2>; | ||
| 87 | xlnx,mmu-privileged-instr = <0x0>; | ||
| 88 | xlnx,mmu-tlb-access = <0x3>; | ||
| 89 | xlnx,mmu-zones = <0x2>; | ||
| 90 | xlnx,number-of-pc-brk = <0x1>; | ||
| 91 | xlnx,number-of-rd-addr-brk = <0x0>; | ||
| 92 | xlnx,number-of-wr-addr-brk = <0x0>; | ||
| 93 | xlnx,opcode-0x0-illegal = <0x1>; | ||
| 94 | xlnx,optimization = <0x0>; | ||
| 95 | xlnx,pc-width = <0x20>; | ||
| 96 | xlnx,pvr = <0x2>; | ||
| 97 | xlnx,pvr-user1 = <0x0>; | ||
| 98 | xlnx,pvr-user2 = <0x0>; | ||
| 99 | xlnx,reset-msr = <0x0>; | ||
| 100 | xlnx,sco = <0x0>; | ||
| 101 | xlnx,stream-interconnect = <0x0>; | ||
| 102 | xlnx,unaligned-exceptions = <0x1>; | ||
| 103 | xlnx,use-barrel = <0x1>; | ||
| 104 | xlnx,use-branch-target-cache = <0x0>; | ||
| 105 | xlnx,use-dcache = <0x1>; | ||
| 106 | xlnx,use-div = <0x0>; | ||
| 107 | xlnx,use-ext-brk = <0x1>; | ||
| 108 | xlnx,use-ext-nm-brk = <0x1>; | ||
| 109 | xlnx,use-extended-fsl-instr = <0x0>; | ||
| 110 | xlnx,use-fpu = <0x0>; | ||
| 111 | xlnx,use-hw-mul = <0x1>; | ||
| 112 | xlnx,use-icache = <0x1>; | ||
| 113 | xlnx,use-interrupt = <0x1>; | ||
| 114 | xlnx,use-mmu = <0x3>; | ||
| 115 | xlnx,use-msr-instr = <0x1>; | ||
| 116 | xlnx,use-pcmp-instr = <0x1>; | ||
| 117 | xlnx,use-reorder-instr = <0x1>; | ||
| 118 | xlnx,use-stack-protection = <0x0>; | ||
| 119 | } ; | ||
| 120 | } ; | ||
| 121 | ddr3_sdram: memory@80000000 { | ||
| 122 | device_type = "memory"; | ||
| 123 | reg = < 0x80000000 0x40000000 >; | ||
| 124 | } ; | ||
| 125 | axi4lite_0: axi@2 { | ||
| 126 | #address-cells = <1>; | ||
| 127 | #size-cells = <1>; | ||
| 128 | compatible = "xlnx,axi-interconnect-1.06.a", "simple-bus"; | ||
| 129 | ranges ; | ||
| 130 | axi_dma_ethernet: axi-dma@50000000 { | ||
| 131 | axistream-connected = <&soft_ethernet_mac>; | ||
| 132 | axistream-control-connected = <&soft_ethernet_mac>; | ||
| 133 | compatible = "xlnx,axi-dma-6.03.a", "xlnx,axi-dma-1.00.a"; | ||
| 134 | interrupt-parent = <&interrupt_cntlr>; | ||
| 135 | interrupts = < 0 2 1 2 >; | ||
| 136 | reg = < 0x50000000 0x10000 >; | ||
| 137 | xlnx,dlytmr-resolution = <0x4e2>; | ||
| 138 | xlnx,enable-multi-channel = <0x0>; | ||
| 139 | xlnx,family = "kintex7"; | ||
| 140 | xlnx,generic = <0x0>; | ||
| 141 | xlnx,include-mm2s = <0x1>; | ||
| 142 | xlnx,include-mm2s-dre = <0x1>; | ||
| 143 | xlnx,include-mm2s-sf = <0x1>; | ||
| 144 | xlnx,include-s2mm = <0x1>; | ||
| 145 | xlnx,include-s2mm-dre = <0x1>; | ||
| 146 | xlnx,include-s2mm-sf = <0x1>; | ||
| 147 | xlnx,include-sg = <0x1>; | ||
| 148 | xlnx,instance = "AXI_DMA_Ethernet"; | ||
| 149 | xlnx,mm2s-burst-size = <0x10>; | ||
| 150 | xlnx,num-mm2s-channels = <0x1>; | ||
| 151 | xlnx,num-s2mm-channels = <0x1>; | ||
| 152 | xlnx,prmry-is-aclk-async = <0x1>; | ||
| 153 | xlnx,s2mm-burst-size = <0x10>; | ||
| 154 | xlnx,sg-include-desc-queue = <0x1>; | ||
| 155 | xlnx,sg-include-stscntrl-strm = <0x1>; | ||
| 156 | xlnx,sg-length-width = <0x10>; | ||
| 157 | xlnx,sg-use-stsapp-length = <0x1>; | ||
| 158 | } ; | ||
| 159 | axi_xadc_0: axi-xadc@40d00000 { | ||
| 160 | compatible = "xlnx,axi-xadc-1.00.a"; | ||
| 161 | interrupt-parent = <&interrupt_cntlr>; | ||
| 162 | interrupts = < 7 2 >; | ||
| 163 | reg = < 0x40d00000 0x10000 >; | ||
| 164 | xlnx,family = "kintex7"; | ||
| 165 | xlnx,has-temp-bus = <0x1>; | ||
| 166 | xlnx,include-intr = <0x1>; | ||
| 167 | xlnx,instance = "axi_xadc_0"; | ||
| 168 | xlnx,sim-monitor-file = "Sysmon_Design.txt"; | ||
| 169 | } ; | ||
| 170 | debug_module: serial@40200000 { | ||
| 171 | compatible = "xlnx,mdm-2.10.a", "xlnx,xps-uartlite-1.00.a"; | ||
| 172 | reg = < 0x40200000 0x10000 >; | ||
| 173 | xlnx,family = "kintex7"; | ||
| 174 | xlnx,interconnect = <0x2>; | ||
| 175 | xlnx,jtag-chain = <0x2>; | ||
| 176 | xlnx,mb-dbg-ports = <0x1>; | ||
| 177 | xlnx,use-bscan = <0x0>; | ||
| 178 | xlnx,use-uart = <0x1>; | ||
| 179 | } ; | ||
| 180 | dip_switches_4bits: gpio@40700000 { | ||
| 181 | #gpio-cells = <2>; | ||
| 182 | compatible = "xlnx,axi-gpio-1.01.b", "xlnx,xps-gpio-1.00.a"; | ||
| 183 | gpio-controller ; | ||
| 184 | reg = < 0x40700000 0x10000 >; | ||
| 185 | xlnx,all-inputs = <0x1>; | ||
| 186 | xlnx,all-inputs-2 = <0x0>; | ||
| 187 | xlnx,dout-default = <0x0>; | ||
| 188 | xlnx,dout-default-2 = <0x0>; | ||
| 189 | xlnx,family = "kintex7"; | ||
| 190 | xlnx,gpio-width = <0x4>; | ||
| 191 | xlnx,gpio2-width = <0x20>; | ||
| 192 | xlnx,instance = "DIP_Switches_4Bits"; | ||
| 193 | xlnx,interrupt-present = <0x1>; | ||
| 194 | xlnx,is-dual = <0x0>; | ||
| 195 | xlnx,tri-default = <0xffffffff>; | ||
| 196 | xlnx,tri-default-2 = <0xffffffff>; | ||
| 197 | } ; | ||
| 198 | dual_timer_counter: system-timer@40300000 { | ||
| 199 | clock-frequency = <100000000>; | ||
| 200 | compatible = "xlnx,axi-timer-1.03.a", "xlnx,xps-timer-1.00.a"; | ||
| 201 | interrupt-parent = <&interrupt_cntlr>; | ||
| 202 | interrupts = < 3 2 >; | ||
| 203 | reg = < 0x40300000 0x10000 >; | ||
| 204 | xlnx,count-width = <0x20>; | ||
| 205 | xlnx,family = "kintex7"; | ||
| 206 | xlnx,gen0-assert = <0x1>; | ||
| 207 | xlnx,gen1-assert = <0x1>; | ||
| 208 | xlnx,instance = "Dual_Timer_Counter"; | ||
| 209 | xlnx,one-timer-only = <0x0>; | ||
| 210 | xlnx,trig0-assert = <0x1>; | ||
| 211 | xlnx,trig1-assert = <0x1>; | ||
| 212 | } ; | ||
| 213 | iic_eeprom: i2c@40a00000 { | ||
| 214 | compatible = "xlnx,axi-iic-1.02.a", "xlnx,xps-iic-2.00.a"; | ||
| 215 | interrupt-parent = <&interrupt_cntlr>; | ||
| 216 | interrupts = < 4 2 >; | ||
| 217 | reg = < 0x40a00000 0x10000 >; | ||
| 218 | xlnx,family = "kintex7"; | ||
| 219 | xlnx,gpo-width = <0x1>; | ||
| 220 | xlnx,iic-freq = <0x186a0>; | ||
| 221 | xlnx,instance = "IIC_EEPROM"; | ||
| 222 | xlnx,scl-inertial-delay = <0x0>; | ||
| 223 | xlnx,sda-inertial-delay = <0x0>; | ||
| 224 | xlnx,sda-level = <0x1>; | ||
| 225 | xlnx,ten-bit-adr = <0x0>; | ||
| 226 | } ; | ||
| 227 | interrupt_cntlr: interrupt-controller@40100000 { | ||
| 228 | #interrupt-cells = <0x2>; | ||
| 229 | compatible = "xlnx,axi-intc-1.03.a", "xlnx,xps-intc-1.00.a"; | ||
| 230 | interrupt-controller ; | ||
| 231 | reg = < 0x40100000 0x10000 >; | ||
| 232 | xlnx,kind-of-intr = <0x0>; | ||
| 233 | xlnx,num-intr-inputs = <0x8>; | ||
| 234 | } ; | ||
| 235 | lcd_gpio: gpio@40800000 { | ||
| 236 | #gpio-cells = <2>; | ||
| 237 | compatible = "xlnx,axi-gpio-1.01.b", "xlnx,xps-gpio-1.00.a"; | ||
| 238 | gpio-controller ; | ||
| 239 | reg = < 0x40800000 0x10000 >; | ||
| 240 | xlnx,all-inputs = <0x0>; | ||
| 241 | xlnx,all-inputs-2 = <0x0>; | ||
| 242 | xlnx,dout-default = <0x0>; | ||
| 243 | xlnx,dout-default-2 = <0x0>; | ||
| 244 | xlnx,family = "kintex7"; | ||
| 245 | xlnx,gpio-width = <0x7>; | ||
| 246 | xlnx,gpio2-width = <0x20>; | ||
| 247 | xlnx,instance = "LCD_GPIO"; | ||
| 248 | xlnx,interrupt-present = <0x0>; | ||
| 249 | xlnx,is-dual = <0x0>; | ||
| 250 | xlnx,tri-default = <0xffffffff>; | ||
| 251 | xlnx,tri-default-2 = <0xffffffff>; | ||
| 252 | } ; | ||
| 253 | leds_8bits: gpio@40600000 { | ||
| 254 | #gpio-cells = <2>; | ||
| 255 | compatible = "xlnx,axi-gpio-1.01.b", "xlnx,xps-gpio-1.00.a"; | ||
| 256 | gpio-controller ; | ||
| 257 | reg = < 0x40600000 0x10000 >; | ||
| 258 | xlnx,all-inputs = <0x0>; | ||
| 259 | xlnx,all-inputs-2 = <0x0>; | ||
| 260 | xlnx,dout-default = <0x0>; | ||
| 261 | xlnx,dout-default-2 = <0x0>; | ||
| 262 | xlnx,family = "kintex7"; | ||
| 263 | xlnx,gpio-width = <0x8>; | ||
| 264 | xlnx,gpio2-width = <0x20>; | ||
| 265 | xlnx,instance = "LEDs_8Bits"; | ||
| 266 | xlnx,interrupt-present = <0x1>; | ||
| 267 | xlnx,is-dual = <0x0>; | ||
| 268 | xlnx,tri-default = <0xffffffff>; | ||
| 269 | xlnx,tri-default-2 = <0xffffffff>; | ||
| 270 | } ; | ||
| 271 | logisdhc_0: logisdhc@40b00000 { | ||
| 272 | compatible = "xlnx,logisdhc-1.06.c"; | ||
| 273 | interrupt-parent = <&interrupt_cntlr>; | ||
| 274 | interrupts = < 6 2 >; | ||
| 275 | reg = < 0x40b00000 0x10000 >; | ||
| 276 | xlnx,byte-per-pixel = <0x4>; | ||
| 277 | xlnx,convert-endianess = <0x0>; | ||
| 278 | xlnx,dma-type = <0x1>; | ||
| 279 | xlnx,family = "kintex7"; | ||
| 280 | xlnx,ip-license-type = <0x1>; | ||
| 281 | xlnx,ip-major-revision = <0x1>; | ||
| 282 | xlnx,ip-minor-revision = <0x6>; | ||
| 283 | xlnx,ip-patch-level = <0x2>; | ||
| 284 | xlnx,mem-burst = <0x4>; | ||
| 285 | xlnx,mem-data-bus-width = <0x20>; | ||
| 286 | xlnx,mem-interface = <0x1>; | ||
| 287 | xlnx,regs-interface = <0x2>; | ||
| 288 | xlnx,row-stride = <0x400>; | ||
| 289 | xlnx,sd-base-clock-freq = <0x64>; | ||
| 290 | xlnx,use-dma = <0x0>; | ||
| 291 | } ; | ||
| 292 | primary_flash: flash@48000000 { | ||
| 293 | #address-cells = <1>; | ||
| 294 | #size-cells = <1>; | ||
| 295 | bank-width = <2>; | ||
| 296 | compatible = "xlnx,axi-emc-1.03.b", "cfi-flash"; | ||
| 297 | reg = < 0x48000000 0x8000000 >; | ||
| 298 | xlnx,axi-clk-period-ps = <0x2710>; | ||
| 299 | xlnx,family = "kintex7"; | ||
| 300 | xlnx,include-datawidth-matching-0 = <0x1>; | ||
| 301 | xlnx,include-datawidth-matching-1 = <0x0>; | ||
| 302 | xlnx,include-datawidth-matching-2 = <0x0>; | ||
| 303 | xlnx,include-datawidth-matching-3 = <0x0>; | ||
| 304 | xlnx,include-negedge-ioregs = <0x0>; | ||
| 305 | xlnx,instance = "Linear_Flash"; | ||
| 306 | xlnx,lflash-period-ps = <0x4e20>; | ||
| 307 | xlnx,linear-flash-sync-burst = <0x0>; | ||
| 308 | xlnx,max-mem-width = <0x10>; | ||
| 309 | xlnx,mem0-type = <0x2>; | ||
| 310 | xlnx,mem0-width = <0x10>; | ||
| 311 | xlnx,mem1-type = <0x0>; | ||
| 312 | xlnx,mem1-width = <0x20>; | ||
| 313 | xlnx,mem2-type = <0x0>; | ||
| 314 | xlnx,mem2-width = <0x20>; | ||
| 315 | xlnx,mem3-type = <0x0>; | ||
| 316 | xlnx,mem3-width = <0x20>; | ||
| 317 | xlnx,num-banks-mem = <0x1>; | ||
| 318 | xlnx,parity-type-mem-0 = <0x0>; | ||
| 319 | xlnx,parity-type-mem-1 = <0x0>; | ||
| 320 | xlnx,parity-type-mem-2 = <0x0>; | ||
| 321 | xlnx,parity-type-mem-3 = <0x0>; | ||
| 322 | xlnx,s-axi-en-reg = <0x0>; | ||
| 323 | xlnx,s-axi-mem-addr-width = <0x20>; | ||
| 324 | xlnx,s-axi-mem-data-width = <0x20>; | ||
| 325 | xlnx,s-axi-mem-id-width = <0x1>; | ||
| 326 | xlnx,s-axi-mem-protocol = "AXI4LITE"; | ||
| 327 | xlnx,s-axi-reg-addr-width = <0x5>; | ||
| 328 | xlnx,s-axi-reg-data-width = <0x20>; | ||
| 329 | xlnx,s-axi-reg-protocol = "axi4"; | ||
| 330 | xlnx,synch-pipedelay-0 = <0x2>; | ||
| 331 | xlnx,synch-pipedelay-1 = <0x2>; | ||
| 332 | xlnx,synch-pipedelay-2 = <0x2>; | ||
| 333 | xlnx,synch-pipedelay-3 = <0x2>; | ||
| 334 | xlnx,tavdv-ps-mem-0 = <0x1fbd0>; | ||
| 335 | xlnx,tavdv-ps-mem-1 = <0x3a98>; | ||
| 336 | xlnx,tavdv-ps-mem-2 = <0x3a98>; | ||
| 337 | xlnx,tavdv-ps-mem-3 = <0x3a98>; | ||
| 338 | xlnx,tcedv-ps-mem-0 = <0x1fbd0>; | ||
| 339 | xlnx,tcedv-ps-mem-1 = <0x3a98>; | ||
| 340 | xlnx,tcedv-ps-mem-2 = <0x3a98>; | ||
| 341 | xlnx,tcedv-ps-mem-3 = <0x3a98>; | ||
| 342 | xlnx,thzce-ps-mem-0 = <0x88b8>; | ||
| 343 | xlnx,thzce-ps-mem-1 = <0x1b58>; | ||
| 344 | xlnx,thzce-ps-mem-2 = <0x1b58>; | ||
| 345 | xlnx,thzce-ps-mem-3 = <0x1b58>; | ||
| 346 | xlnx,thzoe-ps-mem-0 = <0x1b58>; | ||
| 347 | xlnx,thzoe-ps-mem-1 = <0x1b58>; | ||
| 348 | xlnx,thzoe-ps-mem-2 = <0x1b58>; | ||
| 349 | xlnx,thzoe-ps-mem-3 = <0x1b58>; | ||
| 350 | xlnx,tlzwe-ps-mem-0 = <0x88b8>; | ||
| 351 | xlnx,tlzwe-ps-mem-1 = <0x0>; | ||
| 352 | xlnx,tlzwe-ps-mem-2 = <0x0>; | ||
| 353 | xlnx,tlzwe-ps-mem-3 = <0x0>; | ||
| 354 | xlnx,tpacc-ps-flash-0 = <0x61a8>; | ||
| 355 | xlnx,tpacc-ps-flash-1 = <0x61a8>; | ||
| 356 | xlnx,tpacc-ps-flash-2 = <0x61a8>; | ||
| 357 | xlnx,tpacc-ps-flash-3 = <0x61a8>; | ||
| 358 | xlnx,twc-ps-mem-0 = <0x11170>; | ||
| 359 | xlnx,twc-ps-mem-1 = <0x3a98>; | ||
| 360 | xlnx,twc-ps-mem-2 = <0x3a98>; | ||
| 361 | xlnx,twc-ps-mem-3 = <0x3a98>; | ||
| 362 | xlnx,twp-ps-mem-0 = <0x11170>; | ||
| 363 | xlnx,twp-ps-mem-1 = <0x2ee0>; | ||
| 364 | xlnx,twp-ps-mem-2 = <0x2ee0>; | ||
| 365 | xlnx,twp-ps-mem-3 = <0x2ee0>; | ||
| 366 | xlnx,twph-ps-mem-0 = <0x2ee0>; | ||
| 367 | xlnx,twph-ps-mem-1 = <0x2ee0>; | ||
| 368 | xlnx,twph-ps-mem-2 = <0x2ee0>; | ||
| 369 | xlnx,twph-ps-mem-3 = <0x2ee0>; | ||
| 370 | xlnx,wr-rec-time-mem-0 = <0x186a0>; | ||
| 371 | xlnx,wr-rec-time-mem-1 = <0x186a0>; | ||
| 372 | xlnx,wr-rec-time-mem-2 = <0x186a0>; | ||
| 373 | xlnx,wr-rec-time-mem-3 = <0x186a0>; | ||
| 374 | partition@0x00000000 { | ||
| 375 | label = "fpga"; | ||
| 376 | reg = <0x00000000 0x00200000>; | ||
| 377 | }; | ||
| 378 | partition@0x00200000 { | ||
| 379 | label = "boot"; | ||
| 380 | reg = <0x00200000 0x00040000>; | ||
| 381 | }; | ||
| 382 | partition@0x00240000 { | ||
| 383 | label = "bootenv"; | ||
| 384 | reg = <0x00240000 0x00020000>; | ||
| 385 | }; | ||
| 386 | partition@0x00260000 { | ||
| 387 | label = "image"; | ||
| 388 | reg = <0x00260000 0x00c00000>; | ||
| 389 | }; | ||
| 390 | partition@0x00e60000 { | ||
| 391 | label = "spare"; | ||
| 392 | reg = <0x00e60000 0x00000000>; | ||
| 393 | }; | ||
| 394 | } ; | ||
| 395 | push_buttons_5bits: gpio@40500000 { | ||
| 396 | #gpio-cells = <2>; | ||
| 397 | compatible = "xlnx,axi-gpio-1.01.b", "xlnx,xps-gpio-1.00.a"; | ||
| 398 | gpio-controller ; | ||
| 399 | reg = < 0x40500000 0x10000 >; | ||
| 400 | xlnx,all-inputs = <0x1>; | ||
| 401 | xlnx,all-inputs-2 = <0x0>; | ||
| 402 | xlnx,dout-default = <0x0>; | ||
| 403 | xlnx,dout-default-2 = <0x0>; | ||
| 404 | xlnx,family = "kintex7"; | ||
| 405 | xlnx,gpio-width = <0x5>; | ||
| 406 | xlnx,gpio2-width = <0x20>; | ||
| 407 | xlnx,instance = "Push_Buttons_5Bits"; | ||
| 408 | xlnx,interrupt-present = <0x1>; | ||
| 409 | xlnx,is-dual = <0x0>; | ||
| 410 | xlnx,tri-default = <0xffffffff>; | ||
| 411 | xlnx,tri-default-2 = <0xffffffff>; | ||
| 412 | } ; | ||
| 413 | rotary_gpio: gpio@40900000 { | ||
| 414 | #gpio-cells = <2>; | ||
| 415 | compatible = "xlnx,axi-gpio-1.01.b", "xlnx,xps-gpio-1.00.a"; | ||
| 416 | gpio-controller ; | ||
| 417 | reg = < 0x40900000 0x10000 >; | ||
| 418 | xlnx,all-inputs = <0x1>; | ||
| 419 | xlnx,all-inputs-2 = <0x0>; | ||
| 420 | xlnx,dout-default = <0x0>; | ||
| 421 | xlnx,dout-default-2 = <0x0>; | ||
| 422 | xlnx,family = "kintex7"; | ||
| 423 | xlnx,gpio-width = <0x3>; | ||
| 424 | xlnx,gpio2-width = <0x20>; | ||
| 425 | xlnx,instance = "ROTARY_GPIO"; | ||
| 426 | xlnx,interrupt-present = <0x0>; | ||
| 427 | xlnx,is-dual = <0x0>; | ||
| 428 | xlnx,tri-default = <0xffffffff>; | ||
| 429 | xlnx,tri-default-2 = <0xffffffff>; | ||
| 430 | } ; | ||
| 431 | rs232_uart_1: serial@40400000 { | ||
| 432 | clock-frequency = <100000000>; | ||
| 433 | compatible = "xlnx,axi-uart16550-1.01.a", "xlnx,xps-uart16550-2.00.a", "ns16550a"; | ||
| 434 | current-speed = <115200>; | ||
| 435 | device_type = "serial"; | ||
| 436 | interrupt-parent = <&interrupt_cntlr>; | ||
| 437 | interrupts = < 5 2 >; | ||
| 438 | reg = < 0x40400000 0x10000 >; | ||
| 439 | reg-offset = <0x1000>; | ||
| 440 | reg-shift = <2>; | ||
| 441 | xlnx,external-xin-clk-hz = <0x17d7840>; | ||
| 442 | xlnx,family = "kintex7"; | ||
| 443 | xlnx,has-external-rclk = <0x0>; | ||
| 444 | xlnx,has-external-xin = <0x0>; | ||
| 445 | xlnx,instance = "RS232_Uart_1"; | ||
| 446 | xlnx,is-a-16550 = <0x1>; | ||
| 447 | xlnx,use-modem-ports = <0x0>; | ||
| 448 | xlnx,use-user-ports = <0x0>; | ||
| 449 | } ; | ||
| 450 | soft_ethernet_mac: axi-ethernet@50100000 { | ||
| 451 | axistream-connected = <&axi_dma_ethernet>; | ||
| 452 | axistream-control-connected = <&axi_dma_ethernet>; | ||
| 453 | clock-frequency = <100000000>; | ||
| 454 | compatible = "xlnx,axi-ethernet-3.01.a", "xlnx,axi-ethernet-1.00.a"; | ||
| 455 | device_type = "network"; | ||
| 456 | interrupt-parent = <&interrupt_cntlr>; | ||
| 457 | interrupts = < 2 2 >; | ||
| 458 | local-mac-address = [ 00 0a 35 00 d9 4e ]; | ||
| 459 | phy-handle = <&phy0>; | ||
| 460 | reg = < 0x50100000 0x40000 >; | ||
| 461 | xlnx,avb = <0x0>; | ||
| 462 | xlnx,halfdup = <0x0>; | ||
| 463 | xlnx,include-io = <0x1>; | ||
| 464 | xlnx,mcast-extend = <0x0>; | ||
| 465 | xlnx,phy-type = <0x1>; | ||
| 466 | xlnx,phyaddr = <0x1>; | ||
| 467 | xlnx,rxcsum = <0x0>; | ||
| 468 | xlnx,rxmem = <0x1000>; | ||
| 469 | xlnx,rxvlan-strp = <0x0>; | ||
| 470 | xlnx,rxvlan-tag = <0x0>; | ||
| 471 | xlnx,rxvlan-tran = <0x0>; | ||
| 472 | xlnx,stats = <0x0>; | ||
| 473 | xlnx,txcsum = <0x0>; | ||
| 474 | xlnx,txmem = <0x1000>; | ||
| 475 | xlnx,txvlan-strp = <0x0>; | ||
| 476 | xlnx,txvlan-tag = <0x0>; | ||
| 477 | xlnx,txvlan-tran = <0x0>; | ||
| 478 | xlnx,type = <0x1>; | ||
| 479 | mdio { | ||
| 480 | #address-cells = <1>; | ||
| 481 | #size-cells = <0>; | ||
| 482 | phy0: phy@7 { | ||
| 483 | compatible = "marvell,88e1111"; | ||
| 484 | device_type = "ethernet-phy"; | ||
| 485 | reg = <7>; | ||
| 486 | } ; | ||
| 487 | } ; | ||
| 488 | } ; | ||
| 489 | } ; | ||
| 490 | axi_mm_mb: axi@1 { | ||
| 491 | #address-cells = <1>; | ||
| 492 | #size-cells = <1>; | ||
| 493 | compatible = "xlnx,axi-interconnect-1.06.a", "simple-bus"; | ||
| 494 | ranges ; | ||
| 495 | axi4_0: axi@0 { | ||
| 496 | #address-cells = <1>; | ||
| 497 | #size-cells = <1>; | ||
| 498 | compatible = "xlnx,axi-interconnect-1.06.a", "simple-bus"; | ||
| 499 | ranges = < 0x80000000 0x80000000 0x40000000 >; | ||
| 500 | } ; | ||
| 501 | } ; | ||
| 502 | } ; | ||
diff --git a/meta-kc705/recipes-kernel/linux/linux-xlnx_3.8.bbappend b/meta-kc705/recipes-kernel/linux/linux-xlnx_3.8.bbappend deleted file mode 100644 index e8064272..00000000 --- a/meta-kc705/recipes-kernel/linux/linux-xlnx_3.8.bbappend +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | include linux-xlnx.inc | ||
diff --git a/meta-zc702/COPYING.MIT b/meta-zc702/COPYING.MIT deleted file mode 100644 index fb950dc6..00000000 --- a/meta-zc702/COPYING.MIT +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| 2 | of this software and associated documentation files (the "Software"), to deal | ||
| 3 | in the Software without restriction, including without limitation the rights | ||
| 4 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| 5 | copies of the Software, and to permit persons to whom the Software is | ||
| 6 | furnished to do so, subject to the following conditions: | ||
| 7 | |||
| 8 | The above copyright notice and this permission notice shall be included in | ||
| 9 | all copies or substantial portions of the Software. | ||
| 10 | |||
| 11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 12 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 13 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| 14 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| 15 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| 16 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| 17 | THE SOFTWARE. | ||
diff --git a/meta-zc702/README b/meta-zc702/README deleted file mode 100644 index cf3b57d8..00000000 --- a/meta-zc702/README +++ /dev/null | |||
| @@ -1,46 +0,0 @@ | |||
| 1 | meta-zc702 | ||
| 2 | ========== | ||
| 3 | |||
| 4 | This README file contains information on using the meta-zc702 BSP layer. | ||
| 5 | |||
| 6 | The zc702 is an evaluation board by Xilinx for Zynq architecture: | ||
| 7 | http://www.xilinx.com/ | ||
| 8 | |||
| 9 | Please refer to the meta-xilinx/README for details regarding patch submission, | ||
| 10 | layer dependencies, build process, etc. | ||
| 11 | |||
| 12 | Supported Boards/Machines | ||
| 13 | ========================= | ||
| 14 | |||
| 15 | Xilinx ZC702 (Zynq) - 'zc702' | ||
| 16 | |||
| 17 | Reference files and documents | ||
| 18 | ============================= | ||
| 19 | |||
| 20 | For details on the Evaluation board: | ||
| 21 | http://www.xilinx.com/products/boards-and-kits/EK-Z7-ZC702-G.htm | ||
| 22 | |||
| 23 | For documentation and design files for the ZC702: | ||
| 24 | http://www.xilinx.com/support/index.html/content/xilinx/en/supportNav/boards_and_kits/zynq-7000_soc_boards_and_kits/zynq-7000_soc_zc702_evaluation_kit.html | ||
| 25 | |||
| 26 | For the FSBL 'zynq_fsbl_0.elf' refer to UG873 and the associated design files. | ||
| 27 | |||
| 28 | Additional information on Zynq architecture can be found at: | ||
| 29 | http://www.xilinx.com/support/index.htm | ||
| 30 | |||
| 31 | SD Card Boot | ||
| 32 | ============ | ||
| 33 | |||
| 34 | Note: This boot flow requires access to Xilinx tools (for BOOT.BIN generation). | ||
| 35 | |||
| 36 | Copy the following to the SD card (ensure to rename the files where appropriate): | ||
| 37 | Kernel: uImage | ||
| 38 | RootFS: uramdisk.image.gz (core-image-minimal-<machine name>.ext2.gz.u-boot) | ||
| 39 | DTB: devicetree.dtb (uImage-<machine name>.dtb) | ||
| 40 | |||
| 41 | Using the Xilinx tools, package 'zynq_fsbl_0.elf' and 'u-boot.elf' into a | ||
| 42 | 'BOOT.BIN' (See http://www.wiki.xilinx.com/Prepare+Boot+Image for details). Once | ||
| 43 | created copy 'BOOT.BIN' onto the SD Card. | ||
| 44 | |||
| 45 | Insert SD Card, connect UART to Terminal program and boot board (Ensure the | ||
| 46 | board is configured for SD Boot). | ||
diff --git a/meta-zc702/conf/layer.conf b/meta-zc702/conf/layer.conf deleted file mode 100644 index 2fc3d660..00000000 --- a/meta-zc702/conf/layer.conf +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | # We have a conf and classes directory, add to BBPATH | ||
| 2 | BBPATH := "${BBPATH}:${LAYERDIR}" | ||
| 3 | |||
| 4 | # We have a packages directory, add to BBFILES | ||
| 5 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb" | ||
| 6 | BBFILES += " ${LAYERDIR}/recipes-*/*/*.bbappend" | ||
| 7 | |||
| 8 | BBFILE_COLLECTIONS += "zc702" | ||
| 9 | BBFILE_PATTERN_zc702 := "^${LAYERDIR}/" | ||
| 10 | BBFILE_PRIORITY_zc702 = "8" | ||
| 11 | |||
diff --git a/meta-zc702/conf/machine/zc702.conf b/meta-zc702/conf/machine/zc702.conf deleted file mode 100644 index cf9811f0..00000000 --- a/meta-zc702/conf/machine/zc702.conf +++ /dev/null | |||
| @@ -1,14 +0,0 @@ | |||
| 1 | #@TYPE: Machine | ||
| 2 | #@NAME: zc702 | ||
| 3 | #@DESCRIPTION: Machine support for zc702. | ||
| 4 | # | ||
| 5 | |||
| 6 | PREFERRED_VERSION_linux-xlnx ?= "3.8%" | ||
| 7 | PREFERRED_VERSION_u-boot-xlnx ?= "v2013.01%" | ||
| 8 | |||
| 9 | require conf/machine/include/tune-zynq.inc | ||
| 10 | |||
| 11 | # ZC70x machine definition known by Xilinx UBOOT | ||
| 12 | UBOOT_MACHINE = "zynq_zc70x_config" | ||
| 13 | |||
| 14 | SERIAL_CONSOLE = "115200 ttyPS0" | ||
diff --git a/meta-zc702/recipes-kernel/linux/linux-xlnx.inc b/meta-zc702/recipes-kernel/linux/linux-xlnx.inc deleted file mode 100644 index d0d7d857..00000000 --- a/meta-zc702/recipes-kernel/linux/linux-xlnx.inc +++ /dev/null | |||
| @@ -1,14 +0,0 @@ | |||
| 1 | # linux-xlnx specific modifications for zc702 | ||
| 2 | |||
| 3 | FILESEXTRAPATHS_prepend := "${THISDIR}/linux-xlnx:" | ||
| 4 | |||
| 5 | # Config fragments are either under | ||
| 6 | # meta-xilinx/kernel-recipes for common fragments, or | ||
| 7 | # meta-xilinx/meta-<boardlayer>/kernel-recipes for board specific fragments | ||
| 8 | SRC_URI_append_zc702 += "file://xilinx_zynq_defconfig_${LINUX_VERSION}.cfg" | ||
| 9 | SRC_URI_append_zc702 += "file://rtc_${LINUX_VERSION}.cfg" | ||
| 10 | SRC_URI_append_zc702 += "file://zynq-zc702.dts" | ||
| 11 | |||
| 12 | KERNEL_DEVICETREE_zc702 = "${WORKDIR}/zynq-zc702.dts" | ||
| 13 | |||
| 14 | COMPATIBLE_MACHINE_zc702 = "zc702" | ||
diff --git a/meta-zc702/recipes-kernel/linux/linux-xlnx/rtc_3.6.cfg b/meta-zc702/recipes-kernel/linux/linux-xlnx/rtc_3.6.cfg deleted file mode 100644 index 78dfaf17..00000000 --- a/meta-zc702/recipes-kernel/linux/linux-xlnx/rtc_3.6.cfg +++ /dev/null | |||
| @@ -1,76 +0,0 @@ | |||
| 1 | # Enable the RTC | ||
| 2 | |||
| 3 | CONFIG_RTC_LIB=y | ||
| 4 | CONFIG_RTC_CLASS=y | ||
| 5 | CONFIG_RTC_HCTOSYS=y | ||
| 6 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
| 7 | # CONFIG_RTC_DEBUG is not set | ||
| 8 | |||
| 9 | # | ||
| 10 | # RTC interfaces | ||
| 11 | # | ||
| 12 | CONFIG_RTC_INTF_SYSFS=y | ||
| 13 | CONFIG_RTC_INTF_PROC=y | ||
| 14 | CONFIG_RTC_INTF_DEV=y | ||
| 15 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
| 16 | # CONFIG_RTC_DRV_TEST is not set | ||
| 17 | |||
| 18 | # | ||
| 19 | # I2C RTC drivers | ||
| 20 | # | ||
| 21 | # CONFIG_RTC_DRV_DS1307 is not set | ||
| 22 | # CONFIG_RTC_DRV_DS1374 is not set | ||
| 23 | # CONFIG_RTC_DRV_DS1672 is not set | ||
| 24 | # CONFIG_RTC_DRV_DS3232 is not set | ||
| 25 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
| 26 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
| 27 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
| 28 | # CONFIG_RTC_DRV_ISL12022 is not set | ||
| 29 | # CONFIG_RTC_DRV_X1205 is not set | ||
| 30 | CONFIG_RTC_DRV_PCF8563=y | ||
| 31 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
| 32 | # CONFIG_RTC_DRV_M41T80 is not set | ||
| 33 | # CONFIG_RTC_DRV_BQ32K is not set | ||
| 34 | # CONFIG_RTC_DRV_S35390A is not set | ||
| 35 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 36 | # CONFIG_RTC_DRV_RX8581 is not set | ||
| 37 | # CONFIG_RTC_DRV_RX8025 is not set | ||
| 38 | # CONFIG_RTC_DRV_EM3027 is not set | ||
| 39 | # CONFIG_RTC_DRV_RV3029C2 is not set | ||
| 40 | |||
| 41 | # | ||
| 42 | # SPI RTC drivers | ||
| 43 | # | ||
| 44 | # CONFIG_RTC_DRV_M41T93 is not set | ||
| 45 | # CONFIG_RTC_DRV_M41T94 is not set | ||
| 46 | # CONFIG_RTC_DRV_DS1305 is not set | ||
| 47 | # CONFIG_RTC_DRV_DS1390 is not set | ||
| 48 | # CONFIG_RTC_DRV_MAX6902 is not set | ||
| 49 | # CONFIG_RTC_DRV_R9701 is not set | ||
| 50 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
| 51 | # CONFIG_RTC_DRV_DS3234 is not set | ||
| 52 | # CONFIG_RTC_DRV_PCF2123 is not set | ||
| 53 | |||
| 54 | # | ||
| 55 | # Platform RTC drivers | ||
| 56 | # | ||
| 57 | # CONFIG_RTC_DRV_CMOS is not set | ||
| 58 | # CONFIG_RTC_DRV_DS1286 is not set | ||
| 59 | # CONFIG_RTC_DRV_DS1511 is not set | ||
| 60 | # CONFIG_RTC_DRV_DS1553 is not set | ||
| 61 | # CONFIG_RTC_DRV_DS1742 is not set | ||
| 62 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 63 | # CONFIG_RTC_DRV_M48T86 is not set | ||
| 64 | # CONFIG_RTC_DRV_M48T35 is not set | ||
| 65 | # CONFIG_RTC_DRV_M48T59 is not set | ||
| 66 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
| 67 | # CONFIG_RTC_DRV_BQ4802 is not set | ||
| 68 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
| 69 | # CONFIG_RTC_DRV_V3020 is not set | ||
| 70 | |||
| 71 | # | ||
| 72 | # on-CPU RTC drivers | ||
| 73 | # | ||
| 74 | # CONFIG_RTC_DRV_PL030 is not set | ||
| 75 | # CONFIG_RTC_DRV_PL031 is not set | ||
| 76 | |||
diff --git a/meta-zc702/recipes-kernel/linux/linux-xlnx/rtc_3.8.cfg b/meta-zc702/recipes-kernel/linux/linux-xlnx/rtc_3.8.cfg deleted file mode 100644 index f584f793..00000000 --- a/meta-zc702/recipes-kernel/linux/linux-xlnx/rtc_3.8.cfg +++ /dev/null | |||
| @@ -1,78 +0,0 @@ | |||
| 1 | # Enable the RTC | ||
| 2 | |||
| 3 | CONFIG_RTC_LIB=y | ||
| 4 | CONFIG_RTC_CLASS=y | ||
| 5 | CONFIG_RTC_HCTOSYS=y | ||
| 6 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
| 7 | # CONFIG_RTC_DEBUG is not set | ||
| 8 | |||
| 9 | # | ||
| 10 | # RTC interfaces | ||
| 11 | # | ||
| 12 | CONFIG_RTC_INTF_SYSFS=y | ||
| 13 | CONFIG_RTC_INTF_PROC=y | ||
| 14 | CONFIG_RTC_INTF_DEV=y | ||
| 15 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
| 16 | # CONFIG_RTC_DRV_TEST is not set | ||
| 17 | |||
| 18 | # | ||
| 19 | # I2C RTC drivers | ||
| 20 | # | ||
| 21 | # CONFIG_RTC_DRV_DS1307 is not set | ||
| 22 | # CONFIG_RTC_DRV_DS1374 is not set | ||
| 23 | # CONFIG_RTC_DRV_DS1672 is not set | ||
| 24 | # CONFIG_RTC_DRV_DS3232 is not set | ||
| 25 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
| 26 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
| 27 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
| 28 | # CONFIG_RTC_DRV_ISL12022 is not set | ||
| 29 | # CONFIG_RTC_DRV_X1205 is not set | ||
| 30 | # CONFIG_RTC_DRV_PCF8523 is not set | ||
| 31 | CONFIG_RTC_DRV_PCF8563=y | ||
| 32 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
| 33 | # CONFIG_RTC_DRV_M41T80 is not set | ||
| 34 | # CONFIG_RTC_DRV_BQ32K is not set | ||
| 35 | # CONFIG_RTC_DRV_S35390A is not set | ||
| 36 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 37 | # CONFIG_RTC_DRV_RX8581 is not set | ||
| 38 | # CONFIG_RTC_DRV_RX8025 is not set | ||
| 39 | # CONFIG_RTC_DRV_EM3027 is not set | ||
| 40 | # CONFIG_RTC_DRV_RV3029C2 is not set | ||
| 41 | |||
| 42 | # | ||
| 43 | # SPI RTC drivers | ||
| 44 | # | ||
| 45 | # CONFIG_RTC_DRV_M41T93 is not set | ||
| 46 | # CONFIG_RTC_DRV_M41T94 is not set | ||
| 47 | # CONFIG_RTC_DRV_DS1305 is not set | ||
| 48 | # CONFIG_RTC_DRV_DS1390 is not set | ||
| 49 | # CONFIG_RTC_DRV_MAX6902 is not set | ||
| 50 | # CONFIG_RTC_DRV_R9701 is not set | ||
| 51 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
| 52 | # CONFIG_RTC_DRV_DS3234 is not set | ||
| 53 | # CONFIG_RTC_DRV_PCF2123 is not set | ||
| 54 | |||
| 55 | # | ||
| 56 | # Platform RTC drivers | ||
| 57 | # | ||
| 58 | # CONFIG_RTC_DRV_CMOS is not set | ||
| 59 | # CONFIG_RTC_DRV_DS1286 is not set | ||
| 60 | # CONFIG_RTC_DRV_DS1511 is not set | ||
| 61 | # CONFIG_RTC_DRV_DS1553 is not set | ||
| 62 | # CONFIG_RTC_DRV_DS1742 is not set | ||
| 63 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 64 | # CONFIG_RTC_DRV_M48T86 is not set | ||
| 65 | # CONFIG_RTC_DRV_M48T35 is not set | ||
| 66 | # CONFIG_RTC_DRV_M48T59 is not set | ||
| 67 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
| 68 | # CONFIG_RTC_DRV_BQ4802 is not set | ||
| 69 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
| 70 | # CONFIG_RTC_DRV_V3020 is not set | ||
| 71 | # CONFIG_RTC_DRV_DS2404 is not set | ||
| 72 | |||
| 73 | # | ||
| 74 | # on-CPU RTC drivers | ||
| 75 | # | ||
| 76 | # CONFIG_RTC_DRV_PL030 is not set | ||
| 77 | # CONFIG_RTC_DRV_PL031 is not set | ||
| 78 | # CONFIG_RTC_DRV_SNVS is not set \ No newline at end of file | ||
diff --git a/meta-zc702/recipes-kernel/linux/linux-xlnx/zynq-zc702.dts b/meta-zc702/recipes-kernel/linux/linux-xlnx/zynq-zc702.dts deleted file mode 100644 index 8a65860c..00000000 --- a/meta-zc702/recipes-kernel/linux/linux-xlnx/zynq-zc702.dts +++ /dev/null | |||
| @@ -1,135 +0,0 @@ | |||
| 1 | /dts-v1/; | ||
| 2 | /include/ "zynq-7-base.dtsi" | ||
| 3 | / { | ||
| 4 | model = "Xilinx ZC702"; | ||
| 5 | chosen { | ||
| 6 | bootargs = "console=ttyPS0,115200 root=/dev/ram rw earlyprintk"; | ||
| 7 | linux,stdout-path = "/amba@0/serial@e0001000"; | ||
| 8 | } ; | ||
| 9 | ps7_ddr_0: memory@0 { | ||
| 10 | device_type = "memory"; | ||
| 11 | reg = < 0x0 0x40000000 >; | ||
| 12 | } ; | ||
| 13 | ps7_axi_interconnect_0: amba@0 { | ||
| 14 | ps7_ethernet_0: ps7-ethernet@e000b000 { | ||
| 15 | phy-handle = <&phy0>; | ||
| 16 | phy-mode = "gmii"; | ||
| 17 | mdio { | ||
| 18 | phy0: phy@7 { | ||
| 19 | compatible = "marvell,88e1116r"; | ||
| 20 | device_type = "ethernet-phy"; | ||
| 21 | reg = <7>; | ||
| 22 | } ; | ||
| 23 | } ; | ||
| 24 | } ; | ||
| 25 | ps7_qspi_0: ps7-qspi@e000d000 { | ||
| 26 | flash@0 { | ||
| 27 | compatible = "n25q128"; | ||
| 28 | reg = <0x0>; | ||
| 29 | spi-max-frequency = <50000000>; | ||
| 30 | #address-cells = <1>; | ||
| 31 | #size-cells = <1>; | ||
| 32 | partition@qspi-fsbl-uboot { | ||
| 33 | label = "qspi-fsbl-uboot"; | ||
| 34 | reg = <0x0 0x100000>; | ||
| 35 | }; | ||
| 36 | partition@qspi-linux { | ||
| 37 | label = "qspi-linux"; | ||
| 38 | reg = <0x100000 0x500000>; | ||
| 39 | }; | ||
| 40 | partition@qspi-device-tree { | ||
| 41 | label = "qspi-device-tree"; | ||
| 42 | reg = <0x600000 0x20000>; | ||
| 43 | }; | ||
| 44 | partition@qspi-rootfs { | ||
| 45 | label = "qspi-rootfs"; | ||
| 46 | reg = <0x620000 0x5E0000>; | ||
| 47 | }; | ||
| 48 | partition@qspi-bitstream { | ||
| 49 | label = "qspi-bitstream"; | ||
| 50 | reg = <0xC00000 0x400000>; | ||
| 51 | }; | ||
| 52 | }; | ||
| 53 | } ; | ||
| 54 | ps7_i2c_0: ps7-i2c@e0004000 { | ||
| 55 | /* I2C Switch */ | ||
| 56 | i2cswitch@74 { | ||
| 57 | compatible = "nxp,pca9548"; | ||
| 58 | #address-cells = <1>; | ||
| 59 | #size-cells = <0>; | ||
| 60 | reg = <0x74>; | ||
| 61 | |||
| 62 | i2c@0 { | ||
| 63 | #address-cells = <1>; | ||
| 64 | #size-cells = <0>; | ||
| 65 | reg = <0>; | ||
| 66 | osc@5d { | ||
| 67 | compatible = "si570"; | ||
| 68 | reg = <0x5d>; | ||
| 69 | factory-fout = <156250000>; | ||
| 70 | initial-fout = <148500000>; | ||
| 71 | }; | ||
| 72 | }; | ||
| 73 | |||
| 74 | i2c@2 { | ||
| 75 | #address-cells = <1>; | ||
| 76 | #size-cells = <0>; | ||
| 77 | reg = <2>; | ||
| 78 | eeprom@54 { | ||
| 79 | compatible = "at,24c08"; | ||
| 80 | reg = <0x54>; | ||
| 81 | }; | ||
| 82 | }; | ||
| 83 | |||
| 84 | i2c@3 { | ||
| 85 | #address-cells = <1>; | ||
| 86 | #size-cells = <0>; | ||
| 87 | reg = <3>; | ||
| 88 | gpio@21 { | ||
| 89 | compatible = "ti,tca6416"; | ||
| 90 | reg = <0x21>; | ||
| 91 | gpio-controller; | ||
| 92 | #gpio-cells = <2>; | ||
| 93 | }; | ||
| 94 | }; | ||
| 95 | |||
| 96 | i2c@4 { | ||
| 97 | #address-cells = <1>; | ||
| 98 | #size-cells = <0>; | ||
| 99 | reg = <4>; | ||
| 100 | rtc@54 { | ||
| 101 | compatible = "nxp,pcf8563"; | ||
| 102 | reg = <0x51>; | ||
| 103 | }; | ||
| 104 | }; | ||
| 105 | |||
| 106 | i2c@7 { | ||
| 107 | #address-cells = <1>; | ||
| 108 | #size-cells = <0>; | ||
| 109 | reg = <7>; | ||
| 110 | hwmon@52 { | ||
| 111 | compatible = "pmbus,ucd9248"; | ||
| 112 | reg = <52>; | ||
| 113 | }; | ||
| 114 | hwmon@53 { | ||
| 115 | compatible = "pmbus,ucd9248"; | ||
| 116 | reg = <53>; | ||
| 117 | }; | ||
| 118 | hwmon@54 { | ||
| 119 | compatible = "pmbus,ucd9248"; | ||
| 120 | reg = <54>; | ||
| 121 | }; | ||
| 122 | }; | ||
| 123 | }; | ||
| 124 | }; | ||
| 125 | |||
| 126 | /* Disabled Devices */ | ||
| 127 | ps7_sd_1: ps7-sdio@e0101000 { compatible = "invalid"; }; | ||
| 128 | ps7_uart_0: serial@e0000000 { compatible = "invalid"; }; | ||
| 129 | ps7_ethernet_1: ps7-ethernet@e000c000 { compatible = "invalid"; }; | ||
| 130 | ps7_i2c_1: ps7-i2c@e0005000 { compatible = "invalid"; }; | ||
| 131 | ps7_can_0: ps7-can@e0008000 { compatible = "invalid"; }; | ||
| 132 | ps7_can_1: ps7-can@e0009000 { compatible = "invalid"; }; | ||
| 133 | ps7_usb_1: ps7-usb@e0003000 { compatible = "invalid"; }; | ||
| 134 | } ; | ||
| 135 | } ; | ||
diff --git a/meta-zc702/recipes-kernel/linux/linux-xlnx_3.6.bbappend b/meta-zc702/recipes-kernel/linux/linux-xlnx_3.6.bbappend deleted file mode 100644 index e8064272..00000000 --- a/meta-zc702/recipes-kernel/linux/linux-xlnx_3.6.bbappend +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | include linux-xlnx.inc | ||
diff --git a/meta-zc702/recipes-kernel/linux/linux-xlnx_3.8.bbappend b/meta-zc702/recipes-kernel/linux/linux-xlnx_3.8.bbappend deleted file mode 100644 index e8064272..00000000 --- a/meta-zc702/recipes-kernel/linux/linux-xlnx_3.8.bbappend +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | include linux-xlnx.inc | ||
diff --git a/meta-zedboard/COPYING.MIT b/meta-zedboard/COPYING.MIT deleted file mode 100644 index fb950dc6..00000000 --- a/meta-zedboard/COPYING.MIT +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| 2 | of this software and associated documentation files (the "Software"), to deal | ||
| 3 | in the Software without restriction, including without limitation the rights | ||
| 4 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| 5 | copies of the Software, and to permit persons to whom the Software is | ||
| 6 | furnished to do so, subject to the following conditions: | ||
| 7 | |||
| 8 | The above copyright notice and this permission notice shall be included in | ||
| 9 | all copies or substantial portions of the Software. | ||
| 10 | |||
| 11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 12 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 13 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| 14 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| 15 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| 16 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| 17 | THE SOFTWARE. | ||
diff --git a/meta-zedboard/README b/meta-zedboard/README deleted file mode 100644 index 20771eb9..00000000 --- a/meta-zedboard/README +++ /dev/null | |||
| @@ -1,44 +0,0 @@ | |||
| 1 | meta-zedboard | ||
| 2 | ========== | ||
| 3 | |||
| 4 | This README file contains information on using the meta-zedboard BSP layer. | ||
| 5 | |||
| 6 | The ZedBoard is an evaluation board by Avnet/Digilent for the Zynq architecture: | ||
| 7 | http://www.zedboard.org/ | ||
| 8 | |||
| 9 | Please refer to the meta-xilinx/README for details regarding patch submission, | ||
| 10 | layer dependencies, build process, etc. | ||
| 11 | |||
| 12 | Supported Boards/Machines | ||
| 13 | ========================= | ||
| 14 | |||
| 15 | Avnet/Digilent ZedBoard (Zynq) - 'zedboard' | ||
| 16 | |||
| 17 | Reference files and documents | ||
| 18 | ============================= | ||
| 19 | |||
| 20 | For details on the Evaluation board: | ||
| 21 | http://www.zedboard.org/content/overview | ||
| 22 | |||
| 23 | For design files (including 'zynq_fsbl_0.elf') for the ZedBoard: | ||
| 24 | http://www.zedboard.org/reference-designs-categories/zynq-concepts-tools-and-techniques-zedboard | ||
| 25 | |||
| 26 | Additional information on Zynq architecture can be found at: | ||
| 27 | http://www.xilinx.com/support/index.htm | ||
| 28 | |||
| 29 | SD Card Boot | ||
| 30 | ============ | ||
| 31 | |||
| 32 | Note: This boot flow requires access to Xilinx tools (for BOOT.BIN generation). | ||
| 33 | |||
| 34 | Copy the following to the SD card (ensure to rename the files where appropriate): | ||
| 35 | Kernel: uImage | ||
| 36 | RootFS: uramdisk.image.gz (core-image-minimal-<machine name>.ext2.gz.u-boot) | ||
| 37 | DTB: devicetree.dtb (uImage-<machine name>.dtb) | ||
| 38 | |||
| 39 | Using the Xilinx tools, package 'zynq_fsbl_0.elf' and 'u-boot.elf' into a | ||
| 40 | 'BOOT.BIN' (See http://www.wiki.xilinx.com/Prepare+Boot+Image for details). Once | ||
| 41 | created copy 'BOOT.BIN' onto the SD Card. | ||
| 42 | |||
| 43 | Insert SD Card, connect UART to Terminal program and boot board (Ensure the | ||
| 44 | board is configured for SD Boot). | ||
diff --git a/meta-zedboard/conf/layer.conf b/meta-zedboard/conf/layer.conf deleted file mode 100644 index d749fd6e..00000000 --- a/meta-zedboard/conf/layer.conf +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | # We have a conf and classes directory, add to BBPATH | ||
| 2 | BBPATH := "${BBPATH}:${LAYERDIR}" | ||
| 3 | |||
| 4 | # We have a packages directory, add to BBFILES | ||
| 5 | BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb" | ||
| 6 | BBFILES += " ${LAYERDIR}/recipes-*/*/*.bbappend" | ||
| 7 | |||
| 8 | BBFILE_COLLECTIONS += "zedboard" | ||
| 9 | BBFILE_PATTERN_zedboard := "^${LAYERDIR}/" | ||
| 10 | BBFILE_PRIORITY_zedboard = "8" | ||
| 11 | |||
diff --git a/meta-zedboard/conf/machine/zedboard.conf b/meta-zedboard/conf/machine/zedboard.conf deleted file mode 100644 index 1dd631d1..00000000 --- a/meta-zedboard/conf/machine/zedboard.conf +++ /dev/null | |||
| @@ -1,15 +0,0 @@ | |||
| 1 | #@TYPE: Machine | ||
| 2 | #@NAME: zedboard | ||
| 3 | #@DESCRIPTION: Machine support for zedboard. | ||
| 4 | # http://www.zedboard.org/ | ||
| 5 | |||
| 6 | # Versions corresponding to zedboard documentation | ||
| 7 | PREFERRED_VERSION_linux-xlnx ?= "3.8%" | ||
| 8 | PREFERRED_VERSION_u-boot-xlnx ?= "v2013.01%" | ||
| 9 | |||
| 10 | require conf/machine/include/tune-zynq.inc | ||
| 11 | |||
| 12 | # Zedboard machine definition known by Xilinx UBOOT | ||
| 13 | UBOOT_MACHINE = "zynq_zed_config" | ||
| 14 | |||
| 15 | SERIAL_CONSOLE = "115200 ttyPS0" | ||
diff --git a/meta-zedboard/recipes-kernel/linux/linux-xlnx.inc b/meta-zedboard/recipes-kernel/linux/linux-xlnx.inc deleted file mode 100644 index 8f20a49a..00000000 --- a/meta-zedboard/recipes-kernel/linux/linux-xlnx.inc +++ /dev/null | |||
| @@ -1,16 +0,0 @@ | |||
| 1 | # linux-xlnx specific modifications for zedboard | ||
| 2 | |||
| 3 | FILESEXTRAPATHS_prepend := "${THISDIR}/linux-xlnx:" | ||
| 4 | |||
| 5 | # Config fragments are either under | ||
| 6 | # meta-xilinx/kernel-recipes for common fragments, or | ||
| 7 | # meta-xilinx/meta-<boardlayer>/kernel-recipes for board specific fragments | ||
| 8 | SRC_URI_append_zedboard += "file://xilinx_zynq_defconfig_${LINUX_VERSION}.cfg" | ||
| 9 | SRC_URI_append_zedboard += "file://nortc.cfg" | ||
| 10 | SRC_URI_append_zedboard += "file://zynq-zed-mmcblk0p2.dts" | ||
| 11 | SRC_URI_append_zedboard += "file://zynq-zed-ram.dts" | ||
| 12 | SRC_URI_append_zedboard += "file://zynq-zed.dtsi" | ||
| 13 | |||
| 14 | KERNEL_DEVICETREE_zedboard = "${WORKDIR}/zynq-zed-mmcblk0p2.dts ${WORKDIR}/zynq-zed-ram.dts" | ||
| 15 | |||
| 16 | COMPATIBLE_MACHINE_zedboard = "zedboard" | ||
diff --git a/meta-zedboard/recipes-kernel/linux/linux-xlnx/nortc.cfg b/meta-zedboard/recipes-kernel/linux/linux-xlnx/nortc.cfg deleted file mode 100644 index b67c7a43..00000000 --- a/meta-zedboard/recipes-kernel/linux/linux-xlnx/nortc.cfg +++ /dev/null | |||
| @@ -1,78 +0,0 @@ | |||
| 1 | # Disable the RTC | ||
| 2 | |||
| 3 | # CONFIG_RTC_LIB is not set | ||
| 4 | # CONFIG_RTC_CLASS is not set | ||
| 5 | # CONFIG_RTC_HCTOSYS is not set | ||
| 6 | # CONFIG_RTC_HCTOSYS_DEVICE is not set | ||
| 7 | # CONFIG_RTC_DEBUG is not set | ||
| 8 | |||
| 9 | # | ||
| 10 | # RTC interfaces | ||
| 11 | # | ||
| 12 | # CONFIG_RTC_INTF_SYSFS is not set | ||
| 13 | # CONFIG_RTC_INTF_PROC is not set | ||
| 14 | # CONFIG_RTC_INTF_DEV is not set | ||
| 15 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
| 16 | # CONFIG_RTC_DRV_TEST is not set | ||
| 17 | |||
| 18 | # | ||
| 19 | # I2C RTC drivers | ||
| 20 | # | ||
| 21 | # CONFIG_RTC_DRV_DS1307 is not set | ||
| 22 | # CONFIG_RTC_DRV_DS1374 is not set | ||
| 23 | # CONFIG_RTC_DRV_DS1672 is not set | ||
| 24 | # CONFIG_RTC_DRV_DS3232 is not set | ||
| 25 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
| 26 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
| 27 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
| 28 | # CONFIG_RTC_DRV_ISL12022 is not set | ||
| 29 | # CONFIG_RTC_DRV_X1205 is not set | ||
| 30 | # CONFIG_RTC_DRV_PCF8523 is not set | ||
| 31 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
| 32 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
| 33 | # CONFIG_RTC_DRV_M41T80 is not set | ||
| 34 | # CONFIG_RTC_DRV_BQ32K is not set | ||
| 35 | # CONFIG_RTC_DRV_S35390A is not set | ||
| 36 | # CONFIG_RTC_DRV_FM3130 is not set | ||
| 37 | # CONFIG_RTC_DRV_RX8581 is not set | ||
| 38 | # CONFIG_RTC_DRV_RX8025 is not set | ||
| 39 | # CONFIG_RTC_DRV_EM3027 is not set | ||
| 40 | # CONFIG_RTC_DRV_RV3029C2 is not set | ||
| 41 | |||
| 42 | # | ||
| 43 | # SPI RTC drivers | ||
| 44 | # | ||
| 45 | # CONFIG_RTC_DRV_M41T93 is not set | ||
| 46 | # CONFIG_RTC_DRV_M41T94 is not set | ||
| 47 | # CONFIG_RTC_DRV_DS1305 is not set | ||
| 48 | # CONFIG_RTC_DRV_DS1390 is not set | ||
| 49 | # CONFIG_RTC_DRV_MAX6902 is not set | ||
| 50 | # CONFIG_RTC_DRV_R9701 is not set | ||
| 51 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
| 52 | # CONFIG_RTC_DRV_DS3234 is not set | ||
| 53 | # CONFIG_RTC_DRV_PCF2123 is not set | ||
| 54 | |||
| 55 | # | ||
| 56 | # Platform RTC drivers | ||
| 57 | # | ||
| 58 | # CONFIG_RTC_DRV_CMOS is not set | ||
| 59 | # CONFIG_RTC_DRV_DS1286 is not set | ||
| 60 | # CONFIG_RTC_DRV_DS1511 is not set | ||
| 61 | # CONFIG_RTC_DRV_DS1553 is not set | ||
| 62 | # CONFIG_RTC_DRV_DS1742 is not set | ||
| 63 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
| 64 | # CONFIG_RTC_DRV_M48T86 is not set | ||
| 65 | # CONFIG_RTC_DRV_M48T35 is not set | ||
| 66 | # CONFIG_RTC_DRV_M48T59 is not set | ||
| 67 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
| 68 | # CONFIG_RTC_DRV_BQ4802 is not set | ||
| 69 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
| 70 | # CONFIG_RTC_DRV_V3020 is not set | ||
| 71 | # CONFIG_RTC_DRV_DS2404 is not set | ||
| 72 | |||
| 73 | # | ||
| 74 | # on-CPU RTC drivers | ||
| 75 | # | ||
| 76 | # CONFIG_RTC_DRV_PL030 is not set | ||
| 77 | # CONFIG_RTC_DRV_PL031 is not set | ||
| 78 | # CONFIG_RTC_DRV_SNVS is not set | ||
diff --git a/meta-zedboard/recipes-kernel/linux/linux-xlnx/zynq-zed-mmcblk0p2.dts b/meta-zedboard/recipes-kernel/linux/linux-xlnx/zynq-zed-mmcblk0p2.dts deleted file mode 100644 index d3e24501..00000000 --- a/meta-zedboard/recipes-kernel/linux/linux-xlnx/zynq-zed-mmcblk0p2.dts +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Zedboard DTS file header for sdcard/mmc partition 2 boot. | ||
| 3 | */ | ||
| 4 | |||
| 5 | /dts-v1/; | ||
| 6 | /include/ "zynq-zed.dtsi" | ||
| 7 | / { | ||
| 8 | chosen { | ||
| 9 | bootargs = "console=ttyPS0,115200 root=/dev/mmcblk0p2 ro earlyprintk"; | ||
| 10 | } ; | ||
| 11 | } ; | ||
diff --git a/meta-zedboard/recipes-kernel/linux/linux-xlnx/zynq-zed-ram.dts b/meta-zedboard/recipes-kernel/linux/linux-xlnx/zynq-zed-ram.dts deleted file mode 100644 index adf60fa2..00000000 --- a/meta-zedboard/recipes-kernel/linux/linux-xlnx/zynq-zed-ram.dts +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Zedboard DTS file header for ramdisk boot. | ||
| 3 | */ | ||
| 4 | |||
| 5 | /dts-v1/; | ||
| 6 | /include/ "zynq-zed.dtsi" | ||
| 7 | / { | ||
| 8 | chosen { | ||
| 9 | bootargs = "console=ttyPS0,115200 root=/dev/ram rw earlyprintk"; | ||
| 10 | } ; | ||
| 11 | } ; | ||
diff --git a/meta-zedboard/recipes-kernel/linux/linux-xlnx/zynq-zed.dtsi b/meta-zedboard/recipes-kernel/linux/linux-xlnx/zynq-zed.dtsi deleted file mode 100644 index 3f3d67ac..00000000 --- a/meta-zedboard/recipes-kernel/linux/linux-xlnx/zynq-zed.dtsi +++ /dev/null | |||
| @@ -1,63 +0,0 @@ | |||
| 1 | /include/ "zynq-7-base.dtsi" | ||
| 2 | / { | ||
| 3 | model = "ZedBoard"; | ||
| 4 | chosen { | ||
| 5 | bootargs = "console=ttyPS0,115200 earlyprintk"; | ||
| 6 | linux,stdout-path = "/axi@0/serial@e0001000"; | ||
| 7 | } ; | ||
| 8 | ps7_ddr_0: memory@0 { | ||
| 9 | device_type = "memory"; | ||
| 10 | reg = < 0x0 0x20000000 >; | ||
| 11 | } ; | ||
| 12 | ps7_axi_interconnect_0: amba@0 { | ||
| 13 | ps7_ethernet_0: ps7-ethernet@e000b000 { | ||
| 14 | mdio { | ||
| 15 | phy0: phy@7 { | ||
| 16 | compatible = "marvell,88e1510"; | ||
| 17 | device_type = "ethernet-phy"; | ||
| 18 | reg = <7>; | ||
| 19 | } ; | ||
| 20 | } ; | ||
| 21 | } ; | ||
| 22 | ps7_qspi_0: ps7-qspi@e000d000 { | ||
| 23 | flash@0 { | ||
| 24 | compatible = "n25q128"; | ||
| 25 | reg = <0x0>; | ||
| 26 | spi-max-frequency = <50000000>; | ||
| 27 | #address-cells = <1>; | ||
| 28 | #size-cells = <1>; | ||
| 29 | partition@qspi-fsbl-uboot { | ||
| 30 | label = "qspi-fsbl-uboot"; | ||
| 31 | reg = <0x0 0x100000>; | ||
| 32 | }; | ||
| 33 | partition@qspi-linux { | ||
| 34 | label = "qspi-linux"; | ||
| 35 | reg = <0x100000 0x500000>; | ||
| 36 | }; | ||
| 37 | partition@qspi-device-tree { | ||
| 38 | label = "qspi-device-tree"; | ||
| 39 | reg = <0x600000 0x20000>; | ||
| 40 | }; | ||
| 41 | partition@qspi-rootfs { | ||
| 42 | label = "qspi-rootfs"; | ||
| 43 | reg = <0x620000 0x5E0000>; | ||
| 44 | }; | ||
| 45 | partition@qspi-bitstream { | ||
| 46 | label = "qspi-bitstream"; | ||
| 47 | reg = <0xC00000 0x400000>; | ||
| 48 | }; | ||
| 49 | }; | ||
| 50 | } ; | ||
| 51 | |||
| 52 | /* Disabled Devices */ | ||
| 53 | ps7_sd_1: ps7-sdio@e0101000 { compatible = "invalid"; }; | ||
| 54 | ps7_uart_0: serial@e0000000 { compatible = "invalid"; }; | ||
| 55 | ps7_ethernet_1: ps7-ethernet@e000c000 { compatible = "invalid"; }; | ||
| 56 | ps7_i2c_0: ps7-i2c@e0004000 { compatible = "invalid"; }; | ||
| 57 | ps7_i2c_1: ps7-i2c@e0005000 { compatible = "invalid"; }; | ||
| 58 | ps7_wdt_0: ps7-wdt@f8005000 { compatible = "invalid"; }; | ||
| 59 | ps7_can_0: ps7-can@e0008000 { compatible = "invalid"; }; | ||
| 60 | ps7_can_1: ps7-can@e0009000 { compatible = "invalid"; }; | ||
| 61 | ps7_usb_1: ps7-usb@e0003000 { compatible = "invalid"; }; | ||
| 62 | } ; | ||
| 63 | } ; | ||
diff --git a/meta-zedboard/recipes-kernel/linux/linux-xlnx_3.6.bbappend b/meta-zedboard/recipes-kernel/linux/linux-xlnx_3.6.bbappend deleted file mode 100644 index e8064272..00000000 --- a/meta-zedboard/recipes-kernel/linux/linux-xlnx_3.6.bbappend +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | include linux-xlnx.inc | ||
diff --git a/meta-zedboard/recipes-kernel/linux/linux-xlnx_3.8.bbappend b/meta-zedboard/recipes-kernel/linux/linux-xlnx_3.8.bbappend deleted file mode 100644 index e8064272..00000000 --- a/meta-zedboard/recipes-kernel/linux/linux-xlnx_3.8.bbappend +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | include linux-xlnx.inc | ||
