Merge branch 'fixes' of git://git.armlinux.org.uk/~rmk/linux-arm
[deliverable/linux.git] / arch / arm / include / asm / domain.h
CommitLineData
1da177e4 1/*
4baa9922 2 * arch/arm/include/asm/domain.h
1da177e4
LT
3 *
4 * Copyright (C) 1999 Russell King.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#ifndef __ASM_PROC_DOMAIN_H
11#define __ASM_PROC_DOMAIN_H
12
9f97da78
DH
13#ifndef __ASSEMBLY__
14#include <asm/barrier.h>
6e8f580d 15#include <asm/thread_info.h>
9f97da78
DH
16#endif
17
1da177e4
LT
18/*
19 * Domain numbers
20 *
21 * DOMAIN_IO - domain 2 includes all IO only
22 * DOMAIN_USER - domain 1 includes all user memory only
23 * DOMAIN_KERNEL - domain 0 includes all kernel memory only
23bdf86a
LB
24 *
25 * The domain numbering depends on whether we support 36 physical
26 * address for I/O or not. Addresses above the 32 bit boundary can
27 * only be mapped using supersections and supersections can only
28 * be set for domain 0. We could just default to DOMAIN_IO as zero,
29 * but there may be systems with supersection support and no 36-bit
30 * addressing. In such cases, we want to map system memory with
31 * supersections to reduce TLB misses and footprint.
32 *
33 * 36-bit addressing and supersections are only available on
34 * CPUs based on ARMv6+ or the Intel XSC3 core.
1da177e4 35 */
23bdf86a 36#ifndef CONFIG_IO_36
1da177e4 37#define DOMAIN_KERNEL 0
1da177e4
LT
38#define DOMAIN_USER 1
39#define DOMAIN_IO 2
23bdf86a
LB
40#else
41#define DOMAIN_KERNEL 2
23bdf86a
LB
42#define DOMAIN_USER 1
43#define DOMAIN_IO 0
44#endif
a02d8dfd 45#define DOMAIN_VECTORS 3
1da177e4
LT
46
47/*
48 * Domain types
49 */
50#define DOMAIN_NOACCESS 0
51#define DOMAIN_CLIENT 1
247055aa 52#ifdef CONFIG_CPU_USE_DOMAINS
1da177e4 53#define DOMAIN_MANAGER 3
247055aa
CM
54#else
55#define DOMAIN_MANAGER 1
56#endif
1da177e4 57
8e798706
RK
58#define domain_mask(dom) ((3) << (2 * (dom)))
59#define domain_val(dom,type) ((type) << (2 * (dom)))
1da177e4 60
a5e090ac
RK
61#ifdef CONFIG_CPU_SW_DOMAIN_PAN
62#define DACR_INIT \
63 (domain_val(DOMAIN_USER, DOMAIN_NOACCESS) | \
64 domain_val(DOMAIN_KERNEL, DOMAIN_MANAGER) | \
65 domain_val(DOMAIN_IO, DOMAIN_CLIENT) | \
66 domain_val(DOMAIN_VECTORS, DOMAIN_CLIENT))
67#else
0171356a 68#define DACR_INIT \
3c2aed5b 69 (domain_val(DOMAIN_USER, DOMAIN_CLIENT) | \
0171356a 70 domain_val(DOMAIN_KERNEL, DOMAIN_MANAGER) | \
a02d8dfd
RK
71 domain_val(DOMAIN_IO, DOMAIN_CLIENT) | \
72 domain_val(DOMAIN_VECTORS, DOMAIN_CLIENT))
a5e090ac
RK
73#endif
74
75#define __DACR_DEFAULT \
76 domain_val(DOMAIN_KERNEL, DOMAIN_CLIENT) | \
77 domain_val(DOMAIN_IO, DOMAIN_CLIENT) | \
78 domain_val(DOMAIN_VECTORS, DOMAIN_CLIENT)
79
80#define DACR_UACCESS_DISABLE \
81 (__DACR_DEFAULT | domain_val(DOMAIN_USER, DOMAIN_NOACCESS))
82#define DACR_UACCESS_ENABLE \
83 (__DACR_DEFAULT | domain_val(DOMAIN_USER, DOMAIN_CLIENT))
0171356a 84
1da177e4 85#ifndef __ASSEMBLY__
002547b4 86
ec953b70 87#ifdef CONFIG_CPU_CP15_MMU
1eef5d2f
RK
88static inline unsigned int get_domain(void)
89{
90 unsigned int domain;
91
92 asm(
93 "mrc p15, 0, %0, c3, c0 @ get domain"
6e8f580d
RK
94 : "=r" (domain)
95 : "m" (current_thread_info()->cpu_domain));
1eef5d2f
RK
96
97 return domain;
98}
99
82401bf1
RK
100static inline void set_domain(unsigned val)
101{
102 asm volatile(
103 "mcr p15, 0, %0, c3, c0 @ set domain"
6e8f580d 104 : : "r" (val) : "memory");
82401bf1
RK
105 isb();
106}
ec953b70
VM
107#else
108static inline unsigned int get_domain(void)
109{
110 return 0;
111}
112
113static inline void set_domain(unsigned val)
114{
115}
116#endif
1da177e4 117
a5e090ac 118#ifdef CONFIG_CPU_USE_DOMAINS
1da177e4
LT
119#define modify_domain(dom,type) \
120 do { \
1eef5d2f 121 unsigned int domain = get_domain(); \
8e798706 122 domain &= ~domain_mask(dom); \
1eef5d2f
RK
123 domain = domain | domain_val(dom, type); \
124 set_domain(domain); \
1da177e4
LT
125 } while (0)
126
002547b4 127#else
82401bf1 128static inline void modify_domain(unsigned dom, unsigned type) { }
002547b4
RK
129#endif
130
247055aa
CM
131/*
132 * Generate the T (user) versions of the LDR/STR and related
133 * instructions (inline assembly)
134 */
135#ifdef CONFIG_CPU_USE_DOMAINS
4e7682d0 136#define TUSER(instr) #instr "t"
247055aa 137#else
4e7682d0 138#define TUSER(instr) #instr
1da177e4 139#endif
247055aa
CM
140
141#else /* __ASSEMBLY__ */
142
143/*
144 * Generate the T (user) versions of the LDR/STR and related
145 * instructions
146 */
147#ifdef CONFIG_CPU_USE_DOMAINS
4e7682d0 148#define TUSER(instr) instr ## t
247055aa 149#else
4e7682d0 150#define TUSER(instr) instr
247055aa
CM
151#endif
152
153#endif /* __ASSEMBLY__ */
154
155#endif /* !__ASM_PROC_DOMAIN_H */
This page took 0.750867 seconds and 5 git commands to generate.