2011-01-20 05:27:14 +08:00
|
|
|
#ifndef _ACPI_IO_H_
|
|
|
|
#define _ACPI_IO_H_
|
|
|
|
|
|
|
|
#include <linux/io.h>
|
|
|
|
|
2015-03-24 22:02:38 +08:00
|
|
|
#include <asm/acpi.h>
|
|
|
|
|
|
|
|
#ifndef acpi_os_ioremap
|
2011-01-20 05:27:14 +08:00
|
|
|
static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys,
|
|
|
|
acpi_size size)
|
|
|
|
{
|
|
|
|
return ioremap_cache(phys, size);
|
|
|
|
}
|
2015-03-24 22:02:38 +08:00
|
|
|
#endif
|
2011-01-20 05:27:14 +08:00
|
|
|
|
2014-05-20 15:39:41 +08:00
|
|
|
void __iomem *__init_refok
|
|
|
|
acpi_os_map_iomem(acpi_physical_address phys, acpi_size size);
|
|
|
|
void __ref acpi_os_unmap_iomem(void __iomem *virt, acpi_size size);
|
2011-02-09 06:38:25 +08:00
|
|
|
void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size);
|
|
|
|
|
2011-11-08 07:23:34 +08:00
|
|
|
int acpi_os_map_generic_address(struct acpi_generic_address *addr);
|
|
|
|
void acpi_os_unmap_generic_address(struct acpi_generic_address *addr);
|
|
|
|
|
2011-01-20 05:27:14 +08:00
|
|
|
#endif
|