summaryrefslogtreecommitdiff
path: root/sys/arch/sgi/pci/iofvar.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/sgi/pci/iofvar.h')
-rw-r--r--sys/arch/sgi/pci/iofvar.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/sys/arch/sgi/pci/iofvar.h b/sys/arch/sgi/pci/iofvar.h
new file mode 100644
index 00000000000..1a5dc93a62d
--- /dev/null
+++ b/sys/arch/sgi/pci/iofvar.h
@@ -0,0 +1,30 @@
+/* $OpenBSD: iofvar.h,v 1.1 2009/08/18 19:34:17 miod Exp $ */
+
+/*
+ * Copyright (c) 2009 Miodrag Vallat.
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+struct iof_attach_args {
+ const char *iaa_name;
+
+ bus_space_tag_t iaa_memt;
+ bus_space_handle_t iaa_memh;
+ bus_dma_tag_t iaa_dmat;
+
+ bus_addr_t iaa_base;
+ uint iaa_dev;
+};
+
+void *iof_intr_establish(void *, uint, int, int (*)(void *), void *, char *);