2 * This file is part of the Linux kernel.
4 * Copyright (c) 2011-2014, Intel Corporation
5 * Authors: Fenghua Yu <fenghua.yu@intel.com>,
6 * H. Peter Anvin <hpa@linux.intel.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
23 #ifndef ASM_X86_ARCHRANDOM_H
24 #define ASM_X86_ARCHRANDOM_H
26 #include <asm/processor.h>
27 #include <asm/cpufeature.h>
28 #include <asm/alternative.h>
31 #define RDRAND_RETRY_LOOPS 10
33 #define RDRAND_INT ".byte 0x0f,0xc7,0xf0"
34 #define RDSEED_INT ".byte 0x0f,0xc7,0xf8"
36 # define RDRAND_LONG ".byte 0x48,0x0f,0xc7,0xf0"
37 # define RDSEED_LONG ".byte 0x48,0x0f,0xc7,0xf8"
39 # define RDRAND_LONG RDRAND_INT
40 # define RDSEED_LONG RDSEED_INT
43 #ifdef CONFIG_ARCH_RANDOM
45 /* Instead of arch_get_random_long() when alternatives haven't run. */
46 static inline int rdrand_long(unsigned long *v)
49 asm volatile("1: " RDRAND_LONG "\n\t"
54 : "=r" (ok), "=a" (*v)
55 : "0" (RDRAND_RETRY_LOOPS));
59 /* A single attempt at RDSEED */
60 static inline bool rdseed_long(unsigned long *v)
63 asm volatile(RDSEED_LONG "\n\t"
65 : "=qm" (ok), "=a" (*v));
69 #define GET_RANDOM(name, type, rdrand, nop) \
70 static inline int name(type *v) \
73 alternative_io("movl $0, %0\n\t" \
75 "\n1: " rdrand "\n\t" \
81 ASM_OUTPUT2("=r" (ok), "=a" (*v)), \
82 "0" (RDRAND_RETRY_LOOPS)); \
86 #define GET_SEED(name, type, rdseed, nop) \
87 static inline int name(type *v) \
90 alternative_io("movb $0, %0\n\t" \
95 ASM_OUTPUT2("=q" (ok), "=a" (*v))); \
101 GET_RANDOM(arch_get_random_long, unsigned long, RDRAND_LONG, ASM_NOP5);
102 GET_RANDOM(arch_get_random_int, unsigned int, RDRAND_INT, ASM_NOP4);
104 GET_SEED(arch_get_random_seed_long, unsigned long, RDSEED_LONG, ASM_NOP5);
105 GET_SEED(arch_get_random_seed_int, unsigned int, RDSEED_INT, ASM_NOP4);
109 GET_RANDOM(arch_get_random_long, unsigned long, RDRAND_LONG, ASM_NOP3);
110 GET_RANDOM(arch_get_random_int, unsigned int, RDRAND_INT, ASM_NOP3);
112 GET_SEED(arch_get_random_seed_long, unsigned long, RDSEED_LONG, ASM_NOP4);
113 GET_SEED(arch_get_random_seed_int, unsigned int, RDSEED_INT, ASM_NOP4);
115 #endif /* CONFIG_X86_64 */
117 #define arch_has_random() static_cpu_has(X86_FEATURE_RDRAND)
118 #define arch_has_random_seed() static_cpu_has(X86_FEATURE_RDSEED)
122 static inline int rdrand_long(unsigned long *v)
127 static inline bool rdseed_long(unsigned long *v)
132 #endif /* CONFIG_ARCH_RANDOM */
134 extern void x86_init_rdrand(struct cpuinfo_x86 *c);
136 #endif /* ASM_X86_ARCHRANDOM_H */