1 #include <linux/init.h>
2 #include <linux/sched.h>
3 #include <linux/kthread.h>
4 #include <linux/workqueue.h>
5 #include <linux/memblock.h>
10 * Some BIOSes seem to corrupt the low 64k of memory during events
11 * like suspend/resume and unplugging an HDMI cable. Reserve all
12 * remaining free memory in that area and fill it with a distinct
15 #define MAX_SCAN_AREAS 8
17 static int __read_mostly memory_corruption_check
= -1;
19 static unsigned __read_mostly corruption_check_size
= 64*1024;
20 static unsigned __read_mostly corruption_check_period
= 60; /* seconds */
22 static struct scan_area
{
25 } scan_areas
[MAX_SCAN_AREAS
];
26 static int num_scan_areas
;
28 static __init
int set_corruption_check(char *arg
)
33 ret
= kstrtoul(arg
, 10, &val
);
37 memory_corruption_check
= val
;
40 early_param("memory_corruption_check", set_corruption_check
);
42 static __init
int set_corruption_check_period(char *arg
)
47 ret
= kstrtoul(arg
, 10, &val
);
51 corruption_check_period
= val
;
54 early_param("memory_corruption_check_period", set_corruption_check_period
);
56 static __init
int set_corruption_check_size(char *arg
)
61 size
= memparse(arg
, &end
);
64 corruption_check_size
= size
;
66 return (size
== corruption_check_size
) ? 0 : -EINVAL
;
68 early_param("memory_corruption_check_size", set_corruption_check_size
);
71 void __init
setup_bios_corruption_check(void)
73 phys_addr_t start
, end
;
76 if (memory_corruption_check
== -1) {
77 memory_corruption_check
=
78 #ifdef CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK
86 if (corruption_check_size
== 0)
87 memory_corruption_check
= 0;
89 if (!memory_corruption_check
)
92 corruption_check_size
= round_up(corruption_check_size
, PAGE_SIZE
);
94 for_each_free_mem_range(i
, NUMA_NO_NODE
, MEMBLOCK_NONE
, &start
, &end
,
96 start
= clamp_t(phys_addr_t
, round_up(start
, PAGE_SIZE
),
97 PAGE_SIZE
, corruption_check_size
);
98 end
= clamp_t(phys_addr_t
, round_down(end
, PAGE_SIZE
),
99 PAGE_SIZE
, corruption_check_size
);
103 memblock_reserve(start
, end
- start
);
104 scan_areas
[num_scan_areas
].addr
= start
;
105 scan_areas
[num_scan_areas
].size
= end
- start
;
107 /* Assume we've already mapped this early memory */
108 memset(__va(start
), 0, end
- start
);
110 if (++num_scan_areas
>= MAX_SCAN_AREAS
)
115 printk(KERN_INFO
"Scanning %d areas for low memory corruption\n", num_scan_areas
);
119 void check_for_bios_corruption(void)
124 if (!memory_corruption_check
)
127 for (i
= 0; i
< num_scan_areas
; i
++) {
128 unsigned long *addr
= __va(scan_areas
[i
].addr
);
129 unsigned long size
= scan_areas
[i
].size
;
131 for (; size
; addr
++, size
-= sizeof(unsigned long)) {
134 printk(KERN_ERR
"Corrupted low memory at %p (%lx phys) = %08lx\n",
135 addr
, __pa(addr
), *addr
);
141 WARN_ONCE(corruption
, KERN_ERR
"Memory corruption detected in low memory\n");
144 static void check_corruption(struct work_struct
*dummy
);
145 static DECLARE_DELAYED_WORK(bios_check_work
, check_corruption
);
147 static void check_corruption(struct work_struct
*dummy
)
149 check_for_bios_corruption();
150 schedule_delayed_work(&bios_check_work
,
151 round_jiffies_relative(corruption_check_period
*HZ
));
154 static int start_periodic_check_for_corruption(void)
156 if (!num_scan_areas
|| !memory_corruption_check
|| corruption_check_period
== 0)
159 printk(KERN_INFO
"Scanning for low memory corruption every %d seconds\n",
160 corruption_check_period
);
162 /* First time we run the checks right away */
163 schedule_delayed_work(&bios_check_work
, 0);
166 device_initcall(start_periodic_check_for_corruption
);