aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-01-22MAINTAINERS: ibmvscsi driver maintainer changeTyrel Datwyler1-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-22MAINTAINERS: ibmvfc driver maintainer changeTyrel Datwyler1-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-22MAINTAINERS: Remove self as isci maintainerDave Jiang1-1/+0
Removing myself as a maintainer. Signed-off-by: Dave Jiang <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]>
2015-01-22scsi_debug: test always evaluates to false, || should be used insteadColin Ian King1-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-22drm/radeon: Remove rdev->gart.pages_addr arrayMichel Dänzer6-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-22drm/radeon: Restore GART table contents after pinning it in VRAM v3Michel Dänzer1-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-22drm/radeon: Split off gart_get_page_entry ASIC hook from set_page_entryMichel Dänzer9-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-22drm/amdkfd: change amdkfd version to 0.7.1Oded Gabbay1-2/+2
Signed-off-by: Oded Gabbay <[email protected]>
2015-01-22drm/radeon: cik_sdma_ctx_switch_enable() can be statickbuild test robot1-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-22drm/amdkfd: Fix sparse errorsOded Gabbay3-37/+27
Signed-off-by: Oded Gabbay <[email protected]> Reviewed-by: Alex Deucher <[email protected]>
2015-01-22drm/radeon: make MMU_NOTIFIER optionalRob Clark3-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-22drm/radeon: use NULL rather then 0 in audio detectAlex Deucher1-1/+1
Signed-off-by: Alex Deucher <[email protected]>
2015-01-22drm/radeon: whitespace clean up in radeon_audio.cAlex Deucher1-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-22radeon/audio: enable DP audioSlava Grigorev5-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-22radeon/audio: moved audio caps programming to audio_hotplug() functionSlava Grigorev1-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-22radeon/audio: applied audio_dpms() and audio_mode_set() callsSlava Grigorev5-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-22radeon/audio: consolidate audio_mode_set() functionsSlava Grigorev8-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-22radeon/audio: removed unnecessary debug settingsSlava Grigorev3-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-22radeon/audio: moved mute programming to a separate functionSlava Grigorev5-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-22radeon/audio: moved audio packet programming to a separate functionSlava Grigorev5-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-22radeon/audio: set_avi_packet() function cleanupSlava Grigorev5-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-22radeon/audio: removed unnecessary CRC control programingSlava Grigorev2-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-22radeon: moved HDMI color depth programming to a separate functionSlava Grigorev5-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-22radeon/audio: moved VBI packet programming to separate functionsAlex Deucher5-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-22radeon/audio: consolidate update_acr() functions (v2)Slava Grigorev5-133/+183
V2: fix missing dce6 callback Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
2015-01-22radeon/audio: consolidate update_avi_infoframe() functionsSlava Grigorev5-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-22radeon/audio: consolidate audio_set_dto() functionsSlava Grigorev8-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-22radeon/audio: consolidate audio_fini() functionsSlava Grigorev12-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-22radeon/audio: consolidate audio_enable() functionsSlava Grigorev6-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-22radeon/audio: consolidate select_pin() functionsSlava Grigorev3-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-22radeon/audio: consolidate audio_get_pin() functionsSlava Grigorev5-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-22radeon/audio: consolidate write_latency_fields() functionsSlava Grigorev4-39/+44
Signed-off-by: Slava Grigorev <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
2015-01-22radeon/audio: consolidate write_speaker_allocation() functionsSlava Grigorev5-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-22radeon/audio: consolidate write_sad_regs() functionsAlex Deucher5-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-22radeon/audio: defined initial audio interface that gets initialized via ↵Slava Grigorev6-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-22radeon/audio: consolidate audio_init() functionsSlava Grigorev14-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-22drm/radeon: comment out some currently unused 7xx dpm codeAlex Deucher2-2/+4
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]>
2015-01-22drm/radeon: comment out some currently unused eg dpm codeAlex Deucher1-0/+2
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]>
2015-01-22drm/radeon: comment out some currently unused sumo dpm codeAlex Deucher2-3/+4
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]>
2015-01-22drm/radeon: comment out some currently unused tn dpm codeAlex Deucher1-0/+2
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]>
2015-01-22drm/radeon: comment out some currently unused btc dpm codeAlex Deucher1-0/+2
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]>
2015-01-22drm/radeon: comment out some currently unused ni dpm codeAlex Deucher1-0/+2
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]>
2015-01-22drm/radeon: comment out some currently unused kv dpm codeAlex Deucher1-0/+2
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]>
2015-01-22drm/radeon: comment out some currently unused si dpm codeAlex Deucher1-1/+4
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]>
2015-01-22drm/radeon: comment out some currently unused ci dpm codeAlex Deucher2-0/+6
Keep it around for reference. Signed-off-by: Alex Deucher <[email protected]>
2015-01-22gpu: drm: radeon: radeon_object: Remove unused functionRickard Strandqvist2-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-22drm/radeon/radeon_fb: Remove unused functionRickard Strandqvist2-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-22drm/radeon/radeon_i2c: Remove unused functionRickard Strandqvist2-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-22drm/radeon: enable smc fan control on SIAlex Deucher1-1/+0
Working now with Oleg's last round of fixes. Signed-off-by: Alex Deucher <[email protected]>
2015-01-22fixes for SI fan handlingOleg Chernovskiy1-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]>