Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Russell King | 4baa992 | 2008-08-02 10:55:55 +0100 | [diff] [blame] | 2 | * arch/arm/include/asm/domain.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
David Howells | 9f97da7 | 2012-03-28 18:30:01 +0100 | [diff] [blame] | 13 | #ifndef __ASSEMBLY__ |
| 14 | #include <asm/barrier.h> |
| 15 | #endif |
| 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | /* |
| 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 Buytenhek | 23bdf86 | 2006-03-28 21:00:40 +0100 | [diff] [blame] | 23 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | */ |
Lennert Buytenhek | 23bdf86 | 2006-03-28 21:00:40 +0100 | [diff] [blame] | 35 | #ifndef CONFIG_IO_36 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #define DOMAIN_KERNEL 0 |
| 37 | #define DOMAIN_TABLE 0 |
| 38 | #define DOMAIN_USER 1 |
| 39 | #define DOMAIN_IO 2 |
Lennert Buytenhek | 23bdf86 | 2006-03-28 21:00:40 +0100 | [diff] [blame] | 40 | #else |
| 41 | #define DOMAIN_KERNEL 2 |
| 42 | #define DOMAIN_TABLE 2 |
| 43 | #define DOMAIN_USER 1 |
| 44 | #define DOMAIN_IO 0 |
| 45 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | /* |
| 48 | * Domain types |
| 49 | */ |
| 50 | #define DOMAIN_NOACCESS 0 |
| 51 | #define DOMAIN_CLIENT 1 |
Catalin Marinas | 247055a | 2010-09-13 16:03:21 +0100 | [diff] [blame] | 52 | #ifdef CONFIG_CPU_USE_DOMAINS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #define DOMAIN_MANAGER 3 |
Catalin Marinas | 247055a | 2010-09-13 16:03:21 +0100 | [diff] [blame] | 54 | #else |
| 55 | #define DOMAIN_MANAGER 1 |
| 56 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
Russell King | 8e79870 | 2015-08-19 22:36:24 +0100 | [diff] [blame] | 58 | #define domain_mask(dom) ((3) << (2 * (dom))) |
| 59 | #define domain_val(dom,type) ((type) << (2 * (dom))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Russell King | 0171356 | 2015-08-21 09:23:26 +0100 | [diff] [blame^] | 61 | #define DACR_INIT \ |
| 62 | (domain_val(DOMAIN_USER, DOMAIN_MANAGER) | \ |
| 63 | domain_val(DOMAIN_KERNEL, DOMAIN_MANAGER) | \ |
| 64 | domain_val(DOMAIN_TABLE, DOMAIN_MANAGER) | \ |
| 65 | domain_val(DOMAIN_IO, DOMAIN_CLIENT)) |
| 66 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | #ifndef __ASSEMBLY__ |
Russell King | 002547b | 2006-06-20 20:46:52 +0100 | [diff] [blame] | 68 | |
Russell King | 1eef5d2 | 2015-08-19 21:23:48 +0100 | [diff] [blame] | 69 | static inline unsigned int get_domain(void) |
| 70 | { |
| 71 | unsigned int domain; |
| 72 | |
| 73 | asm( |
| 74 | "mrc p15, 0, %0, c3, c0 @ get domain" |
| 75 | : "=r" (domain)); |
| 76 | |
| 77 | return domain; |
| 78 | } |
| 79 | |
Catalin Marinas | 247055a | 2010-09-13 16:03:21 +0100 | [diff] [blame] | 80 | #ifdef CONFIG_CPU_USE_DOMAINS |
Russell King | 82401bf | 2012-07-04 17:05:28 +0100 | [diff] [blame] | 81 | static inline void set_domain(unsigned val) |
| 82 | { |
| 83 | asm volatile( |
| 84 | "mcr p15, 0, %0, c3, c0 @ set domain" |
| 85 | : : "r" (val)); |
| 86 | isb(); |
| 87 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
| 89 | #define modify_domain(dom,type) \ |
| 90 | do { \ |
Russell King | 1eef5d2 | 2015-08-19 21:23:48 +0100 | [diff] [blame] | 91 | unsigned int domain = get_domain(); \ |
Russell King | 8e79870 | 2015-08-19 22:36:24 +0100 | [diff] [blame] | 92 | domain &= ~domain_mask(dom); \ |
Russell King | 1eef5d2 | 2015-08-19 21:23:48 +0100 | [diff] [blame] | 93 | domain = domain | domain_val(dom, type); \ |
| 94 | set_domain(domain); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } while (0) |
| 96 | |
Russell King | 002547b | 2006-06-20 20:46:52 +0100 | [diff] [blame] | 97 | #else |
Russell King | 82401bf | 2012-07-04 17:05:28 +0100 | [diff] [blame] | 98 | static inline void set_domain(unsigned val) { } |
| 99 | static inline void modify_domain(unsigned dom, unsigned type) { } |
Russell King | 002547b | 2006-06-20 20:46:52 +0100 | [diff] [blame] | 100 | #endif |
| 101 | |
Catalin Marinas | 247055a | 2010-09-13 16:03:21 +0100 | [diff] [blame] | 102 | /* |
| 103 | * Generate the T (user) versions of the LDR/STR and related |
| 104 | * instructions (inline assembly) |
| 105 | */ |
| 106 | #ifdef CONFIG_CPU_USE_DOMAINS |
Catalin Marinas | 4e7682d | 2012-01-25 11:38:13 +0100 | [diff] [blame] | 107 | #define TUSER(instr) #instr "t" |
Catalin Marinas | 247055a | 2010-09-13 16:03:21 +0100 | [diff] [blame] | 108 | #else |
Catalin Marinas | 4e7682d | 2012-01-25 11:38:13 +0100 | [diff] [blame] | 109 | #define TUSER(instr) #instr |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | #endif |
Catalin Marinas | 247055a | 2010-09-13 16:03:21 +0100 | [diff] [blame] | 111 | |
| 112 | #else /* __ASSEMBLY__ */ |
| 113 | |
| 114 | /* |
| 115 | * Generate the T (user) versions of the LDR/STR and related |
| 116 | * instructions |
| 117 | */ |
| 118 | #ifdef CONFIG_CPU_USE_DOMAINS |
Catalin Marinas | 4e7682d | 2012-01-25 11:38:13 +0100 | [diff] [blame] | 119 | #define TUSER(instr) instr ## t |
Catalin Marinas | 247055a | 2010-09-13 16:03:21 +0100 | [diff] [blame] | 120 | #else |
Catalin Marinas | 4e7682d | 2012-01-25 11:38:13 +0100 | [diff] [blame] | 121 | #define TUSER(instr) instr |
Catalin Marinas | 247055a | 2010-09-13 16:03:21 +0100 | [diff] [blame] | 122 | #endif |
| 123 | |
| 124 | #endif /* __ASSEMBLY__ */ |
| 125 | |
| 126 | #endif /* !__ASM_PROC_DOMAIN_H */ |