diff options
author | Mark Hatle <mark.hatle@xilinx.com> | 2021-12-15 13:52:16 -0800 |
---|---|---|
committer | Mark Hatle <mark.hatle@xilinx.com> | 2021-12-22 08:19:01 -0800 |
commit | 322e23dc213d51a12345ca705b3776f189dc413f (patch) | |
tree | e257ca97fa6d3eef83c845b67d711b2d8ecba5ba /meta-xilinx-core/README.qemu.md | |
parent | dd95dde009dc7968f6e6e4c0609e7b443c55c627 (diff) | |
download | meta-xilinx-322e23dc213d51a12345ca705b3776f189dc413f.tar.gz |
Initial restructure/split of meta-xilinx-bsp
Create a new meta-xilinx-core, move core functionality to the core, keeping
board specific files in the bsp layer.
zynqmp-generic changed from require <board> to include, so if meta-xilinx-bsp
is not available it will not fail.
Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>
Diffstat (limited to 'meta-xilinx-core/README.qemu.md')
-rw-r--r-- | meta-xilinx-core/README.qemu.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-xilinx-core/README.qemu.md b/meta-xilinx-core/README.qemu.md new file mode 100644 index 00000000..992e0618 --- /dev/null +++ b/meta-xilinx-core/README.qemu.md | |||
@@ -0,0 +1,25 @@ | |||
1 | |||
2 | ZynqMP - PMU ROM | ||
3 | ---------------- | ||
4 | |||
5 | Since Xilinx tool release v2017.1 multiple components (arm-trusted-firmware, | ||
6 | linux, u-boot, etc.) require the PMU firmware to be loaded. For QEMU this also | ||
7 | means that the PMU ROM must be loaded so that the PMU firmware can be used. | ||
8 | |||
9 | The PMU ROM is not available for download separately from a location that can be | ||
10 | accessed without a Xilinx account. As such the PMU ROM must be obtained manually | ||
11 | by the user. The PMU ROM is available in the ZCU102 PetaLinux BSP, but can be | ||
12 | extracted without the need for the PetaLinux tools. | ||
13 | |||
14 | Download the BSP (you will need a Xilinx account and agreement to terms): | ||
15 | |||
16 | https://www.xilinx.com/member/forms/download/xef.html?filename=xilinx-zcu102-v2017.1-final.bsp&akdm=1 | ||
17 | |||
18 | Once downloaded the PMU ROM can be extracted using the following command and | ||
19 | place `pmu-rom.elf` in the `deploy/images/zcu102-zynqmp/` directory. | ||
20 | |||
21 | ``` | ||
22 | # tar -O -xf xilinx-zcu102-v2017.1-final.bsp \ | ||
23 | xilinx-zcu102-2017.1/pre-built/linux/images/pmu_rom_qemu_sha3.elf > pmu-rom.elf | ||
24 | ``` | ||
25 | |||