-
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: 31024 b: refs/heads/master c: 002547b h: refs/heads/master v: v3
- Loading branch information
Russell King
authored and
Russell King
committed
Jun 28, 2006
1 parent
ef92152
commit 3c2c0e4
Showing
12 changed files
with
288 additions
and
22 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: 60b6cf6851d0e12956c109987966f2e7417ce212 | ||
refs/heads/master: 002547b4f86c27bfac5bae344b723d250857be6b |
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,51 @@ | ||
/* | ||
* linux/include/asm-arm/page-nommu.h | ||
* | ||
* Copyright (C) 2004 Hyok S. Choi | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
#ifndef _ASMARM_PAGE_NOMMU_H | ||
#define _ASMARM_PAGE_NOMMU_H | ||
|
||
#if !defined(CONFIG_SMALL_TASKS) && PAGE_SHIFT < 13 | ||
#define KTHREAD_SIZE (8192) | ||
#else | ||
#define KTHREAD_SIZE PAGE_SIZE | ||
#endif | ||
|
||
#define get_user_page(vaddr) __get_free_page(GFP_KERNEL) | ||
#define free_user_page(page, addr) free_page(addr) | ||
|
||
#define clear_page(page) memset((page), 0, PAGE_SIZE) | ||
#define copy_page(to,from) memcpy((to), (from), PAGE_SIZE) | ||
|
||
#define clear_user_page(page, vaddr, pg) clear_page(page) | ||
#define copy_user_page(to, from, vaddr, pg) copy_page(to, from) | ||
|
||
/* | ||
* These are used to make use of C type-checking.. | ||
*/ | ||
typedef unsigned long pte_t; | ||
typedef unsigned long pmd_t; | ||
typedef unsigned long pgd_t[2]; | ||
typedef unsigned long pgprot_t; | ||
|
||
#define pte_val(x) (x) | ||
#define pmd_val(x) (x) | ||
#define pgd_val(x) ((x)[0]) | ||
#define pgprot_val(x) (x) | ||
|
||
#define __pte(x) (x) | ||
#define __pmd(x) (x) | ||
#define __pgprot(x) (x) | ||
|
||
/* to align the pointer to the (next) page boundary */ | ||
#define PAGE_ALIGN(addr) (((addr)+PAGE_SIZE-1)&PAGE_MASK) | ||
|
||
extern unsigned long memory_start; | ||
extern unsigned long memory_end; | ||
|
||
#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
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
Oops, something went wrong.