linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [git pull] drm fixes for 5.18-rc1
@ 2022-03-25  2:13 Dave Airlie
  2022-03-25 14:24 ` Thomas Zimmermann
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Dave Airlie @ 2022-03-25  2:13 UTC (permalink / raw)
  To: Linus Torvalds, Thomas Zimmermann, Daniel Vetter; +Cc: dri-devel, LKML

Hi Linus,

Some fixes were queued up in and in light of the fbdev regressions,
I've pulled those in as well,
I think the mediatek one is going to be a bit more painful, since now
you have a merge and I need to have the mediatek stuff get rebased and
retested onto that merge point, but I'll make sure they get to you
ASAP.

Thomas, cc'ed, I pulled your fbdev fixes from patchwork, since they
were a clear regression fix, don't bother queueing them up in our
trees now.

Dave.

drm-next-2022-03-25:
drm fixes for 5.18-rc1

core:
- Make audio and color plane support checking only happen
  when a CEA extension block is found.
- Small selftest fix.

fbdev:
- two regressions fixes from speedup patches.

ttm:
- Fix a small regression from ttm_resource_fini()

i915:
- Reject unsupported TMDS rates on ICL+
- Treat SAGV block time 0 as SAGV disabled
- Fix PSF GV point mask when SAGV is not possible
- Fix renamed INTEL_INFO->media.arch/ver field
The following changes since commit c6e90a1c660874736bd09c1fec6312b4b4c2ff7b:

  Merge tag 'amd-drm-next-5.18-2022-03-18' of
https://gitlab.freedesktop.org/agd5f/linux into drm-next (2022-03-21
13:48:20 +1000)

are available in the Git repository at:

  git://anongit.freedesktop.org/drm/drm tags/drm-next-2022-03-25

for you to fetch changes up to 2a81dba4b577099717cea86d429f053e85e74d96:

  fbdev: Fix cfb_imageblit() for arbitrary image widths (2022-03-25
09:55:54 +1000)

----------------------------------------------------------------
drm fixes for 5.18-rc1

core:
- Make audio and color plane support checking only happen
  when a CEA extension block is found.
- Small selftest fix.

fbdev:
- two regressions fixes from speedup patches.

ttm:
- Fix a small regression from ttm_resource_fini()

i915:
- Reject unsupported TMDS rates on ICL+
- Treat SAGV block time 0 as SAGV disabled
- Fix PSF GV point mask when SAGV is not possible
- Fix renamed INTEL_INFO->media.arch/ver field

----------------------------------------------------------------
Cooper Chiou (1):
      drm/edid: check basic audio support on CEA extension block

Dave Airlie (2):
      Merge tag 'drm-intel-next-fixes-2022-03-24' of
git://anongit.freedesktop.org/drm/drm-intel into drm-next
      Merge tag 'drm-misc-next-fixes-2022-03-24-1' of
git://anongit.freedesktop.org/drm/drm-misc into drm-next

Jani Nikula (1):
      drm/edid: fix CEA extension byte #3 parsing

Lucas De Marchi (1):
      drm/i915: Fix renamed struct field

Nathan Chancellor (1):
      drm/selftest: plane_helper: Put test structures in static storage

Thomas Zimmermann (2):
      fbdev: Fix sys_imageblit() for arbitrary image widths
      fbdev: Fix cfb_imageblit() for arbitrary image widths

Ville Syrjälä (3):
      drm/i915: Reject unsupported TMDS rates on ICL+
      drm/i915: Treat SAGV block time 0 as SAGV disabled
      drm/i915: Fix PSF GV point mask when SAGV is not possible

Zack Rusin (1):
      drm/ttm: Fix a kernel oops due to an invalid read

 drivers/gpu/drm/drm_edid.c                        | 15 ++++++++----
 drivers/gpu/drm/i915/display/intel_bw.c           |  3 ++-
 drivers/gpu/drm/i915/display/intel_hdmi.c         |  9 +++++++
 drivers/gpu/drm/i915/i915_drv.h                   |  2 +-
 drivers/gpu/drm/i915/intel_pm.c                   | 10 ++++----
 drivers/gpu/drm/selftests/test-drm_plane_helper.c |  8 +++----
 drivers/gpu/drm/ttm/ttm_range_manager.c           |  2 +-
 drivers/video/fbdev/core/cfbimgblt.c              | 28 ++++++++++++++++++----
 drivers/video/fbdev/core/sysimgblt.c              | 29 +++++++++++++++++++----
 9 files changed, 82 insertions(+), 24 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [git pull] drm fixes for 5.18-rc1
  2022-03-25  2:13 [git pull] drm fixes for 5.18-rc1 Dave Airlie
@ 2022-03-25 14:24 ` Thomas Zimmermann
  2022-03-25 22:00 ` pr-tracker-bot
  2022-03-25 22:04 ` Linus Torvalds
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Zimmermann @ 2022-03-25 14:24 UTC (permalink / raw)
  To: Dave Airlie, Linus Torvalds, Daniel Vetter; +Cc: dri-devel, LKML


[-- Attachment #1.1: Type: text/plain, Size: 4349 bytes --]

Hi

Am 25.03.22 um 03:13 schrieb Dave Airlie:
> Hi Linus,
> 
> Some fixes were queued up in and in light of the fbdev regressions,
> I've pulled those in as well,
> I think the mediatek one is going to be a bit more painful, since now
> you have a merge and I need to have the mediatek stuff get rebased and
> retested onto that merge point, but I'll make sure they get to you
> ASAP.
> 
> Thomas, cc'ed, I pulled your fbdev fixes from patchwork, since they
> were a clear regression fix, don't bother queueing them up in our
> trees now.

I added them to drm-misc-next a while ago, but I guess they missed our 
-rc6 deadline. Thanks for taking care.

Best regards
Thomas

> 
> Dave.
> 
> drm-next-2022-03-25:
> drm fixes for 5.18-rc1
> 
> core:
> - Make audio and color plane support checking only happen
>    when a CEA extension block is found.
> - Small selftest fix.
> 
> fbdev:
> - two regressions fixes from speedup patches.
> 
> ttm:
> - Fix a small regression from ttm_resource_fini()
> 
> i915:
> - Reject unsupported TMDS rates on ICL+
> - Treat SAGV block time 0 as SAGV disabled
> - Fix PSF GV point mask when SAGV is not possible
> - Fix renamed INTEL_INFO->media.arch/ver field
> The following changes since commit c6e90a1c660874736bd09c1fec6312b4b4c2ff7b:
> 
>    Merge tag 'amd-drm-next-5.18-2022-03-18' of
> https://gitlab.freedesktop.org/agd5f/linux into drm-next (2022-03-21
> 13:48:20 +1000)
> 
> are available in the Git repository at:
> 
>    git://anongit.freedesktop.org/drm/drm tags/drm-next-2022-03-25
> 
> for you to fetch changes up to 2a81dba4b577099717cea86d429f053e85e74d96:
> 
>    fbdev: Fix cfb_imageblit() for arbitrary image widths (2022-03-25
> 09:55:54 +1000)
> 
> ----------------------------------------------------------------
> drm fixes for 5.18-rc1
> 
> core:
> - Make audio and color plane support checking only happen
>    when a CEA extension block is found.
> - Small selftest fix.
> 
> fbdev:
> - two regressions fixes from speedup patches.
> 
> ttm:
> - Fix a small regression from ttm_resource_fini()
> 
> i915:
> - Reject unsupported TMDS rates on ICL+
> - Treat SAGV block time 0 as SAGV disabled
> - Fix PSF GV point mask when SAGV is not possible
> - Fix renamed INTEL_INFO->media.arch/ver field
> 
> ----------------------------------------------------------------
> Cooper Chiou (1):
>        drm/edid: check basic audio support on CEA extension block
> 
> Dave Airlie (2):
>        Merge tag 'drm-intel-next-fixes-2022-03-24' of
> git://anongit.freedesktop.org/drm/drm-intel into drm-next
>        Merge tag 'drm-misc-next-fixes-2022-03-24-1' of
> git://anongit.freedesktop.org/drm/drm-misc into drm-next
> 
> Jani Nikula (1):
>        drm/edid: fix CEA extension byte #3 parsing
> 
> Lucas De Marchi (1):
>        drm/i915: Fix renamed struct field
> 
> Nathan Chancellor (1):
>        drm/selftest: plane_helper: Put test structures in static storage
> 
> Thomas Zimmermann (2):
>        fbdev: Fix sys_imageblit() for arbitrary image widths
>        fbdev: Fix cfb_imageblit() for arbitrary image widths
> 
> Ville Syrjälä (3):
>        drm/i915: Reject unsupported TMDS rates on ICL+
>        drm/i915: Treat SAGV block time 0 as SAGV disabled
>        drm/i915: Fix PSF GV point mask when SAGV is not possible
> 
> Zack Rusin (1):
>        drm/ttm: Fix a kernel oops due to an invalid read
> 
>   drivers/gpu/drm/drm_edid.c                        | 15 ++++++++----
>   drivers/gpu/drm/i915/display/intel_bw.c           |  3 ++-
>   drivers/gpu/drm/i915/display/intel_hdmi.c         |  9 +++++++
>   drivers/gpu/drm/i915/i915_drv.h                   |  2 +-
>   drivers/gpu/drm/i915/intel_pm.c                   | 10 ++++----
>   drivers/gpu/drm/selftests/test-drm_plane_helper.c |  8 +++----
>   drivers/gpu/drm/ttm/ttm_range_manager.c           |  2 +-
>   drivers/video/fbdev/core/cfbimgblt.c              | 28 ++++++++++++++++++----
>   drivers/video/fbdev/core/sysimgblt.c              | 29 +++++++++++++++++++----
>   9 files changed, 82 insertions(+), 24 deletions(-)

-- 
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Ivo Totev

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [git pull] drm fixes for 5.18-rc1
  2022-03-25  2:13 [git pull] drm fixes for 5.18-rc1 Dave Airlie
  2022-03-25 14:24 ` Thomas Zimmermann
@ 2022-03-25 22:00 ` pr-tracker-bot
  2022-03-25 22:04 ` Linus Torvalds
  2 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2022-03-25 22:00 UTC (permalink / raw)
  To: Dave Airlie
  Cc: Linus Torvalds, Thomas Zimmermann, Daniel Vetter, LKML, dri-devel

The pull request you sent on Fri, 25 Mar 2022 12:13:20 +1000:

> git://anongit.freedesktop.org/drm/drm tags/drm-next-2022-03-25

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/cb7cbaae7fd9cee64f19cdfd89d097d807b884f5

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [git pull] drm fixes for 5.18-rc1
  2022-03-25  2:13 [git pull] drm fixes for 5.18-rc1 Dave Airlie
  2022-03-25 14:24 ` Thomas Zimmermann
  2022-03-25 22:00 ` pr-tracker-bot
@ 2022-03-25 22:04 ` Linus Torvalds
  2 siblings, 0 replies; 4+ messages in thread
From: Linus Torvalds @ 2022-03-25 22:04 UTC (permalink / raw)
  To: Dave Airlie; +Cc: Thomas Zimmermann, Daniel Vetter, dri-devel, LKML

On Thu, Mar 24, 2022 at 7:13 PM Dave Airlie <airlied@gmail.com> wrote:
>
> Some fixes were queued up in and in light of the fbdev regressions,
> I've pulled those in as well,

Thanks, pulled.

It sounds (from the other thread) that the mediatek DT issue is also
about to be fixed, even if it's not yet here.

But that hopefully (probably?) affects fewer people and testing robots.

             Linus

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-03-25 22:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-25  2:13 [git pull] drm fixes for 5.18-rc1 Dave Airlie
2022-03-25 14:24 ` Thomas Zimmermann
2022-03-25 22:00 ` pr-tracker-bot
2022-03-25 22:04 ` Linus Torvalds

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).