xref: /freebsd/sys/arm/allwinner/a10_sramc.c (revision b3e7694832e81d7a904a10f525f8797b753bf0d3)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2013 Ganbold Tsagaankhuu <ganbold@freebsd.org>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31 
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/bus.h>
35 #include <sys/kernel.h>
36 #include <sys/module.h>
37 #include <sys/malloc.h>
38 #include <sys/rman.h>
39 #include <sys/timeet.h>
40 #include <sys/timetc.h>
41 #include <sys/watchdog.h>
42 #include <machine/bus.h>
43 #include <machine/cpu.h>
44 #include <machine/frame.h>
45 #include <machine/intr.h>
46 
47 #include <dev/ofw/openfirm.h>
48 #include <dev/ofw/ofw_bus.h>
49 #include <dev/ofw/ofw_bus_subr.h>
50 
51 #include "a10_sramc.h"
52 
53 #define	SRAM_CTL1_CFG		0x04
54 #define	CTL1_CFG_SRAMD_MAP_USB0	(1 << 0)
55 
56 struct a10_sramc_softc {
57 	struct resource		*res;
58 	bus_space_tag_t		bst;
59 	bus_space_handle_t	bsh;
60 };
61 
62 static struct a10_sramc_softc *a10_sramc_sc;
63 
64 #define	sramc_read_4(sc, reg)		\
65     bus_space_read_4((sc)->bst, (sc)->bsh, (reg))
66 #define	sramc_write_4(sc, reg, val)	\
67     bus_space_write_4((sc)->bst, (sc)->bsh, (reg), (val))
68 
69 static int
70 a10_sramc_probe(device_t dev)
71 {
72 
73 	if (ofw_bus_is_compatible(dev, "allwinner,sun4i-a10-sram-controller")) {
74 		device_set_desc(dev, "Allwinner sramc module");
75 		return (BUS_PROBE_DEFAULT);
76 	}
77 
78 	return (ENXIO);
79 }
80 
81 static int
82 a10_sramc_attach(device_t dev)
83 {
84 	struct a10_sramc_softc *sc = device_get_softc(dev);
85 	int rid = 0;
86 
87 	sc->res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, RF_ACTIVE);
88 	if (!sc->res) {
89 		device_printf(dev, "could not allocate resource\n");
90 		return (ENXIO);
91 	}
92 
93 	sc->bst = rman_get_bustag(sc->res);
94 	sc->bsh = rman_get_bushandle(sc->res);
95 
96 	a10_sramc_sc = sc;
97 
98 	return (0);
99 }
100 
101 static device_method_t a10_sramc_methods[] = {
102 	DEVMETHOD(device_probe,		a10_sramc_probe),
103 	DEVMETHOD(device_attach,	a10_sramc_attach),
104 	{ 0, 0 }
105 };
106 
107 static driver_t a10_sramc_driver = {
108 	"a10_sramc",
109 	a10_sramc_methods,
110 	sizeof(struct a10_sramc_softc),
111 };
112 
113 EARLY_DRIVER_MODULE(a10_sramc, simplebus, a10_sramc_driver, 0, 0,
114     BUS_PASS_SUPPORTDEV + BUS_PASS_ORDER_FIRST);
115 
116 int
117 a10_map_to_emac(void)
118 {
119 	struct a10_sramc_softc *sc = a10_sramc_sc;
120 	uint32_t reg_value;
121 
122 	if (sc == NULL)
123 		return (ENXIO);
124 
125 	/* Map SRAM to EMAC, set bit 2 and 4. */
126 	reg_value = sramc_read_4(sc, SRAM_CTL1_CFG);
127 	reg_value |= 0x5 << 2;
128 	sramc_write_4(sc, SRAM_CTL1_CFG, reg_value);
129 
130 	return (0);
131 }
132 
133 int
134 a10_map_to_otg(void)
135 {
136 	struct a10_sramc_softc *sc = a10_sramc_sc;
137 	uint32_t reg_value;
138 
139 	if (sc == NULL)
140 		return (ENXIO);
141 
142 	/* Map SRAM to OTG */
143 	reg_value = sramc_read_4(sc, SRAM_CTL1_CFG);
144 	reg_value |= CTL1_CFG_SRAMD_MAP_USB0;
145 	sramc_write_4(sc, SRAM_CTL1_CFG, reg_value);
146 
147 	return (0);
148 }
149