All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-xe] [PATCH 00/20] Catching up - round 2
@ 2023-01-20 20:44 Rodrigo Vivi
  2023-01-20 20:44 ` [Intel-xe] [PATCH 01/20] drm/xe/migrate: Update emit_pte to cope with a size level than 4k Rodrigo Vivi
                   ` (19 more replies)
  0 siblings, 20 replies; 27+ messages in thread
From: Rodrigo Vivi @ 2023-01-20 20:44 UTC (permalink / raw)
  To: intel-xe, maarten.lankhorst, philippe.lecluse, mchehab; +Cc: Rodrigo Vivi

Continuation of last week's:
https://lists.freedesktop.org/archives/intel-xe/2023-January/000024.html

More patches that we need to get proper reviews recorded or fixed
subject before we can merge in cgit/drm-xe-next and continue the
development in open.

I will also start to reply the patches individually asking
questions and help.

Thanks,
Rodrigo.

Balasubramani Vivekanandan (1):
  drm/xe/gt: Enable interrupt while initializing root gt

Lucas De Marchi (7):
  drm/xe/ggtt: Use BIT_ULL() for 64bit
  drm/xe: Fix some log messages on 32b
  drm/xe/mmio: Use non-atomic writeq/readq variant for 32b
  drm/xe: Fix tracepoints on 32b
  drm/xe/gt: Fix min() with u32 and u64
  drm/xe: Add documentation for mem_type
  ]65;7002;1cdrm/xe: Add min config for kunit integration ARCH=um

Maarten Lankhorst (1):
  drm/xe/ext: Dont call intel_display_power_is_enabled from irq
    install/remove

Matthew Auld (2):
  drm/xe/fbc: set compressed_fb to NULL on error
  drm/xe/pcode: fix pcode error check

Matthew Brost (1):
  drm/xe/migrate: Update emit_pte to cope with a size level than 4k

Mauro Carvalho Chehab (5):
  drm/xe/Kconfig.debug: select DEBUG_FS for KUnit runs
  drm/xe: KUnit tests depend on CONFIG_DRM_FBDEV_EMULATION
  drm/xe: fix XE_DISPLAY dependency on ACPI
  drm/xe: allow building XE_DISPLAY without ACPI
  drm/xe: fix DRM_FBDEV_EMULATION dependencies

Philippe Lecluse (2):
  drm/xe: fix xe_mmio_total_vram_size
  drm/xe: Fix Meteor Lake rsa issue on guc loading

Rodrigo Vivi (1):
  drm/xe/guc_pc: Fix Meteor Lake registers.

 drivers/gpu/drm/i915/display/intel_fbc.c   |  2 +-
 drivers/gpu/drm/xe/.kunitconfig            | 11 ++++
 drivers/gpu/drm/xe/Kconfig.debug           |  3 +-
 drivers/gpu/drm/xe/Makefile                | 13 +++-
 drivers/gpu/drm/xe/display/ext/i915_irq.c  | 50 ++++------------
 drivers/gpu/drm/xe/tests/xe_migrate.c      |  6 +-
 drivers/gpu/drm/xe/xe_ggtt.c               |  4 +-
 drivers/gpu/drm/xe/xe_gt.c                 |  6 +-
 drivers/gpu/drm/xe/xe_guc_pc.c             | 70 ++++++++++++++++++++--
 drivers/gpu/drm/xe/xe_guc_submit.c         |  2 +-
 drivers/gpu/drm/xe/xe_irq.c                |  2 +-
 drivers/gpu/drm/xe/xe_migrate.c            | 17 ++----
 drivers/gpu/drm/xe/xe_mmio.c               | 17 +-----
 drivers/gpu/drm/xe/xe_mmio.h               |  1 +
 drivers/gpu/drm/xe/xe_pcode.c              |  2 +-
 drivers/gpu/drm/xe/xe_trace.h              | 12 ++--
 drivers/gpu/drm/xe/xe_ttm_vram_mgr_types.h |  2 +-
 17 files changed, 129 insertions(+), 91 deletions(-)
 create mode 100644 drivers/gpu/drm/xe/.kunitconfig

-- 
2.39.0



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

end of thread, other threads:[~2023-01-31 19:31 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-20 20:44 [Intel-xe] [PATCH 00/20] Catching up - round 2 Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 01/20] drm/xe/migrate: Update emit_pte to cope with a size level than 4k Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 02/20] drm/xe/fbc: set compressed_fb to NULL on error Rodrigo Vivi
2023-01-31 19:20   ` Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 03/20] drm/xe/pcode: fix pcode error check Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 04/20] drm/xe: fix xe_mmio_total_vram_size Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 05/20] drm/xe/ggtt: Use BIT_ULL() for 64bit Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 06/20] drm/xe: Fix some log messages on 32b Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 07/20] drm/xe/mmio: Use non-atomic writeq/readq variant for 32b Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 08/20] drm/xe: Fix tracepoints on 32b Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 09/20] drm/xe/gt: Fix min() with u32 and u64 Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 10/20] drm/xe: Add documentation for mem_type Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 11/20] drm/xe/ext: Dont call intel_display_power_is_enabled from irq install/remove Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 12/20] ]65; 7002; 1cdrm/xe: Add min config for kunit integration ARCH=um Rodrigo Vivi
2023-01-20 22:58   ` Mauro Carvalho Chehab
2023-01-24 23:13   ` Lucas De Marchi
2023-01-31 19:30     ` Rodrigo Vivi
2023-01-31 19:23   ` Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 13/20] drm/xe/Kconfig.debug: select DEBUG_FS for KUnit runs Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 14/20] drm/xe: KUnit tests depend on CONFIG_DRM_FBDEV_EMULATION Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 15/20] drm/xe: fix XE_DISPLAY dependency on ACPI Rodrigo Vivi
2023-01-24 16:02   ` Lecluse, Philippe
2023-01-20 20:44 ` [Intel-xe] [PATCH 16/20] drm/xe: allow building XE_DISPLAY without ACPI Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 17/20] drm/xe: fix DRM_FBDEV_EMULATION dependencies Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 18/20] drm/xe/gt: Enable interrupt while initializing root gt Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 19/20] drm/xe: Fix Meteor Lake rsa issue on guc loading Rodrigo Vivi
2023-01-20 20:44 ` [Intel-xe] [PATCH 20/20] drm/xe/guc_pc: Fix Meteor Lake registers Rodrigo Vivi

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.