mei: gsc_proxy: match component when GSC is on different bus

On Arrow Lake S systems, MEI is no longer strictly connected to bus 0,
while graphics remain exclusively on bus 0. Adapt the component
matching logic to accommodate this change:

Original behavior: Required both MEI and graphics to be on the same
bus 0.

New behavior: Only enforces graphics to be on bus 0 (integrated),
allowing MEI to reside on any bus.
This ensures compatibility with Arrow Lake S and maintains functionality
for the legacy systems.

Fixes: 1dd924f6885b ("mei: gsc_proxy: add gsc proxy driver")
Cc: stable@vger.kernel.org # v6.3+
Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Link: https://lore.kernel.org/r/20240220200020.231192-1-tomas.winkler@intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by Alexander Usyskin and committed by Greg Kroah-Hartman a0776c21 a283d7f1

+5 -3
+5 -3
drivers/misc/mei/gsc_proxy/mei_gsc_proxy.c
··· 96 96 * 97 97 * The function checks if the device is pci device and 98 98 * Intel VGA adapter, the subcomponent is SW Proxy 99 - * and the parent of MEI PCI and the parent of VGA are the same PCH device. 99 + * and the VGA is on the bus 0 reserved for built-in devices 100 + * to reject discrete GFX. 100 101 * 101 102 * @dev: master device 102 103 * @subcomponent: subcomponent to match (I915_COMPONENT_SWPROXY) ··· 124 123 if (subcomponent != I915_COMPONENT_GSC_PROXY) 125 124 return 0; 126 125 127 - return component_compare_dev(dev->parent, ((struct device *)data)->parent); 126 + /* Only built-in GFX */ 127 + return (pdev->bus->number == 0); 128 128 } 129 129 130 130 static int mei_gsc_proxy_probe(struct mei_cl_device *cldev, ··· 148 146 } 149 147 150 148 component_match_add_typed(&cldev->dev, &master_match, 151 - mei_gsc_proxy_component_match, cldev->dev.parent); 149 + mei_gsc_proxy_component_match, NULL); 152 150 if (IS_ERR_OR_NULL(master_match)) { 153 151 ret = -ENOMEM; 154 152 goto err_exit;