ACPI / driver core: Store an ACPI device pointer in struct acpi_dev_node
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Mon, 11 Nov 2013 21:41:56 +0000 (22:41 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 14 Nov 2013 22:14:43 +0000 (23:14 +0100)
commit7b1998116bbb2f3e5dd6cb9a8ee6db479b0b50a9
tree7c84d3fe84a28e8e4368570c72e5c13ffef21f1a
parent2f466d33f5f60542d3d82c0477de5863b22c94b9
ACPI / driver core: Store an ACPI device pointer in struct acpi_dev_node

Modify struct acpi_dev_node to contain a pointer to struct acpi_device
associated with the given device object (that is, its ACPI companion
device) instead of an ACPI handle corresponding to it.  Introduce two
new macros for manipulating that pointer in a CONFIG_ACPI-safe way,
ACPI_COMPANION() and ACPI_COMPANION_SET(), and rework the
ACPI_HANDLE() macro to take the above changes into account.
Drop the ACPI_HANDLE_SET() macro entirely and rework its users to
use ACPI_COMPANION_SET() instead.  For some of them who used to
pass the result of acpi_get_child() directly to ACPI_HANDLE_SET()
introduce a helper routine acpi_preset_companion() doing an
equivalent thing.

The main motivation for doing this is that there are things
represented by struct acpi_device objects that don't have valid
ACPI handles (so called fixed ACPI hardware features, such as
power and sleep buttons) and we would like to create platform
device objects for them and "glue" them to their ACPI companions
in the usual way (which currently is impossible due to the
lack of valid ACPI handles).  However, there are more reasons
why it may be useful.

First, struct acpi_device pointers allow of much better type checking
than void pointers which are ACPI handles, so it should be more
difficult to write buggy code using modified struct acpi_dev_node
and the new macros.  Second, the change should help to reduce (over
time) the number of places in which the result of ACPI_HANDLE() is
passed to acpi_bus_get_device() in order to obtain a pointer to the
struct acpi_device associated with the given "physical" device,
because now that pointer is returned by ACPI_COMPANION() directly.
Finally, the change should make it easier to write generic code that
will build both for CONFIG_ACPI set and unset without adding explicit
compiler directives to it.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Tested-by: Mika Westerberg <mika.westerberg@linux.intel.com> # on Haswell
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Reviewed-by: Aaron Lu <aaron.lu@intel.com> # for ATA and SDIO part
22 files changed:
arch/ia64/hp/common/sba_iommu.c
arch/ia64/include/asm/pci.h
arch/ia64/pci/pci.c
arch/ia64/sn/kernel/io_acpi_init.c
arch/x86/include/asm/pci.h
arch/x86/pci/acpi.c
drivers/acpi/acpi_platform.c
drivers/acpi/device_pm.c
drivers/acpi/glue.c
drivers/ata/libata-acpi.c
drivers/base/platform.c
drivers/gpio/gpiolib.c
drivers/gpu/drm/radeon/radeon_atpx_handler.c
drivers/hid/i2c-hid/i2c-hid.c
drivers/i2c/i2c-core.c
drivers/ide/ide-acpi.c
drivers/mmc/core/sdio_bus.c
drivers/pci/hotplug/sgi_hotplug.c
drivers/spi/spi.c
include/acpi/acpi_bus.h
include/linux/acpi.h
include/linux/device.h