Home
last modified time | relevance | path

Searched refs:N1 (Results 1 – 29 of 29) sorted by relevance

/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/clk/
Dnv40.c63 int N1 = (coef & 0x0000ff00) >> 8; in read_pll_2() local
69 khz = ref * N1 / M1; in read_pll_2()
125 int *N1, int *M1, int *N2, int *M2, int *log2P) in nv40_clk_calc_pll() argument
138 ret = nv04_pll_calc(subdev, &pll, khz, N1, M1, N2, M2, log2P); in nv40_clk_calc_pll()
151 int N1, M1, N2, M2, log2P; in nv40_clk_calc() local
156 &N1, &M1, &N2, &M2, &log2P); in nv40_clk_calc()
162 clk->npll_coef = (N1 << 8) | M1; in nv40_clk_calc()
165 clk->npll_coef = (N2 << 24) | (M2 << 16) | (N1 << 8) | M1; in nv40_clk_calc()
171 &N1, &M1, NULL, NULL, &log2P); in nv40_clk_calc()
175 clk->spll = 0xc0000000 | (log2P << 16) | (N1 << 8) | M1; in nv40_clk_calc()
Dpllnv04.c151 int M1, N1, M2, N2, log2P; in getMNP_double() local
170 for (N1 = minN1; N1 <= maxN1; N1++) { in getMNP_double()
171 calcclk1 = crystal * N1 / M1; in getMNP_double()
211 *pN1 = N1; in getMNP_double()
228 int *N1, int *M1, int *N2, int *M2, int *P) in nv04_pll_calc() argument
233 ret = getMNP_single(subdev, info, freq, N1, M1, P); in nv04_pll_calc()
239 ret = getMNP_double(subdev, info, freq, N1, M1, N2, M2, P); in nv04_pll_calc()
Dnv04.c35 int N1, M1, N2, M2, P; in nv04_clk_pll_calc() local
36 int ret = nv04_pll_calc(&clock->subdev, info, clk, &N1, &M1, &N2, &M2, &P); in nv04_clk_pll_calc()
39 pv->N1 = N1; in nv04_clk_pll_calc()
Dpll.h8 int *N1, int *M1, int *N2, int *M2, int *P);
Dmcp77.c57 int N1, M1; in read_pll() local
70 N1 = (coef & 0x0000ff00) >> 8; in read_pll()
73 clock = ref * N1 / M1; in read_pll()
Dnv50.c166 int N1, N2, M1, M2; in read_pll() local
176 N1 = (coef & 0x0000ff00) >> 8; in read_pll()
179 freq = ref * N1 / M1; in read_pll()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/
Dnv50.c41 int N1, M1, N2, M2, P; in nv50_devinit_pll_set() local
50 ret = nv04_pll_calc(subdev, &info, freq, &N1, &M1, &N2, &M2, &P); in nv50_devinit_pll_set()
60 nvkm_mask(device, info.reg + 4, 0x00ff00ff, (M1 << 16) | N1); in nv50_devinit_pll_set()
69 nvkm_wr32(device, info.reg + 4, (N1 << 8) | M1); in nv50_devinit_pll_set()
73 nvkm_wr32(device, info.reg + 4, (N1 << 8) | M1); in nv50_devinit_pll_set()
Dnv04.c164 if (oldM && pv->M1 && (oldN / oldM < pv->N1 / pv->M1)) in setPLL_single()
363 int N1, M1, N2, M2, P; in nv04_devinit_pll_set() local
370 ret = nv04_pll_calc(subdev, &info, freq, &N1, &M1, &N2, &M2, &P); in nv04_devinit_pll_set()
375 pv.N1 = N1; in nv04_devinit_pll_set()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
Dramnv40.c40 int N1, M1, N2, M2; in nv40_ram_calc() local
49 ret = nv04_pll_calc(subdev, &pll, freq, &N1, &M1, &N2, &M2, &log2P); in nv40_ram_calc()
57 ram->coef = (N1 << 8) | M1; in nv40_ram_calc()
60 ram->coef = (N2 << 24) | (M2 << 16) | (N1 << 8) | M1; in nv40_ram_calc()
Dramgf100.c144 int N1, M1, P; in gf100_ram_calc() local
217 &N1, NULL, &M1, &P); in gf100_ram_calc()
226 ram_wr32(fuc, 0x10fe24, (P << 16) | (N1 << 8) | M1); in gf100_ram_calc()
232 &N1, NULL, &M1, &P); in gf100_ram_calc()
239 ram_wr32(fuc, 0x132004, (P << 16) | (N1 << 8) | M1); in gf100_ram_calc()
Dramgk104.c133 int N1, fN1, M1, P1; member
161 const u32 rcoef = (( ram->P1 << 16) | (ram->N1 << 8) | ram->M1); in r1373f4_init()
699 const u32 rcoef = (( ram->P1 << 16) | (ram->N1 << 8) | ram->M1); in gk104_ram_calc_sddr3()
981 int *N1, int *fN1, int *M1, int *P1, in gk104_pll_calc_hiclk() argument
1007 *N1 = n_ref; in gk104_pll_calc_hiclk()
1019 *N1 = n_ref; in gk104_pll_calc_hiclk()
1031 return gk104_calc_pll_output(*fN1, 1, *N1, *P1, crystal); in gk104_pll_calc_hiclk()
1060 &ram->N1, &ram->fN1, &ram->M1, &ram->P1, in gk104_ram_calc_xits()
1071 ret = gt215_pll_calc(subdev, &fuc->refpll, refclk, &ram->N1, in gk104_ram_calc_xits()
Dramnv50.c231 int N1, M1, N2, M2, P; in nv50_ram_calc() local
332 &N1, &M1, &N2, &M2, &P); in nv50_ram_calc()
356 ram_mask(hwsq, 0x00400c, 0x0000ffff, (N1 << 8) | M1); in nv50_ram_calc()
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/
Dpll.h8 uint8_t N1, M1, N2, M2; member
10 uint8_t M1, N1, M2, N2;
/linux-4.4.14/Documentation/arm/SA1100/
DBrutus31 options "9600 8N1"
44 you may use minicom configured with /dev/ttyS1, 9600 baud, 8N1, no flow
DCERF17 - Serial ports with a serial console (hardcoded to 38400 8N1)
DGraphicsClient42 options "38400 8N1"
55 and that minicom is preconfigured with /dev/ttyS1, 38400 baud, 8N1, no flow
/linux-4.4.14/Documentation/networking/
Dvortex.txt88 options=N1,N2,N3,...
134 full_duplex=N1,N2,N3...
143 global_full_duplex=N1
148 flow_ctrl=N1,N2,N3...
186 hw_checksums=N1,N2,N3,...
227 enable_wol=N1,N2,N3,...
/linux-4.4.14/include/net/irda/
Dirlap.h167 int N1; /* N1 * F-timer = Negitiated link disconnect warning threshold */ member
/linux-4.4.14/drivers/gpu/drm/nouveau/dispnv04/
Dhw.c211 return pv->N1 * pv->N2 * pv->refclk / (pv->M1 * pv->M2) >> pv->log2P; in nouveau_hw_pllvals_to_clk()
267 pv.N1 >= pll_lim.vco1.min_n && pv.N1 <= pll_lim.vco1.max_n && in nouveau_hw_fix_bad_vpll()
275 pv.N1 = pll_lim.vco1.min_n; in nouveau_hw_fix_bad_vpll()
Dcrtc.c160 pv->N1, pv->N2, pv->M1, pv->M2, pv->log2P); in nv_crtc_calc_state_ext()
163 pv->N1, pv->M1, pv->log2P); in nv_crtc_calc_state_ext()
/linux-4.4.14/net/irda/
Dirlap.c1055 self->N1 = -2; /* Disable - Need to be multiple of 2*/ in irlap_apply_connection_parameters()
1057 self->N1 = sysctl_warn_noreply_time * 1000 / in irlap_apply_connection_parameters()
1060 pr_debug("Setting N1 = %d\n", self->N1); in irlap_apply_connection_parameters()
Dirlap_event.c1543 if((self->retry_count % self->N1) == 0) in irlap_state_nrm_p()
2158 if((self->retry_count % (self->N1 / 2)) == 0) in irlap_state_nrm_s()
/linux-4.4.14/Documentation/cgroups/
Dmemory.txt583 total=<total pages> N0=<node 0 pages> N1=<node 1 pages> ...
584 file=<total file pages> N0=<node 0 pages> N1=<node 1 pages> ...
585 anon=<total anon pages> N0=<node 0 pages> N1=<node 1 pages> ...
586 unevictable=<total anon pages> N0=<node 0 pages> N1=<node 1 pages> ...
587 hierarchical_<counter>=<counter pages> N0=<node 0 pages> N1=<node 1 pages> ...
/linux-4.4.14/Documentation/m68k/
Dkernel-options.txt188 - "ser": built-in serial port; parameters: 9600bps, 8N1
195 - "ser1": ST-MFP serial port ("Modem1"); parameters: 9600bps, 8N1
196 - "ser2": SCC channel B serial port ("Modem2"); parameters: 9600bps, 8N1
199 - "midi": The MIDI port; parameters: 31250bps, 8N1
/linux-4.4.14/Documentation/filesystems/
Dproc.txt556 node locality page counters (N0 == node0, N1 == node1, ...) and the kernel page
961 /0x2c0 pages=512 vmalloc N0=128 N1=128 N2=128 N3=128
963 /0x2c0 pages=256 vmalloc N0=64 N1=64 N2=64 N3=64
970 /0x80 pages=11 vmalloc N0=3 N1=3 N2=2 N3=3
972 pages=2 vmalloc N1=2
978 pages=4 vmalloc N1=4
980 pages=2 vmalloc N1=2
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmsmac/phy/
Dphy_lcn.c2071 u16 N1, N2, N3, N4, N5, N6, N; in wlc_lcnphy_rfseq_tbl_adc_pwrup() local
2072 N1 = ((read_phy_reg(pi, 0x4a5) & (0xff << 0)) in wlc_lcnphy_rfseq_tbl_adc_pwrup()
2084 N = 2 * (N1 + N2 + N3 + N4 + 2 * (N5 + N6)) + 80; in wlc_lcnphy_rfseq_tbl_adc_pwrup()
/linux-4.4.14/firmware/keyspan_pda/
Dkeyspan_pda.S287 ;; setup the serial port. 9600 8N1.
Dxircom_pgs.S325 ;; setup the serial port. 9600 8N1.
/linux-4.4.14/Documentation/usb/
Dusb-serial.txt235 The Earthmate starts out at 4800 8N1 by default... the driver will