MCPcopy Create free account
hub / github.com/F-Stack/f-stack / smmu_init_strtab

Function smmu_init_strtab

freebsd/arm64/iommu/smmu.c:956–967  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

954}
955
956static int
957smmu_init_strtab(struct smmu_softc *sc)
958{
959 int error;
960
961 if (sc->features & SMMU_FEATURE_2_LVL_STREAM_TABLE)
962 error = smmu_init_strtab_2lvl(sc);
963 else
964 error = smmu_init_strtab_linear(sc);
965
966 return (error);
967}
968
969static int
970smmu_init_l1_entry(struct smmu_softc *sc, int sid)

Callers 1

smmu_attachFunction · 0.85

Calls 2

smmu_init_strtab_2lvlFunction · 0.85
smmu_init_strtab_linearFunction · 0.85

Tested by

no test coverage detected