2000-05-18 06:14:27 +00:00
|
|
|
/* r128_drv.c -- ATI Rage 128 driver -*- linux-c -*-
|
|
|
|
|
* Created: Mon Dec 13 09:47:27 1999 by faith@precisioninsight.com
|
|
|
|
|
*
|
|
|
|
|
* Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
|
2000-06-13 14:22:03 +00:00
|
|
|
* Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
|
2000-05-18 06:14:27 +00:00
|
|
|
* 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:
|
2000-06-12 15:47:31 +00:00
|
|
|
*
|
2000-05-18 06:14:27 +00:00
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
2000-06-12 15:47:31 +00:00
|
|
|
*
|
2000-05-18 06:14:27 +00:00
|
|
|
* 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.
|
2000-06-12 15:47:31 +00:00
|
|
|
*
|
2000-11-27 15:30:26 +00:00
|
|
|
* Authors:
|
|
|
|
|
* Rickard E. (Rik) Faith <faith@valinux.com>
|
|
|
|
|
* Kevin E. Martin <martin@valinux.com>
|
|
|
|
|
* Gareth Hughes <gareth@valinux.com>
|
2000-05-18 06:14:27 +00:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2000-06-13 14:34:13 +00:00
|
|
|
#include <linux/config.h>
|
2000-05-18 06:14:27 +00:00
|
|
|
#include "drmP.h"
|
|
|
|
|
#include "r128_drv.h"
|
|
|
|
|
|
2000-11-27 15:30:26 +00:00
|
|
|
#define DRIVER_AUTHOR "VA Linux Systems, Inc."
|
2000-05-18 06:14:27 +00:00
|
|
|
|
2000-11-27 15:30:26 +00:00
|
|
|
#define DRIVER_NAME "r128"
|
|
|
|
|
#define DRIVER_DESC "ATI Rage 128"
|
|
|
|
|
#define DRIVER_DATE "20001127"
|
2000-05-18 06:14:27 +00:00
|
|
|
|
2000-11-27 15:30:26 +00:00
|
|
|
#define DRIVER_MAJOR 1
|
|
|
|
|
#define DRIVER_MINOR 0
|
|
|
|
|
#define DRIVER_PATCHLEVEL 0
|
2000-05-18 06:14:27 +00:00
|
|
|
|
2000-11-27 15:30:26 +00:00
|
|
|
static drm_ioctl_desc_t r128_ioctls[] = {
|
2000-05-18 06:14:27 +00:00
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_VERSION)] = { r128_version, 0, 0 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_GET_UNIQUE)] = { drm_getunique, 0, 0 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_GET_MAGIC)] = { drm_getmagic, 0, 0 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_IRQ_BUSID)] = { drm_irq_busid, 0, 1 },
|
|
|
|
|
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_SET_UNIQUE)] = { drm_setunique, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_BLOCK)] = { drm_block, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_UNBLOCK)] = { drm_unblock, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_AUTH_MAGIC)] = { drm_authmagic, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_ADD_MAP)] = { drm_addmap, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_ADD_BUFS)] = { r128_addbufs, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_MARK_BUFS)] = { drm_markbufs, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_INFO_BUFS)] = { drm_infobufs, 1, 0 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_MAP_BUFS)] = { r128_mapbufs, 1, 0 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_FREE_BUFS)] = { drm_freebufs, 1, 0 },
|
|
|
|
|
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_ADD_CTX)] = { r128_addctx, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_RM_CTX)] = { r128_rmctx, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_MOD_CTX)] = { r128_modctx, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_GET_CTX)] = { r128_getctx, 1, 0 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_SWITCH_CTX)] = { r128_switchctx, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_NEW_CTX)] = { r128_newctx, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_RES_CTX)] = { r128_resctx, 1, 0 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_ADD_DRAW)] = { drm_adddraw, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_RM_DRAW)] = { drm_rmdraw, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_LOCK)] = { r128_lock, 1, 0 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_UNLOCK)] = { r128_unlock, 1, 0 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_FINISH)] = { drm_finish, 1, 0 },
|
|
|
|
|
|
2000-08-04 10:04:55 +00:00
|
|
|
#if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
|
2000-05-18 06:14:27 +00:00
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_AGP_ACQUIRE)] = { drm_agp_acquire, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_AGP_RELEASE)] = { drm_agp_release, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_AGP_ENABLE)] = { drm_agp_enable, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_AGP_INFO)] = { drm_agp_info, 1, 0 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_AGP_ALLOC)] = { drm_agp_alloc, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_AGP_FREE)] = { drm_agp_free, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_AGP_BIND)] = { drm_agp_bind, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_AGP_UNBIND)] = { drm_agp_unbind, 1, 1 },
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_R128_INIT)] = { r128_init_cce, 1, 1 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_R128_RESET)] = { r128_eng_reset, 1, 0 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_R128_FLUSH)] = { r128_eng_flush, 1, 0 },
|
|
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_R128_PACKET)] = { r128_submit_pkt, 1, 0 },
|
2000-06-12 15:47:31 +00:00
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_R128_IDLE)] = { r128_cce_idle, 1, 0 },
|
2000-05-18 06:14:27 +00:00
|
|
|
[DRM_IOCTL_NR(DRM_IOCTL_R128_VERTEX)] = { r128_vertex_buf, 1, 0 },
|
|
|
|
|
};
|
|
|
|
|
|
2000-11-27 15:30:26 +00:00
|
|
|
#define DRIVER_IOCTL_COUNT DRM_ARRAY_SIZE( r128_ioctls )
|
2000-05-18 06:14:27 +00:00
|
|
|
|
2000-11-27 15:30:26 +00:00
|
|
|
#define HAVE_AGP 1
|
|
|
|
|
#define MUST_HAVE_AGP 1 /* FIXME: This should change */
|
2000-05-18 06:14:27 +00:00
|
|
|
|
2000-11-27 15:30:26 +00:00
|
|
|
#define HAVE_MTRR 1
|
2000-05-18 06:14:27 +00:00
|
|
|
|
2000-11-27 15:30:26 +00:00
|
|
|
#define HAVE_CTX_BITMAP 1
|
2000-05-18 06:14:27 +00:00
|
|
|
|
2000-11-27 15:30:26 +00:00
|
|
|
#define HAVE_DMA 1
|
2000-05-18 06:14:27 +00:00
|
|
|
|
2000-06-12 15:47:31 +00:00
|
|
|
|
2000-11-27 15:30:26 +00:00
|
|
|
#define TAG(x) r128_##x
|
|
|
|
|
#include "driver_tmp.h"
|