On Mon, 26 Feb 2024 at 13:35, Philippe Mathieu-Daudé <phi...@linaro.org> wrote: > > On 26/2/24 01:02, Sergey Kambalin wrote: > > +static void raspi4_modify_dtb(const struct arm_boot_info *info, void *fdt) > > +{ > > + uint64_t ram_size; > > + > > + /* Temporarily disable following devices until they are implemented */ > > + const char *nodes_to_remove[] = { > > + "brcm,bcm2711-pcie", > > + "brcm,bcm2711-rng200", > > + "brcm,bcm2711-thermal", > > + "brcm,bcm2711-genet-v5", > > + }; > > + > > + for (int i = 0; i < ARRAY_SIZE(nodes_to_remove); i++) { > > + const char *dev_str = nodes_to_remove[i]; > > + > > + int offset = fdt_node_offset_by_compatible(fdt, -1, dev_str); > > + if (offset >= 0) { > > + if (!fdt_nop_node(fdt, offset)) { > > Peter, I remember a discussion where you wre not keen on altering DTB > for non-Virt machines. > > Since these devices are all implemented at the end of the series, why > not add the devices then the raspi4 board at the end, so this patch is > not even required?
I'm not super-keen on it, but as you say it goes away once all the devices are implemented, so I'm not too worried. Doing it this way around would let us take the first 11 patches in the series into git now (they've all been reviewed), which gives us (I think) a functional raspi4 with some missing devices, which seems useful in the interim until the rest of the series gets reviewed and committed. -- PMM