diff options
| author | Rik Faith <faith@alephnull.com> | 2000-08-25 12:45:53 +0000 | 
|---|---|---|
| committer | Rik Faith <faith@alephnull.com> | 2000-08-25 12:45:53 +0000 | 
| commit | ac3c3571a714a38f7572f94c40fe143b43beb3b9 (patch) | |
| tree | 2b6a67fa0ad1fa81908efb3b423ca6c05ed731f2 /linux/sis_drm.h | |
| parent | 68f6795ef45739816fe9d5f1f5b3ef4900bf3187 (diff) | |
Remove misleading authorship information from sis driver (author has been
    contacted and will provide improved information later) Rename
    sis_drm_public.h to sis_drm.h to be consistent with the other drivers.
Diffstat (limited to 'linux/sis_drm.h')
| -rw-r--r-- | linux/sis_drm.h | 32 | 
1 files changed, 32 insertions, 0 deletions
diff --git a/linux/sis_drm.h b/linux/sis_drm.h new file mode 100644 index 00000000..dd14a5a5 --- /dev/null +++ b/linux/sis_drm.h @@ -0,0 +1,32 @@ +/* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/linux/drm/kernel/sis_drm_public.h,v 1.2 2000/08/04 03:51:47 tsi Exp $ */ + +#ifndef _sis_drm_public_h_ +#define _sis_drm_public_h_ + +typedef struct {  +  int context; +  unsigned int offset; +  unsigned int size; +  unsigned int free; +} drm_sis_mem_t;  + +typedef struct {  +  unsigned int offset, size; +} drm_sis_agp_t;  + +typedef struct {  +  unsigned int left, right; +} drm_sis_flip_t;  + +#define SIS_IOCTL_FB_ALLOC     DRM_IOWR( 0x44, drm_sis_mem_t) +#define SIS_IOCTL_FB_FREE      DRM_IOW( 0x45, drm_sis_mem_t) + +#define SIS_IOCTL_AGP_INIT     DRM_IOWR( 0x53, drm_sis_agp_t) +#define SIS_IOCTL_AGP_ALLOC    DRM_IOWR( 0x54, drm_sis_mem_t) +#define SIS_IOCTL_AGP_FREE     DRM_IOW( 0x55, drm_sis_mem_t) + +#define SIS_IOCTL_FLIP         DRM_IOW( 0x48, drm_sis_flip_t) +#define SIS_IOCTL_FLIP_INIT    DRM_IO( 0x49) +#define SIS_IOCTL_FLIP_FINAL   DRM_IO( 0x50) + +#endif  | 
