aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/radeon/uvd_v2_2.c
Commit message (Collapse)AuthorAgeFilesLines
* drm/radeon: add UVD support for older asics v4Christian König2014-08-271-0/+4
| | | | | | | | | v2: cleanup R600 support v3: rebased on current drm-fixes-3.12 v4: rebased on drm-next-3.14 Signed-off-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
* drm/radeon: use lower_32_bits where appropriateChristian König2014-06-091-1/+1
| | | | | | | | | Replace occurrences of "v & 0xffffffff" with lower_32_bits(v) when it's next to an upper_32_bits(v). Also remove unnecessary "upper_32_bits(v) & 0xffffffff" code snippets. Signed-off-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
* drm/radeon: remove useless returnAlex Deucher2014-02-061-1/+0
| | | | Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
* drm/radeon: add UVD support for OLANDAlex Deucher2014-01-201-0/+1
| | | | | | | | It seems this got dropped when we merged UVD support last year. Add this back now. Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Cc: stable@vger.kernel.org
* drm/radeon: separate UVD code v3Christian König2013-08-301-0/+165
Our different hardware blocks are actually completely separated, so it doesn't make much sense any more to structure the code by pure chipset generations. Start restructuring the code by separating our the UVD block. v2: updated commit message v3: rebased and restructurized start/stop functions for kv dpm. Signed-off-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>