Hi Dave,
This is the first pull request for radeon for 3.16. Christian has a few other patches that depend on some fixes from 3.15 so I'll wait to send those out until you sort out the 3.15 merge.
Highlights: - GPUVM opimtizations - HDMI audio cleanups - Deep color HDMI support - more bug fixes, cleanups
The following changes since commit 182407a6ed5333fc37dd980a8de91a8f826a94f6:
drm: add DP MST encoder type (2014-05-30 11:59:51 +1000)
are available in the git repository at:
git://people.freedesktop.org/~agd5f/linux drm-next-3.16
for you to fetch changes up to bc5b96414cf8fe1cf73f778144ed6e10cbd849b4:
drm/edid: Add quirk for Sony PVM-2541A to get 12 bpc hdmi deep color. (2014-06-02 18:37:35 -0400)
---------------------------------------------------------------- Alex Deucher (9): drm/radeon: add a i2c bus mutex vgaswitcheroo: switch the mux to the igp on power down when runpm is enabled drm/radeon: fix typo in radeon_connector_is_dp12_capable() drm/radeon/dp: fix lane/clock setup for dp 1.2 capable devices drm/radeon/atom: fix dithering on certain panels drm/radeon: only apply hdmi bpc pll flags when encoder mode is hdmi drm/radeon: use hw cts/n values for deep color drm/radeon: fix pll setup for hdmi deep color (v7) drm/radeon: Setup HDMI_CONTROL for hdmi deep color gcp's (v2)
Christian König (10): drm/radeon: add large PTE support for NI, SI and CIK v5 drm/radeon: add proper support for RADEON_VM_BLOCK_SIZE v2 drm/radeon: remove (pre|post)_page_flip callbacks drm/radeon: remove drm_vblank_get|put from pflip handling drm/radeon: split page flip and pending callback drm/radeon: separate vblank and pflip crtc handling drm/radeon: rework page flip handling v3 drm/radeon: add define for flags used in R600+ GTT drm/radeon: optimize SI VM handling drm/radeon: optimize CIK VM handling v2
Mario Kleiner (3): drm/radeon: Limit hdmi deep color bit depth to 12 bpc. drm/edid: Parse and handle HDMI deep color modes. drm/edid: Add quirk for Sony PVM-2541A to get 12 bpc hdmi deep color.
Michele CURTI (2): drm/radeon: use NULL instead of zero in object functions drm/radeon: use NULL instead of zero in clearstate headers
Rafał Miłecki (4): drm/radeon/hdmi: use separated file for DCE 3.1/3.2 code drm/radeon/hdmi: DCE3: clean ACR control drm/radeon/hdmi: DCE2: update setmode drm/radeon/hdmi: DCE2: simplify audio workaround
Émeric MASCHINO (1): radeon: Remove useless quirk for zx1/FireGL X1 combo introduced with fdo #7770
drivers/gpu/drm/drm_edid.c | 118 +++++++++- drivers/gpu/drm/radeon/Makefile | 2 +- drivers/gpu/drm/radeon/atombios_crtc.c | 89 +++++--- drivers/gpu/drm/radeon/atombios_dp.c | 35 ++- drivers/gpu/drm/radeon/atombios_encoders.c | 5 +- drivers/gpu/drm/radeon/atombios_i2c.c | 17 +- drivers/gpu/drm/radeon/cik.c | 17 +- drivers/gpu/drm/radeon/cik_sdma.c | 21 +- drivers/gpu/drm/radeon/cikd.h | 1 + drivers/gpu/drm/radeon/clearstate_cayman.h | 8 +- drivers/gpu/drm/radeon/clearstate_ci.h | 4 +- drivers/gpu/drm/radeon/clearstate_si.h | 4 +- drivers/gpu/drm/radeon/dce3_1_afmt.c | 244 +++++++++++++++++++++ drivers/gpu/drm/radeon/evergreen.c | 60 ++--- drivers/gpu/drm/radeon/evergreen_hdmi.c | 48 +++- drivers/gpu/drm/radeon/evergreend.h | 3 +- drivers/gpu/drm/radeon/ni.c | 3 + drivers/gpu/drm/radeon/nid.h | 1 + drivers/gpu/drm/radeon/r100.c | 55 ++--- drivers/gpu/drm/radeon/r600.c | 4 +- drivers/gpu/drm/radeon/r600_hdmi.c | 341 +++++++++-------------------- drivers/gpu/drm/radeon/r600d.h | 17 ++ drivers/gpu/drm/radeon/radeon.h | 33 ++- drivers/gpu/drm/radeon/radeon_agp.c | 3 - drivers/gpu/drm/radeon/radeon_asic.c | 68 ++---- drivers/gpu/drm/radeon/radeon_asic.h | 28 ++- drivers/gpu/drm/radeon/radeon_connectors.c | 27 ++- drivers/gpu/drm/radeon/radeon_display.c | 280 +++++++++++++---------- drivers/gpu/drm/radeon/radeon_i2c.c | 9 + drivers/gpu/drm/radeon/radeon_mode.h | 6 +- drivers/gpu/drm/radeon/radeon_object.c | 2 +- drivers/gpu/drm/radeon/radeon_object.h | 2 +- drivers/gpu/drm/radeon/radeon_vm.c | 95 +++++++- drivers/gpu/drm/radeon/rs600.c | 35 +-- drivers/gpu/drm/radeon/rv770.c | 10 +- drivers/gpu/drm/radeon/si.c | 18 +- drivers/gpu/drm/radeon/si_dma.c | 20 +- drivers/gpu/drm/radeon/sid.h | 1 + drivers/gpu/vga/vga_switcheroo.c | 3 +- include/drm/drm_edid.h | 5 + 40 files changed, 1135 insertions(+), 607 deletions(-) create mode 100644 drivers/gpu/drm/radeon/dce3_1_afmt.c
On 03.06.2014 07:55, Alex Deucher wrote:
This is the first pull request for radeon for 3.16. Christian has a few other patches that depend on some fixes from 3.15 so I'll wait to send those out until you sort out the 3.15 merge.
[...]
Christian König (10):
[...]
drm/radeon: rework page flip handling v3
This one shouldn't be merged without my review comment being addressed.
On Mon, Jun 2, 2014 at 11:21 PM, Michel Dänzer michel@daenzer.net wrote:
On 03.06.2014 07:55, Alex Deucher wrote:
This is the first pull request for radeon for 3.16. Christian has a few other patches that depend on some fixes from 3.15 so I'll wait to send those out until you sort out the 3.15 merge.
[...]
Christian König (10):
[...]
drm/radeon: rework page flip handling v3
This one shouldn't be merged without my review comment being addressed.
Sorry Michel, I completely forgot about your comments. Christian, have you had a chance to look at them? I can respin without this patch set if you need more time.
Alex
Am 03.06.2014 14:58, schrieb Alex Deucher:
On Mon, Jun 2, 2014 at 11:21 PM, Michel Dänzer michel@daenzer.net wrote:
On 03.06.2014 07:55, Alex Deucher wrote:
This is the first pull request for radeon for 3.16. Christian has a few other patches that depend on some fixes from 3.15 so I'll wait to send those out until you sort out the 3.15 merge.
[...]
Christian König (10):
[...]
drm/radeon: rework page flip handling v3
This one shouldn't be merged without my review comment being addressed.
Sorry Michel, I completely forgot about your comments. Christian, have you had a chance to look at them? I can respin without this patch set if you need more time.
Please drop it for now. I'm still busy with the CIK issue, so it might take a while till I get back to it.
On the other hand Michels comment can be fixed trivially, feel free to do so and send the result to Dave.
BTW: The other issue seems to be a pretty fundamental problem with the GART on CIK, this might be the cause of our HAWAII issues as well.
Christian.
Alex
On 3 June 2014 23:03, Christian König deathsimple@vodafone.de wrote:
Am 03.06.2014 14:58, schrieb Alex Deucher:
On Mon, Jun 2, 2014 at 11:21 PM, Michel Dänzer michel@daenzer.net wrote:
On 03.06.2014 07:55, Alex Deucher wrote:
This is the first pull request for radeon for 3.16. Christian has a few other patches that depend on some fixes from 3.15 so I'll wait to send those out until you sort out the 3.15 merge.
[...]
Christian König (10):
[...]
drm/radeon: rework page flip handling v3
This one shouldn't be merged without my review comment being addressed.
Sorry Michel, I completely forgot about your comments. Christian, have you had a chance to look at them? I can respin without this patch set if you need more time.
Please drop it for now. I'm still busy with the CIK issue, so it might take a while till I get back to it.
On the other hand Michels comment can be fixed trivially, feel free to do so and send the result to Dave.
I reverted the v3 and applied v4 into drm-next.
Dave.
On Tue, Jun 3, 2014 at 10:00 PM, Dave Airlie airlied@gmail.com wrote:
On 3 June 2014 23:03, Christian König deathsimple@vodafone.de wrote:
Am 03.06.2014 14:58, schrieb Alex Deucher:
On Mon, Jun 2, 2014 at 11:21 PM, Michel Dänzer michel@daenzer.net wrote:
On 03.06.2014 07:55, Alex Deucher wrote:
This is the first pull request for radeon for 3.16. Christian has a few other patches that depend on some fixes from 3.15 so I'll wait to send those out until you sort out the 3.15 merge.
[...]
Christian König (10):
[...]
drm/radeon: rework page flip handling v3
This one shouldn't be merged without my review comment being addressed.
Sorry Michel, I completely forgot about your comments. Christian, have you had a chance to look at them? I can respin without this patch set if you need more time.
Please drop it for now. I'm still busy with the CIK issue, so it might take a while till I get back to it.
On the other hand Michels comment can be fixed trivially, feel free to do so and send the result to Dave.
I reverted the v3 and applied v4 into drm-next.
Thanks Dave.
Alex
dri-devel@lists.freedesktop.org