summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-03-25linux merge for drmAlan Hourihane
2003-03-25XFree86 4.3.0 mergeAlan Hourihane
2003-03-11Merge back from FreeBSD-current, adding FreeBSD ID tags to aid futureEric Anholt
merging. Also includes an update to radeon PCI IDs.
2003-03-08Make dma_addr_t an unsigned long not a uint32, don't try to use memrangeEric Anholt
functions on FreeBSD non-x86, and remove a dead define.
2003-03-06Remove the vbl signal code because it's untested (and has lock issues onEric Anholt
-current).
2003-03-05Put cdevsw initialization in line with FreeBSD-current. (From r1.10,r1.11Eric Anholt
of FreeBSD CVS)
2003-03-05Update mmap handling for FreeBSD-current (Based on r1.3 of FreeBSD CVS).Eric Anholt
2003-03-05Remove a paste-o in DRM_SPINUNINIT and add a volatile to the compatibilityEric Anholt
atomic_cmpset_int.
2003-03-04DRM_FREE/2 patch from Philip BrownKeith Whitwell
2003-03-02file savage_drv.h was initially added on branch savage-0-0-1-branch.Jose Fonseca
2003-03-02file savage_drm.h was initially added on branch savage-0-0-1-branch.Jose Fonseca
2003-03-02file savage_bci.c was initially added on branch savage-0-0-1-branch.Jose Fonseca
2003-02-28Update object targetsLeif Delgass
2003-02-27file savage_drv.c was initially added on branch savage-0-0-1-branch.Jose Fonseca
2003-02-27file savage.h was initially added on branch savage-0-0-1-branch.Jose Fonseca
2003-02-26file mach64_irq.c was initially added on branch mach64-0-0-6-branch.Leif Delgass
2003-02-22Fix build on NetBSD.Eric Anholt
2003-02-21Merge from bsd-4-0-0-branch.Eric Anholt
2003-02-16file mach64_drm.h was initially added on branch mach64-0-0-6-branch.Eric Anholt
2003-02-16file mach64_state.c was initially added on branch mach64-0-0-6-branch.Eric Anholt
2003-02-16file mach64_drv.h was initially added on branch mach64-0-0-6-branch.Eric Anholt
2003-02-16file mach64_dma.c was initially added on branch mach64-0-0-6-branch.Eric Anholt
2003-02-16file mach64.h was initially added on branch mach64-0-0-6-branch.Eric Anholt
2003-02-08reclaim DMA buffers in DRIVER_RELEASE() (Felix Kühling)Michel Daenzer
2003-02-06fix EAGAIN handling in radeon_cp_dispatch_texture() (fixes corruption ofMichel Daenzer
large textures), and get rid of superfluous local y variable
2003-02-04disable strict aliasing for building the DRMMichel Daenzer
2003-02-04fix PCI and AGP posting problems (based on testing by Chris Ison andMichel Daenzer
suggestions by Benjamin Herrenschmidt and Arjan van de Ven) remove radeon_flush_write_combine() which has been unused for a while
2003-02-04only acknowledge interrupts we handle - others could be used outside theMichel Daenzer
DRM
2003-02-03Fix size of VERTEX2 ioctl struct (Egbert Eich)Keith Whitwell
2003-02-02don't inflate relative vblank sequence numbers on repeated calls (e.g. whenMichel Daenzer
interrupted by a signal)
2003-01-26Add cast to avoid void * arithmetic warningLeif Delgass
2003-01-24Fix build on -current: Provide M_WAITOK define.Eric Anholt
2003-01-16Fix radeon for BSD.Eric Anholt
2003-01-11limit number of pending vblank signals to 100 to prevent DoS, and minorMichel Daenzer
cleanups
2003-01-11file agp_30_symbols.h was initially added on branch agpgart_2_0_branch.Jeff Hartmann
2003-01-10Note that radeon_do_cp_idle() can fail, cope with it.Keith Whitwell
2003-01-06[TRIVIAL] [TRIVIAL PATCH 2.5.48] Remove unused function from radeon_mem.cRik Faith
Submitted by Rusty Trivial Russell
2003-01-03more cleanups, free mem heap data on last client exitKeith Whitwell
2003-01-02Bump radeon drm version nr on recent interface relaxationKeith Whitwell
2003-01-02Remove printkKeith Whitwell
2003-01-02Make the radeon drm module better at cleaning up after itself if all theKeith Whitwell
clients (particularly the X server) exit without doing so for it.
2002-12-16file i830_irq.c was initially added on branch mesa-4-0-4-branch.David Dawes
2002-12-12enums should be intsDavid Dawes
2002-12-12bring in jantorial changes from 2.5.51Keith Whitwell
2002-12-11remove agpgart informationalKeith Whitwell
2002-12-06Rewrite radeon_cp_dispatch_texture() to avoid pingponging back to userspaceKeith Whitwell
when issue large (multi-buffer) uploads.
2002-12-06Add vblank signal code for BSD DRM. Untested so far, but working with aEric Anholt
4.2.0 userland at least.
2002-12-04further vertical blank interrupt cleanups: remove unused variable,Michel Daenzer
non-ambiguous variable names, don't express subtraction in unnecessarily complicated ways
2002-12-03vertical blank interrupt cleanups: use spinlock instead of semaphore, sendMichel Daenzer
signal directly from interrupt handler instead of using a taskqueue (based on feedback by Linus Torvalds)
2002-11-30vertical blank ioctl can send signal instead of blockingMichel Daenzer