diff options
author | Lionel Landwerlin <lionel.g.landwerlin@intel.com> | 2018-03-06 07:28:54 -0500 |
---|---|---|
committer | Lionel Landwerlin <lionel.g.landwerlin@intel.com> | 2018-03-08 05:06:21 -0500 |
commit | 79e9cd5f14dda3a6a47b2f0ac288e9c52d6435a9 (patch) | |
tree | 524a02b00409f4ca10edc626b7474c99b12accee | |
parent | b3e7f866927985b11f2e483ba02404d9a3a8685c (diff) |
drm/i915/debugfs: add rcs topology entry
While the end goal is to make this information available to userspace
through a new ioctl, there is no reason we can't display it in a human
readable fashion through debugfs.
slice0: 3 subslice(s) (0x7):
subslice0: 8 EUs (0xff)
subslice1: 8 EUs (0xff)
subslice2: 8 EUs (0xff)
subslice3: 0 EUs (0x0)
slice1: 3 subslice(s) (0x7):
subslice0: 8 EUs (0xff)
subslice1: 8 EUs (0xff)
subslice2: 8 EUs (0xff)
subslice3: 0 EUs (0x0)
slice2: 3 subslice(s) (0x7):
subslice0: 8 EUs (0xff)
subslice1: 8 EUs (0xff)
subslice2: 8 EUs (0xff)
subslice3: 0 EUs (0x0)
v2: Reformat debugfs printing (Tvrtko)
Use the new EU mask helper (Tvrtko)
v3: Move printing code to intel_device_info.c to be shared with error
state (Michal)
v4: Bump u8 to u16 when using sseu_get_eus() (Lionel)
Suggested-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20180306122857.27317-4-lionel.g.landwerlin@intel.com
-rw-r--r-- | drivers/gpu/drm/i915/i915_debugfs.c | 11 | ||||
-rw-r--r-- | drivers/gpu/drm/i915/intel_device_info.c | 24 | ||||
-rw-r--r-- | drivers/gpu/drm/i915/intel_device_info.h | 2 |
3 files changed, 37 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index bd5f98c60b5b..89f7ff2c652e 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c | |||
@@ -3201,6 +3201,16 @@ static int i915_engine_info(struct seq_file *m, void *unused) | |||
3201 | return 0; | 3201 | return 0; |
3202 | } | 3202 | } |
3203 | 3203 | ||
3204 | static int i915_rcs_topology(struct seq_file *m, void *unused) | ||
3205 | { | ||
3206 | struct drm_i915_private *dev_priv = node_to_i915(m->private); | ||
3207 | struct drm_printer p = drm_seq_file_printer(m); | ||
3208 | |||
3209 | intel_device_info_dump_topology(&INTEL_INFO(dev_priv)->sseu, &p); | ||
3210 | |||
3211 | return 0; | ||
3212 | } | ||
3213 | |||
3204 | static int i915_shrinker_info(struct seq_file *m, void *unused) | 3214 | static int i915_shrinker_info(struct seq_file *m, void *unused) |
3205 | { | 3215 | { |
3206 | struct drm_i915_private *i915 = node_to_i915(m->private); | 3216 | struct drm_i915_private *i915 = node_to_i915(m->private); |
@@ -4733,6 +4743,7 @@ static const struct drm_info_list i915_debugfs_list[] = { | |||
4733 | {"i915_dmc_info", i915_dmc_info, 0}, | 4743 | {"i915_dmc_info", i915_dmc_info, 0}, |
4734 | {"i915_display_info", i915_display_info, 0}, | 4744 | {"i915_display_info", i915_display_info, 0}, |
4735 | {"i915_engine_info", i915_engine_info, 0}, | 4745 | {"i915_engine_info", i915_engine_info, 0}, |
4746 | {"i915_rcs_topology", i915_rcs_topology, 0}, | ||
4736 | {"i915_shrinker_info", i915_shrinker_info, 0}, | 4747 | {"i915_shrinker_info", i915_shrinker_info, 0}, |
4737 | {"i915_shared_dplls_info", i915_shared_dplls_info, 0}, | 4748 | {"i915_shared_dplls_info", i915_shared_dplls_info, 0}, |
4738 | {"i915_dp_mst_info", i915_dp_mst_info, 0}, | 4749 | {"i915_dp_mst_info", i915_dp_mst_info, 0}, |
diff --git a/drivers/gpu/drm/i915/intel_device_info.c b/drivers/gpu/drm/i915/intel_device_info.c index 14f2c72fdcff..3dd350f7b8e6 100644 --- a/drivers/gpu/drm/i915/intel_device_info.c +++ b/drivers/gpu/drm/i915/intel_device_info.c | |||
@@ -124,6 +124,30 @@ void intel_device_info_dump(const struct intel_device_info *info, | |||
124 | intel_device_info_dump_flags(info, p); | 124 | intel_device_info_dump_flags(info, p); |
125 | } | 125 | } |
126 | 126 | ||
127 | void intel_device_info_dump_topology(const struct sseu_dev_info *sseu, | ||
128 | struct drm_printer *p) | ||
129 | { | ||
130 | int s, ss; | ||
131 | |||
132 | if (sseu->max_slices == 0) { | ||
133 | drm_printf(p, "Unavailable\n"); | ||
134 | return; | ||
135 | } | ||
136 | |||
137 | for (s = 0; s < sseu->max_slices; s++) { | ||
138 | drm_printf(p, "slice%d: %u subslice(s) (0x%hhx):\n", | ||
139 | s, hweight8(sseu->subslice_mask[s]), | ||
140 | sseu->subslice_mask[s]); | ||
141 | |||
142 | for (ss = 0; ss < sseu->max_subslices; ss++) { | ||
143 | u16 enabled_eus = sseu_get_eus(sseu, s, ss); | ||
144 | |||
145 | drm_printf(p, "\tsubslice%d: %u EUs (0x%hx)\n", | ||
146 | ss, hweight16(enabled_eus), enabled_eus); | ||
147 | } | ||
148 | } | ||
149 | } | ||
150 | |||
127 | static u16 compute_eu_total(const struct sseu_dev_info *sseu) | 151 | static u16 compute_eu_total(const struct sseu_dev_info *sseu) |
128 | { | 152 | { |
129 | u16 i, total = 0; | 153 | u16 i, total = 0; |
diff --git a/drivers/gpu/drm/i915/intel_device_info.h b/drivers/gpu/drm/i915/intel_device_info.h index 4bc7b06a789e..0835752c8b22 100644 --- a/drivers/gpu/drm/i915/intel_device_info.h +++ b/drivers/gpu/drm/i915/intel_device_info.h | |||
@@ -244,6 +244,8 @@ void intel_device_info_dump_flags(const struct intel_device_info *info, | |||
244 | struct drm_printer *p); | 244 | struct drm_printer *p); |
245 | void intel_device_info_dump_runtime(const struct intel_device_info *info, | 245 | void intel_device_info_dump_runtime(const struct intel_device_info *info, |
246 | struct drm_printer *p); | 246 | struct drm_printer *p); |
247 | void intel_device_info_dump_topology(const struct sseu_dev_info *sseu, | ||
248 | struct drm_printer *p); | ||
247 | 249 | ||
248 | void intel_driver_caps_print(const struct intel_driver_caps *caps, | 250 | void intel_driver_caps_print(const struct intel_driver_caps *caps, |
249 | struct drm_printer *p); | 251 | struct drm_printer *p); |