Home | History | Annotate | Line # | Download | only in fdt
cpu_fdt.c revision 1.36
      1 /* $NetBSD: cpu_fdt.c,v 1.36 2020/06/10 19:29:48 jmcneill Exp $ */
      2 
      3 /*-
      4  * Copyright (c) 2017 Jared McNeill <jmcneill (at) invisible.ca>
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  *
     16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     21  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     23  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     24  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  * SUCH DAMAGE.
     27  */
     28 
     29 #include "opt_multiprocessor.h"
     30 #include "psci_fdt.h"
     31 
     32 #include <sys/cdefs.h>
     33 __KERNEL_RCSID(0, "$NetBSD: cpu_fdt.c,v 1.36 2020/06/10 19:29:48 jmcneill Exp $");
     34 
     35 #include <sys/param.h>
     36 #include <sys/atomic.h>
     37 #include <sys/bus.h>
     38 #include <sys/device.h>
     39 #include <sys/lwp.h>
     40 #include <sys/systm.h>
     41 #include <sys/kernel.h>
     42 
     43 #include <dev/fdt/fdtvar.h>
     44 
     45 #include <arm/armreg.h>
     46 #include <arm/cpu.h>
     47 #include <arm/cpufunc.h>
     48 #include <arm/cpuvar.h>
     49 #include <arm/locore.h>
     50 
     51 #include <arm/arm/psci.h>
     52 #include <arm/fdt/arm_fdtvar.h>
     53 #include <arm/fdt/psci_fdtvar.h>
     54 
     55 #include <uvm/uvm_extern.h>
     56 
     57 static int	cpu_fdt_match(device_t, cfdata_t, void *);
     58 static void	cpu_fdt_attach(device_t, device_t, void *);
     59 
     60 struct cpu_fdt_softc {
     61 	device_t		sc_dev;
     62 	int			sc_phandle;
     63 };
     64 
     65 CFATTACH_DECL_NEW(cpu_fdt, sizeof(struct cpu_fdt_softc),
     66 	cpu_fdt_match, cpu_fdt_attach, NULL, NULL);
     67 
     68 static int
     69 cpu_fdt_match(device_t parent, cfdata_t cf, void *aux)
     70 {
     71 	struct fdt_attach_args * const faa = aux;
     72 	const int phandle = faa->faa_phandle;
     73 	const char *device_type;
     74 
     75 	device_type = fdtbus_get_string(phandle, "device_type");
     76 
     77 	return device_type != NULL && strcmp(device_type, "cpu") == 0;
     78 }
     79 
     80 static void
     81 cpu_fdt_attach(device_t parent, device_t self, void *aux)
     82 {
     83 	struct cpu_fdt_softc * const sc = device_private(self);
     84 	struct fdt_attach_args * const faa = aux;
     85 	const int phandle = faa->faa_phandle;
     86 	bus_addr_t cpuid;
     87 	const uint32_t *cap_ptr;
     88 	int len;
     89 
     90 	sc->sc_dev = self;
     91 	sc->sc_phandle = phandle;
     92 
     93  	cap_ptr = fdtbus_get_prop(phandle, "capacity-dmips-mhz", &len);
     94 	if (cap_ptr && len == 4) {
     95 		prop_dictionary_t dict = device_properties(self);
     96 		uint32_t capacity_dmips_mhz = be32toh(*cap_ptr);
     97 
     98 		prop_dictionary_set_uint32(dict, "capacity_dmips_mhz",
     99 		    capacity_dmips_mhz);
    100 	}
    101 
    102 	if (fdtbus_get_reg(phandle, 0, &cpuid, NULL) != 0)
    103 		cpuid = 0;
    104 
    105 	/* Attach the CPU */
    106 	cpu_attach(self, cpuid);
    107 
    108 	/* Attach CPU frequency scaling provider */
    109 	config_found(self, faa, NULL);
    110 }
    111 
    112 #if defined(MULTIPROCESSOR) && (NPSCI_FDT > 0 || defined(__aarch64__))
    113 static register_t
    114 cpu_fdt_mpstart_pa(void)
    115 {
    116 	bool ok __diagused;
    117 	paddr_t pa;
    118 
    119 	ok = pmap_extract(pmap_kernel(), (vaddr_t)cpu_mpstart, &pa);
    120 	KASSERT(ok);
    121 
    122 	return pa;
    123 }
    124 #endif
    125 
    126 #ifdef MULTIPROCESSOR
    127 static bool
    128 arm_fdt_cpu_okay(const int child)
    129 {
    130 	const char *s;
    131 
    132 	s = fdtbus_get_string(child, "device_type");
    133 	if (!s || strcmp(s, "cpu") != 0)
    134 		return false;
    135 
    136 	s = fdtbus_get_string(child, "status");
    137 	if (s) {
    138 		if (strcmp(s, "okay") == 0)
    139 			return false;
    140 		if (strcmp(s, "disabled") == 0)
    141 			return of_hasprop(child, "enable-method");
    142 		return false;
    143 	} else {
    144 		return true;
    145 	}
    146 }
    147 #endif /* MULTIPROCESSOR */
    148 
    149 void
    150 arm_fdt_cpu_bootstrap(void)
    151 {
    152 #ifdef MULTIPROCESSOR
    153 	uint64_t mpidr, bp_mpidr;
    154 	u_int cpuindex;
    155 	int child;
    156 
    157 	const int cpus = OF_finddevice("/cpus");
    158 	if (cpus == -1) {
    159 		aprint_error("%s: no /cpus node found\n", __func__);
    160 		arm_cpu_max = 1;
    161 		return;
    162 	}
    163 
    164 	/* Count CPUs */
    165 	arm_cpu_max = 0;
    166 
    167 	/* MPIDR affinity levels of boot processor. */
    168 	bp_mpidr = cpu_mpidr_aff_read();
    169 
    170 	/* Boot APs */
    171 	cpuindex = 1;
    172 	for (child = OF_child(cpus); child; child = OF_peer(child)) {
    173 		if (!arm_fdt_cpu_okay(child))
    174 			continue;
    175 
    176 		arm_cpu_max++;
    177 		if (fdtbus_get_reg64(child, 0, &mpidr, NULL) != 0)
    178 			continue;
    179 		if (mpidr == bp_mpidr)
    180 			continue; 	/* BP already started */
    181 
    182 		KASSERT(cpuindex < MAXCPUS);
    183 		cpu_mpidr[cpuindex] = mpidr;
    184 		cpu_dcache_wb_range((vaddr_t)&cpu_mpidr[cpuindex],
    185 		    sizeof(cpu_mpidr[cpuindex]));
    186 
    187 		cpuindex++;
    188 	}
    189 #endif
    190 }
    191 
    192 #ifdef MULTIPROCESSOR
    193 static struct arm_cpu_method *
    194 arm_fdt_cpu_enable_method_byname(const char *method)
    195 {
    196 	__link_set_decl(arm_cpu_methods, struct arm_cpu_method);
    197 	struct arm_cpu_method * const *acmp;
    198 
    199 	__link_set_foreach(acmp, arm_cpu_methods) {
    200 		if (strcmp(method, (*acmp)->acm_compat) == 0)
    201 			return *acmp;
    202 	}
    203 
    204 	return NULL;
    205 }
    206 
    207 static struct arm_cpu_method *
    208 arm_fdt_cpu_enable_method(int phandle)
    209 {
    210 	const char *method;
    211 
    212  	method = fdtbus_get_string(phandle, "enable-method");
    213 	if (method == NULL)
    214 		return NULL;
    215 
    216 	return arm_fdt_cpu_enable_method_byname(method);
    217 }
    218 
    219 static int
    220 arm_fdt_cpu_enable(int phandle, struct arm_cpu_method *acm)
    221 {
    222 	return acm->acm_enable(phandle);
    223 }
    224 #endif
    225 
    226 int
    227 arm_fdt_cpu_mpstart(void)
    228 {
    229 	int ret = 0;
    230 #ifdef MULTIPROCESSOR
    231 	uint64_t mpidr, bp_mpidr;
    232 	u_int cpuindex, i;
    233 	int child, error;
    234 	struct arm_cpu_method *acm;
    235 
    236 	const int cpus = OF_finddevice("/cpus");
    237 	if (cpus == -1) {
    238 		aprint_error("%s: no /cpus node found\n", __func__);
    239 		return 0;
    240 	}
    241 
    242 	/* MPIDR affinity levels of boot processor. */
    243 	bp_mpidr = cpu_mpidr_aff_read();
    244 
    245 	/* Boot APs */
    246 	cpuindex = 1;
    247 	for (child = OF_child(cpus); child; child = OF_peer(child)) {
    248 		if (!arm_fdt_cpu_okay(child))
    249 			continue;
    250 
    251 		if (fdtbus_get_reg64(child, 0, &mpidr, NULL) != 0)
    252 			continue;
    253 
    254 		if (mpidr == bp_mpidr)
    255 			continue; 	/* BP already started */
    256 
    257 		acm = arm_fdt_cpu_enable_method(child);
    258 		if (acm == NULL)
    259 			acm = arm_fdt_cpu_enable_method(cpus);
    260 		if (acm == NULL)
    261 			acm = arm_fdt_cpu_enable_method_byname("psci");
    262 		if (acm == NULL)
    263 			continue;
    264 
    265 		error = arm_fdt_cpu_enable(child, acm);
    266 		if (error != 0) {
    267 			aprint_error("%s: failed to enable CPU %#" PRIx64 "\n",
    268 			    __func__, mpidr);
    269 			continue;
    270 		}
    271 
    272 		/* Wake up AP in case firmware has placed it in WFE state */
    273 		__asm __volatile("sev" ::: "memory");
    274 
    275 		/* Wait for AP to start */
    276 		for (i = 0x10000000; i > 0; i--) {
    277 			if (cpu_hatched_p(cpuindex))
    278 				break;
    279 		}
    280 
    281 		if (i == 0) {
    282 			ret++;
    283 			aprint_error("cpu%d: WARNING: AP failed to start\n", cpuindex);
    284 		}
    285 
    286 		cpuindex++;
    287 	}
    288 #endif /* MULTIPROCESSOR */
    289 	return ret;
    290 }
    291 
    292 static int
    293 cpu_enable_nullop(int phandle)
    294 {
    295 	return ENXIO;
    296 }
    297 ARM_CPU_METHOD(default, "", cpu_enable_nullop);
    298 
    299 #if defined(MULTIPROCESSOR) && NPSCI_FDT > 0
    300 static int
    301 cpu_enable_psci(int phandle)
    302 {
    303 	static bool psci_probed, psci_p;
    304 	uint64_t mpidr;
    305 	int ret;
    306 
    307 	if (!psci_probed) {
    308 		psci_probed = true;
    309 		psci_p = psci_fdt_preinit() == 0;
    310 	}
    311 	if (!psci_p)
    312 		return ENXIO;
    313 
    314 	fdtbus_get_reg64(phandle, 0, &mpidr, NULL);
    315 
    316 #if !defined(AARCH64)
    317 	/*
    318 	 * not necessary on AARCH64. beside there it hangs the system
    319 	 * because cache ops are only functional after cpu_attach()
    320 	 * was called.
    321 	 */
    322 	cpu_dcache_wbinv_all();
    323 #endif
    324 	ret = psci_cpu_on(mpidr, cpu_fdt_mpstart_pa(), 0);
    325 	if (ret != PSCI_SUCCESS)
    326 		return EIO;
    327 
    328 	return 0;
    329 }
    330 ARM_CPU_METHOD(psci, "psci", cpu_enable_psci);
    331 #endif
    332 
    333 #if defined(MULTIPROCESSOR) && defined(__aarch64__)
    334 static int
    335 spintable_cpu_on(u_int cpuindex, paddr_t entry_point_address, paddr_t cpu_release_addr)
    336 {
    337 	/*
    338 	 * we need devmap for cpu-release-addr in advance.
    339 	 * __HAVE_MM_MD_DIRECT_MAPPED_PHYS nor pmap work at this point.
    340 	 */
    341 	if (pmap_devmap_find_pa(cpu_release_addr, sizeof(paddr_t)) == NULL) {
    342 		aprint_error("%s: devmap for cpu-release-addr"
    343 		    " 0x%08"PRIxPADDR" required\n", __func__, cpu_release_addr);
    344 		return -1;
    345 	} else {
    346 		extern struct bus_space arm_generic_bs_tag;
    347 		bus_space_handle_t ioh;
    348 
    349 		bus_space_map(&arm_generic_bs_tag, cpu_release_addr,
    350 		    sizeof(paddr_t), 0, &ioh);
    351 		bus_space_write_4(&arm_generic_bs_tag, ioh, 0,
    352 		    entry_point_address);
    353 		bus_space_unmap(&arm_generic_bs_tag, ioh, sizeof(paddr_t));
    354 	}
    355 
    356 	return 0;
    357 }
    358 
    359 static int
    360 cpu_enable_spin_table(int phandle)
    361 {
    362 	uint64_t mpidr, addr;
    363 	int ret;
    364 
    365 	fdtbus_get_reg64(phandle, 0, &mpidr, NULL);
    366 
    367 	if (of_getprop_uint64(phandle, "cpu-release-addr", &addr) != 0)
    368 		return ENXIO;
    369 
    370 	ret = spintable_cpu_on(mpidr, cpu_fdt_mpstart_pa(), (paddr_t)addr);
    371 	if (ret != 0)
    372 		return EIO;
    373 
    374 	return 0;
    375 }
    376 ARM_CPU_METHOD(spin_table, "spin-table", cpu_enable_spin_table);
    377 #endif
    378