Linux 4.19.133
[linux/fpc-iii.git] / tools / testing / selftests / powerpc / dscr / dscr.h
blobcdb840bc54f2c64f9f8d30908848363762aa28d1
1 /*
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
17 #include <unistd.h>
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <fcntl.h>
22 #include <dirent.h>
23 #include <pthread.h>
24 #include <sched.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <sys/wait.h>
29 #include "utils.h"
31 #define THREADS 100 /* Max threads */
32 #define COUNT 100 /* Max iterations */
33 #define DSCR_MAX 16 /* Max DSCR value */
34 #define LEN_MAX 100 /* Max name length */
36 #define DSCR_DEFAULT "/sys/devices/system/cpu/dscr_default"
37 #define CPU_PATH "/sys/devices/system/cpu/"
39 #define rmb() asm volatile("lwsync":::"memory")
40 #define wmb() asm volatile("lwsync":::"memory")
42 #define READ_ONCE(x) (*(volatile typeof(x) *)&(x))
44 /* Prilvilege state DSCR access */
45 inline unsigned long get_dscr(void)
47 unsigned long ret;
49 asm volatile("mfspr %0,%1" : "=r" (ret) : "i" (SPRN_DSCR_PRIV));
51 return ret;
54 inline void set_dscr(unsigned long val)
56 asm volatile("mtspr %1,%0" : : "r" (val), "i" (SPRN_DSCR_PRIV));
59 /* Problem state DSCR access */
60 inline unsigned long get_dscr_usr(void)
62 unsigned long ret;
64 asm volatile("mfspr %0,%1" : "=r" (ret) : "i" (SPRN_DSCR));
66 return ret;
69 inline void set_dscr_usr(unsigned long val)
71 asm volatile("mtspr %1,%0" : : "r" (val), "i" (SPRN_DSCR));
74 /* Default DSCR access */
75 unsigned long get_default_dscr(void)
77 int fd = -1, ret;
78 char buf[16];
79 unsigned long val;
81 if (fd == -1) {
82 fd = open(DSCR_DEFAULT, O_RDONLY);
83 if (fd == -1) {
84 perror("open() failed");
85 exit(1);
88 memset(buf, 0, sizeof(buf));
89 lseek(fd, 0, SEEK_SET);
90 ret = read(fd, buf, sizeof(buf));
91 if (ret == -1) {
92 perror("read() failed");
93 exit(1);
95 sscanf(buf, "%lx", &val);
96 close(fd);
97 return val;
100 void set_default_dscr(unsigned long val)
102 int fd = -1, ret;
103 char buf[16];
105 if (fd == -1) {
106 fd = open(DSCR_DEFAULT, O_RDWR);
107 if (fd == -1) {
108 perror("open() failed");
109 exit(1);
112 sprintf(buf, "%lx\n", val);
113 ret = write(fd, buf, strlen(buf));
114 if (ret == -1) {
115 perror("write() failed");
116 exit(1);
118 close(fd);
121 double uniform_deviate(int seed)
123 return seed * (1.0 / (RAND_MAX + 1.0));
125 #endif /* _SELFTESTS_POWERPC_DSCR_DSCR_H */