master
1/*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software developed by the Computer Systems
8 * Engineering group at Lawrence Berkeley Laboratory under DARPA
9 * contract BG 91-66 and contributed to Berkeley.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * @(#)fbio.h 8.2 (Berkeley) 10/30/93
36 */
37
38#ifndef _SYS_FBIO_H_
39#define _SYS_FBIO_H_
40
41#ifndef _KERNEL
42#include <sys/types.h>
43#else
44#include <sys/param.h>
45#include <sys/systm.h>
46#include <sys/eventhandler.h>
47#endif
48#include <sys/ioccom.h>
49
50/*
51 * Frame buffer ioctls (from Sprite, trimmed to essentials for X11).
52 */
53
54/*
55 * Frame buffer type codes.
56 */
57#define FBTYPE_SUN1BW 0 /* multibus mono */
58#define FBTYPE_SUN1COLOR 1 /* multibus color */
59#define FBTYPE_SUN2BW 2 /* memory mono */
60#define FBTYPE_SUN2COLOR 3 /* color w/rasterop chips */
61#define FBTYPE_SUN2GP 4 /* GP1/GP2 */
62#define FBTYPE_SUN5COLOR 5 /* RoadRunner accelerator */
63#define FBTYPE_SUN3COLOR 6 /* memory color */
64#define FBTYPE_MEMCOLOR 7 /* memory 24-bit */
65#define FBTYPE_SUN4COLOR 8 /* memory color w/overlay */
66
67#define FBTYPE_NOTSUN1 9 /* reserved for customer */
68#define FBTYPE_NOTSUN2 10 /* reserved for customer */
69#define FBTYPE_PCIMISC 11 /* (generic) PCI misc. disp. */
70
71#define FBTYPE_SUNFAST_COLOR 12 /* accelerated 8bit */
72#define FBTYPE_SUNROP_COLOR 13 /* MEMCOLOR with rop h/w */
73#define FBTYPE_SUNFB_VIDEO 14 /* Simple video mixing */
74#define FBTYPE_RESERVED5 15 /* reserved, do not use */
75#define FBTYPE_RESERVED4 16 /* reserved, do not use */
76#define FBTYPE_SUNGP3 17
77#define FBTYPE_SUNGT 18
78#define FBTYPE_SUNLEO 19 /* zx Leo */
79
80#define FBTYPE_MDA 20
81#define FBTYPE_HERCULES 21
82#define FBTYPE_CGA 22
83#define FBTYPE_EGA 23
84#define FBTYPE_VGA 24
85#define FBTYPE_TGA 26
86#define FBTYPE_TGA2 27
87
88#define FBTYPE_MDICOLOR 28 /* cg14 */
89#define FBTYPE_TCXCOLOR 29 /* SUNW,tcx */
90#define FBTYPE_CREATOR 30
91
92#define FBTYPE_EFIFB 31 /* EFI Graphical Output Protocol (GOP) */
93
94#define FBTYPE_LASTPLUSONE 32 /* max number of fbs (change as add) */
95
96/*
97 * Frame buffer descriptor as returned by FBIOGTYPE.
98 */
99struct fbtype {
100 int fb_type; /* as defined above */
101 int fb_height; /* in pixels */
102 int fb_width; /* in pixels */
103 int fb_depth; /* bits per pixel */
104 int fb_cmsize; /* size of color map (entries) */
105 int fb_size; /* total size in bytes */
106};
107#define FBIOGTYPE _IOR('F', 0, struct fbtype)
108
109#define FBTYPE_GET_STRIDE(_fb) ((_fb)->fb_size / (_fb)->fb_height)
110#define FBTYPE_GET_BPP(_fb) ((_fb)->fb_bpp)
111#define FBTYPE_GET_BYTESPP(_fb) ((_fb)->fb_bpp / 8)
112
113/*
114 * RGB offsets as returned by FBIO_GETRGBOFFS.
115 */
116struct fb_rgboffs {
117 int red;
118 int green;
119 int blue;
120};
121
122#ifdef _KERNEL
123
124struct fb_info;
125
126typedef int fb_enter_t(void *priv);
127typedef int fb_leave_t(void *priv);
128typedef int fb_setblankmode_t(void *priv, int mode);
129
130struct fb_info {
131 /* Raw copy of fbtype. Do not change. */
132 int fb_type; /* as defined above */
133 int fb_height; /* in pixels */
134 int fb_width; /* in pixels */
135 int fb_depth; /* bits to define color */
136 int fb_cmsize; /* size of color map (entries) */
137 int fb_size; /* total size in bytes */
138
139 struct cdev *fb_cdev;
140
141 device_t fb_fbd_dev; /* "fbd" device. */
142 device_t fb_video_dev; /* Video adapter. */
143
144 fb_enter_t *enter;
145 fb_leave_t *leave;
146 fb_setblankmode_t *setblankmode;
147
148 vm_paddr_t fb_pbase; /* For FB mmap. */
149 vm_offset_t fb_vbase; /* if NULL, use fb_write/fb_read. */
150 void *fb_priv; /* First argument for read/write. */
151 const char *fb_name;
152 uint32_t fb_flags;
153#define FB_FLAG_NOMMAP 1 /* mmap unsupported. */
154#define FB_FLAG_NOWRITE 2 /* disable writes for the time being */
155#define FB_FLAG_MEMATTR 4 /* override memattr for mmap */
156 vm_memattr_t fb_memattr;
157 int fb_stride;
158 int fb_bpp; /* bits per pixel */
159 uint32_t fb_cmap[16];
160
161 struct fb_rgboffs fb_rgboffs; /* RGB offsets */
162};
163
164int fbd_list(void);
165int fbd_register(struct fb_info *);
166int fbd_unregister(struct fb_info *);
167
168static inline int
169register_framebuffer(struct fb_info *info)
170{
171
172 EVENTHANDLER_INVOKE(register_framebuffer, info);
173 return (0);
174}
175
176static inline int
177unregister_framebuffer(struct fb_info *info)
178{
179
180 EVENTHANDLER_INVOKE(unregister_framebuffer, info);
181 return (0);
182}
183#endif
184
185/*
186 * Color map I/O.
187 */
188struct fbcmap {
189 int index; /* first element (0 origin) */
190 int count; /* number of elements */
191 u_char *red; /* red color map elements */
192 u_char *green; /* green color map elements */
193 u_char *blue; /* blue color map elements */
194};
195#define FBIOPUTCMAP _IOW('F', 3, struct fbcmap)
196#define FBIOGETCMAP _IOW('F', 4, struct fbcmap)
197
198/* The new style frame buffer ioctls. */
199
200/* video mode information block */
201struct video_info {
202 int vi_mode; /* mode number, see below */
203 int vi_flags;
204#define V_INFO_COLOR (1 << 0)
205#define V_INFO_GRAPHICS (1 << 1)
206#define V_INFO_LINEAR (1 << 2)
207#define V_INFO_VESA (1 << 3)
208#define V_INFO_NONVGA (1 << 4)
209#define V_INFO_CWIDTH9 (1 << 5)
210 int vi_width;
211 int vi_height;
212 int vi_cwidth;
213 int vi_cheight;
214 int vi_depth;
215 int vi_planes;
216 vm_offset_t vi_window; /* physical address */
217 size_t vi_window_size;
218 size_t vi_window_gran;
219 vm_offset_t vi_buffer; /* physical address */
220 size_t vi_buffer_size;
221 int vi_mem_model;
222#define V_INFO_MM_OTHER (-1)
223#define V_INFO_MM_TEXT 0
224#define V_INFO_MM_PLANAR 1
225#define V_INFO_MM_PACKED 2
226#define V_INFO_MM_DIRECT 3
227#define V_INFO_MM_CGA 100
228#define V_INFO_MM_HGC 101
229#define V_INFO_MM_VGAX 102
230 /* for MM_PACKED and MM_DIRECT only */
231 int vi_pixel_size; /* in bytes */
232 /* for MM_DIRECT only */
233 int vi_pixel_fields[4]; /* RGB and reserved fields */
234 int vi_pixel_fsizes[4];
235 /* reserved */
236 u_char vi_reserved[64];
237 vm_offset_t vi_registers; /* physical address */
238 vm_offset_t vi_registers_size;
239};
240typedef struct video_info video_info_t;
241
242/* adapter infromation block */
243struct video_adapter {
244 int va_index;
245 int va_type;
246#define KD_OTHER 0 /* unknown */
247#define KD_MONO 1 /* monochrome adapter */
248#define KD_HERCULES 2 /* hercules adapter */
249#define KD_CGA 3 /* color graphics adapter */
250#define KD_EGA 4 /* enhanced graphics adapter */
251#define KD_VGA 5 /* video graphics adapter */
252#define KD_TGA 7 /* TGA */
253#define KD_TGA2 8 /* TGA2 */
254 char *va_name;
255 int va_unit;
256 int va_minor;
257 int va_flags;
258#define V_ADP_COLOR (1 << 0)
259#define V_ADP_MODECHANGE (1 << 1)
260#define V_ADP_STATESAVE (1 << 2)
261#define V_ADP_STATELOAD (1 << 3)
262#define V_ADP_FONT (1 << 4)
263#define V_ADP_PALETTE (1 << 5)
264#define V_ADP_BORDER (1 << 6)
265#define V_ADP_VESA (1 << 7)
266#define V_ADP_BOOTDISPLAY (1 << 8)
267#define V_ADP_PROBED (1 << 16)
268#define V_ADP_INITIALIZED (1 << 17)
269#define V_ADP_REGISTERED (1 << 18)
270#define V_ADP_ATTACHED (1 << 19)
271#define V_ADP_DAC8 (1 << 20)
272#define V_ADP_CWIDTH9 (1 << 21)
273 vm_offset_t va_io_base;
274 int va_io_size;
275 vm_offset_t va_crtc_addr;
276 vm_offset_t va_mem_base;
277 int va_mem_size;
278 vm_offset_t va_window; /* virtual address */
279 size_t va_window_size;
280 size_t va_window_gran;
281 u_int va_window_orig;
282 vm_offset_t va_buffer; /* virtual address */
283 size_t va_buffer_size;
284 int va_initial_mode;
285 int va_initial_bios_mode;
286 int va_mode;
287 struct video_info va_info;
288 int va_line_width;
289 struct {
290 int x;
291 int y;
292 } va_disp_start;
293 void *va_token;
294 int va_model;
295 int va_little_bitian;
296 int va_little_endian;
297 int va_buffer_alias;
298 vm_offset_t va_registers; /* virtual address */
299 vm_offset_t va_registers_size;
300};
301typedef struct video_adapter video_adapter_t;
302
303struct video_adapter_info {
304 int va_index;
305 int va_type;
306 char va_name[16];
307 int va_unit;
308 int va_flags;
309 vm_offset_t va_io_base;
310 int va_io_size;
311 vm_offset_t va_crtc_addr;
312 vm_offset_t va_mem_base;
313 int va_mem_size;
314 vm_offset_t va_window; /* virtual address */
315 size_t va_window_size;
316 size_t va_window_gran;
317 vm_offset_t va_unused0;
318 size_t va_buffer_size;
319 int va_initial_mode;
320 int va_initial_bios_mode;
321 int va_mode;
322 int va_line_width;
323 struct {
324 int x;
325 int y;
326 } va_disp_start;
327 u_int va_window_orig;
328 /* reserved */
329 u_char va_reserved[64];
330};
331typedef struct video_adapter_info video_adapter_info_t;
332
333/* some useful video adapter index */
334#define V_ADP_PRIMARY 0
335#define V_ADP_SECONDARY 1
336
337/* video mode numbers */
338
339#define M_B40x25 0 /* black & white 40 columns */
340#define M_C40x25 1 /* color 40 columns */
341#define M_B80x25 2 /* black & white 80 columns */
342#define M_C80x25 3 /* color 80 columns */
343#define M_BG320 4 /* black & white graphics 320x200 */
344#define M_CG320 5 /* color graphics 320x200 */
345#define M_BG640 6 /* black & white graphics 640x200 hi-res */
346#define M_EGAMONO80x25 7 /* ega-mono 80x25 */
347#define M_CG320_D 13 /* ega mode D */
348#define M_CG640_E 14 /* ega mode E */
349#define M_EGAMONOAPA 15 /* ega mode F */
350#define M_CG640x350 16 /* ega mode 10 */
351#define M_ENHMONOAPA2 17 /* ega mode F with extended memory */
352#define M_ENH_CG640 18 /* ega mode 10* */
353#define M_ENH_B40x25 19 /* ega enhanced black & white 40 columns */
354#define M_ENH_C40x25 20 /* ega enhanced color 40 columns */
355#define M_ENH_B80x25 21 /* ega enhanced black & white 80 columns */
356#define M_ENH_C80x25 22 /* ega enhanced color 80 columns */
357#define M_VGA_C40x25 23 /* vga 8x16 font on color */
358#define M_VGA_C80x25 24 /* vga 8x16 font on color */
359#define M_VGA_M80x25 25 /* vga 8x16 font on mono */
360
361#define M_VGA11 26 /* vga 640x480 2 colors */
362#define M_BG640x480 26
363#define M_VGA12 27 /* vga 640x480 16 colors */
364#define M_CG640x480 27
365#define M_VGA13 28 /* vga 320x200 256 colors */
366#define M_VGA_CG320 28
367
368#define M_VGA_C80x50 30 /* vga 8x8 font on color */
369#define M_VGA_M80x50 31 /* vga 8x8 font on color */
370#define M_VGA_C80x30 32 /* vga 8x16 font on color */
371#define M_VGA_M80x30 33 /* vga 8x16 font on color */
372#define M_VGA_C80x60 34 /* vga 8x8 font on color */
373#define M_VGA_M80x60 35 /* vga 8x8 font on color */
374#define M_VGA_CG640 36 /* vga 640x400 256 color */
375#define M_VGA_MODEX 37 /* vga 320x240 256 color */
376
377#define M_VGA_C90x25 40 /* vga 8x16 font on color */
378#define M_VGA_M90x25 41 /* vga 8x16 font on mono */
379#define M_VGA_C90x30 42 /* vga 8x16 font on color */
380#define M_VGA_M90x30 43 /* vga 8x16 font on mono */
381#define M_VGA_C90x43 44 /* vga 8x8 font on color */
382#define M_VGA_M90x43 45 /* vga 8x8 font on mono */
383#define M_VGA_C90x50 46 /* vga 8x8 font on color */
384#define M_VGA_M90x50 47 /* vga 8x8 font on mono */
385#define M_VGA_C90x60 48 /* vga 8x8 font on color */
386#define M_VGA_M90x60 49 /* vga 8x8 font on mono */
387
388#define M_ENH_B80x43 0x70 /* ega black & white 80x43 */
389#define M_ENH_C80x43 0x71 /* ega color 80x43 */
390
391#define M_HGC_P0 0xe0 /* hercules graphics - page 0 @ B0000 */
392#define M_HGC_P1 0xe1 /* hercules graphics - page 1 @ B8000 */
393#define M_MCA_MODE 0xff /* monochrome adapter mode */
394
395#define M_TEXT_80x25 200 /* generic text modes */
396#define M_TEXT_80x30 201
397#define M_TEXT_80x43 202
398#define M_TEXT_80x50 203
399#define M_TEXT_80x60 204
400#define M_TEXT_132x25 205
401#define M_TEXT_132x30 206
402#define M_TEXT_132x43 207
403#define M_TEXT_132x50 208
404#define M_TEXT_132x60 209
405
406#define M_VESA_BASE 0x100 /* VESA mode number base */
407#define M_VESA_CG640x400 0x100 /* 640x400, 256 color */
408#define M_VESA_CG640x480 0x101 /* 640x480, 256 color */
409#define M_VESA_800x600 0x102 /* 800x600, 16 color */
410#define M_VESA_CG800x600 0x103 /* 800x600, 256 color */
411#define M_VESA_1024x768 0x104 /* 1024x768, 16 color */
412#define M_VESA_CG1024x768 0x105 /* 1024x768, 256 color */
413#define M_VESA_1280x1024 0x106 /* 1280x1024, 16 color */
414#define M_VESA_CG1280x1024 0x107 /* 1280x1024, 256 color */
415#define M_VESA_C80x60 0x108 /* 8x8 font */
416#define M_VESA_C132x25 0x109 /* 8x16 font */
417#define M_VESA_C132x43 0x10a /* 8x14 font */
418#define M_VESA_C132x50 0x10b /* 8x8 font */
419#define M_VESA_C132x60 0x10c /* 8x8 font */
420#define M_VESA_32K_320 0x10d /* 320x200, 5:5:5 */
421#define M_VESA_64K_320 0x10e /* 320x200, 5:6:5 */
422#define M_VESA_FULL_320 0x10f /* 320x200, 8:8:8 */
423#define M_VESA_32K_640 0x110 /* 640x480, 5:5:5 */
424#define M_VESA_64K_640 0x111 /* 640x480, 5:6:5 */
425#define M_VESA_FULL_640 0x112 /* 640x480, 8:8:8 */
426#define M_VESA_32K_800 0x113 /* 800x600, 5:5:5 */
427#define M_VESA_64K_800 0x114 /* 800x600, 5:6:5 */
428#define M_VESA_FULL_800 0x115 /* 800x600, 8:8:8 */
429#define M_VESA_32K_1024 0x116 /* 1024x768, 5:5:5 */
430#define M_VESA_64K_1024 0x117 /* 1024x768, 5:6:5 */
431#define M_VESA_FULL_1024 0x118 /* 1024x768, 8:8:8 */
432#define M_VESA_32K_1280 0x119 /* 1280x1024, 5:5:5 */
433#define M_VESA_64K_1280 0x11a /* 1280x1024, 5:6:5 */
434#define M_VESA_FULL_1280 0x11b /* 1280x1024, 8:8:8 */
435#define M_VESA_MODE_MAX 0x1ff
436
437struct video_display_start {
438 int x;
439 int y;
440};
441typedef struct video_display_start video_display_start_t;
442
443struct video_color_palette {
444 int index; /* first element (zero-based) */
445 int count; /* number of elements */
446 u_char *red; /* red */
447 u_char *green; /* green */
448 u_char *blue; /* blue */
449 u_char *transparent; /* may be NULL */
450};
451typedef struct video_color_palette video_color_palette_t;
452
453/* adapter info. */
454#define FBIO_ADAPTER _IOR('F', 100, int)
455#define FBIO_ADPTYPE _IOR('F', 101, int)
456#define FBIO_ADPINFO _IOR('F', 102, struct video_adapter_info)
457
458/* video mode control */
459#define FBIO_MODEINFO _IOWR('F', 103, struct video_info)
460#define FBIO_FINDMODE _IOWR('F', 104, struct video_info)
461#define FBIO_GETMODE _IOR('F', 105, int)
462#define FBIO_SETMODE _IOW('F', 106, int)
463
464/* get/set frame buffer window origin */
465#define FBIO_GETWINORG _IOR('F', 107, u_int)
466#define FBIO_SETWINORG _IOW('F', 108, u_int)
467
468/* get/set display start address */
469#define FBIO_GETDISPSTART _IOR('F', 109, video_display_start_t)
470#define FBIO_SETDISPSTART _IOW('F', 110, video_display_start_t)
471
472/* get/set scan line width */
473#define FBIO_GETLINEWIDTH _IOR('F', 111, u_int)
474#define FBIO_SETLINEWIDTH _IOW('F', 112, u_int)
475
476/* color palette control */
477#define FBIO_GETPALETTE _IOW('F', 113, video_color_palette_t)
478#define FBIO_SETPALETTE _IOW('F', 114, video_color_palette_t)
479
480/* blank display */
481#define V_DISPLAY_ON 0
482#define V_DISPLAY_BLANK 1
483#define V_DISPLAY_STAND_BY 2
484#define V_DISPLAY_SUSPEND 3
485
486#define FBIO_BLANK _IOW('F', 115, int)
487
488/* get RGB offsets */
489#define FBIO_GETRGBOFFS _IOR('F', 116, struct fb_rgboffs)
490
491#endif /* !_SYS_FBIO_H_ */