Home
last modified time | relevance | path

Searched refs:fb_phys (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/powerpc/ofw/
H A Dofw_syscons.c228 uint32_t fb_phys; in ofwfb_configure() local
310 if (OF_getproplen(node, "address") == sizeof(fb_phys)) { in ofwfb_configure()
311 OF_getprop(node, "address", &fb_phys, sizeof(fb_phys)); in ofwfb_configure()
313 bus_space_map(sc->sc_tag, fb_phys, sc->sc_height * in ofwfb_configure()
323 fb_phys = sc->sc_num_pciaddrs; in ofwfb_configure()
335 fb_phys = i; in ofwfb_configure()
342 if (fb_phys == sc->sc_num_pciaddrs) in ofwfb_configure()
345 OF_decode_addr(node, fb_phys, &sc->sc_tag, &sc->sc_addr, NULL); in ofwfb_configure()
/freebsd/sys/dev/vt/hw/ofwfb/
H A Dofwfb.c499 bus_addr_t fb_phys; in ofwfb_init()
622 fb_phys = adr[0]; in ofwfb_init()
626 fb_phys = ((uint64_t)adr[0] << 32) | adr[1]; in ofwfb_init()
633 sc->fb.fb_pbase = (vm_paddr_t)fb_phys; in ofwfb_init()
682 if (ofw_reg_to_paddr(node, j, &fb_phys, &fb_phys_size, NULL) < 0) in ofwfb_init()
685 sc->fb.fb_pbase = (vm_paddr_t)fb_phys; in ofwfb_init()
487 bus_addr_t fb_phys; ofwfb_init() local