1 /* $NetBSD: tegra_mc.c,v 1.12 2021/01/27 03:10:19 thorpej Exp $ */ 2 3 /*- 4 * Copyright (c) 2015 Jared D. McNeill <jmcneill@invisible.ca> 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 ``AS IS'' AND ANY EXPRESS OR 17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 24 * 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 "locators.h" 30 31 #include <sys/cdefs.h> 32 __KERNEL_RCSID(0, "$NetBSD: tegra_mc.c,v 1.12 2021/01/27 03:10:19 thorpej Exp $"); 33 34 #include <sys/param.h> 35 #include <sys/bus.h> 36 #include <sys/device.h> 37 #include <sys/intr.h> 38 #include <sys/systm.h> 39 #include <sys/kernel.h> 40 41 #include <arm/nvidia/tegra_reg.h> 42 #include <arm/nvidia/tegra_mcreg.h> 43 #include <arm/nvidia/tegra_var.h> 44 45 #include <dev/fdt/fdtvar.h> 46 47 static int tegra_mc_match(device_t, cfdata_t, void *); 48 static void tegra_mc_attach(device_t, device_t, void *); 49 50 static int tegra_mc_intr(void *); 51 52 struct tegra_mc_softc { 53 device_t sc_dev; 54 bus_space_tag_t sc_bst; 55 bus_space_handle_t sc_bsh; 56 void *sc_ih; 57 }; 58 59 static struct tegra_mc_softc *mc_softc = NULL; 60 61 CFATTACH_DECL_NEW(tegra_mc, sizeof(struct tegra_mc_softc), 62 tegra_mc_match, tegra_mc_attach, NULL, NULL); 63 64 #define MC_READ(sc, reg) \ 65 bus_space_read_4((sc)->sc_bst, (sc)->sc_bsh, (reg)) 66 #define MC_WRITE(sc, reg, val) \ 67 bus_space_write_4((sc)->sc_bst, (sc)->sc_bsh, (reg), (val)) 68 #define MC_SET_CLEAR(sc, reg, set, clr) \ 69 tegra_reg_set_clear((sc)->sc_bst, (sc)->sc_bsh, (reg), (set), (clr)) 70 71 static const struct device_compatible_entry compat_data[] = { 72 { .compat = "nvidia,tegra124-mc" }, 73 DEVICE_COMPAT_EOL 74 }; 75 76 static int 77 tegra_mc_match(device_t parent, cfdata_t cf, void *aux) 78 { 79 struct fdt_attach_args * const faa = aux; 80 81 return of_compatible_match(faa->faa_phandle, compat_data); 82 } 83 84 static void 85 tegra_mc_attach(device_t parent, device_t self, void *aux) 86 { 87 struct tegra_mc_softc * const sc = device_private(self); 88 struct fdt_attach_args * const faa = aux; 89 char intrstr[128]; 90 bus_addr_t addr; 91 bus_size_t size; 92 int error; 93 94 if (fdtbus_get_reg(faa->faa_phandle, 0, &addr, &size) != 0) { 95 aprint_error(": couldn't get registers\n"); 96 return; 97 } 98 99 sc->sc_dev = self; 100 sc->sc_bst = faa->faa_bst; 101 error = bus_space_map(sc->sc_bst, addr, size, 0, &sc->sc_bsh); 102 if (error) { 103 aprint_error(": couldn't map %#" PRIxBUSADDR ": %d", addr, error); 104 return; 105 } 106 107 KASSERT(mc_softc == NULL); 108 mc_softc = sc; 109 110 aprint_naive("\n"); 111 aprint_normal(": MC\n"); 112 113 if (!fdtbus_intr_str(faa->faa_phandle, 0, intrstr, sizeof(intrstr))) { 114 aprint_error_dev(self, "failed to decode interrupt\n"); 115 return; 116 } 117 118 sc->sc_ih = fdtbus_intr_establish_xname(faa->faa_phandle, 0, IPL_VM, 119 FDT_INTR_MPSAFE, tegra_mc_intr, sc, device_xname(self)); 120 if (sc->sc_ih == NULL) { 121 aprint_error_dev(self, "failed to establish interrupt on %s\n", 122 intrstr); 123 return; 124 } 125 aprint_normal_dev(self, "interrupting on %s\n", intrstr); 126 127 MC_WRITE(sc, MC_INTSTATUS_REG, MC_INT__ALL); 128 MC_WRITE(sc, MC_INTMASK_REG, MC_INT__ALL); 129 } 130 131 static int 132 tegra_mc_intr(void *v) 133 { 134 struct tegra_mc_softc * const sc = v; 135 136 const uint32_t status = MC_READ(sc, MC_INTSTATUS_REG); 137 138 if (status == 0) { 139 return 0; 140 } 141 142 const uint32_t err_status = MC_READ(sc, MC_ERR_STATUS_REG); 143 const uint32_t err_adr = MC_READ(sc, MC_ERR_ADR_REG); 144 145 device_printf(sc->sc_dev, "intrstatus %#x err %#x adr %#x\n", 146 status, err_status, err_adr); 147 148 MC_WRITE(sc, MC_INTSTATUS_REG, status); 149 150 return status; 151 } 152