/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/clk/ |
pll.h | 11 int *N1, int *M1, int *N2, int *M2, int *P);
|
nouveau_nvkm_subdev_clk_nv04.c | 40 int N1, M1, N2, M2, P; 41 int ret = nv04_pll_calc(&clock->subdev, info, clk, &N1, &M1, &N2, &M2, &P); 44 pv->N1 = N1;
|
nouveau_nvkm_subdev_clk_nv40.c | 68 int N1 = (coef & 0x0000ff00) >> 8; 74 khz = ref * N1 / M1; 130 int *N1, int *M1, int *N2, int *M2, int *log2P) 143 ret = nv04_pll_calc(subdev, &pll, khz, N1, M1, N2, M2, log2P); 156 int N1, M1, N2, M2, log2P; 161 &N1, &M1, &N2, &M2, &log2P); 167 clk->npll_coef = (N1 << 8) | M1; 170 clk->npll_coef = (N2 << 24) | (M2 << 16) | (N1 << 8) | M1; 176 &N1, &M1, NULL, NULL, &log2P); 180 clk->spll = 0xc0000000 | (log2P << 16) | (N1 << 8) | M1 [all...] |
nouveau_nvkm_subdev_clk_pllnv04.c | 156 int M1, N1, M2, N2, log2P; 175 for (N1 = minN1; N1 <= maxN1; N1++) { 176 calcclk1 = crystal * N1 / M1; 216 *pN1 = N1; 233 int *N1, int *M1, int *N2, int *M2, int *P) 238 ret = getMNP_single(subdev, info, freq, N1, M1, P); 244 ret = getMNP_double(subdev, info, freq, N1, M1, N2, M2, P);
|
nouveau_nvkm_subdev_clk_mcp77.c | 62 int N1, M1; 75 N1 = (coef & 0x0000ff00) >> 8; 78 clock = ref * N1 / M1;
|
nouveau_nvkm_subdev_clk_nv50.c | 171 int N1, N2, M1, M2; 181 N1 = (coef & 0x0000ff00) >> 8; 184 freq = ref * N1 / M1;
|
/src/regress/sys/fs/lfs/newfs_fsck/ |
mkfs_mount | 24 mount -t lfs -o-N1 ${BVND}${MPART} ${TMPMP}
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/ |
pll.h | 11 uint8_t N1, M1, N2, M2; 13 uint8_t M1, N1, M2, N2;
|
/src/sys/external/isc/libsodium/dist/test/default/ |
pwhash_scrypt_ll.c | 7 static const uint64_t N1 = 16U; 54 tv(passwd1, salt1, N1, r1, p1);
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/devinit/ |
nouveau_nvkm_subdev_devinit_nv50.c | 46 int N1, M1, N2, M2, P; 55 ret = nv04_pll_calc(subdev, &info, freq, &N1, &M1, &N2, &M2, &P); 65 nvkm_mask(device, info.reg + 4, 0x00ff00ff, (M1 << 16) | N1); 74 nvkm_wr32(device, info.reg + 4, (N1 << 8) | M1); 78 nvkm_wr32(device, info.reg + 4, (N1 << 8) | M1);
|
nouveau_nvkm_subdev_devinit_nv04.c | 169 if (oldM && pv->M1 && (oldN / oldM < pv->N1 / pv->M1)) 368 int N1, M1, N2, M2, P; 375 ret = nv04_pll_calc(subdev, &info, freq, &N1, &M1, &N2, &M2, &P); 380 pv.N1 = N1;
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/ |
nouveau_nvkm_subdev_fb_ramnv40.c | 45 int N1, M1, N2, M2; 54 ret = nv04_pll_calc(subdev, &pll, freq, &N1, &M1, &N2, &M2, &log2P); 62 ram->coef = (N1 << 8) | M1; 65 ram->coef = (N2 << 24) | (M2 << 16) | (N1 << 8) | M1;
|
nouveau_nvkm_subdev_fb_ramgf100.c | 148 int N1, M1, P; 221 &N1, NULL, &M1, &P); 230 ram_wr32(fuc, 0x10fe24, (P << 16) | (N1 << 8) | M1); 236 &N1, NULL, &M1, &P); 243 ram_wr32(fuc, 0x132004, (P << 16) | (N1 << 8) | M1);
|
nouveau_nvkm_subdev_fb_ramgk104.c | 138 int N1, fN1, M1, P1; 166 const u32 rcoef = (( ram->P1 << 16) | (ram->N1 << 8) | ram->M1); 708 const u32 rcoef = (( ram->P1 << 16) | (ram->N1 << 8) | ram->M1); 994 int *N1, int *fN1, int *M1, int *P1, 1019 *N1 = n_ref; 1030 *N1 = n_ref; 1042 return gk104_calc_pll_output(*fN1, 1, *N1, *P1, crystal); 1071 &ram->N1, &ram->fN1, &ram->M1, &ram->P1, 1082 ret = gt215_pll_calc(subdev, &fuc->refpll, refclk, &ram->N1,
|
nouveau_nvkm_subdev_fb_ramnv50.c | 236 int N1, M1, N2, M2, P; 337 &N1, &M1, &N2, &M2, &P); 361 ram_mask(hwsq, 0x00400c, 0x0000ffff, (N1 << 8) | M1);
|
/src/sys/arch/i386/stand/lib/ |
comio.S | 27 # Initialize the serial port (dl) to 9600 baud, 8N1.
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/ |
nouveau_dispnv04_hw.c | 215 return pv->N1 * pv->N2 * pv->refclk / (pv->M1 * pv->M2) >> pv->log2P; 276 pv.N1 >= pll_lim.vco1.min_n && pv.N1 <= pll_lim.vco1.max_n && 284 pv.N1 = pll_lim.vco1.min_n;
|
nouveau_dispnv04_crtc.c | 165 NV_DEBUG(drm, "vpll: n1 %d n2 %d m1 %d m2 %d log2p %d\n", 166 pv->N1, pv->N2, pv->M1, pv->M2, pv->log2P); 169 pv->N1, pv->M1, pv->log2P);
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/ti/ |
k3-am654-base-board.dts | 171 AM65X_WKUP_IOPAD(0x0070, PIN_OUTPUT, 0) /* (N1) MCU_RGMII1_TXC */
|
/src/usr.bin/make/unit-tests/ |
varmod-indirect.mk | 119 # In the following example, M_NoPrimes expands to 'N2:N3:N5:N7:N1[1379]'.
|
/src/libexec/ld.aout_so/ |
ld.so.sparc.uue | 215 M$H``#;`*0`N1+J`"D`(`&I$J(`*0`@`:E3X@#I,N(`&1*B`#D@)`"I`B`!J2 1006 MNY('OY"`HB``!H``4;`0/_^4$"``EA`@&$``%IC0'[_(IA``"4``%:N1+.`"
|