Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-09-17 | Add linux sysfs i2c support to radeon driver. This patch adds GPL licensed | Jon Smirl | |
files to the linux build but not to the BSD directories. | |||
2004-09-16 | Let's try adding the dyn-minor patch again. This patch will reuse minor | Jon Smirl | |
numbers if a card is hotplugged in/out instead of just having them increase. | |||
2004-09-16 | Fix drm_scatter to properly report it's availability | Jon Smirl | |
2004-09-15 | Back dyn-minor patch out for now. fops handling is broken on some cards | Jon Smirl | |
2004-09-15 | Don't use module_param if it isn't defined in older kernels. | Jon Smirl | |
2004-09-15 | Dynamic device minor support. Minor device numbers will be reused if the | Jon Smirl | |
device is hotplugged in/out of the system | |||
2004-09-12 | Fix error path in probe() to release resources if there is an error. | Jon Smirl | |
2004-09-12 | Make the comment match the code | Jon Smirl | |
2004-09-12 | Fix DRM to compile cleanly with recent kernel changes in PCI IO and | Jon Smirl | |
DRM_COPY_FROM_USER. PCI IO changes in 2.6.9-rc1 bk currently. | |||
2004-09-10 | More general patch to mark resources in use by all DRM drivers. Makes the | Jon Smirl | |
code Linux specific. | |||
2004-09-08 | Update doxygen configuration file. Minor documentation updates/fixes. | Jose Fonseca | |
2004-09-08 | Adjust permanent mapping code to account for more than one framebuffer map | Jon Smirl | |
2004-09-05 | missed fix as part of last checkin | Dave Airlie | |
2004-09-05 | merge back bunch of whitespace and misc changes from kernel | Dave Airlie | |
2004-09-05 | bad code copy for alpha.. fix the member names | Dave Airlie | |
2004-09-05 | make the AMD64 check a compat thing | Dave Airlie | |
2004-09-04 | Fixup OS_HAS_AGP/OS_HAS_MTRR along lines of patches going to kernel, as | Dave Airlie | |
suggested by Arjan.. Signed-off-by: Dave Airlie <airlied@linux.ie> | |||
2004-09-04 | doh.. that makes no sense.. thinko in removal of OS_HAS_AGP | Dave Airlie | |
2004-09-02 | oops called ctor instead of dtor.. found this on the kernel merge | Dave Airlie | |
2004-09-02 | Fix ref count problem in stealth mode. pci_get_subsys() with last parameter | Jon Smirl | |
set does the pci_dev_put for you. | |||
2004-08-30 | implement drm_core_check_feature and use it .. looks lots nicer | Dave Airlie | |
2004-08-30 | drm-memory patch, cleans up alloc/free and makes calloc look more libc like | Dave Airlie | |
2004-08-29 | add context include so fn are defined | Dave Airlie | |
2004-08-29 | fix up some small things ffb (no idea if it works or not ..) | Dave Airlie | |
2004-08-29 | remove hacky context thing that was gamma only | Dave Airlie | |
2004-08-29 | Drop GAMMA DRM from a great height ... | Dave Airlie | |
2004-08-29 | fixup issue caused by fntbl-2 merge | Dave Airlie | |
2004-08-28 | Initialize pdev to NULL correctly so that pci_get_subsys() will work. | Jon Smirl | |
2004-08-27 | run i915 through lindent | Dave Airlie | |
2004-08-27 | __NO_VERSION__ hasn't been needed since 2.3 days ditch it... | Dave Airlie | |
2004-08-27 | Make DRM detect vesafb and revert to stealth mode to avoid resource | Jon Smirl | |
conflicts | |||
2004-08-24 | Merged drmfntbl-0-0-2 | Dave Airlie | |
2004-08-24 | addmap-base-2 patch from Jon Smirl: | Dave Airlie | |
sets up the DRM to have the ability to have permanent maps while the driver is loaded... | |||
2004-08-24 | This patch adds three new ioctl's to the VIA Unichrome/Pro DRM driver: | Erdi Chen | |
DRM_IOCTL_VIA_DMA_INIT DRM_IOCTL_VIA_CMDBUFFER DRM_IOCTL_VIA_FLUSH The first ioctl sets up an area in AGP memory that will be used as the ring buffer. The second ioctl copies a command buffer from user space memory to the ring buffer. The third ioctl waits for engine idle until it returns. The motivation for this patch is to avoid the wait for engine idle call before each buffer flush in the current DRI driver. With this patch, the DRI driver can continue to flush its buffer as long as there is free space in the ring buffer. This patch adds an additional copy operation on the command buffer. This buffer copying is necessary to support multiple DRI clients rendering simultaneously. Otherwise, more CPU time will be spent in the busy loop waiting for engine idle between DRI context switch. Even in the single client case, the tradeoff is reasonable in comparision to the kernel call to check for free buffer space for the client to render directly to the ring buffer. | |||
2004-08-17 | Merged drmfntbl-0-0-1 | Dave Airlie | |
2004-08-17 | 2.6.8.1 has changed the links in /lib/modules | Dave Airlie | |
2004-08-15 | Fix warning about unused ddev variable | Jon Smirl | |
2004-08-15 | Add dev to DRIVER_CTX_DTOR( dev, pos->handle) so that sis driver will | Jon Smirl | |
compile #if 0 get_pci_driver use in hotplug function until fbdev work around is written | |||
2004-08-14 | Add a "dev" argument to DRIVER_CTX_[CD]TOR. This will be used in an | Eric Anholt | |
upcoming commit for the SiS driver. | |||
2004-08-11 | minor patch from Jon Smirl : sets up some things for later use | Dave Airlie | |
2004-08-10 | Patch from Jon Smirl to add attribute field to the pciids, and use this for | Dave Airlie | |
certain radeon combinations - intel drivers can probably use this for dual head capable devices etc.. | |||
2004-08-04 | 2.4 compat | Dave Airlie | |
2004-08-04 | 2.4 hotplug compat | Dave Airlie | |
2004-08-03 | fix for drm in /proc - from Jon Smirl | Dave Airlie | |
2004-07-31 | Add a hotplug event to DRM. Parameters match the ones from the general PCI | Jon Smirl | |
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-31 | athe patch below optimises the drm code to not do put_user() on memory the | Dave Airlie | |
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-25 | sync up with current 2.6 kernel bk tree - mostly __user annotations | Dave Airlie | |
2004-07-25 | whitespace merge with kernel | Dave Airlie | |
2004-07-25 | if the driver has already register don't do another intermodule register | Dave Airlie | |
2004-07-25 | Patch from Tom Arbuckle for missing bus_address | Dave Airlie | |