Home | History | Annotate | Line # | Download | only in fdt
a9ptmr_fdt.c revision 1.3
      1  1.3  thorpej /* $NetBSD: a9ptmr_fdt.c,v 1.3 2021/01/27 03:10:19 thorpej Exp $ */
      2  1.1    skrll 
      3  1.1    skrll /*-
      4  1.1    skrll  * Copyright (c) 2019 The NetBSD Foundation, Inc.
      5  1.1    skrll  * All rights reserved.
      6  1.1    skrll  *
      7  1.1    skrll  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1    skrll  * by Nick Hudson
      9  1.1    skrll  *
     10  1.1    skrll  * Redistribution and use in source and binary forms, with or without
     11  1.1    skrll  * modification, are permitted provided that the following conditions
     12  1.1    skrll  * are met:
     13  1.1    skrll  * 1. Redistributions of source code must retain the above copyright
     14  1.1    skrll  *    notice, this list of conditions and the following disclaimer.
     15  1.1    skrll  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1    skrll  *    notice, this list of conditions and the following disclaimer in the
     17  1.1    skrll  *    documentation and/or other materials provided with the distribution.
     18  1.1    skrll  *
     19  1.1    skrll  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  1.1    skrll  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  1.1    skrll  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.1    skrll  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.1    skrll  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.1    skrll  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.1    skrll  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.1    skrll  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.1    skrll  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.1    skrll  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.1    skrll  * POSSIBILITY OF SUCH DAMAGE.
     30  1.1    skrll  */
     31  1.1    skrll 
     32  1.1    skrll #include <sys/cdefs.h>
     33  1.3  thorpej __KERNEL_RCSID(0, "$NetBSD: a9ptmr_fdt.c,v 1.3 2021/01/27 03:10:19 thorpej Exp $");
     34  1.1    skrll 
     35  1.1    skrll #include <sys/param.h>
     36  1.1    skrll #include <sys/bus.h>
     37  1.1    skrll 
     38  1.1    skrll #include <sys/device.h>
     39  1.1    skrll #include <sys/intr.h>
     40  1.1    skrll 
     41  1.1    skrll #include <arm/cortex/mpcore_var.h>
     42  1.1    skrll #include <arm/cortex/a9ptmr_var.h>
     43  1.1    skrll 
     44  1.1    skrll #include <dev/fdt/fdtvar.h>
     45  1.1    skrll #include <arm/fdt/arm_fdtvar.h>
     46  1.1    skrll 
     47  1.1    skrll static int	a9ptmr_fdt_match(device_t, cfdata_t, void *);
     48  1.1    skrll static void	a9ptmr_fdt_attach(device_t, device_t, void *);
     49  1.1    skrll 
     50  1.1    skrll static void	a9ptmr_fdt_cpu_hatch(void *, struct cpu_info *);
     51  1.1    skrll 
     52  1.1    skrll struct a9ptmr_fdt_softc {
     53  1.1    skrll 	device_t	sc_dev;
     54  1.1    skrll 	struct clk	*sc_clk;
     55  1.1    skrll };
     56  1.1    skrll 
     57  1.1    skrll CFATTACH_DECL_NEW(a9ptmr_fdt, sizeof(struct a9ptmr_fdt_softc),
     58  1.1    skrll     a9ptmr_fdt_match, a9ptmr_fdt_attach, NULL, NULL);
     59  1.1    skrll 
     60  1.3  thorpej static const struct device_compatible_entry compat_data[] = {
     61  1.3  thorpej 	{ .compat = "arm,cortex-a9-twd-timer" },
     62  1.3  thorpej 	{ .compat = "arm,cortex-a5-twd-timer" },
     63  1.3  thorpej 	DEVICE_COMPAT_EOL
     64  1.3  thorpej };
     65  1.3  thorpej 
     66  1.1    skrll static int
     67  1.1    skrll a9ptmr_fdt_match(device_t parent, cfdata_t cf, void *aux)
     68  1.1    skrll {
     69  1.1    skrll 	struct fdt_attach_args * const faa = aux;
     70  1.1    skrll 
     71  1.3  thorpej 	return of_compatible_match(faa->faa_phandle, compat_data);
     72  1.1    skrll }
     73  1.1    skrll 
     74  1.1    skrll static void
     75  1.1    skrll a9ptmr_fdt_attach(device_t parent, device_t self, void *aux)
     76  1.1    skrll {
     77  1.1    skrll 	struct a9ptmr_fdt_softc * const sc = device_private(self);
     78  1.1    skrll 	struct fdt_attach_args * const faa = aux;
     79  1.1    skrll 	const int phandle = faa->faa_phandle;
     80  1.1    skrll 	bus_space_handle_t bsh;
     81  1.1    skrll 
     82  1.1    skrll 	sc->sc_dev = self;
     83  1.1    skrll 	sc->sc_clk = fdtbus_clock_get_index(phandle, 0);
     84  1.1    skrll 	if (sc->sc_clk == NULL) {
     85  1.1    skrll 		aprint_error(": couldn't get clock\n");
     86  1.1    skrll 		return;
     87  1.1    skrll 	}
     88  1.1    skrll 	if (clk_enable(sc->sc_clk) != 0) {
     89  1.1    skrll 		aprint_error(": couldn't enable clock\n");
     90  1.1    skrll 		return;
     91  1.1    skrll 	}
     92  1.1    skrll 
     93  1.1    skrll 	uint32_t rate = clk_get_rate(sc->sc_clk);
     94  1.1    skrll 	prop_dictionary_t dict = device_properties(self);
     95  1.1    skrll 	prop_dictionary_set_uint32(dict, "frequency", rate);
     96  1.1    skrll 
     97  1.1    skrll 	char intrstr[128];
     98  1.1    skrll 	if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
     99  1.1    skrll 		aprint_error(": failed to decode interrupt\n");
    100  1.1    skrll 		return;
    101  1.1    skrll 	}
    102  1.1    skrll 
    103  1.1    skrll 	aprint_naive("\n");
    104  1.1    skrll 	aprint_normal("\n");
    105  1.1    skrll 
    106  1.2      ryo 	void *ih = fdtbus_intr_establish_xname(phandle, 0, IPL_CLOCK,
    107  1.2      ryo 	    FDT_INTR_MPSAFE, a9ptmr_intr, NULL, device_xname(self));
    108  1.1    skrll 	if (ih == NULL) {
    109  1.1    skrll 		aprint_error_dev(self, "couldn't install interrupt handler\n");
    110  1.1    skrll 		return;
    111  1.1    skrll 	}
    112  1.1    skrll 	aprint_normal_dev(self, "interrupting on %s\n", intrstr);
    113  1.1    skrll 
    114  1.1    skrll 	bus_addr_t addr;
    115  1.1    skrll 	bus_size_t size;
    116  1.1    skrll 	if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
    117  1.1    skrll 		aprint_error(": couldn't get registers\n");
    118  1.1    skrll 		return;
    119  1.1    skrll 	}
    120  1.1    skrll 	if (bus_space_map(faa->faa_bst, addr, size, 0, &bsh)) {
    121  1.1    skrll 		aprint_error(": couldn't map registers\n");
    122  1.1    skrll 		return;
    123  1.1    skrll 	}
    124  1.1    skrll 
    125  1.1    skrll 	struct mpcore_attach_args mpcaa = {
    126  1.1    skrll 		.mpcaa_name = "arma9ptmr",
    127  1.1    skrll 		.mpcaa_memt = faa->faa_bst,
    128  1.1    skrll 		.mpcaa_memh = bsh,
    129  1.1    skrll 		.mpcaa_irq = -1,
    130  1.1    skrll 	};
    131  1.1    skrll 
    132  1.1    skrll 	config_found(self, &mpcaa, NULL);
    133  1.1    skrll 
    134  1.1    skrll 	arm_fdt_cpu_hatch_register(self, a9ptmr_fdt_cpu_hatch);
    135  1.1    skrll 	arm_fdt_timer_register(a9ptmr_cpu_initclocks);
    136  1.1    skrll }
    137  1.1    skrll 
    138  1.1    skrll static void
    139  1.1    skrll a9ptmr_fdt_cpu_hatch(void *priv, struct cpu_info *ci)
    140  1.1    skrll {
    141  1.1    skrll 	a9ptmr_init_cpu_clock(ci);
    142  1.1    skrll }
    143