1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2020 Intel Corporation
6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8 #include <linux/init.h>
9 #include <linux/module.h>
10 #include <linux/printk.h>
12 /* a tiny module only meant to test
15 * get_count_order/long
18 /* use an enum because thats the most common BITMAP usage */
29 static DECLARE_BITMAP(g_bitmap
, BITOPS_LENGTH
);
31 static unsigned int order_comb
[][2] = {
42 static unsigned long order_comb_long
[][2] = {
43 {0x0000000300000000, 34},
44 {0x0000000400000000, 34},
45 {0x00001fff00000000, 45},
46 {0x0000200000000000, 45},
47 {0x5000000000000000, 63},
48 {0x8000000000000000, 63},
49 {0x8000300000000000, 64},
53 static int __init
test_bitops_startup(void)
57 pr_warn("Loaded test module\n");
58 set_bit(BITOPS_4
, g_bitmap
);
59 set_bit(BITOPS_7
, g_bitmap
);
60 set_bit(BITOPS_11
, g_bitmap
);
61 set_bit(BITOPS_31
, g_bitmap
);
62 set_bit(BITOPS_88
, g_bitmap
);
64 for (i
= 0; i
< ARRAY_SIZE(order_comb
); i
++) {
65 if (order_comb
[i
][1] != get_count_order(order_comb
[i
][0]))
66 pr_warn("get_count_order wrong for %x\n",
70 for (i
= 0; i
< ARRAY_SIZE(order_comb
); i
++) {
71 if (order_comb
[i
][1] != get_count_order_long(order_comb
[i
][0]))
72 pr_warn("get_count_order_long wrong for %x\n",
77 for (i
= 0; i
< ARRAY_SIZE(order_comb_long
); i
++) {
78 if (order_comb_long
[i
][1] !=
79 get_count_order_long(order_comb_long
[i
][0]))
80 pr_warn("get_count_order_long wrong for %lx\n",
81 order_comb_long
[i
][0]);
87 static void __exit
test_bitops_unstartup(void)
91 clear_bit(BITOPS_4
, g_bitmap
);
92 clear_bit(BITOPS_7
, g_bitmap
);
93 clear_bit(BITOPS_11
, g_bitmap
);
94 clear_bit(BITOPS_31
, g_bitmap
);
95 clear_bit(BITOPS_88
, g_bitmap
);
97 bit_set
= find_first_bit(g_bitmap
, BITOPS_LAST
);
98 if (bit_set
!= BITOPS_LAST
)
99 pr_err("ERROR: FOUND SET BIT %d\n", bit_set
);
101 pr_warn("Unloaded test module\n");
104 module_init(test_bitops_startup
);
105 module_exit(test_bitops_unstartup
);
107 MODULE_AUTHOR("Jesse Brandeburg <jesse.brandeburg@intel.com>, Wei Yang <richard.weiyang@gmail.com>");
108 MODULE_LICENSE("GPL");
109 MODULE_DESCRIPTION("Bit testing module");