summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-08-17Merged drmfntbl-0-0-1drmfntbl-0-0-1-20040817-mergeDave Airlie99-1318/+1416
2004-08-17preparation patch for radeon permanent mapping registers/framebuffer makesDave Airlie7-116/+258
dev_priv live always, and add AGP detection in kernel patch: radeon-pre-2.patch From: Jon Smirl
2004-08-172.6.8.1 has changed the links in /lib/modulesDave Airlie2-2/+6
2004-08-15Fix warning about unused ddev variableJon Smirl2-2/+2
2004-08-15Add dev to DRIVER_CTX_DTOR( dev, pos->handle) so that sis driver willJon Smirl4-4/+6
compile #if 0 get_pci_driver use in hotplug function until fbdev work around is written
2004-08-14Remove unused pcigart/sg header stuff from i915 driver.Eric Anholt2-8/+0
2004-08-14Add a "dev" argument to DRIVER_CTX_[CD]TOR. This will be used in anEric Anholt14-24/+28
upcoming commit for the SiS driver.
2004-08-14Hopefully proper fix for corrupted driver name in memcontrol list.Eric Anholt2-4/+4
Reported by: Jung-uk Kim <jkim@niksun.com>
2004-08-13Fix apparent copy'n'paste-o of the card attributes commit that broke theEric Anholt2-4/+4
FreeBSD build.
2004-08-13Enable MTRR usage on AMD64, and use DELAY() instead of rolling our ownEric Anholt2-18/+6
udelay code. Submitted by: Jung-uk Kim <jkim@niksun.com>
2004-08-11Bug #979: Don't include <sys/sysmacros.h> on linux, it occasionally emitsAdam Jackson1-4/+0
makedev() as a function call that elfloader can't resolve. Originally Gentoo Bug #41962, reported by Ryan Breen, fix feedback from Ryan Lortie.
2004-08-11minor patch from Jon Smirl : sets up some things for later useDave Airlie6-16/+18
2004-08-10Patch from Jon Smirl to add attribute field to the pciids, and use this forDave Airlie10-382/+390
certain radeon combinations - intel drivers can probably use this for dual head capable devices etc..
2004-08-042.4 compatDave Airlie2-2/+2
2004-08-042.4 hotplug compatDave Airlie6-4/+18
2004-08-03bring over fix from i865-agp branch, it now probes the driver, X hangsDave Airlie4-2/+14
box..
2004-08-03fix for drm in /proc - from Jon SmirlDave Airlie8-62/+66
2004-08-02forgot to check these in.. thanks to Jon for reminding me ..Dave Airlie3-3/+3
2004-07-31Add a hotplug event to DRM. Parameters match the ones from the general PCIJon Smirl4-6/+146
hotplug event plus the addition of one requesting RESET. Put your scripts in /etc/hotplug.d/drm to run. kernel class_simple generates the ADD/REMOVE events. No cards currently request RESET, the flag is there to stop you from resetting your boot display.
2004-07-31patch from RH xorg-x11 tree ported to drm.hDave Airlie2-4/+4
2004-07-31Patch picked up from Redhat xorg release:Dave Airlie1-2/+2
Patch by John Dennis <jdennis@redhat.com> which fixes DRI locking bug on ia64 architecture. https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=104338 http://bugs.xfree86.org/show_bug.cgi?id=778
2004-07-31fixes for using userspace pointers found by sparse utilityDave Airlie5-22/+52
From: Dave Airlie
2004-07-31athe patch below optimises the drm code to not do put_user() on memory theDave Airlie4-22/+16
kernel allocated and then mmap-installed to userspace, but instead makes it use the kernel virtual address directly instead. From: Arjan van de Ven <arjanv@redhat.com>
2004-07-29add read/write 16Dave Airlie2-0/+4
2004-07-29change to agp not pci ... still not workingDave Airlie2-2/+2
2004-07-29initial port of i915 to BSD, not finished doesn't work.. no idea why...Dave Airlie10-16/+218
2004-07-25check for __user if not there define itDave Airlie2-0/+8
2004-07-25sync up with current 2.6 kernel bk tree - mostly __user annotationsDave Airlie52-357/+375
2004-07-25whitespace merge with kernelDave Airlie2-10/+6
2004-07-25if the driver has already register don't do another intermodule registerDave Airlie4-60/+82
2004-07-25Patch from Tom Arbuckle for missing bus_addressDave Airlie2-0/+2
2004-07-23Correct a couple of packet length calculations.Keith Whitwell2-2/+16
2004-07-22another logic error returns 0 or greater for successDave Airlie2-2/+2
2004-07-21ATI Rage 128 and Radeon DRM unconditionally depend on PCIDave Airlie2-6/+6
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
2004-07-21add some more debugging fix ++ and --Dave Airlie2-8/+18
2004-07-20first set of __user annotations from kernel (Al Viro)Dave Airlie27-191/+203
2004-07-20Add NULLs instead of 0 for i915Dave Airlie2-18/+18
2004-07-20Kconfig update add i915 bring over some stuff from kernelDave Airlie2-4/+24
2004-07-20add x86_64 architecture defines from kernel (leave AMD64 defines in forDave Airlie4-8/+8
backwards compat)
2004-07-20fix some more NULLs from kernelDave Airlie4-6/+6
2004-07-20attempt to clean up stub_register, register_chrdev isn't good enough toDave Airlie2-24/+32
make the decision for multiple cards with one drm ..
2004-07-15sparse cleanups from kernel: Al ViroDave Airlie10-28/+28
2004-07-14Fix reference counting for stub for new Linux PCI probeDave Airlie4-4/+24
2004-07-14allow O= usage for Linux 2.6 kernel building in another directoryDave Airlie2-0/+22
2004-07-11split out backwards compat into a separate file makes it easier for mergingDave Airlie4-230/+308
to 2.6
2004-07-11fix issue in 2.4 kernels with returning NULL from this functionDave Airlie2-2/+2
2004-07-08Add two items to Makefile clean XFree86 bug: Reported by: Submitted by:Jon Smirl2-4/+4
Reviewed by: Obtained from:
2004-07-07Make drm/libdrm/xf86drm.c matchJon Smirl1-33/+42
xc/xc/programs/Xserver/hw/xfree86/os-support/linux/drm/xf86drm.c so that it matches the prototypes in xf86drm.h XFree86 bug: Reported by: Submitted by: Reviewed by: Obtained from:
2004-07-07Add xf86drm.h back to drm/libdrm until it's true home can be found.Jon Smirl1-0/+636
mesa-solo needs this file to build. XFree86 bug: Reported by: Submitted by: Reviewed by: Obtained from:
2004-07-06Fix module loading on alpha by not referencing MTRR symbols onEric Anholt2-0/+4
!__REALLY_HAVE_MTRR.