Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/hpcmips Blindly prepare an equivalent function with...



details:   https://anonhg.NetBSD.org/src/rev/6c5abdfbb6f5
branches:  trunk
changeset: 763289:6c5abdfbb6f5
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Wed Mar 16 13:23:41 2011 +0000

description:
Blindly prepare an equivalent function with old _spllower(~MIPS_INT_MASK_0)
that disabled all interrupts except PIU.  Compile test only.

diffstat:

 sys/arch/hpcmips/conf/files.hpcmips       |   3 +-
 sys/arch/hpcmips/hpcmips/hpcapm_machdep.c |   8 +-
 sys/arch/hpcmips/vr/vr.c                  |   6 +-
 sys/arch/hpcmips/vr/vrip_spl.S            |  73 +++++++++++++++++++++++++++++++
 sys/arch/hpcmips/vr/vripvar.h             |   4 +-
 5 files changed, 84 insertions(+), 10 deletions(-)

diffs (173 lines):

diff -r 5c2d16eea13b -r 6c5abdfbb6f5 sys/arch/hpcmips/conf/files.hpcmips
--- a/sys/arch/hpcmips/conf/files.hpcmips       Wed Mar 16 13:08:22 2011 +0000
+++ b/sys/arch/hpcmips/conf/files.hpcmips       Wed Mar 16 13:23:41 2011 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: files.hpcmips,v 1.104 2011/03/02 08:25:09 ahoka Exp $
+#      $NetBSD: files.hpcmips,v 1.105 2011/03/16 13:23:41 tsutsui Exp $
 
 # maxpartitions must be first item in files.${ARCH}.
 maxpartitions 8
@@ -103,6 +103,7 @@
 device vripif { [addr=-1], [size=-1], [addr2=-1], [size2=-1], [unit=-1], [pwctl=-1], [platform = -1] }
 define vrip_common
 file arch/hpcmips/vr/vrip.c            vrip_common needs-flag
+file arch/hpcmips/vr/vrip_spl.S                vrip_common
 device vrip: vripif
 attach vrip at mainbus: vrip_common
 device vr4102ip: vripif
diff -r 5c2d16eea13b -r 6c5abdfbb6f5 sys/arch/hpcmips/hpcmips/hpcapm_machdep.c
--- a/sys/arch/hpcmips/hpcmips/hpcapm_machdep.c Wed Mar 16 13:08:22 2011 +0000
+++ b/sys/arch/hpcmips/hpcmips/hpcapm_machdep.c Wed Mar 16 13:23:41 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: hpcapm_machdep.c,v 1.4 2011/02/20 07:58:14 matt Exp $  */
+/*     $NetBSD: hpcapm_machdep.c,v 1.5 2011/03/16 13:23:41 tsutsui Exp $       */
 
 /*
  * Copyright (c) 2000 Takemura Shin
@@ -29,7 +29,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hpcapm_machdep.c,v 1.4 2011/02/20 07:58:14 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hpcapm_machdep.c,v 1.5 2011/03/16 13:23:41 tsutsui Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -64,7 +64,7 @@
                 * disable all interrupts except PIU interrupt
                 */
                vrip_intr_suspend();
-               _spllower(~MIPS_INT_MASK_0);
+               vrip_splpiu();
 
                /*
                 * STANDBY instruction puts the CPU into power saveing
@@ -96,7 +96,7 @@
                 * disable all interrupts except PIU interrupt
                 */
                vrip_intr_suspend();
-               _spllower(~MIPS_INT_MASK_0);
+               vrip_splpiu();
 
                /*
                 * SUSPEND instruction puts the CPU into power saveing
diff -r 5c2d16eea13b -r 6c5abdfbb6f5 sys/arch/hpcmips/vr/vr.c
--- a/sys/arch/hpcmips/vr/vr.c  Wed Mar 16 13:08:22 2011 +0000
+++ b/sys/arch/hpcmips/vr/vr.c  Wed Mar 16 13:23:41 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vr.c,v 1.60 2011/02/26 12:07:46 tsutsui Exp $  */
+/*     $NetBSD: vr.c,v 1.61 2011/03/16 13:23:41 tsutsui Exp $  */
 
 /*-
  * Copyright (c) 1999-2002
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vr.c,v 1.60 2011/02/26 12:07:46 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vr.c,v 1.61 2011/03/16 13:23:41 tsutsui Exp $");
 
 #include "opt_vr41xx.h"
 #include "opt_tx39xx.h"
@@ -504,7 +504,7 @@
         */
        if (howto & RB_HALT) {
 #if NVRIP_COMMON > 0
-               _spllower(~MIPS_INT_MASK_0);
+               vrip_splpiu();
                vrip_intr_suspend();
 #else
                splhigh();
diff -r 5c2d16eea13b -r 6c5abdfbb6f5 sys/arch/hpcmips/vr/vrip_spl.S
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/hpcmips/vr/vrip_spl.S    Wed Mar 16 13:23:41 2011 +0000
@@ -0,0 +1,73 @@
+/*     $NetBSD: vrip_spl.S,v 1.1 2011/03/16 13:23:41 tsutsui Exp $     */
+
+/*
+ * Copyright (c) 1992, 1993
+ *     The Regents of the University of California.  All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Digital Equipment Corporation and Ralph Campbell.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the University nor the names of its contributors
+ *    may be used to endorse or promote products derived from this software
+ *    without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * Copyright (C) 1989 Digital Equipment Corporation.
+ * Permission to use, copy, modify, and distribute this software and
+ * its documentation for any purpose and without fee is hereby granted,
+ * provided that the above copyright notice appears in all copies.
+ * Digital Equipment Corporation makes no representations about the
+ * suitability of this software for any purpose.  It is provided "as is"
+ * without express or implied warranty.
+ *
+ * from: Header: /sprite/src/kernel/mach/ds3100.md/RCS/loMem.s,
+ *     v 1.1 89/07/11 17:55:04 nelson Exp  SPRITE (DECWRL)
+ * from: Header: /sprite/src/kernel/mach/ds3100.md/RCS/machAsm.s,
+ *     v 9.2 90/01/29 18:00:39 shirriff Exp  SPRITE (DECWRL)
+ * from: Header: /sprite/src/kernel/vm/ds3100.md/vmPmaxAsm.s,
+ *     v 1.1 89/07/10 14:27:41 nelson Exp  SPRITE (DECWRL)
+ *
+ *     @(#)locore.s    8.5 (Berkeley) 1/4/94
+ */
+
+#include <mips/asm.h>
+#include <mips/cpuregs.h>
+
+       .set    noreorder
+
+#define VR_INT_MASK_PIU        MIPS_INT_MASK_0
+
+/*
+ * void vrip_splpiu(void)
+ *     disable all interrupts except PIU interrupt
+ */
+LEAF_NOPROFILE(vrip_splpiu)
+       mfc0    v0, MIPS_COP_0_STATUS           # fetch status register
+       li      v1, ~MIPS_INT_MASK
+       and     v1, v0, v1                      # turn off INT bit
+       li      v0, VR_INT_MASK_PIU
+       or      v0, v0, v1                      # enable only PIU interrupt
+       mtc0    v0, MIPS_COP_0_STATUS           # store back
+       COP0_SYNC
+       j       ra
+        nop
+END(vrip_splpiu)
diff -r 5c2d16eea13b -r 6c5abdfbb6f5 sys/arch/hpcmips/vr/vripvar.h
--- a/sys/arch/hpcmips/vr/vripvar.h     Wed Mar 16 13:08:22 2011 +0000
+++ b/sys/arch/hpcmips/vr/vripvar.h     Wed Mar 16 13:23:41 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vripvar.h,v 1.11 2005/12/11 12:17:34 christos Exp $    */
+/*     $NetBSD: vripvar.h,v 1.12 2011/03/16 13:23:41 tsutsui Exp $     */
 
 /*-
  * Copyright (c) 1999, 2002
@@ -70,5 +70,5 @@
 void vrip_intr_resume(void);
 int vripmatch(struct device *, struct cfdata *, void *);
 void vripattach_common(struct device *, struct device *, void *);
-
+void vrip_splpiu(void);
 #endif /* !_VRIPVAR_H_ */



Home | Main Index | Thread Index | Old Index