Home | History | Annotate | Line # | Download | only in fdt
a9wdt_fdt.c revision 1.1
      1  1.1  skrll /* $NetBSD: a9wdt_fdt.c,v 1.1 2019/08/10 17:03:59 skrll 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.1  skrll __KERNEL_RCSID(0, "$NetBSD: a9wdt_fdt.c,v 1.1 2019/08/10 17:03:59 skrll 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.1  skrll static int
     71  1.1  skrll a9wdt_fdt_match(device_t parent, cfdata_t cf, void *aux)
     72  1.1  skrll {
     73  1.1  skrll 	const char * const compatible[] = {
     74  1.1  skrll 		"arm,cortex-a9-twd-wdt",
     75  1.1  skrll 		"arm,cortex-a5-twd-wdt",
     76  1.1  skrll 		NULL
     77  1.1  skrll 	};
     78  1.1  skrll 	struct fdt_attach_args * const faa = aux;
     79  1.1  skrll 
     80  1.1  skrll 	return of_compatible(faa->faa_phandle, compatible) >= 0;
     81  1.1  skrll }
     82  1.1  skrll 
     83  1.1  skrll static void
     84  1.1  skrll a9wdt_fdt_attach(device_t parent, device_t self, void *aux)
     85  1.1  skrll {
     86  1.1  skrll 	struct a9wdt_fdt_softc * const sc = device_private(self);
     87  1.1  skrll 	struct fdt_attach_args * const faa = aux;
     88  1.1  skrll 	const int phandle = faa->faa_phandle;
     89  1.1  skrll 	bus_space_handle_t bsh;
     90  1.1  skrll 
     91  1.1  skrll 	sc->sc_dev = self;
     92  1.1  skrll 
     93  1.1  skrll 	char intrstr[128];
     94  1.1  skrll 	if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
     95  1.1  skrll 		aprint_error(": failed to decode interrupt\n");
     96  1.1  skrll 		return;
     97  1.1  skrll 	}
     98  1.1  skrll 
     99  1.1  skrll 	aprint_naive("\n");
    100  1.1  skrll 	aprint_normal("\n");
    101  1.1  skrll 
    102  1.1  skrll 	bus_addr_t addr;
    103  1.1  skrll 	bus_size_t size;
    104  1.1  skrll 	if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
    105  1.1  skrll 		aprint_error(": couldn't get registers\n");
    106  1.1  skrll 		return;
    107  1.1  skrll 	}
    108  1.1  skrll 	if (bus_space_map(faa->faa_bst, addr, size, 0, &bsh)) {
    109  1.1  skrll 		aprint_error(": couldn't map registers\n");
    110  1.1  skrll 		return;
    111  1.1  skrll 	}
    112  1.1  skrll 
    113  1.1  skrll 	struct mpcore_attach_args mpcaa = {
    114  1.1  skrll 		.mpcaa_name = "a9wdt",
    115  1.1  skrll 		.mpcaa_memt = faa->faa_bst,
    116  1.1  skrll 		.mpcaa_memh = bsh,
    117  1.1  skrll 		.mpcaa_irq = -1,
    118  1.1  skrll 	};
    119  1.1  skrll 
    120  1.1  skrll 	config_found(self, &mpcaa, NULL);
    121  1.1  skrll }
    122  1.1  skrll 
    123