2011-01-20 00:27:14 +03:00
|
|
|
#ifndef _ACPI_IO_H_
|
|
|
|
#define _ACPI_IO_H_
|
|
|
|
|
|
|
|
#include <linux/io.h>
|
|
|
|
|
2015-03-24 17:02:38 +03:00
|
|
|
#include <asm/acpi.h>
|
|
|
|
|
|
|
|
#ifndef acpi_os_ioremap
|
2011-01-20 00:27:14 +03:00
|
|
|
static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys,
|
|
|
|
acpi_size size)
|
|
|
|
{
|
|
|
|
return ioremap_cache(phys, size);
|
|
|
|
}
|
2015-03-24 17:02:38 +03:00
|
|
|
#endif
|
2011-01-20 00:27:14 +03:00
|
|
|
|
2014-05-20 11:39:41 +04: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 01:38:25 +03:00
|
|
|
void __iomem *acpi_os_get_iomem(acpi_physical_address phys, unsigned int size);
|
|
|
|
|
2011-11-08 03:23:34 +04: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 00:27:14 +03:00
|
|
|
#endif
|