summaryrefslogtreecommitdiff
path: root/sys/dev/pci/drm
AgeCommit message (Expand)Author
2008-10-23Don't print redundant information in dmesg.Owain Ainsworth
2008-10-23remove some funky charactersjoshua stein
2008-10-17Fix permissions on the DRM_I915_HWS_ADDR ioctl, should be master only.Owain Ainsworth
2008-10-15Fix list_for_each_safe compat marco. It currently skips the last entry.Owain Ainsworth
2008-10-11Fix various printf constructs either missing arguments or format specifiers.Miod Vallat
2008-10-07Kill a bunch of #ifdef freebsd/netbsd code in *_drv.c. No binary change.Owain Ainsworth
2008-10-07Kill the linux-ready negative return codes in ``shared'' code. We handleOwain Ainsworth
2008-10-07Move dev->driver over to being a pointer to a const struct, instead of stupidlyOwain Ainsworth
2008-09-29Put back the ``address'' field to struct drm_buf, this allows machdrm toOwain Ainsworth
2008-09-29Fix mmap to always return the right value in the error path. While i'mOwain Ainsworth
2008-09-18Rework the drm locking to be at least halfway sane. The freebsd codeOwain Ainsworth
2008-09-1040-bit GART support for PCIE devices. From drm git a while ago.Owain Ainsworth
2008-09-10Kill the max_context member of the softc, it does nothing useful.Owain Ainsworth
2008-09-09Kill some stupid agp api wrapper functions, just use the agp apiOwain Ainsworth
2008-09-07Kill some unneeded defines and struct members.Owain Ainsworth
2008-09-06Something else that nothing calls.Owain Ainsworth
2008-09-06Kill some more unused struct fields and the cases for them.Owain Ainsworth
2008-09-06Kill the stats data structures and noop some other parts. Nothing inOwain Ainsworth
2008-09-05The code for cleaning up errored buffers and for cleaning up at the endOwain Ainsworth
2008-09-05The helper functions in this file are only used in one place andOwain Ainsworth
2008-09-05fix vblank interrupt mask. Unbreaks sync-to-vblank and anything thatOwain Ainsworth
2008-09-02If we need a physical hardware status page, initialise it at device attachOwain Ainsworth
2008-09-02Track progress inside of batchbuffers so we know the hardware isn'tOwain Ainsworth
2008-09-02detypedef some more. No functional change.Owain Ainsworth
2008-09-01avoid loosing return value from copyin, and properly return it.Charles Longeau
2008-09-01fix null dereference.Charles Longeau
2008-09-01convert a tsleep back to msleep that got lost in a previous upstream merge.Owain Ainsworth
2008-09-01Add Interrupt mitigation for the i9XX user_irq, should save a bit of power;Owain Ainsworth
2008-08-29Build with mtrr support on amd64. This really should have gone in inOwain Ainsworth
2008-08-29Don't memcpy too far whem drm_realloc() is called with a smaller size.Owain Ainsworth
2008-08-28Ignore xserver provided mmio address. We already have it. From git.Owain Ainsworth
2008-08-28Ignore userland provided batchbuffer start parameter, we can determineOwain Ainsworth
2008-08-28set sarea_priv to NULL to prevent possible access on next open/close.Owain Ainsworth
2008-08-28Kill the ifdefed out ttm interface stuff. The intel driver hasOwain Ainsworth
2008-08-28This file was meant to be removed with the last commit, it's now emptyOwain Ainsworth
2008-08-28replace usage of drm_memrange with extent(9). No functional change, butOwain Ainsworth
2008-08-21Rip out the remnants of the vblank signal stuff. Nothing uses it, andOwain Ainsworth
2008-08-21Instead of having a number of malloced arrays for vblank handling, justOwain Ainsworth
2008-08-18Another dead struct member.Owain Ainsworth
2008-08-17kill struct drm_freelist, after removing markbufs and infobufs nothingOwain Ainsworth
2008-08-17Kill a dead function and a dead struct member.Owain Ainsworth
2008-08-17Check the return value of agp_enable() instead of assuming it completed.Owain Ainsworth
2008-08-17Kill the infobufs and markbufs calls. Nothing uses them.Owain Ainsworth
2008-08-17kill the stupid pci capability defines, we have our own. Don't wrapOwain Ainsworth
2008-08-17drm_load() and drm_unload() are a remnant of code meant to be sharedOwain Ainsworth
2008-08-17Kill some redundant ifdefs, they're taken care of elsewhere.Owain Ainsworth
2008-08-17Make sure we can't sleep with a spinlock heldOwain Ainsworth
2008-08-16Apply a light paddling with the knf stick. No binary change.Owain Ainsworth
2008-08-13Make sure that we don't sleep with a lock held, some small cleanup whileOwain Ainsworth
2008-08-13Check for zero in drm_calloc() to prevent divide-by-zero. Also rearrangeOwain Ainsworth