Patch "drm/i915: Allow switching away via vga-switcheroo if uninitialized" has been added to the 5.15-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    drm/i915: Allow switching away via vga-switcheroo if uninitialized

to the 5.15-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-i915-allow-switching-away-via-vga-switcheroo-if-.patch
and it can be found in the queue-5.15 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 5b47b40faf5801184265e0469a7159035b95b5db
Author: Thomas Zimmermann <tzimmermann@xxxxxxx>
Date:   Mon Jan 16 12:54:23 2023 +0100

    drm/i915: Allow switching away via vga-switcheroo if uninitialized
    
    [ Upstream commit a273e95721e96885971a05f1b34cb6d093904d9d ]
    
    Always allow switching away via vga-switcheroo if the display is
    uninitalized. Instead prevent switching to i915 if the device has
    not been initialized.
    
    This issue was introduced by commit 5df7bd130818 ("drm/i915: skip
    display initialization when there is no display") protected, which
    protects code paths from being executed on uninitialized devices.
    In the case of vga-switcheroo, we want to allow a switch away from
    i915's device. So run vga_switcheroo_process_delayed_switch() and
    test in the switcheroo callbacks if the i915 device is available.
    
    Fixes: 5df7bd130818 ("drm/i915: skip display initialization when there is no display")
    Signed-off-by: Thomas Zimmermann <tzimmermann@xxxxxxx>
    Reviewed-by: Alex Deucher <alexander.deucher@xxxxxxx>
    Cc: Radhakrishna Sripada <radhakrishna.sripada@xxxxxxxxx>
    Cc: Lucas De Marchi <lucas.demarchi@xxxxxxxxx>
    Cc: José Roberto de Souza <jose.souza@xxxxxxxxx>
    Cc: Jani Nikula <jani.nikula@xxxxxxxxx>
    Cc: Ville Syrjälä <ville.syrjala@xxxxxxxxxxxxxxx>
    Cc: Jani Nikula <jani.nikula@xxxxxxxxxxxxxxx>
    Cc: Joonas Lahtinen <joonas.lahtinen@xxxxxxxxxxxxxxx>
    Cc: Rodrigo Vivi <rodrigo.vivi@xxxxxxxxx>
    Cc: Tvrtko Ursulin <tvrtko.ursulin@xxxxxxxxxxxxxxx>
    Cc: "Ville Syrjälä" <ville.syrjala@xxxxxxxxxxxxxxx>
    Cc: Manasi Navare <manasi.d.navare@xxxxxxxxx>
    Cc: Stanislav Lisovskiy <stanislav.lisovskiy@xxxxxxxxx>
    Cc: Imre Deak <imre.deak@xxxxxxxxx>
    Cc: "Jouni Högander" <jouni.hogander@xxxxxxxxx>
    Cc: Uma Shankar <uma.shankar@xxxxxxxxx>
    Cc: Ankit Nautiyal <ankit.k.nautiyal@xxxxxxxxx>
    Cc: "Jason A. Donenfeld" <Jason@xxxxxxxxx>
    Cc: Matt Roper <matthew.d.roper@xxxxxxxxx>
    Cc: Ramalingam C <ramalingam.c@xxxxxxxxx>
    Cc: Thomas Zimmermann <tzimmermann@xxxxxxx>
    Cc: Andi Shyti <andi.shyti@xxxxxxxxxxxxxxx>
    Cc: Andrzej Hajda <andrzej.hajda@xxxxxxxxx>
    Cc: "José Roberto de Souza" <jose.souza@xxxxxxxxx>
    Cc: Julia Lawall <Julia.Lawall@xxxxxxxx>
    Cc: intel-gfx@xxxxxxxxxxxxxxxxxxxxx
    Cc: <stable@xxxxxxxxxxxxxxx> # v5.14+
    Link: https://patchwork.freedesktop.org/patch/msgid/20230116115425.13484-2-tzimmermann@xxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
index 59fb4c710c8c..20b9e58de155 100644
--- a/drivers/gpu/drm/i915/i915_drv.c
+++ b/drivers/gpu/drm/i915/i915_drv.c
@@ -990,8 +990,7 @@ static void i915_driver_lastclose(struct drm_device *dev)
 
 	intel_fbdev_restore_mode(dev);
 
-	if (HAS_DISPLAY(i915))
-		vga_switcheroo_process_delayed_switch();
+	vga_switcheroo_process_delayed_switch();
 }
 
 static void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
diff --git a/drivers/gpu/drm/i915/i915_switcheroo.c b/drivers/gpu/drm/i915/i915_switcheroo.c
index de0e224b56ce..f1ce9f591efa 100644
--- a/drivers/gpu/drm/i915/i915_switcheroo.c
+++ b/drivers/gpu/drm/i915/i915_switcheroo.c
@@ -18,6 +18,10 @@ static void i915_switcheroo_set_state(struct pci_dev *pdev,
 		dev_err(&pdev->dev, "DRM not initialized, aborting switch.\n");
 		return;
 	}
+	if (!HAS_DISPLAY(i915)) {
+		dev_err(&pdev->dev, "Device state not initialized, aborting switch.\n");
+		return;
+	}
 
 	if (state == VGA_SWITCHEROO_ON) {
 		drm_info(&i915->drm, "switched on\n");
@@ -43,7 +47,7 @@ static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
 	 * locking inversion with the driver load path. And the access here is
 	 * completely racy anyway. So don't bother with locking for now.
 	 */
-	return i915 && atomic_read(&i915->drm.open_count) == 0;
+	return i915 && HAS_DISPLAY(i915) && atomic_read(&i915->drm.open_count) == 0;
 }
 
 static const struct vga_switcheroo_client_ops i915_switcheroo_ops = {



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux