All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/3] drm/i915: add perf support for Coffeelake
@ 2017-08-30 13:47 Lionel Landwerlin
  2017-08-30 13:47 ` [PATCH v4 1/3] drm/i915: add GT number to intel_device_info Lionel Landwerlin
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Lionel Landwerlin @ 2017-08-30 13:47 UTC (permalink / raw)
  To: intel-gfx

Inconsistencies noticed by Ville in patch 1.

Cheers,

Lionel Landwerlin (3):
  drm/i915: add GT number to intel_device_info
  drm/i915: rework IS_*_GT* macros
  drm/i915/perf: add support for Coffeelake GT2

 drivers/gpu/drm/i915/Makefile         |   3 +-
 drivers/gpu/drm/i915/i915_drv.h       |  22 ++--
 drivers/gpu/drm/i915/i915_oa_cflgt2.c | 109 +++++++++++++++++++
 drivers/gpu/drm/i915/i915_oa_cflgt2.h |  34 ++++++
 drivers/gpu/drm/i915/i915_pci.c       | 193 ++++++++++++++++++++++++++--------
 drivers/gpu/drm/i915/i915_perf.c      |   5 +
 include/drm/i915_pciids.h             | 152 ++++++++++++++++----------
 7 files changed, 407 insertions(+), 111 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/i915_oa_cflgt2.c
 create mode 100644 drivers/gpu/drm/i915/i915_oa_cflgt2.h

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

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH v3 0/2] drm/i915: add perf support for Coffeelake
@ 2017-09-18 11:21 Lionel Landwerlin
  2017-09-18 13:26 ` ✓ Fi.CI.BAT: success for " Patchwork
  0 siblings, 1 reply; 10+ messages in thread
From: Lionel Landwerlin @ 2017-09-18 11:21 UTC (permalink / raw)
  To: intel-gfx; +Cc: matthew.auld

Missing Rb on patch 2 :/
Sorry for the noise.

Cheers,

Lionel Landwerlin (2):
  drm/i915/perf: disable clk ratio reports on gen9
  drm/i915/perf: add support for Coffeelake GT2

 drivers/gpu/drm/i915/Makefile         |   3 +-
 drivers/gpu/drm/i915/i915_drv.h       |   2 +
 drivers/gpu/drm/i915/i915_oa_cflgt2.c | 109 ++++++++++++++++++++++++++++++++++
 drivers/gpu/drm/i915/i915_oa_cflgt2.h |  34 +++++++++++
 drivers/gpu/drm/i915/i915_perf.c      |   8 ++-
 5 files changed, 153 insertions(+), 3 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/i915_oa_cflgt2.c
 create mode 100644 drivers/gpu/drm/i915/i915_oa_cflgt2.h

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

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH v2 0/2] drm/i915: add perf support for Coffeelake
@ 2017-09-18 11:00 Lionel Landwerlin
  2017-09-18 11:58 ` ✓ Fi.CI.BAT: success for " Patchwork
  0 siblings, 1 reply; 10+ messages in thread
From: Lionel Landwerlin @ 2017-09-18 11:00 UTC (permalink / raw)
  To: intel-gfx; +Cc: matthew.auld

Hi,

Just a follow up with refactoring in patch 1.

Cheers,

Lionel Landwerlin (2):
  drm/i915/perf: disable clk ratio reports on gen9
  drm/i915/perf: add support for Coffeelake GT2

 drivers/gpu/drm/i915/Makefile         |   3 +-
 drivers/gpu/drm/i915/i915_drv.h       |   2 +
 drivers/gpu/drm/i915/i915_oa_cflgt2.c | 109 ++++++++++++++++++++++++++++++++++
 drivers/gpu/drm/i915/i915_oa_cflgt2.h |  34 +++++++++++
 drivers/gpu/drm/i915/i915_perf.c      |   8 ++-
 5 files changed, 153 insertions(+), 3 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/i915_oa_cflgt2.c
 create mode 100644 drivers/gpu/drm/i915/i915_oa_cflgt2.h

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

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH v5 0/4] drm/i915: add perf support for Coffeelake
@ 2017-08-30 16:12 Lionel Landwerlin
  2017-08-30 16:31 ` ✓ Fi.CI.BAT: success for " Patchwork
  0 siblings, 1 reply; 10+ messages in thread
From: Lionel Landwerlin @ 2017-08-30 16:12 UTC (permalink / raw)
  To: intel-gfx

Hi,

Adding one commit to mark device info structs with __initdata.

Cheers,

Lionel Landwerlin (4):
  drm/i915: add GT number to intel_device_info
  drm/i915: mark all device info struct with __initdata
  drm/i915: rework IS_*_GT* macros
  drm/i915/perf: add support for Coffeelake GT2

 drivers/gpu/drm/i915/Makefile         |   3 +-
 drivers/gpu/drm/i915/i915_drv.h       |  22 ++--
 drivers/gpu/drm/i915/i915_oa_cflgt2.c | 109 +++++++++++++++
 drivers/gpu/drm/i915/i915_oa_cflgt2.h |  34 +++++
 drivers/gpu/drm/i915/i915_pci.c       | 241 ++++++++++++++++++++++++----------
 drivers/gpu/drm/i915/i915_perf.c      |   5 +
 include/drm/i915_pciids.h             | 152 +++++++++++++--------
 7 files changed, 431 insertions(+), 135 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/i915_oa_cflgt2.c
 create mode 100644 drivers/gpu/drm/i915/i915_oa_cflgt2.h

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

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH 0/3] drm/i915: add perf support for Coffeelake
@ 2017-08-29 16:52 Lionel Landwerlin
  2017-08-29 17:24 ` ✓ Fi.CI.BAT: success for " Patchwork
  0 siblings, 1 reply; 10+ messages in thread
From: Lionel Landwerlin @ 2017-08-29 16:52 UTC (permalink / raw)
  To: intel-gfx

Hi all,

This series adds support for perf on Coffeelake GT2. This requires
some changes in order to identify GT2s chipsets. It seems the scheme
that was used before in device IDs isn't there anymore.

Cheers,

Lionel Landwerlin (3):
  drm/i915: add GT number to intel_device_info
  drm/i915: rework IS_*_GT* macros
  drm/i915/perf: add support for Coffeelake GT2

 drivers/gpu/drm/i915/Makefile         |   3 +-
 drivers/gpu/drm/i915/i915_drv.h       |  17 +++---
 drivers/gpu/drm/i915/i915_oa_cflgt2.c | 109 +++++++++++++++++++++++++++++++++
 drivers/gpu/drm/i915/i915_oa_cflgt2.h |  34 +++++++++++
 drivers/gpu/drm/i915/i915_pci.c       | 111 +++++++++++++++++++++++++++-------
 drivers/gpu/drm/i915/i915_perf.c      |   5 ++
 include/drm/i915_pciids.h             | 110 ++++++++++++++++++---------------
 7 files changed, 310 insertions(+), 79 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/i915_oa_cflgt2.c
 create mode 100644 drivers/gpu/drm/i915/i915_oa_cflgt2.h

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

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

end of thread, other threads:[~2017-09-18 13:26 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-30 13:47 [PATCH v4 0/3] drm/i915: add perf support for Coffeelake Lionel Landwerlin
2017-08-30 13:47 ` [PATCH v4 1/3] drm/i915: add GT number to intel_device_info Lionel Landwerlin
2017-08-30 13:47 ` [PATCH v4 2/3] drm/i915: rework IS_*_GT* macros Lionel Landwerlin
2017-08-30 13:47 ` [PATCH v4 3/3] drm/i915/perf: add support for Coffeelake GT2 Lionel Landwerlin
2017-08-30 14:29 ` ✓ Fi.CI.BAT: success for drm/i915: add perf support for Coffeelake Patchwork
2017-08-30 15:43 ` ✗ Fi.CI.IGT: warning " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2017-09-18 11:21 [PATCH v3 0/2] " Lionel Landwerlin
2017-09-18 13:26 ` ✓ Fi.CI.BAT: success for " Patchwork
2017-09-18 11:00 [PATCH v2 0/2] " Lionel Landwerlin
2017-09-18 11:58 ` ✓ Fi.CI.BAT: success for " Patchwork
2017-08-30 16:12 [PATCH v5 0/4] " Lionel Landwerlin
2017-08-30 16:31 ` ✓ Fi.CI.BAT: success for " Patchwork
2017-08-29 16:52 [PATCH 0/3] " Lionel Landwerlin
2017-08-29 17:24 ` ✓ Fi.CI.BAT: success for " Patchwork

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.