提交 95f8a082 编写于 作者: R Rafael J. Wysocki

ACPI / driver core: Introduce struct acpi_dev_node and related macros

To avoid adding an ACPI handle pointer to struct device on
architectures that don't use ACPI, or generally when CONFIG_ACPI is
not set, in which cases that pointer is useless, define struct
acpi_dev_node that will contain the handle pointer if CONFIG_ACPI is
set and will be empty otherwise and use it to represent the ACPI
device node field in struct device.

In addition to that define macros for reading and setting the ACPI
handle of a device that don't generate code when CONFIG_ACPI is
unset.  Modify the ACPI subsystem to use those macros instead of
referring to the given device's ACPI handle directly.
Signed-off-by: NRafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: NMika Westerberg <mika.westerberg@linux.intel.com>
Acked-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 f3fd0c8a
...@@ -134,12 +134,12 @@ static int acpi_bind_one(struct device *dev, acpi_handle handle) ...@@ -134,12 +134,12 @@ static int acpi_bind_one(struct device *dev, acpi_handle handle)
char physical_node_name[sizeof(PHYSICAL_NODE_STRING) + 2]; char physical_node_name[sizeof(PHYSICAL_NODE_STRING) + 2];
int retval = -EINVAL; int retval = -EINVAL;
if (dev->acpi_handle) { if (ACPI_HANDLE(dev)) {
if (handle) { if (handle) {
dev_warn(dev, "ACPI handle is already set\n"); dev_warn(dev, "ACPI handle is already set\n");
return -EINVAL; return -EINVAL;
} else { } else {
handle = dev->acpi_handle; handle = ACPI_HANDLE(dev);
} }
} }
if (!handle) if (!handle)
...@@ -181,8 +181,8 @@ static int acpi_bind_one(struct device *dev, acpi_handle handle) ...@@ -181,8 +181,8 @@ static int acpi_bind_one(struct device *dev, acpi_handle handle)
mutex_unlock(&acpi_dev->physical_node_lock); mutex_unlock(&acpi_dev->physical_node_lock);
if (!dev->acpi_handle) if (!ACPI_HANDLE(dev))
dev->acpi_handle = handle; ACPI_HANDLE_SET(dev, acpi_dev->handle);
if (!physical_node->node_id) if (!physical_node->node_id)
strcpy(physical_node_name, PHYSICAL_NODE_STRING); strcpy(physical_node_name, PHYSICAL_NODE_STRING);
...@@ -200,7 +200,7 @@ static int acpi_bind_one(struct device *dev, acpi_handle handle) ...@@ -200,7 +200,7 @@ static int acpi_bind_one(struct device *dev, acpi_handle handle)
return 0; return 0;
err: err:
dev->acpi_handle = NULL; ACPI_HANDLE_SET(dev, NULL);
put_device(dev); put_device(dev);
return retval; return retval;
...@@ -217,10 +217,10 @@ static int acpi_unbind_one(struct device *dev) ...@@ -217,10 +217,10 @@ static int acpi_unbind_one(struct device *dev)
acpi_status status; acpi_status status;
struct list_head *node, *next; struct list_head *node, *next;
if (!dev->acpi_handle) if (!ACPI_HANDLE(dev))
return 0; return 0;
status = acpi_bus_get_device(dev->acpi_handle, &acpi_dev); status = acpi_bus_get_device(ACPI_HANDLE(dev), &acpi_dev);
if (ACPI_FAILURE(status)) if (ACPI_FAILURE(status))
goto err; goto err;
...@@ -246,7 +246,7 @@ static int acpi_unbind_one(struct device *dev) ...@@ -246,7 +246,7 @@ static int acpi_unbind_one(struct device *dev)
sysfs_remove_link(&acpi_dev->dev.kobj, physical_node_name); sysfs_remove_link(&acpi_dev->dev.kobj, physical_node_name);
sysfs_remove_link(&dev->kobj, "firmware_node"); sysfs_remove_link(&dev->kobj, "firmware_node");
dev->acpi_handle = NULL; ACPI_HANDLE_SET(dev, NULL);
/* acpi_bind_one increase refcnt by one */ /* acpi_bind_one increase refcnt by one */
put_device(dev); put_device(dev);
kfree(entry); kfree(entry);
......
...@@ -386,8 +386,8 @@ const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids, ...@@ -386,8 +386,8 @@ const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
{ {
struct acpi_device *adev; struct acpi_device *adev;
if (!ids || !dev->acpi_handle if (!ids || !ACPI_HANDLE(dev)
|| ACPI_FAILURE(acpi_bus_get_device(dev->acpi_handle, &adev))) || ACPI_FAILURE(acpi_bus_get_device(ACPI_HANDLE(dev), &adev)))
return NULL; return NULL;
return __acpi_match_device(adev, ids); return __acpi_match_device(adev, ids);
......
...@@ -410,7 +410,7 @@ acpi_handle acpi_get_child(acpi_handle, u64); ...@@ -410,7 +410,7 @@ acpi_handle acpi_get_child(acpi_handle, u64);
int acpi_is_root_bridge(acpi_handle); int acpi_is_root_bridge(acpi_handle);
acpi_handle acpi_get_pci_rootbridge_handle(unsigned int, unsigned int); acpi_handle acpi_get_pci_rootbridge_handle(unsigned int, unsigned int);
struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle); struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle);
#define DEVICE_ACPI_HANDLE(dev) ((acpi_handle)((dev)->acpi_handle)) #define DEVICE_ACPI_HANDLE(dev) ((acpi_handle)ACPI_HANDLE(dev))
int acpi_enable_wakeup_device_power(struct acpi_device *dev, int state); int acpi_enable_wakeup_device_power(struct acpi_device *dev, int state);
int acpi_disable_wakeup_device_power(struct acpi_device *dev); int acpi_disable_wakeup_device_power(struct acpi_device *dev);
......
...@@ -578,6 +578,12 @@ struct device_dma_parameters { ...@@ -578,6 +578,12 @@ struct device_dma_parameters {
unsigned long segment_boundary_mask; unsigned long segment_boundary_mask;
}; };
struct acpi_dev_node {
#ifdef CONFIG_ACPI
void *handle;
#endif
};
/** /**
* struct device - The basic device structure * struct device - The basic device structure
* @parent: The device's "parent" device, the device to which it is attached. * @parent: The device's "parent" device, the device to which it is attached.
...@@ -618,7 +624,7 @@ struct device_dma_parameters { ...@@ -618,7 +624,7 @@ struct device_dma_parameters {
* @dma_mem: Internal for coherent mem override. * @dma_mem: Internal for coherent mem override.
* @archdata: For arch-specific additions. * @archdata: For arch-specific additions.
* @of_node: Associated device tree node. * @of_node: Associated device tree node.
* @acpi_handle: Associated ACPI device node's namespace handle. * @acpi_node: Associated ACPI device node.
* @devt: For creating the sysfs "dev". * @devt: For creating the sysfs "dev".
* @id: device instance * @id: device instance
* @devres_lock: Spinlock to protect the resource of the device. * @devres_lock: Spinlock to protect the resource of the device.
...@@ -683,7 +689,7 @@ struct device { ...@@ -683,7 +689,7 @@ struct device {
struct dev_archdata archdata; struct dev_archdata archdata;
struct device_node *of_node; /* associated device tree node */ struct device_node *of_node; /* associated device tree node */
void *acpi_handle; /* associated ACPI device node */ struct acpi_dev_node acpi_node; /* associated ACPI device node */
dev_t devt; /* dev_t, creates the sysfs "dev" */ dev_t devt; /* dev_t, creates the sysfs "dev" */
u32 id; /* device instance */ u32 id; /* device instance */
...@@ -704,6 +710,14 @@ static inline struct device *kobj_to_dev(struct kobject *kobj) ...@@ -704,6 +710,14 @@ static inline struct device *kobj_to_dev(struct kobject *kobj)
return container_of(kobj, struct device, kobj); return container_of(kobj, struct device, kobj);
} }
#ifdef CONFIG_ACPI
#define ACPI_HANDLE(dev) ((dev)->acpi_node.handle)
#define ACPI_HANDLE_SET(dev, _handle_) (dev)->acpi_node.handle = (_handle_)
#else
#define ACPI_HANDLE(dev) (NULL)
#define ACPI_HANDLE_SET(dev, _handle_) do { } while (0)
#endif
/* Get the wakeup routines, which depend on struct device */ /* Get the wakeup routines, which depend on struct device */
#include <linux/pm_wakeup.h> #include <linux/pm_wakeup.h>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册