Hi Hans, > Since I've been doing a lot of work on Linux Bay Trail / Cherry Trail > support, I've gathered a collection of ACPI DSDTs from about 50 such > machines. > > Looking at these DSTDs many have an ACPI device entry describing a bcm > bluetooth device (often disabled in the DSDT), quite a few of these ACPI > device entries have a resource-table where the order does not match with > the order currently associated with the HID of that entry in the > bcm_acpi_match table. > > Looking at the Windows .inf files, there is nothing indicating a specific > order there, so I believe that there is no 1:1 mapping between the ACPI > HID and the order in which the resources are listed. > > Therefor this commit replaces the hardcoded mapping based on ACPI HID, > with code which actually checks in which order the resources are listed > and bases the gpio-mapping on that. > > This should ensure that we always pick the right mapping and this will > make adding new ACPI HIDs to the driver easier. > > Signed-off-by: Hans de Goede <hdegoede@xxxxxxxxxx> > --- > drivers/bluetooth/hci_bcm.c | 82 ++++++++++++++++++++++++++++----------------- > 1 file changed, 51 insertions(+), 31 deletions(-) > > diff --git a/drivers/bluetooth/hci_bcm.c b/drivers/bluetooth/hci_bcm.c > index 5c8ed6198e8c..8a60bbd32e9e 100644 > --- a/drivers/bluetooth/hci_bcm.c > +++ b/drivers/bluetooth/hci_bcm.c > @@ -98,6 +98,8 @@ struct bcm_device { > int (*set_shutdown)(struct bcm_device *, bool); > #ifdef CONFIG_ACPI > acpi_handle btlp, btpu, btpd; > + int gpio_count; > + int gpio_int_idx; > #endif > > struct clk *clk; > @@ -838,8 +840,11 @@ static int bcm_resource(struct acpi_resource *ares, void *data) > > case ACPI_RESOURCE_TYPE_GPIO: > gpio = &ares->data.gpio; > - if (gpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT) > + if (gpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT) { > + dev->gpio_int_idx = dev->gpio_count; > dev->irq_active_low = gpio->polarity == ACPI_ACTIVE_LOW; > + } > + dev->gpio_count++; > break; > > case ACPI_RESOURCE_TYPE_SERIAL_BUS: > @@ -956,20 +961,11 @@ static int bcm_acpi_probe(struct bcm_device *dev) > LIST_HEAD(resources); > const struct dmi_system_id *dmi_id; > const struct acpi_gpio_mapping *gpio_mapping = acpi_bcm_int_last_gpios; > - const struct acpi_device_id *id; > struct resource_entry *entry; > int ret; > > - /* Retrieve GPIO data */ > - id = acpi_match_device(dev->dev->driver->acpi_match_table, dev->dev); > - if (id) > - gpio_mapping = (const struct acpi_gpio_mapping *) id->driver_data; > - > - ret = devm_acpi_dev_add_driver_gpios(dev->dev, gpio_mapping); > - if (ret) > - return ret; > - > /* Retrieve UART ACPI info */ > + dev->gpio_int_idx = -1; > ret = acpi_dev_get_resources(ACPI_COMPANION(dev->dev), > &resources, bcm_resource, dev); > if (ret < 0) > @@ -983,6 +979,30 @@ static int bcm_acpi_probe(struct bcm_device *dev) > } > acpi_dev_free_resource_list(&resources); > > + /* > + * If the DSDT uses an Interrupt resource for the IRQ, then there are > + * only 2 GPIO resources, we use the irq-last mapping for this, since > + * we already have an irq the 3th / last mapping will not be used. > + */ minor nitpick that we use the net multi-line comment style. At least for new comments. > + if (dev->irq) > + gpio_mapping = acpi_bcm_int_last_gpios; > + else if (dev->gpio_int_idx == 0) > + gpio_mapping = acpi_bcm_int_first_gpios; > + else if (dev->gpio_int_idx == 2) > + gpio_mapping = acpi_bcm_int_last_gpios; > + else > + dev_warn(dev->dev, "Unexpected ACPI gpio_int_idx: %d\n", > + dev->gpio_int_idx); > + > + /* Warn if our expectations are not met. */ > + if (dev->gpio_count != (dev->irq ? 2 : 3)) > + dev_warn(dev->dev, "Unexpected number of ACPI GPIOs: %d\n", > + dev->gpio_count); > + > + ret = devm_acpi_dev_add_driver_gpios(dev->dev, gpio_mapping); > + if (ret) > + return ret; > + > dmi_id = dmi_first_match(bcm_active_low_irq_dmi_table); > if (dmi_id) { > dev_warn(dev->dev, "%s: Overwriting IRQ polarity to active low", > @@ -1073,26 +1093,26 @@ static const struct hci_uart_proto bcm_proto = { > > #ifdef CONFIG_ACPI > static const struct acpi_device_id bcm_acpi_match[] = { > - { "BCM2E1A", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E39", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E3A", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E3D", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E3F", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E40", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E54", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E55", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E64", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E65", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E67", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E71", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E72", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E7B", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E7C", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E7E", (kernel_ulong_t)&acpi_bcm_int_first_gpios }, > - { "BCM2E84", (kernel_ulong_t)&acpi_bcm_int_last_gpios }, > - { "BCM2E95", (kernel_ulong_t)&acpi_bcm_int_first_gpios }, > - { "BCM2E96", (kernel_ulong_t)&acpi_bcm_int_first_gpios }, > - { "BCM2EA4", (kernel_ulong_t)&acpi_bcm_int_first_gpios }, > + { "BCM2E1A" }, > + { "BCM2E39" }, > + { "BCM2E3A" }, > + { "BCM2E3D" }, > + { "BCM2E3F" }, > + { "BCM2E40" }, > + { "BCM2E54" }, > + { "BCM2E55" }, > + { "BCM2E64" }, > + { "BCM2E65" }, > + { "BCM2E67" }, > + { "BCM2E71" }, > + { "BCM2E72" }, > + { "BCM2E7B" }, > + { "BCM2E7C" }, > + { "BCM2E7E" }, > + { "BCM2E84" }, > + { "BCM2E95" }, > + { "BCM2E96" }, > + { "BCM2EA4" }, Otherwise I like this a lot since it makes thing easier and potentially adding new IDs via new_id should become simple (if that is actually supported for ACPI). Regards Marcel -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html