board: add support for Xilinx zc706
This is a Xilinx Zynq (xc7z045) development board, based on Xilinx Zynq (xc7z045). This support is based on Avnet Zedboard defconfig/readme. [Thomas: - minor fixes in the readme.txt - rename defconfig from zc706_defconfig to xilinx_zc706_defconfig.] Signed-off-by: Jordi Montagne <jordi.montagne66@gmail.com> Tested-by: Jean Burgat <jeanburgat33@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
d3ff6cbb42
commit
f851660f9d
56
board/xilinx/zc706/readme.txt
Normal file
56
board/xilinx/zc706/readme.txt
Normal file
@ -0,0 +1,56 @@
|
||||
This is the Buildroot board support for the Xilinx ZC706. The ZC706 is
|
||||
a development board based on the Xilinx Zynq-7000 based
|
||||
All-Programmable System-On-Chip.
|
||||
|
||||
ZC706 information including schematics, reference designs, and manuals
|
||||
are available from
|
||||
http://www.xilinx.com/products/boards-and-kits/ek-z7-zc706-g.html.
|
||||
|
||||
uboot.bin -- U-Boot SPL w/ Xilinx boot.bin wrapper
|
||||
---------------------------------------------------
|
||||
|
||||
Due to licensing issues, the files ps7_init.c/h are not distributed
|
||||
with the U-Boot source code. These files are required to make a
|
||||
boot.bin file.
|
||||
|
||||
If you already have the Xilinx tools installed, the following sequence
|
||||
will unpack, patch and build the rfs, kernel, uboot, and uboot-spl.
|
||||
|
||||
make xilinx_zc706_defconfig
|
||||
make uboot-patch
|
||||
cp ${XILINX_SDK_LIB}/hwplatform_templates/ZC706_hw_platform/ps7_init.{c,h} \
|
||||
output/build/uboot-xilinx-v2014.1/board/xilinx/zynq/
|
||||
|
||||
Where ${XILINX_SDK_LIB} is ${XILINX}/SDK/${VERSION}/data/embeddedsw/lib.
|
||||
|
||||
After copying these files into the U-Boot source tree, you can
|
||||
continue the build with:
|
||||
|
||||
make
|
||||
|
||||
*Notice*
|
||||
While the build will successfully complete without the ps7_init.*
|
||||
files, the uboot.bin file generated by this configuration will not
|
||||
function properly on the ZC706. Therefore, it is imperative that the
|
||||
ps7_init.* files be copied into the U-Boot source tree any time the
|
||||
clean, or uboot-dirclean targets are executed.
|
||||
|
||||
Resulting system
|
||||
----------------
|
||||
|
||||
A FAT32 partition should be created at the beggining of the SD Card
|
||||
and the following files should be installed:
|
||||
|
||||
- boot.bin
|
||||
- devicetree.dtb
|
||||
- uImage
|
||||
- uramdisk.image.gz
|
||||
- u-boot.img
|
||||
|
||||
All needed files can be taken from <output>/images/
|
||||
|
||||
cp <output>/images/boot.bin /media/sdcard/
|
||||
cp <output>/images/uImage /media/sdcard/
|
||||
cp <output>/images/u-boot.img /media/sdcard/
|
||||
cp <output>/images/zynq-zc706.dtb /media/sdcard/devicetree.dtb
|
||||
cp <output>/images/rootfs.cpio.uboot /media/sdcard/uramdisk.image.gz
|
27
configs/xilinx_zc706_defconfig
Normal file
27
configs/xilinx_zc706_defconfig
Normal file
@ -0,0 +1,27 @@
|
||||
BR2_arm=y
|
||||
BR2_cortex_a9=y
|
||||
BR2_ARM_EABIHF=y
|
||||
BR2_ARM_ENABLE_NEON=y
|
||||
BR2_KERNEL_HEADERS_VERSION=y
|
||||
BR2_DEFAULT_KERNEL_VERSION="3.8"
|
||||
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_8=y
|
||||
BR2_TARGET_GENERIC_GETTY_PORT="ttyPS0"
|
||||
BR2_LINUX_KERNEL=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_GIT=y
|
||||
BR2_LINUX_KERNEL_CUSTOM_REPO_URL="git://github.com/Xilinx/linux-xlnx.git"
|
||||
BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="xilinx-v2014.2.01"
|
||||
BR2_LINUX_KERNEL_DEFCONFIG="xilinx_zynq"
|
||||
BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x8000"
|
||||
BR2_LINUX_KERNEL_DTS_SUPPORT=y
|
||||
BR2_LINUX_KERNEL_INTREE_DTS_NAME="zynq-zc706"
|
||||
BR2_TARGET_ROOTFS_CPIO=y
|
||||
BR2_TARGET_ROOTFS_CPIO_GZIP=y
|
||||
BR2_TARGET_ROOTFS_CPIO_UIMAGE=y
|
||||
BR2_TARGET_UBOOT=y
|
||||
BR2_TARGET_UBOOT_BOARDNAME="zynq_zc70x"
|
||||
BR2_TARGET_UBOOT_CUSTOM_GIT=y
|
||||
BR2_TARGET_UBOOT_CUSTOM_REPO_URL="git://github.com/Xilinx/u-boot-xlnx.git"
|
||||
BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="xilinx-v2014.1"
|
||||
BR2_TARGET_UBOOT_FORMAT_IMG=y
|
||||
BR2_TARGET_UBOOT_SPL=y
|
||||
BR2_TARGET_UBOOT_SPL_NAME="boot.bin"
|
Loading…
Reference in New Issue
Block a user