| 954 | } |
| 955 | |
| 956 | static int |
| 957 | smmu_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 | |
| 969 | static int |
| 970 | smmu_init_l1_entry(struct smmu_softc *sc, int sid) |
no test coverage detected