1 /*- 2 * Copyright (c) 2012, 2013 The FreeBSD Foundation 3 * All rights reserved. 4 * 5 * This software was developed by Oleksandr Rybalko under sponsorship 6 * from the FreeBSD Foundation. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 */ 29 30 #include <sys/cdefs.h> 31 __FBSDID("$FreeBSD$"); 32 33 #include <sys/param.h> 34 #include <sys/systm.h> 35 #include <sys/kernel.h> 36 #include <sys/module.h> 37 #include <sys/time.h> 38 #include <sys/bus.h> 39 #include <sys/resource.h> 40 #include <sys/rman.h> 41 #include <sys/watchdog.h> 42 43 #include <machine/bus.h> 44 #include <machine/intr.h> 45 46 #include <dev/fdt/fdt_common.h> 47 #include <dev/ofw/openfirm.h> 48 #include <dev/ofw/ofw_bus.h> 49 #include <dev/ofw/ofw_bus_subr.h> 50 51 #include <arm/freescale/imx/imx_wdogreg.h> 52 53 struct imx_wdog_softc { 54 struct mtx sc_mtx; 55 device_t sc_dev; 56 bus_space_tag_t sc_bst; 57 bus_space_handle_t sc_bsh; 58 struct resource *sc_res[2]; 59 uint32_t sc_timeout; 60 }; 61 62 static struct resource_spec imx_wdog_spec[] = { 63 { SYS_RES_MEMORY, 0, RF_ACTIVE }, 64 { SYS_RES_IRQ, 0, RF_ACTIVE }, 65 { -1, 0 } 66 }; 67 68 static struct ofw_compat_data compat_data[] = { 69 {"fsl,imx6sx-wdt", 1}, 70 {"fsl,imx6sl-wdt", 1}, 71 {"fsl,imx6q-wdt", 1}, 72 {"fsl,imx53-wdt", 1}, 73 {"fsl,imx51-wdt", 1}, 74 {"fsl,imx50-wdt", 1}, 75 {"fsl,imx35-wdt", 1}, 76 {"fsl,imx27-wdt", 1}, 77 {"fsl,imx25-wdt", 1}, 78 {"fsl,imx21-wdt", 1}, 79 {NULL, 0} 80 }; 81 82 static void imx_watchdog(void *, u_int, int *); 83 static int imx_wdog_probe(device_t); 84 static int imx_wdog_attach(device_t); 85 86 static device_method_t imx_wdog_methods[] = { 87 DEVMETHOD(device_probe, imx_wdog_probe), 88 DEVMETHOD(device_attach, imx_wdog_attach), 89 DEVMETHOD_END 90 }; 91 92 static driver_t imx_wdog_driver = { 93 "imx_wdog", 94 imx_wdog_methods, 95 sizeof(struct imx_wdog_softc), 96 }; 97 static devclass_t imx_wdog_devclass; 98 DRIVER_MODULE(imx_wdog, simplebus, imx_wdog_driver, imx_wdog_devclass, 0, 0); 99 100 #define RD2(_sc, _r) \ 101 bus_space_read_2((_sc)->sc_bst, (_sc)->sc_bsh, (_r)) 102 #define WR2(_sc, _r, _v) \ 103 bus_space_write_2((_sc)->sc_bst, (_sc)->sc_bsh, (_r), (_v)) 104 105 static void 106 imx_watchdog(void *arg, u_int cmd, int *error) 107 { 108 struct imx_wdog_softc *sc; 109 uint16_t reg; 110 u_int timeout; 111 112 sc = arg; 113 mtx_lock(&sc->sc_mtx); 114 if (cmd == 0) { 115 if (bootverbose) 116 device_printf(sc->sc_dev, "Can not be disabled.\n"); 117 *error = EOPNOTSUPP; 118 } else { 119 timeout = (u_int)((1ULL << (cmd & WD_INTERVAL)) / 1000000000U); 120 if (timeout > 1 && timeout < 128) { 121 if (timeout != sc->sc_timeout) { 122 sc->sc_timeout = timeout; 123 reg = RD2(sc, WDOG_CR_REG); 124 reg &= ~WDOG_CR_WT_MASK; 125 reg |= (timeout << (WDOG_CR_WT_SHIFT + 1)) & 126 WDOG_CR_WT_MASK; 127 WR2(sc, WDOG_CR_REG, reg | WDOG_CR_WDE); 128 } 129 /* Refresh counter */ 130 WR2(sc, WDOG_SR_REG, WDOG_SR_STEP1); 131 WR2(sc, WDOG_SR_REG, WDOG_SR_STEP2); 132 *error = 0; 133 } 134 } 135 mtx_unlock(&sc->sc_mtx); 136 } 137 138 static int 139 imx_wdog_probe(device_t dev) 140 { 141 142 if (!ofw_bus_status_okay(dev)) 143 return (ENXIO); 144 145 if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0) 146 return (ENXIO); 147 148 device_set_desc(dev, "Freescale i.MX Watchdog"); 149 return (0); 150 } 151 152 static int 153 imx_wdog_attach(device_t dev) 154 { 155 struct imx_wdog_softc *sc; 156 157 sc = device_get_softc(dev); 158 sc->sc_dev = dev; 159 160 if (bus_alloc_resources(dev, imx_wdog_spec, sc->sc_res)) { 161 device_printf(dev, "could not allocate resources\n"); 162 return (ENXIO); 163 } 164 165 mtx_init(&sc->sc_mtx, device_get_nameunit(dev), "imx_wdt", MTX_DEF); 166 167 sc->sc_dev = dev; 168 sc->sc_bst = rman_get_bustag(sc->sc_res[0]); 169 sc->sc_bsh = rman_get_bushandle(sc->sc_res[0]); 170 171 /* TODO: handle interrupt */ 172 173 EVENTHANDLER_REGISTER(watchdog_list, imx_watchdog, sc, 0); 174 return (0); 175 } 176