1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2019 Intel Corporation 4 */ 5 6 #ifndef __INTEL_VGA_H__ 7 #define __INTEL_VGA_H__ 8 9 #include <linux/types.h> 10 11 struct intel_display; 12 13 u8 intel_vga_read(struct intel_display *display, u16 reg, bool mmio); 14 void intel_vga_reset_io_mem(struct intel_display *display); 15 void intel_vga_disable(struct intel_display *display); 16 void intel_vga_register(struct intel_display *display); 17 void intel_vga_unregister(struct intel_display *display); 18 19 #endif /* __INTEL_VGA_H__ */ 20