1 /* SPDX-License-Identifier: GPL-2.0-only */
5 #include <commonlib/endian.h>
8 #define X86_BDA_SIZE 0x200
9 #define X86_BDA_BASE ((void *)0x400)
10 #define X86_EBDA_SEGMENT ((void *)0x40e)
11 #define X86_EBDA_LOWMEM ((void *)0x413)
13 #define DEFAULT_EBDA_LOWMEM (1024 << 10)
14 #define DEFAULT_EBDA_SEGMENT 0xF600
15 #define DEFAULT_EBDA_SIZE 0x400
18 static void *get_ebda_start(void)
20 return (void *)((uintptr_t)DEFAULT_EBDA_SEGMENT
<< 4);
24 * EBDA area is representing a 1KB memory area just below
25 * the top of conventional memory (below 1MB)
28 static void setup_ebda(u32 low_memory_size
, u16 ebda_segment
, u16 ebda_size
)
34 if (!low_memory_size
|| !ebda_segment
|| !ebda_size
)
37 low_memory_kb
= low_memory_size
>> 10;
38 ebda_kb
= ebda_size
>> 10;
39 ebda
= get_ebda_start();
41 /* clear BIOS DATA AREA */
42 zero_n(X86_BDA_BASE
, X86_BDA_SIZE
);
44 /* Avoid unaligned write16() since it's undefined behavior */
45 write_le16(X86_EBDA_LOWMEM
, low_memory_kb
);
46 write_le16(X86_EBDA_SEGMENT
, ebda_segment
);
49 zero_n(ebda
, ebda_size
);
50 write_le16(ebda
, ebda_kb
);
53 static void setup_default_ebda(void *unused
)
55 if (acpi_is_wakeup_s3())
58 setup_ebda(DEFAULT_EBDA_LOWMEM
,
63 /* Ensure EBDA is prepared before Option ROMs. */
64 BOOT_STATE_INIT_ENTRY(BS_DEV_INIT
, BS_ON_ENTRY
, setup_default_ebda
, NULL
);