]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
delete drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch from 3.0 and 3.1
authorGreg Kroah-Hartman <gregkh@suse.de>
Fri, 18 Nov 2011 22:25:38 +0000 (14:25 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 18 Nov 2011 22:25:38 +0000 (14:25 -0800)
queue-3.0/drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch [deleted file]
queue-3.0/series
queue-3.1/drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch [deleted file]
queue-3.1/series

diff --git a/queue-3.0/drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch b/queue-3.0/drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch
deleted file mode 100644 (file)
index fd0cd2b..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-From 6c47e5c23aa2a7c54ad7ac13af4bd56cd9e703bf Mon Sep 17 00:00:00 2001
-From: Alex Deucher <alexander.deucher@amd.com>
-Date: Mon, 14 Nov 2011 14:32:01 -0500
-Subject: drm/radeon/kms: fix up gpio i2c mask bits for r4xx
-
-From: Alex Deucher <alexander.deucher@amd.com>
-
-commit 6c47e5c23aa2a7c54ad7ac13af4bd56cd9e703bf upstream.
-
-Fixes i2c test failures when i2c_algo_bit.bit_test=1.
-
-The hw doesn't actually require a mask, so just set it
-to the default mask bits for r1xx-r4xx radeon ddc.
-
-Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-Cc: Jean Delvare <khali@linux-fr.org>
-Signed-off-by: Dave Airlie <airlied@redhat.com>
-Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-
----
- drivers/gpu/drm/radeon/radeon_atombios.c |   12 ++++++++++++
- 1 file changed, 12 insertions(+)
-
---- a/drivers/gpu/drm/radeon/radeon_atombios.c
-+++ b/drivers/gpu/drm/radeon/radeon_atombios.c
-@@ -85,6 +85,18 @@ static inline struct radeon_i2c_bus_rec
-               for (i = 0; i < num_indices; i++) {
-                       gpio = &i2c_info->asGPIO_Info[i];
-+                      /* r4xx mask is technically not used by the hw, so patch in the legacy mask bits */
-+                      if ((rdev->family == CHIP_R420) ||
-+                          (rdev->family == CHIP_R423) ||
-+                          (rdev->family == CHIP_RV410)) {
-+                              if ((le16_to_cpu(gpio->usClkMaskRegisterIndex) == 0x0018) ||
-+                                  (le16_to_cpu(gpio->usClkMaskRegisterIndex) == 0x0019) ||
-+                                  (le16_to_cpu(gpio->usClkMaskRegisterIndex) == 0x001a)) {
-+                                      gpio->ucClkMaskShift = 0x19;
-+                                      gpio->ucDataMaskShift = 0x18;
-+                              }
-+                      }
-+
-                       /* some evergreen boards have bad data for this entry */
-                       if (ASIC_IS_DCE4(rdev)) {
-                               if ((i == 7) &&
index ebbbfa0b5cdf3135e9ecb525ec0a6bed310c05cd..fa3983eb01b3bbe9ba5059a31d9b2e025512b57d 100644 (file)
@@ -11,7 +11,6 @@ keys-fix-a-null-pointer-deref-in-the-user-defined-key-type.patch
 hfs-add-sanity-check-for-file-name-length.patch
 revert-leds-save-the-delay-values-after-a-successful-call-to-blink_set.patch
 drm-radeon-add-some-missing-firemv-pci-ids.patch
-drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch
 drm-i915-enable-ring-freq-scaling-rc6-and-graphics-turbo-on-ivy-bridge-v3.patch
 sfi-table-irq-0xff-means-no-interrupt.patch
 x86-mrst-use-a-temporary-variable-for-sfi-irq.patch
diff --git a/queue-3.1/drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch b/queue-3.1/drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch
deleted file mode 100644 (file)
index fd0cd2b..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-From 6c47e5c23aa2a7c54ad7ac13af4bd56cd9e703bf Mon Sep 17 00:00:00 2001
-From: Alex Deucher <alexander.deucher@amd.com>
-Date: Mon, 14 Nov 2011 14:32:01 -0500
-Subject: drm/radeon/kms: fix up gpio i2c mask bits for r4xx
-
-From: Alex Deucher <alexander.deucher@amd.com>
-
-commit 6c47e5c23aa2a7c54ad7ac13af4bd56cd9e703bf upstream.
-
-Fixes i2c test failures when i2c_algo_bit.bit_test=1.
-
-The hw doesn't actually require a mask, so just set it
-to the default mask bits for r1xx-r4xx radeon ddc.
-
-Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-Cc: Jean Delvare <khali@linux-fr.org>
-Signed-off-by: Dave Airlie <airlied@redhat.com>
-Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-
----
- drivers/gpu/drm/radeon/radeon_atombios.c |   12 ++++++++++++
- 1 file changed, 12 insertions(+)
-
---- a/drivers/gpu/drm/radeon/radeon_atombios.c
-+++ b/drivers/gpu/drm/radeon/radeon_atombios.c
-@@ -85,6 +85,18 @@ static inline struct radeon_i2c_bus_rec
-               for (i = 0; i < num_indices; i++) {
-                       gpio = &i2c_info->asGPIO_Info[i];
-+                      /* r4xx mask is technically not used by the hw, so patch in the legacy mask bits */
-+                      if ((rdev->family == CHIP_R420) ||
-+                          (rdev->family == CHIP_R423) ||
-+                          (rdev->family == CHIP_RV410)) {
-+                              if ((le16_to_cpu(gpio->usClkMaskRegisterIndex) == 0x0018) ||
-+                                  (le16_to_cpu(gpio->usClkMaskRegisterIndex) == 0x0019) ||
-+                                  (le16_to_cpu(gpio->usClkMaskRegisterIndex) == 0x001a)) {
-+                                      gpio->ucClkMaskShift = 0x19;
-+                                      gpio->ucDataMaskShift = 0x18;
-+                              }
-+                      }
-+
-                       /* some evergreen boards have bad data for this entry */
-                       if (ASIC_IS_DCE4(rdev)) {
-                               if ((i == 7) &&
index e826a02628e75e9abdb2d67925a484ef84be52e1..6b19103f9e9a304ae450bceb627abf0668918ce0 100644 (file)
@@ -13,7 +13,6 @@ keys-fix-a-null-pointer-deref-in-the-user-defined-key-type.patch
 hfs-add-sanity-check-for-file-name-length.patch
 revert-leds-save-the-delay-values-after-a-successful-call-to-blink_set.patch
 drm-radeon-add-some-missing-firemv-pci-ids.patch
-drm-radeon-kms-fix-up-gpio-i2c-mask-bits-for-r4xx.patch
 staging-brcm80211-fill-in-proper-rx-rate-in-mac80211-rx-status.patch
 b43-refuse-to-load-unsupported-firmware.patch
 mfd-fix-twl4030-dependencies-for-audio-codec.patch