今天邀請到賽靈思專家和大家分享下如何在Petalinux下定位decice-tree錯誤的一些技巧。
首先我們來了解下 Petalinux 工程中 device-tree 的文件位置:
工具自動生成的device-tree文件位于
components/plnx_workspace/device-tree/device-tree,
該文件夾下的文件請勿自行修改,供用戶編輯的 device-tree 文件位于
project-spec/meta-user/recipes-bsp/device-tree/files
對于大部分錯誤,通過 petalinux 工具的 error log 已經(jīng)足夠定位錯誤類型和位置。比如下面,
ERROR: device-tree-xilinx-v2020.1+gitAUTOINC+f725aaecff-r0do_compile: Error executing a python function inexec_python_func() autogenerated:
The stack trace of python calls that resulted in this exception/failure was
……
Subprocess output:
/tmp/xilinx-zcu102-2020.2-2021.02.08-01.47.20-87H/work/zynqmp_generic-xilinx-linux/device-tree/xilinx-v2020.1+gitAUTOINC+f725aaecff-r0/system-user.dtsi ERROR (duplicate_label): /ethernet@ff0b0000: Duplicate label 'gem0' on /ethernet@ff0b0000 and /amba/ethernet@ff0b0000
ERROR: Input tree has errors, aborting (use -f to force output)
ERROR: Logfile of failure stored in: /tmp/xilinx-zcu102-2020.2-2021.02.08-01.47.20-87H/work/zynqmp_generic-xilinx-linux/device-tree/xilinx-v2020.1+gitAUTOINC+f725aaecff-r0/temp/log.do_compile.62492
ERROR: Task (/group/bcapps/chaoz/plnx_zcu102_bsp_2020p2/xilinx-zcu102-2020.2/components/yocto/layers/meta-xilinx/meta-xilinx-bsp/recipes-bsp/device-tree/device-tree.bb:do_compile) failed with exit code '1'
NOTE: Tasks Summary: Attempted 3410 tasks of which 3402 didn't need to be rerun and 1 failed.
……
ERROR: Failed to build project
實際的 log 會非常冗長,我們在其中仔細找 dtc 的報錯,其中提示 “Duplicate label 'gem0' on /ethernet@ff0b0000 and /amba/ethernet@ff0b0000“,說明 ‘gem0’ 的 label 在多個地方重復定義了。而且報錯也提示了錯誤的位置為“…/system-user.dtsi:3.31-15.9”,我們根據(jù)錯誤提示去刪除重復的 gem0定義即可。
有時候通過 petalinux 的 log 無法定位到具體錯誤位置,這時候我們可以通過在 Petalinux 之外手動編譯 device tree文件的方式來獲得更具體的錯誤信息。手動編譯需要用到dtc (Devicetree Compiler), 如果你的機器上還沒有 dtc 的話可以從 linux-xlnx/scripts/dtc 位置找到源碼并執(zhí)行 make 來編譯生成 dtc 工具。
如前所述 Petalinux 下的 device tree 分布在兩個位置,我們先把所有 dts/dtsi 文件都拷貝到單獨工作目錄中方便后續(xù)手動編譯。
設備樹的頂層為 system-top.dts, 并引用了很多其它 dtsi 文件,類似 C 語言中的 include 機制??梢韵壤?gcc 來進行預處理,將分立的 dts/dtsi 文件匯總到一個文件中,
gcc-I
再用 dtc 來編譯設備樹文件。
dtc-Idts-Odtb-oout.dtb
接下來根據(jù) dtc 的報錯信息,就可以容易地定位到錯誤類型和位置。
原文標題:開發(fā)者分享 | 如何在 Petalinux 下定位 decice-tree 錯誤
文章出處:【微信公眾號:FPGA之家】歡迎添加關注!文章轉載請注明出處。
-
設備
+關注
關注
2文章
4472瀏覽量
70537 -
源碼
+關注
關注
8文章
633瀏覽量
29138 -
編譯
+關注
關注
0文章
653瀏覽量
32806
發(fā)布評論請先 登錄
相關推薦
評論