summaryrefslogtreecommitdiff
path: root/linux/sis_drv.h
diff options
context:
space:
mode:
authorDavid Dawes <dawes@xfree86.org>2000-08-16 17:23:02 +0000
committerDavid Dawes <dawes@xfree86.org>2000-08-16 17:23:02 +0000
commit1df8afa8fff0750775ebcd8770d3b887053a65a7 (patch)
tree8cb067e97259120a2522bb797fc8295886671d7b /linux/sis_drv.h
parent8b9363d1b1f7bc40fb68261f7659dea5124f2821 (diff)
Initial revision
Diffstat (limited to 'linux/sis_drv.h')
-rw-r--r--linux/sis_drv.h99
1 files changed, 99 insertions, 0 deletions
diff --git a/linux/sis_drv.h b/linux/sis_drv.h
new file mode 100644
index 00000000..50f6efad
--- /dev/null
+++ b/linux/sis_drv.h
@@ -0,0 +1,99 @@
+/* sis_drv.h -- Private header for sis driver -*- linux-c -*-
+ * Created: Thu Oct 7 10:40:04 1999 by faith@precisioninsight.com
+ *
+ * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
+ * All rights reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+ * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ *
+ * Authors:
+ * Rickard E. (Rik) Faith <faith@precisioninsight.com>
+ * Daryll Strauss <daryll@precisioninsight.com>
+ *
+ */
+
+/* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/linux/drm/kernel/sis_drv.h,v 1.2 2000/08/04 03:51:47 tsi Exp $ */
+
+#ifndef _SIS_DRV_H_
+#define _SIS_DRV_H_
+
+ /* sis_drv.c */
+extern int sis_init(void);
+extern void sis_cleanup(void);
+extern int sis_version(struct inode *inode, struct file *filp,
+ unsigned int cmd, unsigned long arg);
+extern int sis_open(struct inode *inode, struct file *filp);
+extern int sis_release(struct inode *inode, struct file *filp);
+extern int sis_ioctl(struct inode *inode, struct file *filp,
+ unsigned int cmd, unsigned long arg);
+extern int sis_irq_install(drm_device_t *dev, int irq);
+extern int sis_irq_uninstall(drm_device_t *dev);
+extern int sis_control(struct inode *inode, struct file *filp,
+ unsigned int cmd, unsigned long arg);
+extern int sis_lock(struct inode *inode, struct file *filp,
+ unsigned int cmd, unsigned long arg);
+extern int sis_unlock(struct inode *inode, struct file *filp,
+ unsigned int cmd, unsigned long arg);
+
+ /* sis_context.c */
+
+extern int sis_resctx(struct inode *inode, struct file *filp,
+ unsigned int cmd, unsigned long arg);
+extern int sis_addctx(struct inode *inode, struct file *filp,
+ unsigned int cmd, unsigned long arg);
+extern int sis_modctx(struct inode *inode, struct file *filp,
+ unsigned int cmd, unsigned long arg);
+extern int sis_getctx(struct inode *inode, struct file *filp,
+ unsigned int cmd, unsigned long arg);
+extern int sis_switchctx(struct inode *inode, struct file *filp,
+ unsigned int cmd, unsigned long arg);
+extern int sis_newctx(struct inode *inode, struct file *filp,
+ unsigned int cmd, unsigned long arg);
+extern int sis_rmctx(struct inode *inode, struct file *filp,
+ unsigned int cmd, unsigned long arg);
+
+extern int sis_context_switch(drm_device_t *dev, int old, int new);
+extern int sis_context_switch_complete(drm_device_t *dev, int new);
+
+int sis_fb_alloc(struct inode *inode, struct file *filp, unsigned int cmd,
+ unsigned long arg);
+int sis_fb_free(struct inode *inode, struct file *filp, unsigned int cmd,
+ unsigned long arg);
+
+
+int sis_agp_init(struct inode *inode, struct file *filp, unsigned int cmd,
+ unsigned long arg);
+int sis_agp_alloc(struct inode *inode, struct file *filp, unsigned int cmd,
+ unsigned long arg);
+int sis_agp_free(struct inode *inode, struct file *filp, unsigned int cmd,
+ unsigned long arg);
+
+int sis_flip(struct inode *inode, struct file *filp, unsigned int cmd,
+ unsigned long arg);
+int sis_flip_init(struct inode *inode, struct file *filp, unsigned int cmd,
+ unsigned long arg);
+int sis_flip_final(struct inode *inode, struct file *filp, unsigned int cmd,
+ unsigned long arg);
+void flip_final(void);
+
+int sis_init_context(int contexy);
+int sis_final_context(int context);
+
+#endif