summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/drm/i915_irq.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Update to DRM git as of a few days ago. This mostly affects theoga2008-06-111-132/+337
| | | | | | | | | | | card-specific files with a few minor changes elsewhere. The main change to the OpenBSD specific stuff is the change to the irq api due to the vblank rework. 4 more large bugs known, I have a fix for one. Tested by many. prompted by deraadt@.
* When i first ported the drm, i completely misunderstood the FreeBSD taskqueueoga2008-05-271-6/+0
| | | | | | api. So drm_locked_tasklet() is wrong. Fix this up to be at least mostly correct.
* Initial import of the DRM (direct rendering manager).oga2007-11-281-0/+772
This is the kernel part necessary for DRI support in X. Disabled for now because it still has a few bugs, but now I can work on it in tree. Also requires the requisite bits in X, which are currently under discussion on how to deal with them with privsep. ported from a combination of the free and netbsd implementations. Known bugs: 1) only the first occurence of X in any session will have dri, after that something prevents it working. 2) if the machine does not have a dri capable card, the kernel panics. Something's up in one of the probe functions. I haven't been able to find it though. 3) radeon cards need to be forced to use PCI mode otherwise they get into an infinite loop. This is known to at least kinda work with SiS, radeons in pci mode and intel cards. ok deraadt, kinda ok art, a few other people had a quick look.