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