Lines Matching refs:img_hdr
404 cycx_header_t *img_hdr; in load_cyc2x() local
451 img_hdr = (cycx_header_t*)(((u8*)cfm) + sizeof(cfm_t) - 1); in load_cyc2x()
454 printk(KERN_INFO " reset=%lu\n", img_hdr->reset_size); in load_cyc2x()
455 printk(KERN_INFO " data=%lu\n", img_hdr->data_size); in load_cyc2x()
456 printk(KERN_INFO " code=%lu\n", img_hdr->code_size); in load_cyc2x()
458 reset_image = ((u8 *)img_hdr) + sizeof(cycx_header_t); in load_cyc2x()
459 data_image = reset_image + img_hdr->reset_size; in load_cyc2x()
460 code_image = data_image + img_hdr->data_size; in load_cyc2x()
477 cycx_reset_boot(hw->dpmbase, reset_image, img_hdr->reset_size); in load_cyc2x()
494 if (cycx_data_boot(hw->dpmbase, data_image, img_hdr->data_size)) { in load_cyc2x()
500 if (cycx_code_boot(hw->dpmbase, code_image, img_hdr->code_size)) { in load_cyc2x()