Home | History | Annotate | Download | only in qat

Lines Matching defs:bus_addr

2513 	bus_size_t bus_addr;
2535 bus_addr = auth_chunk->ac_chunk_bus_addr;
2536 bus_addr += simg_offset;
2539 auth_desc->fad_css_hdr_high = bus_addr >> 32;
2540 auth_desc->fad_css_hdr_low = bus_addr;
2545 bus_addr += sizeof(struct css_hdr);
2548 auth_desc->fad_fwsk_pub_high = bus_addr >> 32;
2549 auth_desc->fad_fwsk_pub_low = bus_addr;
2557 bus_addr += CSS_FWSK_PUB_LEN;
2560 auth_desc->fad_signature_high = bus_addr >> 32;
2561 auth_desc->fad_signature_low = bus_addr;
2569 bus_addr += CSS_SIGNATURE_LEN;
2572 auth_desc->fad_img_high = bus_addr >> 32;
2573 auth_desc->fad_img_low = bus_addr;
2582 bus_addr += sizeof(struct simg_ae_mode);
2584 auth_desc->fad_img_ae_init_data_high = bus_addr >> 32;
2585 auth_desc->fad_img_ae_init_data_low = bus_addr;
2587 bus_addr += SIMG_AE_INIT_SEQ_LEN;
2589 auth_desc->fad_img_ae_insts_high = bus_addr >> 32;
2590 auth_desc->fad_img_ae_insts_low = bus_addr;