index
:
FreeBSD-src
RELENG_2_2
RELENG_2_3
RELENG_2_3_0
RELENG_2_3_1
RELENG_2_3_2
RELENG_2_3_3
RELENG_2_3_4
RELENG_2_4
RELENG_2_4_4
RELENG_2_4_OLD
devel
devel-11
releng/10.1
releng/10.3
releng/11.0
releng/11.1
stable/10
stable/11
Raptor Engineering's fork of pfsense FreeBSD src with pfSense changes
Raptor Engineering, LLC
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
sys
/
dev
/
drm
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Simplify the radeon microcode loading.
rnoland
2009-03-31
2
-213
/
+132
*
We don't know what these pages are going to be used for, they should be
rnoland
2009-03-30
1
-1
/
+1
*
Load the right microcode for RS780.
rnoland
2009-03-30
1
-4
/
+4
*
Fix up waiting on vblank again... This reverts a last minute change that
rnoland
2009-03-26
1
-5
/
+8
*
Rework the management of vblank interrupts a bit.
rnoland
2009-03-25
1
-22
/
+31
*
Intel handled the management of the breadcrumb counter inconsistently.
rnoland
2009-03-25
2
-11
/
+12
*
The GART allocations are a propery of the gart, not of scatter-gather
rnoland
2009-03-25
3
-10
/
+9
*
Fix up the flags to bus_dmamem again. The man page incorrectly showed
rnoland
2009-03-22
2
-10
/
+9
*
vm_offset_t is unsigned, so compare of >= 0 is not needed.
rnoland
2009-03-20
1
-1
/
+1
*
Remove the DRM_ERROR to fix build. It didn't make any sense anyway.
rnoland
2009-03-20
1
-2
/
+0
*
Fix what appears to be a typo, and restore the registers correctly.
rnoland
2009-03-20
1
-1
/
+1
*
Don't deref dev->dev_private before checking that it exists.
rnoland
2009-03-20
1
-2
/
+1
*
Only issue the wakeup and store the counter if vblank is enabled on
rnoland
2009-03-20
1
-4
/
+6
*
Add a couple of radeon pci ids.
rnoland
2009-03-20
1
-0
/
+2
*
Adjust the flags to bus_dmamem around here too.
rnoland
2009-03-20
1
-7
/
+8
*
Add some debugging so I can see when syscalls are being restarted
rnoland
2009-03-19
3
-1
/
+12
*
Rework vblank handling to try to resolve some reports of "slow" windows
rnoland
2009-03-19
1
-19
/
+36
*
Sync up the rest of the code that we use with what Intel is shipping
rnoland
2009-03-19
2
-83
/
+111
*
Pull in some suspend / resume changes from Intel's code
rnoland
2009-03-19
3
-15
/
+69
*
Cast to (unsigned long) to make printf happy on i386
rnoland
2009-03-17
1
-2
/
+3
*
Add support for matching solely on vendor id.
rnoland
2009-03-17
1
-2
/
+6
*
Improve the debugging output of drm_mmap
rnoland
2009-03-17
1
-1
/
+6
*
Add list_for_each_prev to our linux compatibility.
rnoland
2009-03-17
1
-0
/
+4
*
Minor code cleanup
rnoland
2009-03-17
1
-1
/
+1
*
We can have more than 3 pci resources
rnoland
2009-03-17
1
-1
/
+1
*
Cast register maps and offsets to vm_offset_t
rnoland
2009-03-17
1
-6
/
+12
*
Change the logic around to match ati_pcigart.
rnoland
2009-03-17
1
-2
/
+2
*
Use flsl() here rather than ffsl()
rnoland
2009-03-17
1
-1
/
+1
*
Use the right MSI_REARM for RS600.
rnoland
2009-03-16
1
-0
/
+1
*
Get rid of any remaining PZERO flags in mtx_sleep()
rnoland
2009-03-16
3
-14
/
+2
*
Fix R600 writeback across suspend/resume.
rnoland
2009-03-16
1
-3
/
+0
*
Consistently use kdev for the kernel device.
rnoland
2009-03-09
10
-91
/
+91
*
Clean up the printing on amd64. Should also be consistent on i386.
rnoland
2009-03-09
1
-3
/
+3
*
There is no need to sync these buffers to swap.
rnoland
2009-03-09
1
-3
/
+4
*
Change the flags to bus_dmamem around to allow it to sleep waiting for
rnoland
2009-03-09
1
-4
/
+4
*
Fix the flags to bus_dmamem_* to allow the allocation to sleep while
rnoland
2009-03-09
1
-2
/
+3
*
-Make the PCI(E)/AGP calculations consistent
rnoland
2009-03-09
1
-19
/
+22
*
Call the right function for the right chipset.
rnoland
2009-03-09
1
-1
/
+1
*
Import support for ATI Radeon R600 and R700 series chips.
rnoland
2009-03-07
8
-384
/
+26950
*
Initialize the vblank structures at load time. Previously we did this
rnoland
2009-02-28
16
-20
/
+44
*
Add a tuneable to allow disabling msi on drm at runtime.
rnoland
2009-02-27
1
-1
/
+5
*
Fix up some ioctl permissions issues long overlooked.
rnoland
2009-02-27
3
-8
/
+7
*
The GM45 handles vblank differently. Pull the changes from Intel in.
rnoland
2009-02-25
5
-1
/
+25
*
Remove D_NEEDGIANT.
rnoland
2009-02-25
1
-1
/
+1
*
Turn on MSI if the card supports it. There is a blacklist for chips
rnoland
2009-02-25
3
-35
/
+78
*
Prepare the radeon driver for MSI support.
rnoland
2009-02-25
1
-0
/
+28
*
Add some vblank related debugging and replace the DRM_WAIT_ON macro
rnoland
2009-02-25
1
-9
/
+23
*
This was part of a sync to the code that Intel is shipping in linux.
rnoland
2009-02-25
6
-2272
/
+1909
*
The i915 driver was the only consumer of locked task support.
rnoland
2009-02-25
4
-64
/
+0
*
The vblank_swap ioctl was fundamentally race prone. Get rid of it.
rnoland
2009-02-25
3
-433
/
+14
[prev]
[next]