1. 08 Apr, 2023 17 commits
  2. 07 Apr, 2023 4 commits
  3. 06 Apr, 2023 15 commits
  4. 05 Apr, 2023 4 commits
    • Daniel Vetter's avatar
      Merge tag 'drm-misc-fixes-2023-04-05' of git://anongit.freedesktop.org/drm/drm-misc into drm-fixes · 3dfa8926
      Daniel Vetter authored
      Short summary of fixes pull:
      
       * ivpu: DMA fence and suspend fixes
       * nouveau: Color-depth fixes
       * panfrost: Fix mmap error handling
      Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
      From: Thomas Zimmermann <tzimmermann@suse.de>
      Link: https://patchwork.freedesktop.org/patch/msgid/20230405182855.GA1551@linux-uq9g
      3dfa8926
    • Hans de Goede's avatar
      ACPI: video: Add acpi_backlight=video quirk for Lenovo ThinkPad W530 · a5b2781d
      Hans de Goede authored
      The Lenovo ThinkPad W530 uses a nvidia k1000m GPU. When this gets used
      together with one of the older nvidia binary driver series (the latest
      series does not support it), then backlight control does not work.
      
      This is caused by commit 3dbc80a3 ("ACPI: video: Make backlight
      class device registration a separate step (v2)") combined with
      commit 5aa9d943 ("ACPI: video: Don't enable fallback path for
      creating ACPI backlight by default").
      
      After these changes the acpi_video# backlight device is only registered
      when requested by a GPU driver calling acpi_video_register_backlight()
      which the nvidia binary driver does not do.
      
      I realize that using the nvidia binary driver is not a supported use-case
      and users can workaround this by adding acpi_backlight=video on the kernel
      commandline, but the ThinkPad W530 is a popular model under Linux users,
      so it seems worthwhile to add a quirk for this.
      
      I will also email Nvidia asking them to make the driver call
      acpi_video_register_backlight() when an internal LCD panel is detected.
      So maybe the next maintenance release of the drivers will fix this...
      
      Fixes: 5aa9d943 ("ACPI: video: Don't enable fallback path for creating ACPI backlight by default")
      Cc: All applicable <stable@vger.kernel.org>
      Reviewed-by: default avatarMario Limonciello <mario.limonciello@amd.com>
      Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      a5b2781d
    • Hans de Goede's avatar
      ACPI: video: Add acpi_backlight=video quirk for Apple iMac14,1 and iMac14,2 · 26991079
      Hans de Goede authored
      On the Apple iMac14,1 and iMac14,2 all-in-ones (monitors with builtin "PC")
      the connection between the GPU and the panel is seen by the GPU driver as
      regular DP instead of eDP, causing the GPU driver to never call
      acpi_video_register_backlight().
      
      (GPU drivers only call acpi_video_register_backlight() when an internal
       panel is detected, to avoid non working acpi_video# devices getting
       registered on desktops which unfortunately is a real issue.)
      
      Fix the missing acpi_video# backlight device on these all-in-ones by
      adding a acpi_backlight=video DMI quirk, so that video.ko will
      immediately register the backlight device instead of waiting for
      an acpi_video_register_backlight() call.
      
      Fixes: 5aa9d943 ("ACPI: video: Don't enable fallback path for creating ACPI backlight by default")
      Cc: All applicable <stable@vger.kernel.org>
      Reviewed-by: default avatarMario Limonciello <mario.limonciello@amd.com>
      Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      26991079
    • Hans de Goede's avatar
      ACPI: video: Make acpi_backlight=video work independent from GPU driver · e506731c
      Hans de Goede authored
      Commit 3dbc80a3 ("ACPI: video: Make backlight class device
      registration a separate step (v2)") combined with
      commit 5aa9d943 ("ACPI: video: Don't enable fallback path for
      creating ACPI backlight by default")
      
      Means that the video.ko code now fully depends on the GPU driver calling
      acpi_video_register_backlight() for the acpi_video# backlight class
      devices to get registered.
      
      This means that if the GPU driver does not do this, acpi_backlight=video
      on the cmdline, or DMI quirks for selecting acpi_video# will not work.
      
      This is a problem on for example Apple iMac14,1 all-in-ones where
      the monitor's LCD panel shows up as a regular DP connection instead of
      eDP so the GPU driver will not call acpi_video_register_backlight() [1].
      
      Fix this by making video.ko directly register the acpi_video# devices
      when these have been explicitly requested either on the cmdline or
      through DMI quirks (rather then auto-detection being used).
      
      [1] GPU drivers only call acpi_video_register_backlight() when an internal
      panel is detected, to avoid non working acpi_video# devices getting
      registered on desktops which unfortunately is a real issue.
      
      Fixes: 5aa9d943 ("ACPI: video: Don't enable fallback path for creating ACPI backlight by default")
      Cc: All applicable <stable@vger.kernel.org>
      Reviewed-by: default avatarMario Limonciello <mario.limonciello@amd.com>
      Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      e506731c