Lines Matching defs:divider
695 uint32_t divider;
700 divider = DIV_ROUND_UP(clk, speed);
702 if (divider < 25) {
704 * limit the divider, so that min(low_count, high_count)
707 divider = 25;
711 clk / divider / 1000, clk / divider % 1000);
712 } else if (divider > 1897) {
714 * limit the divider, so that max(low_count, high_count)
717 divider = 1897;
721 clk / divider / 1000, clk / divider % 1000);
740 low_count = DIV_ROUND_CLOSEST(divider * 13, (13 + 6));
741 high_count = DIV_ROUND_CLOSEST(divider * 6, (13 + 6));
746 low_count = DIV_ROUND_CLOSEST(divider * 47, (47 + 40));
747 high_count = DIV_ROUND_CLOSEST(divider * 40, (47 + 40));
755 "speed=%u(actual %u) divider=%u low=%u high=%u xmit=%u rcv=%u leadin=%u bus_free=%u\n",
756 speed, clk / divider, divider, low_count, high_count,