Home | History | Annotate | Line # | Download | only in samsung
exynos_wdt.c revision 1.11.8.1
      1  1.11.8.1  thorpej /*	$NetBSD: exynos_wdt.c,v 1.11.8.1 2021/04/03 22:28:18 thorpej Exp $	*/
      2       1.1     matt 
      3       1.1     matt /*-
      4       1.1     matt  * Copyright (c) 2012 The NetBSD Foundation, Inc.
      5       1.1     matt  * All rights reserved.
      6       1.1     matt  *
      7       1.1     matt  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1     matt  * by Matt Thomas
      9       1.1     matt  *
     10       1.1     matt  * Redistribution and use in source and binary forms, with or without
     11       1.1     matt  * modification, are permitted provided that the following conditions
     12       1.1     matt  * are met:
     13       1.1     matt  * 1. Redistributions of source code must retain the above copyright
     14       1.1     matt  *    notice, this list of conditions and the following disclaimer.
     15       1.1     matt  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1     matt  *    notice, this list of conditions and the following disclaimer in the
     17       1.1     matt  *    documentation and/or other materials provided with the distribution.
     18       1.1     matt  *
     19       1.1     matt  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.1     matt  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.1     matt  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.1     matt  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.1     matt  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.1     matt  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.1     matt  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.1     matt  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.1     matt  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.1     matt  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.1     matt  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1     matt  */
     31       1.1     matt 
     32       1.1     matt #include "exynos_wdt.h"
     33       1.1     matt 
     34       1.1     matt #include <sys/cdefs.h>
     35  1.11.8.1  thorpej __KERNEL_RCSID(0, "$NetBSD: exynos_wdt.c,v 1.11.8.1 2021/04/03 22:28:18 thorpej Exp $");
     36       1.1     matt 
     37       1.1     matt #include <sys/param.h>
     38       1.1     matt #include <sys/bus.h>
     39       1.1     matt #include <sys/cpu.h>
     40       1.1     matt #include <sys/device.h>
     41       1.1     matt #include <sys/wdog.h>
     42       1.1     matt 
     43       1.1     matt #include <prop/proplib.h>
     44       1.1     matt 
     45       1.1     matt #include <dev/sysmon/sysmonvar.h>
     46       1.1     matt 
     47       1.1     matt #include <arm/samsung/exynos_reg.h>
     48       1.1     matt #include <arm/samsung/exynos_var.h>
     49       1.3  reinoud 
     50       1.8    marty #include <dev/fdt/fdtvar.h>
     51       1.3  reinoud 
     52       1.1     matt #if NEXYNOS_WDT > 0
     53       1.1     matt static int exynos_wdt_match(device_t, cfdata_t, void *);
     54       1.1     matt static void exynos_wdt_attach(device_t, device_t, void *);
     55       1.1     matt 
     56       1.1     matt struct exynos_wdt_softc {
     57       1.1     matt 	device_t sc_dev;
     58       1.1     matt 	bus_space_tag_t sc_bst;
     59       1.1     matt 	bus_space_handle_t sc_wdog_bsh;
     60       1.7    marty 	struct sysmon_wdog sc_smw;
     61       1.1     matt 	u_int sc_wdog_period;
     62       1.1     matt 	u_int sc_wdog_clock_select;
     63       1.1     matt 	u_int sc_wdog_prescaler;
     64       1.1     matt 	uint32_t sc_freq;
     65       1.1     matt 	uint32_t sc_wdog_wtdat;
     66       1.1     matt 	uint32_t sc_wdog_wtcon;
     67       1.1     matt 	bool sc_wdog_armed;
     68       1.1     matt };
     69       1.1     matt 
     70       1.1     matt #ifndef EXYNOS_WDT_PERIOD_DEFAULT
     71       1.7    marty #define	EXYNOS_WDT_PERIOD_DEFAULT	60
     72       1.1     matt #endif
     73       1.1     matt 
     74       1.1     matt CFATTACH_DECL_NEW(exynos_wdt, sizeof(struct exynos_wdt_softc),
     75       1.1     matt     exynos_wdt_match, exynos_wdt_attach, NULL, NULL);
     76       1.1     matt 
     77       1.1     matt static inline uint32_t
     78       1.1     matt exynos_wdt_wdog_read(struct exynos_wdt_softc *sc, bus_size_t o)
     79       1.1     matt {
     80       1.1     matt 	return bus_space_read_4(sc->sc_bst, sc->sc_wdog_bsh, o);
     81       1.1     matt }
     82       1.1     matt 
     83       1.1     matt static inline void
     84       1.1     matt exynos_wdt_wdog_write(struct exynos_wdt_softc *sc, bus_size_t o, uint32_t v)
     85       1.1     matt {
     86       1.1     matt 	bus_space_write_4(sc->sc_bst, sc->sc_wdog_bsh, o, v);
     87       1.1     matt }
     88       1.1     matt 
     89  1.11.8.1  thorpej static const struct device_compatible_entry compat_data[] = {
     90  1.11.8.1  thorpej 	{ .compat = "samsung,exynos5420-wdt" },
     91  1.11.8.1  thorpej 	DEVICE_COMPAT_EOL
     92  1.11.8.1  thorpej };
     93  1.11.8.1  thorpej 
     94       1.1     matt /* ARGSUSED */
     95       1.1     matt static int
     96       1.1     matt exynos_wdt_match(device_t parent, cfdata_t cf, void *aux)
     97       1.1     matt {
     98       1.8    marty 	struct fdt_attach_args * const faa = aux;
     99       1.8    marty 
    100  1.11.8.1  thorpej 	return of_compatible_match(faa->faa_phandle, compat_data);
    101       1.1     matt }
    102       1.1     matt 
    103       1.1     matt static int
    104       1.1     matt exynos_wdt_tickle(struct sysmon_wdog *smw)
    105       1.1     matt {
    106       1.1     matt 	struct exynos_wdt_softc * const sc = smw->smw_cookie;
    107       1.1     matt 
    108       1.1     matt 	/*
    109       1.1     matt 	 * Cause the WDOG to restart counting.
    110       1.1     matt 	 */
    111       1.1     matt 	exynos_wdt_wdog_write(sc, EXYNOS_WDT_WTCNT, sc->sc_wdog_wtdat);
    112       1.1     matt 	aprint_debug_dev(sc->sc_dev, "tickle\n");
    113       1.1     matt 	return 0;
    114       1.1     matt }
    115       1.1     matt 
    116       1.1     matt static int
    117       1.1     matt exynos_wdt_setmode(struct sysmon_wdog *smw)
    118       1.1     matt {
    119       1.1     matt 	struct exynos_wdt_softc * const sc = smw->smw_cookie;
    120       1.1     matt 
    121       1.1     matt 	if ((smw->smw_mode & WDOG_MODE_MASK) == WDOG_MODE_DISARMED) {
    122       1.1     matt 		/*
    123       1.1     matt 		 * Emit magic sequence to turn off WDOG
    124       1.1     matt 		 */
    125       1.1     matt 		sc->sc_wdog_wtcon &= ~(WTCON_ENABLE|WTCON_RESET_ENABLE);
    126       1.1     matt 		exynos_wdt_wdog_write(sc, EXYNOS_WDT_WTCON, sc->sc_wdog_wtcon);
    127       1.1     matt 		delay(1);
    128       1.1     matt 		aprint_debug_dev(sc->sc_dev, "setmode disable\n");
    129       1.1     matt 		return 0;
    130       1.1     matt 	}
    131       1.1     matt 
    132       1.1     matt 	/*
    133       1.1     matt 	 * If no changes, just tickle it and return.
    134       1.1     matt 	 */
    135       1.1     matt 	if (sc->sc_wdog_armed && smw->smw_period == sc->sc_wdog_period) {
    136       1.1     matt 		sc->sc_wdog_wtdat = sc->sc_freq * sc->sc_wdog_period - 1;
    137       1.1     matt 		sc->sc_wdog_wtcon = WTCON_ENABLE | WTCON_RESET_ENABLE
    138       1.1     matt 		    | __SHIFTIN(sc->sc_wdog_clock_select, WTCON_CLOCK_SELECT)
    139       1.1     matt 		    | __SHIFTIN(sc->sc_wdog_prescaler - 1, WTCON_PRESCALER);
    140       1.1     matt 
    141       1.1     matt 		exynos_wdt_wdog_write(sc, EXYNOS_WDT_WTCNT, sc->sc_wdog_wtdat);
    142       1.1     matt 		exynos_wdt_wdog_write(sc, EXYNOS_WDT_WTDAT, sc->sc_wdog_wtdat);
    143       1.1     matt 		exynos_wdt_wdog_write(sc, EXYNOS_WDT_WTCON, sc->sc_wdog_wtcon);
    144       1.1     matt 		aprint_debug_dev(sc->sc_dev, "setmode refresh\n");
    145       1.1     matt 		return 0;
    146       1.1     matt 	}
    147       1.1     matt 
    148       1.1     matt 	if (smw->smw_period == WDOG_PERIOD_DEFAULT) {
    149       1.1     matt 		sc->sc_wdog_period = EXYNOS_WDT_PERIOD_DEFAULT;
    150       1.1     matt 		smw->smw_period = EXYNOS_WDT_PERIOD_DEFAULT;
    151       1.1     matt 	}
    152       1.1     matt 
    153       1.1     matt 	/*
    154       1.1     matt 	 * Make sure we don't overflow the counter.
    155       1.1     matt 	 */
    156       1.1     matt 	if (smw->smw_period * sc->sc_freq >= UINT16_MAX) {
    157       1.1     matt 		return EINVAL;
    158       1.1     matt 	}
    159       1.1     matt 
    160       1.1     matt 	sc->sc_wdog_wtdat = sc->sc_freq * sc->sc_wdog_period - 1;
    161       1.1     matt 	sc->sc_wdog_wtcon = WTCON_ENABLE | WTCON_RESET_ENABLE
    162       1.1     matt 	    | __SHIFTIN(sc->sc_wdog_clock_select, WTCON_CLOCK_SELECT)
    163       1.1     matt 	    | __SHIFTIN(sc->sc_wdog_prescaler - 1, WTCON_PRESCALER);
    164       1.1     matt 
    165       1.1     matt 	/*
    166       1.1     matt 	 * Have to disable to be able to write WTDAT
    167       1.1     matt 	 */
    168       1.1     matt 	exynos_wdt_wdog_write(sc, EXYNOS_WDT_WTCON,
    169       1.1     matt 	    sc->sc_wdog_wtcon & ~(WTCON_ENABLE | WTCON_RESET_ENABLE));
    170       1.1     matt 	exynos_wdt_wdog_write(sc, EXYNOS_WDT_WTCNT, sc->sc_wdog_wtdat);
    171       1.1     matt 	exynos_wdt_wdog_write(sc, EXYNOS_WDT_WTDAT, sc->sc_wdog_wtdat);
    172       1.1     matt 	exynos_wdt_wdog_write(sc, EXYNOS_WDT_WTCON, sc->sc_wdog_wtcon);
    173       1.1     matt 
    174       1.1     matt 	aprint_debug_dev(sc->sc_dev, "setmode enable\n");
    175       1.1     matt 	return 0;
    176       1.1     matt }
    177       1.1     matt 
    178       1.1     matt 
    179       1.1     matt static void
    180       1.1     matt exynos_wdt_attach(device_t parent, device_t self, void *aux)
    181       1.1     matt {
    182       1.1     matt         struct exynos_wdt_softc * const sc = device_private(self);
    183       1.8    marty //	prop_dictionary_t dict = device_properties(self);
    184       1.8    marty 	struct fdt_attach_args * const faa = aux;
    185       1.8    marty 	bus_addr_t addr;
    186       1.8    marty 	bus_size_t size;
    187       1.8    marty 	int error;
    188       1.8    marty 
    189       1.8    marty 	if (fdtbus_get_reg(faa->faa_phandle, 0, &addr, &size) != 0) {
    190       1.8    marty 		aprint_error(": couldn't get registers\n");
    191       1.8    marty 		return;
    192       1.8    marty 	}
    193       1.1     matt 
    194       1.1     matt 	sc->sc_dev = self;
    195       1.8    marty 	sc->sc_bst = faa->faa_bst;
    196       1.1     matt 
    197       1.8    marty 	error = bus_space_map(sc->sc_bst, addr, size, 0, &sc->sc_wdog_bsh);
    198       1.8    marty 	if (error) {
    199      1.11    skrll 		aprint_error(": couldn't map %#" PRIxBUSADDR ": %d", addr, error);
    200       1.1     matt 		return;
    201       1.1     matt 	}
    202       1.1     matt 
    203       1.1     matt 	/*
    204       1.1     matt 	 * This runs at the Exynos Pclk.
    205       1.1     matt 	 */
    206       1.8    marty //	prop_dictionary_get_uint32(dict, "frequency", &sc->sc_freq);
    207       1.8    marty 	sc->sc_freq = 12000000;	/* MJF: HACK hardwire for now */
    208       1.8    marty 		/* Need to figure out how to get freq from dtb */
    209       1.1     matt 	sc->sc_wdog_wtcon = exynos_wdt_wdog_read(sc, EXYNOS_WDT_WTCON);
    210       1.1     matt 	sc->sc_wdog_armed = (sc->sc_wdog_wtcon & WTCON_ENABLE)
    211       1.1     matt 	    && (sc->sc_wdog_wtcon & WTCON_RESET_ENABLE);
    212       1.1     matt 	if (sc->sc_wdog_armed) {
    213       1.1     matt 		sc->sc_wdog_prescaler =
    214       1.7    marty 		    __SHIFTOUT(sc->sc_wdog_wtcon, WTCON_PRESCALER);
    215       1.1     matt 		sc->sc_wdog_clock_select =
    216       1.1     matt 		    __SHIFTOUT(sc->sc_wdog_wtcon, WTCON_CLOCK_SELECT);
    217       1.1     matt 		sc->sc_freq /= sc->sc_wdog_prescaler;
    218       1.1     matt 		sc->sc_freq >>= 4 + sc->sc_wdog_clock_select;
    219       1.1     matt 		sc->sc_wdog_wtdat = exynos_wdt_wdog_read(sc, EXYNOS_WDT_WTDAT);
    220       1.1     matt 		sc->sc_wdog_period = (sc->sc_wdog_wtdat + 1) / sc->sc_freq;
    221       1.1     matt 	} else {
    222       1.7    marty 		sc->sc_wdog_period = EXYNOS_WDT_PERIOD_DEFAULT;
    223       1.1     matt 		sc->sc_wdog_prescaler = 1;
    224       1.1     matt 		/*
    225       1.1     matt 		 * Let's see what clock select we should use.
    226       1.1     matt 		 */
    227       1.1     matt 		u_int n = __builtin_ffs(sc->sc_freq) - 1;
    228       1.1     matt 		if (n > 7) {
    229       1.1     matt 			sc->sc_wdog_clock_select = WTCON_CLOCK_SELECT_128;
    230       1.1     matt 			sc->sc_freq >>= 7;
    231       1.1     matt 		} else if (n >= 4) {
    232       1.1     matt 			sc->sc_wdog_clock_select = n - 4;
    233       1.1     matt 			sc->sc_freq >>= n;
    234       1.1     matt 		}
    235       1.1     matt 		/*
    236       1.1     matt 		 * Let's hope the timer frequency isn't prime.  If it is, find
    237       1.1     matt 		 * the highest divisor which gives us the least remainder.
    238       1.1     matt 		 */
    239       1.1     matt 		sc->sc_wdog_prescaler = 0;
    240       1.1     matt 		u_int best_remainder = 256;
    241       1.1     matt 		u_int max_period = 2 * EXYNOS_WDT_PERIOD_DEFAULT * sc->sc_freq;
    242       1.1     matt 		for (size_t div = 256; UINT16_MAX > div * max_period; div++) {
    243       1.1     matt 			u_int remainder = sc->sc_freq % div;
    244       1.1     matt 			if (remainder == 0) {
    245       1.1     matt 				sc->sc_wdog_prescaler = div;
    246       1.1     matt 				break;
    247       1.1     matt 			}
    248       1.1     matt 			if (remainder < best_remainder) {
    249       1.1     matt 				sc->sc_wdog_prescaler = div;
    250       1.1     matt 				best_remainder = remainder;
    251       1.1     matt 			}
    252       1.1     matt 		}
    253       1.1     matt 		KASSERT(sc->sc_wdog_prescaler != 0);
    254       1.1     matt 		sc->sc_freq /= sc->sc_wdog_prescaler;
    255       1.1     matt 	}
    256       1.1     matt 
    257       1.1     matt 	/*
    258       1.1     matt 	 * Does the config file tell us to turn on the watchdog?
    259       1.1     matt 	 */
    260       1.1     matt 	if (device_cfdata(self)->cf_flags & 1)
    261       1.1     matt 		sc->sc_wdog_armed = true;
    262       1.1     matt 
    263       1.1     matt 	aprint_naive("\n");
    264       1.1     matt 	aprint_normal(": Exynos Watchdog Timer, default period is %u seconds%s\n",
    265       1.1     matt 	    sc->sc_wdog_period,
    266       1.1     matt 	    sc->sc_wdog_armed ? " (armed)" : "");
    267       1.1     matt 
    268       1.1     matt 	sc->sc_smw.smw_name = device_xname(self);
    269       1.1     matt 	sc->sc_smw.smw_cookie = sc;
    270       1.1     matt 	sc->sc_smw.smw_setmode = exynos_wdt_setmode;
    271       1.1     matt 	sc->sc_smw.smw_tickle = exynos_wdt_tickle;
    272       1.1     matt 	sc->sc_smw.smw_period = sc->sc_wdog_period;
    273       1.1     matt 
    274       1.1     matt 	if (sc->sc_wdog_armed) {
    275       1.8    marty 		error = sysmon_wdog_setmode(&sc->sc_smw, WDOG_MODE_KTICKLE,
    276       1.1     matt 		    sc->sc_wdog_period);
    277       1.1     matt 		if (error)
    278       1.1     matt 			aprint_error_dev(self,
    279       1.1     matt 			    "failed to start kernel tickler: %d\n", error);
    280       1.1     matt  	}
    281       1.1     matt }
    282       1.1     matt #endif /* NEXYNOS_WDOG > 0 */
    283       1.1     matt 
    284       1.1     matt void
    285       1.1     matt exynos_wdt_reset(void)
    286       1.1     matt {
    287       1.9    marty 	bus_space_tag_t bst = &armv7_generic_bs_tag;
    288       1.5  reinoud 	bus_space_handle_t bsh = exynos_wdt_bsh;
    289       1.5  reinoud 
    290       1.1     matt 	(void) splhigh();
    291       1.5  reinoud 	bus_space_write_4(bst, bsh, EXYNOS_WDT_WTCON, 0);
    292       1.5  reinoud 	bus_space_write_4(bst, bsh, EXYNOS_WDT_WTCNT, 1);
    293       1.5  reinoud 	bus_space_write_4(bst, bsh, EXYNOS_WDT_WTCON,
    294       1.1     matt 	   WTCON_ENABLE | WTCON_RESET_ENABLE);
    295       1.1     matt }
    296       1.4  reinoud 
    297