Home
last modified time | relevance | path

Searched refs:M2 (Results 1 – 25 of 65) sorted by relevance

123

/Linux-v4.19/arch/sparc/kernel/
Dtraps_64.c1099 #define M2 144 macro
1104 /*00*/NONE, C0, C1, M2, C2, M2, M3, 47, C3, M2, M2, 53, M2, 41, 29, M,
1105 /*01*/C4, M, M, 50, M2, 38, 25, M2, M2, 33, 24, M2, 11, M, M2, 16,
1106 /*02*/C5, M, M, 46, M2, 37, 19, M2, M, 31, 32, M, 7, M2, M2, 10,
1107 /*03*/M2, 40, 13, M2, 59, M, M2, 66, M, M2, M2, 0, M2, 67, 71, M,
1108 /*04*/C6, M, M, 43, M, 36, 18, M, M2, 49, 15, M, 63, M2, M2, 6,
1109 /*05*/M2, 44, 28, M2, M, M2, M2, 52, 68, M2, M2, 62, M2, M3, M3, M4,
1110 /*06*/M2, 26, 106, M2, 64, M, M2, 2, 120, M, M2, M3, M, M3, M3, M4,
1111 /*07*/116, M2, M2, M3, M2, M3, M, M4, M2, 58, 54, M2, M, M4, M4, M3,
1112 /*08*/C7, M2, M, 42, M, 35, 17, M2, M, 45, 14, M2, 21, M2, M2, 5,
[all …]
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/subdev/clk/
Dpllnv04.c151 int M1, N1, M2, N2, log2P; in getMNP_double() local
177 for (M2 = minM2; M2 <= maxM2; M2++) { in getMNP_double()
178 if (calcclk1/M2 < minU2) in getMNP_double()
180 if (calcclk1/M2 > maxU2) in getMNP_double()
184 N2 = (clkP * M2 + calcclk1/2) / calcclk1; in getMNP_double()
192 if (N2/M2 < 4 || N2/M2 > 10) in getMNP_double()
195 calcclk2 = calcclk1 * N2 / M2; in getMNP_double()
214 *pM2 = M2; in getMNP_double()
228 int *N1, int *M1, int *N2, int *M2, int *P) in nv04_pll_calc() argument
236 *M2 = 1; in nv04_pll_calc()
[all …]
Dnv40.c62 int M2 = (coef & 0x00ff0000) >> 16; in read_pll_2() local
71 if (M2) in read_pll_2()
72 khz = khz * N2 / M2; 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()
160 if (N2 == M2) { in nv40_clk_calc()
165 clk->npll_coef = (N2 << 24) | (M2 << 16) | (N1 << 8) | M1; in nv40_clk_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()
42 pv->M2 = M2; in nv04_clk_pll_calc()
/Linux-v4.19/Documentation/i2c/
Di2c-topology211 '--------' | | mux M1 |--. | mux M2 |--. .--------.
219 and specifically when M2 requests its parent to lock, M1 passes
222 This topology is bad if M2 is an auto-closing mux and M1->select
224 through and be seen by the M2 adapter, thus closing M2 prematurely.
235 '--------' | | mux M1 |--. | mux M2 |--. .--------.
256 '--------' | | mux M1 |--. | mux M2 |--. .--------.
268 be avoided. The reason is that M2 probably assumes that there will
270 if there are, any such transfers might appear on the slave side of M2
274 The topology is especially troublesome if M2 is an auto-closing
275 mux. In that case, any interleaved accesses to D4 might close M2
[all …]
/Linux-v4.19/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()
55 if (N2 == M2) { in nv40_ram_calc()
60 ram->coef = (N2 << 24) | (M2 << 16) | (N1 << 8) | M1; in nv40_ram_calc()
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/
Dnv04.c210 bool single_stage = !pv->NM2 || pv->N2 == pv->M2; /* nv41+ only */ in setPLL_double_highregs()
217 (pv->N2 & 0x7) << 19 | 8 << 4 | (pv->M2 & 7) << 4; in setPLL_double_highregs()
296 bool single_stage = !pv->NM2 || pv->N2 == pv->M2; in setPLL_double_lowregs()
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()
378 pv.M2 = M2; in nv04_devinit_pll_set()
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()
62 (M2 << 16) | N2); in nv50_devinit_pll_set()
/Linux-v4.19/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/
Dpll.h9 uint8_t N1, M1, N2, M2; member
11 uint8_t M1, N1, M2, N2;
/Linux-v4.19/drivers/isdn/hardware/avm/
DKconfig38 tristate "AVM B1/M1/M2 PCMCIA support"
44 tristate "AVM B1/M1/M2 PCMCIA cs module"
47 Enable the PCMCIA client driver for the AVM B1/M1/M2
/Linux-v4.19/Documentation/devicetree/bindings/serial/
Drenesas,sci-serial.txt29 - "renesas,scif-r8a7791" for R8A7791 (R-Car M2-W) SCIF compatible UART.
30 - "renesas,scifa-r8a7791" for R8A7791 (R-Car M2-W) SCIFA compatible UART.
31 - "renesas,scifb-r8a7791" for R8A7791 (R-Car M2-W) SCIFB compatible UART.
32 - "renesas,hscif-r8a7791" for R8A7791 (R-Car M2-W) HSCIF compatible UART.
35 - "renesas,scif-r8a7793" for R8A7793 (R-Car M2-N) SCIF compatible UART.
36 - "renesas,scifa-r8a7793" for R8A7793 (R-Car M2-N) SCIFA compatible UART.
37 - "renesas,scifb-r8a7793" for R8A7793 (R-Car M2-N) SCIFB compatible UART.
38 - "renesas,hscif-r8a7793" for R8A7793 (R-Car M2-N) HSCIF compatible UART.
/Linux-v4.19/Documentation/devicetree/bindings/media/
Drenesas,jpu.txt11 - "renesas,jpu-r8a7791" for R-Car M2-W
13 - "renesas,jpu-r8a7793" for R-Car M2-N
/Linux-v4.19/Documentation/devicetree/bindings/display/
Drenesas,du.txt10 - "renesas,du-r8a7791" for R8A7791 (R-Car M2-W) compatible DU
12 - "renesas,du-r8a7793" for R8A7793 (R-Car M2-N) compatible DU
56 R8A7791 (R-Car M2-W) DPAD 0 LVDS 0 - -
58 R8A7793 (R-Car M2-N) DPAD 0 LVDS 0 - -
/Linux-v4.19/Documentation/devicetree/bindings/power/
Drenesas,apmu.txt13 - "renesas,r8a7791-apmu" (R-Car M2-W)
15 - "renesas,r8a7793-apmu" (R-Car M2-N)
Drenesas,rcar-sysc.txt15 - "renesas,r8a7791-sysc" (R-Car M2-W)
17 - "renesas,r8a7793-sysc" (R-Car M2-N)
/Linux-v4.19/Documentation/devicetree/bindings/ata/
Dsata_rcar.txt8 - "renesas,sata-r8a7791" for R-Car M2-W
9 - "renesas,sata-r8a7793" for R-Car M2-N
/Linux-v4.19/Documentation/devicetree/bindings/interrupt-controller/
Drenesas,irqc.txt12 - "renesas,irqc-r8a7791" (R-Car M2-W)
14 - "renesas,irqc-r8a7793" (R-Car M2-N)
/Linux-v4.19/Documentation/devicetree/bindings/thermal/
Drcar-thermal.txt13 - "renesas,thermal-r8a7791" (R-Car M2-W)
15 - "renesas,thermal-r8a7793" (R-Car M2-N)
/Linux-v4.19/Documentation/devicetree/bindings/clock/
Drenesas,cpg-div6-clocks.txt13 - "renesas,r8a7791-div6-clock" for R8A7791 (R-Car M2-W) DIV6 clocks
14 - "renesas,r8a7793-div6-clock" for R8A7793 (R-Car M2-N) DIV6 clocks
/Linux-v4.19/Documentation/devicetree/bindings/watchdog/
Drenesas-wdt.txt12 - "renesas,r8a7791-wdt" (R-Car M2-W)
14 - "renesas,r8a7793-wdt" (R-Car M2-N)
/Linux-v4.19/tools/perf/util/
Dstat.h11 double n, mean, M2; member
107 stats->M2 = 0.0; in init_stats()
/Linux-v4.19/Documentation/devicetree/bindings/display/bridge/
Drenesas,lvds.txt12 - "renesas,r8a7791-lvds" for R8A7791 (R-Car M2-W) compatible LVDS encoders
13 - "renesas,r8a7793-lvds" for R8A7793 (R-Car M2-N) compatible LVDS encoders
/Linux-v4.19/arch/xtensa/variants/dc232b/include/variant/
Dtie-asm.h53 rsr \at1, M2
96 wsr \at1, M2
/Linux-v4.19/arch/xtensa/variants/de212/include/variant/
Dtie-asm.h99 rsr.M2 \at1 // MAC16 option
154 wsr.M2 \at1 // MAC16 option
/Linux-v4.19/Documentation/devicetree/bindings/dma/
Drenesas,usb-dmac.txt9 - "renesas,r8a7791-usb-dmac" (R-Car M2-W)
10 - "renesas,r8a7793-usb-dmac" (R-Car M2-N)

123