Home
last modified time | relevance | path

Searched refs:N2 (Results 1 – 25 of 37) sorted by relevance

12

/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/clk/
H A Dpllnv04.c151 int M1, N1, M2, N2, log2P; in getMNP_double() local
184 N2 = (clkP * M2 + calcclk1/2) / calcclk1; in getMNP_double()
185 if (N2 < minN2) in getMNP_double()
187 if (N2 > maxN2) in getMNP_double()
192 if (N2/M2 < 4 || N2/M2 > 10) in getMNP_double()
195 calcclk2 = calcclk1 * N2 / M2; in getMNP_double()
213 *pN2 = N2; in getMNP_double()
228 int *N1, int *M1, int *N2, int *M2, int *P) in nv04_pll_calc() argument
232 if (!info->vco2.max_freq || !N2) { in nv04_pll_calc()
234 if (N2) { in nv04_pll_calc()
[all …]
H A Dnv40.c61 int N2 = (coef & 0xff000000) >> 24; in read_pll_2() local
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()
H A 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()
41 pv->N2 = N2; in nv04_clk_pll_calc()
H A Dpll.h9 int *N1, int *M1, int *N2, int *M2, int *P);
H A Dnv50.c166 int N1, N2, M1, M2; in read_pll() local
174 N2 = (coef & 0xff000000) >> 24; in read_pll()
182 freq = freq * N2 / M2; in read_pll()
/openbmc/boost-dbus/include/dbus/
H A Delement.hpp179 template <std::size_t N1, std::size_t... I1, std::size_t N2, std::size_t... I2>
180 constexpr std::array<char, N1 + N2 - 1> concat_helper( in concat_helper()
181 const std::array<char, N1>& a1, const std::array<char, N2>& a2, seq<I1...>, in concat_helper()
186 template <std::size_t N1, std::size_t N2>
188 constexpr const std::array<char, N1 + N2 - 1> concat( in concat()
189 const std::array<char, N1>& a1, const std::array<char, N2>& a2) { in concat()
192 return concat_helper(a1, a2, gen_seq<N1 - 1>{}, gen_seq<N2>{}); in concat()
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/
H A Dnv04.c210 bool single_stage = !pv->NM2 || pv->N2 == pv->M2; /* nv41+ only */ in setPLL_double_highregs()
216 pll1 = (pll1 & 0xfcc7ffff) | (pv->N2 & 0x18) << 21 | 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()
377 pv.N2 = N2; in nv04_devinit_pll_set()
H A 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()
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
H A 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()
H A Dramgk104.c134 int N2, M2, P2; member
160 const u32 mcoef = ((--ram->P2 << 28) | (ram->N2 << 8) | ram->M2); in r1373f4_init()
990 int *N2, int *M2, int *P2) in gk104_pll_calc_hiclk() argument
1013 *N2 = cur_N; in gk104_pll_calc_hiclk()
1024 *N2 = cur_N; in gk104_pll_calc_hiclk()
1033 *fN1 = (u16)((((best_err / *N2 * *P2) * (*P1 * *M1)) << 13) / crystal); in gk104_pll_calc_hiclk()
1067 &ram->N2, &ram->M2, &ram->P2); in gk104_ram_calc_xits()
H A Dramnv50.c230 int N1, M1, N2, M2, P; in nv50_ram_calc() local
331 &N1, &M1, &N2, &M2, &P); in nv50_ram_calc()
/openbmc/linux/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/
H A Dpll.h9 uint8_t N1, M1, N2, M2; member
11 uint8_t M1, N1, M2, N2;
/openbmc/openbmc/poky/meta/conf/machine/include/arm/armv9a/
H A Dtune-neoversen2.inc2 # Tune Settings for Neoverse-N2
6 TUNEVALID[neoversen2] = "Enable Neoverse-N2 specific processor optimizations"
/openbmc/linux/Documentation/arch/arm64/
H A Dsilicon-errata.rst174 | ARM | Neoverse-N2 | #2139208 | ARM64_ERRATUM_2139208 |
176 | ARM | Neoverse-N2 | #2067961 | ARM64_ERRATUM_2067961 |
178 | ARM | Neoverse-N2 | #2253138 | ARM64_ERRATUM_2253138 |
180 | ARM | Neoverse-N2 | #3324339 | ARM64_ERRATUM_3194386 |
/openbmc/linux/arch/arm64/boot/dts/amlogic/
H A Dmeson-g12b-odroid-n2.dts14 model = "Hardkernel ODROID-N2";
H A Dmeson-g12b-odroid-n2.dtsi36 model = "ODROID-N2";
238 * WARNING: The USB Hub on the Odroid-N2 needs a reset signal
/openbmc/openbmc/meta-evb/meta-evb-arm/meta-evb-fvp-base/
H A DREADME.md16 +--------------------------+ | Neoverse RD-N2 FVP |
41 2. Start Neoverse RD-N2 FVP
/openbmc/linux/drivers/clk/pxa/
H A Dclk-pxa25x.c36 #define PXA25x_CCCR(N2, M, L) (N2 << 7 | M << 5 | L) argument
H A Dclk-pxa27x.c51 #define PXA27x_CCCR(A, L, N2) (A << 25 | N2 << 7 | L) argument
/openbmc/linux/drivers/net/wan/
H A DKconfig148 config N2 config
149 tristate "SDL RISCom/N2 support"
152 Driver for RISCom/N2 single or dual channel ISA cards by
/openbmc/linux/Documentation/networking/device_drivers/ethernet/3com/
H A Dvortex.rst94 options=N1,N2,N3,...
145 full_duplex=N1,N2,N3...
159 flow_ctrl=N1,N2,N3...
197 hw_checksums=N1,N2,N3,...
238 enable_wol=N1,N2,N3,...
/openbmc/linux/Documentation/networking/
H A Dlapb-module.rst77 T1 and T2 are protocol timing parameters and are given in units of 100ms. N2
262 LAPB_TIMEDOUT No response was received in N2 tries from the remote
280 LAPB_TIMEDOUT No response was received in N2 tries from the remote
H A Dgeneric-hdlc.rst160 If you have a problem with N2, C101 or PLX200SYN card, you can issue the
/openbmc/linux/drivers/pinctrl/aspeed/
H A Dpinctrl-aspeed-g4.c1543 #define N2 189 macro
1544 SIG_EXPR_LIST_DECL_SINGLE(N2, GPIOX5, GPIOX5, SIG_DESC_SET(SCUA4, 5));
1545 SIG_EXPR_LIST_DECL_SINGLE(N2, ADC13, ADC13);
1546 PIN_DECL_(N2, SIG_EXPR_LIST_PTR(N2, GPIOX5), SIG_EXPR_LIST_PTR(N2, ADC13));
1547 FUNC_GROUP_DECL(ADC13, N2);
2070 ASPEED_PINCTRL_PIN(N2),
2518 ASPEED_SB_PINCONF(PIN_CONFIG_BIAS_PULL_DOWN, N2, N2, SCUA8, 17),
2519 ASPEED_SB_PINCONF(PIN_CONFIG_BIAS_DISABLE, N2, N2, SCUA8, 17),
/openbmc/linux/drivers/gpu/drm/nouveau/dispnv04/
H A Dhw.c141 pllvals->N2 = pllvals->M2 = 1; in nouveau_hw_decode_pll()
156 pllvals->N2 = ((pll1 >> 21) & 0x18) | in nouveau_hw_decode_pll()
211 return pv->N1 * pv->N2 * pv->refclk / (pv->M1 * pv->M2) >> pv->log2P; in nouveau_hw_pllvals_to_clk()

12