Re: [PATCH v2 09/12] of: of_firmware: add support for fpga bridges

2021-01-28 Thread Sascha Hauer
On Wed, Jan 27, 2021 at 02:44:20PM +0100, Steffen Trumtrar wrote: > +static int of_load_firmware(struct device_node *target, const char *path) > +{ > + struct list_head bridge_list; > + struct firmware_mgr *mgr; > + int err; > + > + mgr = of_node_get_mgr(target); > + if (!mgr)

[PATCH v2 09/12] of: of_firmware: add support for fpga bridges

2021-01-27 Thread Steffen Trumtrar
Add support for potentially defined FPGA-bridges in the overlay. While at it also add support for loading the firmware directly via a path instead of 'needing' an overlay for that. The direct loading will be done with the existent firmwareload command. Signed-off-by: Steffen Trumtrar ---