Home | History | Annotate | Line # | Download | only in sunxi
sunxi_sramc.c revision 1.1
      1  1.1  jmcneill /* $NetBSD: sunxi_sramc.c,v 1.1 2017/10/09 15:53:28 jmcneill Exp $ */
      2  1.1  jmcneill 
      3  1.1  jmcneill /*-
      4  1.1  jmcneill  * Copyright (c) 2017 Jared 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.1  jmcneill #include <sys/cdefs.h>
     30  1.1  jmcneill __KERNEL_RCSID(0, "$NetBSD: sunxi_sramc.c,v 1.1 2017/10/09 15:53:28 jmcneill Exp $");
     31  1.1  jmcneill 
     32  1.1  jmcneill #include <sys/param.h>
     33  1.1  jmcneill #include <sys/bus.h>
     34  1.1  jmcneill #include <sys/device.h>
     35  1.1  jmcneill #include <sys/intr.h>
     36  1.1  jmcneill #include <sys/systm.h>
     37  1.1  jmcneill #include <sys/kmem.h>
     38  1.1  jmcneill 
     39  1.1  jmcneill #include <dev/fdt/fdtvar.h>
     40  1.1  jmcneill 
     41  1.1  jmcneill #include <arm/sunxi/sunxi_sramc.h>
     42  1.1  jmcneill 
     43  1.1  jmcneill static const char * compatible[] = {
     44  1.1  jmcneill 	"allwinner,sun4i-a10-sram-controller",
     45  1.1  jmcneill 	NULL
     46  1.1  jmcneill };
     47  1.1  jmcneill 
     48  1.1  jmcneill static const struct sunxi_sramc_area {
     49  1.1  jmcneill 	const char			*compatible;
     50  1.1  jmcneill 	const char			*desc;
     51  1.1  jmcneill 	bus_size_t			reg;
     52  1.1  jmcneill 	uint32_t			mask;
     53  1.1  jmcneill } sunxi_sramc_areas[] = {
     54  1.1  jmcneill 	{ "allwinner,sun4i-a10-sram-a3-a4",
     55  1.1  jmcneill 	  "SRAM A3/A4",
     56  1.1  jmcneill 	  0x04, __BITS(5,4) },
     57  1.1  jmcneill 	{ "allwinner,sun4i-a10-sram-d",
     58  1.1  jmcneill 	  "SRAM D",
     59  1.1  jmcneill 	  0x04, __BIT(0) }
     60  1.1  jmcneill };
     61  1.1  jmcneill 
     62  1.1  jmcneill struct sunxi_sramc_node {
     63  1.1  jmcneill 	int				phandle;
     64  1.1  jmcneill 	const struct sunxi_sramc_area	*area;
     65  1.1  jmcneill 	TAILQ_ENTRY(sunxi_sramc_node)	nodes;
     66  1.1  jmcneill };
     67  1.1  jmcneill 
     68  1.1  jmcneill struct sunxi_sramc_softc {
     69  1.1  jmcneill 	device_t			sc_dev;
     70  1.1  jmcneill 	int				sc_phandle;
     71  1.1  jmcneill 	bus_space_tag_t			sc_bst;
     72  1.1  jmcneill 	bus_space_handle_t		sc_bsh;
     73  1.1  jmcneill 	TAILQ_HEAD(, sunxi_sramc_node)	sc_nodes;
     74  1.1  jmcneill };
     75  1.1  jmcneill 
     76  1.1  jmcneill static struct sunxi_sramc_softc *sramc_softc = NULL;
     77  1.1  jmcneill 
     78  1.1  jmcneill #define SRAMC_READ(sc, reg) \
     79  1.1  jmcneill 	bus_space_read_4((sc)->sc_bst, (sc)->sc_bsh, (reg))
     80  1.1  jmcneill #define SRAMC_WRITE(sc, reg, val) \
     81  1.1  jmcneill 	bus_space_write_4((sc)->sc_bst, (sc)->sc_bsh, (reg), (val))
     82  1.1  jmcneill 
     83  1.1  jmcneill static void
     84  1.1  jmcneill sunxi_sramc_init_mmio(struct sunxi_sramc_softc *sc, int phandle)
     85  1.1  jmcneill {
     86  1.1  jmcneill 	struct sunxi_sramc_node *node;
     87  1.1  jmcneill 	int child, i;
     88  1.1  jmcneill 
     89  1.1  jmcneill 	for (child = OF_child(phandle); child; child = OF_peer(child))
     90  1.1  jmcneill 		for (i = 0; i < __arraycount(sunxi_sramc_areas); i++) {
     91  1.1  jmcneill 			const char * area_compatible[] = { sunxi_sramc_areas[i].compatible, NULL };
     92  1.1  jmcneill 			if (of_match_compatible(child, area_compatible)) {
     93  1.1  jmcneill 				node = kmem_alloc(sizeof(*node), KM_SLEEP);
     94  1.1  jmcneill 				node->phandle = child;
     95  1.1  jmcneill 				node->area = &sunxi_sramc_areas[i];
     96  1.1  jmcneill 				TAILQ_INSERT_TAIL(&sc->sc_nodes, node, nodes);
     97  1.1  jmcneill 				aprint_verbose_dev(sc->sc_dev, "area: %s\n", node->area->desc);
     98  1.1  jmcneill 				break;
     99  1.1  jmcneill 			}
    100  1.1  jmcneill 		}
    101  1.1  jmcneill }
    102  1.1  jmcneill 
    103  1.1  jmcneill static void
    104  1.1  jmcneill sunxi_sramc_init(struct sunxi_sramc_softc *sc)
    105  1.1  jmcneill {
    106  1.1  jmcneill 	const char * mmio_compatible[] = { "mmio-sram", NULL };
    107  1.1  jmcneill 	int child;
    108  1.1  jmcneill 
    109  1.1  jmcneill 	for (child = OF_child(sc->sc_phandle); child; child = OF_peer(child)) {
    110  1.1  jmcneill 		if (!of_match_compatible(child, mmio_compatible))
    111  1.1  jmcneill 			continue;
    112  1.1  jmcneill 		sunxi_sramc_init_mmio(sc, child);
    113  1.1  jmcneill 	}
    114  1.1  jmcneill }
    115  1.1  jmcneill 
    116  1.1  jmcneill static int
    117  1.1  jmcneill sunxi_sramc_match(device_t parent, cfdata_t cf, void *aux)
    118  1.1  jmcneill {
    119  1.1  jmcneill 	struct fdt_attach_args * const faa = aux;
    120  1.1  jmcneill 
    121  1.1  jmcneill 	return of_match_compatible(faa->faa_phandle, compatible);
    122  1.1  jmcneill }
    123  1.1  jmcneill 
    124  1.1  jmcneill static void
    125  1.1  jmcneill sunxi_sramc_attach(device_t parent, device_t self, void *aux)
    126  1.1  jmcneill {
    127  1.1  jmcneill 	struct sunxi_sramc_softc * const sc = device_private(self);
    128  1.1  jmcneill 	struct fdt_attach_args * const faa = aux;
    129  1.1  jmcneill 	const int phandle = faa->faa_phandle;
    130  1.1  jmcneill 	bus_addr_t addr;
    131  1.1  jmcneill 	bus_size_t size;
    132  1.1  jmcneill 
    133  1.1  jmcneill 	if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
    134  1.1  jmcneill 		aprint_error(": couldn't get registers\n");
    135  1.1  jmcneill 		return;
    136  1.1  jmcneill 	}
    137  1.1  jmcneill 
    138  1.1  jmcneill 	sc->sc_dev = self;
    139  1.1  jmcneill 	sc->sc_phandle = phandle;
    140  1.1  jmcneill 	sc->sc_bst = faa->faa_bst;
    141  1.1  jmcneill 	if (bus_space_map(sc->sc_bst, addr, size, 0, &sc->sc_bsh) != 0) {
    142  1.1  jmcneill 		aprint_error(": couldn't map registers\n");
    143  1.1  jmcneill 		return;
    144  1.1  jmcneill 	}
    145  1.1  jmcneill 	TAILQ_INIT(&sc->sc_nodes);
    146  1.1  jmcneill 
    147  1.1  jmcneill 	aprint_naive("\n");
    148  1.1  jmcneill 	aprint_normal(": SRAM Controller\n");
    149  1.1  jmcneill 
    150  1.1  jmcneill 	sunxi_sramc_init(sc);
    151  1.1  jmcneill 
    152  1.1  jmcneill 	KASSERT(sramc_softc == NULL);
    153  1.1  jmcneill 	sramc_softc = sc;
    154  1.1  jmcneill }
    155  1.1  jmcneill 
    156  1.1  jmcneill CFATTACH_DECL_NEW(sunxi_sramc, sizeof(struct sunxi_sramc_softc),
    157  1.1  jmcneill 	sunxi_sramc_match, sunxi_sramc_attach, NULL, NULL);
    158  1.1  jmcneill 
    159  1.1  jmcneill static int
    160  1.1  jmcneill sunxi_sramc_map(const int node_phandle, u_int config)
    161  1.1  jmcneill {
    162  1.1  jmcneill 	struct sunxi_sramc_softc * const sc = sramc_softc;
    163  1.1  jmcneill 	struct sunxi_sramc_node *node;
    164  1.1  jmcneill 	uint32_t val;
    165  1.1  jmcneill 
    166  1.1  jmcneill 	if (sc == NULL)
    167  1.1  jmcneill 		return ENXIO;
    168  1.1  jmcneill 
    169  1.1  jmcneill 	TAILQ_FOREACH(node, &sc->sc_nodes, nodes)
    170  1.1  jmcneill 		if (node->phandle == node_phandle) {
    171  1.1  jmcneill 			if (config > __SHIFTOUT_MASK(node->area->mask))
    172  1.1  jmcneill 				return ERANGE;
    173  1.1  jmcneill 			val = SRAMC_READ(sc, node->area->reg);
    174  1.1  jmcneill 			val &= ~node->area->mask;
    175  1.1  jmcneill 			val |= __SHIFTIN(config, node->area->mask);
    176  1.1  jmcneill 			SRAMC_WRITE(sc, node->area->reg, val);
    177  1.1  jmcneill 			return 0;
    178  1.1  jmcneill 		}
    179  1.1  jmcneill 
    180  1.1  jmcneill 	return EINVAL;
    181  1.1  jmcneill }
    182  1.1  jmcneill 
    183  1.1  jmcneill int
    184  1.1  jmcneill sunxi_sramc_claim(const int phandle)
    185  1.1  jmcneill {
    186  1.1  jmcneill 	const u_int *data;
    187  1.1  jmcneill 	int len;
    188  1.1  jmcneill 
    189  1.1  jmcneill 	data = fdtbus_get_prop(phandle, "allwinner,sram", &len);
    190  1.1  jmcneill 	if (data == NULL)
    191  1.1  jmcneill 		return ENOENT;
    192  1.1  jmcneill 	if (len != 8)
    193  1.1  jmcneill 		return EIO;
    194  1.1  jmcneill 
    195  1.1  jmcneill 	const int node_phandle = fdtbus_get_phandle_from_native(be32toh(data[0]));
    196  1.1  jmcneill 	const u_int config = be32toh(data[1]);
    197  1.1  jmcneill 
    198  1.1  jmcneill 	return sunxi_sramc_map(node_phandle, config);
    199  1.1  jmcneill }
    200