1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright IBM Corp. 1999, 2009
8 #ifndef __ASM_FACILITY_H
9 #define __ASM_FACILITY_H
11 #include <asm/facility-defs.h>
13 #include <linux/minmax.h>
14 #include <linux/string.h>
15 #include <linux/types.h>
16 #include <linux/preempt.h>
18 #include <asm/lowcore.h>
20 #define MAX_FACILITY_BIT (sizeof(stfle_fac_list) * 8)
22 extern u64 stfle_fac_list[16];
23 extern u64 alt_stfle_fac_list[16];
25 static inline void __set_facility(unsigned long nr, void *facilities)
27 unsigned char *ptr = (unsigned char *) facilities;
29 if (nr >= MAX_FACILITY_BIT)
31 ptr[nr >> 3] |= 0x80 >> (nr & 7);
34 static inline void __clear_facility(unsigned long nr, void *facilities)
36 unsigned char *ptr = (unsigned char *) facilities;
38 if (nr >= MAX_FACILITY_BIT)
40 ptr[nr >> 3] &= ~(0x80 >> (nr & 7));
43 static inline int __test_facility(unsigned long nr, void *facilities)
47 if (nr >= MAX_FACILITY_BIT)
49 ptr = (unsigned char *) facilities + (nr >> 3);
50 return (*ptr & (0x80 >> (nr & 7))) != 0;
54 * The test_facility function uses the bit ordering where the MSB is bit 0.
55 * That makes it easier to query facility bits with the bit number as
56 * documented in the Principles of Operation.
58 static inline int test_facility(unsigned long nr)
60 unsigned long facilities_als[] = { FACILITIES_ALS };
62 if (__builtin_constant_p(nr) && nr < sizeof(facilities_als) * 8) {
63 if (__test_facility(nr, &facilities_als))
66 return __test_facility(nr, &stfle_fac_list);
69 static inline unsigned long __stfle_asm(u64 *stfle_fac_list, int size)
71 unsigned long reg0 = size - 1;
75 " .insn s,0xb2b00000,%[list]\n" /* stfle */
77 : [reg0] "+&d" (reg0), [list] "+Q" (*stfle_fac_list)
79 : "memory", "cc", "0");
84 * stfle - Store facility list extended
85 * @stfle_fac_list: array where facility list can be stored
86 * @size: size of passed in array in double words
88 static inline void __stfle(u64 *stfle_fac_list, int size)
95 : "=m" (S390_lowcore.stfl_fac_list));
96 stfl_fac_list = S390_lowcore.stfl_fac_list;
97 memcpy(stfle_fac_list, &stfl_fac_list, 4);
98 nr = 4; /* bytes stored by stfl */
99 if (stfl_fac_list & 0x01000000) {
100 /* More facility bits available with stfle */
101 nr = __stfle_asm(stfle_fac_list, size);
102 nr = min_t(unsigned long, (nr + 1) * 8, size * 8);
104 memset((char *) stfle_fac_list + nr, 0, size * 8 - nr);
107 static inline void stfle(u64 *stfle_fac_list, int size)
110 __stfle(stfle_fac_list, size);
114 #endif /* __ASM_FACILITY_H */