Home | History | Annotate | Line # | Download | only in broadcom
bcm2835_mbox.c revision 1.2
      1  1.2  jakllsch /*	$NetBSD: bcm2835_mbox.c,v 1.2 2012/08/22 13:19:47 jakllsch Exp $	*/
      2  1.1     skrll 
      3  1.1     skrll /*-
      4  1.1     skrll  * Copyright (c) 2012 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  jakllsch __KERNEL_RCSID(0, "$NetBSD: bcm2835_mbox.c,v 1.2 2012/08/22 13:19:47 jakllsch Exp $");
     34  1.1     skrll 
     35  1.1     skrll #include <sys/param.h>
     36  1.1     skrll #include <sys/systm.h>
     37  1.1     skrll #include <sys/device.h>
     38  1.1     skrll #include <sys/kernel.h>
     39  1.1     skrll #include <sys/timetc.h>
     40  1.1     skrll #include <sys/bus.h>
     41  1.1     skrll 
     42  1.1     skrll #include <arm/broadcom/bcm_amba.h>
     43  1.1     skrll #include <arm/broadcom/bcm2835_mbox.h>
     44  1.1     skrll #include <arm/broadcom/bcm2835_mboxreg.h>
     45  1.1     skrll #include <arm/broadcom/bcm2835reg.h>
     46  1.1     skrll 
     47  1.1     skrll struct bcm2835mbox_softc {
     48  1.1     skrll 	device_t sc_dev;
     49  1.1     skrll 
     50  1.1     skrll 	bus_space_tag_t sc_iot;
     51  1.1     skrll 	bus_space_handle_t sc_ioh;
     52  1.1     skrll };
     53  1.1     skrll 
     54  1.1     skrll static struct bcm2835mbox_softc *bcm2835mbox_sc;
     55  1.1     skrll 
     56  1.1     skrll static int bcmmbox_match(device_t, cfdata_t, void *);
     57  1.1     skrll static void bcmmbox_attach(device_t, device_t, void *);
     58  1.1     skrll 
     59  1.1     skrll CFATTACH_DECL_NEW(bcmmbox, sizeof(struct bcm2835mbox_softc),
     60  1.1     skrll     bcmmbox_match, bcmmbox_attach, NULL, NULL);
     61  1.1     skrll 
     62  1.1     skrll /* ARGSUSED */
     63  1.1     skrll static int
     64  1.1     skrll bcmmbox_match(device_t parent, cfdata_t match, void *aux)
     65  1.1     skrll {
     66  1.1     skrll 	struct amba_attach_args *aaa = aux;
     67  1.1     skrll 
     68  1.1     skrll 	if (strcmp(aaa->aaa_name, "bcmmbox") != 0)
     69  1.1     skrll 		return 0;
     70  1.1     skrll 
     71  1.1     skrll 	return 1;
     72  1.1     skrll }
     73  1.1     skrll 
     74  1.1     skrll static void
     75  1.1     skrll bcmmbox_attach(device_t parent, device_t self, void *aux)
     76  1.1     skrll {
     77  1.1     skrll         struct bcm2835mbox_softc *sc = device_private(self);
     78  1.1     skrll  	struct amba_attach_args *aaa = aux;
     79  1.1     skrll 
     80  1.1     skrll 	aprint_naive("\n");
     81  1.1     skrll 	aprint_normal(": VC mailbox\n");
     82  1.1     skrll 
     83  1.1     skrll 	if (bcm2835mbox_sc == NULL)
     84  1.1     skrll 		bcm2835mbox_sc = sc;
     85  1.1     skrll 
     86  1.1     skrll 	sc->sc_dev = self;
     87  1.1     skrll 	sc->sc_iot = aaa->aaa_iot;
     88  1.1     skrll 
     89  1.1     skrll 	if (bus_space_map(aaa->aaa_iot, aaa->aaa_addr, BCM2835_MBOX_SIZE, 0,
     90  1.1     skrll 	    &sc->sc_ioh)) {
     91  1.1     skrll 		aprint_error_dev(sc->sc_dev, "unable to map device\n");
     92  1.1     skrll 		return;
     93  1.1     skrll 	}
     94  1.1     skrll }
     95  1.1     skrll 
     96  1.1     skrll void
     97  1.1     skrll bcmmbox_read(uint8_t chan, uint32_t *data)
     98  1.1     skrll {
     99  1.1     skrll 	struct bcm2835mbox_softc *sc = bcm2835mbox_sc;
    100  1.1     skrll 
    101  1.1     skrll 	KASSERT(sc != NULL);
    102  1.1     skrll 
    103  1.2  jakllsch 	return bcm2835_mbox_read(sc->sc_iot, sc->sc_ioh, chan, data);
    104  1.1     skrll }
    105  1.1     skrll 
    106  1.1     skrll void
    107  1.1     skrll bcmmbox_write(uint8_t chan, uint32_t data)
    108  1.1     skrll {
    109  1.1     skrll 	struct bcm2835mbox_softc *sc = bcm2835mbox_sc;
    110  1.1     skrll 
    111  1.1     skrll 	KASSERT(sc != NULL);
    112  1.1     skrll 
    113  1.2  jakllsch 	return bcm2835_mbox_write(sc->sc_iot, sc->sc_ioh, chan, data);
    114  1.1     skrll }
    115