Lines Matching defs:fw
158 const struct firmware *fw)
169 h = (struct gvt_firmware_header *)fw->data;
172 mem = fw->data + crc32_start;
182 VERIFY("crc32", h->crc32, crc32_le(0, mem, fw->size - crc32_start));
186 mem = (fw->data + h->cfg_space_offset);
220 const struct firmware *fw;
252 ret = request_firmware(&fw, path, &dev_priv->drm.pdev->dev);
260 ret = verify_firmware(gvt, fw);
266 h = (struct gvt_firmware_header *)fw->data;
268 memcpy(firmware->cfg_space, fw->data + h->cfg_space_offset,
270 memcpy(firmware->mmio, fw->data + h->mmio_offset,
273 release_firmware(fw);
278 release_firmware(fw);