2008-10-23 01:26:29 -04:00
|
|
|
#ifndef _ASM_X86_DMI_H
|
|
|
|
#define _ASM_X86_DMI_H
|
2007-10-15 17:28:20 -04:00
|
|
|
|
2009-03-22 17:48:44 -04:00
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
|
2007-10-15 17:28:20 -04:00
|
|
|
#include <asm/io.h>
|
2009-02-27 16:35:45 -05:00
|
|
|
#include <asm/setup.h>
|
2007-10-15 17:28:20 -04:00
|
|
|
|
2009-03-22 17:48:44 -04:00
|
|
|
static __always_inline __init void *dmi_alloc(unsigned len)
|
2007-10-15 17:28:20 -04:00
|
|
|
{
|
2009-02-27 16:35:45 -05:00
|
|
|
return extend_brk(len, sizeof(int));
|
2007-10-15 17:28:20 -04:00
|
|
|
}
|
|
|
|
|
2008-05-01 07:35:01 -04:00
|
|
|
/* Use early IO mappings for DMI because it's initialized early */
|
2017-07-17 17:10:00 -04:00
|
|
|
#define dmi_early_remap early_memremap
|
|
|
|
#define dmi_early_unmap early_memunmap
|
|
|
|
#define dmi_remap(_x, _l) memremap(_x, _l, MEMREMAP_WB)
|
|
|
|
#define dmi_unmap(_x) memunmap(_x)
|
2007-10-15 17:28:20 -04:00
|
|
|
|
2008-10-23 01:26:29 -04:00
|
|
|
#endif /* _ASM_X86_DMI_H */
|