Home
last modified time | relevance | path

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

/netbsd/src/sys/arch/sparc/stand/ofwboot/
Dloadfile_machdep.c265 int64_t hv_rc; in tlb_init_sun4v() local
275 hv_rc = hv_mach_desc(pa, &len); in tlb_init_sun4v()
276 if (hv_rc != H_EOK) { in tlb_init_sun4v()
391 int64_t hv_rc; in mmu_mapin_sun4v() local
441 hv_rc = hv_mmu_map_perm_addr(va, data, MAP_DTLB); in mmu_mapin_sun4v()
442 if ( hv_rc != H_EOK ) { in mmu_mapin_sun4v()
443 panic("hv_mmu_map_perm_addr() failed - rc = %ld", hv_rc); in mmu_mapin_sun4v()
677 int64_t hv_rc; in sparc64_finalize_tlb_sun4v() local
707 hv_rc = hv_mmu_unmap_perm_addr(dtlb_store[i].te_va, in sparc64_finalize_tlb_sun4v()
709 if ( hv_rc != H_EOK ) { in sparc64_finalize_tlb_sun4v()
[all …]
/netbsd/src/sys/arch/sparc64/sparc64/
Dcache.c84 int64_t hv_rc; in sp_tlb_flush_pte_sun4v() local
85 hv_rc = hv_mmu_demap_page(va, ctx, MAP_DTLB|MAP_ITLB); in sp_tlb_flush_pte_sun4v()
86 if ( hv_rc != H_EOK ) in sp_tlb_flush_pte_sun4v()
87 … panic("hv_mmu_demap_page(%p,%d) failed - rc = %" PRIx64 "\n", (void*)va, ctx, hv_rc); in sp_tlb_flush_pte_sun4v()
Dpmap.c3809 int64_t hv_rc; in pmap_setup_intstack_sun4v() local
3822 hv_rc = hv_mmu_map_perm_addr(INTSTACK, data, MAP_DTLB); in pmap_setup_intstack_sun4v()
3823 if ( hv_rc != H_EOK ) { in pmap_setup_intstack_sun4v()
3825 hv_rc); in pmap_setup_intstack_sun4v()
/netbsd/src/sys/arch/sparc64/dev/
Dvpci.c338 int64_t hv_rc; in vpci_conf_read() local
340 hv_rc = hv_pci_config_get(pbm->vp_devhandle, PCITAG_OFFSET(tag), reg, 4, in vpci_conf_read()
342 if (hv_rc != H_EOK) in vpci_conf_read()
344 hv_rc); in vpci_conf_read()
357 int64_t hv_rc; in vpci_conf_write() local
360 hv_rc = hv_pci_config_put(pbm->vp_devhandle, PCITAG_OFFSET(tag), reg, 4, in vpci_conf_write()
362 if (hv_rc != H_EOK) in vpci_conf_write()
364 hv_rc); in vpci_conf_write()