/linux-6.6.21/arch/mips/kernel/ |
D | cacheinfo.c | 60 int cpu1; in fill_cpumask_siblings() local 62 for_each_possible_cpu(cpu1) in fill_cpumask_siblings() 63 if (cpus_are_siblings(cpu, cpu1)) in fill_cpumask_siblings() 64 cpumask_set_cpu(cpu1, cpu_map); in fill_cpumask_siblings() 69 int cpu1; in fill_cpumask_cluster() local 72 for_each_possible_cpu(cpu1) in fill_cpumask_cluster() 73 if (cpu_cluster(&cpu_data[cpu1]) == cluster) in fill_cpumask_cluster() 74 cpumask_set_cpu(cpu1, cpu_map); in fill_cpumask_cluster()
|
/linux-6.6.21/arch/arm/boot/dts/samsung/ |
D | exynos5422-odroidhc1.dts | 62 <&cpu1 0 2>, 78 <&cpu1 3 8>, 88 cpu1_thermal: cpu1-thermal { 111 <&cpu1 0 2>, 122 <&cpu1 3 8>, 155 <&cpu1 0 2>, 166 <&cpu1 3 8>, 199 <&cpu1 0 2>, 210 <&cpu1 3 8>,
|
D | exynos5422-odroidxu3-lite.dts | 53 <&cpu1 3 7>, 64 <&cpu1 3 7>, 75 <&cpu1 3 7>, 86 <&cpu1 3 7>,
|
D | exynos5422-odroidxu3-common.dtsi | 119 <&cpu1 0 2>, 135 <&cpu1 3 8>, 145 cpu1_thermal: cpu1-thermal { 197 <&cpu1 0 2>, 208 <&cpu1 3 8>, 270 <&cpu1 0 2>, 281 <&cpu1 3 8>, 343 <&cpu1 0 2>, 354 <&cpu1 3 8>,
|
D | exynos5420-arndale-octa.dts | 108 <&cpu1 0 2>, 124 <&cpu1 3 6>, 140 <&cpu1 6 11>, 179 <&cpu1 0 2>, 191 <&cpu1 3 6>, 203 <&cpu1 6 11>, 242 <&cpu1 0 2>, 254 <&cpu1 3 6>, 266 <&cpu1 6 11>, 305 <&cpu1 0 2>, [all …]
|
D | exynos4412-prime.dtsi | 33 cooling-device = <&cpu0 9 9>, <&cpu1 9 9>, 38 cooling-device = <&cpu0 15 15>, <&cpu1 15 15>,
|
D | exynos4212.dtsi | 32 cpu = <&cpu1>; 47 cpu1: cpu@a01 { label 151 interrupt-affinity = <&cpu0>, <&cpu1>;
|
/linux-6.6.21/tools/testing/selftests/powerpc/benchmarks/ |
D | context_switch.c | 176 static void pipe_setup(int cpu1, int cpu2) in pipe_setup() argument 219 static void yield_setup(int cpu1, int cpu2) in yield_setup() argument 221 if (cpu1 != cpu2) { in yield_setup() 321 static void futex_setup(int cpu1, int cpu2) in futex_setup() argument 419 int cpu1; in main() local 469 cpu1 = cpu2 = pick_online_cpu(); in main() 471 cpu1 = atoi(argv[optind++]); in main() 491 cpu1, cpu2, touch_fp ? "yes" : "no", touch_altivec ? "yes" : "no", in main() 499 actions->setup(cpu1, cpu2); in main() 501 start_fn(actions->thread1, NULL, cpu1); in main()
|
/linux-6.6.21/arch/arm64/boot/dts/amlogic/ |
D | meson-g12b.dtsi | 23 cpu = <&cpu1>; 56 cpu1: cpu@1 { label 123 <&cpu1 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>, 132 <&cpu1 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
|
D | meson-g12a.dtsi | 24 cpu1: cpu@1 { label 104 <&cpu1 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>, 112 <&cpu1 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
|
D | meson-gxm.dtsi | 19 cpu = <&cpu1>; 49 cpu1: cpu@1 { label 169 <&cpu1 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>, 180 <&cpu1 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>,
|
/linux-6.6.21/arch/x86/kernel/ |
D | smpboot.c | 452 int cpu1 = c->cpu_index, cpu2 = o->cpu_index; in topology_same_node() local 454 return (cpu_to_node(cpu1) == cpu_to_node(cpu2)); in topology_same_node() 460 int cpu1 = c->cpu_index, cpu2 = o->cpu_index; in topology_sane() local 465 cpu1, name, cpu2, cpu_to_node(cpu1), cpu_to_node(cpu2)); in topology_sane() 477 int cpu1 = c->cpu_index, cpu2 = o->cpu_index; in match_smt() local 481 per_cpu(cpu_llc_id, cpu1) == per_cpu(cpu_llc_id, cpu2)) { in match_smt() 510 int cpu1 = c->cpu_index, cpu2 = o->cpu_index; in match_l2c() local 513 if (per_cpu(cpu_l2c_id, cpu1) == BAD_APICID) in match_l2c() 517 if (per_cpu(cpu_l2c_id, cpu1) != per_cpu(cpu_l2c_id, cpu2)) in match_l2c() 559 int cpu1 = c->cpu_index, cpu2 = o->cpu_index; in match_llc() local [all …]
|
/linux-6.6.21/arch/arm64/boot/dts/st/ |
D | stm32mp253.dtsi | 10 cpu1: cpu@1 { label 21 interrupt-affinity = <&cpu0>, <&cpu1>;
|
/linux-6.6.21/kernel/ |
D | stop_machine.c | 261 static int cpu_stop_queue_two_works(int cpu1, struct cpu_stop_work *work1, in cpu_stop_queue_two_works() argument 264 struct cpu_stopper *stopper1 = per_cpu_ptr(&cpu_stopper, cpu1); in cpu_stop_queue_two_works() 334 int stop_two_cpus(unsigned int cpu1, unsigned int cpu2, cpu_stop_fn_t fn, void *arg) in stop_two_cpus() argument 344 .active_cpus = cpumask_of(cpu1), in stop_two_cpus() 357 if (cpu1 > cpu2) in stop_two_cpus() 358 swap(cpu1, cpu2); in stop_two_cpus() 359 if (cpu_stop_queue_two_works(cpu1, &work1, cpu2, &work2)) in stop_two_cpus()
|
/linux-6.6.21/Documentation/devicetree/bindings/arm/altera/ |
D | socfpga-system.txt | 6 - cpu1-start-addr : CPU1 start address in hex. 12 cpu1-start-addr = <0xffd080c4>;
|
/linux-6.6.21/arch/arm64/boot/dts/exynos/ |
D | exynos5433-tmu.dtsi | 232 cooling-device = <&cpu0 1 2>, <&cpu1 1 2>, 238 cooling-device = <&cpu0 2 3>, <&cpu1 2 3>, 244 cooling-device = <&cpu0 3 4>, <&cpu1 3 4>, 250 cooling-device = <&cpu0 4 5>, <&cpu1 4 5>, 256 cooling-device = <&cpu0 5 9>, <&cpu1 5 9>,
|
/linux-6.6.21/arch/arm64/boot/dts/realtek/ |
D | rtd1293.dtsi | 24 cpu1: cpu@1 { label 52 interrupt-affinity = <&cpu0>, <&cpu1>;
|
D | rtd1395.dtsi | 24 cpu1: cpu@1 { label 66 interrupt-affinity = <&cpu0>, <&cpu1>, <&cpu2>, <&cpu3>;
|
D | rtd1295.dtsi | 24 cpu1: cpu@1 { label 66 interrupt-affinity = <&cpu0>, <&cpu1>, <&cpu2>, <&cpu3>;
|
D | rtd1296.dtsi | 24 cpu1: cpu@1 { label 66 interrupt-affinity = <&cpu0>, <&cpu1>, <&cpu2>, <&cpu3>;
|
/linux-6.6.21/arch/arm/boot/dts/rockchip/ |
D | rk3288-veyron-mickey.dts | 91 <&cpu1 THERMAL_NO_LIMIT 4>, 118 cooling-device = <&cpu0 5 6>, <&cpu1 5 6>, <&cpu2 5 6>, 123 cooling-device = <&cpu0 7 7>, <&cpu1 7 7>, <&cpu2 7 7>, 128 cooling-device = <&cpu0 7 8>, <&cpu1 7 8>, <&cpu2 7 8>, 134 <&cpu1 8 THERMAL_NO_LIMIT>, 195 <&cpu1 4 4>,
|
/linux-6.6.21/arch/arm64/boot/dts/marvell/ |
D | armada-ap80x.dtsi | 360 <&cpu1 1 2>; 365 <&cpu1 3 3>; 370 ap_thermal_cpu1: ap-cpu1-thermal { 377 cpu1_hot: cpu1-hot { 382 cpu1_emerg: cpu1-emerg { 393 <&cpu1 1 2>; 398 <&cpu1 3 3>;
|
/linux-6.6.21/arch/arm/boot/dts/allwinner/ |
D | sun8i-t113s.dtsi | 25 cpu1: cpu@1 { label 57 interrupt-affinity = <&cpu0>, <&cpu1>;
|
/linux-6.6.21/arch/arm64/boot/dts/ti/ |
D | k3-am642.dtsi | 24 cpu = <&cpu1>; 43 cpu1: cpu@1 { label
|
/linux-6.6.21/arch/arm/boot/dts/st/ |
D | stm32mp153.dtsi | 11 cpu1: cpu@1 { label 22 interrupt-affinity = <&cpu0>, <&cpu1>;
|