blob: 99d9f630d6b6838954bde8ddbdd90b0b5ace17b8 [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>
Russell King6e8f5802015-09-11 08:34:52 +010015#include <asm/thread_info.h>
David Howells9f97da72012-03-28 18:30:01 +010016#endif
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018/*
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
Lennert Buytenhek23bdf862006-03-28 21:00:40 +010024 *
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
Lennert Buytenhek23bdf862006-03-28 21:00:40 +010036#ifndef CONFIG_IO_36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define DOMAIN_KERNEL 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define DOMAIN_USER 1
39#define DOMAIN_IO 2
Lennert Buytenhek23bdf862006-03-28 21:00:40 +010040#else
41#define DOMAIN_KERNEL 2
Lennert Buytenhek23bdf862006-03-28 21:00:40 +010042#define DOMAIN_USER 1
43#define DOMAIN_IO 0
44#endif
Russell Kinga02d8df2015-08-21 09:38:31 +010045#define DOMAIN_VECTORS 3
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
Russell King8e798702015-08-19 22:36:24 +010058#define domain_mask(dom) ((3) << (2 * (dom)))
59#define domain_val(dom,type) ((type) << (2 * (dom)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Russell Kinga5e090a2015-08-19 20:40:41 +010061#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
Russell King01713562015-08-21 09:23:26 +010068#define DACR_INIT \
Russell King3c2aed52015-08-21 09:30:16 +010069 (domain_val(DOMAIN_USER, DOMAIN_CLIENT) | \
Russell King01713562015-08-21 09:23:26 +010070 domain_val(DOMAIN_KERNEL, DOMAIN_MANAGER) | \
Russell Kinga02d8df2015-08-21 09:38:31 +010071 domain_val(DOMAIN_IO, DOMAIN_CLIENT) | \
72 domain_val(DOMAIN_VECTORS, DOMAIN_CLIENT))
Russell Kinga5e090a2015-08-19 20:40:41 +010073#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))
Russell King01713562015-08-21 09:23:26 +010084
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#ifndef __ASSEMBLY__
Russell King002547b2006-06-20 20:46:52 +010086
Vladimir Murzinec953b72016-05-04 10:39:02 +010087#ifdef CONFIG_CPU_CP15_MMU
Russell King1eef5d22015-08-19 21:23:48 +010088static inline unsigned int get_domain(void)
89{
90 unsigned int domain;
91
92 asm(
93 "mrc p15, 0, %0, c3, c0 @ get domain"
Russell King6e8f5802015-09-11 08:34:52 +010094 : "=r" (domain)
95 : "m" (current_thread_info()->cpu_domain));
Russell King1eef5d22015-08-19 21:23:48 +010096
97 return domain;
98}
99
Russell King82401bf2012-07-04 17:05:28 +0100100static inline void set_domain(unsigned val)
101{
102 asm volatile(
103 "mcr p15, 0, %0, c3, c0 @ set domain"
Russell King6e8f5802015-09-11 08:34:52 +0100104 : : "r" (val) : "memory");
Russell King82401bf2012-07-04 17:05:28 +0100105 isb();
106}
Vladimir Murzinec953b72016-05-04 10:39:02 +0100107#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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Russell Kinga5e090a2015-08-19 20:40:41 +0100118#ifdef CONFIG_CPU_USE_DOMAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#define modify_domain(dom,type) \
120 do { \
Russell King1eef5d22015-08-19 21:23:48 +0100121 unsigned int domain = get_domain(); \
Russell King8e798702015-08-19 22:36:24 +0100122 domain &= ~domain_mask(dom); \
Russell King1eef5d22015-08-19 21:23:48 +0100123 domain = domain | domain_val(dom, type); \
124 set_domain(domain); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 } while (0)
126
Russell King002547b2006-06-20 20:46:52 +0100127#else
Russell King82401bf2012-07-04 17:05:28 +0100128static inline void modify_domain(unsigned dom, unsigned type) { }
Russell King002547b2006-06-20 20:46:52 +0100129#endif
130
Catalin Marinas247055a2010-09-13 16:03:21 +0100131/*
132 * Generate the T (user) versions of the LDR/STR and related
133 * instructions (inline assembly)
134 */
135#ifdef CONFIG_CPU_USE_DOMAINS
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100136#define TUSER(instr) #instr "t"
Catalin Marinas247055a2010-09-13 16:03:21 +0100137#else
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100138#define TUSER(instr) #instr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#endif
Catalin Marinas247055a2010-09-13 16:03:21 +0100140
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
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100148#define TUSER(instr) instr ## t
Catalin Marinas247055a2010-09-13 16:03:21 +0100149#else
Catalin Marinas4e7682d2012-01-25 11:38:13 +0100150#define TUSER(instr) instr
Catalin Marinas247055a2010-09-13 16:03:21 +0100151#endif
152
153#endif /* __ASSEMBLY__ */
154
155#endif /* !__ASM_PROC_DOMAIN_H */