Home | History | Annotate | Download | only in nvidia

Lines Matching defs:lane

663 tegra210_xusbpad_find_func(const struct tegra210_xusbpad_lane *lane,
666 for (int n = 0; n < lane->nfuncs; n++)
667 if (strcmp(lane->funcs[n], func) == 0)
685 const struct tegra210_xusbpad_lane *lane;
700 lane = tegra210_xusbpad_find_lane(name);
701 if (lane == NULL) {
702 aprint_error_dev(sc->sc_dev, "unsupported lane '%s'\n", name);
705 func = tegra210_xusbpad_find_func(lane, function);
711 aprint_normal_dev(sc->sc_dev, "lane %s: set func %s\n", name, function);
712 SETCLR4(sc, lane->reg, __SHIFTIN(func, lane->mask), lane->mask);
714 if (lane->enable)
715 lane->enable(sc, lane->index);