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 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)
49 asm volatile("mfspr %0,%1" : "=r" (ret
) : "i" (SPRN_DSCR_PRIV
));
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)
64 asm volatile("mfspr %0,%1" : "=r" (ret
) : "i" (SPRN_DSCR
));
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)
82 fd
= open(DSCR_DEFAULT
, O_RDONLY
);
84 perror("open() failed");
88 memset(buf
, 0, sizeof(buf
));
89 lseek(fd
, 0, SEEK_SET
);
90 ret
= read(fd
, buf
, sizeof(buf
));
92 perror("read() failed");
95 sscanf(buf
, "%lx", &val
);
100 void set_default_dscr(unsigned long val
)
106 fd
= open(DSCR_DEFAULT
, O_RDWR
);
108 perror("open() failed");
112 sprintf(buf
, "%lx\n", val
);
113 ret
= write(fd
, buf
, strlen(buf
));
115 perror("write() failed");
121 double uniform_deviate(int seed
)
123 return seed
* (1.0 / (RAND_MAX
+ 1.0));
125 #endif /* _SELFTESTS_POWERPC_DSCR_DSCR_H */