1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
SUMMARY = "Xilinx BSP device trees"
DESCRIPTION = "Xilinx BSP device trees from within layer."
SECTION = "bsp"
# the device trees from within the layer are licensed as MIT, kernel includes are GPL
LICENSE = "MIT & GPL-2.0-or-later"
LIC_FILES_CHKSUM = " \
file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302 \
file://${COMMON_LICENSE_DIR}/GPL-2.0-or-later;md5=fed54355545ffd980b814dab4a3b312c \
"
inherit devicetree image-artifact-names
# Fall back to SYSTEM_DTFILE if specified...
# CONFIG_DTFILE is intended to hold a specific configuration's (multiconfig)
# device tree, while SYSTEM_DTFILE is used for the full heterogenous
# system.
SYSTEM_DTFILE ??= ""
CONFIG_DTFILE ??= "${SYSTEM_DTFILE}"
EXTRA_DT_FILES ?= ""
EXTRA_DTFILE_PREFIX ?= "system-top"
EXTRA_DTFILES_BUNDLE ?= ""
UBOOT_DT_FILES ?= ""
UBOOT_DTFILE_PREFIX ?= "system-top"
UBOOT_DTFILES_BUNDLE ?= ""
EXTRA_OVERLAYS ?= ""
SYSTEM_DTFILE[doc] = "System Device Tree which accepts at 0...1 dts file"
CONFIG_DTFILE[doc] = "Domain Specific Device Tree which accepts 0...1 dts file"
EXTRA_DT_FILES[doc] = "Add extra files to DT_FILES_PATH, it accepts 1...n dtsi files and adds to SRC_URI"
EXTRA_OVERLAYS[doc] = "Add extra files to DT_FILES_PATH and adds a #include for each to the BASE_DTS, it access 1..n dtsi files and adds to SRC_URI"
# There should only be ONE CONFIG_DTFILE listed
# These need to be passed in from global, not from a bbappend
FILESEXTRAPATHS:prepend := "${@'%s:' % os.path.dirname(d.getVar('CONFIG_DTFILE') or '') if (d.getVar('CONFIG_DTFILE')) else ''}"
SRC_URI:append := " ${@'file://%s' % os.path.basename(d.getVar('CONFIG_DTFILE') or '') if (d.getVar('CONFIG_DTFILE')) else ''}"
SRC_URI:append = " ${@" ".join(["file://%s" % f for f in (d.getVar('EXTRA_DT_FILES') or "").split()])}"
SRC_URI:append = " ${@" ".join(["file://%s" % f for f in (d.getVar('EXTRA_OVERLAYS') or "").split()])}"
COMPATIBLE_MACHINE:zynq = ".*"
COMPATIBLE_MACHINE:zynqmp = ".*"
COMPATIBLE_MACHINE:versal = ".*"
DEPENDS += "python3-dtc-native"
PROVIDES = "virtual/dtb"
# common zynq include
SRC_URI:append:zynq = " file://zynq-7000-qspi-dummy.dtsi"
DTB_FILE_NAME = "${@os.path.basename(d.getVar('CONFIG_DTFILE')).replace('.dts', '.dtb') if d.getVar('CONFIG_DTFILE') else ''}"
DTB_BASE_NAME ?= "${MACHINE}-system${IMAGE_VERSION_SUFFIX}"
do_configure:append () {
for f in ${EXTRA_DT_FILES}; do
cp ${WORKDIR}/${f} ${DT_FILES_PATH}/
done
for f in ${EXTRA_OVERLAYS}; do
cp ${WORKDIR}/${f} ${DT_FILES_PATH}/
echo "/include/ \"$f\"" >> ${DT_FILES_PATH}/${BASE_DTS}.dts
done
}
devicetree_do_compile:append() {
import subprocess
dtb_file = d.getVar('DTB_FILE_NAME') or ''
if not dtb_file or not os.path.isfile(dtb_file):
return
if d.getVar('EXTRA_DTFILES_BUNDLE'):
ccdtb_prefix = d.getVar('EXTRA_DTFILE_PREFIX')
extra_dt_files = d.getVar('EXTRA_DT_FILES').split() or []
for dtsfile in extra_dt_files:
dtname = os.path.splitext(os.path.basename(dtsfile))[0]
if os.path.isfile(f"{dtname}.dtbo"):
fdtargs = ["fdtoverlay", "-o", f"{ccdtb_prefix}-{dtname}.dtb", "-i", dtb_file, f"{dtname}.dtbo"]
bb.note("Running {0}".format(" ".join(fdtargs)))
subprocess.run(fdtargs, check = True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
if d.getVar('UBOOT_DTFILES_BUNDLE'):
uboot_ccdtb_prefix = d.getVar('UBOOT_DTFILE_PREFIX')
uboot_dt_files = d.getVar('UBOOT_DT_FILES').split() or []
for dtsfile in uboot_dt_files:
dtname = os.path.splitext(os.path.basename(dtsfile))[0]
if os.path.isfile(f"{dtname}.dtbo"):
fdtargs = ["fdtoverlay", "-o", f"{uboot_ccdtb_prefix}-{dtname}.dtb", "-i", dtb_file, f"{dtname}.dtbo"]
bb.note("Running {0}".format(" ".join(fdtargs)))
subprocess.run(fdtargs, check = True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
}
FILES:${PN} += "/boot/system.dtb"
devicetree_do_install:append() {
if [ -n "${DTB_FILE_NAME}" ]; then
# If it's already a dtb, we have to copy from the original location
if [ -e "${DT_FILES_PATH}/${DTB_FILE_NAME}" ]; then
install -Dm 0644 ${DT_FILES_PATH}/${DTB_FILE_NAME} ${D}/boot/devicetree/${DTB_FILE_NAME}
fi
if [ -e "${D}/boot/devicetree/${DTB_FILE_NAME}" ]; then
# We need the output to be system.dtb for WIC setup to match XSCT flow
ln -sf devicetree/${DTB_FILE_NAME} ${D}/boot/system.dtb
else
bberror "Expected filename ${DTB_FILE_NAME} doesn't exist in ${DEPLOYDIR}/devicetree"
fi
fi
}
devicetree_do_deploy:append() {
if [ -n "${DTB_FILE_NAME}" ]; then
# If it's already a dtb, we have to copy from the original location
if [ -e "${DT_FILES_PATH}/${DTB_FILE_NAME}" ]; then
install -Dm 0644 ${DT_FILES_PATH}/${DTB_FILE_NAME} ${DEPLOYDIR}/devicetree/${DTB_FILE_NAME}
fi
if [ -e "${DEPLOYDIR}/devicetree/${DTB_FILE_NAME}" ]; then
# We need the output to be system.dtb for WIC setup to match XSCT flow
ln -sf devicetree/${DTB_FILE_NAME} ${DEPLOYDIR}/${DTB_BASE_NAME}.dtb
ln -sf devicetree/${DTB_FILE_NAME} ${DEPLOYDIR}/${MACHINE}-system.dtb
ln -sf devicetree/${DTB_FILE_NAME} ${DEPLOYDIR}/system.dtb
else
bberror "Expected filename ${DTB_FILE_NAME} doesn't exist in ${DEPLOYDIR}/devicetree"
fi
fi
}
def check_devicetree_variables(d):
# Don't cache this, as the items on disk can change!
d.setVar('BB_DONT_CACHE', '1')
if not d.getVar('CONFIG_DTFILE'):
raise bb.parse.SkipRecipe("CONFIG_DTFILE or SYSTEM_DTFILE is not defined.")
python() {
# Need to allow bbappends to change the check
check_devicetree_variables(d)
}
|