Searched refs:pdiv (Results 1 - 3 of 3) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/arch-s3c2410/
H A Dregs-s3c2443-clock.h157 unsigned int mdiv, pdiv, sdiv; local
161 pdiv = pllval >> S3C2443_PLLCON_PDIVSHIFT;
165 pdiv &= S3C2443_PLLCON_PDIVMASK;
169 do_div(fvco, pdiv << sdiv);
177 unsigned int mdiv, pdiv, sdiv; local
181 pdiv = pllval >> S3C2443_PLLCON_PDIVSHIFT;
185 pdiv &= S3C2443_PLLCON_PDIVMASK;
189 do_div(fvco, (pdiv + 2) << sdiv);
H A Dregs-clock.h86 unsigned int mdiv, pdiv, sdiv; local
90 pdiv = pllval >> S3C2410_PLLCON_PDIVSHIFT;
94 pdiv &= S3C2410_PLLCON_PDIVMASK;
98 do_div(fvco, (pdiv + 2) << sdiv);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/drivers/pci/
H A Dpci-st40.c55 #define PLL_SET(mdiv,ndiv,pdiv,setup) \
56 ( ((mdiv)&0xff) | (((ndiv)&0xff)<<8) | (((pdiv)&3)<<16)| (((setup)&0x1ff)<<19))
77 unsigned long mdiv, ndiv, pdiv; local
88 pdiv = PLL_PDIV(pll1cr1);
89 printk("mdiv %02lx ndiv %02lx pdiv %02lx\n", mdiv, ndiv, pdiv);
90 freq = ((2*27*ndiv)/mdiv) / (1 << pdiv);

Completed in 223 milliseconds