Re: [PATCH] hw/pci-bridge/pci_expander_bridge: Fix HDM passthrough condition

2025-04-29 Thread Jonathan Cameron via
On Tue, 29 Apr 2025 01:11:01 + "Zhijian Li (Fujitsu)" wrote: > Hi Jonathan, > > > I apologize for the delayed response; I have just returned from vacation. > > > On 16/04/2025 00:47, Jonathan Cameron wrote: > > On Mon, 7 Apr 2025 02:59:20 + > > "Zhijian Li (Fujitsu)" wrote: > > >

Re: [PATCH] hw/pci-bridge/pci_expander_bridge: Fix HDM passthrough condition

2025-04-28 Thread Zhijian Li (Fujitsu)
Hi Jonathan, I apologize for the delayed response; I have just returned from vacation. On 16/04/2025 00:47, Jonathan Cameron wrote: > On Mon, 7 Apr 2025 02:59:20 + > "Zhijian Li (Fujitsu)" wrote: > >> Ping > > Sorry, I wrote half a reply but then lost it before sending > - was still in m

Re: [PATCH] hw/pci-bridge/pci_expander_bridge: Fix HDM passthrough condition

2025-04-15 Thread Jonathan Cameron via
On Mon, 7 Apr 2025 02:59:20 + "Zhijian Li (Fujitsu)" wrote: > Ping Sorry, I wrote half a reply but then lost it before sending - was still in my drafts :( > > Only if (dsp_count==1 && hdm_for_passthrough==true), the QEMU shouldn't > implement > the HDM decodder for the Host-bridge. HDM f

Re: [PATCH] hw/pci-bridge/pci_expander_bridge: Fix HDM passthrough condition

2025-04-06 Thread Zhijian Li (Fujitsu)
Ping Only if (dsp_count==1 && hdm_for_passthrough==true), the QEMU shouldn't implement the HDM decodder for the Host-bridge. But previous code didn't follow this. Thanks Zhijian On 23/03/2025 16:04, Li Zhijian wrote: > Reverse the logical condition for HDM passthrough support in > pci_expander

[PATCH] hw/pci-bridge/pci_expander_bridge: Fix HDM passthrough condition

2025-03-23 Thread Li Zhijian via
Reverse the logical condition for HDM passthrough support in pci_expander_bridge. This patch ensures the HDM passthrough condition is evaluated only when hdm_for_passthrough is set to true, aligning behavior with intended semantics and comments. Signed-off-by: Li Zhijian --- This change corrects