Re: PCIE Memory Information

2024-05-05 Thread Muzammil Ashraf
I have already studied this document and tested the overlap of MemoryRegions. There is a structure named PCIHostState and in this struct there is a field named config_reg. I want to understand where it gets changed. On Sun, May 5, 2024 at 6:45 PM Aditya Gupta wrote: > > Hi Ashraf, > > On

Re: PCIE Memory Information

2024-05-05 Thread Aditya Gupta
Hi Ashraf, On 04/05/24 12:45, Muzammil Ashraf wrote: Hi All, I am debugging a PCI subsystem. I saw callbacks registered here to catch the pcie config read/write request at hw/pci/pci_host.c:201. How can I make my subregion to overlap this area and How to receive those pcie config read/write

PCIE Memory Information

2024-05-04 Thread Muzammil Ashraf
Hi All, I am debugging a PCI subsystem. I saw callbacks registered here to catch the pcie config read/write request at hw/pci/pci_host.c:201. How can I make my subregion to overlap this area and How to receive those pcie config read/write requests to my callbacks?