Lines Matching refs:firmware
7 This is file system firmware loader for U-Boot framework, which has very close
9 to https://01.org/linuxgraphics/gfx-docs/drm/driver-api/firmware/index.html.
11 File system firmware loader can be used to load whatever(firmware, image,
16 To enable firmware loader, CONFIG_FS_LOADER need to be set at
25 firmware loading from to the firmware loader driver, those data could be
50 Then, firmware-loader property can be added with any device node, which
51 driver would use the firmware loader for loading.
53 The value of the firmware-loader property should be set with phandle
56 firmware-loader = <&fs_loader0>;
59 firmware-loader property can be added under /chosen node instead of
66 firmware-loader = <&fs_loader0>;
70 In each respective driver of devices using firmware loader, the firmware
83 phandle_p = ofnode_get_property(chosen_node, "firmware-loader", &size);
85 debug("firmware-loader property was not found.\n");
117 File system firmware Loader API
126 Load firmware into a previously allocated buffer
131 * const char \*name: name of firmware file
132 * void \*buf: address of buffer to load firmware into
141 The firmware is loaded directly into the buffer pointed to by buf
143 Example of calling request_firmware_into_buf API after creating firmware loader