mtw(4) remove misplaced DEBUG_FLAGS
[freebsd/src.git] / sys / dev / qcom_tcsr / qcom_tcsr.c
blob736f5f5711f98ce319223b88d818d945be4eccc0
1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2021, Adrian Chadd <adrian@FreeBSD.org>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice unmodified, this list of conditions, and the following
11 * 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.
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.
29 #include <sys/param.h>
30 #include <sys/systm.h>
32 #include <sys/bus.h>
33 #include <sys/interrupt.h>
34 #include <sys/malloc.h>
35 #include <sys/lock.h>
36 #include <sys/mutex.h>
37 #include <sys/kernel.h>
38 #include <sys/module.h>
39 #include <sys/rman.h>
40 #include <sys/gpio.h>
42 #include <vm/vm.h>
43 #include <vm/pmap.h>
44 #include <vm/vm_extern.h>
46 #include <machine/bus.h>
47 #include <machine/cpu.h>
49 #include <dev/fdt/fdt_common.h>
50 #include <dev/fdt/fdt_pinctrl.h>
52 #include <dev/gpio/gpiobusvar.h>
53 #include <dev/ofw/ofw_bus.h>
54 #include <dev/ofw/ofw_bus_subr.h>
56 #include <dev/qcom_tcsr/qcom_tcsr_var.h>
57 #include <dev/qcom_tcsr/qcom_tcsr_reg.h>
60 * The linux-msm branches that support IPQ4018 use "ipq,tcsr".
61 * The openwrt addons use qcom,tcsr. So for now support both.
63 * Also, it's not quite clear yet (since this is the first port!)
64 * whether these options and registers are specific to the QCA IPQ401x
65 * part or show up in different linux branches as different registers
66 * but with the same driver/naming here. Let's hope that doesn't
67 * happen.
69 static struct ofw_compat_data compat_data[] = {
70 { "qcom,tcsr", 1 },
71 { "ipq,tcsr", 1 },
72 { NULL, 0 }
75 static int
76 qcom_tcsr_probe(device_t dev)
79 if (!ofw_bus_status_okay(dev))
80 return (ENXIO);
82 if (!ofw_bus_search_compatible(dev, compat_data)->ocd_data)
83 return (ENXIO);
85 device_set_desc(dev, "Qualcomm Core Top Control and Status Driver");
86 return (BUS_PROBE_DEFAULT);
89 static int
90 qcom_tcsr_attach(device_t dev)
92 struct qcom_tcsr_softc *sc = device_get_softc(dev);
93 int rid, ret;
94 uint32_t val;
96 sc->sc_dev = dev;
99 * Hardware version is stored in the ofw_compat_data table.
101 sc->hw_version =
102 ofw_bus_search_compatible(dev, compat_data)->ocd_data;
104 mtx_init(&sc->sc_mtx, device_get_nameunit(dev), NULL, MTX_DEF);
106 rid = 0;
107 sc->sc_mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
108 RF_ACTIVE);
109 if (!sc->sc_mem_res) {
110 device_printf(dev, "ERROR: Could not map memory\n");
111 ret = ENXIO;
112 goto error;
116 * Parse out the open firmware entries to see which particular
117 * configurations we need to set here.
121 * USB control select.
123 * For linux-msm on the IPQ401x, it actually calls into the SCM
124 * to make the change. OpenWRT just does a register write.
125 * We'll do the register write for now.
127 if (OF_getencprop(ofw_bus_get_node(dev), "qcom,usb-ctrl-select",
128 &val, sizeof(val)) > 0) {
129 if (bootverbose)
130 device_printf(sc->sc_dev,
131 "USB control select (val 0x%x)\n",
132 val);
133 QCOM_TCSR_WRITE_4(sc, QCOM_TCSR_USB_PORT_SEL, val);
137 * USB high speed phy mode select.
139 if (OF_getencprop(ofw_bus_get_node(dev), "qcom,usb-hsphy-mode-select",
140 &val, sizeof(val)) > 0) {
141 if (bootverbose)
142 device_printf(sc->sc_dev,
143 "USB high speed PHY mode select (val 0x%x)\n",
144 val);
145 QCOM_TCSR_WRITE_4(sc, QCOM_TCSR_USB_HSPHY_CONFIG, val);
149 * Ethernet switch subsystem interface type select.
151 if (OF_getencprop(ofw_bus_get_node(dev), "qcom,ess-interface-select",
152 &val, sizeof(val)) > 0) {
153 uint32_t reg;
155 if (bootverbose)
156 device_printf(sc->sc_dev,
157 "ESS external interface select (val 0x%x)\n",
158 val);
159 reg = QCOM_TCSR_READ_4(sc, QCOM_TCSR_ESS_INTERFACE_SEL_OFFSET);
160 reg &= ~QCOM_TCSR_ESS_INTERFACE_SEL_MASK;
161 reg |= (val & QCOM_TCSR_ESS_INTERFACE_SEL_MASK);
162 QCOM_TCSR_WRITE_4(sc, QCOM_TCSR_ESS_INTERFACE_SEL_OFFSET, reg);
166 * WiFi GLB select.
168 if (OF_getencprop(ofw_bus_get_node(dev), "qcom,wifi_glb_cfg",
169 &val, sizeof(val)) > 0) {
170 if (bootverbose)
171 device_printf(sc->sc_dev,
172 "WIFI GLB select (val 0x%x)\n",
173 val);
174 QCOM_TCSR_WRITE_4(sc, QCOM_TCSR_WIFI0_GLB_CFG_OFFSET, val);
175 QCOM_TCSR_WRITE_4(sc, QCOM_TCSR_WIFI1_GLB_CFG_OFFSET, val);
179 * WiFi NOC interconnect memory type.
181 if (OF_getencprop(ofw_bus_get_node(dev),
182 "qcom,wifi_noc_memtype_m0_m2",
183 &val, sizeof(val)) > 0) {
184 if (bootverbose)
185 device_printf(sc->sc_dev,
186 "WiFi NOC memory type (val 0x%x)\n",
187 val);
188 QCOM_TCSR_WRITE_4(sc, QCOM_TCSR_PNOC_SNOC_MEMTYPE_M0_M2, val);
191 return (0);
193 error:
194 if (sc->sc_mem_res)
195 bus_release_resource(dev, SYS_RES_MEMORY, 0, sc->sc_mem_res);
196 mtx_destroy(&sc->sc_mtx);
197 return (ret);
200 static int
201 qcom_tcsr_detach(device_t dev)
203 struct qcom_tcsr_softc *sc = device_get_softc(dev);
205 if (sc->sc_mem_res)
206 bus_release_resource(dev, SYS_RES_MEMORY, 0, sc->sc_mem_res);
208 mtx_destroy(&sc->sc_mtx);
210 return (0);
213 static device_method_t qcom_tcsr_methods[] = {
214 /* Device interface */
215 DEVMETHOD(device_probe, qcom_tcsr_probe),
216 DEVMETHOD(device_attach, qcom_tcsr_attach),
217 DEVMETHOD(device_detach, qcom_tcsr_detach),
219 DEVMETHOD_END
222 static driver_t qcom_tcsr_driver = {
223 "qcom_tcsr",
224 qcom_tcsr_methods,
225 sizeof(struct qcom_tcsr_softc),
229 * This has to be run early, before the rest of the hardware is potentially
230 * probed/attached.
232 EARLY_DRIVER_MODULE(qcom_tcsr, simplebus, qcom_tcsr_driver, 0, 0,
233 BUS_PASS_CPU + BUS_PASS_ORDER_EARLY);
234 SIMPLEBUS_PNP_INFO(compat_data);