-
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.
- Loading branch information
Jeremy Fitzhardinge
committed
Sep 10, 2009
1 parent
6071cba
commit f2a4569
Showing
5 changed files
with
84 additions
and
74 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 2496afbf1e50c70f80992656bcb730c8583ddac3 | ||
refs/heads/master: 78c86e5e5691fc84d5fbea0cd4ac7147e87b7490 |
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
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,70 @@ | ||
#include <linux/mmdebug.h> | ||
#include <linux/module.h> | ||
#include <linux/mm.h> | ||
|
||
#include <asm/page.h> | ||
|
||
#include "physaddr.h" | ||
|
||
#ifdef CONFIG_X86_64 | ||
|
||
unsigned long __phys_addr(unsigned long x) | ||
{ | ||
if (x >= __START_KERNEL_map) { | ||
x -= __START_KERNEL_map; | ||
VIRTUAL_BUG_ON(x >= KERNEL_IMAGE_SIZE); | ||
x += phys_base; | ||
} else { | ||
VIRTUAL_BUG_ON(x < PAGE_OFFSET); | ||
x -= PAGE_OFFSET; | ||
VIRTUAL_BUG_ON(!phys_addr_valid(x)); | ||
} | ||
return x; | ||
} | ||
EXPORT_SYMBOL(__phys_addr); | ||
|
||
bool __virt_addr_valid(unsigned long x) | ||
{ | ||
if (x >= __START_KERNEL_map) { | ||
x -= __START_KERNEL_map; | ||
if (x >= KERNEL_IMAGE_SIZE) | ||
return false; | ||
x += phys_base; | ||
} else { | ||
if (x < PAGE_OFFSET) | ||
return false; | ||
x -= PAGE_OFFSET; | ||
if (!phys_addr_valid(x)) | ||
return false; | ||
} | ||
|
||
return pfn_valid(x >> PAGE_SHIFT); | ||
} | ||
EXPORT_SYMBOL(__virt_addr_valid); | ||
|
||
#else | ||
|
||
#ifdef CONFIG_DEBUG_VIRTUAL | ||
unsigned long __phys_addr(unsigned long x) | ||
{ | ||
/* VMALLOC_* aren't constants */ | ||
VIRTUAL_BUG_ON(x < PAGE_OFFSET); | ||
VIRTUAL_BUG_ON(__vmalloc_start_set && is_vmalloc_addr((void *) x)); | ||
return x - PAGE_OFFSET; | ||
} | ||
EXPORT_SYMBOL(__phys_addr); | ||
#endif | ||
|
||
bool __virt_addr_valid(unsigned long x) | ||
{ | ||
if (x < PAGE_OFFSET) | ||
return false; | ||
if (__vmalloc_start_set && is_vmalloc_addr((void *) x)) | ||
return false; | ||
if (x >= FIXADDR_START) | ||
return false; | ||
return pfn_valid((x - PAGE_OFFSET) >> PAGE_SHIFT); | ||
} | ||
EXPORT_SYMBOL(__virt_addr_valid); | ||
|
||
#endif /* CONFIG_X86_64 */ |
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,10 @@ | ||
#include <asm/processor.h> | ||
|
||
static inline int phys_addr_valid(resource_size_t addr) | ||
{ | ||
#ifdef CONFIG_PHYS_ADDR_T_64BIT | ||
return !(addr >> boot_cpu_data.x86_phys_bits); | ||
#else | ||
return 1; | ||
#endif | ||
} |