From owner-cvs-all Sat Apr 27 13:48:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6281837B41A; Sat, 27 Apr 2002 13:48:03 -0700 (PDT) Received: (from anholt@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3RKm3f54567; Sat, 27 Apr 2002 13:48:03 -0700 (PDT) (envelope-from anholt) Message-Id: <200204272048.g3RKm3f54567@freefall.freebsd.org> From: Eric Anholt Date: Sat, 27 Apr 2002 13:48:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/drm drm.h drmP.h drm_agpsupport.h drm_auth.h drm_bufs.h drm_context.h drm_dma.h drm_drawable.h drm_drv.h drm_fops.h drm_init.h drm_ioctl.h drm_linux.h drm_lists.h drm_lock.h drm_memory.h drm_os_freebsd.h drm_scatter.h ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anholt 2002/04/27 13:48:02 PDT Added files: sys/dev/drm drm.h drmP.h drm_agpsupport.h drm_auth.h drm_bufs.h drm_context.h drm_dma.h drm_drawable.h drm_drv.h drm_fops.h drm_init.h drm_ioctl.h drm_linux.h drm_lists.h drm_lock.h drm_memory.h drm_os_freebsd.h drm_scatter.h drm_sysctl.h drm_vm.h gamma.h gamma_dma.c gamma_drv.c gamma_drv.h i810_drm.h mga.h mga_dma.c mga_drm.h mga_drv.c mga_drv.h mga_state.c mga_ucode.h mga_warp.c r128.h r128_cce.c r128_drm.h r128_drv.c r128_drv.h r128_state.c radeon.h radeon_cp.c radeon_drm.h radeon_drv.c radeon_drv.h radeon_state.c sis_drm.h tdfx.h tdfx_drv.c Log: Add the code for the DRM, based on the code from the drm-kmod port. This is not hooked up yet, that will come later. Approved by: des Revision Changes Path 1.1 +497 -0 src/sys/dev/drm/drm.h (new) 1.1 +723 -0 src/sys/dev/drm/drmP.h (new) 1.1 +330 -0 src/sys/dev/drm/drm_agpsupport.h (new) 1.1 +177 -0 src/sys/dev/drm/drm_auth.h (new) 1.1 +1284 -0 src/sys/dev/drm/drm_bufs.h (new) 1.1 +780 -0 src/sys/dev/drm/drm_context.h (new) 1.1 +679 -0 src/sys/dev/drm/drm_dma.h (new) 1.1 +52 -0 src/sys/dev/drm/drm_drawable.h (new) 1.1 +1455 -0 src/sys/dev/drm/drm_drv.h (new) 1.1 +364 -0 src/sys/dev/drm/drm_fops.h (new) 1.1 +120 -0 src/sys/dev/drm/drm_init.h (new) 1.1 +323 -0 src/sys/dev/drm/drm_ioctl.h (new) 1.1 +147 -0 src/sys/dev/drm/drm_linux.h (new) 1.1 +304 -0 src/sys/dev/drm/drm_lists.h (new) 1.1 +314 -0 src/sys/dev/drm/drm_lock.h (new) 1.1 +595 -0 src/sys/dev/drm/drm_memory.h (new) 1.1 +382 -0 src/sys/dev/drm/drm_os_freebsd.h (new) 1.1 +239 -0 src/sys/dev/drm/drm_scatter.h (new) 1.1 +525 -0 src/sys/dev/drm/drm_sysctl.h (new) 1.1 +85 -0 src/sys/dev/drm/drm_vm.h (new) 1.1 +95 -0 src/sys/dev/drm/gamma.h (new) 1.1 +647 -0 src/sys/dev/drm/gamma_dma.c (new) 1.1 +125 -0 src/sys/dev/drm/gamma_drv.c (new) 1.1 +105 -0 src/sys/dev/drm/gamma_drv.h (new) 1.1 +203 -0 src/sys/dev/drm/i810_drm.h (new) 1.1 +69 -0 src/sys/dev/drm/mga.h (new) 1.1 +851 -0 src/sys/dev/drm/mga_dma.c (new) 1.1 +312 -0 src/sys/dev/drm/mga_drm.h (new) 1.1 +137 -0 src/sys/dev/drm/mga_drv.c (new) 1.1 +640 -0 src/sys/dev/drm/mga_drv.h (new) 1.1 +1068 -0 src/sys/dev/drm/mga_state.c (new) 1.1 +11647 -0 src/sys/dev/drm/mga_ucode.h (new) 1.1 +212 -0 src/sys/dev/drm/mga_warp.c (new) 1.1 +83 -0 src/sys/dev/drm/r128.h (new) 1.1 +1056 -0 src/sys/dev/drm/r128_cce.c (new) 1.1 +289 -0 src/sys/dev/drm/r128_drm.h (new) 1.1 +167 -0 src/sys/dev/drm/r128_drv.c (new) 1.1 +548 -0 src/sys/dev/drm/r128_drv.h (new) 1.1 +1576 -0 src/sys/dev/drm/r128_state.c (new) 1.1 +83 -0 src/sys/dev/drm/radeon.h (new) 1.1 +1458 -0 src/sys/dev/drm/radeon_cp.c (new) 1.1 +335 -0 src/sys/dev/drm/radeon_drm.h (new) 1.1 +165 -0 src/sys/dev/drm/radeon_drv.c (new) 1.1 +741 -0 src/sys/dev/drm/radeon_drv.h (new) 1.1 +1467 -0 src/sys/dev/drm/radeon_state.c (new) 1.1 +33 -0 src/sys/dev/drm/sis_drm.h (new) 1.1 +44 -0 src/sys/dev/drm/tdfx.h (new) 1.1 +152 -0 src/sys/dev/drm/tdfx_drv.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message