如何将设备树blob添加到Linux x86内核启动?

时间:2016-02-15 21:15:48

标签: linux-kernel x86 embedded-linux bootloader device-tree

我的自定义开发板基于x86,并且在不使用供应商内核驱动程序的情况下,无法轻松控制与其连接的电子组件之一(主要通过SPI)(如果我不这样做,则供应商不会提供帮助) #39; t使用它)。此模块需要从设备树获取的一些配置参数。我相信这个模块主要用于设备树很常见的ARM平台上。

在x86上,通常不需要设备树,因此在Linux内核编译期间默认禁用它。我更改了配置以启用它,但我找不到将设备树BLOB放入启动映像的方法。内核源代码中的x86架构只有one DTS file,但似乎根本没有使用它,所以它没有帮助。

kernel documentation开始,我知道我需要将其放在x86 real-mode kernel headersetup_data字段中,但我不明白如何做到这一点什么时候(在内核构建时?构建引导程序时?)。我应该直接破解arch/x86/boot/header.S文件吗?

现在,我已经用硬编码值替换了模块配置,但使用设备树会更好。

1 个答案:

答案 0 :(得分:1)

在x86上,引导加载程序在调用内核入口点之前将设备树二进制数据(DTB)添加到setup_data结构的链接列表中。可以从存储设备中加载DTB,也可以将其嵌入到引导加载程序映像中。

以下代码显示了它如何在U-Boot中实现。

http://git.denx.de/?p=u-boot.git;a=blob;f=arch/x86/lib/zimage.c

static int setup_device_tree(struct setup_header *hdr, const void *fdt_blob)
{
        int bootproto = get_boot_protocol(hdr);
        struct setup_data *sd;
        int size;

        if (bootproto < 0x0209)
                return -ENOTSUPP;

        if (!fdt_blob)
                return 0;

        size = fdt_totalsize(fdt_blob);
        if (size < 0)
                return -EINVAL;

        size += sizeof(struct setup_data);
        sd = (struct setup_data *)malloc(size);
        if (!sd) {
                printf("Not enough memory for DTB setup data\n");
                return -ENOMEM;
        }

        sd->next = hdr->setup_data;
        sd->type = SETUP_DTB;
        sd->len = fdt_totalsize(fdt_blob);
        memcpy(sd->data, fdt_blob, sd->len);
        hdr->setup_data = (unsigned long)sd;

        return 0;
}