HomeSort by: relevance | last modified time | path
    Searched defs:ndiv (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/isc/atheros_hal/dist/ar5416/
ar9280.c 76 uint32_t freq, ndiv, channelSel = 0, channelFrac = 0, reg32 = 0; local in function:ar9280SetChannel
125 ndiv = (freq * (refDivA >> aModeRefSel))/60;
126 channelSel = ndiv & 0x1ff;
127 channelFrac = (ndiv & 0xfffffe00) * 2;
  /src/sys/dev/ic/
arn9280.c 167 uint32_t phy, reg, ndiv = 0; local in function:ar9280_set_synth
204 ndiv = (freq * 3) / 60;
208 ndiv = (freq * 6) / 60;
212 if (ndiv != 0) {
213 phy |= (ndiv & 0x1ff) << 17;
214 phy |= (ndiv & ~0x1ff) * 2;
  /src/sys/arch/arm/broadcom/
bcm53xx_board.c 278 const uint32_t ndiv = bcm53xx_value_wrap(usb2_control, local in function:bcm53xx_usb_clock_init
281 uint32_t usb_ref = (clk->clk_usb2 / pdiv) * ndiv;
318 * F(ddr) = ((1 / pdiv) * ndiv * CH2) / (post_div * 2)
327 u_int ndiv = __SHIFTOUT(pll_dividers, PLL_DIVIDERS_NDIV); local in function:bcm53xx_get_ddr_freq
332 clk->clk_ddr = (clk->clk_ddr_ref / pdiv) * ndiv / (2 + post_div);

Completed in 13 milliseconds