Re: [PATCH v4 07/10] of: of_firmware: add support for fpga bridges

2021-06-21 Thread Sascha Hauer
On Fri, Jun 18, 2021 at 10:32:58AM +0200, Steffen Trumtrar wrote: > > Steffen Trumtrar writes: > > diff --git a/include/of.h b/include/of.h > > index 645f429bdeed..3c922bdb1414 100644 > > --- a/include/of.h > > +++ b/include/of.h > > +int of_firmware_load_overlay(struct device_node *overlay,

Re: [PATCH v4 07/10] of: of_firmware: add support for fpga bridges

2021-06-18 Thread Steffen Trumtrar
Steffen Trumtrar writes: > diff --git a/include/of.h b/include/of.h > index 645f429bdeed..3c922bdb1414 100644 > --- a/include/of.h > +++ b/include/of.h > +int of_firmware_load_overlay(struct device_node *overlay, const char *path); > +#else > +static inline int of_firmware_load_overlay(const

[PATCH v4 07/10] of: of_firmware: add support for fpga bridges

2021-06-16 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 ---