1 // SPDX-License-Identifier: GPL-2.0-only
3 * Written by Pekka Paalanen, 2008-2009 <pq@iki.fi>
6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8 #include <linux/module.h>
10 #include <linux/mmiotrace.h>
11 #include <linux/security.h>
13 static unsigned long mmio_address
;
14 module_param_hw(mmio_address
, ulong
, iomem
, 0);
15 MODULE_PARM_DESC(mmio_address
, " Start address of the mapping of 16 kB "
16 "(or 8 MB if read_far is non-zero).");
18 static unsigned long read_far
= 0x400100;
19 module_param(read_far
, ulong
, 0);
20 MODULE_PARM_DESC(read_far
, " Offset of a 32-bit read within 8 MB "
21 "(default: 0x400100).");
23 static unsigned v16(unsigned i
)
28 static unsigned v32(unsigned i
)
30 return i
* 212371 + 13;
33 static void do_write_test(void __iomem
*p
)
36 pr_info("write test.\n");
37 mmiotrace_printk("Write test.\n");
39 for (i
= 0; i
< 256; i
++)
42 for (i
= 1024; i
< (5 * 1024); i
+= 2)
43 iowrite16(v16(i
), p
+ i
);
45 for (i
= (5 * 1024); i
< (16 * 1024); i
+= 4)
46 iowrite32(v32(i
), p
+ i
);
49 static void do_read_test(void __iomem
*p
)
52 unsigned errs
[3] = { 0 };
53 pr_info("read test.\n");
54 mmiotrace_printk("Read test.\n");
56 for (i
= 0; i
< 256; i
++)
57 if (ioread8(p
+ i
) != i
)
60 for (i
= 1024; i
< (5 * 1024); i
+= 2)
61 if (ioread16(p
+ i
) != v16(i
))
64 for (i
= (5 * 1024); i
< (16 * 1024); i
+= 4)
65 if (ioread32(p
+ i
) != v32(i
))
68 mmiotrace_printk("Read errors: 8-bit %d, 16-bit %d, 32-bit %d.\n",
69 errs
[0], errs
[1], errs
[2]);
72 static void do_read_far_test(void __iomem
*p
)
74 pr_info("read far test.\n");
75 mmiotrace_printk("Read far test.\n");
77 ioread32(p
+ read_far
);
80 static void do_test(unsigned long size
)
82 void __iomem
*p
= ioremap(mmio_address
, size
);
84 pr_err("could not ioremap, aborting.\n");
87 mmiotrace_printk("ioremap returned %p.\n", p
);
90 if (read_far
&& read_far
< size
- 4)
96 * Tests how mmiotrace behaves in face of multiple ioremap / iounmaps in
97 * a short time. We had a bug in deferred freeing procedure which tried
98 * to free this region multiple times (ioremap can reuse the same address
101 static void do_test_bulk_ioremapping(void)
106 for (i
= 0; i
< 10; ++i
) {
107 p
= ioremap(mmio_address
, PAGE_SIZE
);
112 /* Force freeing. If it will crash we will know why. */
116 static int __init
init(void)
118 unsigned long size
= (read_far
) ? (8 << 20) : (16 << 10);
119 int ret
= security_locked_down(LOCKDOWN_MMIOTRACE
);
124 if (mmio_address
== 0) {
125 pr_err("you have to use the module argument mmio_address.\n");
126 pr_err("DO NOT LOAD THIS MODULE UNLESS YOU REALLY KNOW WHAT YOU ARE DOING!\n");
130 pr_warn("WARNING: mapping %lu kB @ 0x%08lx in PCI address space, "
131 "and writing 16 kB of rubbish in there.\n",
132 size
>> 10, mmio_address
);
134 do_test_bulk_ioremapping();
135 pr_info("All done.\n");
139 static void __exit
cleanup(void)
141 pr_debug("unloaded.\n");
145 module_exit(cleanup
);
146 MODULE_LICENSE("GPL");