Searched refs:tpte (Results 1 - 8 of 8) sorted by relevance

/freebsd-current/sys/dev/cxgbe/iw_cxgbe/
H A Dev.c43 const struct fw_ri_tpte *tpte)
45 const __be64 *p = (const void *)tpte;
50 G_FW_RI_TPTE_VALID(ntohl(tpte->valid_to_pdid)),
51 G_FW_RI_TPTE_STAGKEY(ntohl(tpte->valid_to_pdid)),
52 G_FW_RI_TPTE_STAGSTATE(ntohl(tpte->valid_to_pdid)),
53 G_FW_RI_TPTE_PDID(ntohl(tpte->valid_to_pdid)),
54 G_FW_RI_TPTE_PERM(ntohl(tpte->locread_to_qpid)),
55 G_FW_RI_TPTE_PS(ntohl(tpte->locread_to_qpid)),
56 (long long)(((u64)ntohl(tpte->len_hi) << 32) | ntohl(tpte
42 print_tpte(struct adapter *sc, const u32 stag, const struct fw_ri_tpte *tpte) argument
[all...]
H A Dqp.c679 fr->tpte.valid_to_pdid = cpu_to_be32(F_FW_RI_TPTE_VALID |
684 fr->tpte.locread_to_qpid = cpu_to_be32(
688 fr->tpte.nosnoop_pbladdr = cpu_to_be32(V_FW_RI_TPTE_PBLADDR(
690 fr->tpte.dca_mwbcnt_pstag = cpu_to_be32(0);
691 fr->tpte.len_hi = cpu_to_be32(mhp->ibmr.length >> 32);
692 fr->tpte.len_lo = cpu_to_be32(mhp->ibmr.length & 0xffffffff);
693 fr->tpte.va_hi = cpu_to_be32(mhp->ibmr.iova >> 32);
694 fr->tpte.va_lo_fbo = cpu_to_be32(mhp->ibmr.iova & 0xffffffff);
/freebsd-current/sys/arm64/arm64/
H A Dpmap.c1909 pt_entry_t *pte, tpte; local
1921 tpte = pmap_load(pte);
1922 pa = PTE_TO_PHYS(tpte);
1926 KASSERT((tpte & ATTR_DESCR_MASK) == L1_BLOCK,
1928 tpte & ATTR_DESCR_MASK));
1932 KASSERT((tpte & ATTR_DESCR_MASK) == L2_BLOCK,
1934 tpte & ATTR_DESCR_MASK));
1938 KASSERT((tpte & ATTR_DESCR_MASK) == L3_PAGE,
1940 tpte & ATTR_DESCR_MASK));
1959 pt_entry_t *pte, tpte; local
2025 pt_entry_t *pte, tpte; local
3063 pt_entry_t *pte, tpte; local
4147 pt_entry_t *pte, tpte; local
6740 pt_entry_t *pte, tpte; local
7195 pt_entry_t *pte, tpte; local
8566 pt_entry_t *pte, tpte; local
[all...]
/freebsd-current/sys/i386/i386/
H A Dpmap.c2315 pt_entry_t *pte, tpte; local
2362 tpte = *pte;
2363 if ((tpte & PG_W) == 0)
2364 tpte = pte_load_clear(pte);
2366 if ((tpte & PG_W) != 0)
2368 KASSERT(tpte != 0,
2371 if ((tpte & PG_G) != 0)
2373 m = PHYS_TO_VM_PAGE(tpte & PG_FRAME);
2374 if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW))
2376 if ((tpte
3209 pt_entry_t *pte, tpte; local
4845 pt_entry_t *pte, tpte; local
[all...]
/freebsd-current/sys/riscv/riscv/
H A Dpmap.c3993 pt_entry_t *pte, tpte; local
4023 tpte = pmap_load(pte);
4025 KASSERT((tpte & PTE_V) != 0,
4027 "va=%#lx, pte=%#lx", pv->pv_va, tpte));
4028 if ((tpte & PTE_RWX) != 0) {
4031 ptepde = tpte;
4033 tpte = pmap_load(pte);
4041 if (tpte & PTE_SW_WIRED) {
4046 m = PTE_TO_VM_PAGE(tpte);
4050 (uintmax_t)tpte));
4700 pt_entry_t *l2, *l3, tpte; local
[all...]
/freebsd-current/sys/powerpc/aim/
H A Dmmu_radix.c1381 pt_entry_t *pte, tpte; local
1463 tpte = be64toh(pte_load_clear(pte));
1464 m = PHYS_TO_VM_PAGE(tpte & PG_FRAME);
1465 if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW))
1467 if ((tpte & PG_A) != 0)
5325 pt_entry_t *pte, tpte; local
5377 tpte = be64toh(pte_load_clear(pte));
5378 if (tpte & PG_W)
5380 if (tpte & PG_A)
5386 if ((tpte
5432 pt_entry_t *pte, tpte; local
[all...]
/freebsd-current/sys/amd64/amd64/
H A Dpmap.c5276 pt_entry_t *pte, tpte; local
5382 tpte = pte_load_clear(pte);
5383 if ((tpte & PG_G) != 0)
5385 m = PHYS_TO_VM_PAGE(tpte & PG_FRAME);
5386 if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW))
5388 if ((tpte & PG_A) != 0)
6566 pt_entry_t *pte, tpte, PG_A, PG_M, PG_RW; local
6618 tpte = pte_load_clear(pte);
6619 if (tpte & PG_W)
6621 if (tpte
8508 pt_entry_t *pte, tpte; local
[all...]
/freebsd-current/sys/dev/cxgbe/firmware/
H A Dt4fw_interface.h1995 struct fw_ri_tpte tpte; member in struct:fw_ri_fr_nsmr_tpte_wr

Completed in 481 milliseconds