Lines Matching refs:reqs
283 (req->reqs.pio_request.address == 0xcf8)); in is_cfg_addr()
289 ((req->reqs.pio_request.address >= 0xcfc) && in is_cfg_data()
290 (req->reqs.pio_request.address < (0xcfc + 4)))); in is_cfg_data()
319 WARN_ON(req->reqs.pio_request.size != 4); in handle_cf8cfc()
320 if (req->reqs.pio_request.direction == ACRN_IOREQ_DIR_WRITE) in handle_cf8cfc()
321 vm->pci_conf_addr = req->reqs.pio_request.value; in handle_cf8cfc()
323 req->reqs.pio_request.value = vm->pci_conf_addr; in handle_cf8cfc()
327 if (req->reqs.pio_request.direction == in handle_cf8cfc()
329 req->reqs.pio_request.value = 0xffffffff; in handle_cf8cfc()
332 offset = req->reqs.pio_request.address - 0xcfc; in handle_cf8cfc()
336 req->reqs.pci_request.bus = in handle_cf8cfc()
338 req->reqs.pci_request.dev = in handle_cf8cfc()
340 req->reqs.pci_request.func = in handle_cf8cfc()
344 req->reqs.pci_request.reg = pci_reg + offset; in handle_cf8cfc()
362 if (req->reqs.mmio_request.address >= range->start && in acrn_in_range()
363 (req->reqs.mmio_request.address + in acrn_in_range()
364 req->reqs.mmio_request.size - 1) <= range->end) in acrn_in_range()
368 if (req->reqs.pio_request.address >= range->start && in acrn_in_range()
369 (req->reqs.pio_request.address + in acrn_in_range()
370 req->reqs.pio_request.size - 1) <= range->end) in acrn_in_range()