Lines Matching refs:boot_vinfo
2797 initialize_screen(PE_Video * boot_vinfo, unsigned int op) in initialize_screen() argument
2804 if (boot_vinfo) { in initialize_screen()
2812 new_vinfo.v_width = (unsigned int)boot_vinfo->v_width; in initialize_screen()
2813 new_vinfo.v_height = (unsigned int)boot_vinfo->v_height; in initialize_screen()
2814 new_vinfo.v_depth = (unsigned int)boot_vinfo->v_depth; in initialize_screen()
2815 new_vinfo.v_rowbytes = (unsigned int)boot_vinfo->v_rowBytes; in initialize_screen()
2818 new_vinfo.v_rotate = (unsigned int)boot_vinfo->v_rotate; in initialize_screen()
2821 new_vinfo.v_type = (unsigned int)boot_vinfo->v_display; in initialize_screen()
2825 unsigned int scale = (unsigned int)boot_vinfo->v_scale; in initialize_screen()
2842 newVideoVirt = boot_vinfo->v_baseAddr; in initialize_screen()
2846 new_vinfo.v_physaddr = boot_vinfo->v_baseAddr & ~3UL; /* Get the physical address */ in initialize_screen()
2848 new_vinfo.v_physaddr |= (((uint64_t) boot_vinfo->v_baseAddrHigh) << 32); in initialize_screen()
2875 if (boot_vinfo->v_length != 0) { in initialize_screen()
2876 newMapSize = (unsigned int) round_page(boot_vinfo->v_length); in initialize_screen()
2882 …new_vinfo.v_baseaddr = newVideoVirt + boot_vinfo->v_offset; /* Set the new fra… in initialize_screen()