From c7139046dd6ed1a123886c93276e1f25e6f46f0d Mon Sep 17 00:00:00 2001 From: jmcneill Date: Wed, 30 Oct 2019 22:21:06 +0000 Subject: [PATCH] Fix PRM_RSTCTRL_RST_DPLL3 definition, now reset works. --- sys/arch/arm/ti/omap3_platform.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/arm/ti/omap3_platform.c b/sys/arch/arm/ti/omap3_platform.c index e7d9bca64cea..799faea1f259 100644 --- a/sys/arch/arm/ti/omap3_platform.c +++ b/sys/arch/arm/ti/omap3_platform.c @@ -1,4 +1,4 @@ -/* $NetBSD: omap3_platform.c,v 1.1 2019/10/29 22:19:13 jmcneill Exp $ */ +/* $NetBSD: omap3_platform.c,v 1.2 2019/10/30 22:21:06 jmcneill Exp $ */ /*- * Copyright (c) 2019 Jared McNeill @@ -30,7 +30,7 @@ #include "opt_console.h" #include -__KERNEL_RCSID(0, "$NetBSD: omap3_platform.c,v 1.1 2019/10/29 22:19:13 jmcneill Exp $"); +__KERNEL_RCSID(0, "$NetBSD: omap3_platform.c,v 1.2 2019/10/30 22:21:06 jmcneill Exp $"); #include #include @@ -71,7 +71,7 @@ __KERNEL_RCSID(0, "$NetBSD: omap3_platform.c,v 1.1 2019/10/29 22:19:13 jmcneill #define OMAP3_PRCM_BASE 0x48306000 #define OMAP3_PRCM_GR_BASE (OMAP3_PRCM_BASE + 0x1200) #define PRM_RSTCTRL (OMAP3_PRCM_GR_BASE + 0x50) -#define PRM_RSTCTRL_RST_DPLL3 __BIT(1) +#define PRM_RSTCTRL_RST_DPLL3 __BIT(2) #define OMAP3_32KTIMER_BASE 0x48320000 #define REG_32KSYNCNT_CR (OMAP3_32KTIMER_BASE + 0x10)