Home
last modified time | relevance | path

Searched refs:auth_desc (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/dev/qat/qat_common/
H A Dqat_uclo.c1615 struct icp_qat_fw_auth_desc *auth_desc; in qat_uclo_map_auth_fw() local
1639 auth_desc = img_desc->dram_base_addr_v; in qat_uclo_map_auth_fw()
1640 auth_desc->css_hdr_high = (unsigned int)(bus_addr >> BITS_IN_DWORD); in qat_uclo_map_auth_fw()
1641 auth_desc->css_hdr_low = (unsigned int)bus_addr; in qat_uclo_map_auth_fw()
1646 bus_addr = ADD_ADDR(auth_desc->css_hdr_high, auth_desc->css_hdr_low) + in qat_uclo_map_auth_fw()
1650 auth_desc->fwsk_pub_high = (unsigned int)(bus_addr >> BITS_IN_DWORD); in qat_uclo_map_auth_fw()
1651 auth_desc->fwsk_pub_low = (unsigned int)bus_addr; in qat_uclo_map_auth_fw()
1670 bus_addr = ADD_ADDR(auth_desc->fwsk_pub_high, auth_desc->fwsk_pub_low) + in qat_uclo_map_auth_fw()
1673 auth_desc->signature_high = (unsigned int)(bus_addr >> BITS_IN_DWORD); in qat_uclo_map_auth_fw()
1674 auth_desc->signature_low = (unsigned int)bus_addr; in qat_uclo_map_auth_fw()
[all …]
/freebsd/sys/dev/qat_c2xxx/
H A Dqat_ae.c2443 struct fw_auth_desc *auth_desc; in qat_aefw_alloc_auth_dmamem() local
2470 auth_desc = &auth_chunk->ac_fw_auth_desc; in qat_aefw_alloc_auth_dmamem()
2471 auth_desc->fad_css_hdr_high = (uint64_t)bus_addr >> 32; in qat_aefw_alloc_auth_dmamem()
2472 auth_desc->fad_css_hdr_low = bus_addr; in qat_aefw_alloc_auth_dmamem()
2480 auth_desc->fad_fwsk_pub_high = (uint64_t)bus_addr >> 32; in qat_aefw_alloc_auth_dmamem()
2481 auth_desc->fad_fwsk_pub_low = bus_addr; in qat_aefw_alloc_auth_dmamem()
2492 auth_desc->fad_signature_high = (uint64_t)bus_addr >> 32; in qat_aefw_alloc_auth_dmamem()
2493 auth_desc->fad_signature_low = bus_addr; in qat_aefw_alloc_auth_dmamem()
2501 auth_desc->fad_img_high = (uint64_t)bus_addr >> 32; in qat_aefw_alloc_auth_dmamem()
2502 auth_desc->fad_img_low = bus_addr; in qat_aefw_alloc_auth_dmamem()
[all …]