Module Name: src
Committed By: jmcneill
Date: Wed Oct 30 22:21:06 UTC 2019
Modified Files:
src/sys/arch/arm/ti: omap3_platform.c
Log Message:
Fix PRM_RSTCTRL_RST_DPLL3 definition, now reset works.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/ti/omap3_platform.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/ti/omap3_platform.c
diff -u src/sys/arch/arm/ti/omap3_platform.c:1.1 src/sys/arch/arm/ti/omap3_platform.c:1.2
--- src/sys/arch/arm/ti/omap3_platform.c:1.1 Tue Oct 29 22:19:13 2019
+++ src/sys/arch/arm/ti/omap3_platform.c Wed Oct 30 22:21:06 2019
@@ -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 <[email protected]>
@@ -30,7 +30,7 @@
#include "opt_console.h"
#include <sys/cdefs.h>
-__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 <sys/param.h>
#include <sys/bus.h>
@@ -71,7 +71,7 @@ __KERNEL_RCSID(0, "$NetBSD: omap3_platfo
#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)