Lines Matching +full:cpu +full:- +full:release +full:- +full:addr
1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/arch/arm/mach-axxia/platsmp.c
31 static int axxia_boot_secondary(unsigned int cpu, struct task_struct *idle) in axxia_boot_secondary() argument
37 syscon_np = of_find_compatible_node(NULL, NULL, "lsi,axxia-syscon"); in axxia_boot_secondary()
39 return -ENOENT; in axxia_boot_secondary()
43 return -ENOMEM; in axxia_boot_secondary()
47 tmp &= ~(1 << cpu); in axxia_boot_secondary()
56 int cpu; in axxia_smp_prepare_cpus() local
62 for_each_possible_cpu(cpu) { in axxia_smp_prepare_cpus()
66 np = of_get_cpu_node(cpu, NULL); in axxia_smp_prepare_cpus()
69 if (of_property_read_u32(np, "cpu-release-addr", &release_phys)) in axxia_smp_prepare_cpus()
73 set_cpu_present(cpu, true); in axxia_smp_prepare_cpus()
86 CPU_METHOD_OF_DECLARE(axxia_smp, "lsi,syscon-release", &axxia_smp_ops);