summaryrefslogtreecommitdiff
path: root/sys/dev/pci/drm
AgeCommit message (Expand)Author
2009-03-01Switch more info printfs to debug. The average user doesn't want to seeOwain Ainsworth
2009-02-18Disable all IGPGART chipsets in radeondrm for release.Owain Ainsworth
2009-02-16Kill ring.high_mark. it's unused.Owain Ainsworth
2009-02-15The core drm code calls drm_irq_uninstall() when needed at lastclose.Owain Ainsworth
2009-02-15dev_priv->irq_enabled is only set to zero and then ignored. kill it.Owain Ainsworth
2009-02-15radeon_do_cp_resume was only called in one place (and that function justOwain Ainsworth
2009-02-15the body of radeon_do_cp_flush() has been if 0ed out forever. so removeOwain Ainsworth
2009-02-15Some knf nits.Owain Ainsworth
2009-02-15destatic and deinline. return type on line before rest of functionOwain Ainsworth
2009-02-15on IGPGART chipsets, map the pcigart table uncached. This fixes some bugs forOwain Ainsworth
2009-02-15for the sake of correctness bus_dmamap_sync when necessary for theOwain Ainsworth
2009-02-15Remove some ifdeffed out debugging code that I'm not so fond of.Owain Ainsworth
2009-02-15Remove some dead and unneeded defines, types and prototypes.Owain Ainsworth
2009-02-15Make the pcigart functions return 0 on success and an errno on failure,Owain Ainsworth
2009-02-15Split out the switch statement that writes the pcigart table entry intoOwain Ainsworth
2009-02-15Remove drm_pci_alloc and associated definitions.Owain Ainsworth
2009-02-15Convert intel hardware-status-page allocation over to new dmamem api.Owain Ainsworth
2009-02-15convert drm_scatter code over to using the new dmamem api.Owain Ainsworth
2009-02-15convert the pcigart case where the gart table is in system memory overOwain Ainsworth
2009-02-15Convert CONSISTENT maps over to dmamem api.Owain Ainsworth
2009-02-15convert drm_addbufs_pci over to new dmamem api.Owain Ainsworth
2009-02-15Convert machdrm over to new dmamem api.Owain Ainsworth
2009-02-15introduce drm_dmamem_alloc() to allocate dma memory with bus_dma.Owain Ainsworth
2009-02-12Change microcode loaded messages to debug, this was printedJonathan Gray
2009-02-09Remove an unused define.Owain Ainsworth
2009-02-09Only print information on the writeback test if it fails. Otherwise onlyOwain Ainsworth
2009-02-09Remove the inteldrm pageflipping code.Owain Ainsworth
2009-02-09Don't enable vblank if the pipe is disabled.Owain Ainsworth
2009-02-08fix potential null dereferences.Charles Longeau
2009-02-08Fix uninitialized arguments.Charles Longeau
2009-02-08remove dead assignment and newly created unused variable.Charles Longeau
2009-02-05Fix slight logic error in a previous commit.Owain Ainsworth
2009-02-05KNF, and remove a debug printf I missed.Owain Ainsworth
2009-02-05KNF, no change to behaviour.Owain Ainsworth
2009-02-05Merge the static block allocation code from {i915,radeon}_mem.c intoOwain Ainsworth
2009-01-29Similar to my last commit, it's stupid to have a file with two veryOwain Ainsworth
2009-01-29Move drmmmap to the main driver file. It's stupid to have a file withOwain Ainsworth
2009-01-29drm_getmap and interface can die too.Owain Ainsworth
2009-01-29Rip out the drm_drawable support. There is no need for the xserver toOwain Ainsworth
2009-01-27While printing is turned off by default, the debug code was stillOwain Ainsworth
2009-01-26Include the ioctl definitions for the modesetting interface.Owain Ainsworth
2009-01-10Add GEM ioctl definitions to drm.h (the intel specific ones were added aOwain Ainsworth
2008-12-11Don't do radeon_cp_dispatch flip on lastclose.Owain Ainsworth
2008-12-08Don't forget to map the pci interrupt.Owain Ainsworth
2008-12-08Make the various drm drivers print the interrupt they're using.Mark Kettenis
2008-11-29Fix a possible NULL pointer dereference. Spotted by Tobias Ulmer; thanks!Owain Ainsworth
2008-11-26Zero the surface when we free them. stops some state problems which causeOwain Ainsworth
2008-11-25Unbreak the treeOwain Ainsworth
2008-11-25Don't try and enable the vblank handler if irqs are disabled.Owain Ainsworth
2008-11-24Work around the stupidity of radeondrm by double checking that things areOwain Ainsworth