xref: /freebsd/sys/compat/linuxkpi/common/include/video/vga.h (revision 5e6bddfc43300f344d44afdc80f1bb7a37bd84fc)
1*5e6bddfcSVladimir Kondratyev /* Public domain. */
2*5e6bddfcSVladimir Kondratyev 
3*5e6bddfcSVladimir Kondratyev #ifndef _LINUXKPI_VIDEO_VGA_H
4*5e6bddfcSVladimir Kondratyev #define _LINUXKPI_VIDEO_VGA_H
5*5e6bddfcSVladimir Kondratyev 
6*5e6bddfcSVladimir Kondratyev #define VGA_MIS_W	0x3c2
7*5e6bddfcSVladimir Kondratyev #define VGA_SEQ_I	0x3c4
8*5e6bddfcSVladimir Kondratyev #define VGA_SEQ_D	0x3c5
9*5e6bddfcSVladimir Kondratyev #define VGA_MIS_R	0x3cc
10*5e6bddfcSVladimir Kondratyev 
11*5e6bddfcSVladimir Kondratyev #define VGA_SR01_SCREEN_OFF	(1 << 5)
12*5e6bddfcSVladimir Kondratyev 
13*5e6bddfcSVladimir Kondratyev #define VGA_FB_PHYS_BASE	0xA0000
14*5e6bddfcSVladimir Kondratyev #define VGA_FB_PHYS_SIZE	65536
15*5e6bddfcSVladimir Kondratyev 
16*5e6bddfcSVladimir Kondratyev #endif
17