diff options
author | Alejandro Enedino Hernandez Samaniego <alejandr@xilinx.com> | 2018-10-09 16:05:34 -0700 |
---|---|---|
committer | Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> | 2019-01-01 20:03:46 -0800 |
commit | ac55f70931bd4218a3517dfaeb48871a53cc6414 (patch) | |
tree | cb7da419ddc1c834c3585ae5dd190db6b21a5fc1 | |
parent | 0ca9b770946c6877458832752bab17d5564fcb96 (diff) | |
download | meta-xilinx-ac55f70931bd4218a3517dfaeb48871a53cc6414.tar.gz |
pmu-firmware: Port pmu-firmware recipe
This patch ports the pmu-firmware recipe from meta-xilinx-bsp to be used
with the standalone/baremetal toolchain and also upgrades it to the
latest release at this point.
The recipe was trimmed down, and a few changes had to be made to make it
compatible with the baremetal layer, DEPENDS, pass include dir, license
and such.
Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandr@xilinx.com>
Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
-rw-r--r-- | meta-xilinx-standalone/recipes-standalone/pmu-firmware/pmu-firmware_2018.3.bb | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/meta-xilinx-standalone/recipes-standalone/pmu-firmware/pmu-firmware_2018.3.bb b/meta-xilinx-standalone/recipes-standalone/pmu-firmware/pmu-firmware_2018.3.bb new file mode 100644 index 00000000..847e0718 --- /dev/null +++ b/meta-xilinx-standalone/recipes-standalone/pmu-firmware/pmu-firmware_2018.3.bb | |||
@@ -0,0 +1,71 @@ | |||
1 | inherit deploy | ||
2 | |||
3 | LICENSE = "Proprietary" | ||
4 | LIC_FILES_CHKSUM = "file://../../../../license.txt;md5=71602ce1bc2917a9be07ceee6fab6711" | ||
5 | |||
6 | XILINX_RELEASE_VERSION = "v2018.3" | ||
7 | SRCREV = "56f3da2afbc817988c9a45b0b26a7fef2ac91706" | ||
8 | PV = "${XILINX_RELEASE_VERSION}+git${SRCPV}" | ||
9 | |||
10 | SRC_URI = "git://github.com/Xilinx/embeddedsw.git;protocol=https;nobranch=1" | ||
11 | |||
12 | COMPATIBLE_HOST = "microblaze.*-elf" | ||
13 | COMPATIBLE_MACHINE = "^$" | ||
14 | COMPATIBLE_MACHINE_zynqmp-pmu = "zynqmp-pmu" | ||
15 | |||
16 | |||
17 | S = "${WORKDIR}/git/lib/sw_apps/zynqmp_pmufw/src" | ||
18 | |||
19 | # The makefile does not handle parallelization | ||
20 | PARALLEL_MAKE = "" | ||
21 | |||
22 | do_configure() { | ||
23 | # manually do the copy_bsp step first, so as to be able to fix up use of | ||
24 | # mb-* commands | ||
25 | ${S}/../misc/copy_bsp.sh | ||
26 | } | ||
27 | |||
28 | COMPILER = "${CC}" | ||
29 | COMPILER_FLAGS = "-O2 -c" | ||
30 | EXTRA_COMPILER_FLAGS = "-g -Wall -Wextra -Os -flto -ffat-lto-objects" | ||
31 | ARCHIVER = "${AR}" | ||
32 | |||
33 | BSP_DIR ?= "${S}/../misc/zynqmp_pmufw_bsp" | ||
34 | BSP_TARGETS_DIR ?= "${BSP_DIR}/psu_pmu_0/libsrc" | ||
35 | |||
36 | def bsp_make_vars(d): | ||
37 | s = ["COMPILER", "CC", "COMPILER_FLAGS", "EXTRA_COMPILER_FLAGS", "ARCHIVER", "AR", "AS"] | ||
38 | return " ".join(["\"%s=%s\"" % (v, d.getVar(v)) for v in s]) | ||
39 | |||
40 | do_compile() { | ||
41 | # the Makefile in ${S}/../misc/Makefile, does not handle CC, AR, AS, etc | ||
42 | # properly. So do its job manually. Preparing the includes first, then libs. | ||
43 | for i in $(ls ${BSP_TARGETS_DIR}/*/src/Makefile); do | ||
44 | oe_runmake -C $(dirname $i) -s include ${@bsp_make_vars(d)} | ||
45 | done | ||
46 | for i in $(ls ${BSP_TARGETS_DIR}/*/src/Makefile); do | ||
47 | oe_runmake -C $(dirname $i) -s libs ${@bsp_make_vars(d)} | ||
48 | done | ||
49 | |||
50 | # --build-id=none is required due to linker script not defining a location for it. | ||
51 | # Again, recipe-systoot include is necessary | ||
52 | oe_runmake CC="${CC}" CC_FLAGS="-MMD -MP -Wl,--build-id=none -I${STAGING_DIR_TARGET}/usr/include" | ||
53 | } | ||
54 | |||
55 | do_install() { | ||
56 | : | ||
57 | } | ||
58 | |||
59 | PMU_FIRMWARE_BASE_NAME ?= "${BPN}-${PKGE}-${PKGV}-${PKGR}-${MACHINE}-${DATETIME}" | ||
60 | PMU_FIRMWARE_BASE_NAME[vardepsexclude] = "DATETIME" | ||
61 | |||
62 | do_deploy() { | ||
63 | install -Dm 0644 ${B}/executable.elf ${DEPLOYDIR}/${PMU_FIRMWARE_BASE_NAME}.elf | ||
64 | ln -sf ${PMU_FIRMWARE_BASE_NAME}.elf ${DEPLOYDIR}/${BPN}-${MACHINE}.elf | ||
65 | ${OBJCOPY} -O binary ${B}/executable.elf ${B}/executable.bin | ||
66 | install -m 0644 ${B}/executable.bin ${DEPLOYDIR}/${PMU_FIRMWARE_BASE_NAME}.bin | ||
67 | ln -sf ${PMU_FIRMWARE_BASE_NAME}.bin ${DEPLOYDIR}/${BPN}-${MACHINE}.bin | ||
68 | } | ||
69 | |||
70 | addtask deploy before do_build after do_install | ||
71 | |||