Age | Commit message (Expand) | Author |
2009-04-06 | factor a bit more functionality into common code instead of repeating it | Owain Ainsworth |
2009-04-06 | Remove the context constructor and destructor driver hooks. sisdrm's old | Owain Ainsworth |
2009-04-06 | merge radeon_mem_release() and radeon_mem_takedown() into the drm_heap | Owain Ainsworth |
2009-04-05 | Rework the vblank subsystem so that instead of having various bits in | Owain Ainsworth |
2009-04-05 | kill DRM_VERIFYAREA_READ, it's part of a linux optimisation where we can | Owain Ainsworth |
2009-04-04 | Remove the three inline functions from drmP.h. | Owain Ainsworth |
2009-04-03 | detypedef drm_local_map. | Owain Ainsworth |
2009-04-03 | detypedef drm_device_dma_t. | Owain Ainsworth |
2009-04-03 | detypedef drm_buf_entry_t too. | Owain Ainsworth |
2009-04-03 | detypedef struct drm_buf from the dma_buffers api. Just because it's | Owain Ainsworth |
2009-04-03 | Change a bunch of "printk" in commented out debug code into "printf" and | Owain Ainsworth |
2009-04-03 | More dead typdefs and defines. | Owain Ainsworth |
2009-04-03 | unused type. | Owain Ainsworth |
2009-04-03 | detypedef drm_pci_id_list_t. | Owain Ainsworth |
2009-04-03 | Sprinkle some const correctness for the pciid lists. From mickey ages | Owain Ainsworth |
2009-04-03 | More compat crud bites the dust: Remove the IRQ_NONE and IRQ_HANDLED | Owain Ainsworth |
2009-04-03 | kill the stupid DRM_IRQ_ARGS macros and irqreturn_t typedef, switch to | Owain Ainsworth |
2009-04-03 | Remove dev->irq_lock, the drm_irq_handler_wrap irq handler, and remove | Owain Ainsworth |
2009-04-03 | Convert DRM_WAIT_ON to take additional parameters, the wmsg for msleep, | Owain Ainsworth |
2009-04-03 | Cleanup. These definitions should have died when I removed the lock_time | Owain Ainsworth |
2009-03-31 | remove the drm_read and drm_write functions. instead just do the | Owain Ainsworth |
2009-03-30 | Remove the DRM_SPIN lock macros, just expand them to mutex operations. | Owain Ainsworth |
2009-03-29 | Remove the lock_time member from the hardware lock. It's not that | Owain Ainsworth |
2009-03-27 | Push the per-driver dma hook a little further down. | Owain Ainsworth |
2009-03-27 | Rework the dma buffer api a bit to make it smaller and to have less | Owain Ainsworth |
2009-03-27 | Remove a bunch of compat macros, just expand them to the openbsd | Owain Ainsworth |
2009-03-26 | Rework how we deal with the list of per-open datastructures, and the | Owain Ainsworth |
2009-03-26 | The drm_* allocation functions have been #defined to not use most of | Owain Ainsworth |
2009-02-15 | Remove some dead and unneeded defines, types and prototypes. | Owain Ainsworth |
2009-02-15 | Remove drm_pci_alloc and associated definitions. | Owain Ainsworth |
2009-02-15 | convert drm_scatter code over to using the new dmamem api. | Owain Ainsworth |
2009-02-15 | convert the pcigart case where the gart table is in system memory over | Owain Ainsworth |
2009-02-15 | Convert CONSISTENT maps over to dmamem api. | Owain Ainsworth |
2009-02-15 | convert drm_addbufs_pci over to new dmamem api. | Owain Ainsworth |
2009-02-15 | introduce drm_dmamem_alloc() to allocate dma memory with bus_dma. | Owain Ainsworth |
2009-02-05 | Merge the static block allocation code from {i915,radeon}_mem.c into | Owain Ainsworth |
2009-01-29 | Similar to my last commit, it's stupid to have a file with two very | Owain Ainsworth |
2009-01-29 | Move drmmmap to the main driver file. It's stupid to have a file with | Owain Ainsworth |
2009-01-29 | drm_getmap and interface can die too. | Owain Ainsworth |
2009-01-29 | Rip out the drm_drawable support. There is no need for the xserver to | Owain Ainsworth |
2009-01-27 | While printing is turned off by default, the debug code was still | Owain Ainsworth |
2008-11-29 | Fix a possible NULL pointer dereference. Spotted by Tobias Ulmer; thanks! | Owain Ainsworth |
2008-11-24 | back out the buf_priv change. it made some incorrect assumptions and | Owain Ainsworth |
2008-11-24 | Fixup wakeup pointers. interrupts work properly again. | Owain Ainsworth |
2008-11-24 | do the same for struct drm_file (file_priv) as previously done for | Owain Ainsworth |
2008-11-24 | Instead of having a ``private data'' pointer in the dma buffers, just | Owain Ainsworth |
2008-11-24 | change drm_attach_mi to drm_attach_pci. we take the pci_attach_args, and | Owain Ainsworth |
2008-11-24 | make device works out if it's agp and tells the drm driver, not the | Owain Ainsworth |
2008-11-24 | instead of functions that just return an error, just inline them into | Owain Ainsworth |
2008-11-23 | pass in the dmat when we attach the drm driver. reduces pci dependancy. | Owain Ainsworth |