blob: 5174cf0bf590b35587730baed8f8dd2ae5adbed9 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_BIOS_EBDA_H
2#define _ASM_X86_BIOS_EBDA_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
Akinobu Mita2c0903f2008-04-19 23:55:18 +09004#include <asm/io.h>
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006/*
7 * there is a real-mode segmented pointer pointing to the
8 * 4K EBDA area at 0x40E.
9 */
10static inline unsigned int get_bios_ebda(void)
11{
12 unsigned int address = *(unsigned short *)phys_to_virt(0x40E);
13 address <<= 4;
14 return address; /* 0 means none */
15}
16
Mike Waychison57d5f9f2011-03-14 23:58:45 -070017/*
18 * Return the sanitized length of the EBDA in bytes, if it exists.
19 */
20static inline unsigned int get_bios_ebda_length(void)
21{
22 unsigned int address;
23 unsigned int length;
24
25 address = get_bios_ebda();
26 if (!address)
27 return 0;
28
29 /* EBDA length is byte 0 of the EBDA (stored in KiB) */
30 length = *(unsigned char *)phys_to_virt(address);
31 length <<= 10;
32
33 /* Trim the length if it extends beyond 640KiB */
34 length = min_t(unsigned int, (640 * 1024) - address, length);
35 return length;
36}
37
Huang, Ying0c51a962008-06-02 14:26:23 +080038void reserve_ebda_region(void);
39
Ingo Molnar46eaa672008-10-12 15:06:29 +020040#ifdef CONFIG_X86_CHECK_BIOS_CORRUPTION
41/*
42 * This is obviously not a great place for this, but we want to be
43 * able to scatter it around anywhere in the kernel.
44 */
45void check_for_bios_corruption(void);
46void start_periodic_check_for_corruption(void);
47#else
48static inline void check_for_bios_corruption(void)
49{
50}
51
52static inline void start_periodic_check_for_corruption(void)
53{
54}
55#endif
56
H. Peter Anvin1965aae2008-10-22 22:26:29 -070057#endif /* _ASM_X86_BIOS_EBDA_H */