Home | History | Annotate | Line # | Download | only in fdt
arm_fdt.c revision 1.17
      1  1.17   thorpej /* $NetBSD: arm_fdt.c,v 1.17 2021/08/07 16:18:43 thorpej Exp $ */
      2   1.1  jmcneill 
      3   1.1  jmcneill /*-
      4   1.1  jmcneill  * Copyright (c) 2017 Jared D. McNeill <jmcneill (at) invisible.ca>
      5   1.1  jmcneill  * All rights reserved.
      6   1.1  jmcneill  *
      7   1.1  jmcneill  * Redistribution and use in source and binary forms, with or without
      8   1.1  jmcneill  * modification, are permitted provided that the following conditions
      9   1.1  jmcneill  * are met:
     10   1.1  jmcneill  * 1. Redistributions of source code must retain the above copyright
     11   1.1  jmcneill  *    notice, this list of conditions and the following disclaimer.
     12   1.1  jmcneill  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  jmcneill  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  jmcneill  *    documentation and/or other materials provided with the distribution.
     15   1.1  jmcneill  *
     16   1.1  jmcneill  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17   1.1  jmcneill  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18   1.1  jmcneill  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19   1.1  jmcneill  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20   1.1  jmcneill  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     21   1.1  jmcneill  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     22   1.1  jmcneill  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     23   1.1  jmcneill  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     24   1.1  jmcneill  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25   1.1  jmcneill  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26   1.1  jmcneill  * SUCH DAMAGE.
     27   1.1  jmcneill  */
     28   1.1  jmcneill 
     29   1.5  jmcneill #include "opt_arm_timer.h"
     30  1.12  jmcneill #include "opt_efi.h"
     31  1.11  jmcneill #include "opt_modular.h"
     32   1.5  jmcneill 
     33   1.1  jmcneill #include <sys/cdefs.h>
     34  1.17   thorpej __KERNEL_RCSID(0, "$NetBSD: arm_fdt.c,v 1.17 2021/08/07 16:18:43 thorpej Exp $");
     35   1.1  jmcneill 
     36   1.1  jmcneill #include <sys/param.h>
     37   1.1  jmcneill #include <sys/systm.h>
     38   1.7     skrll #include <sys/cpu.h>
     39   1.1  jmcneill #include <sys/device.h>
     40   1.2  jmcneill #include <sys/kmem.h>
     41   1.2  jmcneill #include <sys/bus.h>
     42  1.11  jmcneill #include <sys/module.h>
     43  1.11  jmcneill 
     44  1.11  jmcneill #include <uvm/uvm_extern.h>
     45   1.1  jmcneill 
     46   1.1  jmcneill #include <dev/fdt/fdtvar.h>
     47   1.1  jmcneill #include <dev/ofw/openfirm.h>
     48   1.1  jmcneill 
     49   1.1  jmcneill #include <arm/fdt/arm_fdtvar.h>
     50   1.1  jmcneill 
     51  1.12  jmcneill #ifdef EFI_RUNTIME
     52  1.12  jmcneill #include <arm/arm/efi_runtime.h>
     53  1.12  jmcneill #include <dev/clock_subr.h>
     54  1.12  jmcneill #endif
     55  1.12  jmcneill 
     56   1.1  jmcneill static int	arm_fdt_match(device_t, cfdata_t, void *);
     57   1.1  jmcneill static void	arm_fdt_attach(device_t, device_t, void *);
     58   1.1  jmcneill 
     59  1.15  jmcneill static void	arm_fdt_irq_default_handler(void *);
     60  1.15  jmcneill 
     61  1.12  jmcneill #ifdef EFI_RUNTIME
     62  1.12  jmcneill static void	arm_fdt_efi_init(device_t);
     63  1.12  jmcneill static int	arm_fdt_efi_rtc_gettime(todr_chip_handle_t, struct clock_ymdhms *);
     64  1.12  jmcneill static int	arm_fdt_efi_rtc_settime(todr_chip_handle_t, struct clock_ymdhms *);
     65  1.12  jmcneill 
     66  1.12  jmcneill static struct todr_chip_handle efi_todr;
     67  1.12  jmcneill #endif
     68  1.12  jmcneill 
     69   1.1  jmcneill CFATTACH_DECL_NEW(arm_fdt, 0,
     70   1.1  jmcneill     arm_fdt_match, arm_fdt_attach, NULL, NULL);
     71   1.1  jmcneill 
     72   1.2  jmcneill struct arm_fdt_cpu_hatch_cb {
     73   1.2  jmcneill 	TAILQ_ENTRY(arm_fdt_cpu_hatch_cb) next;
     74   1.2  jmcneill 	void (*cb)(void *, struct cpu_info *);
     75   1.2  jmcneill 	void *priv;
     76   1.2  jmcneill };
     77   1.2  jmcneill 
     78   1.2  jmcneill static TAILQ_HEAD(, arm_fdt_cpu_hatch_cb) arm_fdt_cpu_hatch_cbs =
     79   1.2  jmcneill     TAILQ_HEAD_INITIALIZER(arm_fdt_cpu_hatch_cbs);
     80   1.2  jmcneill 
     81  1.15  jmcneill static void (*_arm_fdt_irq_handler)(void *) = arm_fdt_irq_default_handler;
     82   1.5  jmcneill static void (*_arm_fdt_timer_init)(void) = NULL;
     83   1.3  jmcneill 
     84   1.1  jmcneill int
     85   1.1  jmcneill arm_fdt_match(device_t parent, cfdata_t cf, void *aux)
     86   1.1  jmcneill {
     87   1.1  jmcneill 	return 1;
     88   1.1  jmcneill }
     89   1.1  jmcneill 
     90   1.1  jmcneill void
     91   1.1  jmcneill arm_fdt_attach(device_t parent, device_t self, void *aux)
     92   1.1  jmcneill {
     93   1.1  jmcneill 	const struct arm_platform *plat = arm_fdt_platform();
     94   1.1  jmcneill 	struct fdt_attach_args faa;
     95   1.1  jmcneill 
     96   1.1  jmcneill 	aprint_naive("\n");
     97   1.1  jmcneill 	aprint_normal("\n");
     98   1.1  jmcneill 
     99  1.12  jmcneill #ifdef EFI_RUNTIME
    100  1.12  jmcneill 	arm_fdt_efi_init(self);
    101  1.12  jmcneill #endif
    102  1.12  jmcneill 
    103   1.8     skrll 	plat->ap_init_attach_args(&faa);
    104   1.1  jmcneill 	faa.faa_name = "";
    105   1.1  jmcneill 	faa.faa_phandle = OF_peer(0);
    106   1.1  jmcneill 
    107  1.17   thorpej 	config_found(self, &faa, NULL, CFARGS_NONE);
    108   1.1  jmcneill }
    109   1.1  jmcneill 
    110   1.1  jmcneill const struct arm_platform *
    111   1.1  jmcneill arm_fdt_platform(void)
    112   1.1  jmcneill {
    113   1.1  jmcneill 	static const struct arm_platform_info *booted_platform = NULL;
    114  1.10  jmcneill 	__link_set_decl(arm_platforms, struct arm_platform_info);
    115  1.10  jmcneill 	struct arm_platform_info * const *info;
    116   1.1  jmcneill 
    117   1.1  jmcneill 	if (booted_platform == NULL) {
    118   1.1  jmcneill 		const struct arm_platform_info *best_info = NULL;
    119   1.1  jmcneill 		const int phandle = OF_peer(0);
    120   1.1  jmcneill 		int match, best_match = 0;
    121   1.1  jmcneill 
    122   1.1  jmcneill 		__link_set_foreach(info, arm_platforms) {
    123  1.14   thorpej 			const struct device_compatible_entry compat_data[] = {
    124  1.14   thorpej 				{ .compat = (*info)->api_compat },
    125  1.14   thorpej 				DEVICE_COMPAT_EOL
    126  1.14   thorpej 			};
    127  1.14   thorpej 
    128  1.14   thorpej 			match = of_compatible_match(phandle, compat_data);
    129   1.1  jmcneill 			if (match > best_match) {
    130   1.1  jmcneill 				best_match = match;
    131   1.1  jmcneill 				best_info = *info;
    132   1.1  jmcneill 			}
    133   1.1  jmcneill 		}
    134   1.1  jmcneill 
    135   1.1  jmcneill 		booted_platform = best_info;
    136   1.1  jmcneill 	}
    137   1.1  jmcneill 
    138  1.10  jmcneill 	/*
    139  1.10  jmcneill 	 * No SoC specific platform was found. Try to find a generic
    140  1.10  jmcneill 	 * platform definition and use that if available.
    141  1.10  jmcneill 	 */
    142  1.10  jmcneill 	if (booted_platform == NULL) {
    143  1.10  jmcneill 		__link_set_foreach(info, arm_platforms) {
    144  1.10  jmcneill 			if (strcmp((*info)->api_compat, ARM_PLATFORM_DEFAULT) == 0) {
    145  1.10  jmcneill 				booted_platform = *info;
    146  1.10  jmcneill 				break;
    147  1.10  jmcneill 			}
    148  1.10  jmcneill 		}
    149  1.10  jmcneill 	}
    150  1.10  jmcneill 
    151   1.8     skrll 	return booted_platform == NULL ? NULL : booted_platform->api_ops;
    152   1.1  jmcneill }
    153   1.2  jmcneill 
    154   1.2  jmcneill void
    155   1.2  jmcneill arm_fdt_cpu_hatch_register(void *priv, void (*cb)(void *, struct cpu_info *))
    156   1.2  jmcneill {
    157   1.2  jmcneill 	struct arm_fdt_cpu_hatch_cb *c;
    158   1.2  jmcneill 
    159   1.2  jmcneill 	c = kmem_alloc(sizeof(*c), KM_SLEEP);
    160   1.2  jmcneill 	c->priv = priv;
    161   1.2  jmcneill 	c->cb = cb;
    162   1.2  jmcneill 	TAILQ_INSERT_TAIL(&arm_fdt_cpu_hatch_cbs, c, next);
    163   1.2  jmcneill }
    164   1.2  jmcneill 
    165   1.2  jmcneill void
    166   1.2  jmcneill arm_fdt_cpu_hatch(struct cpu_info *ci)
    167   1.2  jmcneill {
    168   1.2  jmcneill 	struct arm_fdt_cpu_hatch_cb *c;
    169   1.2  jmcneill 
    170   1.2  jmcneill 	TAILQ_FOREACH(c, &arm_fdt_cpu_hatch_cbs, next)
    171   1.2  jmcneill 		c->cb(c->priv, ci);
    172   1.2  jmcneill }
    173   1.3  jmcneill 
    174  1.15  jmcneill static void
    175  1.15  jmcneill arm_fdt_irq_default_handler(void *frame)
    176  1.15  jmcneill {
    177  1.15  jmcneill 	panic("missing interrupt controller driver");
    178  1.15  jmcneill }
    179  1.15  jmcneill 
    180   1.3  jmcneill void
    181   1.3  jmcneill arm_fdt_irq_set_handler(void (*irq_handler)(void *))
    182   1.3  jmcneill {
    183  1.15  jmcneill 	KASSERT(_arm_fdt_irq_handler == arm_fdt_irq_default_handler);
    184   1.3  jmcneill 	_arm_fdt_irq_handler = irq_handler;
    185   1.3  jmcneill }
    186   1.3  jmcneill 
    187   1.3  jmcneill void
    188   1.3  jmcneill arm_fdt_irq_handler(void *tf)
    189   1.3  jmcneill {
    190   1.3  jmcneill 	_arm_fdt_irq_handler(tf);
    191   1.3  jmcneill }
    192   1.4  jmcneill 
    193   1.4  jmcneill void
    194   1.5  jmcneill arm_fdt_timer_register(void (*timerfn)(void))
    195   1.5  jmcneill {
    196   1.5  jmcneill 	if (_arm_fdt_timer_init != NULL) {
    197   1.5  jmcneill #ifdef DIAGNOSTIC
    198   1.5  jmcneill 		aprint_verbose("%s: timer already registered\n", __func__);
    199   1.5  jmcneill #endif
    200   1.5  jmcneill 		return;
    201   1.5  jmcneill 	}
    202   1.5  jmcneill 	_arm_fdt_timer_init = timerfn;
    203   1.5  jmcneill }
    204   1.5  jmcneill 
    205   1.5  jmcneill void
    206   1.4  jmcneill arm_fdt_memory_dump(paddr_t pa)
    207   1.4  jmcneill {
    208   1.4  jmcneill 	const struct arm_platform *plat = arm_fdt_platform();
    209   1.4  jmcneill 	struct fdt_attach_args faa;
    210   1.4  jmcneill 	bus_space_tag_t bst;
    211   1.4  jmcneill 	bus_space_handle_t bsh;
    212   1.4  jmcneill 
    213   1.8     skrll 	plat->ap_init_attach_args(&faa);
    214   1.4  jmcneill 
    215   1.4  jmcneill 	bst = faa.faa_bst;
    216   1.4  jmcneill 	bus_space_map(bst, pa, 0x100, 0, &bsh);
    217   1.4  jmcneill 
    218   1.4  jmcneill 	for (int i = 0; i < 0x100; i += 0x10) {
    219   1.6     skrll 		printf("%" PRIxPTR ": %08x %08x %08x %08x\n",
    220   1.6     skrll 		    (uintptr_t)(pa + i),
    221   1.4  jmcneill 		    bus_space_read_4(bst, bsh, i + 0),
    222   1.4  jmcneill 		    bus_space_read_4(bst, bsh, i + 4),
    223   1.4  jmcneill 		    bus_space_read_4(bst, bsh, i + 8),
    224   1.4  jmcneill 		    bus_space_read_4(bst, bsh, i + 12));
    225   1.4  jmcneill 	}
    226   1.4  jmcneill }
    227   1.5  jmcneill 
    228   1.5  jmcneill #ifdef __HAVE_GENERIC_CPU_INITCLOCKS
    229   1.5  jmcneill void
    230   1.5  jmcneill cpu_initclocks(void)
    231   1.5  jmcneill {
    232   1.5  jmcneill 	if (_arm_fdt_timer_init == NULL)
    233   1.5  jmcneill 		panic("cpu_initclocks: no timer registered");
    234   1.5  jmcneill 	_arm_fdt_timer_init();
    235   1.5  jmcneill }
    236   1.5  jmcneill #endif
    237  1.11  jmcneill 
    238  1.11  jmcneill void
    239  1.11  jmcneill arm_fdt_module_init(void)
    240  1.11  jmcneill {
    241  1.11  jmcneill #ifdef MODULAR
    242  1.11  jmcneill 	const int chosen = OF_finddevice("/chosen");
    243  1.11  jmcneill 	const char *module_name;
    244  1.11  jmcneill 	const uint64_t *data;
    245  1.11  jmcneill 	u_int index;
    246  1.11  jmcneill 	paddr_t pa;
    247  1.11  jmcneill 	vaddr_t va;
    248  1.11  jmcneill 	int len;
    249  1.11  jmcneill 
    250  1.11  jmcneill 	if (chosen == -1)
    251  1.11  jmcneill 		return;
    252  1.11  jmcneill 
    253  1.11  jmcneill 	data = fdtbus_get_prop(chosen, "netbsd,modules", &len);
    254  1.11  jmcneill 	if (data == NULL)
    255  1.11  jmcneill 		return;
    256  1.11  jmcneill 
    257  1.11  jmcneill 	for (index = 0; index < len / 16; index++, data += 2) {
    258  1.11  jmcneill 		module_name = fdtbus_get_string_index(chosen,
    259  1.11  jmcneill 		    "netbsd,module-names", index);
    260  1.11  jmcneill 		if (module_name == NULL)
    261  1.11  jmcneill 			break;
    262  1.11  jmcneill 
    263  1.11  jmcneill 		const paddr_t startpa = (paddr_t)be64dec(data + 0);
    264  1.11  jmcneill 		const size_t size = (size_t)be64dec(data + 1);
    265  1.11  jmcneill 		const paddr_t endpa = round_page(startpa + size);
    266  1.11  jmcneill 
    267  1.11  jmcneill 		const vaddr_t startva = uvm_km_alloc(kernel_map, endpa - startpa,
    268  1.11  jmcneill 		    0, UVM_KMF_VAONLY | UVM_KMF_NOWAIT);
    269  1.11  jmcneill 		if (startva == 0) {
    270  1.11  jmcneill 			printf("ERROR: Cannot allocate VA for module %s\n",
    271  1.11  jmcneill 			    module_name);
    272  1.11  jmcneill 			continue;
    273  1.11  jmcneill 		}
    274  1.11  jmcneill 
    275  1.11  jmcneill 		for (pa = startpa, va = startva;
    276  1.11  jmcneill 		     pa < endpa;
    277  1.11  jmcneill 		     pa += PAGE_SIZE, va += PAGE_SIZE) {
    278  1.13     skrll 			pmap_kenter_pa(va, pa, VM_PROT_ALL, 0);
    279  1.11  jmcneill 		}
    280  1.11  jmcneill 		pmap_update(pmap_kernel());
    281  1.11  jmcneill 
    282  1.11  jmcneill 		module_prime(module_name, (void *)(uintptr_t)startva, size);
    283  1.11  jmcneill 	}
    284  1.11  jmcneill #endif /* !MODULAR */
    285  1.11  jmcneill }
    286  1.12  jmcneill 
    287  1.12  jmcneill #ifdef EFI_RUNTIME
    288  1.12  jmcneill static void
    289  1.12  jmcneill arm_fdt_efi_init(device_t dev)
    290  1.12  jmcneill {
    291  1.12  jmcneill 	uint64_t efi_system_table;
    292  1.12  jmcneill 	struct efi_tm tm;
    293  1.12  jmcneill 	int error;
    294  1.12  jmcneill 
    295  1.12  jmcneill 	const int chosen = OF_finddevice("/chosen");
    296  1.12  jmcneill 	if (chosen < 0)
    297  1.12  jmcneill 		return;
    298  1.12  jmcneill 
    299  1.12  jmcneill 	if (of_getprop_uint64(chosen, "netbsd,uefi-system-table", &efi_system_table) != 0)
    300  1.12  jmcneill 		return;
    301  1.12  jmcneill 
    302  1.12  jmcneill 	error = arm_efirt_init(efi_system_table);
    303  1.12  jmcneill 	if (error)
    304  1.12  jmcneill 		return;
    305  1.12  jmcneill 
    306  1.12  jmcneill 	aprint_debug_dev(dev, "EFI system table at %#" PRIx64 "\n", efi_system_table);
    307  1.12  jmcneill 
    308  1.12  jmcneill 	if (arm_efirt_gettime(&tm) == 0) {
    309  1.12  jmcneill 		aprint_normal_dev(dev, "using EFI runtime services for RTC\n");
    310  1.12  jmcneill 		efi_todr.cookie = NULL;
    311  1.12  jmcneill 		efi_todr.todr_gettime_ymdhms = arm_fdt_efi_rtc_gettime;
    312  1.12  jmcneill 		efi_todr.todr_settime_ymdhms = arm_fdt_efi_rtc_settime;
    313  1.12  jmcneill 		todr_attach(&efi_todr);
    314  1.12  jmcneill 	}
    315  1.12  jmcneill }
    316  1.12  jmcneill 
    317  1.12  jmcneill static int
    318  1.12  jmcneill arm_fdt_efi_rtc_gettime(todr_chip_handle_t tch, struct clock_ymdhms *dt)
    319  1.12  jmcneill {
    320  1.12  jmcneill 	struct efi_tm tm;
    321  1.12  jmcneill 	int error;
    322  1.12  jmcneill 
    323  1.12  jmcneill 	error = arm_efirt_gettime(&tm);
    324  1.12  jmcneill 	if (error)
    325  1.12  jmcneill 		return error;
    326  1.12  jmcneill 
    327  1.12  jmcneill 	dt->dt_year = tm.tm_year;
    328  1.12  jmcneill 	dt->dt_mon = tm.tm_mon;
    329  1.12  jmcneill 	dt->dt_day = tm.tm_mday;
    330  1.12  jmcneill 	dt->dt_wday = 0;
    331  1.12  jmcneill 	dt->dt_hour = tm.tm_hour;
    332  1.12  jmcneill 	dt->dt_min = tm.tm_min;
    333  1.12  jmcneill 	dt->dt_sec = tm.tm_sec;
    334  1.12  jmcneill 
    335  1.12  jmcneill 	return 0;
    336  1.12  jmcneill }
    337  1.12  jmcneill 
    338  1.12  jmcneill static int
    339  1.12  jmcneill arm_fdt_efi_rtc_settime(todr_chip_handle_t tch, struct clock_ymdhms *dt)
    340  1.12  jmcneill {
    341  1.12  jmcneill 	struct efi_tm tm;
    342  1.12  jmcneill 
    343  1.12  jmcneill 	memset(&tm, 0, sizeof(tm));
    344  1.12  jmcneill 	tm.tm_year = dt->dt_year;
    345  1.12  jmcneill 	tm.tm_mon = dt->dt_mon;
    346  1.12  jmcneill 	tm.tm_mday = dt->dt_day;
    347  1.12  jmcneill 	tm.tm_hour = dt->dt_hour;
    348  1.12  jmcneill 	tm.tm_min = dt->dt_min;
    349  1.12  jmcneill 	tm.tm_sec = dt->dt_sec;
    350  1.12  jmcneill 
    351  1.12  jmcneill 	return arm_efirt_settime(&tm);
    352  1.12  jmcneill }
    353  1.12  jmcneill #endif
    354