diff options
Diffstat (limited to 'include/asm-sh/addrspace.h')
-rw-r--r-- | include/asm-sh/addrspace.h | 43 |
1 files changed, 25 insertions, 18 deletions
diff --git a/include/asm-sh/addrspace.h b/include/asm-sh/addrspace.h index b860218e402e..fa544fc38c23 100644 --- a/include/asm-sh/addrspace.h +++ b/include/asm-sh/addrspace.h | |||
@@ -9,24 +9,21 @@ | |||
9 | */ | 9 | */ |
10 | #ifndef __ASM_SH_ADDRSPACE_H | 10 | #ifndef __ASM_SH_ADDRSPACE_H |
11 | #define __ASM_SH_ADDRSPACE_H | 11 | #define __ASM_SH_ADDRSPACE_H |
12 | |||
12 | #ifdef __KERNEL__ | 13 | #ifdef __KERNEL__ |
13 | 14 | ||
14 | #include <asm/cpu/addrspace.h> | 15 | #include <asm/cpu/addrspace.h> |
15 | 16 | ||
16 | /* Memory segments (32bit Privileged mode addresses) */ | 17 | /* If this CPU supports segmentation, hook up the helpers */ |
17 | #ifndef CONFIG_CPU_SH2A | 18 | #ifdef P1SEG |
18 | #define P0SEG 0x00000000 | 19 | |
19 | #define P1SEG 0x80000000 | 20 | /* |
20 | #define P2SEG 0xa0000000 | 21 | [ P0/U0 (virtual) ] 0x00000000 <------ User space |
21 | #define P3SEG 0xc0000000 | 22 | [ P1 (fixed) cached ] 0x80000000 <------ Kernel space |
22 | #define P4SEG 0xe0000000 | 23 | [ P2 (fixed) non-cachable] 0xA0000000 <------ Physical access |
23 | #else | 24 | [ P3 (virtual) cached] 0xC0000000 <------ vmalloced area |
24 | #define P0SEG 0x00000000 | 25 | [ P4 control ] 0xE0000000 |
25 | #define P1SEG 0x00000000 | 26 | */ |
26 | #define P2SEG 0x20000000 | ||
27 | #define P3SEG 0x00000000 | ||
28 | #define P4SEG 0x80000000 | ||
29 | #endif | ||
30 | 27 | ||
31 | /* Returns the privileged segment base of a given address */ | 28 | /* Returns the privileged segment base of a given address */ |
32 | #define PXSEG(a) (((unsigned long)(a)) & 0xe0000000) | 29 | #define PXSEG(a) (((unsigned long)(a)) & 0xe0000000) |
@@ -34,13 +31,23 @@ | |||
34 | /* Returns the physical address of a PnSEG (n=1,2) address */ | 31 | /* Returns the physical address of a PnSEG (n=1,2) address */ |
35 | #define PHYSADDR(a) (((unsigned long)(a)) & 0x1fffffff) | 32 | #define PHYSADDR(a) (((unsigned long)(a)) & 0x1fffffff) |
36 | 33 | ||
34 | #ifdef CONFIG_29BIT | ||
37 | /* | 35 | /* |
38 | * Map an address to a certain privileged segment | 36 | * Map an address to a certain privileged segment |
39 | */ | 37 | */ |
40 | #define P1SEGADDR(a) ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P1SEG)) | 38 | #define P1SEGADDR(a) \ |
41 | #define P2SEGADDR(a) ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P2SEG)) | 39 | ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P1SEG)) |
42 | #define P3SEGADDR(a) ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P3SEG)) | 40 | #define P2SEGADDR(a) \ |
43 | #define P4SEGADDR(a) ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P4SEG)) | 41 | ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P2SEG)) |
42 | #define P3SEGADDR(a) \ | ||
43 | ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P3SEG)) | ||
44 | #define P4SEGADDR(a) \ | ||
45 | ((__typeof__(a))(((unsigned long)(a) & 0x1fffffff) | P4SEG)) | ||
46 | #endif /* 29BIT */ | ||
47 | #endif /* P1SEG */ | ||
48 | |||
49 | /* Check if an address can be reached in 29 bits */ | ||
50 | #define IS_29BIT(a) (((unsigned long)(a)) < 0x20000000) | ||
44 | 51 | ||
45 | #endif /* __KERNEL__ */ | 52 | #endif /* __KERNEL__ */ |
46 | #endif /* __ASM_SH_ADDRSPACE_H */ | 53 | #endif /* __ASM_SH_ADDRSPACE_H */ |