Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-01-22 | MAINTAINERS: ibmvscsi driver maintainer change | Tyrel Datwyler | 1 | -1/+1 | |
Change maintainer of ibmvscsi driver to Tyrel Datwyler. Signed-off-by: Tyrel Datwyler <[email protected]> Acked-by: Nathan Fontenot <[email protected]> Cc: Brian King <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]> | |||||
2015-01-22 | MAINTAINERS: ibmvfc driver maintainer change | Tyrel Datwyler | 1 | -1/+1 | |
Change maintainer of ibmvfc driver to Tyrel Datwyler. Signed-off-by: Tyrel Datwyler <[email protected]> Cc: Nathan Fontenot <[email protected]> Cc: Brian King <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]> | |||||
2015-01-22 | MAINTAINERS: Remove self as isci maintainer | Dave Jiang | 1 | -1/+0 | |
Removing myself as a maintainer. Signed-off-by: Dave Jiang <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]> | |||||
2015-01-22 | scsi_debug: test always evaluates to false, || should be used instead | Colin Ian King | 1 | -1/+1 | |
cppcheck found the following issue: (warning) Logical conjunction always evaluates to false: alloc_len < 4 && alloc_len > 65535. ..the test should be instead: if (alloc_len < 4 || alloc_len > 65536) This error was introduced by recent commit 38d5c8336e60bf6e53a1da9 ("scsi_debug: add Report supported opcodes+tmfs; Compare and write") Signed-off-by: Colin Ian King <[email protected]> Acked-by: Douglas Gilbert <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]> | |||||
2015-01-22 | drm/radeon: Remove rdev->gart.pages_addr array | Michel Dänzer | 6 | -20/+2 | |
radeon_vm_map_gart can use rdev->gart.pages_entry instead. Also move the masking of the page address to radeon_vm_map_gart from its callers. Reviewed-by: Christian König <[email protected]> Signed-off-by: Michel Dänzer <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: Restore GART table contents after pinning it in VRAM v3 | Michel Dänzer | 1 | -0/+13 | |
The GART table BO has to be moved out of VRAM for suspend/resume. Any updates to the GART table during that time were silently dropped without this change. This caused GPU lockups on resume in some cases, see the bug reports referenced below. This might also make GPU reset more robust in some cases, as we no longer rely on the GART table in VRAM being preserved across the GPU lockup/reset. v2: Add logic to radeon_gart_table_vram_pin directly instead of reinstating radeon_gart_restore v3: Move code after assignment of rdev->gart.table_addr so that the GART TLB flush can work as intended, add code comment explaining why we're doing this Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=85204 Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=86267 Reviewed-by: Christian König <[email protected]> Cc: [email protected] Signed-off-by: Michel Dänzer <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: Split off gart_get_page_entry ASIC hook from set_page_entry | Michel Dänzer | 9 | -37/+100 | |
get_page_entry calculates the GART page table entry, which is just written to the GART page table by set_page_entry. This is a prerequisite for the following fix. Reviewed-by: Christian König <[email protected]> Cc: [email protected] Signed-off-by: Michel Dänzer <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/amdkfd: change amdkfd version to 0.7.1 | Oded Gabbay | 1 | -2/+2 | |
Signed-off-by: Oded Gabbay <[email protected]> | |||||
2015-01-22 | drm/radeon: cik_sdma_ctx_switch_enable() can be static | kbuild test robot | 1 | -1/+1 | |
drivers/gpu/drm/radeon/cik_sdma.c:293:6: sparse: symbol 'cik_sdma_ctx_switch_enable' was not declared. Should it be static? Signed-off-by: Fengguang Wu <[email protected]> Signed-off-by: Oded Gabbay <[email protected]> | |||||
2015-01-22 | drm/amdkfd: Fix sparse errors | Oded Gabbay | 3 | -37/+27 | |
Signed-off-by: Oded Gabbay <[email protected]> Reviewed-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: make MMU_NOTIFIER optional | Rob Clark | 3 | -2/+11 | |
In cases where MMU_NOTIFIER is not available, userptr will not be available. Similar to i915, although not making an exception for CAP_SYS_ADMIN. The proposed userspace patches for userptr seem to handle the fall- back properly, so a userptr-less kernel should not be a problem. Signed-off-by: Rob Clark <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: use NULL rather then 0 in audio detect | Alex Deucher | 1 | -1/+1 | |
Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: whitespace clean up in radeon_audio.c | Alex Deucher | 1 | -35/+35 | |
Clean up some formatting in radeon_audio.c to be more consistent with the rest of the driver. Reviewed-by: Christian König <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: enable DP audio | Slava Grigorev | 5 | -0/+147 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: moved audio caps programming to audio_hotplug() function | Slava Grigorev | 1 | -35/+43 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: applied audio_dpms() and audio_mode_set() calls | Slava Grigorev | 5 | -26/+27 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: consolidate audio_mode_set() functions | Slava Grigorev | 8 | -162/+66 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: removed unnecessary debug settings | Slava Grigorev | 3 | -18/+0 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: moved mute programming to a separate function | Slava Grigorev | 5 | -11/+58 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: moved audio packet programming to a separate function | Slava Grigorev | 5 | -112/+134 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: set_avi_packet() function cleanup | Slava Grigorev | 5 | -79/+59 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: removed unnecessary CRC control programing | Slava Grigorev | 2 | -6/+0 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon: moved HDMI color depth programming to a separate function | Slava Grigorev | 5 | -34/+62 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: moved VBI packet programming to separate functions | Alex Deucher | 5 | -21/+45 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: consolidate update_acr() functions (v2) | Slava Grigorev | 5 | -133/+183 | |
V2: fix missing dce6 callback Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: consolidate update_avi_infoframe() functions | Slava Grigorev | 5 | -22/+34 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: consolidate audio_set_dto() functions | Slava Grigorev | 8 | -100/+226 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: consolidate audio_fini() functions | Slava Grigorev | 12 | -41/+26 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: consolidate audio_enable() functions | Slava Grigorev | 6 | -26/+28 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: consolidate select_pin() functions | Slava Grigorev | 3 | -5/+14 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: consolidate audio_get_pin() functions | Slava Grigorev | 5 | -4/+25 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: consolidate write_latency_fields() functions | Slava Grigorev | 4 | -39/+44 | |
Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: consolidate write_speaker_allocation() functions | Slava Grigorev | 5 | -83/+126 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: consolidate write_sad_regs() functions | Alex Deucher | 5 | -90/+93 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: defined initial audio interface that gets initialized via ↵ | Slava Grigorev | 6 | -7/+136 | |
detect() call Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | radeon/audio: consolidate audio_init() functions | Slava Grigorev | 14 | -105/+138 | |
Reviewed-by: Christian König <[email protected]> Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: comment out some currently unused 7xx dpm code | Alex Deucher | 2 | -2/+4 | |
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: comment out some currently unused eg dpm code | Alex Deucher | 1 | -0/+2 | |
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: comment out some currently unused sumo dpm code | Alex Deucher | 2 | -3/+4 | |
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: comment out some currently unused tn dpm code | Alex Deucher | 1 | -0/+2 | |
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: comment out some currently unused btc dpm code | Alex Deucher | 1 | -0/+2 | |
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: comment out some currently unused ni dpm code | Alex Deucher | 1 | -0/+2 | |
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: comment out some currently unused kv dpm code | Alex Deucher | 1 | -0/+2 | |
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: comment out some currently unused si dpm code | Alex Deucher | 1 | -1/+4 | |
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: comment out some currently unused ci dpm code | Alex Deucher | 2 | -0/+6 | |
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | gpu: drm: radeon: radeon_object: Remove unused function | Rickard Strandqvist | 2 | -8/+0 | |
Remove the function radeon_bo_fbdev_mmap() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon/radeon_fb: Remove unused function | Rickard Strandqvist | 2 | -11/+0 | |
Remove the function radeon_fbdev_total_size() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon/radeon_i2c: Remove unused function | Rickard Strandqvist | 2 | -7/+0 | |
Remove the function radeon_best_encoder() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist <[email protected]> Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | drm/radeon: enable smc fan control on SI | Alex Deucher | 1 | -1/+0 | |
Working now with Oleg's last round of fixes. Signed-off-by: Alex Deucher <[email protected]> | |||||
2015-01-22 | fixes for SI fan handling | Oleg Chernovskiy | 1 | -4/+8 | |
Added temperature values to SMC payload. Fan mode check moved check to proper place. Signed-off-by: Oleg Chernovskiy <[email protected]> Signed-off-by: Alex Deucher <[email protected]> |