Date: Sat, 26 Apr 2003 00:05:31 -0700 (PDT) From: Eric Anholt <anholt@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/drm ati_pcigart.h 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_ioctl.h drm_lock.h drm_memory.h drm_os_freebsd.h drm_sarea.h drm_scatter.h ... Message-ID: <200304260705.h3Q75VRC072656@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
anholt 2003/04/26 00:05:31 PDT FreeBSD src repository Added files: (Branch: RELENG_4) sys/dev/drm ati_pcigart.h 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_ioctl.h drm_lock.h drm_memory.h drm_os_freebsd.h drm_sarea.h drm_scatter.h drm_sysctl.h drm_vm.h mga.h mga_dma.c mga_drm.h mga_drv.c mga_drv.h mga_irq.c mga_state.c mga_ucode.h mga_warp.c r128.h r128_cce.c r128_drm.h r128_drv.c r128_drv.h r128_irq.c r128_state.c radeon.h radeon_cp.c radeon_drm.h radeon_drv.c radeon_drv.h radeon_irq.c radeon_mem.c radeon_state.c tdfx.h tdfx_drv.c Log: MFC: The code for the DRM. This the current code from DRI CVS, which I have tested on -stable with a Rage 128 so far. Hooking it up for building into the kernel will follow, but modules won't be built by default until it is confirmed to be stable by the people who had reported problems so far. Revision Changes Path 1.1.2.1 +113 -0 src/sys/dev/drm/ati_pcigart.h (new) 1.3.2.1 +475 -0 src/sys/dev/drm/drm.h (new) 1.4.2.1 +570 -0 src/sys/dev/drm/drmP.h (new) 1.2.2.1 +333 -0 src/sys/dev/drm/drm_agpsupport.h (new) 1.3.2.1 +161 -0 src/sys/dev/drm/drm_auth.h (new) 1.5.2.1 +1028 -0 src/sys/dev/drm/drm_bufs.h (new) 1.4.2.1 +347 -0 src/sys/dev/drm/drm_context.h (new) 1.5.2.1 +390 -0 src/sys/dev/drm/drm_dma.h (new) 1.2.2.1 +51 -0 src/sys/dev/drm/drm_drawable.h (new) 1.13.2.1 +1173 -0 src/sys/dev/drm/drm_drv.h (new) 1.7.2.1 +110 -0 src/sys/dev/drm/drm_fops.h (new) 1.4.2.1 +238 -0 src/sys/dev/drm/drm_ioctl.h (new) 1.3.2.1 +97 -0 src/sys/dev/drm/drm_lock.h (new) 1.8.2.1 +443 -0 src/sys/dev/drm/drm_memory.h (new) 1.10.2.1 +402 -0 src/sys/dev/drm/drm_os_freebsd.h (new) 1.1.2.1 +59 -0 src/sys/dev/drm/drm_sarea.h (new) 1.4.2.1 +151 -0 src/sys/dev/drm/drm_scatter.h (new) 1.3.2.1 +261 -0 src/sys/dev/drm/drm_sysctl.h (new) 1.6.2.1 +114 -0 src/sys/dev/drm/drm_vm.h (new) 1.2.2.1 +100 -0 src/sys/dev/drm/mga.h (new) 1.6.2.1 +801 -0 src/sys/dev/drm/mga_dma.c (new) 1.3.2.1 +338 -0 src/sys/dev/drm/mga_drm.h (new) 1.5.2.1 +69 -0 src/sys/dev/drm/mga_drv.c (new) 1.5.2.1 +633 -0 src/sys/dev/drm/mga_drv.h (new) 1.1.2.1 +102 -0 src/sys/dev/drm/mga_irq.c (new) 1.6.2.1 +1112 -0 src/sys/dev/drm/mga_state.c (new) 1.1.4.1 +11647 -0 src/sys/dev/drm/mga_ucode.h (new) 1.4.2.1 +214 -0 src/sys/dev/drm/mga_warp.c (new) 1.2.2.1 +116 -0 src/sys/dev/drm/r128.h (new) 1.6.2.1 +1016 -0 src/sys/dev/drm/r128_cce.c (new) 1.3.2.1 +321 -0 src/sys/dev/drm/r128_drm.h (new) 1.5.2.1 +88 -0 src/sys/dev/drm/r128_drv.c (new) 1.5.2.1 +499 -0 src/sys/dev/drm/r128_drv.h (new) 1.1.2.1 +102 -0 src/sys/dev/drm/r128_irq.c (new) 1.6.2.1 +1606 -0 src/sys/dev/drm/r128_state.c (new) 1.3.2.1 +156 -0 src/sys/dev/drm/radeon.h (new) 1.6.2.1 +1678 -0 src/sys/dev/drm/radeon_cp.c (new) 1.4.2.1 +582 -0 src/sys/dev/drm/radeon_drm.h (new) 1.6.2.1 +101 -0 src/sys/dev/drm/radeon_drv.c (new) 1.5.2.1 +902 -0 src/sys/dev/drm/radeon_drv.h (new) 1.2.2.1 +258 -0 src/sys/dev/drm/radeon_irq.c (new) 1.2.2.1 +325 -0 src/sys/dev/drm/radeon_mem.c (new) 1.6.2.1 +2219 -0 src/sys/dev/drm/radeon_state.c (new) 1.1.4.1 +44 -0 src/sys/dev/drm/tdfx.h (new) 1.4.2.1 +99 -0 src/sys/dev/drm/tdfx_drv.c (new)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200304260705.h3Q75VRC072656>