diff options
author | Clement Laigle <clement.laigle8@gmail.com> | 2018-06-19 14:28:50 -0700 |
---|---|---|
committer | Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> | 2018-06-21 10:55:43 -0700 |
commit | 48aa7b26a46dd4765231e18c320ad6f22c0e22b5 (patch) | |
tree | 6c83b20a9818102dfd50d6f5528824114a0b74bd | |
parent | 8a521726862450e160b1f79265d1c50474f82a00 (diff) | |
download | meta-xilinx-48aa7b26a46dd4765231e18c320ad6f22c0e22b5.tar.gz |
minized-zynq7.conf: Add support for MiniZed development board
MiniZed is a single-core Zynq 7Z007S development board
Connectivity with Murata "Type 1DX" wireless module
- Wi-Fi 802.11b/g/n
- Bluetooth 4.1 - BLE (Bluetooth Low Energy)
Memory
- 512MB DDR3L
- 128MB QSPI Flash
- 8GB eMMC
Interfaces
- Dual Pmod (16 GPIO)
- Arduino (22 GPIO)
- USB 2.0 host
Physical interface
- Two user LED (Red/Green)
- User button
- User switch
- Reset
Only a single microUSB cable is required for power, programming, JTAG
and serial terminal for debug.
This patch adds machine configuration file for MiniZed board with
required setting of board specific yocto variables needed.
- linux-xlnx is the kernel provider
- u-boot is the u-boot provider which will also generate SPL
boot.bin
Signed-off-by: Clement Laigle <clement.laigle8@gmail.com>
Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
-rw-r--r-- | meta-xilinx-contrib/conf/machine/minized-zynq7.conf | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-xilinx-contrib/conf/machine/minized-zynq7.conf b/meta-xilinx-contrib/conf/machine/minized-zynq7.conf new file mode 100644 index 00000000..d386c06f --- /dev/null +++ b/meta-xilinx-contrib/conf/machine/minized-zynq7.conf | |||
@@ -0,0 +1,30 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: minized-zynq7 | ||
3 | #@DESCRIPTION: Machine support for MiniZed. (http://www.minized.org/) | ||
4 | |||
5 | require conf/machine/include/tune-zynq.inc | ||
6 | require conf/machine/include/machine-xilinx-default.inc | ||
7 | require conf/machine/include/machine-xilinx-board.inc | ||
8 | |||
9 | MACHINE_FEATURES = "ext2 vfat usbhost wifi bluetooth" | ||
10 | |||
11 | # u-boot configuration | ||
12 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot" | ||
13 | UBOOT_MACHINE = "zynq_minized_config" | ||
14 | SPL_BINARY = "spl/boot.bin" | ||
15 | |||
16 | EXTRA_IMAGEDEPENDS += " \ | ||
17 | u-boot-zynq-uenv \ | ||
18 | virtual/boot-bin \ | ||
19 | " | ||
20 | |||
21 | SERIAL_CONSOLE = "115200 ttyPS0" | ||
22 | SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}" | ||
23 | |||
24 | MACHINE_ESSENTIAL_EXTRA_RDEPENDS += "device-tree" | ||
25 | |||
26 | IMAGE_BOOT_FILES += " \ | ||
27 | boot.bin \ | ||
28 | ${MACHINE}.dtb \ | ||
29 | uEnv.txt \ | ||
30 | " | ||