]> git.dujemihanovic.xyz Git - u-boot.git/commit
dtoc: extend dtoc to use struct driver_info when linking nodes
authorWalter Lozano <walter.lozano@collabora.com>
Thu, 25 Jun 2020 04:10:13 +0000 (01:10 -0300)
committerSimon Glass <sjg@chromium.org>
Fri, 10 Jul 2020 04:00:29 +0000 (22:00 -0600)
commit51f1263d8933fcae877b7698c0cb06d3ab495439
treeec59f38d7e8ccd3c12cc910a78f60feab2ba5d1f
parentdf29730410ae2b1a861dcd094c14ea1a12892109
dtoc: extend dtoc to use struct driver_info when linking nodes

In the current implementation, when dtoc parses a dtb to generate a struct
platdata it converts the information related to linked nodes as pointers
to struct platdata of destination nodes. By doing this, it makes
difficult to get pointer to udevices created based on these
information.

This patch extends dtoc to use struct driver_info when populating
information about linked nodes, which makes it easier to later get
the devices created. In this context, reimplement functions like
clk_get_by_index_platdata() which made use of the previous approach.

Signed-off-by: Walter Lozano <walter.lozano@collabora.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
drivers/clk/clk-uclass.c
drivers/misc/irq-uclass.c
drivers/mmc/ftsdc010_mci.c
drivers/mmc/rockchip_dw_mmc.c
drivers/mmc/rockchip_sdhci.c
drivers/ram/rockchip/sdram_rk3399.c
drivers/spi/rk_spi.c
include/clk.h
tools/dtoc/dtb_platdata.py
tools/dtoc/test_dtoc.py