Home
last modified time | relevance | path

Searched refs:real_offset (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/hw/xen/
H A Dxen_pt_config_init.c30 uint32_t real_offset, uint32_t *data);
85 uint32_t real_offset = 0; in xen_pt_find_reg() local
90 real_offset = reg_grp->base_offset + reg->offset; in xen_pt_find_reg()
92 if ((real_offset <= address) in xen_pt_find_reg()
93 && ((real_offset + reg->size) > address)) { in xen_pt_find_reg()
120 XenPTRegInfo *reg, uint32_t real_offset, in xen_pt_common_reg_init() argument
242 XenPTRegInfo *reg, uint32_t real_offset, in xen_pt_vendor_reg_init() argument
249 XenPTRegInfo *reg, uint32_t real_offset, in xen_pt_device_reg_init() argument
256 XenPTRegInfo *reg, uint32_t real_offset, in xen_pt_status_reg_init() argument
291 XenPTRegInfo *reg, uint32_t real_offset, in xen_pt_header_type_reg_init() argument
[all …]
H A Dxen_pt.c191 uint32_t real_offset = reg_grp_entry->base_offset + reg->offset; in xen_pt_pci_read_config() local
195 valid_mask <<= (find_addr - real_offset) << 3; in xen_pt_pci_read_config()
196 ptr_val = (uint8_t *)&val + (real_offset & 3); in xen_pt_pci_read_config()
229 find_addr = real_offset + reg->size; in xen_pt_pci_read_config()
328 uint32_t real_offset = reg_grp_entry->base_offset + reg->offset; in xen_pt_pci_write_config() local
333 valid_mask <<= (find_addr - real_offset) << 3; in xen_pt_pci_write_config()
334 ptr_val = (uint8_t *)&val + (real_offset & 3); in xen_pt_pci_write_config()
339 wb_mask &= ~((wp_mask >> ((find_addr - real_offset) << 3)) in xen_pt_pci_write_config()
348 read_val >> ((real_offset & 3) << 3), in xen_pt_pci_write_config()
355 (read_val >> ((real_offset & 3) << 3)), in xen_pt_pci_write_config()
[all …]
H A Dxen_pt.h64 (XenPCIPassthroughState *, XenPTRegInfo *, uint32_t real_offset,