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

  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/clk/
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_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;
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);
  /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_ramnv50.c 236 int N1, M1, N2, M2, P;
337 &N1, &M1, &N2, &M2, &P);
361 ram_mask(hwsq, 0x00400c, 0x0000ffff, (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,
  /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/include/nvkm/subdev/bios/
pll.h 11 uint8_t N1, M1, N2, M2;
13 uint8_t M1, N1, M2, N2;

Completed in 59 milliseconds