<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/gpu/drm/radeon, branch v3.0</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/
</subtitle>
<id>https://git.shady.money/linux/atom?h=v3.0</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=v3.0'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2011-07-13T06:47:13Z</updated>
<entry>
<title>drm/radeon/kms/evergreen: emit SQ_LDS_RESOURCE_MGMT for blits</title>
<updated>2011-07-13T06:47:13Z</updated>
<author>
<name>Alex Deucher</name>
<email>alexdeucher@gmail.com</email>
</author>
<published>2011-07-12T15:53:23Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=c61d0af9131976db150c40996a71387ba59edb67'/>
<id>urn:sha1:c61d0af9131976db150c40996a71387ba59edb67</id>
<content type='text'>
Compute drivers may change this, so make sure to emit it to
avoid errors in bo blits.

Fixes:
https://bugs.freedesktop.org/show_bug.cgi?id=39119

Signed-off-by: Alex Deucher &lt;alexdeucher@gmail.com&gt;
Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;
</content>
</entry>
<entry>
<title>drm/radeon/kms: fix typo in read_disabled vbios code</title>
<updated>2011-07-12T05:58:59Z</updated>
<author>
<name>Alex Deucher</name>
<email>alexdeucher@gmail.com</email>
</author>
<published>2011-07-11T20:22:33Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=4171424e66e5525d7128a2c355215ca5c66f76d5'/>
<id>urn:sha1:4171424e66e5525d7128a2c355215ca5c66f76d5</id>
<content type='text'>
BUS_CNTL reg and bits moved between pre-PCIE and PCIE asics.

Signed-off-by: Alex Deucher &lt;alexdeucher@gmail.com&gt;
Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;
</content>
</entry>
<entry>
<title>drm/radeon/kms: use correct BUS_CNTL reg on rs600</title>
<updated>2011-07-12T05:58:07Z</updated>
<author>
<name>Alex Deucher</name>
<email>alexdeucher@gmail.com</email>
</author>
<published>2011-07-11T20:27:23Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=e22e6d20700328ed0a1801ad71cecf1b63a22555'/>
<id>urn:sha1:e22e6d20700328ed0a1801ad71cecf1b63a22555</id>
<content type='text'>
BUS_CNTL is at 0x30 on rs600, not 0x4c.

Signed-off-by: Alex Deucher &lt;alexdeucher@gmail.com&gt;
Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;
</content>
</entry>
<entry>
<title>drm/radeon/kms: fix backend map typo on juniper</title>
<updated>2011-07-12T05:57:49Z</updated>
<author>
<name>Alex Deucher</name>
<email>alexdeucher@gmail.com</email>
</author>
<published>2011-07-11T19:45:32Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=9a4a0b9c9fa6ad9902f49801d7b770462b69c4d3'/>
<id>urn:sha1:9a4a0b9c9fa6ad9902f49801d7b770462b69c4d3</id>
<content type='text'>
Don't enable backends that don't exist.

Signed-off-by: Alex Deucher &lt;alexdeucher@gmail.com&gt;
Cc: stable@kernel.org
Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;
</content>
</entry>
<entry>
<title>drm/radeon/kms: fix regression in hotplug</title>
<updated>2011-07-12T05:57:13Z</updated>
<author>
<name>Alex Deucher</name>
<email>alexdeucher@gmail.com</email>
</author>
<published>2011-07-11T14:49:28Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=cbac9543281f8e813f3ca9186c963a9b55136e93'/>
<id>urn:sha1:cbac9543281f8e813f3ca9186c963a9b55136e93</id>
<content type='text'>
Skip connectors that do not have an HPD pin.

Should fix:
https://bugs.freedesktop.org/show_bug.cgi?id=39027

Signed-off-by: Alex Deucher &lt;alexdeucher@gmail.com&gt;
Tested-by: Rafał Miłecki &lt;zajec5@gmail.com&gt;
Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;
</content>
</entry>
<entry>
<title>drm/radeon/kms: clean up multiple crtc handling for evergreen+ (v2)</title>
<updated>2011-07-08T17:28:52Z</updated>
<author>
<name>Alex Deucher</name>
<email>alexdeucher@gmail.com</email>
</author>
<published>2011-07-08T15:44:56Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=b7eff394670366a42935bfbaef67a6f7185627d7'/>
<id>urn:sha1:b7eff394670366a42935bfbaef67a6f7185627d7</id>
<content type='text'>
evergreen+ asics have 2-6 crtcs.  Don't access crtc registers
for crtc regs that don't exist as they have very high latency
and may cause problems on some asics.  The previous code missed
a few cases and was not fine grained enough (missed the 4 crtc
case for example).

Fixes:
https://bugs.freedesktop.org/show_bug.cgi?id=38800

v2: fix typo noticed by Chris Bandy &lt;cbandy@jbandy.com&gt;

Signed-off-by: Alex Deucher &lt;alexdeucher@gmail.com&gt;
Reviewed-by: Michel Dänzer &lt;michel@daenzer.net&gt;
Tested-by: Simon Farnsworth &lt;simon.farnsworth@onelan.co.uk&gt;
Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;
</content>
</entry>
<entry>
<title>drm/radeon/kms: free ib pool on module unloading</title>
<updated>2011-07-07T07:48:27Z</updated>
<author>
<name>Jerome Glisse</name>
<email>jglisse@redhat.com</email>
</author>
<published>2011-07-06T18:30:09Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=ccd6895d401efad0c0e41d0e93fba4ef3085e268'/>
<id>urn:sha1:ccd6895d401efad0c0e41d0e93fba4ef3085e268</id>
<content type='text'>
ib pool weren't free for various newer asic on module unload.
This doesn't cause much arm but still could be candidate for
stable.

Signed-off-by: Jerome Glisse &lt;jglisse@redhat.com&gt;
cc: stable@kernel.org
Reviewed-by: Alex Deucher &lt;alexdeucher@gmail.com&gt;
Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;
</content>
</entry>
<entry>
<title>drm/radeon/kms: fix typo in evergreen disp int status register</title>
<updated>2011-07-07T07:47:44Z</updated>
<author>
<name>Alex Deucher</name>
<email>alexdeucher@gmail.com</email>
</author>
<published>2011-07-06T19:37:47Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=37cba6c6f4687e694ac6e3adcf2c2b2974aa3aae'/>
<id>urn:sha1:37cba6c6f4687e694ac6e3adcf2c2b2974aa3aae</id>
<content type='text'>
Signed-off-by: Alex Deucher &lt;alexdeucher@gmail.com&gt;
Cc: stable@kernel.org
Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;
</content>
</entry>
<entry>
<title>drm/radeon/kms: fix typo in IH_CNTL swap bitfield</title>
<updated>2011-07-07T07:47:12Z</updated>
<author>
<name>Alex Deucher</name>
<email>alexdeucher@gmail.com</email>
</author>
<published>2011-07-06T19:52:27Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=fcb857abc4c0d512e99a08ba0415be9a6d65b4c0'/>
<id>urn:sha1:fcb857abc4c0d512e99a08ba0415be9a6d65b4c0</id>
<content type='text'>
Only affects BE systems.

Signed-off-by: Alex Deucher &lt;alexdeucher@gmail.com&gt;
Cc: stable@kernel.org
Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;
</content>
</entry>
<entry>
<title>drm/radeon/kms: fix typo in cayman reg offset</title>
<updated>2011-07-01T21:09:19Z</updated>
<author>
<name>Alex Deucher</name>
<email>alexdeucher@gmail.com</email>
</author>
<published>2011-07-01T16:58:54Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=2498c41e1b6aaa1929d13cae9ff1cb6226887078'/>
<id>urn:sha1:2498c41e1b6aaa1929d13cae9ff1cb6226887078</id>
<content type='text'>
Signed-off-by: Alex Deucher &lt;alexdeucher@gmail.com&gt;
Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;
</content>
</entry>
</feed>
