* [GIT PULL] etnaviv-next for 6.11
@ 2024-06-28 10:39 Lucas Stach
2024-07-05 9:35 ` Daniel Vetter
0 siblings, 1 reply; 2+ messages in thread
From: Lucas Stach @ 2024-06-28 10:39 UTC (permalink / raw)
To: Dave Airlie, Daniel Vetter; +Cc: kernel, etnaviv, dri-devel
Hi Dave, hi Sima,
please pull the following changes for the next merge window. Mostly
fixes, but as they concern new hardware support there's no need to rush
them into the current -rc.
Regards,
Lucas
The following changes since commit e67572cd2204894179d89bd7b984072f19313b03:
Linux 6.9-rc6 (2024-04-28 13:47:24 -0700)
are available in the Git repository at:
https://git.pengutronix.de/git/lst/linux tags/drm-etnaviv-next-2024-06-28
for you to fetch changes up to 704d3d60fec451f37706368d9d3e320322978986:
drm/etnaviv: don't block scheduler when GPU is still active (2024-06-26 15:33:25 +0200)
----------------------------------------------------------------
- fix i.MX8MP NPU clock gating
- workaround FE register cdc issues on some cores
- fix DMA sync handling for cached buffers
- fix job timeout handling
- keep TS enabled on MMUv2 cores for improved performance
----------------------------------------------------------------
Derek Foreman (1):
drm/etnaviv: Read some FE registers twice
Krzysztof Kozlowski (1):
drm/etnaviv: drop driver owner assignment
Lucas Stach (5):
drm/etnaviv: don't disable TS on MMUv2 core when moving the linear window
drm/etnaviv: switch devcoredump allocations to GFP_NOWAIT
drm/etnaviv: fix DMA direction handling for cached RW buffers
drm/etnaviv: reduce number of ktime_get calls in IRQ handler
drm/etnaviv: don't block scheduler when GPU is still active
Philipp Zabel (3):
drm/etnaviv: Update hardware headers from rnndb
drm/etnaviv: Turn etnaviv_is_model_rev() into a function
drm/etnaviv: Disable SH_EU clock gating on VIPNano-Si+
drivers/gpu/drm/etnaviv/cmdstream.xml.h | 52 +++++++++++++++++++++++--
drivers/gpu/drm/etnaviv/common.xml.h | 12 +++---
drivers/gpu/drm/etnaviv/etnaviv_dump.c | 5 +--
drivers/gpu/drm/etnaviv/etnaviv_gem.c | 6 ++-
drivers/gpu/drm/etnaviv/etnaviv_gpu.c | 83 ++++++++++++++++++++++------------------
drivers/gpu/drm/etnaviv/etnaviv_gpu.h | 8 ++++
drivers/gpu/drm/etnaviv/etnaviv_sched.c | 9 ++---
drivers/gpu/drm/etnaviv/state.xml.h | 103 ++++++++++++++++++++++++++++++++++++++++++--------
drivers/gpu/drm/etnaviv/state_blt.xml.h | 22 +++++------
drivers/gpu/drm/etnaviv/state_hi.xml.h | 30 +++++++++------
10 files changed, 238 insertions(+), 92 deletions(-)
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [GIT PULL] etnaviv-next for 6.11
2024-06-28 10:39 [GIT PULL] etnaviv-next for 6.11 Lucas Stach
@ 2024-07-05 9:35 ` Daniel Vetter
0 siblings, 0 replies; 2+ messages in thread
From: Daniel Vetter @ 2024-07-05 9:35 UTC (permalink / raw)
To: Lucas Stach; +Cc: Dave Airlie, Daniel Vetter, kernel, etnaviv, dri-devel
On Fri, Jun 28, 2024 at 12:39:33PM +0200, Lucas Stach wrote:
> Hi Dave, hi Sima,
>
> please pull the following changes for the next merge window. Mostly
> fixes, but as they concern new hardware support there's no need to rush
> them into the current -rc.
>
> Regards,
> Lucas
>
> The following changes since commit e67572cd2204894179d89bd7b984072f19313b03:
>
> Linux 6.9-rc6 (2024-04-28 13:47:24 -0700)
>
> are available in the Git repository at:
>
> https://git.pengutronix.de/git/lst/linux tags/drm-etnaviv-next-2024-06-28
>
> for you to fetch changes up to 704d3d60fec451f37706368d9d3e320322978986:
>
> drm/etnaviv: don't block scheduler when GPU is still active (2024-06-26 15:33:25 +0200)
Pulled, thanks.
-Sima
>
> ----------------------------------------------------------------
> - fix i.MX8MP NPU clock gating
> - workaround FE register cdc issues on some cores
> - fix DMA sync handling for cached buffers
> - fix job timeout handling
> - keep TS enabled on MMUv2 cores for improved performance
>
> ----------------------------------------------------------------
> Derek Foreman (1):
> drm/etnaviv: Read some FE registers twice
>
> Krzysztof Kozlowski (1):
> drm/etnaviv: drop driver owner assignment
>
> Lucas Stach (5):
> drm/etnaviv: don't disable TS on MMUv2 core when moving the linear window
> drm/etnaviv: switch devcoredump allocations to GFP_NOWAIT
> drm/etnaviv: fix DMA direction handling for cached RW buffers
> drm/etnaviv: reduce number of ktime_get calls in IRQ handler
> drm/etnaviv: don't block scheduler when GPU is still active
>
> Philipp Zabel (3):
> drm/etnaviv: Update hardware headers from rnndb
> drm/etnaviv: Turn etnaviv_is_model_rev() into a function
> drm/etnaviv: Disable SH_EU clock gating on VIPNano-Si+
>
> drivers/gpu/drm/etnaviv/cmdstream.xml.h | 52 +++++++++++++++++++++++--
> drivers/gpu/drm/etnaviv/common.xml.h | 12 +++---
> drivers/gpu/drm/etnaviv/etnaviv_dump.c | 5 +--
> drivers/gpu/drm/etnaviv/etnaviv_gem.c | 6 ++-
> drivers/gpu/drm/etnaviv/etnaviv_gpu.c | 83 ++++++++++++++++++++++------------------
> drivers/gpu/drm/etnaviv/etnaviv_gpu.h | 8 ++++
> drivers/gpu/drm/etnaviv/etnaviv_sched.c | 9 ++---
> drivers/gpu/drm/etnaviv/state.xml.h | 103 ++++++++++++++++++++++++++++++++++++++++++--------
> drivers/gpu/drm/etnaviv/state_blt.xml.h | 22 +++++------
> drivers/gpu/drm/etnaviv/state_hi.xml.h | 30 +++++++++------
> 10 files changed, 238 insertions(+), 92 deletions(-)
>
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-07-05 9:36 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-28 10:39 [GIT PULL] etnaviv-next for 6.11 Lucas Stach
2024-07-05 9:35 ` Daniel Vetter
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.