blob: 56e4418c19b984832589a53ccce34b554e56c2ed [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __MMU_H
2#define __MMU_H
3
Paul Mundt0c7b1df2006-09-27 15:08:07 +09004/*
5 * Privileged Space Mapping Buffer (PMB) definitions
6 */
7#define PMB_PASCR 0xff000070
8#define PMB_IRMCR 0xff000078
9
Matt Fleming1f69b6a2009-10-06 21:22:25 +000010#define PASCR_SE 0x80000000
11
Paul Mundt0c7b1df2006-09-27 15:08:07 +090012#define PMB_ADDR 0xf6100000
13#define PMB_DATA 0xf7100000
Paul Mundt51becfd2010-02-17 15:33:30 +090014
15#define NR_PMB_ENTRIES 16
16
Paul Mundt0c7b1df2006-09-27 15:08:07 +090017#define PMB_E_MASK 0x0000000f
18#define PMB_E_SHIFT 8
19
Matt Fleming20b50142009-10-06 21:22:33 +000020#define PMB_PFN_MASK 0xff000000
21
Paul Mundt0c7b1df2006-09-27 15:08:07 +090022#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 Mundtefd54ea2010-02-16 18:39:30 +090030#define PMB_CACHE_MASK (PMB_C | PMB_WT | PMB_UB)
Paul Mundt0c7b1df2006-09-27 15:08:07 +090031#define PMB_V 0x00000100
32
33#define PMB_NO_ENTRY (-1)
34
Francesco VIRLINZI3b4df712009-03-24 13:30:01 +000035#ifndef __ASSEMBLY__
Matt Fleming46c4e5d2010-01-15 08:00:45 +090036#include <linux/errno.h>
Paul Mundt2efa53b2010-01-20 16:40:48 +090037#include <linux/threads.h>
Paul Mundt7bdda622010-02-17 13:23:00 +090038#include <asm/page.h>
Francesco VIRLINZI3b4df712009-03-24 13:30:01 +000039
40/* Default "unsigned long" context */
41typedef unsigned long mm_context_id_t[NR_CPUS];
42
43typedef 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 Mundta0ab3662010-01-13 18:31:48 +090056#ifdef CONFIG_PMB
Paul Mundt0c7b1df2006-09-27 15:08:07 +090057/* arch/sh/mm/pmb.c */
Paul Mundt2efa53b2010-01-20 16:40:48 +090058bool __in_29bit_mode(void);
Paul Mundt90e7d642010-02-23 16:20:53 +090059
60void pmb_init(void);
61int pmb_bolt_mapping(unsigned long virt, phys_addr_t phys,
62 unsigned long size, pgprot_t prot);
63void __iomem *pmb_remap_caller(phys_addr_t phys, unsigned long size,
64 pgprot_t prot, void *caller);
65int pmb_unmap(void __iomem *addr);
66
Paul Mundta0ab3662010-01-13 18:31:48 +090067#else
Paul Mundt90e7d642010-02-23 16:20:53 +090068
Paul Mundt089b43f2010-03-10 16:29:48 +090069static inline int
70pmb_bolt_mapping(unsigned long virt, phys_addr_t phys,
71 unsigned long size, pgprot_t prot)
72{
73 return -EINVAL;
74}
75
Paul Mundt90e7d642010-02-23 16:20:53 +090076static inline void __iomem *
77pmb_remap_caller(phys_addr_t phys, unsigned long size,
78 pgprot_t prot, void *caller)
79{
80 return NULL;
81}
82
83static inline int pmb_unmap(void __iomem *addr)
Paul Mundta0ab3662010-01-13 18:31:48 +090084{
Matt Fleming46c4e5d2010-01-15 08:00:45 +090085 return -EINVAL;
Paul Mundta0ab3662010-01-13 18:31:48 +090086}
87
Paul Mundtd01447b2010-02-18 18:13:51 +090088#define pmb_init(addr) do { } while (0)
Paul Mundta0ab3662010-01-13 18:31:48 +090089
Paul Mundt2efa53b2010-01-20 16:40:48 +090090#ifdef CONFIG_29BIT
91#define __in_29bit_mode() (1)
92#else
93#define __in_29bit_mode() (0)
94#endif
95
96#endif /* CONFIG_PMB */
Paul Mundt90e7d642010-02-23 16:20:53 +090097
98static inline void __iomem *
99pmb_remap(phys_addr_t phys, unsigned long size, pgprot_t prot)
100{
101 return pmb_remap_caller(phys, size, prot, __builtin_return_address(0));
102}
103
Francesco VIRLINZI3b4df712009-03-24 13:30:01 +0000104#endif /* __ASSEMBLY__ */
Paul Mundt0c7b1df2006-09-27 15:08:07 +0900105
106#endif /* __MMU_H */