-
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: 213292 b: refs/heads/master c: 138ff34 h: refs/heads/master v: v3
- Loading branch information
Greg Ungerer
authored and
Geert Uytterhoeven
committed
Oct 22, 2010
1 parent
c11578e
commit 26f5dff
Showing
4 changed files
with
56 additions
and
94 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: b0860c1d80016df82b93b926f1cff3110ccb5028 | ||
refs/heads/master: 138ff3462f53a7370bef15443e623ecba1c350bf |
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,5 +1,49 @@ | ||
#ifdef __uClinux__ | ||
#include "page_no.h" | ||
#ifndef _M68K_PAGE_H | ||
#define _M68K_PAGE_H | ||
|
||
#include <linux/const.h> | ||
#include <asm/setup.h> | ||
#include <asm/page_offset.h> | ||
|
||
/* PAGE_SHIFT determines the page size */ | ||
#ifndef CONFIG_SUN3 | ||
#define PAGE_SHIFT (12) | ||
#else | ||
#define PAGE_SHIFT (13) | ||
#endif | ||
#define PAGE_SIZE (_AC(1, UL) << PAGE_SHIFT) | ||
#define PAGE_MASK (~(PAGE_SIZE-1)) | ||
#define PAGE_OFFSET (PAGE_OFFSET_RAW) | ||
|
||
#ifndef __ASSEMBLY__ | ||
|
||
/* | ||
* These are used to make use of C type-checking.. | ||
*/ | ||
typedef struct { unsigned long pte; } pte_t; | ||
typedef struct { unsigned long pmd[16]; } pmd_t; | ||
typedef struct { unsigned long pgd; } pgd_t; | ||
typedef struct { unsigned long pgprot; } pgprot_t; | ||
typedef struct page *pgtable_t; | ||
|
||
#define pte_val(x) ((x).pte) | ||
#define pmd_val(x) ((&x)->pmd[0]) | ||
#define pgd_val(x) ((x).pgd) | ||
#define pgprot_val(x) ((x).pgprot) | ||
|
||
#define __pte(x) ((pte_t) { (x) } ) | ||
#define __pmd(x) ((pmd_t) { (x) } ) | ||
#define __pgd(x) ((pgd_t) { (x) } ) | ||
#define __pgprot(x) ((pgprot_t) { (x) } ) | ||
|
||
#endif /* !__ASSEMBLY__ */ | ||
|
||
#ifdef CONFIG_MMU | ||
#include "page_mm.h" | ||
#else | ||
#include "page_no.h" | ||
#endif | ||
|
||
#include <asm-generic/getorder.h> | ||
|
||
#endif /* _M68K_PAGE_H */ |
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