我正在探索设备树。看看imx6l-sabresd.dts
/dts-v1/;
#include "imx6dl.dtsi"
#include "imx6qdl-sabresd.dtsi"
/ {
model = "Freescale i.MX6 DualLite SABRE Smart Device Board";
compatible = "fsl,imx6dl-sabresd", "fsl,imx6dl";
};
有"型号"根节点中的字段。这个字段几乎出现在每个设备树中,但是当我看到谁在阅读这个模型时。只有飞思卡尔CPU机器代码才能访问它。这个字段不是强制性的。
jamal@jamal:~/rpi/rpi-build/tmp/work-shared/raspberrypi3/kernel-source$ grep -nr "of_property_read_string(root,"
arch/arm/mach-imx/cpu.c:91: ret = of_property_read_string(root, "model", &soc_dev_attr->machine);
arch/arm/mach-mxs/mach-mxs.c:469: ret = of_property_read_string(root, "model", &soc_dev_attr->machine);
任何人都可以解释这个领域的重要性。
答案 0 :(得分:0)
搜索Linux源代码,找到了内核使用模型字段的位置。它正在控制台上打印值。
./arch/arm/kernel/devtree.c:236:
model = of_get_flat_dt_prop(dt_root, "model", NULL);
pr_info("Machine: %s, model: %s\n", mdesc_best->name, model);