Lines Matching refs:accuracy
80 unsigned long accuracy;
508 return core->accuracy;
1768 * callback then it is assumed that the clock will take on the accuracy of its
1779 parent_accuracy = core->parent->accuracy;
1782 core->accuracy = core->ops->recalc_accuracy(core->hw,
1785 core->accuracy = parent_accuracy;
1800 * clk_get_accuracy - return the accuracy of clk
1801 * @clk: the clk whose accuracy is being returned
1803 * Simply returns the cached accuracy of the clk, unless
1810 long accuracy;
1816 accuracy = clk_core_get_accuracy_recalc(clk->core);
1819 return accuracy;
2811 /* propagate rate an accuracy recalculation accordingly */
2914 * clock accuracy. A parent clock phase attribute does not have an
3237 seq_puts(s, " clock count count count rate accuracy phase cycle enable\n");
3267 seq_printf(s, "\"accuracy\": %lu,", clk_core_get_accuracy_recalc(c));
3569 debugfs_create_ulong("clk_accuracy", 0444, root, &core->accuracy);
3852 * Set clk's accuracy. The preferred method is to use
3854 * fallback is to use the parent's accuracy. If a clock doesn't have a
3855 * parent (or is orphaned) then accuracy is set to zero (perfect
3859 core->accuracy = core->ops->recalc_accuracy(core->hw,
3862 core->accuracy = parent->accuracy;
3864 core->accuracy = 0;