acr_image         658 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/acr_r352.c 	void *acr_image;
acr_image         665 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/acr_r352.c 	acr_image = hs_ucode_load_blob(subdev, sb->boot_falcon, fw);
acr_image         666 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/acr_r352.c 	if (IS_ERR(acr_image))
acr_image         667 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/acr_r352.c 		return PTR_ERR(acr_image);
acr_image         669 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/acr_r352.c 	hsbin_hdr = acr_image;
acr_image         670 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/acr_r352.c 	fw_hdr = acr_image + hsbin_hdr->header_offset;
acr_image         671 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/acr_r352.c 	load_hdr = acr_image + fw_hdr->hdr_offset;
acr_image         672 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/acr_r352.c 	acr_data = acr_image + hsbin_hdr->data_offset;
acr_image         702 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/acr_r352.c 	kfree(acr_image);
acr_image          34 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c hs_ucode_patch_signature(const struct nvkm_falcon *falcon, void *acr_image,
acr_image          37 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c 	struct fw_bin_header *hsbin_hdr = acr_image;
acr_image          38 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c 	struct hsf_fw_header *fw_hdr = acr_image + hsbin_hdr->header_offset;
acr_image          39 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c 	void *hs_data = acr_image + hsbin_hdr->data_offset;
acr_image          53 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c 		patch_loc = *(u32 *)(acr_image + fw_hdr->patch_loc);
acr_image          54 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c 		patch_sig = *(u32 *)(acr_image + fw_hdr->patch_sig);
acr_image          59 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c 		sig = acr_image + fw_hdr->sig_dbg_offset;
acr_image          62 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c 		sig = acr_image + fw_hdr->sig_prod_offset;
acr_image          74 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c 	void *acr_image;
acr_image          77 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c 	acr_image = nvkm_acr_load_firmware(subdev, fw, 0);
acr_image          78 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c 	if (IS_ERR(acr_image))
acr_image          79 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c 		return acr_image;
acr_image          82 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c 	switch (((u32 *)acr_image)[0]) {
acr_image          94 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c 	hs_ucode_patch_signature(falcon, acr_image, new_format);
acr_image          96 drivers/gpu/drm/nouveau/nvkm/subdev/secboot/hs_ucode.c 	return acr_image;