mm: hugetlb: fix hugepage memory leak caused by wrong reserve count
[linux/fpc-iii.git] / arch / arm64 / include / asm / dcc.h
blob65e0190e97c8c6b2e34b2e7632e59d0bd85fd395
1 /* Copyright (c) 2014-2015 The Linux Foundation. All rights reserved.
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * A call to __dcc_getchar() or __dcc_putchar() is typically followed by
13 * a call to __dcc_getstatus(). We want to make sure that the CPU does
14 * not speculative read the DCC status before executing the read or write
15 * instruction. That's what the ISBs are for.
17 * The 'volatile' ensures that the compiler does not cache the status bits,
18 * and instead reads the DCC register every time.
20 #ifndef __ASM_DCC_H
21 #define __ASM_DCC_H
23 #include <asm/barrier.h>
25 static inline u32 __dcc_getstatus(void)
27 u32 ret;
29 asm volatile("mrs %0, mdccsr_el0" : "=r" (ret));
31 return ret;
34 static inline char __dcc_getchar(void)
36 char c;
38 asm volatile("mrs %0, dbgdtrrx_el0" : "=r" (c));
39 isb();
41 return c;
44 static inline void __dcc_putchar(char c)
47 * The typecast is to make absolutely certain that 'c' is
48 * zero-extended.
50 asm volatile("msr dbgdtrtx_el0, %0"
51 : : "r" ((unsigned long)(unsigned char)c));
52 isb();
55 #endif