|
[PATCH v5 1/7] hv: change sbuf to a common infrastructure
sbuf is now only used for debug purpose, but later, it will be used as a common interfaces. So, move the sbuf related code out of the debug directory. Signed-off-by: Conghui <conghui.chen@...> Acked-b
sbuf is now only used for debug purpose, but later, it will be used as a common interfaces. So, move the sbuf related code out of the debug directory. Signed-off-by: Conghui <conghui.chen@...> Acked-b
|
By
Conghui Chen
·
|
|
[PATCH 2/2] dm: iothread: fix bug in iothread handler
12 messages
Fix the bug in iothread handler, the event should be read out so that the next epoll_wait not return directly as the fd can still readable. Signed-off-by: Conghui <conghui.chen@...> --- devicemodel/co
Fix the bug in iothread handler, the event should be read out so that the next epoll_wait not return directly as the fd can still readable. Signed-off-by: Conghui <conghui.chen@...> --- devicemodel/co
|
By
Conghui Chen
·
|
|
Canceled: 2022 ACRN Project Technical Community Meeting: @ Monthly 3rd Wednesday 4PM (China-Shanghai), Wednesday 10AM (Europe-Munich), Tuesday 1AM (US-West Coast)
Special Notes: If you have Zoom connection issue by using web browser, please install & launch Zoom application, manually input the meeting ID (320664063) to join the Zoom meeting. Agenda & Archives:
Special Notes: If you have Zoom connection issue by using web browser, please install & launch Zoom application, manually input the meeting ID (320664063) to join the Zoom meeting. Agenda & Archives:
|
By
Zou, Terry
·
|
|
[PATCH v4 5/7] hv: dispatch asyncio request
5 messages
Add dispatch func for asyncio request, if the I/O base is found in asyncio list, queue the fd to the asyncio buffer. 'avail_idx' is updated by hv to show the available index which has request need to
Add dispatch func for asyncio request, if the I/O base is found in asyncio list, queue the fd to the asyncio buffer. 'avail_idx' is updated by hv to show the available index which has request need to
|
By
Conghui Chen
·
|
|
[PATCH] config-tools: Missing tqdm python package in board_inspector.deb
5 messages
From 8a754bc0618e2c05d95805a8729ca872ffe6c902 Mon Sep 17 00:00:00 2001 From: zihengL1 <ziheng.li@...> Date: Fri, 16 Sep 2022 10:47:43 +0800 Subject: [PATCH] config-tools: Missing tqdm python package i
From 8a754bc0618e2c05d95805a8729ca872ffe6c902 Mon Sep 17 00:00:00 2001 From: zihengL1 <ziheng.li@...> Date: Fri, 16 Sep 2022 10:47:43 +0800 Subject: [PATCH] config-tools: Missing tqdm python package i
|
By
Li, Ziheng
·
|
|
[PATCH v3 2/5] ACRN:DM:PCI: Load rom_file and map it into PCI ROMbar
3 messages
PCI ROM is the firmware specific to PCI device and it is provided by the device vendor. The PCI rom resides in 0x30 offset of PCI config space. This can be used to check whether the PCI rom exists. An
PCI ROM is the firmware specific to PCI device and it is provided by the device vendor. The PCI rom resides in 0x30 offset of PCI config space. This can be used to check whether the PCI rom exists. An
|
By
Zhao, Yakui
·
|
|
[PATCH v3 1/5] ACRN:DM:PCI: Add the support of allocating resource for PCI ROM bar
2 messages
Now the device model only supports the 0..5 PCI bar for PCI/PCIE devices. This tries to allocate the PCI_MEM32 resource for PCI ROM bar. V1->V2: Use the PCI_ROMBAR as bar index and PCIBAR_ROM bar type
Now the device model only supports the 0..5 PCI bar for PCI/PCIE devices. This tries to allocate the PCI_MEM32 resource for PCI ROM bar. V1->V2: Use the PCI_ROMBAR as bar index and PCIBAR_ROM bar type
|
By
Zhao, Yakui
·
|
|
[PATCH v3 5/5] ACRN:HV:VPCI: Forward access of PCI ROM bar_reg to DM for passthru device
The access to PCI config_space is handled in HV for Passthrough pci devices. And it also provides one mechanism to forward cfg_access of some registers to DM. For example: the opregion reg for GPU dev
The access to PCI config_space is handled in HV for Passthrough pci devices. And it also provides one mechanism to forward cfg_access of some registers to DM. For example: the opregion reg for GPU dev
|
By
Zhao, Yakui
·
|
|
[PATCH v3 4/5] ACRN:DM:PT: Add romfile option for rombar on GPU passthrough device
Add the option of "romfile=file_location" to specify the rom file for rombar Signed-off-by: Zhao Yakui <yakui.zhao@...> Acked-by: Wang Yu <yu1.wang@...> --- devicemodel/hw/pci/passthrough.c | 6 ++++++
Add the option of "romfile=file_location" to specify the rom file for rombar Signed-off-by: Zhao Yakui <yakui.zhao@...> Acked-by: Wang Yu <yu1.wang@...> --- devicemodel/hw/pci/passthrough.c | 6 ++++++
|
By
Zhao, Yakui
·
|
|
[PATCH v3 3/5] ACRN:DM:PCI: Add the emulation of PCI rom bar register for passthru device
The pci_reg 0x30 of PCI config_space is used to check whether the PCI rom bar is supported. When the PCI rom is supported for the device in guest vm, the 0x30 pci_reg is emulated and it can return the
The pci_reg 0x30 of PCI config_space is used to check whether the PCI rom bar is supported. When the PCI rom is supported for the device in guest vm, the 0x30 pci_reg is emulated and it can return the
|
By
Zhao, Yakui
·
|
|
[PATCH v3 0/5] ACRN: Add the support of PCI rom bar for PCI passthru device
PCI ROM is the firmware specific to PCI device and it is provided by the device vendor. The PCI rom resides in 0x30 offset of PCI config space. This can be used to check whether the PCI rom exists. An
PCI ROM is the firmware specific to PCI device and it is provided by the device vendor. The PCI rom resides in 0x30 offset of PCI config space. This can be used to check whether the PCI rom exists. An
|
By
Zhao, Yakui
·
|
|
[PATCH v4 4/7] hv: add hypercall to register asyncio
6 messages
Add hypercall to add/remove asyncio request info. Hv will record the info in a list, and when a new ioreq is come, hv will check if it is in the asyncio list, if yes, queue the fd to asyncio buffer. S
Add hypercall to add/remove asyncio request info. Hv will record the info in a list, and when a new ioreq is come, hv will check if it is in the asyncio list, if yes, queue the fd to asyncio buffer. S
|
By
Conghui Chen
·
|
|
[PATCH 1/2] dm: virtio-blk: fix parameter err
6 messages
Fix the truncate issue for virtio block parameter. Signed-off-by: Conghui <conghui.chen@...> --- devicemodel/hw/pci/virtio/virtio_block.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --gi
Fix the truncate issue for virtio block parameter. Signed-off-by: Conghui <conghui.chen@...> --- devicemodel/hw/pci/virtio/virtio_block.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --gi
|
By
Conghui Chen
·
|
|
[PATCH v2 2/5] ACRN:DM:PCI: Load rom_file and map it into PCI ROMbar
10 messages
PCI ROM is the firmware specific to PCI device and it is provided by the device vendor. The PCI rom resides in 0x30 offset of PCI config space. This can be used to check whether the PCI rom exists. An
PCI ROM is the firmware specific to PCI device and it is provided by the device vendor. The PCI rom resides in 0x30 offset of PCI config space. This can be used to check whether the PCI rom exists. An
|
By
Zhao, Yakui
·
|
|
[PATCH v2 5/5] ACRN:HV:VPCI: Forward access of PCI ROM bar_reg to DM for passthru device
2 messages
The access to PCI config_space is handled in HV for Passthrough pci devices. And it also provides one mechanism to forward cfg_access of some registers to DM. For example: the opregion reg for GPU dev
The access to PCI config_space is handled in HV for Passthrough pci devices. And it also provides one mechanism to forward cfg_access of some registers to DM. For example: the opregion reg for GPU dev
|
By
Zhao, Yakui
·
|
|
[PATCH v2 4/5] ACRN:DM:PT: Add romfile option for rombar on GPU passthrough device
2 messages
Add the option of "romfile=file_location" to specify the rom file for rombar Signed-off-by: Zhao Yakui <yakui.zhao@...> --- devicemodel/hw/pci/passthrough.c | 6 ++++++ 1 file changed, 6 insertions(+)
Add the option of "romfile=file_location" to specify the rom file for rombar Signed-off-by: Zhao Yakui <yakui.zhao@...> --- devicemodel/hw/pci/passthrough.c | 6 ++++++ 1 file changed, 6 insertions(+)
|
By
Zhao, Yakui
·
|
|
[PATCH v2 3/5] ACRN:DM:PCI: Add the emulation of PCI rom bar register for passthru device
2 messages
The pci_reg 0x30 of PCI config_space is used to check whether the PCI rom bar is supported. When the PCI rom is supported for the device in guest vm, the 0x30 pci_reg is emulated and it can return the
The pci_reg 0x30 of PCI config_space is used to check whether the PCI rom bar is supported. When the PCI rom is supported for the device in guest vm, the 0x30 pci_reg is emulated and it can return the
|
By
Zhao, Yakui
·
|
|
[PATCH v2 1/5] ACRN:DM:PCI: Add the support of allocating resource for PCI ROM bar
2 messages
Now the device model only supports the 0..5 PCI bar for PCI/PCIE devices. This tries to allocate the PCI_MEM32 resource for PCI ROM bar. V1->V2: Use the PCI_ROMBAR as bar index and PCIBAR_ROM bar type
Now the device model only supports the 0..5 PCI bar for PCI/PCIE devices. This tries to allocate the PCI_MEM32 resource for PCI ROM bar. V1->V2: Use the PCI_ROMBAR as bar index and PCIBAR_ROM bar type
|
By
Zhao, Yakui
·
|
|
[PATCH v2 0/5] ACRN: Add the support of PCI rom bar for PCI passthru device
PCI ROM is the firmware specific to PCI device and it is provided by the device vendor. The PCI rom resides in 0x30 offset of PCI config space. This can be used to check whether the PCI rom exists. An
PCI ROM is the firmware specific to PCI device and it is provided by the device vendor. The PCI rom resides in 0x30 offset of PCI config space. This can be used to check whether the PCI rom exists. An
|
By
Zhao, Yakui
·
|
|
[PATCH] config-tools:config_summary.rst can't display the number of vCPUs correctly
2 messages
From b81449255c387f6de37dd3c53c8552576ba5210e Mon Sep 17 00:00:00 2001 From: zihengL1 <ziheng.li@...> Date: Fri, 16 Sep 2022 10:58:04 +0800 Subject: [PATCH] config-tools:config_summary.rst can't displ
From b81449255c387f6de37dd3c53c8552576ba5210e Mon Sep 17 00:00:00 2001 From: zihengL1 <ziheng.li@...> Date: Fri, 16 Sep 2022 10:58:04 +0800 Subject: [PATCH] config-tools:config_summary.rst can't displ
|
By
Li, Ziheng
·
|