Lines Matching refs:accuracy
85 unsigned long accuracy;
602 return core->accuracy;
1631 * callback then it is assumed that the clock will take on the accuracy of its
1642 parent_accuracy = core->parent->accuracy;
1645 core->accuracy = core->ops->recalc_accuracy(core->hw,
1648 core->accuracy = parent_accuracy;
1663 * clk_get_accuracy - return the accuracy of clk
1664 * @clk: the clk whose accuracy is being returned
1666 * Simply returns the cached accuracy of the clk, unless
1673 long accuracy;
1679 accuracy = clk_core_get_accuracy_recalc(clk->core);
1682 return accuracy;
2664 /* propagate rate an accuracy recalculation accordingly */
2767 * clock accuracy. A parent clock phase attribute does not have an
3081 seq_puts(s, " clock count count count rate accuracy phase cycle\n");
3111 seq_printf(s, "\"accuracy\": %lu,", clk_core_get_accuracy_recalc(c));
3374 debugfs_create_ulong("clk_accuracy", 0444, root, &core->accuracy);
3649 * Set clk's accuracy. The preferred method is to use
3651 * fallback is to use the parent's accuracy. If a clock doesn't have a
3652 * parent (or is orphaned) then accuracy is set to zero (perfect
3656 core->accuracy = core->ops->recalc_accuracy(core->hw,
3659 core->accuracy = parent->accuracy;
3661 core->accuracy = 0;