-
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.
yaml --- r: 181214 b: refs/heads/master c: 9edef28 h: refs/heads/master v: v3
- Loading branch information
Paul Mundt
committed
Feb 17, 2010
1 parent
0c1b086
commit 53d372b
Showing
7 changed files
with
59 additions
and
31 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: 51becfd96287b3913b13075699433730984e2f4f | ||
refs/heads/master: 9edef28653a519bf0a48250f36cce96b1736ec4e |
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
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,28 @@ | ||
#include <linux/init.h> | ||
#include <asm/sizes.h> | ||
#include <asm/page.h> | ||
|
||
/* | ||
* This is the offset of the uncached section from its cached alias. | ||
* | ||
* Legacy platforms handle trivial transitions between cached and | ||
* uncached segments by making use of the 1:1 mapping relationship in | ||
* 512MB lowmem, others via a special uncached mapping. | ||
* | ||
* Default value only valid in 29 bit mode, in 32bit mode this will be | ||
* updated by the early PMB initialization code. | ||
*/ | ||
unsigned long cached_to_uncached = SZ_512M; | ||
unsigned long uncached_size = SZ_512M; | ||
unsigned long uncached_start, uncached_end; | ||
|
||
int virt_addr_uncached(unsigned long kaddr) | ||
{ | ||
return (kaddr >= uncached_start) && (kaddr < uncached_end); | ||
} | ||
|
||
void __init uncached_init(void) | ||
{ | ||
uncached_start = memory_end; | ||
uncached_end = uncached_start + uncached_size; | ||
} |