|
@@ -1540,6 +1540,18 @@ static bool acpi_device_enumeration_by_parent(struct acpi_device *device)
|
|
{
|
|
{
|
|
struct list_head resource_list;
|
|
struct list_head resource_list;
|
|
bool is_serial_bus_slave = false;
|
|
bool is_serial_bus_slave = false;
|
|
|
|
+ /*
|
|
|
|
+ * These devices have multiple I2cSerialBus resources and an i2c-client
|
|
|
|
+ * must be instantiated for each, each with its own i2c_device_id.
|
|
|
|
+ * Normally we only instantiate an i2c-client for the first resource,
|
|
|
|
+ * using the ACPI HID as id. These special cases are handled by the
|
|
|
|
+ * drivers/platform/x86/i2c-multi-instantiate.c driver, which knows
|
|
|
|
+ * which i2c_device_id to use for each resource.
|
|
|
|
+ */
|
|
|
|
+ static const struct acpi_device_id i2c_multi_instantiate_ids[] = {
|
|
|
|
+ {"BSG1160", },
|
|
|
|
+ {}
|
|
|
|
+ };
|
|
|
|
|
|
if (acpi_is_indirect_io_slave(device))
|
|
if (acpi_is_indirect_io_slave(device))
|
|
return true;
|
|
return true;
|
|
@@ -1551,6 +1563,10 @@ static bool acpi_device_enumeration_by_parent(struct acpi_device *device)
|
|
fwnode_property_present(&device->fwnode, "baud")))
|
|
fwnode_property_present(&device->fwnode, "baud")))
|
|
return true;
|
|
return true;
|
|
|
|
|
|
|
|
+ /* Instantiate a pdev for the i2c-multi-instantiate drv to bind to */
|
|
|
|
+ if (!acpi_match_device_ids(device, i2c_multi_instantiate_ids))
|
|
|
|
+ return false;
|
|
|
|
+
|
|
INIT_LIST_HEAD(&resource_list);
|
|
INIT_LIST_HEAD(&resource_list);
|
|
acpi_dev_get_resources(device, &resource_list,
|
|
acpi_dev_get_resources(device, &resource_list,
|
|
acpi_check_serial_bus_slave,
|
|
acpi_check_serial_bus_slave,
|