Home | History | Annotate | Line # | Download | only in fdt
a9wdt_fdt.c revision 1.2
      1  1.2  thorpej /* $NetBSD: a9wdt_fdt.c,v 1.2 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.2  thorpej __KERNEL_RCSID(0, "$NetBSD: a9wdt_fdt.c,v 1.2 2021/01/27 03:10:19 thorpej Exp $");
     34  1.1    skrll 
     35  1.1    skrll #if 0
     36  1.1    skrll #include <sys/param.h>
     37  1.1    skrll #include <sys/bus.h>
     38  1.1    skrll #include <sys/device.h>
     39  1.1    skrll #include <sys/intr.h>
     40  1.1    skrll #include <sys/systm.h>
     41  1.1    skrll #include <sys/kernel.h>
     42  1.1    skrll #include <sys/kmem.h>
     43  1.1    skrll 
     44  1.1    skrll #include <arm/cortex/a9tmr_intr.h>
     45  1.1    skrll #include <arm/cortex/mpcore_var.h>
     46  1.1    skrll #include <arm/cortex/a9tmr_var.h>
     47  1.1    skrll #endif
     48  1.1    skrll 
     49  1.1    skrll 
     50  1.1    skrll #include <sys/param.h>
     51  1.1    skrll #include <sys/bus.h>
     52  1.1    skrll 
     53  1.1    skrll #include <arm/cortex/mpcore_var.h>
     54  1.1    skrll 
     55  1.1    skrll 
     56  1.1    skrll #include <dev/fdt/fdtvar.h>
     57  1.1    skrll #include <arm/fdt/arm_fdtvar.h>
     58  1.1    skrll 
     59  1.1    skrll static int	a9wdt_fdt_match(device_t, cfdata_t, void *);
     60  1.1    skrll static void	a9wdt_fdt_attach(device_t, device_t, void *);
     61  1.1    skrll 
     62  1.1    skrll struct a9wdt_fdt_softc {
     63  1.1    skrll 	device_t	sc_dev;
     64  1.1    skrll 	struct clk	*sc_clk;
     65  1.1    skrll };
     66  1.1    skrll 
     67  1.1    skrll CFATTACH_DECL_NEW(a9wdt_fdt, sizeof(struct a9wdt_fdt_softc),
     68  1.1    skrll     a9wdt_fdt_match, a9wdt_fdt_attach, NULL, NULL);
     69  1.1    skrll 
     70  1.2  thorpej static const struct device_compatible_entry compat_data[] = {
     71  1.2  thorpej 	{ .compat = "arm,cortex-a9-twd-wdt" },
     72  1.2  thorpej 	{ .compat = "arm,cortex-a5-twd-wdt" },
     73  1.2  thorpej 	DEVICE_COMPAT_EOL
     74  1.2  thorpej };
     75  1.2  thorpej 
     76  1.1    skrll static int
     77  1.1    skrll a9wdt_fdt_match(device_t parent, cfdata_t cf, void *aux)
     78  1.1    skrll {
     79  1.1    skrll 	struct fdt_attach_args * const faa = aux;
     80  1.1    skrll 
     81  1.2  thorpej 	return of_compatible_match(faa->faa_phandle, compat_data);
     82  1.1    skrll }
     83  1.1    skrll 
     84  1.1    skrll static void
     85  1.1    skrll a9wdt_fdt_attach(device_t parent, device_t self, void *aux)
     86  1.1    skrll {
     87  1.1    skrll 	struct a9wdt_fdt_softc * const sc = device_private(self);
     88  1.1    skrll 	struct fdt_attach_args * const faa = aux;
     89  1.1    skrll 	const int phandle = faa->faa_phandle;
     90  1.1    skrll 	bus_space_handle_t bsh;
     91  1.1    skrll 
     92  1.1    skrll 	sc->sc_dev = self;
     93  1.1    skrll 
     94  1.1    skrll 	char intrstr[128];
     95  1.1    skrll 	if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
     96  1.1    skrll 		aprint_error(": failed to decode interrupt\n");
     97  1.1    skrll 		return;
     98  1.1    skrll 	}
     99  1.1    skrll 
    100  1.1    skrll 	aprint_naive("\n");
    101  1.1    skrll 	aprint_normal("\n");
    102  1.1    skrll 
    103  1.1    skrll 	bus_addr_t addr;
    104  1.1    skrll 	bus_size_t size;
    105  1.1    skrll 	if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
    106  1.1    skrll 		aprint_error(": couldn't get registers\n");
    107  1.1    skrll 		return;
    108  1.1    skrll 	}
    109  1.1    skrll 	if (bus_space_map(faa->faa_bst, addr, size, 0, &bsh)) {
    110  1.1    skrll 		aprint_error(": couldn't map registers\n");
    111  1.1    skrll 		return;
    112  1.1    skrll 	}
    113  1.1    skrll 
    114  1.1    skrll 	struct mpcore_attach_args mpcaa = {
    115  1.1    skrll 		.mpcaa_name = "a9wdt",
    116  1.1    skrll 		.mpcaa_memt = faa->faa_bst,
    117  1.1    skrll 		.mpcaa_memh = bsh,
    118  1.1    skrll 		.mpcaa_irq = -1,
    119  1.1    skrll 	};
    120  1.1    skrll 
    121  1.1    skrll 	config_found(self, &mpcaa, NULL);
    122  1.1    skrll }
    123  1.1    skrll 
    124