Home
last modified time | relevance | path

Searched refs:MAXCPU (Results 1 – 25 of 109) sorted by relevance

12345

/freebsd/sys/x86/include/
H A Dx86_smp.h69 extern u_long *ipi_invltlb_counts[MAXCPU];
70 extern u_long *ipi_invlrng_counts[MAXCPU];
71 extern u_long *ipi_invlpg_counts[MAXCPU];
72 extern u_long *ipi_invlcache_counts[MAXCPU];
73 extern u_long *ipi_rendezvous_counts[MAXCPU];
/freebsd/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris.c39 cpu_core_t cpu_core[MAXCPU];
41 solaris_cpu_t solaris_cpu[MAXCPU];
57 for (i = 0; i < MAXCPU; i++) { in opensolaris_load()
/freebsd/sys/riscv/include/
H A Dparam.h52 #ifndef MAXCPU
53 #define MAXCPU 16 macro
56 #define MAXCPU 1 macro
/freebsd/sys/riscv/riscv/
H A Dmp_machdep.c73 uint32_t __riscv_boot_ap[MAXCPU];
92 static uint32_t cpu_reg[MAXCPU][2];
102 static void *bootstacks[MAXCPU];
111 void *dpcpu[MAXCPU - 1];
339 KASSERT(id < MAXCPU, ("Too many CPUs")); in cpu_init_fdt()
354 KASSERT(hart < MAXCPU, ("Too many harts.")); in cpu_init_fdt()
470 cores = MIN(cores, MAXCPU); in cpu_mp_setmaxid()
/freebsd/sys/arm/include/
H A Dparam.h66 #ifndef MAXCPU
67 #define MAXCPU 4 macro
70 #define MAXCPU 1 macro
/freebsd/sys/arm64/include/
H A Dparam.h59 #ifndef MAXCPU
60 #define MAXCPU 1024 macro
63 #define MAXCPU 1 macro
/freebsd/sys/i386/include/
H A Dparam.h57 #ifndef MAXCPU
58 #define MAXCPU 32 macro
61 #define MAXCPU 1 macro
/freebsd/sys/powerpc/include/
H A Dparam.h78 #ifndef MAXCPU
79 #define MAXCPU 256 macro
82 #define MAXCPU 1 macro
/freebsd/sys/x86/x86/
H A Dmp_x86.c97 void *bootstacks[MAXCPU];
106 u_long *ipi_invltlb_counts[MAXCPU];
107 u_long *ipi_invlrng_counts[MAXCPU];
108 u_long *ipi_invlpg_counts[MAXCPU];
109 u_long *ipi_invlcache_counts[MAXCPU];
138 int cpu_apic_ids[MAXCPU];
715 if (mp_ncpus >= MAXCPU) in assign_cpu_ids()
1181 for (i = 0; i < MAXCPU; i++) { in set_interrupt_apic_ids()
1202 u_int xhits_gbl[MAXCPU];
1203 u_int xhits_pg[MAXCPU];
[all …]
/freebsd/sys/amd64/include/
H A Dparam.h64 #ifndef MAXCPU
65 #define MAXCPU 1024 macro
68 #define MAXCPU 1 macro
/freebsd/sys/arm/arm/
H A Dgic.h41 #if MAXCPU > 8
44 #define GIC_MAXCPU MAXCPU
H A Dpmu.c60 uint32_t ccnt_hi[MAXCPU];
131 for (i = 0; i < MAXCPU; i++) in pmu_attach()
H A Dpmu.h34 #define MAX_RLEN MAXCPU
H A Dmachdep.c532 irqstack = pmap_preboot_get_vpages(IRQ_STACK_SIZE * MAXCPU); in initarm()
533 abtstack = pmap_preboot_get_vpages(ABT_STACK_SIZE * MAXCPU); in initarm()
534 undstack = pmap_preboot_get_vpages(UND_STACK_SIZE * MAXCPU ); in initarm()
H A Dgenassym.c120 ASSYM(MAXCPU, MAXCPU);
/freebsd/sys/arm64/arm64/
H A Dmp_machdep.c122 static void *bootstacks[MAXCPU];
131 static void *dpcpu[MAXCPU - 1];
201 if (cpu >= MAXCPU || cpuid_to_pcpu[cpu] == NULL || in init_secondary()
207 if ( cpu >= MAXCPU) in init_secondary()
467 KASSERT(cpuid < MAXCPU, ("Too many CPUs")); in start_cpu()
780 cores = MIN(cores, MAXCPU); in cpu_mp_setmaxid()
793 cores = MIN(cores, MAXCPU); in cpu_mp_setmaxid()
/freebsd/sys/dev/dpaa/
H A Dbman.h61 bool sc_regs_mapped[MAXCPU]; /* register mapping status */
64 t_Handle sc_bph[MAXCPU]; /* BMAN portal handles */
H A Dqman.h73 bool sc_regs_mapped[MAXCPU];
76 t_Handle sc_qph[MAXCPU]; /* QMAN portal handles */
H A Dportals.h47 dpaa_portal_t sc_dp[MAXCPU];
/freebsd/sys/contrib/ncsw/user/env/
H A Dxx.c115 vm_paddr_t portal_ce_pa[2][MAXCPU];
116 vm_paddr_t portal_ci_pa[2][MAXCPU];
117 uint32_t portal_ce_size[2][MAXCPU];
118 uint32_t portal_ci_size[2][MAXCPU];
121 uintptr_t portal_intr[2][MAXCPU];
290 for (cpu = 0; cpu < MAXCPU; cpu++) in XX_IsPortalIntr()
/freebsd/sys/powerpc/pseries/
H A Dplatform_chrp.c62 static uint8_t splpar_vpa[MAXCPU][640] __aligned(128); /* XXX: dpcpu */
89 static struct cpuref platform_cpuref[MAXCPU];
160 for (i = 0; i < MAXCPU; i++) { in chrp_attach()
402 static struct cpuref tmp_cpuref[MAXCPU]; in chrp_cpuref_init()
/freebsd/sys/tests/epoch/
H A Depoch_test.c131 static struct thread *testthreads[MAXCPU];
132 static struct epoch_test_instance etilist[MAXCPU];
/freebsd/sys/kern/
H A Dsubr_pcpu.c76 uintptr_t dpcpu_off[MAXCPU];
77 struct pcpu *cpuid_to_pcpu[MAXCPU];
88 KASSERT(cpuid >= 0 && cpuid < MAXCPU, in pcpu_init()
/freebsd/sys/sys/
H A D_cpuset.h40 #define CPU_SETSIZE MAXCPU
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dcpu.h55 KASSERT((cpuid >= -1 && cpuid <= MAXCPU), ("%s: invalid cpuid %d\n", in cpumask_next()

12345