Lines Matching full:accuracy

80 	unsigned long		accuracy;  member
500 return core->accuracy; in clk_core_get_accuracy_no_lock()
1510 * callback then it is assumed that the clock will take on the accuracy of its
1521 parent_accuracy = core->parent->accuracy; in __clk_recalc_accuracies()
1524 core->accuracy = core->ops->recalc_accuracy(core->hw, in __clk_recalc_accuracies()
1527 core->accuracy = parent_accuracy; in __clk_recalc_accuracies()
1542 * clk_get_accuracy - return the accuracy of clk
1543 * @clk: the clk whose accuracy is being returned
1545 * Simply returns the cached accuracy of the clk, unless
1552 long accuracy; in clk_get_accuracy() local
1558 accuracy = clk_core_get_accuracy_recalc(clk->core); in clk_get_accuracy()
1561 return accuracy; in clk_get_accuracy()
2537 /* propagate rate an accuracy recalculation accordingly */ in clk_core_set_parent_nolock()
2640 * clock accuracy. A parent clock phase attribute does not have an
2954 …seq_puts(s, " clock count count count rate accuracy phas… in clk_summary_show()
2984 seq_printf(s, "\"accuracy\": %lu,", clk_core_get_accuracy_recalc(c)); in clk_dump_one()
3244 debugfs_create_ulong("clk_accuracy", 0444, root, &core->accuracy); in clk_debug_create_one()
3480 * Set clk's accuracy. The preferred method is to use in __clk_core_init()
3482 * fallback is to use the parent's accuracy. If a clock doesn't have a in __clk_core_init()
3483 * parent (or is orphaned) then accuracy is set to zero (perfect in __clk_core_init()
3487 core->accuracy = core->ops->recalc_accuracy(core->hw, in __clk_core_init()
3490 core->accuracy = parent->accuracy; in __clk_core_init()
3492 core->accuracy = 0; in __clk_core_init()