Home
last modified time | relevance | path

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

/freebsd-12.1/sys/dev/vt/hw/ofwfb/
H A Dofwfb.c361 uint32_t fb_phys; in ofwfb_init() local
434 if (OF_getproplen(node, "address") == sizeof(fb_phys)) { in ofwfb_init()
436 OF_getprop(node, "address", &fb_phys, sizeof(fb_phys)); in ofwfb_init()
440 bus_space_map(sc->sc_memt, fb_phys, sc->fb.fb_size, in ofwfb_init()
446 sparc64_fake_bustag(space, fb_phys, sc->sc_memt); in ofwfb_init()
456 sc->fb.fb_pbase = fb_phys; in ofwfb_init()
483 fb_phys = num_pciaddrs; in ofwfb_init()
494 fb_phys = i; in ofwfb_init()
501 if (fb_phys == num_pciaddrs) /* No candidates found */ in ofwfb_init()
505 OF_decode_addr(node, fb_phys, &sc->sc_memt, &sc->fb.fb_vbase, in ofwfb_init()
/freebsd-12.1/sys/powerpc/ofw/
H A Dofw_syscons.c230 uint32_t fb_phys; in ofwfb_configure() local
312 if (OF_getproplen(node, "address") == sizeof(fb_phys)) { in ofwfb_configure()
313 OF_getprop(node, "address", &fb_phys, sizeof(fb_phys)); in ofwfb_configure()
315 bus_space_map(sc->sc_tag, fb_phys, sc->sc_height * in ofwfb_configure()
325 fb_phys = sc->sc_num_pciaddrs; in ofwfb_configure()
337 fb_phys = i; in ofwfb_configure()
344 if (fb_phys == sc->sc_num_pciaddrs) in ofwfb_configure()
347 OF_decode_addr(node, fb_phys, &sc->sc_tag, &sc->sc_addr, NULL); in ofwfb_configure()
/freebsd-12.1/sys/arm/versatile/
H A Dversatile_clcd.c130 bus_addr_t fb_phys; member
306 dma_size, versatile_fb_dmamap_cb, &sc->fb_phys, BUS_DMA_NOWAIT); in versatile_clcdc_attach()
316 versatile_clcdc_write_4(sc, CLCDC_UPBASE, sc->fb_phys); in versatile_clcdc_attach()
/freebsd-12.1/sys/dev/vt/hw/fb/
H A Dvt_early_fb.c239 info->addr = sparc64_fake_bustag(space, fb_phys, sc->sc_memt); in vt_efb_init()