xref: /aosp_15_r20/external/coreboot/src/arch/x86/include/arch/vga.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef ARCH_X86_VGA_H
4 #define ARCH_X86_VGA_H
5 
6 /* VGA MMIO and SMM ASEG share the same address range */
7 #define VGA_MMIO_BASE	0xa0000
8 #define VGA_MMIO_SIZE	0x20000
9 #define VGA_MMIO_LIMIT	(VGA_MMIO_BASE + VGA_MMIO_SIZE - 1)
10 
11 #endif /* ARCH_X86_VGA_H */
12