Lines Matching defs:divider
702 uint32_t divider;
707 divider = DIV_ROUND_UP(clk, speed);
709 if (divider < 25) {
711 * limit the divider, so that min(low_count, high_count)
714 divider = 25;
718 clk / divider / 1000, clk / divider % 1000);
719 } else if (divider > 1897) {
721 * limit the divider, so that max(low_count, high_count)
724 divider = 1897;
728 clk / divider / 1000, clk / divider % 1000);
747 low_count = DIV_ROUND_CLOSEST(divider * 13, (13 + 6));
748 high_count = DIV_ROUND_CLOSEST(divider * 6, (13 + 6));
753 low_count = DIV_ROUND_CLOSEST(divider * 47, (47 + 40));
754 high_count = DIV_ROUND_CLOSEST(divider * 40, (47 + 40));
762 "speed=%u(actual %u) divider=%u low=%u high=%u xmit=%u rcv=%u leadin=%u bus_free=%u\n",
763 speed, clk / divider, divider, low_count, high_count,