Merge tag 'pm-4.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
[linux/fpc-iii.git] / arch / x86 / platform / intel-quark / imr_selftest.c
blobb8f562049cad102cd315987f87b099bed97e4cce
1 /**
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>
15 #include <asm/imr.h>
16 #include <linux/init.h>
17 #include <linux/mm.h>
18 #include <linux/types.h>
20 #define SELFTEST KBUILD_MODNAME ": "
21 /**
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.
28 static __printf(2, 3)
29 void __init imr_self_test_result(int res, const char *fmt, ...)
31 va_list vlist;
33 /* Print pass/fail. */
34 if (res)
35 pr_info(SELFTEST "pass ");
36 else
37 pr_info(SELFTEST "fail ");
39 /* Print variable string. */
40 va_start(vlist, fmt);
41 vprintk(fmt, vlist);
42 va_end(vlist);
44 /* Optional warning. */
45 WARN(res == 0, "test failed");
47 #undef SELFTEST
49 /**
50 * imr_self_test
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";
61 int ret;
63 /* Test zero zero. */
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");
89 if (ret >= 0) {
90 ret = imr_remove_range(0, IMR_ALIGN);
91 imr_self_test_result(ret == 0, "teardown - cpu-access\n");
94 /* Test 2 KiB works. */
95 size = IMR_ALIGN * 2;
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");
98 if (ret >= 0) {
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))
117 imr_self_test();
118 return 0;
122 * imr_self_test_exit - exit point for IMR code.
124 * return:
126 device_initcall(imr_self_test_init);