domain.h (7a9787e1eba95a166265e6a260cf30af04ef0a99) domain.h (247055aa21ffef1c49dd64710d5e94c2aee19b58)
1/*
2 * arch/arm/include/asm/domain.h
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.

--- 31 unchanged lines hidden (view full) ---

40#define DOMAIN_IO 0
41#endif
42
43/*
44 * Domain types
45 */
46#define DOMAIN_NOACCESS 0
47#define DOMAIN_CLIENT 1
1/*
2 * arch/arm/include/asm/domain.h
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.

--- 31 unchanged lines hidden (view full) ---

40#define DOMAIN_IO 0
41#endif
42
43/*
44 * Domain types
45 */
46#define DOMAIN_NOACCESS 0
47#define DOMAIN_CLIENT 1
48#ifdef CONFIG_CPU_USE_DOMAINS
48#define DOMAIN_MANAGER 3
49#define DOMAIN_MANAGER 3
50#else
51#define DOMAIN_MANAGER 1
52#endif
49
50#define domain_val(dom,type) ((type) << (2*(dom)))
51
52#ifndef __ASSEMBLY__
53
53
54#define domain_val(dom,type) ((type) << (2*(dom)))
55
56#ifndef __ASSEMBLY__
57
54#ifdef CONFIG_MMU
58#ifdef CONFIG_CPU_USE_DOMAINS
55#define set_domain(x) \
56 do { \
57 __asm__ __volatile__( \
58 "mcr p15, 0, %0, c3, c0 @ set domain" \
59 : : "r" (x)); \
60 isb(); \
61 } while (0)
62

--- 6 unchanged lines hidden (view full) ---

69 set_domain(thread->cpu_domain); \
70 } while (0)
71
72#else
73#define set_domain(x) do { } while (0)
74#define modify_domain(dom,type) do { } while (0)
75#endif
76
59#define set_domain(x) \
60 do { \
61 __asm__ __volatile__( \
62 "mcr p15, 0, %0, c3, c0 @ set domain" \
63 : : "r" (x)); \
64 isb(); \
65 } while (0)
66

--- 6 unchanged lines hidden (view full) ---

73 set_domain(thread->cpu_domain); \
74 } while (0)
75
76#else
77#define set_domain(x) do { } while (0)
78#define modify_domain(dom,type) do { } while (0)
79#endif
80
81/*
82 * Generate the T (user) versions of the LDR/STR and related
83 * instructions (inline assembly)
84 */
85#ifdef CONFIG_CPU_USE_DOMAINS
86#define T(instr) #instr "t"
87#else
88#define T(instr) #instr
77#endif
89#endif
78#endif /* !__ASSEMBLY__ */
90
91#else /* __ASSEMBLY__ */
92
93/*
94 * Generate the T (user) versions of the LDR/STR and related
95 * instructions
96 */
97#ifdef CONFIG_CPU_USE_DOMAINS
98#define T(instr) instr ## t
99#else
100#define T(instr) instr
101#endif
102
103#endif /* __ASSEMBLY__ */
104
105#endif /* !__ASM_PROC_DOMAIN_H */