/src/sys/arch/x86/x86/ |
genfb_machdep.c | 103 const struct btinfo_framebuffer *fbinfo = NULL; local in function:x86_genfb_init 118 fbinfo = xen_genfb_getbtinfo(); 120 if (fbinfo == NULL) 121 fbinfo = lookup_bootinfo(BTINFO_FRAMEBUFFER); 123 if (fbinfo == NULL || fbinfo->physaddr == 0) 126 err = _x86_memio_map(t, (bus_addr_t)fbinfo->physaddr, 127 fbinfo->height * fbinfo->stride, 141 acpi_md_vesa_modenum = fbinfo->vbemode [all...] |
consinit.c | 168 const struct btinfo_framebuffer *fbinfo = NULL; local in function:consinit 206 fbinfo = xen_genfb_getbtinfo(); 209 fbinfo = lookup_bootinfo(BTINFO_FRAMEBUFFER); 214 if (fbinfo && fbinfo->physaddr > 0) {
|
multiboot2.c | 655 struct btinfo_framebuffer fbinfo; local in function:multiboot2_post_reloc 667 memset(&fbinfo, 0, sizeof(fbinfo)); 692 mbi_vbe((void *)mbt, &fbinfo); 695 mbi_framebuffer((void *)mbt, &fbinfo); 726 bootinfo_add((struct btinfo_common *)&fbinfo, 727 BTINFO_FRAMEBUFFER, sizeof(fbinfo));
|
hyperv.c | 1057 struct btinfo_framebuffer fbinfo; local in function:populate_fbinfo 1062 memcpy(&fbinfo, fbptr, sizeof(fbinfo)); 1064 if (fbinfo.physaddr != 0) { 1065 prop_dictionary_set_uint32(dict, "width", fbinfo.width); 1066 prop_dictionary_set_uint32(dict, "height", fbinfo.height); 1067 prop_dictionary_set_uint8(dict, "depth", fbinfo.depth); 1068 prop_dictionary_set_uint16(dict, "linebytes", fbinfo.stride); 1070 prop_dictionary_set_uint64(dict, "address", fbinfo.physaddr); 1082 (fbinfo.flags & BI_FB_SPLASH) != 0) [all...] |
/src/sys/arch/xen/x86/ |
consinit.c | 156 const struct btinfo_framebuffer *fbinfo = NULL; local in function:consinit 168 fbinfo = xen_genfb_getbtinfo(); 186 if (fbinfo && fbinfo->physaddr > 0) {
|
/src/usr.sbin/tpctl/ |
fb.c | 72 struct wsdisplay_fbinfo fbinfo; local in function:fb_init 83 if (ioctl(fb->fd, WSDISPLAYIO_GINFO, &fbinfo) < 0 || 87 fb->conf.hf_width = fbinfo.width; 88 fb->conf.hf_height = fbinfo.height; 91 fb->conf.hf_bytes_per_plane = fbinfo.height * linebytes; 92 fb->conf.hf_pack_width = fbinfo.depth;
|
/src/sys/arch/amiga/dev/ |
grf.c | 551 struct wsdisplay_fbinfo *fbinfo; local in function:grf_wsioctl 571 fbinfo = (struct wsdisplay_fbinfo *)data; 578 fbinfo->height = gi->gd_fbheight; 579 fbinfo->width = gi->gd_fbwidth; 580 fbinfo->depth = gi->gd_planes; 581 fbinfo->cmsize = gi->gd_colors;
|
/src/sys/arch/ews4800mips/sbd/ |
fb_sbdio.c | 270 struct wsdisplay_fbinfo *fbinfo = (void *)data; local in function:_fb_ioctl 282 fbinfo->height = ri->ri_height; 283 fbinfo->width = ri->ri_width; 284 fbinfo->depth = ri->ri_depth; 285 fbinfo->cmsize = 256;
|
/src/sys/arch/sgimips/gio/ |
light.c | 533 struct wsdisplay_fbinfo *fbinfo = (struct wsdisplay_fbinfo *)data; local in function:light_ioctl 537 fbinfo->width = LIGHT_XRES; 538 fbinfo->height = LIGHT_YRES; 539 fbinfo->depth = LIGHT_DEPTH; 540 fbinfo->cmsize = 1 << LIGHT_DEPTH;
|
/src/sys/dev/sun/ |
fbio.h | 115 struct fbinfo { struct 123 #define FBIOGINFO _IOR('F', 2, struct fbinfo)
|
/src/sys/arch/x86/pci/ |
pci_machdep.c | 1121 struct btinfo_framebuffer fbinfo; local in function:populate_fbinfo 1135 memcpy(&fbinfo, fbptr, sizeof(fbinfo)); 1137 if (fbinfo.physaddr != 0) { 1138 prop_dictionary_set_uint32(dict, "width", fbinfo.width); 1139 prop_dictionary_set_uint32(dict, "height", fbinfo.height); 1140 prop_dictionary_set_uint8(dict, "depth", fbinfo.depth); 1141 prop_dictionary_set_uint16(dict, "linebytes", fbinfo.stride); 1143 prop_dictionary_set_uint64(dict, "address", fbinfo.physaddr); 1155 (fbinfo.flags & BI_FB_SPLASH) != 0) [all...] |