Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __MMU_H |
| 2 | #define __MMU_H |
| 3 | |
Paul Mundt | 0c7b1df | 2006-09-27 15:08:07 +0900 | [diff] [blame] | 4 | /* |
| 5 | * Privileged Space Mapping Buffer (PMB) definitions |
| 6 | */ |
| 7 | #define PMB_PASCR 0xff000070 |
| 8 | #define PMB_IRMCR 0xff000078 |
| 9 | |
Matt Fleming | 1f69b6a | 2009-10-06 21:22:25 +0000 | [diff] [blame] | 10 | #define PASCR_SE 0x80000000 |
| 11 | |
Paul Mundt | 0c7b1df | 2006-09-27 15:08:07 +0900 | [diff] [blame] | 12 | #define PMB_ADDR 0xf6100000 |
| 13 | #define PMB_DATA 0xf7100000 |
Paul Mundt | 51becfd | 2010-02-17 15:33:30 +0900 | [diff] [blame^] | 14 | |
| 15 | #define NR_PMB_ENTRIES 16 |
| 16 | |
Paul Mundt | 0c7b1df | 2006-09-27 15:08:07 +0900 | [diff] [blame] | 17 | #define PMB_E_MASK 0x0000000f |
| 18 | #define PMB_E_SHIFT 8 |
| 19 | |
Matt Fleming | 20b5014 | 2009-10-06 21:22:33 +0000 | [diff] [blame] | 20 | #define PMB_PFN_MASK 0xff000000 |
| 21 | |
Paul Mundt | 0c7b1df | 2006-09-27 15:08:07 +0900 | [diff] [blame] | 22 | #define PMB_SZ_16M 0x00000000 |
| 23 | #define PMB_SZ_64M 0x00000010 |
| 24 | #define PMB_SZ_128M 0x00000080 |
| 25 | #define PMB_SZ_512M 0x00000090 |
| 26 | #define PMB_SZ_MASK PMB_SZ_512M |
| 27 | #define PMB_C 0x00000008 |
| 28 | #define PMB_WT 0x00000001 |
| 29 | #define PMB_UB 0x00000200 |
Paul Mundt | efd54ea | 2010-02-16 18:39:30 +0900 | [diff] [blame] | 30 | #define PMB_CACHE_MASK (PMB_C | PMB_WT | PMB_UB) |
Paul Mundt | 0c7b1df | 2006-09-27 15:08:07 +0900 | [diff] [blame] | 31 | #define PMB_V 0x00000100 |
| 32 | |
| 33 | #define PMB_NO_ENTRY (-1) |
| 34 | |
Francesco VIRLINZI | 3b4df71 | 2009-03-24 13:30:01 +0000 | [diff] [blame] | 35 | #ifndef __ASSEMBLY__ |
Matt Fleming | 46c4e5d | 2010-01-15 08:00:45 +0900 | [diff] [blame] | 36 | #include <linux/errno.h> |
Paul Mundt | 2efa53b | 2010-01-20 16:40:48 +0900 | [diff] [blame] | 37 | #include <linux/threads.h> |
Paul Mundt | 7bdda62 | 2010-02-17 13:23:00 +0900 | [diff] [blame] | 38 | #include <asm/page.h> |
Francesco VIRLINZI | 3b4df71 | 2009-03-24 13:30:01 +0000 | [diff] [blame] | 39 | |
| 40 | /* Default "unsigned long" context */ |
| 41 | typedef unsigned long mm_context_id_t[NR_CPUS]; |
| 42 | |
| 43 | typedef struct { |
| 44 | #ifdef CONFIG_MMU |
| 45 | mm_context_id_t id; |
| 46 | void *vdso; |
| 47 | #else |
| 48 | unsigned long end_brk; |
| 49 | #endif |
| 50 | #ifdef CONFIG_BINFMT_ELF_FDPIC |
| 51 | unsigned long exec_fdpic_loadmap; |
| 52 | unsigned long interp_fdpic_loadmap; |
| 53 | #endif |
| 54 | } mm_context_t; |
| 55 | |
Paul Mundt | d7cdc9e | 2006-09-27 15:16:42 +0900 | [diff] [blame] | 56 | struct pmb_entry; |
| 57 | |
Paul Mundt | 0c7b1df | 2006-09-27 15:08:07 +0900 | [diff] [blame] | 58 | struct pmb_entry { |
| 59 | unsigned long vpn; |
| 60 | unsigned long ppn; |
| 61 | unsigned long flags; |
| 62 | |
| 63 | /* |
| 64 | * 0 .. NR_PMB_ENTRIES for specific entry selection, or |
| 65 | * PMB_NO_ENTRY to search for a free one |
| 66 | */ |
| 67 | int entry; |
Paul Mundt | d7cdc9e | 2006-09-27 15:16:42 +0900 | [diff] [blame] | 68 | |
| 69 | struct pmb_entry *next; |
| 70 | /* Adjacent entry link for contiguous multi-entry mappings */ |
| 71 | struct pmb_entry *link; |
Paul Mundt | 0c7b1df | 2006-09-27 15:08:07 +0900 | [diff] [blame] | 72 | }; |
| 73 | |
Paul Mundt | a0ab366 | 2010-01-13 18:31:48 +0900 | [diff] [blame] | 74 | #ifdef CONFIG_PMB |
Paul Mundt | 0c7b1df | 2006-09-27 15:08:07 +0900 | [diff] [blame] | 75 | /* arch/sh/mm/pmb.c */ |
Paul Mundt | d7cdc9e | 2006-09-27 15:16:42 +0900 | [diff] [blame] | 76 | long pmb_remap(unsigned long virt, unsigned long phys, |
Paul Mundt | 7bdda62 | 2010-02-17 13:23:00 +0900 | [diff] [blame] | 77 | unsigned long size, pgprot_t prot); |
Paul Mundt | d7cdc9e | 2006-09-27 15:16:42 +0900 | [diff] [blame] | 78 | void pmb_unmap(unsigned long addr); |
Matt Fleming | 8386aeb | 2009-10-06 21:22:28 +0000 | [diff] [blame] | 79 | int pmb_init(void); |
Paul Mundt | 2efa53b | 2010-01-20 16:40:48 +0900 | [diff] [blame] | 80 | bool __in_29bit_mode(void); |
Paul Mundt | a0ab366 | 2010-01-13 18:31:48 +0900 | [diff] [blame] | 81 | #else |
| 82 | static inline long pmb_remap(unsigned long virt, unsigned long phys, |
Paul Mundt | 7bdda62 | 2010-02-17 13:23:00 +0900 | [diff] [blame] | 83 | unsigned long size, pgprot_t prot) |
Paul Mundt | a0ab366 | 2010-01-13 18:31:48 +0900 | [diff] [blame] | 84 | { |
Matt Fleming | 46c4e5d | 2010-01-15 08:00:45 +0900 | [diff] [blame] | 85 | return -EINVAL; |
Paul Mundt | a0ab366 | 2010-01-13 18:31:48 +0900 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | static inline void pmb_unmap(unsigned long addr) |
| 89 | { |
| 90 | } |
| 91 | |
| 92 | static inline int pmb_init(void) |
| 93 | { |
| 94 | return -ENODEV; |
| 95 | } |
Paul Mundt | a0ab366 | 2010-01-13 18:31:48 +0900 | [diff] [blame] | 96 | |
Paul Mundt | 2efa53b | 2010-01-20 16:40:48 +0900 | [diff] [blame] | 97 | #ifdef CONFIG_29BIT |
| 98 | #define __in_29bit_mode() (1) |
| 99 | #else |
| 100 | #define __in_29bit_mode() (0) |
| 101 | #endif |
| 102 | |
| 103 | #endif /* CONFIG_PMB */ |
Francesco VIRLINZI | 3b4df71 | 2009-03-24 13:30:01 +0000 | [diff] [blame] | 104 | #endif /* __ASSEMBLY__ */ |
Paul Mundt | 0c7b1df | 2006-09-27 15:08:07 +0900 | [diff] [blame] | 105 | |
| 106 | #endif /* __MMU_H */ |