-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SMbios is important for server hardware vendors. It implements a spec for providing descriptive information about the platform. Things like serial numbers, physical layout of the ports, build configuration data, and the like. This has been tested by dmidecode and lshw tools. Signed-off-by: Yi Li <yi.li@linaro.org> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
- Loading branch information
Yi Li
authored and
Catalin Marinas
committed
Jul 21, 2014
1 parent
d7a4908
commit a28e3f4
Showing
3 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* arch/arm64/include/asm/dmi.h | ||
* | ||
* Copyright (C) 2013 Linaro Limited. | ||
* Written by: Yi Li (yi.li@linaro.org) | ||
* | ||
* based on arch/ia64/include/asm/dmi.h | ||
* | ||
* This file is subject to the terms and conditions of the GNU General Public | ||
* License. See the file "COPYING" in the main directory of this archive | ||
* for more details. | ||
*/ | ||
|
||
#ifndef __ASM_DMI_H | ||
#define __ASM_DMI_H | ||
|
||
#include <linux/slab.h> | ||
#include <linux/efi.h> | ||
|
||
static inline void __iomem *dmi_remap(u64 phys, u64 size) | ||
{ | ||
void __iomem *p = efi_lookup_mapped_addr(phys); | ||
|
||
/* | ||
* If the mapping spans multiple pages, do a minimal check to ensure | ||
* that the mapping returned by efi_lookup_mapped_addr() covers the | ||
* whole requested range (but ignore potential holes) | ||
*/ | ||
if ((phys & ~PAGE_MASK) + size > PAGE_SIZE | ||
&& (p + size - 1) != efi_lookup_mapped_addr(phys + size - 1)) | ||
return NULL; | ||
return p; | ||
} | ||
|
||
/* Reuse existing UEFI mappings for DMI */ | ||
#define dmi_alloc(l) kzalloc(l, GFP_KERNEL) | ||
#define dmi_early_remap(x, l) dmi_remap(x, l) | ||
#define dmi_early_unmap(x, l) | ||
#define dmi_unmap(x) | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters