HomeSort by: relevance | last modified time | path
    Searched defs:tbi (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/arch/aarch64/include/
cpufunc.h 154 #define AARCH64_ADDRTOP_TAG __BIT(55) /* ECR_EL1.TBI[01]=1 */
155 #define AARCH64_ADDRTOP_MSB __BIT(63) /* ECR_EL1.TBI[01]=0 */
156 #define AARCH64_ADDRESS_TAG_MASK __BITS(63,56) /* if TCR.TBI[01]=1 */
164 * return the space considering TBI. (PAC is not yet)
175 uint64_t addrtop, tbi; local in function:aarch64_addressspace
178 tbi = addrtop ? TCR_TBI1 : TCR_TBI0;
179 if (reg_tcr_el1_read() & tbi) {
208 uint64_t addrtop, tbi; local in function:aarch64_untag_address
211 tbi = addrtop ? TCR_TBI1 : TCR_TBI0;
212 if (reg_tcr_el1_read() & tbi) {
    [all...]
cpufunc.h 154 #define AARCH64_ADDRTOP_TAG __BIT(55) /* ECR_EL1.TBI[01]=1 */
155 #define AARCH64_ADDRTOP_MSB __BIT(63) /* ECR_EL1.TBI[01]=0 */
156 #define AARCH64_ADDRESS_TAG_MASK __BITS(63,56) /* if TCR.TBI[01]=1 */
164 * return the space considering TBI. (PAC is not yet)
175 uint64_t addrtop, tbi; local in function:aarch64_addressspace
178 tbi = addrtop ? TCR_TBI1 : TCR_TBI0;
179 if (reg_tcr_el1_read() & tbi) {
208 uint64_t addrtop, tbi; local in function:aarch64_untag_address
211 tbi = addrtop ? TCR_TBI1 : TCR_TBI0;
212 if (reg_tcr_el1_read() & tbi) {
    [all...]
  /src/sys/arch/arm/ep93xx/
epe.c 169 uint32_t tbi = *sc->TXStsQ_cur & 0x7fff; local in function:epe_gctx
170 struct mbuf *m = sc->txq[tbi].m;
175 bus_dmamap_unload(sc->sc_dmat, sc->txq[tbi].m_dmamap);
178 sc->txq[tbi].m = NULL;
180 tbi = (tbi + 1) % TX_QLEN;
181 } while (sc->txq[tbi].m == m);
epe.c 169 uint32_t tbi = *sc->TXStsQ_cur & 0x7fff; local in function:epe_gctx
170 struct mbuf *m = sc->txq[tbi].m;
175 bus_dmamap_unload(sc->sc_dmat, sc->txq[tbi].m_dmamap);
178 sc->txq[tbi].m = NULL;
180 tbi = (tbi + 1) % TX_QLEN;
181 } while (sc->txq[tbi].m == m);

Completed in 22 milliseconds