2 * POWER Data Stream Control Register (DSCR)
4 * This header file contains helper functions and macros
5 * required for all the DSCR related test cases.
7 * Copyright 2012, Anton Blanchard, IBM Corporation.
8 * Copyright 2015, Anshuman Khandual, IBM Corporation.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published
12 * by the Free Software Foundation.
14 #ifndef _SELFTESTS_POWERPC_DSCR_DSCR_H
15 #define _SELFTESTS_POWERPC_DSCR_DSCR_H
25 #include <sys/types.h>
31 #define SPRN_DSCR 0x11 /* Privilege state SPR */
32 #define SPRN_DSCR_USR 0x03 /* Problem state SPR */
33 #define THREADS 100 /* Max threads */
34 #define COUNT 100 /* Max iterations */
35 #define DSCR_MAX 16 /* Max DSCR value */
36 #define LEN_MAX 100 /* Max name length */
38 #define DSCR_DEFAULT "/sys/devices/system/cpu/dscr_default"
39 #define CPU_PATH "/sys/devices/system/cpu/"
41 #define rmb() asm volatile("lwsync":::"memory")
42 #define wmb() asm volatile("lwsync":::"memory")
44 #define ACCESS_ONCE(x) (*(volatile typeof(x) *)&(x))
46 /* Prilvilege state DSCR access */
47 inline unsigned long get_dscr(void)
51 asm volatile("mfspr %0,%1" : "=r" (ret
): "i" (SPRN_DSCR
));
56 inline void set_dscr(unsigned long val
)
58 asm volatile("mtspr %1,%0" : : "r" (val
), "i" (SPRN_DSCR
));
61 /* Problem state DSCR access */
62 inline unsigned long get_dscr_usr(void)
66 asm volatile("mfspr %0,%1" : "=r" (ret
): "i" (SPRN_DSCR_USR
));
71 inline void set_dscr_usr(unsigned long val
)
73 asm volatile("mtspr %1,%0" : : "r" (val
), "i" (SPRN_DSCR_USR
));
76 /* Default DSCR access */
77 unsigned long get_default_dscr(void)
84 fd
= open(DSCR_DEFAULT
, O_RDONLY
);
86 perror("open() failed");
90 memset(buf
, 0, sizeof(buf
));
91 lseek(fd
, 0, SEEK_SET
);
92 ret
= read(fd
, buf
, sizeof(buf
));
94 perror("read() failed");
97 sscanf(buf
, "%lx", &val
);
102 void set_default_dscr(unsigned long val
)
108 fd
= open(DSCR_DEFAULT
, O_RDWR
);
110 perror("open() failed");
114 sprintf(buf
, "%lx\n", val
);
115 ret
= write(fd
, buf
, strlen(buf
));
117 perror("write() failed");
123 double uniform_deviate(int seed
)
125 return seed
* (1.0 / (RAND_MAX
+ 1.0));
127 #endif /* _SELFTESTS_POWERPC_DSCR_DSCR_H */