All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] Fixed16.16 wrapper cleanup & wm optimization
@ 2017-08-17 13:45 Mahesh Kumar
  2017-08-17 13:45 ` [PATCH 1/8] drm/i915: Fixed point fixed16 wrapper cleanup Mahesh Kumar
                   ` (11 more replies)
  0 siblings, 12 replies; 17+ messages in thread
From: Mahesh Kumar @ 2017-08-17 13:45 UTC (permalink / raw)
  To: intel-gfx; +Cc: jani.nikula, paulo.r.zanoni, maarten.lankhorst

This is a Trybot Version of series.

This series Include patches for:
	clean fixed16.16 wrappers
	optimize wm calculation code
	enable/Implement trans wm calculation
	create a DebugFS entry for IPC status

Kumar, Mahesh (8):
  drm/i915: Fixed point fixed16 wrapper cleanup
  drm/i915/skl+: Optimize WM calculation
  drm/i915/gen10: Calculate and enable transition WM
  drm/i915/glk: IPC linetime watermark workaround for GLK
  drm/i915/cnl: Extend WM workaround with IPC for CNL
  drm/i915/gen9+: Add has_ipc flag in device info structure
  drm/i915/bxt+: Enable IPC support
  drm/i915/skl+: debugfs entry to control IPC

 drivers/gpu/drm/i915/i915_debugfs.c  |  54 ++++++-
 drivers/gpu/drm/i915/i915_drv.c      |   4 +-
 drivers/gpu/drm/i915/i915_drv.h      |  33 ++++-
 drivers/gpu/drm/i915/i915_pci.c      |   4 +
 drivers/gpu/drm/i915/i915_reg.h      |   1 +
 drivers/gpu/drm/i915/intel_display.c |   1 +
 drivers/gpu/drm/i915/intel_drv.h     |   2 +
 drivers/gpu/drm/i915/intel_pm.c      | 274 +++++++++++++++++++++++------------
 8 files changed, 273 insertions(+), 100 deletions(-)

-- 
2.13.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH 0/8] Fixed16.16 wrapper cleanup & wm optimization
@ 2017-07-18 12:49 Mahesh Kumar
  0 siblings, 0 replies; 17+ messages in thread
From: Mahesh Kumar @ 2017-07-18 12:49 UTC (permalink / raw)
  To: intel-gfx; +Cc: jani.nikula, paulo.r.zanoni, maarten.lankhorst

This series Include patches for:
	clean fixed16.16 wrappers
	optimize wm calculation code
	enable/Implement trans wm calculation
	create a DebugFS entry for IPC status

Mahesh Kumar (8):
  drm/i915: Fixed point fixed16 wrapper cleanup
  drm/i915/skl+: Optimize WM calculation
  drm/i915/gen10: Calculate and enable transition WM
  drm/i915/glk: IPC linetime watermark workaround for GLK
  drm/i915/cnl: Extend WM workaround with IPC for CNL
  drm/i915/gen9+: Add has_ipc flag in device info structure
  drm/i915/bxt+: Enable IPC support
  drm/i915/skl+: debugfs entry to control IPC

 drivers/gpu/drm/i915/i915_debugfs.c  |  73 +++++++++-
 drivers/gpu/drm/i915/i915_drv.c      |   4 +-
 drivers/gpu/drm/i915/i915_drv.h      |  32 +++--
 drivers/gpu/drm/i915/i915_pci.c      |   4 +
 drivers/gpu/drm/i915/i915_reg.h      |   1 +
 drivers/gpu/drm/i915/intel_display.c |   1 +
 drivers/gpu/drm/i915/intel_drv.h     |   2 +
 drivers/gpu/drm/i915/intel_pm.c      | 262 +++++++++++++++++++++++------------
 8 files changed, 283 insertions(+), 96 deletions(-)

-- 
2.13.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH 0/8] Fixed16.16 wrapper cleanup & wm optimization
@ 2017-06-21  6:14 Mahesh Kumar
  0 siblings, 0 replies; 17+ messages in thread
From: Mahesh Kumar @ 2017-06-21  6:14 UTC (permalink / raw)
  To: intel-gfx; +Cc: paulo.r.zanoni, maarten.lankhorst

This series Include patches for:
	clean fixed16.16 naming & make them consistent
	optimize wm calculation code
	enable/Implement trans wm calculation

Changes Since V1:
 - Split fixed16 cleanup code in more logical patches (Maarten)
 - make intel_compute_linetime_wm function static (Maarten)
Changes Since V2:
 - Rebase

Mahesh Kumar (8):
  drm/i915: take-out common clamping code of fixed16 wrappers
  drm/i915: Always perform internal fixed16 division in 64 bits
  drm/i915: cleanup fixed-point wrappers naming
  drm/i915: Addition wrapper for fixed16.16 operation
  drm/i915/skl+: WM calculation don't require height
  drm/i915/skl+: unify cpp value in WM calculation
  drm/i915/skl+: Optimize WM calculation
  drm/i915/gen10: Calculate and enable transition WM

 drivers/gpu/drm/i915/i915_drv.h |  83 +++++++-----
 drivers/gpu/drm/i915/intel_pm.c | 279 ++++++++++++++++++++++++----------------
 2 files changed, 220 insertions(+), 142 deletions(-)

-- 
2.13.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

end of thread, other threads:[~2017-09-07 15:12 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-17 13:45 [PATCH 0/8] Fixed16.16 wrapper cleanup & wm optimization Mahesh Kumar
2017-08-17 13:45 ` [PATCH 1/8] drm/i915: Fixed point fixed16 wrapper cleanup Mahesh Kumar
2017-08-17 13:45 ` [PATCH 2/8] drm/i915/skl+: Optimize WM calculation Mahesh Kumar
2017-08-17 13:45 ` [PATCH 3/8] drm/i915/gen10: Calculate and enable transition WM Mahesh Kumar
2017-08-17 13:45 ` [PATCH 4/8] drm/i915/glk: IPC linetime watermark workaround for GLK Mahesh Kumar
2017-08-17 13:45 ` [PATCH 5/8] drm/i915/cnl: Extend WM workaround with IPC for CNL Mahesh Kumar
2017-08-17 13:45 ` [PATCH 6/8] drm/i915/gen9+: Add has_ipc flag in device info structure Mahesh Kumar
2017-08-17 13:45 ` [PATCH 7/8] drm/i915/bxt+: Enable IPC support Mahesh Kumar
2017-08-17 13:45 ` [PATCH 8/8] drm/i915/skl+: debugfs entry to control IPC Mahesh Kumar
2017-08-17 14:00 ` ✗ Fi.CI.BAT: warning for Fixed16.16 wrapper cleanup & wm optimization (rev7) Patchwork
2017-08-17 14:40 ` [PATCH 0/8] Fixed16.16 wrapper cleanup & wm optimization Jani Nikula
2017-08-17 15:16   ` Mahesh Kumar
2017-09-07 15:11     ` Maarten Lankhorst
2017-09-05  9:09 ` ✓ Fi.CI.BAT: success for Fixed16.16 wrapper cleanup & wm optimization (rev7) Patchwork
2017-09-05 10:14 ` ✓ Fi.CI.IGT: " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2017-07-18 12:49 [PATCH 0/8] Fixed16.16 wrapper cleanup & wm optimization Mahesh Kumar
2017-06-21  6:14 Mahesh Kumar

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.