summaryrefslogtreecommitdiffstats
path: root/sys/alpha/include
diff options
context:
space:
mode:
authordfr <dfr@FreeBSD.org>1998-11-28 09:55:16 +0000
committerdfr <dfr@FreeBSD.org>1998-11-28 09:55:16 +0000
commit3aaf69d186b574fcab131de20162707fba4182bc (patch)
tree2f8131719c54117e72f8d015043c5f1565645171 /sys/alpha/include
parent369a99d1d7d9fe929244d43d990a442bc4f5d7f0 (diff)
downloadFreeBSD-src-3aaf69d186b574fcab131de20162707fba4182bc.zip
FreeBSD-src-3aaf69d186b574fcab131de20162707fba4182bc.tar.gz
Add support for 'vmstat -i'.
Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp> Obtained from: NetBSD
Diffstat (limited to 'sys/alpha/include')
-rw-r--r--sys/alpha/include/intr.h4
-rw-r--r--sys/alpha/include/intrcnt.h79
2 files changed, 81 insertions, 2 deletions
diff --git a/sys/alpha/include/intr.h b/sys/alpha/include/intr.h
index 3f4c79d..ea54089 100644
--- a/sys/alpha/include/intr.h
+++ b/sys/alpha/include/intr.h
@@ -23,14 +23,14 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: intr.h,v 1.3 1998/08/10 07:53:58 dfr Exp $
+ * $Id: intr.h,v 1.4 1998/11/15 18:25:16 dfr Exp $
*/
#ifndef _MACHINE_INTR_H_
#define _MACHINE_INTR_H_
int alpha_setup_intr(int vector, driver_intr_t *intr, void *arg,
- void **cookiep);
+ void **cookiep, volatile long *cntp);
int alpha_teardown_intr(void *cookie);
void alpha_dispatch_intr(void *frame, unsigned long vector);
diff --git a/sys/alpha/include/intrcnt.h b/sys/alpha/include/intrcnt.h
new file mode 100644
index 0000000..cd9e701
--- /dev/null
+++ b/sys/alpha/include/intrcnt.h
@@ -0,0 +1,79 @@
+/* $Id$ */
+/* $NetBSD: intrcnt.h,v 1.17 1998/11/19 01:48:04 ross Exp $ */
+
+/*
+ * Copyright (c) 1995, 1996 Carnegie-Mellon University.
+ * All rights reserved.
+ *
+ * Author: Chris G. Demetriou
+ *
+ * Permission to use, copy, modify and distribute this software and
+ * its documentation is hereby granted, provided that both the copyright
+ * notice and this permission notice appear in all copies of the
+ * software, derivative works or modified versions, and any portions
+ * thereof, and that both notices appear in supporting documentation.
+ *
+ * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
+ * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
+ * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
+ *
+ * Carnegie Mellon requests users of this software to return to
+ *
+ * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
+ * School of Computer Science
+ * Carnegie Mellon University
+ * Pittsburgh PA 15213-3890
+ *
+ * any improvements or extensions that they make and grant Carnegie the
+ * rights to redistribute these changes.
+ */
+
+#define INTRCNT_CLOCK 0
+#define INTRCNT_ISA_IRQ (INTRCNT_CLOCK + 1)
+#define INTRCNT_ISA_IRQ_LEN 16
+#define INTRCNT_OTHER_BASE (INTRCNT_ISA_IRQ + INTRCNT_ISA_IRQ_LEN)
+#define INTRCNT_OTHER_LEN 48
+#define INTRCNT_COUNT (INTRCNT_OTHER_BASE + INTRCNT_OTHER_LEN)
+
+#define INTRCNT_A12_IRQ INTRCNT_OTHER_BASE
+#define INTRCNT_DEC_1000A_IRQ INTRCNT_OTHER_BASE
+#define INTRCNT_DEC_1000_IRQ INTRCNT_OTHER_BASE
+#define INTRCNT_DEC_2100_A500_IRQ INTRCNT_OTHER_BASE
+#define INTRCNT_DEC_550_IRQ INTRCNT_OTHER_BASE
+#define INTRCNT_EB164_IRQ INTRCNT_OTHER_BASE
+#define INTRCNT_EB64PLUS_IRQ INTRCNT_OTHER_BASE
+#define INTRCNT_EB66_IRQ INTRCNT_OTHER_BASE
+#define INTRCNT_IOASIC INTRCNT_OTHER_BASE
+#define INTRCNT_KN15 INTRCNT_OTHER_BASE
+#define INTRCNT_KN16 INTRCNT_OTHER_BASE
+#define INTRCNT_KN20AA_IRQ INTRCNT_OTHER_BASE
+#define INTRCNT_KN300_IRQ INTRCNT_OTHER_BASE
+#define INTRCNT_KN8AE_IRQ INTRCNT_OTHER_BASE
+#define INTRCNT_TCDS INTRCNT_OTHER_BASE
+
+#define INTRCNT_A12_IRQ_LEN 10
+#define INTRCNT_DEC_1000A_IRQ_LEN 32
+#define INTRCNT_DEC_1000_IRQ_LEN 16
+#define INTRCNT_DEC_2100_A500_IRQ_LEN 16
+#define INTRCNT_DEC_550_IRQ_LEN 48
+#define INTRCNT_EB164_IRQ_LEN 24
+#define INTRCNT_EB64PLUS_IRQ_LEN 32
+#define INTRCNT_EB66_IRQ_LEN 32
+#define INTRCNT_IOASIC_LEN 4
+#define INTRCNT_ISA_IRQ_LEN 16
+#define INTRCNT_KN15_LEN 9
+#define INTRCNT_KN16_LEN 5
+#define INTRCNT_KN20AA_IRQ_LEN 32
+#define INTRCNT_KN300_LEN 19
+#define INTRCNT_KN8AE_IRQ_LEN 2
+#define INTRCNT_TCDS_LEN 2
+
+# define INTRCNT_KN300_NCR810 INTRCNT_KN300_IRQ + 16
+# define INTRCNT_KN300_I2C_CTRL INTRCNT_KN300_IRQ + 17
+# define INTRCNT_KN300_I2C_BUS INTRCNT_KN300_IRQ + 18
+
+#ifdef KERNEL
+#ifndef _LOCORE
+extern volatile long intrcnt[];
+#endif
+#endif
OpenPOWER on IntegriCloud