Module Name: src Committed By: kiyohara Date: Mon Apr 25 13:17:16 UTC 2016
Modified Files: src/sys/arch/arm/omap: omap2_obio.c Log Message: Add omapscm to critical_devs[]. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 src/sys/arch/arm/omap/omap2_obio.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/omap/omap2_obio.c diff -u src/sys/arch/arm/omap/omap2_obio.c:1.22 src/sys/arch/arm/omap/omap2_obio.c:1.23 --- src/sys/arch/arm/omap/omap2_obio.c:1.22 Tue Apr 14 18:37:43 2015 +++ src/sys/arch/arm/omap/omap2_obio.c Mon Apr 25 13:17:16 2016 @@ -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 @@ static const struct { 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