HomeSort by: relevance | last modified time | path
    Searched refs:tbi (Results 1 - 6 of 6) 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...]
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
ls1021a-twr.dts 148 tbi-handle = <&tbi0>;
155 tbi-handle = <&tbi1>;
228 tbi0: tbi-phy@1f {
230 device_type = "tbi-phy";
235 tbi1: tbi-phy@1f {
237 device_type = "tbi-phy";
ls1021a-tsn.dts 105 tbi-handle = <&tbi0>;
112 tbi-handle = <&tbi1>;
235 tbi0: tbi-phy@1f {
237 device_type = "tbi-phy";
243 tbi1: tbi-phy@1f {
245 device_type = "tbi-phy";
ls1021a-qds.dts 130 tbi-handle = <&tbi0>;
137 tbi-handle = <&tbi0>;
325 tbi0: tbi-phy@8 {
327 device_type = "tbi-phy";
  /src/bin/ksh/
exec.c 898 struct tbl *tp = NULL, *tbi;
909 tbi = (flags & FC_BI) ? mytsearch(&builtins, name, h) : NULL;
913 if ((flags & FC_SPECBI) && tbi && (tbi->flag & SPEC_BI))
914 tp = tbi;
926 if (!tp && (flags & FC_REGBI) && tbi && (tbi->flag & REG_BI))
927 tp = tbi;
936 if (!tp && (flags & FC_UNREGBI) && tbi)
937 tp = tbi;
    [all...]
  /src/sys/arch/arm/ep93xx/
epe.c 163 uint32_t tbi = *sc->TXStsQ_cur & 0x7fff; local in function:epe_gctx
164 struct mbuf *m = sc->txq[tbi].m;
169 bus_dmamap_unload(sc->sc_dmat, sc->txq[tbi].m_dmamap);
172 sc->txq[tbi].m = NULL;
174 tbi = (tbi + 1) % TX_QLEN;
175 } while (sc->txq[tbi].m == m);

Completed in 16 milliseconds