Lines Matching defs:divm
814 int divm, divn, divy, src;
834 divm = (cfgr1 & (RCC_PLLNCFGR1_DIVM_MASK)) >> RCC_PLLNCFGR1_DIVM_SHIFT;
838 debug(" DIVN=%d DIVM=%d DIVY=%d\n", divn, divm, divy);
850 * / (DIVM + 1) * (DIVy + 1)
852 * Fck_pll_y = Fck_ref * ((DIVN + 1) / (DIVM + 1) *(DIVy + 1)
859 ((unsigned long long)(divm + 1) *
862 dfout = (ulong)(refclk * (divn + 1) / (divm + 1) * (divy + 1));