Searched refs:v_physaddr (Results 1 - 2 of 2) sorted by relevance

/darwin-on-arm/xnu/osfmk/console/
H A Dvideo_console.h68 uint64_t v_physaddr; member in struct:vc_info
H A Dvideo_console.c2584 new_vinfo.v_physaddr = boot_vinfo->v_baseAddr & ~3; /* Get the physical address */
2586 new_vinfo.v_physaddr |= (((uint64_t) boot_vinfo->v_baseAddrHigh) << 32);
2614 new_vinfo.v_physaddr, new_vinfo.v_width, new_vinfo.v_height, new_vinfo.v_rowbytes, new_vinfo.v_type); /* (BRINGUP) */
2616 if (!new_vinfo.v_physaddr) /* Check to see if we have a framebuffer */
2637 new_vinfo.v_physaddr = (((uint64_t)fbppage) << 12) | (boot_vinfo->v_baseAddr & PAGE_MASK); /* Get the physical address */
2646 if ((lastVideoPhys != new_vinfo.v_physaddr) || (fbsize > lastVideoSize)) /* Did framebuffer change location or get bigger? */
2649 newVideoVirt = io_map_spec((vm_map_offset_t)new_vinfo.v_physaddr, fbsize, flags); /* Allocate address space for framebuffer */
2692 lastVideoPhys = new_vinfo.v_physaddr; /* Remember the framebuffer address */

Completed in 23 milliseconds