Lines Matching defs:response
1780 * hl_fw_dynamic_extract_fw_response - update the FW response
1784 * @response: FW response
1791 struct fw_response *response,
1794 response->status = FIELD_GET(COMMS_STATUS_STATUS_MASK, status);
1795 response->ram_offset = FIELD_GET(COMMS_STATUS_OFFSET_MASK, status) <<
1797 response->ram_type = FIELD_GET(COMMS_STATUS_RAM_TYPE_MASK, status);
1799 if ((response->ram_type != COMMS_SRAM) &&
1800 (response->ram_type != COMMS_DRAM)) {
1802 response->ram_type);
1853 * skip storing FW response for NOOP to preserve the actual desired
1860 &fw_loader->dynamic_loader.response,
1895 * @wait_ok: if true also wait for OK response from FW
2105 struct fw_response *response,
2111 device_addr = region->region_base + response->ram_offset;
2174 struct fw_response *response;
2182 response = &fw_loader->dynamic_loader.response;
2184 region_id = (response->ram_type == COMMS_SRAM) ?
2189 rc = hl_fw_dynamic_validate_response(hdev, response, region);
2204 response->ram_offset;
2703 * and response to known synchronization points between the LKD and the FW.
2704 * each response to LKD request is known and bound to a predefined timeout.