uc_css_header
const struct uc_css_header *css = data;
if (unlikely(size < sizeof(struct uc_css_header)))
sizeof(struct uc_css_header) + uc_fw->ucode_size);
u32 offset = uc_fw->dma_start_offset + sizeof(struct uc_css_header) + uc_fw->ucode_size;
static void guc_read_css_info(struct intel_uc_fw *uc_fw, struct uc_css_header *css)
struct uc_css_header *css;
if (unlikely(fw_size < sizeof(struct uc_css_header))) {
fw_size, sizeof(struct uc_css_header));
css = (struct uc_css_header *)fw_data;
if (unlikely(size != sizeof(struct uc_css_header))) {
fw_size, sizeof(struct uc_css_header));
size = sizeof(struct uc_css_header) + uc_fw->ucode_size + uc_fw->rsa_size;
return sizeof(struct uc_css_header) + uc_fw->ucode_size;
static_assert(sizeof(struct uc_css_header) == 128);