mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
ACPI: Change ACPI to use dev_archdata instead of firmware_data
Change ACPI to use dev_archdata instead of firmware_data This patch changes ACPI to use the new dev_archdata on i386, x86_64 and ia64 (is there any other arch using ACPI ?) to store it's acpi_handle. It also removes the firmware_data field from struct device as this was the only user. Only build-tested on x86 Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Len Brown <lenb@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
c6dbaef22a
commit
465ae641e4
@ -267,9 +267,9 @@ static int acpi_bind_one(struct device *dev, acpi_handle handle)
|
|||||||
{
|
{
|
||||||
acpi_status status;
|
acpi_status status;
|
||||||
|
|
||||||
if (dev->firmware_data) {
|
if (dev->archdata.acpi_handle) {
|
||||||
printk(KERN_WARNING PREFIX
|
printk(KERN_WARNING PREFIX
|
||||||
"Drivers changed 'firmware_data' for %s\n", dev->bus_id);
|
"Drivers changed 'acpi_handle' for %s\n", dev->bus_id);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
get_device(dev);
|
get_device(dev);
|
||||||
@ -278,25 +278,26 @@ static int acpi_bind_one(struct device *dev, acpi_handle handle)
|
|||||||
put_device(dev);
|
put_device(dev);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
dev->firmware_data = handle;
|
dev->archdata.acpi_handle = handle;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int acpi_unbind_one(struct device *dev)
|
static int acpi_unbind_one(struct device *dev)
|
||||||
{
|
{
|
||||||
if (!dev->firmware_data)
|
if (!dev->archdata.acpi_handle)
|
||||||
return 0;
|
return 0;
|
||||||
if (dev == acpi_get_physical_device(dev->firmware_data)) {
|
if (dev == acpi_get_physical_device(dev->archdata.acpi_handle)) {
|
||||||
/* acpi_get_physical_device increase refcnt by one */
|
/* acpi_get_physical_device increase refcnt by one */
|
||||||
put_device(dev);
|
put_device(dev);
|
||||||
acpi_detach_data(dev->firmware_data, acpi_glue_data_handler);
|
acpi_detach_data(dev->archdata.acpi_handle,
|
||||||
dev->firmware_data = NULL;
|
acpi_glue_data_handler);
|
||||||
|
dev->archdata.acpi_handle = NULL;
|
||||||
/* acpi_bind_one increase refcnt by one */
|
/* acpi_bind_one increase refcnt by one */
|
||||||
put_device(dev);
|
put_device(dev);
|
||||||
} else {
|
} else {
|
||||||
printk(KERN_ERR PREFIX
|
printk(KERN_ERR PREFIX
|
||||||
"Oops, 'firmware_data' corrupt for %s\n", dev->bus_id);
|
"Oops, 'acpi_handle' corrupt for %s\n", dev->bus_id);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -328,7 +329,8 @@ static int acpi_platform_notify(struct device *dev)
|
|||||||
if (!ret) {
|
if (!ret) {
|
||||||
struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
|
struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
|
||||||
|
|
||||||
acpi_get_name(dev->firmware_data, ACPI_FULL_PATHNAME, &buffer);
|
acpi_get_name(dev->archdata.acpi_handle,
|
||||||
|
ACPI_FULL_PATHNAME, &buffer);
|
||||||
DBG("Device %s -> %s\n", dev->bus_id, (char *)buffer.pointer);
|
DBG("Device %s -> %s\n", dev->bus_id, (char *)buffer.pointer);
|
||||||
kfree(buffer.pointer);
|
kfree(buffer.pointer);
|
||||||
} else
|
} else
|
||||||
|
@ -357,7 +357,7 @@ struct device *acpi_get_physical_device(acpi_handle);
|
|||||||
/* helper */
|
/* helper */
|
||||||
acpi_handle acpi_get_child(acpi_handle, acpi_integer);
|
acpi_handle acpi_get_child(acpi_handle, acpi_integer);
|
||||||
acpi_handle acpi_get_pci_rootbridge_handle(unsigned int, unsigned int);
|
acpi_handle acpi_get_pci_rootbridge_handle(unsigned int, unsigned int);
|
||||||
#define DEVICE_ACPI_HANDLE(dev) ((acpi_handle)((dev)->firmware_data))
|
#define DEVICE_ACPI_HANDLE(dev) ((acpi_handle)((dev)->archdata.acpi_handle))
|
||||||
|
|
||||||
#endif /* CONFIG_ACPI */
|
#endif /* CONFIG_ACPI */
|
||||||
|
|
||||||
|
@ -3,5 +3,13 @@
|
|||||||
*
|
*
|
||||||
* This file is released under the GPLv2
|
* This file is released under the GPLv2
|
||||||
*/
|
*/
|
||||||
#include <asm-generic/device.h>
|
#ifndef _ASM_I386_DEVICE_H
|
||||||
|
#define _ASM_I386_DEVICE_H
|
||||||
|
|
||||||
|
struct dev_archdata {
|
||||||
|
#ifdef CONFIG_ACPI
|
||||||
|
void *acpi_handle;
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif /* _ASM_I386_DEVICE_H */
|
||||||
|
@ -3,5 +3,13 @@
|
|||||||
*
|
*
|
||||||
* This file is released under the GPLv2
|
* This file is released under the GPLv2
|
||||||
*/
|
*/
|
||||||
#include <asm-generic/device.h>
|
#ifndef _ASM_IA64_DEVICE_H
|
||||||
|
#define _ASM_IA64_DEVICE_H
|
||||||
|
|
||||||
|
struct dev_archdata {
|
||||||
|
#ifdef CONFIG_ACPI
|
||||||
|
void *acpi_handle;
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif /* _ASM_IA64_DEVICE_H */
|
||||||
|
@ -3,5 +3,13 @@
|
|||||||
*
|
*
|
||||||
* This file is released under the GPLv2
|
* This file is released under the GPLv2
|
||||||
*/
|
*/
|
||||||
#include <asm-generic/device.h>
|
#ifndef _ASM_X86_64_DEVICE_H
|
||||||
|
#define _ASM_X86_64_DEVICE_H
|
||||||
|
|
||||||
|
struct dev_archdata {
|
||||||
|
#ifdef CONFIG_ACPI
|
||||||
|
void *acpi_handle;
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif /* _ASM_X86_64_DEVICE_H */
|
||||||
|
@ -369,8 +369,6 @@ struct device {
|
|||||||
void *driver_data; /* data private to the driver */
|
void *driver_data; /* data private to the driver */
|
||||||
void *platform_data; /* Platform specific data, device
|
void *platform_data; /* Platform specific data, device
|
||||||
core doesn't touch it */
|
core doesn't touch it */
|
||||||
void *firmware_data; /* Firmware specific data (e.g. ACPI,
|
|
||||||
BIOS data),reserved for device core*/
|
|
||||||
struct dev_pm_info power;
|
struct dev_pm_info power;
|
||||||
|
|
||||||
u64 *dma_mask; /* dma mask (if dma'able device) */
|
u64 *dma_mask; /* dma mask (if dma'able device) */
|
||||||
|
Loading…
Reference in New Issue
Block a user