Home | History | Annotate | Download | only in nvidia

Lines Matching defs:tdiv

1331 	struct tegra_div_clk *tdiv = &tclk->u.div;
1342 const uint32_t v = bus_space_read_4(bst, bsh, tdiv->reg);
1343 u_int raw_div = __SHIFTOUT(v, tdiv->bits);
1345 switch (tdiv->reg) {
1386 struct tegra_div_clk *tdiv = &tclk->u.div;
1400 v = bus_space_read_4(bst, bsh, tdiv->reg);
1402 raw_div = __SHIFTOUT(tdiv->bits, tdiv->bits);
1404 switch (tdiv->reg) {
1451 v &= ~tdiv->bits;
1452 v |= __SHIFTIN(raw_div, tdiv->bits);
1454 bus_space_write_4(bst, bsh, tdiv->reg, v);