2 * imr_selftest.c -- Intel Isolated Memory Region self-test driver
4 * Copyright(c) 2013 Intel Corporation.
5 * Copyright(c) 2015 Bryan O'Donoghue <pure.logic@nexus-software.ie>
7 * IMR self test. The purpose of this module is to run a set of tests on the
8 * IMR API to validate it's sanity. We check for overlapping, reserved
9 * addresses and setup/teardown sanity.
13 #include <asm-generic/sections.h>
14 #include <asm/cpu_device_id.h>
16 #include <linux/init.h>
18 #include <linux/types.h>
20 #define SELFTEST KBUILD_MODNAME ": "
22 * imr_self_test_result - Print result string for self test.
24 * @res: result code - true if test passed false otherwise.
25 * @fmt: format string.
26 * ... variadic argument list.
29 void __init
imr_self_test_result(int res
, const char *fmt
, ...)
33 /* Print pass/fail. */
35 pr_info(SELFTEST
"pass ");
37 pr_info(SELFTEST
"fail ");
39 /* Print variable string. */
44 /* Optional warning. */
45 WARN(res
== 0, "test failed");
52 * Verify IMR self_test with some simple tests to verify overlap,
53 * zero sized allocations and 1 KiB sized areas.
56 static void __init
imr_self_test(void)
58 phys_addr_t base
= virt_to_phys(&_text
);
59 size_t size
= virt_to_phys(&__end_rodata
) - base
;
60 const char *fmt_over
= "overlapped IMR @ (0x%08lx - 0x%08lx)\n";
64 ret
= imr_add_range(0, 0, 0, 0);
65 imr_self_test_result(ret
< 0, "zero sized IMR\n");
67 /* Test exact overlap. */
68 ret
= imr_add_range(base
, size
, IMR_CPU
, IMR_CPU
);
69 imr_self_test_result(ret
< 0, fmt_over
, __va(base
), __va(base
+ size
));
71 /* Test overlap with base inside of existing. */
72 base
+= size
- IMR_ALIGN
;
73 ret
= imr_add_range(base
, size
, IMR_CPU
, IMR_CPU
);
74 imr_self_test_result(ret
< 0, fmt_over
, __va(base
), __va(base
+ size
));
76 /* Test overlap with end inside of existing. */
77 base
-= size
+ IMR_ALIGN
* 2;
78 ret
= imr_add_range(base
, size
, IMR_CPU
, IMR_CPU
);
79 imr_self_test_result(ret
< 0, fmt_over
, __va(base
), __va(base
+ size
));
81 /* Test that a 1 KiB IMR @ zero with read/write all will bomb out. */
82 ret
= imr_add_range(0, IMR_ALIGN
, IMR_READ_ACCESS_ALL
,
83 IMR_WRITE_ACCESS_ALL
);
84 imr_self_test_result(ret
< 0, "1KiB IMR @ 0x00000000 - access-all\n");
86 /* Test that a 1 KiB IMR @ zero with CPU only will work. */
87 ret
= imr_add_range(0, IMR_ALIGN
, IMR_CPU
, IMR_CPU
);
88 imr_self_test_result(ret
>= 0, "1KiB IMR @ 0x00000000 - cpu-access\n");
90 ret
= imr_remove_range(0, IMR_ALIGN
);
91 imr_self_test_result(ret
== 0, "teardown - cpu-access\n");
94 /* Test 2 KiB works. */
96 ret
= imr_add_range(0, size
, IMR_READ_ACCESS_ALL
, IMR_WRITE_ACCESS_ALL
);
97 imr_self_test_result(ret
>= 0, "2KiB IMR @ 0x00000000\n");
99 ret
= imr_remove_range(0, size
);
100 imr_self_test_result(ret
== 0, "teardown 2KiB\n");
104 static const struct x86_cpu_id imr_ids
[] __initconst
= {
105 { X86_VENDOR_INTEL
, 5, 9 }, /* Intel Quark SoC X1000. */
110 * imr_self_test_init - entry point for IMR driver.
112 * return: -ENODEV for no IMR support 0 if good to go.
114 static int __init
imr_self_test_init(void)
116 if (x86_match_cpu(imr_ids
))
122 * imr_self_test_exit - exit point for IMR code.
126 device_initcall(imr_self_test_init
);