blob: 7f29419057145d92903488148a6096c14cf7c602 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King4baa9922008-08-02 10:55:55 +01002 * arch/arm/include/asm/domain.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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
David Howells9f97da72012-03-28 18:30:01 +010013#ifndef __ASSEMBLY__
14#include <asm/barrier.h>
15#endif
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017/*
18 * Domain numbers
19 *
20 * DOMAIN_IO - domain 2 includes all IO only
21 * DOMAIN_USER - domain 1 includes all user memory only
22 * DOMAIN_KERNEL - domain 0 includes all kernel memory only
Lennert Buytenhek23bdf862006-03-28 21:00:40 +010023 *
24 * The domain numbering depends on whether we support 36 physical
25 * address for I/O or not. Addresses above the 32 bit boundary can
26 * only be mapped using supersections and supersections can only
27 * be set for domain 0. We could just default to DOMAIN_IO as zero,
28 * but there may be systems with supersection support and no 36-bit
29 * addressing. In such cases, we want to map system memory with
30 * supersections to reduce TLB misses and footprint.
31 *
32 * 36-bit addressing and supersections are only available on
33 * CPUs based on ARMv6+ or the Intel XSC3 core.
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 */
Lennert Buytenhek23bdf862006-03-28 21:00:40 +010035#ifndef CONFIG_IO_36
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define DOMAIN_KERNEL 0
37#define DOMAIN_TABLE 0
38#define DOMAIN_USER 1
39#define DOMAIN_IO 2
Lennert Buytenhek23bdf862006-03-28 21:00:40 +010040#else
41#define DOMAIN_KERNEL 2
42#define DOMAIN_TABLE 2
43#define DOMAIN_USER 1
44#define DOMAIN_IO 0
45#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/*
48 * Domain types
49 */
50#define DOMAIN_NOACCESS 0
51#define DOMAIN_CLIENT 1
Catalin Marinas247055a2010-09-13 16:03:21 +010052#ifdef CONFIG_CPU_USE_DOMAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define DOMAIN_MANAGER 3
Catalin Marinas247055a2010-09-13 16:03:21 +010054#else
55#define DOMAIN_MANAGER 1
56#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#define domain_val(dom,type) ((type) << (2*(dom)))
59
60#ifndef __ASSEMBLY__
Russell King002547b2006-06-20 20:46:52 +010061
Russell King1eef5d22015-08-19 21:23:48 +010062static inline unsigned int get_domain(void)
63{
64 unsigned int domain;
65
66 asm(
67 "mrc p15, 0, %0, c3, c0 @ get domain"
68 : "=r" (domain));
69
70 return domain;
71}
72
Catalin Marinas247055a2010-09-13 16:03:21 +010073#ifdef CONFIG_CPU_USE_DOMAINS
Russell King82401bf2012-07-04 17:05:28 +010074static inline void set_domain(unsigned val)
75{
76 asm volatile(
77 "mcr p15, 0, %0, c3, c0 @ set domain"
78 : : "r" (val));
79 isb();
80}
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82#define modify_domain(dom,type) \
83 do { \
Russell King1eef5d22015-08-19 21:23:48 +010084 unsigned int domain = get_domain(); \
85 domain &= ~domain_val(dom, DOMAIN_MANAGER); \
86 domain = domain | domain_val(dom, type); \
87 set_domain(domain); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 } while (0)
89
Russell King002547b2006-06-20 20:46:52 +010090#else
Russell King82401bf2012-07-04 17:05:28 +010091static inline void set_domain(unsigned val) { }
92static inline void modify_domain(unsigned dom, unsigned type) { }
Russell King002547b2006-06-20 20:46:52 +010093#endif
94
Catalin Marinas247055a2010-09-13 16:03:21 +010095/*
96 * Generate the T (user) versions of the LDR/STR and related
97 * instructions (inline assembly)
98 */
99#ifdef CONFIG_CPU_USE_DOMAINS
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100100#define TUSER(instr) #instr "t"
Catalin Marinas247055a2010-09-13 16:03:21 +0100101#else
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100102#define TUSER(instr) #instr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#endif
Catalin Marinas247055a2010-09-13 16:03:21 +0100104
105#else /* __ASSEMBLY__ */
106
107/*
108 * Generate the T (user) versions of the LDR/STR and related
109 * instructions
110 */
111#ifdef CONFIG_CPU_USE_DOMAINS
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100112#define TUSER(instr) instr ## t
Catalin Marinas247055a2010-09-13 16:03:21 +0100113#else
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100114#define TUSER(instr) instr
Catalin Marinas247055a2010-09-13 16:03:21 +0100115#endif
116
117#endif /* __ASSEMBLY__ */
118
119#endif /* !__ASM_PROC_DOMAIN_H */