On Monday, November 30, 2015 03:45:15 PM Andy Lutomirski wrote: > On Nov 30, 2015 2:40 PM, "Rafael J. Wysocki" <rjw@xxxxxxxxxxxxx> wrote: > > > > On Monday, November 30, 2015 12:15:27 PM Andy Lutomirski wrote: > > > On Sun, Nov 29, 2015 at 9:19 PM, Andy Lutomirski <luto@xxxxxxxxxxxxxx> wrote: > > > > [cut] > > > > > > From inspection of the code, acpi_pnp.c determines that the device is > > > > a pnp device because pnp0c02 is in acpi_pnp_device_ids. This causes > > > > the device to have a concrete handler, so no platform device is > > > > created. However, pnpacpi/core.c rejects it because it has no _CRS > > > > method. As a result, it's in limbo. > > > > > > > > What's the right thing to do here? I could modify acpi_pnp.c to > > > > reject the device, which will let the generic platform fallback claim > > > > it. > > > > pnp0c02 is a special device ID. It is defined by MS as "General ID for > > reserving resources required by PnP motherboard", so having no _CRS for > > that particular device ID doesn't really make sense. > > > > Moreover, we have a PNP driver that (normally) binds to that device ID, > > so a PNP device object should be created for it. > > Given that the pnpacpi driver is going to reject it anyway, it could > make sense to keep it from binding at all (and maybe warn?) so that > the platform fallback code picks it up, though. The point is that we'll create a PNP device for the same device ID on other platforms and that's going to be confusing, isn't it? I guess one option might be to hack the driver in question to accept a device without _CRS and then do what you need to be done for that device. > > > > > > I could modify pnpacpi to accept the device despite the lack of > > > > _CRS, so a pnp device will be created. > > > > I'm not sure if that's going to work, you'd need to try it. > > > > The PNP layer is built around resources management, so the lack of resources > > to manage may uncover some dusty corners in it. > > > > > > I could bind directly as an > > > > ACPI driver (somewhat suboptimal because apparently that's frowned > > > > upon). > > > > The policy here is "avoid that if reasonably possible", but in this particular > > case there should be a PNP device. > > > > > > I could also write *both* an ACPI driver and platform driver > > > > and call acpi_create_platform_device from the ACPI driver, but that > > > > seems a bit ugly. > > > > > > > > Thoughts? > > > > > > If this is firmware bug (the ACPI spec suggests that _CRS may be > > > mandatory for non-natively-enumerable things like this), then there's > > > also a chance that the vendor will fix it. On the other hand, maybe > > > this is already compliant and we should just interpret missing _CRS as > > > an empty set of resources. (By inspection of the ASL, it really does > > > look like this thing has no resources beyond the ACPI methods in it.) > > > > OK, so it this in the context of the WMI bus type you're working on? > > Actually, no. It's another magic pure ACPI device on the same laptop, though. > > My current draft has: > > /* > * Unfortunately, some systems fail to enumerate our device as a > * platform device. Force the issue. > */ > static acpi_status __init > check_acpi_dev(acpi_handle handle, u32 lvl, void *context, void **rv) > { > const struct acpi_device_id *ids = context; > struct acpi_device *dev; > > if (acpi_bus_get_device(handle, &dev) != 0) > return AE_OK; > > if (acpi_match_device_ids(dev, ids) == 0) > if (acpi_create_platform_device(dev)) > dev_info(&dev->dev, > "created platform device\n"); > > return AE_OK; > } > > ... > > acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT, > ACPI_UINT32_MAX, check_acpi_dev, NULL, > (void *)ids, NULL); > > It works, but it's not fantastic. What exactly do you need that platform device for? Thanks, Rafael -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html