xref: /linux/include/uapi/linux/vesa.h (revision 100c85421b52e41269ada88f7d71a6b8a06c7a11)
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef _UAPI_LINUX_VESA_H
3 #define _UAPI_LINUX_VESA_H
4 
5 /* VESA Blanking Levels */
6 enum vesa_blank_mode {
7 	VESA_NO_BLANKING	= 0,
8 #define VESA_NO_BLANKING	VESA_NO_BLANKING
9 	VESA_VSYNC_SUSPEND	= 1,
10 #define VESA_VSYNC_SUSPEND	VESA_VSYNC_SUSPEND
11 	VESA_HSYNC_SUSPEND	= 2,
12 #define VESA_HSYNC_SUSPEND	VESA_HSYNC_SUSPEND
13 	VESA_POWERDOWN		= VESA_VSYNC_SUSPEND | VESA_HSYNC_SUSPEND,
14 #define VESA_POWERDOWN		VESA_POWERDOWN
15 	VESA_BLANK_MAX		= VESA_POWERDOWN,
16 };
17 
18 #endif
19