Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm/omap Add omapscm to critical_devs[].



details:   https://anonhg.NetBSD.org/src/rev/67a76e1fce67
branches:  trunk
changeset: 344867:67a76e1fce67
user:      kiyohara <kiyohara%NetBSD.org@localhost>
date:      Mon Apr 25 13:17:16 2016 +0000

description:
Add omapscm to critical_devs[].

diffstat:

 sys/arch/arm/omap/omap2_obio.c |  9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diffs (32 lines):

diff -r a7ff20a97eee -r 67a76e1fce67 sys/arch/arm/omap/omap2_obio.c
--- a/sys/arch/arm/omap/omap2_obio.c    Mon Apr 25 13:14:37 2016 +0000
+++ b/sys/arch/arm/omap/omap2_obio.c    Mon Apr 25 13:17:16 2016 +0000
@@ -1,7 +1,7 @@
-/*     $Id: omap2_obio.c,v 1.22 2015/04/14 18:37:43 bouyer Exp $       */
+/*     $Id: omap2_obio.c,v 1.23 2016/04/25 13:17:16 kiyohara Exp $     */
 
 /* adapted from: */
-/*     $NetBSD: omap2_obio.c,v 1.22 2015/04/14 18:37:43 bouyer Exp $ */
+/*     $NetBSD: omap2_obio.c,v 1.23 2016/04/25 13:17:16 kiyohara Exp $ */
 
 
 /*
@@ -103,7 +103,7 @@
 
 #include "opt_omap.h"
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: omap2_obio.c,v 1.22 2015/04/14 18:37:43 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: omap2_obio.c,v 1.23 2016/04/25 13:17:16 kiyohara Exp $");
 
 #include "locators.h"
 #include "obio.h"
@@ -366,6 +366,9 @@
        bus_addr_t addr;
        bool required;
 } critical_devs[] = {
+#if defined(OMAP_3530)
+       { .name = "omapscm", .addr = 0x48002000, .required = true },
+#endif
 #if defined(OMAP_2430) || defined(OMAP_2420)
        { .name = "avic", .addr = INTC_BASE, .required = true },
 #endif



Home | Main Index | Thread Index | Old Index