apple_wdog.c revision 1.1
11.1Sjmcneill/* $NetBSD: apple_wdog.c,v 1.1 2021/08/30 23:26:26 jmcneill Exp $ */
21.1Sjmcneill
31.1Sjmcneill/*-
41.1Sjmcneill * Copyright (c) 2021 Jared McNeill <jmcneill@invisible.ca>
51.1Sjmcneill * All rights reserved.
61.1Sjmcneill *
71.1Sjmcneill * Redistribution and use in source and binary forms, with or without
81.1Sjmcneill * modification, are permitted provided that the following conditions
91.1Sjmcneill * are met:
101.1Sjmcneill * 1. Redistributions of source code must retain the above copyright
111.1Sjmcneill *    notice, this list of conditions and the following disclaimer.
121.1Sjmcneill * 2. Redistributions in binary form must reproduce the above copyright
131.1Sjmcneill *    notice, this list of conditions and the following disclaimer in the
141.1Sjmcneill *    documentation and/or other materials provided with the distribution.
151.1Sjmcneill *
161.1Sjmcneill * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
171.1Sjmcneill * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
181.1Sjmcneill * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
191.1Sjmcneill * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
201.1Sjmcneill * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
211.1Sjmcneill * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
221.1Sjmcneill * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
231.1Sjmcneill * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
241.1Sjmcneill * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
251.1Sjmcneill * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
261.1Sjmcneill * SUCH DAMAGE.
271.1Sjmcneill */
281.1Sjmcneill
291.1Sjmcneill#include <sys/cdefs.h>
301.1Sjmcneill__KERNEL_RCSID(0, "$NetBSD: apple_wdog.c,v 1.1 2021/08/30 23:26:26 jmcneill Exp $");
311.1Sjmcneill
321.1Sjmcneill#include <sys/param.h>
331.1Sjmcneill#include <sys/bus.h>
341.1Sjmcneill#include <sys/device.h>
351.1Sjmcneill#include <sys/intr.h>
361.1Sjmcneill#include <sys/kernel.h>
371.1Sjmcneill#include <sys/lwp.h>
381.1Sjmcneill#include <sys/systm.h>
391.1Sjmcneill
401.1Sjmcneill#include <dev/fdt/fdtvar.h>
411.1Sjmcneill
421.1Sjmcneill#define	WDOG_CHIP_CTL		0x000c
431.1Sjmcneill#define	WDOG_SYS_TMR		0x0010
441.1Sjmcneill#define	WDOG_SYS_RST		0x0014
451.1Sjmcneill#define	WDOG_SYS_CTL		0x001c
461.1Sjmcneill#define	 WDOG_SYS_CTL_ENABLE	__BIT(2)
471.1Sjmcneill
481.1Sjmcneillstatic const struct device_compatible_entry compat_data[] = {
491.1Sjmcneill	{ .compat = "apple,reboot-v0" },
501.1Sjmcneill	DEVICE_COMPAT_EOL
511.1Sjmcneill};
521.1Sjmcneill
531.1Sjmcneillstruct apple_wdog_softc {
541.1Sjmcneill	device_t sc_dev;
551.1Sjmcneill	bus_space_tag_t sc_bst;
561.1Sjmcneill	bus_space_handle_t sc_bsh;
571.1Sjmcneill};
581.1Sjmcneill
591.1Sjmcneill#define WDOG_READ(sc, reg) \
601.1Sjmcneill	bus_space_read_4((sc)->sc_bst, (sc)->sc_bsh, (reg))
611.1Sjmcneill#define	WDOG_WRITE(sc, reg, val) \
621.1Sjmcneill	bus_space_write_4((sc)->sc_bst, (sc)->sc_bsh, (reg), (val))
631.1Sjmcneill
641.1Sjmcneillstatic void
651.1Sjmcneillapple_wdog_reset(device_t dev)
661.1Sjmcneill{
671.1Sjmcneill	struct apple_wdog_softc * const sc = device_private(dev);
681.1Sjmcneill
691.1Sjmcneill	WDOG_WRITE(sc, WDOG_SYS_RST, 1);
701.1Sjmcneill	WDOG_WRITE(sc, WDOG_SYS_CTL, WDOG_SYS_CTL_ENABLE);
711.1Sjmcneill	WDOG_WRITE(sc, WDOG_SYS_TMR, 0);
721.1Sjmcneill}
731.1Sjmcneill
741.1Sjmcneillstatic struct fdtbus_power_controller_func apple_wdog_power_funcs = {
751.1Sjmcneill	.reset = apple_wdog_reset,
761.1Sjmcneill};
771.1Sjmcneill
781.1Sjmcneillstatic int
791.1Sjmcneillapple_wdog_match(device_t parent, cfdata_t cf, void *aux)
801.1Sjmcneill{
811.1Sjmcneill	struct fdt_attach_args * const faa = aux;
821.1Sjmcneill
831.1Sjmcneill	return of_compatible_match(faa->faa_phandle, compat_data);
841.1Sjmcneill}
851.1Sjmcneill
861.1Sjmcneillstatic void
871.1Sjmcneillapple_wdog_attach(device_t parent, device_t self, void *aux)
881.1Sjmcneill{
891.1Sjmcneill	struct apple_wdog_softc * const sc = device_private(self);
901.1Sjmcneill	struct fdt_attach_args * const faa = aux;
911.1Sjmcneill	const int phandle = faa->faa_phandle;
921.1Sjmcneill	bus_addr_t addr;
931.1Sjmcneill	bus_size_t size;
941.1Sjmcneill
951.1Sjmcneill	if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
961.1Sjmcneill		aprint_error(": couldn't get registers\n");
971.1Sjmcneill		return;
981.1Sjmcneill	}
991.1Sjmcneill
1001.1Sjmcneill	sc->sc_dev = self;
1011.1Sjmcneill	sc->sc_bst = faa->faa_bst;
1021.1Sjmcneill	if (bus_space_map(sc->sc_bst, addr, size,
1031.1Sjmcneill	    _ARM_BUS_SPACE_MAP_STRONGLY_ORDERED, &sc->sc_bsh) != 0) {
1041.1Sjmcneill		aprint_error(": couldn't map registers\n");
1051.1Sjmcneill		return;
1061.1Sjmcneill	}
1071.1Sjmcneill
1081.1Sjmcneill	aprint_naive("\n");
1091.1Sjmcneill	aprint_normal(": Apple Watchdog\n");
1101.1Sjmcneill
1111.1Sjmcneill	WDOG_WRITE(sc, WDOG_CHIP_CTL, 0);
1121.1Sjmcneill	WDOG_WRITE(sc, WDOG_SYS_CTL, 0);
1131.1Sjmcneill
1141.1Sjmcneill	fdtbus_register_power_controller(self, phandle,
1151.1Sjmcneill	    &apple_wdog_power_funcs);
1161.1Sjmcneill}
1171.1Sjmcneill
1181.1SjmcneillCFATTACH_DECL_NEW(apple_wdog, sizeof(struct apple_wdog_softc),
1191.1Sjmcneill	apple_wdog_match, apple_wdog_attach, NULL, NULL);
120