2009-02-18 01:08:50 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2008 Intel Corporation
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Eric Anholt <eric@anholt.net>
|
|
|
|
* Keith Packard <keithp@keithp.com>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/seq_file.h>
|
2013-10-15 17:55:29 +00:00
|
|
|
#include <linux/circ_buf.h>
|
2013-10-16 11:30:34 +00:00
|
|
|
#include <linux/ctype.h>
|
2009-10-13 21:20:20 +00:00
|
|
|
#include <linux/debugfs.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2011-08-30 22:16:33 +00:00
|
|
|
#include <linux/export.h>
|
2013-08-07 17:30:54 +00:00
|
|
|
#include <linux/list_sort.h>
|
2013-08-20 09:29:23 +00:00
|
|
|
#include <asm/msr-index.h>
|
2012-10-02 17:01:07 +00:00
|
|
|
#include <drm/drmP.h>
|
2010-09-01 16:47:52 +00:00
|
|
|
#include "intel_drv.h"
|
2010-11-01 11:35:28 +00:00
|
|
|
#include "intel_ringbuffer.h"
|
2012-10-02 17:01:07 +00:00
|
|
|
#include <drm/i915_drm.h>
|
2009-02-18 01:08:50 +00:00
|
|
|
#include "i915_drv.h"
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static inline struct drm_i915_private *node_to_i915(struct drm_info_node *node)
|
|
|
|
{
|
|
|
|
return to_i915(node->minor->dev);
|
|
|
|
}
|
|
|
|
|
2013-10-15 17:55:39 +00:00
|
|
|
/* As the drm_debugfs_init() routines are called before dev->dev_private is
|
|
|
|
* allocated we need to hook into the minor for release. */
|
|
|
|
static int
|
|
|
|
drm_add_fake_info_node(struct drm_minor *minor,
|
|
|
|
struct dentry *ent,
|
|
|
|
const void *key)
|
|
|
|
{
|
|
|
|
struct drm_info_node *node;
|
|
|
|
|
|
|
|
node = kmalloc(sizeof(*node), GFP_KERNEL);
|
|
|
|
if (node == NULL) {
|
|
|
|
debugfs_remove(ent);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
node->minor = minor;
|
|
|
|
node->dent = ent;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
node->info_ent = (void *)key;
|
2013-10-15 17:55:39 +00:00
|
|
|
|
|
|
|
mutex_lock(&minor->debugfs_lock);
|
|
|
|
list_add(&node->list, &minor->debugfs_list);
|
|
|
|
mutex_unlock(&minor->debugfs_lock);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-08-25 15:03:34 +00:00
|
|
|
static int i915_capabilities(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
const struct intel_device_info *info = INTEL_INFO(dev_priv);
|
2010-08-25 15:03:34 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
seq_printf(m, "gen: %d\n", INTEL_GEN(dev_priv));
|
|
|
|
seq_printf(m, "pch: %d\n", INTEL_PCH_TYPE(dev_priv));
|
2013-04-23 15:37:17 +00:00
|
|
|
#define PRINT_FLAG(x) seq_printf(m, #x ": %s\n", yesno(info->x))
|
2016-10-05 10:50:16 +00:00
|
|
|
DEV_INFO_FOR_EACH_FLAG(PRINT_FLAG);
|
2013-04-23 15:37:17 +00:00
|
|
|
#undef PRINT_FLAG
|
2010-08-25 15:03:34 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2009-02-18 01:08:50 +00:00
|
|
|
|
2016-05-12 13:18:52 +00:00
|
|
|
static char get_active_flag(struct drm_i915_gem_object *obj)
|
2009-02-11 14:26:38 +00:00
|
|
|
{
|
2016-08-04 15:32:39 +00:00
|
|
|
return i915_gem_object_is_active(obj) ? '*' : ' ';
|
2009-02-11 14:26:38 +00:00
|
|
|
}
|
|
|
|
|
2016-05-12 13:18:52 +00:00
|
|
|
static char get_pin_flag(struct drm_i915_gem_object *obj)
|
2016-04-15 10:34:52 +00:00
|
|
|
{
|
|
|
|
return obj->pin_display ? 'p' : ' ';
|
|
|
|
}
|
|
|
|
|
2016-05-12 13:18:52 +00:00
|
|
|
static char get_tiling_flag(struct drm_i915_gem_object *obj)
|
2009-02-11 14:26:38 +00:00
|
|
|
{
|
2016-08-05 09:14:23 +00:00
|
|
|
switch (i915_gem_object_get_tiling(obj)) {
|
2011-08-16 19:34:10 +00:00
|
|
|
default:
|
2016-04-15 10:34:52 +00:00
|
|
|
case I915_TILING_NONE: return ' ';
|
|
|
|
case I915_TILING_X: return 'X';
|
|
|
|
case I915_TILING_Y: return 'Y';
|
2011-08-16 19:34:10 +00:00
|
|
|
}
|
2009-02-11 14:26:38 +00:00
|
|
|
}
|
|
|
|
|
2016-05-12 13:18:52 +00:00
|
|
|
static char get_global_flag(struct drm_i915_gem_object *obj)
|
2016-04-15 10:34:52 +00:00
|
|
|
{
|
2016-10-24 12:42:14 +00:00
|
|
|
return !list_empty(&obj->userfault_link) ? 'g' : ' ';
|
2016-04-15 10:34:52 +00:00
|
|
|
}
|
|
|
|
|
2016-05-12 13:18:52 +00:00
|
|
|
static char get_pin_mapped_flag(struct drm_i915_gem_object *obj)
|
2013-08-01 00:00:00 +00:00
|
|
|
{
|
2016-10-28 12:58:35 +00:00
|
|
|
return obj->mm.mapping ? 'M' : ' ';
|
2013-08-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2015-07-01 10:51:10 +00:00
|
|
|
static u64 i915_gem_obj_total_ggtt_size(struct drm_i915_gem_object *obj)
|
|
|
|
{
|
|
|
|
u64 size = 0;
|
|
|
|
struct i915_vma *vma;
|
|
|
|
|
2016-02-26 11:03:19 +00:00
|
|
|
list_for_each_entry(vma, &obj->vma_list, obj_link) {
|
2016-08-04 15:32:32 +00:00
|
|
|
if (i915_vma_is_ggtt(vma) && drm_mm_node_allocated(&vma->node))
|
2015-07-01 10:51:10 +00:00
|
|
|
size += vma->node.size;
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2010-08-25 21:45:57 +00:00
|
|
|
static void
|
|
|
|
describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj)
|
|
|
|
{
|
2015-04-27 12:41:17 +00:00
|
|
|
struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
2013-08-01 00:00:00 +00:00
|
|
|
struct i915_vma *vma;
|
2016-08-04 15:32:37 +00:00
|
|
|
unsigned int frontbuffer_bits;
|
2013-12-06 22:10:55 +00:00
|
|
|
int pin_count = 0;
|
|
|
|
|
2016-04-03 13:14:20 +00:00
|
|
|
lockdep_assert_held(&obj->base.dev->struct_mutex);
|
|
|
|
|
drm/i915: Move GEM activity tracking into a common struct reservation_object
In preparation to support many distinct timelines, we need to expand the
activity tracking on the GEM object to handle more than just a request
per engine. We already use the struct reservation_object on the dma-buf
to handle many fence contexts, so integrating that into the GEM object
itself is the preferred solution. (For example, we can now share the same
reservation_object between every consumer/producer using this buffer and
skip the manual import/export via dma-buf.)
v2: Reimplement busy-ioctl (by walking the reservation object), postpone
the ABI change for another day. Similarly use the reservation object to
find the last_write request (if active and from i915) for choosing
display CS flips.
Caveats:
* busy-ioctl: busy-ioctl only reports on the native fences, it will not
warn of stalls (in set-domain-ioctl, pread/pwrite etc) if the object is
being rendered to by external fences. It also will not report the same
busy state as wait-ioctl (or polling on the dma-buf) in the same
circumstances. On the plus side, it does retain reporting of which
*i915* engines are engaged with this object.
* non-blocking atomic modesets take a step backwards as the wait for
render completion blocks the ioctl. This is fixed in a subsequent
patch to use a fence instead for awaiting on the rendering, see
"drm/i915: Restore nonblocking awaits for modesetting"
* dynamic array manipulation for shared-fences in reservation is slower
than the previous lockless static assignment (e.g. gem_exec_lut_handle
runtime on ivb goes from 42s to 66s), mainly due to atomic operations
(maintaining the fence refcounts).
* loss of object-level retirement callbacks, emulated by VMA retirement
tracking.
* minor loss of object-level last activity information from debugfs,
could be replaced with per-vma information if desired
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20161028125858.23563-21-chris@chris-wilson.co.uk
2016-10-28 12:58:44 +00:00
|
|
|
seq_printf(m, "%pK: %c%c%c%c%c %8zdKiB %02x %02x %s%s%s",
|
2010-08-25 21:45:57 +00:00
|
|
|
&obj->base,
|
2016-04-15 10:34:52 +00:00
|
|
|
get_active_flag(obj),
|
2010-08-25 21:45:57 +00:00
|
|
|
get_pin_flag(obj),
|
|
|
|
get_tiling_flag(obj),
|
2013-08-01 00:00:00 +00:00
|
|
|
get_global_flag(obj),
|
2016-04-15 10:34:52 +00:00
|
|
|
get_pin_mapped_flag(obj),
|
2011-12-20 16:54:15 +00:00
|
|
|
obj->base.size / 1024,
|
2010-08-25 21:45:57 +00:00
|
|
|
obj->base.read_domains,
|
drm/i915: Move GEM activity tracking into a common struct reservation_object
In preparation to support many distinct timelines, we need to expand the
activity tracking on the GEM object to handle more than just a request
per engine. We already use the struct reservation_object on the dma-buf
to handle many fence contexts, so integrating that into the GEM object
itself is the preferred solution. (For example, we can now share the same
reservation_object between every consumer/producer using this buffer and
skip the manual import/export via dma-buf.)
v2: Reimplement busy-ioctl (by walking the reservation object), postpone
the ABI change for another day. Similarly use the reservation object to
find the last_write request (if active and from i915) for choosing
display CS flips.
Caveats:
* busy-ioctl: busy-ioctl only reports on the native fences, it will not
warn of stalls (in set-domain-ioctl, pread/pwrite etc) if the object is
being rendered to by external fences. It also will not report the same
busy state as wait-ioctl (or polling on the dma-buf) in the same
circumstances. On the plus side, it does retain reporting of which
*i915* engines are engaged with this object.
* non-blocking atomic modesets take a step backwards as the wait for
render completion blocks the ioctl. This is fixed in a subsequent
patch to use a fence instead for awaiting on the rendering, see
"drm/i915: Restore nonblocking awaits for modesetting"
* dynamic array manipulation for shared-fences in reservation is slower
than the previous lockless static assignment (e.g. gem_exec_lut_handle
runtime on ivb goes from 42s to 66s), mainly due to atomic operations
(maintaining the fence refcounts).
* loss of object-level retirement callbacks, emulated by VMA retirement
tracking.
* minor loss of object-level last activity information from debugfs,
could be replaced with per-vma information if desired
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20161028125858.23563-21-chris@chris-wilson.co.uk
2016-10-28 12:58:44 +00:00
|
|
|
obj->base.write_domain,
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
i915_cache_level_str(dev_priv, obj->cache_level),
|
2016-10-28 12:58:35 +00:00
|
|
|
obj->mm.dirty ? " dirty" : "",
|
|
|
|
obj->mm.madv == I915_MADV_DONTNEED ? " purgeable" : "");
|
2010-08-25 21:45:57 +00:00
|
|
|
if (obj->base.name)
|
|
|
|
seq_printf(m, " (name: %d)", obj->base.name);
|
2016-02-26 11:03:19 +00:00
|
|
|
list_for_each_entry(vma, &obj->vma_list, obj_link) {
|
2016-08-04 15:32:30 +00:00
|
|
|
if (i915_vma_is_pinned(vma))
|
2013-12-06 22:10:55 +00:00
|
|
|
pin_count++;
|
2015-02-25 13:17:48 +00:00
|
|
|
}
|
|
|
|
seq_printf(m, " (pinned x %d)", pin_count);
|
2013-08-09 11:25:09 +00:00
|
|
|
if (obj->pin_display)
|
|
|
|
seq_printf(m, " (display)");
|
2016-02-26 11:03:19 +00:00
|
|
|
list_for_each_entry(vma, &obj->vma_list, obj_link) {
|
2016-08-04 06:52:26 +00:00
|
|
|
if (!drm_mm_node_allocated(&vma->node))
|
|
|
|
continue;
|
|
|
|
|
2015-05-27 09:52:32 +00:00
|
|
|
seq_printf(m, " (%sgtt offset: %08llx, size: %08llx",
|
2016-08-04 15:32:32 +00:00
|
|
|
i915_vma_is_ggtt(vma) ? "g" : "pp",
|
2015-05-27 09:52:32 +00:00
|
|
|
vma->node.start, vma->node.size);
|
2016-08-04 15:32:32 +00:00
|
|
|
if (i915_vma_is_ggtt(vma))
|
2016-02-26 11:03:20 +00:00
|
|
|
seq_printf(m, ", type: %u", vma->ggtt_view.type);
|
2016-08-18 16:17:00 +00:00
|
|
|
if (vma->fence)
|
|
|
|
seq_printf(m, " , fence: %d%s",
|
|
|
|
vma->fence->id,
|
|
|
|
i915_gem_active_isset(&vma->last_fence) ? "*" : "");
|
2016-02-26 11:03:20 +00:00
|
|
|
seq_puts(m, ")");
|
2013-08-01 00:00:00 +00:00
|
|
|
}
|
2012-11-15 11:32:21 +00:00
|
|
|
if (obj->stolen)
|
2015-01-23 08:05:06 +00:00
|
|
|
seq_printf(m, " (stolen: %08llx)", obj->stolen->start);
|
2016-08-04 06:52:30 +00:00
|
|
|
|
drm/i915: Move GEM activity tracking into a common struct reservation_object
In preparation to support many distinct timelines, we need to expand the
activity tracking on the GEM object to handle more than just a request
per engine. We already use the struct reservation_object on the dma-buf
to handle many fence contexts, so integrating that into the GEM object
itself is the preferred solution. (For example, we can now share the same
reservation_object between every consumer/producer using this buffer and
skip the manual import/export via dma-buf.)
v2: Reimplement busy-ioctl (by walking the reservation object), postpone
the ABI change for another day. Similarly use the reservation object to
find the last_write request (if active and from i915) for choosing
display CS flips.
Caveats:
* busy-ioctl: busy-ioctl only reports on the native fences, it will not
warn of stalls (in set-domain-ioctl, pread/pwrite etc) if the object is
being rendered to by external fences. It also will not report the same
busy state as wait-ioctl (or polling on the dma-buf) in the same
circumstances. On the plus side, it does retain reporting of which
*i915* engines are engaged with this object.
* non-blocking atomic modesets take a step backwards as the wait for
render completion blocks the ioctl. This is fixed in a subsequent
patch to use a fence instead for awaiting on the rendering, see
"drm/i915: Restore nonblocking awaits for modesetting"
* dynamic array manipulation for shared-fences in reservation is slower
than the previous lockless static assignment (e.g. gem_exec_lut_handle
runtime on ivb goes from 42s to 66s), mainly due to atomic operations
(maintaining the fence refcounts).
* loss of object-level retirement callbacks, emulated by VMA retirement
tracking.
* minor loss of object-level last activity information from debugfs,
could be replaced with per-vma information if desired
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20161028125858.23563-21-chris@chris-wilson.co.uk
2016-10-28 12:58:44 +00:00
|
|
|
engine = i915_gem_object_last_write_engine(obj);
|
2016-08-04 06:52:30 +00:00
|
|
|
if (engine)
|
|
|
|
seq_printf(m, " (%s)", engine->name);
|
|
|
|
|
2016-08-04 15:32:37 +00:00
|
|
|
frontbuffer_bits = atomic_read(&obj->frontbuffer_bits);
|
|
|
|
if (frontbuffer_bits)
|
|
|
|
seq_printf(m, " (frontbuffer: 0x%03x)", frontbuffer_bits);
|
2010-08-25 21:45:57 +00:00
|
|
|
}
|
|
|
|
|
2013-08-07 17:30:54 +00:00
|
|
|
static int obj_rank_by_stolen(void *priv,
|
|
|
|
struct list_head *A, struct list_head *B)
|
|
|
|
{
|
|
|
|
struct drm_i915_gem_object *a =
|
2013-08-14 09:38:33 +00:00
|
|
|
container_of(A, struct drm_i915_gem_object, obj_exec_link);
|
2013-08-07 17:30:54 +00:00
|
|
|
struct drm_i915_gem_object *b =
|
2013-08-14 09:38:33 +00:00
|
|
|
container_of(B, struct drm_i915_gem_object, obj_exec_link);
|
2013-08-07 17:30:54 +00:00
|
|
|
|
2015-09-28 21:08:50 +00:00
|
|
|
if (a->stolen->start < b->stolen->start)
|
|
|
|
return -1;
|
|
|
|
if (a->stolen->start > b->stolen->start)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
2013-08-07 17:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_gem_stolen_list_info(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2013-08-07 17:30:54 +00:00
|
|
|
struct drm_i915_gem_object *obj;
|
2015-06-25 15:35:05 +00:00
|
|
|
u64 total_obj_size, total_gtt_size;
|
2013-08-07 17:30:54 +00:00
|
|
|
LIST_HEAD(stolen);
|
|
|
|
int count, ret;
|
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
total_obj_size = total_gtt_size = count = 0;
|
|
|
|
list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
|
|
|
|
if (obj->stolen == NULL)
|
|
|
|
continue;
|
|
|
|
|
2013-08-14 09:38:33 +00:00
|
|
|
list_add(&obj->obj_exec_link, &stolen);
|
2013-08-07 17:30:54 +00:00
|
|
|
|
|
|
|
total_obj_size += obj->base.size;
|
2015-07-01 10:51:10 +00:00
|
|
|
total_gtt_size += i915_gem_obj_total_ggtt_size(obj);
|
2013-08-07 17:30:54 +00:00
|
|
|
count++;
|
|
|
|
}
|
|
|
|
list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
|
|
|
|
if (obj->stolen == NULL)
|
|
|
|
continue;
|
|
|
|
|
2013-08-14 09:38:33 +00:00
|
|
|
list_add(&obj->obj_exec_link, &stolen);
|
2013-08-07 17:30:54 +00:00
|
|
|
|
|
|
|
total_obj_size += obj->base.size;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
list_sort(NULL, &stolen, obj_rank_by_stolen);
|
|
|
|
seq_puts(m, "Stolen:\n");
|
|
|
|
while (!list_empty(&stolen)) {
|
2013-08-14 09:38:33 +00:00
|
|
|
obj = list_first_entry(&stolen, typeof(*obj), obj_exec_link);
|
2013-08-07 17:30:54 +00:00
|
|
|
seq_puts(m, " ");
|
|
|
|
describe_obj(m, obj);
|
|
|
|
seq_putc(m, '\n');
|
2013-08-14 09:38:33 +00:00
|
|
|
list_del_init(&obj->obj_exec_link);
|
2013-08-07 17:30:54 +00:00
|
|
|
}
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
2015-06-25 15:35:05 +00:00
|
|
|
seq_printf(m, "Total %d objects, %llu bytes, %llu GTT size\n",
|
2013-08-07 17:30:54 +00:00
|
|
|
count, total_obj_size, total_gtt_size);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
drm/i915: Track clients and print their object usage in debugfs
By stashing a pointer of who opened the device and keeping a list of
open fd, we can then walk each client and inspect how many objects they
have open. For example,
i915_gem_objects:
1102 objects, 613646336 bytes
663 [662] objects, 468783104 [468750336] bytes in gtt
37 [37] active objects, 46874624 [46874624] bytes
626 [625] inactive objects, 421908480 [421875712] bytes
282 unbound objects, 6512640 bytes
85 purgeable objects, 6787072 bytes
28 pinned mappable objects, 3686400 bytes
40 fault mappable objects, 27783168 bytes
2145386496 [536870912] gtt total
Xorg: 43 objects, 32243712 bytes (10223616 active, 16683008 inactive, 4096 unbound)
gnome-shell: 30 objects, 28381184 bytes (0 active, 28336128 inactive, 0 unbound)
xonotic-linux64: 1032 objects, 569933824 bytes (46874624 active, 383545344 inactive, 6508544 unbound)
v2: Use existing drm->filelist as pointed out by Ben.
v3: Not even stashing the task_struct is required as Ben pointed out
drm_file->pid.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2013-06-04 22:49:08 +00:00
|
|
|
struct file_stats {
|
2014-03-19 13:45:45 +00:00
|
|
|
struct drm_i915_file_private *file_priv;
|
2015-06-25 15:35:05 +00:00
|
|
|
unsigned long count;
|
|
|
|
u64 total, unbound;
|
|
|
|
u64 global, shared;
|
|
|
|
u64 active, inactive;
|
drm/i915: Track clients and print their object usage in debugfs
By stashing a pointer of who opened the device and keeping a list of
open fd, we can then walk each client and inspect how many objects they
have open. For example,
i915_gem_objects:
1102 objects, 613646336 bytes
663 [662] objects, 468783104 [468750336] bytes in gtt
37 [37] active objects, 46874624 [46874624] bytes
626 [625] inactive objects, 421908480 [421875712] bytes
282 unbound objects, 6512640 bytes
85 purgeable objects, 6787072 bytes
28 pinned mappable objects, 3686400 bytes
40 fault mappable objects, 27783168 bytes
2145386496 [536870912] gtt total
Xorg: 43 objects, 32243712 bytes (10223616 active, 16683008 inactive, 4096 unbound)
gnome-shell: 30 objects, 28381184 bytes (0 active, 28336128 inactive, 0 unbound)
xonotic-linux64: 1032 objects, 569933824 bytes (46874624 active, 383545344 inactive, 6508544 unbound)
v2: Use existing drm->filelist as pointed out by Ben.
v3: Not even stashing the task_struct is required as Ben pointed out
drm_file->pid.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2013-06-04 22:49:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int per_file_stats(int id, void *ptr, void *data)
|
|
|
|
{
|
|
|
|
struct drm_i915_gem_object *obj = ptr;
|
|
|
|
struct file_stats *stats = data;
|
2014-03-19 13:45:45 +00:00
|
|
|
struct i915_vma *vma;
|
drm/i915: Track clients and print their object usage in debugfs
By stashing a pointer of who opened the device and keeping a list of
open fd, we can then walk each client and inspect how many objects they
have open. For example,
i915_gem_objects:
1102 objects, 613646336 bytes
663 [662] objects, 468783104 [468750336] bytes in gtt
37 [37] active objects, 46874624 [46874624] bytes
626 [625] inactive objects, 421908480 [421875712] bytes
282 unbound objects, 6512640 bytes
85 purgeable objects, 6787072 bytes
28 pinned mappable objects, 3686400 bytes
40 fault mappable objects, 27783168 bytes
2145386496 [536870912] gtt total
Xorg: 43 objects, 32243712 bytes (10223616 active, 16683008 inactive, 4096 unbound)
gnome-shell: 30 objects, 28381184 bytes (0 active, 28336128 inactive, 0 unbound)
xonotic-linux64: 1032 objects, 569933824 bytes (46874624 active, 383545344 inactive, 6508544 unbound)
v2: Use existing drm->filelist as pointed out by Ben.
v3: Not even stashing the task_struct is required as Ben pointed out
drm_file->pid.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2013-06-04 22:49:08 +00:00
|
|
|
|
|
|
|
stats->count++;
|
|
|
|
stats->total += obj->base.size;
|
2016-08-04 06:52:26 +00:00
|
|
|
if (!obj->bind_count)
|
|
|
|
stats->unbound += obj->base.size;
|
2014-03-19 13:45:46 +00:00
|
|
|
if (obj->base.name || obj->base.dma_buf)
|
|
|
|
stats->shared += obj->base.size;
|
|
|
|
|
2016-08-04 06:52:20 +00:00
|
|
|
list_for_each_entry(vma, &obj->vma_list, obj_link) {
|
|
|
|
if (!drm_mm_node_allocated(&vma->node))
|
|
|
|
continue;
|
2014-03-19 13:45:45 +00:00
|
|
|
|
2016-08-04 15:32:32 +00:00
|
|
|
if (i915_vma_is_ggtt(vma)) {
|
2016-08-04 06:52:20 +00:00
|
|
|
stats->global += vma->node.size;
|
|
|
|
} else {
|
|
|
|
struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vma->vm);
|
2014-03-19 13:45:45 +00:00
|
|
|
|
2016-08-04 06:52:25 +00:00
|
|
|
if (ppgtt->base.file != stats->file_priv)
|
2014-03-19 13:45:45 +00:00
|
|
|
continue;
|
|
|
|
}
|
2016-08-04 06:52:20 +00:00
|
|
|
|
2016-08-04 06:52:44 +00:00
|
|
|
if (i915_vma_is_active(vma))
|
2016-08-04 06:52:20 +00:00
|
|
|
stats->active += vma->node.size;
|
|
|
|
else
|
|
|
|
stats->inactive += vma->node.size;
|
drm/i915: Track clients and print their object usage in debugfs
By stashing a pointer of who opened the device and keeping a list of
open fd, we can then walk each client and inspect how many objects they
have open. For example,
i915_gem_objects:
1102 objects, 613646336 bytes
663 [662] objects, 468783104 [468750336] bytes in gtt
37 [37] active objects, 46874624 [46874624] bytes
626 [625] inactive objects, 421908480 [421875712] bytes
282 unbound objects, 6512640 bytes
85 purgeable objects, 6787072 bytes
28 pinned mappable objects, 3686400 bytes
40 fault mappable objects, 27783168 bytes
2145386496 [536870912] gtt total
Xorg: 43 objects, 32243712 bytes (10223616 active, 16683008 inactive, 4096 unbound)
gnome-shell: 30 objects, 28381184 bytes (0 active, 28336128 inactive, 0 unbound)
xonotic-linux64: 1032 objects, 569933824 bytes (46874624 active, 383545344 inactive, 6508544 unbound)
v2: Use existing drm->filelist as pointed out by Ben.
v3: Not even stashing the task_struct is required as Ben pointed out
drm_file->pid.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2013-06-04 22:49:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-04-07 15:20:40 +00:00
|
|
|
#define print_file_stats(m, name, stats) do { \
|
|
|
|
if (stats.count) \
|
2015-06-25 15:35:05 +00:00
|
|
|
seq_printf(m, "%s: %lu objects, %llu bytes (%llu active, %llu inactive, %llu global, %llu shared, %llu unbound)\n", \
|
2015-04-07 15:20:40 +00:00
|
|
|
name, \
|
|
|
|
stats.count, \
|
|
|
|
stats.total, \
|
|
|
|
stats.active, \
|
|
|
|
stats.inactive, \
|
|
|
|
stats.global, \
|
|
|
|
stats.shared, \
|
|
|
|
stats.unbound); \
|
|
|
|
} while (0)
|
2014-12-11 20:13:08 +00:00
|
|
|
|
|
|
|
static void print_batch_pool_stats(struct seq_file *m,
|
|
|
|
struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
struct drm_i915_gem_object *obj;
|
|
|
|
struct file_stats stats;
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
enum intel_engine_id id;
|
2016-03-24 11:20:38 +00:00
|
|
|
int j;
|
2014-12-11 20:13:08 +00:00
|
|
|
|
|
|
|
memset(&stats, 0, sizeof(stats));
|
|
|
|
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id) {
|
2016-03-16 11:00:36 +00:00
|
|
|
for (j = 0; j < ARRAY_SIZE(engine->batch_pool.cache_list); j++) {
|
2015-04-07 15:20:38 +00:00
|
|
|
list_for_each_entry(obj,
|
2016-03-16 11:00:36 +00:00
|
|
|
&engine->batch_pool.cache_list[j],
|
2015-04-07 15:20:38 +00:00
|
|
|
batch_pool_link)
|
|
|
|
per_file_stats(0, obj, &stats);
|
|
|
|
}
|
2015-04-07 15:20:36 +00:00
|
|
|
}
|
2014-12-11 20:13:08 +00:00
|
|
|
|
2015-04-07 15:20:40 +00:00
|
|
|
print_file_stats(m, "[k]batch pool", stats);
|
2014-12-11 20:13:08 +00:00
|
|
|
}
|
|
|
|
|
2016-05-24 13:53:43 +00:00
|
|
|
static int per_file_ctx_stats(int id, void *ptr, void *data)
|
|
|
|
{
|
|
|
|
struct i915_gem_context *ctx = ptr;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
for (n = 0; n < ARRAY_SIZE(ctx->engine); n++) {
|
|
|
|
if (ctx->engine[n].state)
|
2016-08-15 09:48:54 +00:00
|
|
|
per_file_stats(0, ctx->engine[n].state->obj, data);
|
2016-08-02 21:50:20 +00:00
|
|
|
if (ctx->engine[n].ring)
|
2016-08-15 09:48:57 +00:00
|
|
|
per_file_stats(0, ctx->engine[n].ring->vma->obj, data);
|
2016-05-24 13:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_context_stats(struct seq_file *m,
|
|
|
|
struct drm_i915_private *dev_priv)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2016-05-24 13:53:43 +00:00
|
|
|
struct file_stats stats;
|
|
|
|
struct drm_file *file;
|
|
|
|
|
|
|
|
memset(&stats, 0, sizeof(stats));
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
mutex_lock(&dev->struct_mutex);
|
2016-05-24 13:53:43 +00:00
|
|
|
if (dev_priv->kernel_context)
|
|
|
|
per_file_ctx_stats(0, dev_priv->kernel_context, &stats);
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
list_for_each_entry(file, &dev->filelist, lhead) {
|
2016-05-24 13:53:43 +00:00
|
|
|
struct drm_i915_file_private *fpriv = file->driver_priv;
|
|
|
|
idr_for_each(&fpriv->context_idr, per_file_ctx_stats, &stats);
|
|
|
|
}
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2016-05-24 13:53:43 +00:00
|
|
|
|
|
|
|
print_file_stats(m, "[k]contexts", stats);
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static int i915_gem_object_info(struct seq_file *m, void *data)
|
2010-09-30 10:46:12 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2016-03-30 13:57:10 +00:00
|
|
|
struct i915_ggtt *ggtt = &dev_priv->ggtt;
|
2016-08-15 09:48:45 +00:00
|
|
|
u32 count, mapped_count, purgeable_count, dpy_count;
|
|
|
|
u64 size, mapped_size, purgeable_size, dpy_size;
|
2010-11-24 12:23:44 +00:00
|
|
|
struct drm_i915_gem_object *obj;
|
drm/i915: Track clients and print their object usage in debugfs
By stashing a pointer of who opened the device and keeping a list of
open fd, we can then walk each client and inspect how many objects they
have open. For example,
i915_gem_objects:
1102 objects, 613646336 bytes
663 [662] objects, 468783104 [468750336] bytes in gtt
37 [37] active objects, 46874624 [46874624] bytes
626 [625] inactive objects, 421908480 [421875712] bytes
282 unbound objects, 6512640 bytes
85 purgeable objects, 6787072 bytes
28 pinned mappable objects, 3686400 bytes
40 fault mappable objects, 27783168 bytes
2145386496 [536870912] gtt total
Xorg: 43 objects, 32243712 bytes (10223616 active, 16683008 inactive, 4096 unbound)
gnome-shell: 30 objects, 28381184 bytes (0 active, 28336128 inactive, 0 unbound)
xonotic-linux64: 1032 objects, 569933824 bytes (46874624 active, 383545344 inactive, 6508544 unbound)
v2: Use existing drm->filelist as pointed out by Ben.
v3: Not even stashing the task_struct is required as Ben pointed out
drm_file->pid.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2013-06-04 22:49:08 +00:00
|
|
|
struct drm_file *file;
|
2010-09-30 10:46:12 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2016-10-18 12:02:48 +00:00
|
|
|
seq_printf(m, "%u objects, %llu bytes\n",
|
2010-11-24 12:23:44 +00:00
|
|
|
dev_priv->mm.object_count,
|
|
|
|
dev_priv->mm.object_memory);
|
|
|
|
|
2016-08-15 12:18:16 +00:00
|
|
|
size = count = 0;
|
|
|
|
mapped_size = mapped_count = 0;
|
|
|
|
purgeable_size = purgeable_count = 0;
|
2013-05-31 18:28:48 +00:00
|
|
|
list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
|
2016-08-15 09:48:45 +00:00
|
|
|
size += obj->base.size;
|
|
|
|
++count;
|
|
|
|
|
2016-10-28 12:58:35 +00:00
|
|
|
if (obj->mm.madv == I915_MADV_DONTNEED) {
|
2016-08-15 09:48:45 +00:00
|
|
|
purgeable_size += obj->base.size;
|
|
|
|
++purgeable_count;
|
|
|
|
}
|
|
|
|
|
2016-10-28 12:58:35 +00:00
|
|
|
if (obj->mm.mapping) {
|
2016-08-15 09:48:45 +00:00
|
|
|
mapped_count++;
|
|
|
|
mapped_size += obj->base.size;
|
2016-04-15 10:34:53 +00:00
|
|
|
}
|
2012-08-20 09:33:30 +00:00
|
|
|
}
|
2015-06-25 15:35:05 +00:00
|
|
|
seq_printf(m, "%u unbound objects, %llu bytes\n", count, size);
|
drm/i915: Track unbound pages
When dealing with a working set larger than the GATT, or even the
mappable aperture when touching through the GTT, we end up with evicting
objects only to rebind them at a new offset again later. Moving an
object into and out of the GTT requires clflushing the pages, thus
causing a double-clflush penalty for rebinding.
To avoid having to clflush on rebinding, we can track the pages as they
are evicted from the GTT and only relinquish those pages on memory
pressure.
As usual, if it were not for the handling of out-of-memory condition and
having to manually shrink our own bo caches, it would be a net reduction
of code. Alas.
Note: The patch also contains a few changes to the last-hope
evict_everything logic in i916_gem_execbuffer.c - we no longer try to
only evict the purgeable stuff in a first try (since that's superflous
and only helps in OOM corner-cases, not fragmented-gtt trashing
situations).
Also, the extraction of the get_pages retry loop from bind_to_gtt (and
other callsites) to get_pages should imo have been a separate patch.
v2: Ditch the newly added put_pages (for unbound objects only) in
i915_gem_reset. A quick irc discussion hasn't revealed any important
reason for this, so if we need this, I'd like to have a git blame'able
explanation for it.
v3: Undo the s/drm_malloc_ab/kmalloc/ in get_pages that Chris noticed.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
[danvet: Split out code movements and rant a bit in the commit message
with a few Notes. Done v2]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-08-20 09:40:46 +00:00
|
|
|
|
2016-08-15 09:48:45 +00:00
|
|
|
size = count = dpy_size = dpy_count = 0;
|
2013-05-31 18:28:48 +00:00
|
|
|
list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
|
2016-08-15 09:48:45 +00:00
|
|
|
size += obj->base.size;
|
|
|
|
++count;
|
|
|
|
|
2015-04-07 16:28:24 +00:00
|
|
|
if (obj->pin_display) {
|
2016-08-15 09:48:45 +00:00
|
|
|
dpy_size += obj->base.size;
|
|
|
|
++dpy_count;
|
2010-11-24 12:23:44 +00:00
|
|
|
}
|
2016-08-15 09:48:45 +00:00
|
|
|
|
2016-10-28 12:58:35 +00:00
|
|
|
if (obj->mm.madv == I915_MADV_DONTNEED) {
|
2012-08-20 09:33:30 +00:00
|
|
|
purgeable_size += obj->base.size;
|
|
|
|
++purgeable_count;
|
|
|
|
}
|
2016-08-15 09:48:45 +00:00
|
|
|
|
2016-10-28 12:58:35 +00:00
|
|
|
if (obj->mm.mapping) {
|
2016-08-15 09:48:45 +00:00
|
|
|
mapped_count++;
|
|
|
|
mapped_size += obj->base.size;
|
2016-04-15 10:34:53 +00:00
|
|
|
}
|
2010-11-24 12:23:44 +00:00
|
|
|
}
|
2016-08-15 09:48:45 +00:00
|
|
|
seq_printf(m, "%u bound objects, %llu bytes\n",
|
|
|
|
count, size);
|
2015-06-25 15:35:05 +00:00
|
|
|
seq_printf(m, "%u purgeable objects, %llu bytes\n",
|
2012-08-20 09:33:30 +00:00
|
|
|
purgeable_count, purgeable_size);
|
2016-08-15 09:48:45 +00:00
|
|
|
seq_printf(m, "%u mapped objects, %llu bytes\n",
|
|
|
|
mapped_count, mapped_size);
|
|
|
|
seq_printf(m, "%u display objects (pinned), %llu bytes\n",
|
|
|
|
dpy_count, dpy_size);
|
2010-11-24 12:23:44 +00:00
|
|
|
|
2015-06-25 15:35:05 +00:00
|
|
|
seq_printf(m, "%llu [%llu] gtt total\n",
|
2016-03-30 13:57:10 +00:00
|
|
|
ggtt->base.total, ggtt->mappable_end - ggtt->base.start);
|
2010-09-30 10:46:12 +00:00
|
|
|
|
2014-12-11 20:13:08 +00:00
|
|
|
seq_putc(m, '\n');
|
|
|
|
print_batch_pool_stats(m, dev_priv);
|
2016-04-26 17:29:41 +00:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
mutex_lock(&dev->filelist_mutex);
|
2016-05-24 13:53:43 +00:00
|
|
|
print_context_stats(m, dev_priv);
|
drm/i915: Track clients and print their object usage in debugfs
By stashing a pointer of who opened the device and keeping a list of
open fd, we can then walk each client and inspect how many objects they
have open. For example,
i915_gem_objects:
1102 objects, 613646336 bytes
663 [662] objects, 468783104 [468750336] bytes in gtt
37 [37] active objects, 46874624 [46874624] bytes
626 [625] inactive objects, 421908480 [421875712] bytes
282 unbound objects, 6512640 bytes
85 purgeable objects, 6787072 bytes
28 pinned mappable objects, 3686400 bytes
40 fault mappable objects, 27783168 bytes
2145386496 [536870912] gtt total
Xorg: 43 objects, 32243712 bytes (10223616 active, 16683008 inactive, 4096 unbound)
gnome-shell: 30 objects, 28381184 bytes (0 active, 28336128 inactive, 0 unbound)
xonotic-linux64: 1032 objects, 569933824 bytes (46874624 active, 383545344 inactive, 6508544 unbound)
v2: Use existing drm->filelist as pointed out by Ben.
v3: Not even stashing the task_struct is required as Ben pointed out
drm_file->pid.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2013-06-04 22:49:08 +00:00
|
|
|
list_for_each_entry_reverse(file, &dev->filelist, lhead) {
|
|
|
|
struct file_stats stats;
|
2016-08-15 09:49:08 +00:00
|
|
|
struct drm_i915_file_private *file_priv = file->driver_priv;
|
|
|
|
struct drm_i915_gem_request *request;
|
2014-01-03 11:42:18 +00:00
|
|
|
struct task_struct *task;
|
drm/i915: Track clients and print their object usage in debugfs
By stashing a pointer of who opened the device and keeping a list of
open fd, we can then walk each client and inspect how many objects they
have open. For example,
i915_gem_objects:
1102 objects, 613646336 bytes
663 [662] objects, 468783104 [468750336] bytes in gtt
37 [37] active objects, 46874624 [46874624] bytes
626 [625] inactive objects, 421908480 [421875712] bytes
282 unbound objects, 6512640 bytes
85 purgeable objects, 6787072 bytes
28 pinned mappable objects, 3686400 bytes
40 fault mappable objects, 27783168 bytes
2145386496 [536870912] gtt total
Xorg: 43 objects, 32243712 bytes (10223616 active, 16683008 inactive, 4096 unbound)
gnome-shell: 30 objects, 28381184 bytes (0 active, 28336128 inactive, 0 unbound)
xonotic-linux64: 1032 objects, 569933824 bytes (46874624 active, 383545344 inactive, 6508544 unbound)
v2: Use existing drm->filelist as pointed out by Ben.
v3: Not even stashing the task_struct is required as Ben pointed out
drm_file->pid.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2013-06-04 22:49:08 +00:00
|
|
|
|
|
|
|
memset(&stats, 0, sizeof(stats));
|
2014-03-19 13:45:45 +00:00
|
|
|
stats.file_priv = file->driver_priv;
|
2014-06-17 08:56:24 +00:00
|
|
|
spin_lock(&file->table_lock);
|
drm/i915: Track clients and print their object usage in debugfs
By stashing a pointer of who opened the device and keeping a list of
open fd, we can then walk each client and inspect how many objects they
have open. For example,
i915_gem_objects:
1102 objects, 613646336 bytes
663 [662] objects, 468783104 [468750336] bytes in gtt
37 [37] active objects, 46874624 [46874624] bytes
626 [625] inactive objects, 421908480 [421875712] bytes
282 unbound objects, 6512640 bytes
85 purgeable objects, 6787072 bytes
28 pinned mappable objects, 3686400 bytes
40 fault mappable objects, 27783168 bytes
2145386496 [536870912] gtt total
Xorg: 43 objects, 32243712 bytes (10223616 active, 16683008 inactive, 4096 unbound)
gnome-shell: 30 objects, 28381184 bytes (0 active, 28336128 inactive, 0 unbound)
xonotic-linux64: 1032 objects, 569933824 bytes (46874624 active, 383545344 inactive, 6508544 unbound)
v2: Use existing drm->filelist as pointed out by Ben.
v3: Not even stashing the task_struct is required as Ben pointed out
drm_file->pid.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2013-06-04 22:49:08 +00:00
|
|
|
idr_for_each(&file->object_idr, per_file_stats, &stats);
|
2014-06-17 08:56:24 +00:00
|
|
|
spin_unlock(&file->table_lock);
|
2014-01-03 11:42:18 +00:00
|
|
|
/*
|
|
|
|
* Although we have a valid reference on file->pid, that does
|
|
|
|
* not guarantee that the task_struct who called get_pid() is
|
|
|
|
* still alive (e.g. get_pid(current) => fork() => exit()).
|
|
|
|
* Therefore, we need to protect this ->comm access using RCU.
|
|
|
|
*/
|
2016-08-15 09:49:08 +00:00
|
|
|
mutex_lock(&dev->struct_mutex);
|
|
|
|
request = list_first_entry_or_null(&file_priv->mm.request_list,
|
|
|
|
struct drm_i915_gem_request,
|
|
|
|
client_list);
|
2014-01-03 11:42:18 +00:00
|
|
|
rcu_read_lock();
|
2016-08-15 09:49:08 +00:00
|
|
|
task = pid_task(request && request->ctx->pid ?
|
|
|
|
request->ctx->pid : file->pid,
|
|
|
|
PIDTYPE_PID);
|
2014-12-11 20:13:08 +00:00
|
|
|
print_file_stats(m, task ? task->comm : "<unknown>", stats);
|
2014-01-03 11:42:18 +00:00
|
|
|
rcu_read_unlock();
|
2016-08-15 09:49:08 +00:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
drm/i915: Track clients and print their object usage in debugfs
By stashing a pointer of who opened the device and keeping a list of
open fd, we can then walk each client and inspect how many objects they
have open. For example,
i915_gem_objects:
1102 objects, 613646336 bytes
663 [662] objects, 468783104 [468750336] bytes in gtt
37 [37] active objects, 46874624 [46874624] bytes
626 [625] inactive objects, 421908480 [421875712] bytes
282 unbound objects, 6512640 bytes
85 purgeable objects, 6787072 bytes
28 pinned mappable objects, 3686400 bytes
40 fault mappable objects, 27783168 bytes
2145386496 [536870912] gtt total
Xorg: 43 objects, 32243712 bytes (10223616 active, 16683008 inactive, 4096 unbound)
gnome-shell: 30 objects, 28381184 bytes (0 active, 28336128 inactive, 0 unbound)
xonotic-linux64: 1032 objects, 569933824 bytes (46874624 active, 383545344 inactive, 6508544 unbound)
v2: Use existing drm->filelist as pointed out by Ben.
v3: Not even stashing the task_struct is required as Ben pointed out
drm_file->pid.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2013-06-04 22:49:08 +00:00
|
|
|
}
|
2016-04-26 17:29:41 +00:00
|
|
|
mutex_unlock(&dev->filelist_mutex);
|
2010-09-30 10:46:12 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-06-24 21:59:49 +00:00
|
|
|
static int i915_gem_gtt_info(struct seq_file *m, void *data)
|
2011-01-10 00:00:24 +00:00
|
|
|
{
|
2014-05-13 14:30:28 +00:00
|
|
|
struct drm_info_node *node = m->private;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(node);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2016-08-19 11:56:25 +00:00
|
|
|
bool show_pin_display_only = !!node->info_ent->data;
|
2011-01-10 00:00:24 +00:00
|
|
|
struct drm_i915_gem_object *obj;
|
2015-06-25 15:35:05 +00:00
|
|
|
u64 total_obj_size, total_gtt_size;
|
2011-01-10 00:00:24 +00:00
|
|
|
int count, ret;
|
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
total_obj_size = total_gtt_size = count = 0;
|
2013-05-31 18:28:48 +00:00
|
|
|
list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
|
2016-08-15 09:48:44 +00:00
|
|
|
if (show_pin_display_only && !obj->pin_display)
|
2012-04-24 14:47:30 +00:00
|
|
|
continue;
|
|
|
|
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, " ");
|
2011-01-10 00:00:24 +00:00
|
|
|
describe_obj(m, obj);
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_putc(m, '\n');
|
2011-01-10 00:00:24 +00:00
|
|
|
total_obj_size += obj->base.size;
|
2015-07-01 10:51:10 +00:00
|
|
|
total_gtt_size += i915_gem_obj_total_ggtt_size(obj);
|
2011-01-10 00:00:24 +00:00
|
|
|
count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
2015-06-25 15:35:05 +00:00
|
|
|
seq_printf(m, "Total %d objects, %llu bytes, %llu GTT size\n",
|
2011-01-10 00:00:24 +00:00
|
|
|
count, total_obj_size, total_gtt_size);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-09-01 16:47:52 +00:00
|
|
|
static int i915_gem_pageflip_info(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2010-09-01 16:47:52 +00:00
|
|
|
struct intel_crtc *crtc;
|
2014-06-17 20:34:37 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2010-09-01 16:47:52 +00:00
|
|
|
|
2014-05-13 22:32:22 +00:00
|
|
|
for_each_intel_crtc(dev, crtc) {
|
2011-02-07 20:26:52 +00:00
|
|
|
const char pipe = pipe_name(crtc->pipe);
|
|
|
|
const char plane = plane_name(crtc->plane);
|
2016-05-17 13:07:49 +00:00
|
|
|
struct intel_flip_work *work;
|
2010-09-01 16:47:52 +00:00
|
|
|
|
2014-09-15 12:55:22 +00:00
|
|
|
spin_lock_irq(&dev->event_lock);
|
2016-05-24 15:13:53 +00:00
|
|
|
work = crtc->flip_work;
|
|
|
|
if (work == NULL) {
|
2011-02-07 20:26:52 +00:00
|
|
|
seq_printf(m, "No flip due on pipe %c (plane %c)\n",
|
2010-09-01 16:47:52 +00:00
|
|
|
pipe, plane);
|
|
|
|
} else {
|
2016-05-24 15:13:53 +00:00
|
|
|
u32 pending;
|
|
|
|
u32 addr;
|
|
|
|
|
|
|
|
pending = atomic_read(&work->pending);
|
|
|
|
if (pending) {
|
|
|
|
seq_printf(m, "Flip ioctl preparing on pipe %c (plane %c)\n",
|
|
|
|
pipe, plane);
|
|
|
|
} else {
|
|
|
|
seq_printf(m, "Flip pending (waiting for vsync) on pipe %c (plane %c)\n",
|
|
|
|
pipe, plane);
|
|
|
|
}
|
|
|
|
if (work->flip_queued_req) {
|
|
|
|
struct intel_engine_cs *engine = i915_gem_request_get_engine(work->flip_queued_req);
|
|
|
|
|
|
|
|
seq_printf(m, "Flip queued on %s at seqno %x, next seqno %x [current breadcrumb %x], completed? %d\n",
|
|
|
|
engine->name,
|
|
|
|
i915_gem_request_get_seqno(work->flip_queued_req),
|
2016-10-28 12:58:56 +00:00
|
|
|
atomic_read(&dev_priv->gt.global_timeline.next_seqno),
|
2016-07-01 16:23:17 +00:00
|
|
|
intel_engine_get_seqno(engine),
|
2016-07-01 16:23:16 +00:00
|
|
|
i915_gem_request_completed(work->flip_queued_req));
|
2016-05-24 15:13:53 +00:00
|
|
|
} else
|
|
|
|
seq_printf(m, "Flip not associated with any ring\n");
|
|
|
|
seq_printf(m, "Flip queued on frame %d, (was ready on frame %d), now %d\n",
|
|
|
|
work->flip_queued_vblank,
|
|
|
|
work->flip_ready_vblank,
|
|
|
|
intel_crtc_get_vblank_counter(crtc));
|
|
|
|
seq_printf(m, "%d prepares\n", atomic_read(&work->pending));
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 4)
|
2016-05-24 15:13:53 +00:00
|
|
|
addr = I915_HI_DISPBASE(I915_READ(DSPSURF(crtc->plane)));
|
|
|
|
else
|
|
|
|
addr = I915_READ(DSPADDR(crtc->plane));
|
|
|
|
seq_printf(m, "Current scanout address 0x%08x\n", addr);
|
|
|
|
|
|
|
|
if (work->pending_flip_obj) {
|
|
|
|
seq_printf(m, "New framebuffer address 0x%08lx\n", (long)work->gtt_offset);
|
|
|
|
seq_printf(m, "MMIO update completed? %d\n", addr == work->gtt_offset);
|
2010-09-01 16:47:52 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-15 12:55:22 +00:00
|
|
|
spin_unlock_irq(&dev->event_lock);
|
2010-09-01 16:47:52 +00:00
|
|
|
}
|
|
|
|
|
2014-06-17 20:34:37 +00:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
2010-09-01 16:47:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-12-11 20:13:08 +00:00
|
|
|
static int i915_gem_batch_pool_info(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2014-12-11 20:13:08 +00:00
|
|
|
struct drm_i915_gem_object *obj;
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
enum intel_engine_id id;
|
2015-04-07 15:20:38 +00:00
|
|
|
int total = 0;
|
2016-03-24 11:20:38 +00:00
|
|
|
int ret, j;
|
2014-12-11 20:13:08 +00:00
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id) {
|
2016-03-16 11:00:36 +00:00
|
|
|
for (j = 0; j < ARRAY_SIZE(engine->batch_pool.cache_list); j++) {
|
2015-04-07 15:20:38 +00:00
|
|
|
int count;
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
list_for_each_entry(obj,
|
2016-03-16 11:00:36 +00:00
|
|
|
&engine->batch_pool.cache_list[j],
|
2015-04-07 15:20:38 +00:00
|
|
|
batch_pool_link)
|
|
|
|
count++;
|
|
|
|
seq_printf(m, "%s cache[%d]: %d objects\n",
|
2016-03-16 11:00:36 +00:00
|
|
|
engine->name, j, count);
|
2015-04-07 15:20:38 +00:00
|
|
|
|
|
|
|
list_for_each_entry(obj,
|
2016-03-16 11:00:36 +00:00
|
|
|
&engine->batch_pool.cache_list[j],
|
2015-04-07 15:20:38 +00:00
|
|
|
batch_pool_link) {
|
|
|
|
seq_puts(m, " ");
|
|
|
|
describe_obj(m, obj);
|
|
|
|
seq_putc(m, '\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
total += count;
|
2015-04-07 15:20:36 +00:00
|
|
|
}
|
2014-12-11 20:13:08 +00:00
|
|
|
}
|
|
|
|
|
2015-04-07 15:20:38 +00:00
|
|
|
seq_printf(m, "total: %d\n", total);
|
2014-12-11 20:13:08 +00:00
|
|
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-04 20:11:31 +00:00
|
|
|
static void print_request(struct seq_file *m,
|
|
|
|
struct drm_i915_gem_request *rq,
|
|
|
|
const char *prefix)
|
|
|
|
{
|
2016-10-28 12:58:54 +00:00
|
|
|
seq_printf(m, "%s%x [%x:%x] @ %d: %s\n", prefix,
|
2016-10-28 12:58:49 +00:00
|
|
|
rq->global_seqno, rq->ctx->hw_id, rq->fence.seqno,
|
2016-10-04 20:11:31 +00:00
|
|
|
jiffies_to_msecs(jiffies - rq->emitted_jiffies),
|
2016-10-28 12:58:54 +00:00
|
|
|
rq->timeline->common->name);
|
2016-10-04 20:11:31 +00:00
|
|
|
}
|
|
|
|
|
2009-02-18 01:08:50 +00:00
|
|
|
static int i915_gem_request_info(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2015-05-21 12:21:25 +00:00
|
|
|
struct drm_i915_gem_request *req;
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
struct intel_engine_cs *engine;
|
|
|
|
enum intel_engine_id id;
|
2016-03-24 11:20:38 +00:00
|
|
|
int ret, any;
|
2010-07-03 06:58:38 +00:00
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2009-02-18 01:08:50 +00:00
|
|
|
|
2015-04-01 09:36:56 +00:00
|
|
|
any = 0;
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id) {
|
2015-04-01 09:36:56 +00:00
|
|
|
int count;
|
|
|
|
|
|
|
|
count = 0;
|
2016-10-28 12:58:46 +00:00
|
|
|
list_for_each_entry(req, &engine->timeline->requests, link)
|
2015-04-01 09:36:56 +00:00
|
|
|
count++;
|
|
|
|
if (count == 0)
|
2012-09-01 19:51:22 +00:00
|
|
|
continue;
|
|
|
|
|
2016-03-16 11:00:36 +00:00
|
|
|
seq_printf(m, "%s requests: %d\n", engine->name, count);
|
2016-10-28 12:58:46 +00:00
|
|
|
list_for_each_entry(req, &engine->timeline->requests, link)
|
2016-10-04 20:11:31 +00:00
|
|
|
print_request(m, req, " ");
|
2015-04-01 09:36:56 +00:00
|
|
|
|
|
|
|
any++;
|
2009-02-18 01:08:50 +00:00
|
|
|
}
|
2010-07-03 06:58:38 +00:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
2015-04-01 09:36:56 +00:00
|
|
|
if (any == 0)
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "No requests\n");
|
2010-10-27 14:11:53 +00:00
|
|
|
|
2009-02-18 01:08:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-10-27 14:27:33 +00:00
|
|
|
static void i915_ring_seqno_info(struct seq_file *m,
|
2016-03-16 11:00:37 +00:00
|
|
|
struct intel_engine_cs *engine)
|
2010-10-27 14:27:33 +00:00
|
|
|
{
|
drm/i915: Slaughter the thundering i915_wait_request herd
One particularly stressful scenario consists of many independent tasks
all competing for GPU time and waiting upon the results (e.g. realtime
transcoding of many, many streams). One bottleneck in particular is that
each client waits on its own results, but every client is woken up after
every batchbuffer - hence the thunder of hooves as then every client must
do its heavyweight dance to read a coherent seqno to see if it is the
lucky one.
Ideally, we only want one client to wake up after the interrupt and
check its request for completion. Since the requests must retire in
order, we can select the first client on the oldest request to be woken.
Once that client has completed his wait, we can then wake up the
next client and so on. However, all clients then incur latency as every
process in the chain may be delayed for scheduling - this may also then
cause some priority inversion. To reduce the latency, when a client
is added or removed from the list, we scan the tree for completed
seqno and wake up all the completed waiters in parallel.
Using igt/benchmarks/gem_latency, we can demonstrate this effect. The
benchmark measures the number of GPU cycles between completion of a
batch and the client waking up from a call to wait-ioctl. With many
concurrent waiters, with each on a different request, we observe that
the wakeup latency before the patch scales nearly linearly with the
number of waiters (before external factors kick in making the scaling much
worse). After applying the patch, we can see that only the single waiter
for the request is being woken up, providing a constant wakeup latency
for every operation. However, the situation is not quite as rosy for
many waiters on the same request, though to the best of my knowledge this
is much less likely in practice. Here, we can observe that the
concurrent waiters incur extra latency from being woken up by the
solitary bottom-half, rather than directly by the interrupt. This
appears to be scheduler induced (having discounted adverse effects from
having a rbtree walk/erase in the wakeup path), each additional
wake_up_process() costs approximately 1us on big core. Another effect of
performing the secondary wakeups from the first bottom-half is the
incurred delay this imposes on high priority threads - rather than
immediately returning to userspace and leaving the interrupt handler to
wake the others.
To offset the delay incurred with additional waiters on a request, we
could use a hybrid scheme that did a quick read in the interrupt handler
and dequeued all the completed waiters (incurring the overhead in the
interrupt handler, not the best plan either as we then incur GPU
submission latency) but we would still have to wake up the bottom-half
every time to do the heavyweight slow read. Or we could only kick the
waiters on the seqno with the same priority as the current task (i.e. in
the realtime waiter scenario, only it is woken up immediately by the
interrupt and simply queues the next waiter before returning to userspace,
minimising its delay at the expense of the chain, and also reducing
contention on its scheduler runqueue). This is effective at avoid long
pauses in the interrupt handler and at avoiding the extra latency in
realtime/high-priority waiters.
v2: Convert from a kworker per engine into a dedicated kthread for the
bottom-half.
v3: Rename request members and tweak comments.
v4: Use a per-engine spinlock in the breadcrumbs bottom-half.
v5: Fix race in locklessly checking waiter status and kicking the task on
adding a new waiter.
v6: Fix deciding when to force the timer to hide missing interrupts.
v7: Move the bottom-half from the kthread to the first client process.
v8: Reword a few comments
v9: Break the busy loop when the interrupt is unmasked or has fired.
v10: Comments, unnecessary churn, better debugging from Tvrtko
v11: Wake all completed waiters on removing the current bottom-half to
reduce the latency of waking up a herd of clients all waiting on the
same request.
v12: Rearrange missed-interrupt fault injection so that it works with
igt/drv_missed_irq_hang
v13: Rename intel_breadcrumb and friends to intel_wait in preparation
for signal handling.
v14: RCU commentary, assert_spin_locked
v15: Hide BUG_ON behind the compiler; report on gem_latency findings.
v16: Sort seqno-groups by priority so that first-waiter has the highest
task priority (and so avoid priority inversion).
v17: Add waiters to post-mortem GPU hang state.
v18: Return early for a completed wait after acquiring the spinlock.
Avoids adding ourselves to the tree if the is already complete, and
skips the awkward question of why we don't do completion wakeups for
waits earlier than or equal to ourselves.
v19: Prepare for init_breadcrumbs to fail. Later patches may want to
allocate during init, so be prepared to propagate back the error code.
Testcase: igt/gem_concurrent_blit
Testcase: igt/benchmarks/gem_latency
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: "Rogozhkin, Dmitry V" <dmitry.v.rogozhkin@intel.com>
Cc: "Gong, Zhipeng" <zhipeng.gong@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Dave Gordon <david.s.gordon@intel.com>
Cc: "Goel, Akash" <akash.goel@intel.com>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> #v18
Link: http://patchwork.freedesktop.org/patch/msgid/1467390209-3576-6-git-send-email-chris@chris-wilson.co.uk
2016-07-01 16:23:15 +00:00
|
|
|
struct intel_breadcrumbs *b = &engine->breadcrumbs;
|
|
|
|
struct rb_node *rb;
|
|
|
|
|
2016-04-09 09:57:55 +00:00
|
|
|
seq_printf(m, "Current sequence (%s): %x\n",
|
2016-07-01 16:23:17 +00:00
|
|
|
engine->name, intel_engine_get_seqno(engine));
|
drm/i915: Slaughter the thundering i915_wait_request herd
One particularly stressful scenario consists of many independent tasks
all competing for GPU time and waiting upon the results (e.g. realtime
transcoding of many, many streams). One bottleneck in particular is that
each client waits on its own results, but every client is woken up after
every batchbuffer - hence the thunder of hooves as then every client must
do its heavyweight dance to read a coherent seqno to see if it is the
lucky one.
Ideally, we only want one client to wake up after the interrupt and
check its request for completion. Since the requests must retire in
order, we can select the first client on the oldest request to be woken.
Once that client has completed his wait, we can then wake up the
next client and so on. However, all clients then incur latency as every
process in the chain may be delayed for scheduling - this may also then
cause some priority inversion. To reduce the latency, when a client
is added or removed from the list, we scan the tree for completed
seqno and wake up all the completed waiters in parallel.
Using igt/benchmarks/gem_latency, we can demonstrate this effect. The
benchmark measures the number of GPU cycles between completion of a
batch and the client waking up from a call to wait-ioctl. With many
concurrent waiters, with each on a different request, we observe that
the wakeup latency before the patch scales nearly linearly with the
number of waiters (before external factors kick in making the scaling much
worse). After applying the patch, we can see that only the single waiter
for the request is being woken up, providing a constant wakeup latency
for every operation. However, the situation is not quite as rosy for
many waiters on the same request, though to the best of my knowledge this
is much less likely in practice. Here, we can observe that the
concurrent waiters incur extra latency from being woken up by the
solitary bottom-half, rather than directly by the interrupt. This
appears to be scheduler induced (having discounted adverse effects from
having a rbtree walk/erase in the wakeup path), each additional
wake_up_process() costs approximately 1us on big core. Another effect of
performing the secondary wakeups from the first bottom-half is the
incurred delay this imposes on high priority threads - rather than
immediately returning to userspace and leaving the interrupt handler to
wake the others.
To offset the delay incurred with additional waiters on a request, we
could use a hybrid scheme that did a quick read in the interrupt handler
and dequeued all the completed waiters (incurring the overhead in the
interrupt handler, not the best plan either as we then incur GPU
submission latency) but we would still have to wake up the bottom-half
every time to do the heavyweight slow read. Or we could only kick the
waiters on the seqno with the same priority as the current task (i.e. in
the realtime waiter scenario, only it is woken up immediately by the
interrupt and simply queues the next waiter before returning to userspace,
minimising its delay at the expense of the chain, and also reducing
contention on its scheduler runqueue). This is effective at avoid long
pauses in the interrupt handler and at avoiding the extra latency in
realtime/high-priority waiters.
v2: Convert from a kworker per engine into a dedicated kthread for the
bottom-half.
v3: Rename request members and tweak comments.
v4: Use a per-engine spinlock in the breadcrumbs bottom-half.
v5: Fix race in locklessly checking waiter status and kicking the task on
adding a new waiter.
v6: Fix deciding when to force the timer to hide missing interrupts.
v7: Move the bottom-half from the kthread to the first client process.
v8: Reword a few comments
v9: Break the busy loop when the interrupt is unmasked or has fired.
v10: Comments, unnecessary churn, better debugging from Tvrtko
v11: Wake all completed waiters on removing the current bottom-half to
reduce the latency of waking up a herd of clients all waiting on the
same request.
v12: Rearrange missed-interrupt fault injection so that it works with
igt/drv_missed_irq_hang
v13: Rename intel_breadcrumb and friends to intel_wait in preparation
for signal handling.
v14: RCU commentary, assert_spin_locked
v15: Hide BUG_ON behind the compiler; report on gem_latency findings.
v16: Sort seqno-groups by priority so that first-waiter has the highest
task priority (and so avoid priority inversion).
v17: Add waiters to post-mortem GPU hang state.
v18: Return early for a completed wait after acquiring the spinlock.
Avoids adding ourselves to the tree if the is already complete, and
skips the awkward question of why we don't do completion wakeups for
waits earlier than or equal to ourselves.
v19: Prepare for init_breadcrumbs to fail. Later patches may want to
allocate during init, so be prepared to propagate back the error code.
Testcase: igt/gem_concurrent_blit
Testcase: igt/benchmarks/gem_latency
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: "Rogozhkin, Dmitry V" <dmitry.v.rogozhkin@intel.com>
Cc: "Gong, Zhipeng" <zhipeng.gong@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Dave Gordon <david.s.gordon@intel.com>
Cc: "Goel, Akash" <akash.goel@intel.com>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> #v18
Link: http://patchwork.freedesktop.org/patch/msgid/1467390209-3576-6-git-send-email-chris@chris-wilson.co.uk
2016-07-01 16:23:15 +00:00
|
|
|
|
2016-10-28 12:58:55 +00:00
|
|
|
spin_lock_irq(&b->lock);
|
drm/i915: Slaughter the thundering i915_wait_request herd
One particularly stressful scenario consists of many independent tasks
all competing for GPU time and waiting upon the results (e.g. realtime
transcoding of many, many streams). One bottleneck in particular is that
each client waits on its own results, but every client is woken up after
every batchbuffer - hence the thunder of hooves as then every client must
do its heavyweight dance to read a coherent seqno to see if it is the
lucky one.
Ideally, we only want one client to wake up after the interrupt and
check its request for completion. Since the requests must retire in
order, we can select the first client on the oldest request to be woken.
Once that client has completed his wait, we can then wake up the
next client and so on. However, all clients then incur latency as every
process in the chain may be delayed for scheduling - this may also then
cause some priority inversion. To reduce the latency, when a client
is added or removed from the list, we scan the tree for completed
seqno and wake up all the completed waiters in parallel.
Using igt/benchmarks/gem_latency, we can demonstrate this effect. The
benchmark measures the number of GPU cycles between completion of a
batch and the client waking up from a call to wait-ioctl. With many
concurrent waiters, with each on a different request, we observe that
the wakeup latency before the patch scales nearly linearly with the
number of waiters (before external factors kick in making the scaling much
worse). After applying the patch, we can see that only the single waiter
for the request is being woken up, providing a constant wakeup latency
for every operation. However, the situation is not quite as rosy for
many waiters on the same request, though to the best of my knowledge this
is much less likely in practice. Here, we can observe that the
concurrent waiters incur extra latency from being woken up by the
solitary bottom-half, rather than directly by the interrupt. This
appears to be scheduler induced (having discounted adverse effects from
having a rbtree walk/erase in the wakeup path), each additional
wake_up_process() costs approximately 1us on big core. Another effect of
performing the secondary wakeups from the first bottom-half is the
incurred delay this imposes on high priority threads - rather than
immediately returning to userspace and leaving the interrupt handler to
wake the others.
To offset the delay incurred with additional waiters on a request, we
could use a hybrid scheme that did a quick read in the interrupt handler
and dequeued all the completed waiters (incurring the overhead in the
interrupt handler, not the best plan either as we then incur GPU
submission latency) but we would still have to wake up the bottom-half
every time to do the heavyweight slow read. Or we could only kick the
waiters on the seqno with the same priority as the current task (i.e. in
the realtime waiter scenario, only it is woken up immediately by the
interrupt and simply queues the next waiter before returning to userspace,
minimising its delay at the expense of the chain, and also reducing
contention on its scheduler runqueue). This is effective at avoid long
pauses in the interrupt handler and at avoiding the extra latency in
realtime/high-priority waiters.
v2: Convert from a kworker per engine into a dedicated kthread for the
bottom-half.
v3: Rename request members and tweak comments.
v4: Use a per-engine spinlock in the breadcrumbs bottom-half.
v5: Fix race in locklessly checking waiter status and kicking the task on
adding a new waiter.
v6: Fix deciding when to force the timer to hide missing interrupts.
v7: Move the bottom-half from the kthread to the first client process.
v8: Reword a few comments
v9: Break the busy loop when the interrupt is unmasked or has fired.
v10: Comments, unnecessary churn, better debugging from Tvrtko
v11: Wake all completed waiters on removing the current bottom-half to
reduce the latency of waking up a herd of clients all waiting on the
same request.
v12: Rearrange missed-interrupt fault injection so that it works with
igt/drv_missed_irq_hang
v13: Rename intel_breadcrumb and friends to intel_wait in preparation
for signal handling.
v14: RCU commentary, assert_spin_locked
v15: Hide BUG_ON behind the compiler; report on gem_latency findings.
v16: Sort seqno-groups by priority so that first-waiter has the highest
task priority (and so avoid priority inversion).
v17: Add waiters to post-mortem GPU hang state.
v18: Return early for a completed wait after acquiring the spinlock.
Avoids adding ourselves to the tree if the is already complete, and
skips the awkward question of why we don't do completion wakeups for
waits earlier than or equal to ourselves.
v19: Prepare for init_breadcrumbs to fail. Later patches may want to
allocate during init, so be prepared to propagate back the error code.
Testcase: igt/gem_concurrent_blit
Testcase: igt/benchmarks/gem_latency
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: "Rogozhkin, Dmitry V" <dmitry.v.rogozhkin@intel.com>
Cc: "Gong, Zhipeng" <zhipeng.gong@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Dave Gordon <david.s.gordon@intel.com>
Cc: "Goel, Akash" <akash.goel@intel.com>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> #v18
Link: http://patchwork.freedesktop.org/patch/msgid/1467390209-3576-6-git-send-email-chris@chris-wilson.co.uk
2016-07-01 16:23:15 +00:00
|
|
|
for (rb = rb_first(&b->waiters); rb; rb = rb_next(rb)) {
|
|
|
|
struct intel_wait *w = container_of(rb, typeof(*w), node);
|
|
|
|
|
|
|
|
seq_printf(m, "Waiting (%s): %s [%d] on %x\n",
|
|
|
|
engine->name, w->tsk->comm, w->tsk->pid, w->seqno);
|
|
|
|
}
|
2016-10-28 12:58:55 +00:00
|
|
|
spin_unlock_irq(&b->lock);
|
2010-10-27 14:27:33 +00:00
|
|
|
}
|
|
|
|
|
2009-02-18 01:08:50 +00:00
|
|
|
static int i915_gem_seqno_info(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
enum intel_engine_id id;
|
2009-02-18 01:08:50 +00:00
|
|
|
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id)
|
2016-03-16 11:00:36 +00:00
|
|
|
i915_ring_seqno_info(m, engine);
|
2010-07-03 06:58:38 +00:00
|
|
|
|
2009-02-18 01:08:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int i915_interrupt_info(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
enum intel_engine_id id;
|
2016-09-03 06:53:43 +00:00
|
|
|
int i, pipe;
|
2010-07-03 06:58:38 +00:00
|
|
|
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
2009-02-18 01:08:50 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_CHERRYVIEW(dev_priv)) {
|
2014-04-09 10:28:09 +00:00
|
|
|
seq_printf(m, "Master Interrupt Control:\t%08x\n",
|
|
|
|
I915_READ(GEN8_MASTER_IRQ));
|
|
|
|
|
|
|
|
seq_printf(m, "Display IER:\t%08x\n",
|
|
|
|
I915_READ(VLV_IER));
|
|
|
|
seq_printf(m, "Display IIR:\t%08x\n",
|
|
|
|
I915_READ(VLV_IIR));
|
|
|
|
seq_printf(m, "Display IIR_RW:\t%08x\n",
|
|
|
|
I915_READ(VLV_IIR_RW));
|
|
|
|
seq_printf(m, "Display IMR:\t%08x\n",
|
|
|
|
I915_READ(VLV_IMR));
|
2016-10-24 12:42:15 +00:00
|
|
|
for_each_pipe(dev_priv, pipe) {
|
|
|
|
enum intel_display_power_domain power_domain;
|
|
|
|
|
|
|
|
power_domain = POWER_DOMAIN_PIPE(pipe);
|
|
|
|
if (!intel_display_power_get_if_enabled(dev_priv,
|
|
|
|
power_domain)) {
|
|
|
|
seq_printf(m, "Pipe %c power disabled\n",
|
|
|
|
pipe_name(pipe));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-04-09 10:28:09 +00:00
|
|
|
seq_printf(m, "Pipe %c stat:\t%08x\n",
|
|
|
|
pipe_name(pipe),
|
|
|
|
I915_READ(PIPESTAT(pipe)));
|
|
|
|
|
2016-10-24 12:42:15 +00:00
|
|
|
intel_display_power_put(dev_priv, power_domain);
|
|
|
|
}
|
|
|
|
|
|
|
|
intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
|
2014-04-09 10:28:09 +00:00
|
|
|
seq_printf(m, "Port hotplug:\t%08x\n",
|
|
|
|
I915_READ(PORT_HOTPLUG_EN));
|
|
|
|
seq_printf(m, "DPFLIPSTAT:\t%08x\n",
|
|
|
|
I915_READ(VLV_DPFLIPSTAT));
|
|
|
|
seq_printf(m, "DPINVGTT:\t%08x\n",
|
|
|
|
I915_READ(DPINVGTT));
|
2016-10-24 12:42:15 +00:00
|
|
|
intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
|
2014-04-09 10:28:09 +00:00
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
seq_printf(m, "GT Interrupt IMR %d:\t%08x\n",
|
|
|
|
i, I915_READ(GEN8_GT_IMR(i)));
|
|
|
|
seq_printf(m, "GT Interrupt IIR %d:\t%08x\n",
|
|
|
|
i, I915_READ(GEN8_GT_IIR(i)));
|
|
|
|
seq_printf(m, "GT Interrupt IER %d:\t%08x\n",
|
|
|
|
i, I915_READ(GEN8_GT_IER(i)));
|
|
|
|
}
|
|
|
|
|
|
|
|
seq_printf(m, "PCU interrupt mask:\t%08x\n",
|
|
|
|
I915_READ(GEN8_PCU_IMR));
|
|
|
|
seq_printf(m, "PCU interrupt identity:\t%08x\n",
|
|
|
|
I915_READ(GEN8_PCU_IIR));
|
|
|
|
seq_printf(m, "PCU interrupt enable:\t%08x\n",
|
|
|
|
I915_READ(GEN8_PCU_IER));
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
} else if (INTEL_GEN(dev_priv) >= 8) {
|
2013-11-03 04:07:10 +00:00
|
|
|
seq_printf(m, "Master Interrupt Control:\t%08x\n",
|
|
|
|
I915_READ(GEN8_MASTER_IRQ));
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
seq_printf(m, "GT Interrupt IMR %d:\t%08x\n",
|
|
|
|
i, I915_READ(GEN8_GT_IMR(i)));
|
|
|
|
seq_printf(m, "GT Interrupt IIR %d:\t%08x\n",
|
|
|
|
i, I915_READ(GEN8_GT_IIR(i)));
|
|
|
|
seq_printf(m, "GT Interrupt IER %d:\t%08x\n",
|
|
|
|
i, I915_READ(GEN8_GT_IER(i)));
|
|
|
|
}
|
|
|
|
|
2014-08-18 12:49:10 +00:00
|
|
|
for_each_pipe(dev_priv, pipe) {
|
2016-02-12 16:55:17 +00:00
|
|
|
enum intel_display_power_domain power_domain;
|
|
|
|
|
|
|
|
power_domain = POWER_DOMAIN_PIPE(pipe);
|
|
|
|
if (!intel_display_power_get_if_enabled(dev_priv,
|
|
|
|
power_domain)) {
|
2014-08-08 20:45:32 +00:00
|
|
|
seq_printf(m, "Pipe %c power disabled\n",
|
|
|
|
pipe_name(pipe));
|
|
|
|
continue;
|
|
|
|
}
|
2013-11-03 04:07:10 +00:00
|
|
|
seq_printf(m, "Pipe %c IMR:\t%08x\n",
|
2014-03-03 17:31:46 +00:00
|
|
|
pipe_name(pipe),
|
|
|
|
I915_READ(GEN8_DE_PIPE_IMR(pipe)));
|
2013-11-03 04:07:10 +00:00
|
|
|
seq_printf(m, "Pipe %c IIR:\t%08x\n",
|
2014-03-03 17:31:46 +00:00
|
|
|
pipe_name(pipe),
|
|
|
|
I915_READ(GEN8_DE_PIPE_IIR(pipe)));
|
2013-11-03 04:07:10 +00:00
|
|
|
seq_printf(m, "Pipe %c IER:\t%08x\n",
|
2014-03-03 17:31:46 +00:00
|
|
|
pipe_name(pipe),
|
|
|
|
I915_READ(GEN8_DE_PIPE_IER(pipe)));
|
2016-02-12 16:55:17 +00:00
|
|
|
|
|
|
|
intel_display_power_put(dev_priv, power_domain);
|
2013-11-03 04:07:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
seq_printf(m, "Display Engine port interrupt mask:\t%08x\n",
|
|
|
|
I915_READ(GEN8_DE_PORT_IMR));
|
|
|
|
seq_printf(m, "Display Engine port interrupt identity:\t%08x\n",
|
|
|
|
I915_READ(GEN8_DE_PORT_IIR));
|
|
|
|
seq_printf(m, "Display Engine port interrupt enable:\t%08x\n",
|
|
|
|
I915_READ(GEN8_DE_PORT_IER));
|
|
|
|
|
|
|
|
seq_printf(m, "Display Engine misc interrupt mask:\t%08x\n",
|
|
|
|
I915_READ(GEN8_DE_MISC_IMR));
|
|
|
|
seq_printf(m, "Display Engine misc interrupt identity:\t%08x\n",
|
|
|
|
I915_READ(GEN8_DE_MISC_IIR));
|
|
|
|
seq_printf(m, "Display Engine misc interrupt enable:\t%08x\n",
|
|
|
|
I915_READ(GEN8_DE_MISC_IER));
|
|
|
|
|
|
|
|
seq_printf(m, "PCU interrupt mask:\t%08x\n",
|
|
|
|
I915_READ(GEN8_PCU_IMR));
|
|
|
|
seq_printf(m, "PCU interrupt identity:\t%08x\n",
|
|
|
|
I915_READ(GEN8_PCU_IIR));
|
|
|
|
seq_printf(m, "PCU interrupt enable:\t%08x\n",
|
|
|
|
I915_READ(GEN8_PCU_IER));
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
} else if (IS_VALLEYVIEW(dev_priv)) {
|
2012-03-28 20:39:38 +00:00
|
|
|
seq_printf(m, "Display IER:\t%08x\n",
|
|
|
|
I915_READ(VLV_IER));
|
|
|
|
seq_printf(m, "Display IIR:\t%08x\n",
|
|
|
|
I915_READ(VLV_IIR));
|
|
|
|
seq_printf(m, "Display IIR_RW:\t%08x\n",
|
|
|
|
I915_READ(VLV_IIR_RW));
|
|
|
|
seq_printf(m, "Display IMR:\t%08x\n",
|
|
|
|
I915_READ(VLV_IMR));
|
2014-08-18 12:49:10 +00:00
|
|
|
for_each_pipe(dev_priv, pipe)
|
2012-03-28 20:39:38 +00:00
|
|
|
seq_printf(m, "Pipe %c stat:\t%08x\n",
|
|
|
|
pipe_name(pipe),
|
|
|
|
I915_READ(PIPESTAT(pipe)));
|
|
|
|
|
|
|
|
seq_printf(m, "Master IER:\t%08x\n",
|
|
|
|
I915_READ(VLV_MASTER_IER));
|
|
|
|
|
|
|
|
seq_printf(m, "Render IER:\t%08x\n",
|
|
|
|
I915_READ(GTIER));
|
|
|
|
seq_printf(m, "Render IIR:\t%08x\n",
|
|
|
|
I915_READ(GTIIR));
|
|
|
|
seq_printf(m, "Render IMR:\t%08x\n",
|
|
|
|
I915_READ(GTIMR));
|
|
|
|
|
|
|
|
seq_printf(m, "PM IER:\t\t%08x\n",
|
|
|
|
I915_READ(GEN6_PMIER));
|
|
|
|
seq_printf(m, "PM IIR:\t\t%08x\n",
|
|
|
|
I915_READ(GEN6_PMIIR));
|
|
|
|
seq_printf(m, "PM IMR:\t\t%08x\n",
|
|
|
|
I915_READ(GEN6_PMIMR));
|
|
|
|
|
|
|
|
seq_printf(m, "Port hotplug:\t%08x\n",
|
|
|
|
I915_READ(PORT_HOTPLUG_EN));
|
|
|
|
seq_printf(m, "DPFLIPSTAT:\t%08x\n",
|
|
|
|
I915_READ(VLV_DPFLIPSTAT));
|
|
|
|
seq_printf(m, "DPINVGTT:\t%08x\n",
|
|
|
|
I915_READ(DPINVGTT));
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
} else if (!HAS_PCH_SPLIT(dev_priv)) {
|
2009-08-10 13:37:24 +00:00
|
|
|
seq_printf(m, "Interrupt enable: %08x\n",
|
|
|
|
I915_READ(IER));
|
|
|
|
seq_printf(m, "Interrupt identity: %08x\n",
|
|
|
|
I915_READ(IIR));
|
|
|
|
seq_printf(m, "Interrupt mask: %08x\n",
|
|
|
|
I915_READ(IMR));
|
2014-08-18 12:49:10 +00:00
|
|
|
for_each_pipe(dev_priv, pipe)
|
2011-02-07 20:26:52 +00:00
|
|
|
seq_printf(m, "Pipe %c stat: %08x\n",
|
|
|
|
pipe_name(pipe),
|
|
|
|
I915_READ(PIPESTAT(pipe)));
|
2009-08-10 13:37:24 +00:00
|
|
|
} else {
|
|
|
|
seq_printf(m, "North Display Interrupt enable: %08x\n",
|
|
|
|
I915_READ(DEIER));
|
|
|
|
seq_printf(m, "North Display Interrupt identity: %08x\n",
|
|
|
|
I915_READ(DEIIR));
|
|
|
|
seq_printf(m, "North Display Interrupt mask: %08x\n",
|
|
|
|
I915_READ(DEIMR));
|
|
|
|
seq_printf(m, "South Display Interrupt enable: %08x\n",
|
|
|
|
I915_READ(SDEIER));
|
|
|
|
seq_printf(m, "South Display Interrupt identity: %08x\n",
|
|
|
|
I915_READ(SDEIIR));
|
|
|
|
seq_printf(m, "South Display Interrupt mask: %08x\n",
|
|
|
|
I915_READ(SDEIMR));
|
|
|
|
seq_printf(m, "Graphics Interrupt enable: %08x\n",
|
|
|
|
I915_READ(GTIER));
|
|
|
|
seq_printf(m, "Graphics Interrupt identity: %08x\n",
|
|
|
|
I915_READ(GTIIR));
|
|
|
|
seq_printf(m, "Graphics Interrupt mask: %08x\n",
|
|
|
|
I915_READ(GTIMR));
|
|
|
|
}
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id) {
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 6) {
|
2012-09-01 19:51:22 +00:00
|
|
|
seq_printf(m,
|
|
|
|
"Graphics Interrupt mask (%s): %08x\n",
|
2016-03-16 11:00:36 +00:00
|
|
|
engine->name, I915_READ_IMR(engine));
|
2011-01-04 22:22:17 +00:00
|
|
|
}
|
2016-03-16 11:00:36 +00:00
|
|
|
i915_ring_seqno_info(m, engine);
|
2011-01-04 22:22:17 +00:00
|
|
|
}
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
2010-07-03 06:58:38 +00:00
|
|
|
|
2009-02-18 01:08:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-11 14:26:38 +00:00
|
|
|
static int i915_gem_fence_regs_info(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2010-07-03 06:58:38 +00:00
|
|
|
int i, ret;
|
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2009-02-11 14:26:38 +00:00
|
|
|
|
|
|
|
seq_printf(m, "Total fences = %d\n", dev_priv->num_fence_regs);
|
|
|
|
for (i = 0; i < dev_priv->num_fence_regs; i++) {
|
2016-08-18 16:17:00 +00:00
|
|
|
struct i915_vma *vma = dev_priv->fence_regs[i].vma;
|
2009-02-11 14:26:38 +00:00
|
|
|
|
drm/i915: Track unbound pages
When dealing with a working set larger than the GATT, or even the
mappable aperture when touching through the GTT, we end up with evicting
objects only to rebind them at a new offset again later. Moving an
object into and out of the GTT requires clflushing the pages, thus
causing a double-clflush penalty for rebinding.
To avoid having to clflush on rebinding, we can track the pages as they
are evicted from the GTT and only relinquish those pages on memory
pressure.
As usual, if it were not for the handling of out-of-memory condition and
having to manually shrink our own bo caches, it would be a net reduction
of code. Alas.
Note: The patch also contains a few changes to the last-hope
evict_everything logic in i916_gem_execbuffer.c - we no longer try to
only evict the purgeable stuff in a first try (since that's superflous
and only helps in OOM corner-cases, not fragmented-gtt trashing
situations).
Also, the extraction of the get_pages retry loop from bind_to_gtt (and
other callsites) to get_pages should imo have been a separate patch.
v2: Ditch the newly added put_pages (for unbound objects only) in
i915_gem_reset. A quick irc discussion hasn't revealed any important
reason for this, so if we need this, I'd like to have a git blame'able
explanation for it.
v3: Undo the s/drm_malloc_ab/kmalloc/ in get_pages that Chris noticed.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
[danvet: Split out code movements and rant a bit in the commit message
with a few Notes. Done v2]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-08-20 09:40:46 +00:00
|
|
|
seq_printf(m, "Fence %d, pin count = %d, object = ",
|
|
|
|
i, dev_priv->fence_regs[i].pin_count);
|
2016-08-18 16:17:00 +00:00
|
|
|
if (!vma)
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "unused");
|
2010-10-27 14:11:53 +00:00
|
|
|
else
|
2016-08-18 16:17:00 +00:00
|
|
|
describe_obj(m, vma->obj);
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_putc(m, '\n');
|
2009-02-11 14:26:38 +00:00
|
|
|
}
|
|
|
|
|
2010-11-08 19:18:58 +00:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2009-02-11 14:26:38 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-18 01:08:50 +00:00
|
|
|
static int i915_hws_info(struct seq_file *m, void *data)
|
|
|
|
{
|
2014-05-13 14:30:28 +00:00
|
|
|
struct drm_info_node *node = m->private;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(node);
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
2012-11-29 21:18:51 +00:00
|
|
|
const u32 *hws;
|
2010-10-29 20:00:54 +00:00
|
|
|
int i;
|
|
|
|
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
engine = dev_priv->engine[(uintptr_t)node->info_ent->data];
|
2016-03-16 11:00:36 +00:00
|
|
|
hws = engine->status_page.page_addr;
|
2009-02-18 01:08:50 +00:00
|
|
|
if (hws == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 0; i < 4096 / sizeof(u32) / 4; i += 4) {
|
|
|
|
seq_printf(m, "0x%08x: 0x%08x 0x%08x 0x%08x 0x%08x\n",
|
|
|
|
i * 4,
|
|
|
|
hws[i], hws[i + 1], hws[i + 2], hws[i + 3]);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-12 09:05:18 +00:00
|
|
|
#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
|
|
|
|
|
2012-04-27 13:17:40 +00:00
|
|
|
static ssize_t
|
|
|
|
i915_error_state_write(struct file *filp,
|
|
|
|
const char __user *ubuf,
|
|
|
|
size_t cnt,
|
|
|
|
loff_t *ppos)
|
|
|
|
{
|
2013-05-23 10:55:35 +00:00
|
|
|
struct i915_error_state_file_priv *error_priv = filp->private_data;
|
2012-04-27 13:17:40 +00:00
|
|
|
|
|
|
|
DRM_DEBUG_DRIVER("Resetting error state\n");
|
2016-09-01 20:55:10 +00:00
|
|
|
i915_destroy_error_state(error_priv->dev);
|
2012-04-27 13:17:40 +00:00
|
|
|
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_error_state_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = inode->i_private;
|
2012-04-27 13:17:40 +00:00
|
|
|
struct i915_error_state_file_priv *error_priv;
|
|
|
|
|
|
|
|
error_priv = kzalloc(sizeof(*error_priv), GFP_KERNEL);
|
|
|
|
if (!error_priv)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
error_priv->dev = &dev_priv->drm;
|
2012-04-27 13:17:40 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
i915_error_state_get(&dev_priv->drm, error_priv);
|
2012-04-27 13:17:40 +00:00
|
|
|
|
2013-05-23 10:55:35 +00:00
|
|
|
file->private_data = error_priv;
|
|
|
|
|
|
|
|
return 0;
|
2012-04-27 13:17:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_error_state_release(struct inode *inode, struct file *file)
|
|
|
|
{
|
2013-05-23 10:55:35 +00:00
|
|
|
struct i915_error_state_file_priv *error_priv = file->private_data;
|
2012-04-27 13:17:40 +00:00
|
|
|
|
2013-06-06 12:18:40 +00:00
|
|
|
i915_error_state_put(error_priv);
|
2012-04-27 13:17:40 +00:00
|
|
|
kfree(error_priv);
|
|
|
|
|
2013-05-23 10:55:35 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-06-06 12:18:41 +00:00
|
|
|
static ssize_t i915_error_state_read(struct file *file, char __user *userbuf,
|
|
|
|
size_t count, loff_t *pos)
|
|
|
|
{
|
|
|
|
struct i915_error_state_file_priv *error_priv = file->private_data;
|
|
|
|
struct drm_i915_error_state_buf error_str;
|
|
|
|
loff_t tmp_pos = 0;
|
|
|
|
ssize_t ret_count = 0;
|
|
|
|
int ret;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
ret = i915_error_state_buf_init(&error_str,
|
|
|
|
to_i915(error_priv->dev), count, *pos);
|
2013-06-06 12:18:41 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2013-05-23 10:55:35 +00:00
|
|
|
|
2013-06-06 12:18:39 +00:00
|
|
|
ret = i915_error_state_to_str(&error_str, error_priv);
|
2013-05-23 10:55:35 +00:00
|
|
|
if (ret)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
ret_count = simple_read_from_buffer(userbuf, count, &tmp_pos,
|
|
|
|
error_str.buf,
|
|
|
|
error_str.bytes);
|
|
|
|
|
|
|
|
if (ret_count < 0)
|
|
|
|
ret = ret_count;
|
|
|
|
else
|
|
|
|
*pos = error_str.start + ret_count;
|
|
|
|
out:
|
2013-06-06 12:18:41 +00:00
|
|
|
i915_error_state_buf_release(&error_str);
|
2013-05-23 10:55:35 +00:00
|
|
|
return ret ?: ret_count;
|
2012-04-27 13:17:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations i915_error_state_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = i915_error_state_open,
|
2013-05-23 10:55:35 +00:00
|
|
|
.read = i915_error_state_read,
|
2012-04-27 13:17:40 +00:00
|
|
|
.write = i915_error_state_write,
|
|
|
|
.llseek = default_llseek,
|
|
|
|
.release = i915_error_state_release,
|
|
|
|
};
|
|
|
|
|
2016-10-12 09:05:18 +00:00
|
|
|
#endif
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
static int
|
|
|
|
i915_next_seqno_get(void *data, u64 *val)
|
2012-12-04 13:12:00 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
2012-12-04 13:12:00 +00:00
|
|
|
|
2016-10-28 12:58:56 +00:00
|
|
|
*val = atomic_read(&dev_priv->gt.global_timeline.next_seqno);
|
2013-03-10 21:10:06 +00:00
|
|
|
return 0;
|
2012-12-04 13:12:00 +00:00
|
|
|
}
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
static int
|
|
|
|
i915_next_seqno_set(void *data, u64 val)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2012-12-04 13:12:00 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2016-10-28 12:58:46 +00:00
|
|
|
ret = i915_gem_set_global_seqno(dev, val);
|
2012-12-04 13:12:00 +00:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
return ret;
|
2012-12-04 13:12:00 +00:00
|
|
|
}
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
DEFINE_SIMPLE_ATTRIBUTE(i915_next_seqno_fops,
|
|
|
|
i915_next_seqno_get, i915_next_seqno_set,
|
2013-04-12 09:10:05 +00:00
|
|
|
"0x%llx\n");
|
2012-12-04 13:12:00 +00:00
|
|
|
|
2014-03-31 06:00:02 +00:00
|
|
|
static int i915_frequency_info(struct seq_file *m, void *unused)
|
2010-01-29 19:27:07 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2013-11-27 20:21:54 +00:00
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
intel_runtime_pm_get(dev_priv);
|
2010-12-17 22:19:02 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_GEN5(dev_priv)) {
|
2010-12-17 22:19:02 +00:00
|
|
|
u16 rgvswctl = I915_READ16(MEMSWCTL);
|
|
|
|
u16 rgvstat = I915_READ16(MEMSTAT_ILK);
|
|
|
|
|
|
|
|
seq_printf(m, "Requested P-state: %d\n", (rgvswctl >> 8) & 0xf);
|
|
|
|
seq_printf(m, "Requested VID: %d\n", rgvswctl & 0x3f);
|
|
|
|
seq_printf(m, "Current VID: %d\n", (rgvstat & MEMSTAT_VID_MASK) >>
|
|
|
|
MEMSTAT_VID_SHIFT);
|
|
|
|
seq_printf(m, "Current P-state: %d\n",
|
|
|
|
(rgvstat & MEMSTAT_PSTATE_MASK) >> MEMSTAT_PSTATE_SHIFT);
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
} else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
|
2015-12-09 20:29:35 +00:00
|
|
|
u32 freq_sts;
|
|
|
|
|
|
|
|
mutex_lock(&dev_priv->rps.hw_lock);
|
|
|
|
freq_sts = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
|
|
|
|
seq_printf(m, "PUNIT_REG_GPU_FREQ_STS: 0x%08x\n", freq_sts);
|
|
|
|
seq_printf(m, "DDR freq: %d MHz\n", dev_priv->mem_freq);
|
|
|
|
|
|
|
|
seq_printf(m, "actual GPU freq: %d MHz\n",
|
|
|
|
intel_gpu_freq(dev_priv, (freq_sts >> 8) & 0xff));
|
|
|
|
|
|
|
|
seq_printf(m, "current GPU freq: %d MHz\n",
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq));
|
|
|
|
|
|
|
|
seq_printf(m, "max GPU freq: %d MHz\n",
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.max_freq));
|
|
|
|
|
|
|
|
seq_printf(m, "min GPU freq: %d MHz\n",
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.min_freq));
|
|
|
|
|
|
|
|
seq_printf(m, "idle GPU freq: %d MHz\n",
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.idle_freq));
|
|
|
|
|
|
|
|
seq_printf(m,
|
|
|
|
"efficient (RPe) frequency: %d MHz\n",
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq));
|
|
|
|
mutex_unlock(&dev_priv->rps.hw_lock);
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
} else if (INTEL_GEN(dev_priv) >= 6) {
|
2015-06-25 21:54:07 +00:00
|
|
|
u32 rp_state_limits;
|
|
|
|
u32 gt_perf_status;
|
|
|
|
u32 rp_state_cap;
|
2014-03-27 09:06:14 +00:00
|
|
|
u32 rpmodectl, rpinclimit, rpdeclimit;
|
2013-08-26 22:51:01 +00:00
|
|
|
u32 rpstat, cagf, reqf;
|
2011-01-18 23:49:25 +00:00
|
|
|
u32 rpupei, rpcurup, rpprevup;
|
|
|
|
u32 rpdownei, rpcurdown, rpprevdown;
|
2014-08-01 21:14:48 +00:00
|
|
|
u32 pm_ier, pm_imr, pm_isr, pm_iir, pm_mask;
|
2010-12-17 22:19:02 +00:00
|
|
|
int max_freq;
|
|
|
|
|
2015-06-25 21:54:07 +00:00
|
|
|
rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS);
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_BROXTON(dev_priv)) {
|
2015-06-25 21:54:07 +00:00
|
|
|
rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
|
|
|
|
gt_perf_status = I915_READ(BXT_GT_PERF_STATUS);
|
|
|
|
} else {
|
|
|
|
rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
|
|
|
|
gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
|
|
|
|
}
|
|
|
|
|
2010-12-17 22:19:02 +00:00
|
|
|
/* RPSTAT1 is in the GT power well */
|
2011-04-25 19:11:50 +00:00
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
2013-11-27 20:21:54 +00:00
|
|
|
goto out;
|
2011-04-25 19:11:50 +00:00
|
|
|
|
2015-01-16 09:34:40 +00:00
|
|
|
intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
|
2010-12-17 22:19:02 +00:00
|
|
|
|
2013-08-26 22:51:01 +00:00
|
|
|
reqf = I915_READ(GEN6_RPNSWREQ);
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_GEN9(dev_priv))
|
2015-03-06 05:37:21 +00:00
|
|
|
reqf >>= 23;
|
|
|
|
else {
|
|
|
|
reqf &= ~GEN6_TURBO_DISABLE;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
|
2015-03-06 05:37:21 +00:00
|
|
|
reqf >>= 24;
|
|
|
|
else
|
|
|
|
reqf >>= 25;
|
|
|
|
}
|
drm/i915: Use intel_gpu_freq() and intel_freq_opcode()
Replace all the vlv_gpu_freq(), vlv_freq_opcode(),
*GT_FREQUENCY_MULTIPLIER, and /GT_FREQUENCY_MULTIPLIER instances
with intel_gpu_freq() and intel_freq_opcode() calls.
Most of the change was performed with the following semantic patch:
@@
expression E;
@@
(
- E * GT_FREQUENCY_MULTIPLIER
+ intel_gpu_freq(dev_priv, E)
|
- E *= GT_FREQUENCY_MULTIPLIER
+ E = intel_gpu_freq(dev_priv, E)
|
- E /= GT_FREQUENCY_MULTIPLIER
+ E = intel_freq_opcode(dev_priv, E)
|
- do_div(E, GT_FREQUENCY_MULTIPLIER)
+ E = intel_freq_opcode(dev_priv, E)
)
@@
expression E1, E2;
@@
(
- vlv_gpu_freq(E1, E2)
+ intel_gpu_freq(E1, E2)
|
- vlv_freq_opcode(E1, E2)
+ intel_freq_opcode(E1, E2)
)
@@
expression E1, E2, E3, E4;
@@
(
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_gpu_freq(E3, E4);
- } else {
- E2 = intel_gpu_freq(E3, E4);
- }
+ E2 = intel_gpu_freq(E3, E4);
|
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_freq_opcode(E3, E4);
- } else {
- E2 = intel_freq_opcode(E3, E4);
- }
+ E2 = intel_freq_opcode(E3, E4);
)
One hunk was manually undone as intel_gpu_freq() ended up
calling itself. Supposedly it would be possible to exclude
certain functions via !=~, but I couldn't get that to work.
Also the removal of vlv_gpu_freq() and vlv_opcode_freq() compat
wrappers was done manually.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-01-23 19:04:26 +00:00
|
|
|
reqf = intel_gpu_freq(dev_priv, reqf);
|
2013-08-26 22:51:01 +00:00
|
|
|
|
2014-03-27 09:06:14 +00:00
|
|
|
rpmodectl = I915_READ(GEN6_RP_CONTROL);
|
|
|
|
rpinclimit = I915_READ(GEN6_RP_UP_THRESHOLD);
|
|
|
|
rpdeclimit = I915_READ(GEN6_RP_DOWN_THRESHOLD);
|
|
|
|
|
2011-01-18 23:49:25 +00:00
|
|
|
rpstat = I915_READ(GEN6_RPSTAT1);
|
2016-04-22 18:35:46 +00:00
|
|
|
rpupei = I915_READ(GEN6_RP_CUR_UP_EI) & GEN6_CURICONT_MASK;
|
|
|
|
rpcurup = I915_READ(GEN6_RP_CUR_UP) & GEN6_CURBSYTAVG_MASK;
|
|
|
|
rpprevup = I915_READ(GEN6_RP_PREV_UP) & GEN6_CURBSYTAVG_MASK;
|
|
|
|
rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI) & GEN6_CURIAVG_MASK;
|
|
|
|
rpcurdown = I915_READ(GEN6_RP_CUR_DOWN) & GEN6_CURBSYTAVG_MASK;
|
|
|
|
rpprevdown = I915_READ(GEN6_RP_PREV_DOWN) & GEN6_CURBSYTAVG_MASK;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_GEN9(dev_priv))
|
2015-03-06 05:37:21 +00:00
|
|
|
cagf = (rpstat & GEN9_CAGF_MASK) >> GEN9_CAGF_SHIFT;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
|
2013-01-29 20:00:15 +00:00
|
|
|
cagf = (rpstat & HSW_CAGF_MASK) >> HSW_CAGF_SHIFT;
|
|
|
|
else
|
|
|
|
cagf = (rpstat & GEN6_CAGF_MASK) >> GEN6_CAGF_SHIFT;
|
drm/i915: Use intel_gpu_freq() and intel_freq_opcode()
Replace all the vlv_gpu_freq(), vlv_freq_opcode(),
*GT_FREQUENCY_MULTIPLIER, and /GT_FREQUENCY_MULTIPLIER instances
with intel_gpu_freq() and intel_freq_opcode() calls.
Most of the change was performed with the following semantic patch:
@@
expression E;
@@
(
- E * GT_FREQUENCY_MULTIPLIER
+ intel_gpu_freq(dev_priv, E)
|
- E *= GT_FREQUENCY_MULTIPLIER
+ E = intel_gpu_freq(dev_priv, E)
|
- E /= GT_FREQUENCY_MULTIPLIER
+ E = intel_freq_opcode(dev_priv, E)
|
- do_div(E, GT_FREQUENCY_MULTIPLIER)
+ E = intel_freq_opcode(dev_priv, E)
)
@@
expression E1, E2;
@@
(
- vlv_gpu_freq(E1, E2)
+ intel_gpu_freq(E1, E2)
|
- vlv_freq_opcode(E1, E2)
+ intel_freq_opcode(E1, E2)
)
@@
expression E1, E2, E3, E4;
@@
(
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_gpu_freq(E3, E4);
- } else {
- E2 = intel_gpu_freq(E3, E4);
- }
+ E2 = intel_gpu_freq(E3, E4);
|
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_freq_opcode(E3, E4);
- } else {
- E2 = intel_freq_opcode(E3, E4);
- }
+ E2 = intel_freq_opcode(E3, E4);
)
One hunk was manually undone as intel_gpu_freq() ended up
calling itself. Supposedly it would be possible to exclude
certain functions via !=~, but I couldn't get that to work.
Also the removal of vlv_gpu_freq() and vlv_opcode_freq() compat
wrappers was done manually.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-01-23 19:04:26 +00:00
|
|
|
cagf = intel_gpu_freq(dev_priv, cagf);
|
2011-01-18 23:49:25 +00:00
|
|
|
|
2015-01-16 09:34:40 +00:00
|
|
|
intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
|
2011-04-25 19:11:50 +00:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_GEN6(dev_priv) || IS_GEN7(dev_priv)) {
|
2014-08-01 21:14:48 +00:00
|
|
|
pm_ier = I915_READ(GEN6_PMIER);
|
|
|
|
pm_imr = I915_READ(GEN6_PMIMR);
|
|
|
|
pm_isr = I915_READ(GEN6_PMISR);
|
|
|
|
pm_iir = I915_READ(GEN6_PMIIR);
|
|
|
|
pm_mask = I915_READ(GEN6_PMINTRMSK);
|
|
|
|
} else {
|
|
|
|
pm_ier = I915_READ(GEN8_GT_IER(2));
|
|
|
|
pm_imr = I915_READ(GEN8_GT_IMR(2));
|
|
|
|
pm_isr = I915_READ(GEN8_GT_ISR(2));
|
|
|
|
pm_iir = I915_READ(GEN8_GT_IIR(2));
|
|
|
|
pm_mask = I915_READ(GEN6_PMINTRMSK);
|
|
|
|
}
|
2014-03-27 09:06:14 +00:00
|
|
|
seq_printf(m, "PM IER=0x%08x IMR=0x%08x ISR=0x%08x IIR=0x%08x, MASK=0x%08x\n",
|
2014-08-01 21:14:48 +00:00
|
|
|
pm_ier, pm_imr, pm_isr, pm_iir, pm_mask);
|
2016-05-31 08:28:27 +00:00
|
|
|
seq_printf(m, "pm_intr_keep: 0x%08x\n", dev_priv->rps.pm_intr_keep);
|
2010-12-17 22:19:02 +00:00
|
|
|
seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status);
|
|
|
|
seq_printf(m, "Render p-state ratio: %d\n",
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
(gt_perf_status & (IS_GEN9(dev_priv) ? 0x1ff00 : 0xff00)) >> 8);
|
2010-12-17 22:19:02 +00:00
|
|
|
seq_printf(m, "Render p-state VID: %d\n",
|
|
|
|
gt_perf_status & 0xff);
|
|
|
|
seq_printf(m, "Render p-state limit: %d\n",
|
|
|
|
rp_state_limits & 0xff);
|
2014-03-27 09:06:14 +00:00
|
|
|
seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat);
|
|
|
|
seq_printf(m, "RPMODECTL: 0x%08x\n", rpmodectl);
|
|
|
|
seq_printf(m, "RPINCLIMIT: 0x%08x\n", rpinclimit);
|
|
|
|
seq_printf(m, "RPDECLIMIT: 0x%08x\n", rpdeclimit);
|
2013-08-26 22:51:01 +00:00
|
|
|
seq_printf(m, "RPNSWREQ: %dMHz\n", reqf);
|
2013-01-29 20:00:15 +00:00
|
|
|
seq_printf(m, "CAGF: %dMHz\n", cagf);
|
2016-04-22 18:35:46 +00:00
|
|
|
seq_printf(m, "RP CUR UP EI: %d (%dus)\n",
|
|
|
|
rpupei, GT_PM_INTERVAL_TO_US(dev_priv, rpupei));
|
|
|
|
seq_printf(m, "RP CUR UP: %d (%dus)\n",
|
|
|
|
rpcurup, GT_PM_INTERVAL_TO_US(dev_priv, rpcurup));
|
|
|
|
seq_printf(m, "RP PREV UP: %d (%dus)\n",
|
|
|
|
rpprevup, GT_PM_INTERVAL_TO_US(dev_priv, rpprevup));
|
2015-04-27 12:41:19 +00:00
|
|
|
seq_printf(m, "Up threshold: %d%%\n",
|
|
|
|
dev_priv->rps.up_threshold);
|
|
|
|
|
2016-04-22 18:35:46 +00:00
|
|
|
seq_printf(m, "RP CUR DOWN EI: %d (%dus)\n",
|
|
|
|
rpdownei, GT_PM_INTERVAL_TO_US(dev_priv, rpdownei));
|
|
|
|
seq_printf(m, "RP CUR DOWN: %d (%dus)\n",
|
|
|
|
rpcurdown, GT_PM_INTERVAL_TO_US(dev_priv, rpcurdown));
|
|
|
|
seq_printf(m, "RP PREV DOWN: %d (%dus)\n",
|
|
|
|
rpprevdown, GT_PM_INTERVAL_TO_US(dev_priv, rpprevdown));
|
2015-04-27 12:41:19 +00:00
|
|
|
seq_printf(m, "Down threshold: %d%%\n",
|
|
|
|
dev_priv->rps.down_threshold);
|
2010-12-17 22:19:02 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
max_freq = (IS_BROXTON(dev_priv) ? rp_state_cap >> 0 :
|
2015-06-25 21:54:07 +00:00
|
|
|
rp_state_cap >> 16) & 0xff;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
max_freq *= (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv) ?
|
2015-10-28 11:16:45 +00:00
|
|
|
GEN9_FREQ_SCALER : 1);
|
2010-12-17 22:19:02 +00:00
|
|
|
seq_printf(m, "Lowest (RPN) frequency: %dMHz\n",
|
drm/i915: Use intel_gpu_freq() and intel_freq_opcode()
Replace all the vlv_gpu_freq(), vlv_freq_opcode(),
*GT_FREQUENCY_MULTIPLIER, and /GT_FREQUENCY_MULTIPLIER instances
with intel_gpu_freq() and intel_freq_opcode() calls.
Most of the change was performed with the following semantic patch:
@@
expression E;
@@
(
- E * GT_FREQUENCY_MULTIPLIER
+ intel_gpu_freq(dev_priv, E)
|
- E *= GT_FREQUENCY_MULTIPLIER
+ E = intel_gpu_freq(dev_priv, E)
|
- E /= GT_FREQUENCY_MULTIPLIER
+ E = intel_freq_opcode(dev_priv, E)
|
- do_div(E, GT_FREQUENCY_MULTIPLIER)
+ E = intel_freq_opcode(dev_priv, E)
)
@@
expression E1, E2;
@@
(
- vlv_gpu_freq(E1, E2)
+ intel_gpu_freq(E1, E2)
|
- vlv_freq_opcode(E1, E2)
+ intel_freq_opcode(E1, E2)
)
@@
expression E1, E2, E3, E4;
@@
(
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_gpu_freq(E3, E4);
- } else {
- E2 = intel_gpu_freq(E3, E4);
- }
+ E2 = intel_gpu_freq(E3, E4);
|
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_freq_opcode(E3, E4);
- } else {
- E2 = intel_freq_opcode(E3, E4);
- }
+ E2 = intel_freq_opcode(E3, E4);
)
One hunk was manually undone as intel_gpu_freq() ended up
calling itself. Supposedly it would be possible to exclude
certain functions via !=~, but I couldn't get that to work.
Also the removal of vlv_gpu_freq() and vlv_opcode_freq() compat
wrappers was done manually.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-01-23 19:04:26 +00:00
|
|
|
intel_gpu_freq(dev_priv, max_freq));
|
2010-12-17 22:19:02 +00:00
|
|
|
|
|
|
|
max_freq = (rp_state_cap & 0xff00) >> 8;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
max_freq *= (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv) ?
|
2015-10-28 11:16:45 +00:00
|
|
|
GEN9_FREQ_SCALER : 1);
|
2010-12-17 22:19:02 +00:00
|
|
|
seq_printf(m, "Nominal (RP1) frequency: %dMHz\n",
|
drm/i915: Use intel_gpu_freq() and intel_freq_opcode()
Replace all the vlv_gpu_freq(), vlv_freq_opcode(),
*GT_FREQUENCY_MULTIPLIER, and /GT_FREQUENCY_MULTIPLIER instances
with intel_gpu_freq() and intel_freq_opcode() calls.
Most of the change was performed with the following semantic patch:
@@
expression E;
@@
(
- E * GT_FREQUENCY_MULTIPLIER
+ intel_gpu_freq(dev_priv, E)
|
- E *= GT_FREQUENCY_MULTIPLIER
+ E = intel_gpu_freq(dev_priv, E)
|
- E /= GT_FREQUENCY_MULTIPLIER
+ E = intel_freq_opcode(dev_priv, E)
|
- do_div(E, GT_FREQUENCY_MULTIPLIER)
+ E = intel_freq_opcode(dev_priv, E)
)
@@
expression E1, E2;
@@
(
- vlv_gpu_freq(E1, E2)
+ intel_gpu_freq(E1, E2)
|
- vlv_freq_opcode(E1, E2)
+ intel_freq_opcode(E1, E2)
)
@@
expression E1, E2, E3, E4;
@@
(
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_gpu_freq(E3, E4);
- } else {
- E2 = intel_gpu_freq(E3, E4);
- }
+ E2 = intel_gpu_freq(E3, E4);
|
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_freq_opcode(E3, E4);
- } else {
- E2 = intel_freq_opcode(E3, E4);
- }
+ E2 = intel_freq_opcode(E3, E4);
)
One hunk was manually undone as intel_gpu_freq() ended up
calling itself. Supposedly it would be possible to exclude
certain functions via !=~, but I couldn't get that to work.
Also the removal of vlv_gpu_freq() and vlv_opcode_freq() compat
wrappers was done manually.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-01-23 19:04:26 +00:00
|
|
|
intel_gpu_freq(dev_priv, max_freq));
|
2010-12-17 22:19:02 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
max_freq = (IS_BROXTON(dev_priv) ? rp_state_cap >> 16 :
|
2015-06-25 21:54:07 +00:00
|
|
|
rp_state_cap >> 0) & 0xff;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
max_freq *= (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv) ?
|
2015-10-28 11:16:45 +00:00
|
|
|
GEN9_FREQ_SCALER : 1);
|
2010-12-17 22:19:02 +00:00
|
|
|
seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n",
|
drm/i915: Use intel_gpu_freq() and intel_freq_opcode()
Replace all the vlv_gpu_freq(), vlv_freq_opcode(),
*GT_FREQUENCY_MULTIPLIER, and /GT_FREQUENCY_MULTIPLIER instances
with intel_gpu_freq() and intel_freq_opcode() calls.
Most of the change was performed with the following semantic patch:
@@
expression E;
@@
(
- E * GT_FREQUENCY_MULTIPLIER
+ intel_gpu_freq(dev_priv, E)
|
- E *= GT_FREQUENCY_MULTIPLIER
+ E = intel_gpu_freq(dev_priv, E)
|
- E /= GT_FREQUENCY_MULTIPLIER
+ E = intel_freq_opcode(dev_priv, E)
|
- do_div(E, GT_FREQUENCY_MULTIPLIER)
+ E = intel_freq_opcode(dev_priv, E)
)
@@
expression E1, E2;
@@
(
- vlv_gpu_freq(E1, E2)
+ intel_gpu_freq(E1, E2)
|
- vlv_freq_opcode(E1, E2)
+ intel_freq_opcode(E1, E2)
)
@@
expression E1, E2, E3, E4;
@@
(
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_gpu_freq(E3, E4);
- } else {
- E2 = intel_gpu_freq(E3, E4);
- }
+ E2 = intel_gpu_freq(E3, E4);
|
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_freq_opcode(E3, E4);
- } else {
- E2 = intel_freq_opcode(E3, E4);
- }
+ E2 = intel_freq_opcode(E3, E4);
)
One hunk was manually undone as intel_gpu_freq() ended up
calling itself. Supposedly it would be possible to exclude
certain functions via !=~, but I couldn't get that to work.
Also the removal of vlv_gpu_freq() and vlv_opcode_freq() compat
wrappers was done manually.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-01-23 19:04:26 +00:00
|
|
|
intel_gpu_freq(dev_priv, max_freq));
|
2013-04-05 21:29:22 +00:00
|
|
|
seq_printf(m, "Max overclocked frequency: %dMHz\n",
|
drm/i915: Use intel_gpu_freq() and intel_freq_opcode()
Replace all the vlv_gpu_freq(), vlv_freq_opcode(),
*GT_FREQUENCY_MULTIPLIER, and /GT_FREQUENCY_MULTIPLIER instances
with intel_gpu_freq() and intel_freq_opcode() calls.
Most of the change was performed with the following semantic patch:
@@
expression E;
@@
(
- E * GT_FREQUENCY_MULTIPLIER
+ intel_gpu_freq(dev_priv, E)
|
- E *= GT_FREQUENCY_MULTIPLIER
+ E = intel_gpu_freq(dev_priv, E)
|
- E /= GT_FREQUENCY_MULTIPLIER
+ E = intel_freq_opcode(dev_priv, E)
|
- do_div(E, GT_FREQUENCY_MULTIPLIER)
+ E = intel_freq_opcode(dev_priv, E)
)
@@
expression E1, E2;
@@
(
- vlv_gpu_freq(E1, E2)
+ intel_gpu_freq(E1, E2)
|
- vlv_freq_opcode(E1, E2)
+ intel_freq_opcode(E1, E2)
)
@@
expression E1, E2, E3, E4;
@@
(
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_gpu_freq(E3, E4);
- } else {
- E2 = intel_gpu_freq(E3, E4);
- }
+ E2 = intel_gpu_freq(E3, E4);
|
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_freq_opcode(E3, E4);
- } else {
- E2 = intel_freq_opcode(E3, E4);
- }
+ E2 = intel_freq_opcode(E3, E4);
)
One hunk was manually undone as intel_gpu_freq() ended up
calling itself. Supposedly it would be possible to exclude
certain functions via !=~, but I couldn't get that to work.
Also the removal of vlv_gpu_freq() and vlv_opcode_freq() compat
wrappers was done manually.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-01-23 19:04:26 +00:00
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.max_freq));
|
2015-03-18 09:48:21 +00:00
|
|
|
|
2015-04-27 12:41:19 +00:00
|
|
|
seq_printf(m, "Current freq: %d MHz\n",
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq));
|
|
|
|
seq_printf(m, "Actual freq: %d MHz\n", cagf);
|
2015-03-18 09:48:21 +00:00
|
|
|
seq_printf(m, "Idle freq: %d MHz\n",
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.idle_freq));
|
2015-04-27 12:41:19 +00:00
|
|
|
seq_printf(m, "Min freq: %d MHz\n",
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.min_freq));
|
2016-07-13 08:10:35 +00:00
|
|
|
seq_printf(m, "Boost freq: %d MHz\n",
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.boost_freq));
|
2015-04-27 12:41:19 +00:00
|
|
|
seq_printf(m, "Max freq: %d MHz\n",
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.max_freq));
|
|
|
|
seq_printf(m,
|
|
|
|
"efficient (RPe) frequency: %d MHz\n",
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq));
|
2010-12-17 22:19:02 +00:00
|
|
|
} else {
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "no P-state info available\n");
|
2010-12-17 22:19:02 +00:00
|
|
|
}
|
2010-01-29 19:27:07 +00:00
|
|
|
|
2015-09-25 11:00:32 +00:00
|
|
|
seq_printf(m, "Current CD clock frequency: %d kHz\n", dev_priv->cdclk_freq);
|
|
|
|
seq_printf(m, "Max CD clock frequency: %d kHz\n", dev_priv->max_cdclk_freq);
|
|
|
|
seq_printf(m, "Max pixel clock frequency: %d kHz\n", dev_priv->max_dotclk_freq);
|
|
|
|
|
2013-11-27 20:21:54 +00:00
|
|
|
out:
|
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
return ret;
|
2010-01-29 19:27:07 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 13:54:32 +00:00
|
|
|
static void i915_instdone_info(struct drm_i915_private *dev_priv,
|
|
|
|
struct seq_file *m,
|
|
|
|
struct intel_instdone *instdone)
|
|
|
|
{
|
2016-09-20 13:54:33 +00:00
|
|
|
int slice;
|
|
|
|
int subslice;
|
|
|
|
|
2016-09-20 13:54:32 +00:00
|
|
|
seq_printf(m, "\t\tINSTDONE: 0x%08x\n",
|
|
|
|
instdone->instdone);
|
|
|
|
|
|
|
|
if (INTEL_GEN(dev_priv) <= 3)
|
|
|
|
return;
|
|
|
|
|
|
|
|
seq_printf(m, "\t\tSC_INSTDONE: 0x%08x\n",
|
|
|
|
instdone->slice_common);
|
|
|
|
|
|
|
|
if (INTEL_GEN(dev_priv) <= 6)
|
|
|
|
return;
|
|
|
|
|
2016-09-20 13:54:33 +00:00
|
|
|
for_each_instdone_slice_subslice(dev_priv, slice, subslice)
|
|
|
|
seq_printf(m, "\t\tSAMPLER_INSTDONE[%d][%d]: 0x%08x\n",
|
|
|
|
slice, subslice, instdone->sampler[slice][subslice]);
|
|
|
|
|
|
|
|
for_each_instdone_slice_subslice(dev_priv, slice, subslice)
|
|
|
|
seq_printf(m, "\t\tROW_INSTDONE[%d][%d]: 0x%08x\n",
|
|
|
|
slice, subslice, instdone->row[slice][subslice]);
|
2016-09-20 13:54:32 +00:00
|
|
|
}
|
|
|
|
|
2015-01-26 16:03:04 +00:00
|
|
|
static int i915_hangcheck_info(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
2016-03-16 11:00:39 +00:00
|
|
|
u64 acthd[I915_NUM_ENGINES];
|
|
|
|
u32 seqno[I915_NUM_ENGINES];
|
2016-09-20 13:54:32 +00:00
|
|
|
struct intel_instdone instdone;
|
2016-03-23 18:19:53 +00:00
|
|
|
enum intel_engine_id id;
|
2015-01-26 16:03:04 +00:00
|
|
|
|
2016-09-09 13:11:47 +00:00
|
|
|
if (test_bit(I915_WEDGED, &dev_priv->gpu_error.flags))
|
|
|
|
seq_printf(m, "Wedged\n");
|
|
|
|
if (test_bit(I915_RESET_IN_PROGRESS, &dev_priv->gpu_error.flags))
|
|
|
|
seq_printf(m, "Reset in progress\n");
|
|
|
|
if (waitqueue_active(&dev_priv->gpu_error.wait_queue))
|
|
|
|
seq_printf(m, "Waiter holding struct mutex\n");
|
|
|
|
if (waitqueue_active(&dev_priv->gpu_error.reset_queue))
|
|
|
|
seq_printf(m, "struct_mutex blocked for reset\n");
|
|
|
|
|
2015-01-26 16:03:04 +00:00
|
|
|
if (!i915.enable_hangcheck) {
|
|
|
|
seq_printf(m, "Hangcheck disabled\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-02-05 16:41:48 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
|
|
|
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id) {
|
2016-08-02 21:50:21 +00:00
|
|
|
acthd[id] = intel_engine_get_active_head(engine);
|
2016-07-01 16:23:17 +00:00
|
|
|
seqno[id] = intel_engine_get_seqno(engine);
|
2015-02-05 16:41:48 +00:00
|
|
|
}
|
|
|
|
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
intel_engine_get_instdone(dev_priv->engine[RCS], &instdone);
|
2015-12-01 15:56:12 +00:00
|
|
|
|
2015-02-05 16:41:48 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
|
2015-01-26 16:03:04 +00:00
|
|
|
if (delayed_work_pending(&dev_priv->gpu_error.hangcheck_work)) {
|
|
|
|
seq_printf(m, "Hangcheck active, fires in %dms\n",
|
|
|
|
jiffies_to_msecs(dev_priv->gpu_error.hangcheck_work.timer.expires -
|
|
|
|
jiffies));
|
|
|
|
} else
|
|
|
|
seq_printf(m, "Hangcheck inactive\n");
|
|
|
|
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id) {
|
2016-10-04 20:11:32 +00:00
|
|
|
struct intel_breadcrumbs *b = &engine->breadcrumbs;
|
|
|
|
struct rb_node *rb;
|
|
|
|
|
2016-03-16 11:00:36 +00:00
|
|
|
seq_printf(m, "%s:\n", engine->name);
|
2016-04-07 06:29:10 +00:00
|
|
|
seq_printf(m, "\tseqno = %x [current %x, last %x]\n",
|
|
|
|
engine->hangcheck.seqno,
|
|
|
|
seqno[id],
|
2016-10-28 12:58:46 +00:00
|
|
|
engine->timeline->last_submitted_seqno);
|
2016-08-09 16:47:51 +00:00
|
|
|
seq_printf(m, "\twaiters? %s, fake irq active? %s\n",
|
|
|
|
yesno(intel_engine_has_waiter(engine)),
|
|
|
|
yesno(test_bit(engine->id,
|
|
|
|
&dev_priv->gpu_error.missed_irq_rings)));
|
2016-10-28 12:58:55 +00:00
|
|
|
spin_lock_irq(&b->lock);
|
2016-10-04 20:11:32 +00:00
|
|
|
for (rb = rb_first(&b->waiters); rb; rb = rb_next(rb)) {
|
|
|
|
struct intel_wait *w = container_of(rb, typeof(*w), node);
|
|
|
|
|
|
|
|
seq_printf(m, "\t%s [%d] waiting for %x\n",
|
|
|
|
w->tsk->comm, w->tsk->pid, w->seqno);
|
|
|
|
}
|
2016-10-28 12:58:55 +00:00
|
|
|
spin_unlock_irq(&b->lock);
|
2016-10-04 20:11:32 +00:00
|
|
|
|
2015-01-26 16:03:04 +00:00
|
|
|
seq_printf(m, "\tACTHD = 0x%08llx [current 0x%08llx]\n",
|
2016-03-16 11:00:36 +00:00
|
|
|
(long long)engine->hangcheck.acthd,
|
2016-03-23 18:19:53 +00:00
|
|
|
(long long)acthd[id]);
|
2016-03-16 11:00:36 +00:00
|
|
|
seq_printf(m, "\tscore = %d\n", engine->hangcheck.score);
|
|
|
|
seq_printf(m, "\taction = %d\n", engine->hangcheck.action);
|
2015-12-01 15:56:12 +00:00
|
|
|
|
2016-03-16 11:00:36 +00:00
|
|
|
if (engine->id == RCS) {
|
2016-09-20 13:54:32 +00:00
|
|
|
seq_puts(m, "\tinstdone read =\n");
|
2015-12-01 15:56:12 +00:00
|
|
|
|
2016-09-20 13:54:32 +00:00
|
|
|
i915_instdone_info(dev_priv, m, &instdone);
|
2015-12-01 15:56:12 +00:00
|
|
|
|
2016-09-20 13:54:32 +00:00
|
|
|
seq_puts(m, "\tinstdone accu =\n");
|
2015-12-01 15:56:12 +00:00
|
|
|
|
2016-09-20 13:54:32 +00:00
|
|
|
i915_instdone_info(dev_priv, m,
|
|
|
|
&engine->hangcheck.instdone);
|
2015-12-01 15:56:12 +00:00
|
|
|
}
|
2015-01-26 16:03:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-12-13 03:34:16 +00:00
|
|
|
static int ironlake_drpc_info(struct seq_file *m)
|
2010-01-29 19:27:07 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2011-10-05 18:44:54 +00:00
|
|
|
u32 rgvmodectl, rstdbyctl;
|
|
|
|
u16 crstandvid;
|
|
|
|
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
2011-10-05 18:44:54 +00:00
|
|
|
|
|
|
|
rgvmodectl = I915_READ(MEMMODECTL);
|
|
|
|
rstdbyctl = I915_READ(RSTDBYCTL);
|
|
|
|
crstandvid = I915_READ16(CRSTANDVID);
|
|
|
|
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
2010-01-29 19:27:07 +00:00
|
|
|
|
2015-09-03 08:16:09 +00:00
|
|
|
seq_printf(m, "HD boost: %s\n", yesno(rgvmodectl & MEMMODE_BOOST_EN));
|
2010-01-29 19:27:07 +00:00
|
|
|
seq_printf(m, "Boost freq: %d\n",
|
|
|
|
(rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >>
|
|
|
|
MEMMODE_BOOST_FREQ_SHIFT);
|
|
|
|
seq_printf(m, "HW control enabled: %s\n",
|
2015-09-03 08:16:09 +00:00
|
|
|
yesno(rgvmodectl & MEMMODE_HWIDLE_EN));
|
2010-01-29 19:27:07 +00:00
|
|
|
seq_printf(m, "SW control enabled: %s\n",
|
2015-09-03 08:16:09 +00:00
|
|
|
yesno(rgvmodectl & MEMMODE_SWMODE_EN));
|
2010-01-29 19:27:07 +00:00
|
|
|
seq_printf(m, "Gated voltage change: %s\n",
|
2015-09-03 08:16:09 +00:00
|
|
|
yesno(rgvmodectl & MEMMODE_RCLK_GATE));
|
2010-01-29 19:27:07 +00:00
|
|
|
seq_printf(m, "Starting frequency: P%d\n",
|
|
|
|
(rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT);
|
2010-05-20 21:28:11 +00:00
|
|
|
seq_printf(m, "Max P-state: P%d\n",
|
2010-01-29 19:27:07 +00:00
|
|
|
(rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT);
|
2010-05-20 21:28:11 +00:00
|
|
|
seq_printf(m, "Min P-state: P%d\n", (rgvmodectl & MEMMODE_FMIN_MASK));
|
|
|
|
seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f));
|
|
|
|
seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f));
|
|
|
|
seq_printf(m, "Render standby enabled: %s\n",
|
2015-09-03 08:16:09 +00:00
|
|
|
yesno(!(rstdbyctl & RCX_SW_EXIT)));
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "Current RS state: ");
|
2011-01-05 20:01:24 +00:00
|
|
|
switch (rstdbyctl & RSX_STATUS_MASK) {
|
|
|
|
case RSX_STATUS_ON:
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "on\n");
|
2011-01-05 20:01:24 +00:00
|
|
|
break;
|
|
|
|
case RSX_STATUS_RC1:
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "RC1\n");
|
2011-01-05 20:01:24 +00:00
|
|
|
break;
|
|
|
|
case RSX_STATUS_RC1E:
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "RC1E\n");
|
2011-01-05 20:01:24 +00:00
|
|
|
break;
|
|
|
|
case RSX_STATUS_RS1:
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "RS1\n");
|
2011-01-05 20:01:24 +00:00
|
|
|
break;
|
|
|
|
case RSX_STATUS_RS2:
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "RS2 (RC6)\n");
|
2011-01-05 20:01:24 +00:00
|
|
|
break;
|
|
|
|
case RSX_STATUS_RS3:
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "RC3 (RC6+)\n");
|
2011-01-05 20:01:24 +00:00
|
|
|
break;
|
|
|
|
default:
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "unknown\n");
|
2011-01-05 20:01:24 +00:00
|
|
|
break;
|
|
|
|
}
|
2010-01-29 19:27:07 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-16 09:34:42 +00:00
|
|
|
static int i915_forcewake_domains(struct seq_file *m, void *data)
|
2014-01-10 09:48:26 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2015-01-16 09:34:37 +00:00
|
|
|
struct intel_uncore_forcewake_domain *fw_domain;
|
|
|
|
|
|
|
|
spin_lock_irq(&dev_priv->uncore.lock);
|
2016-04-07 16:04:33 +00:00
|
|
|
for_each_fw_domain(fw_domain, dev_priv) {
|
2015-01-16 09:34:37 +00:00
|
|
|
seq_printf(m, "%s.wake_count = %u\n",
|
2016-04-07 16:04:33 +00:00
|
|
|
intel_uncore_forcewake_domain_to_str(fw_domain->id),
|
2015-01-16 09:34:37 +00:00
|
|
|
fw_domain->wake_count);
|
|
|
|
}
|
|
|
|
spin_unlock_irq(&dev_priv->uncore.lock);
|
2014-01-10 09:48:26 +00:00
|
|
|
|
2015-01-16 09:34:37 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vlv_drpc_info(struct seq_file *m)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2014-11-19 18:07:42 +00:00
|
|
|
u32 rpmodectl1, rcctl1, pw_status;
|
2014-01-10 09:48:26 +00:00
|
|
|
|
2014-04-14 17:24:27 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
|
|
|
|
2014-11-19 18:07:42 +00:00
|
|
|
pw_status = I915_READ(VLV_GTLC_PW_STATUS);
|
2014-01-10 09:48:26 +00:00
|
|
|
rpmodectl1 = I915_READ(GEN6_RP_CONTROL);
|
|
|
|
rcctl1 = I915_READ(GEN6_RC_CONTROL);
|
|
|
|
|
2014-04-14 17:24:27 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
|
2014-01-10 09:48:26 +00:00
|
|
|
seq_printf(m, "Video Turbo Mode: %s\n",
|
|
|
|
yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO));
|
|
|
|
seq_printf(m, "Turbo enabled: %s\n",
|
|
|
|
yesno(rpmodectl1 & GEN6_RP_ENABLE));
|
|
|
|
seq_printf(m, "HW control enabled: %s\n",
|
|
|
|
yesno(rpmodectl1 & GEN6_RP_ENABLE));
|
|
|
|
seq_printf(m, "SW control enabled: %s\n",
|
|
|
|
yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) ==
|
|
|
|
GEN6_RP_MEDIA_SW_MODE));
|
|
|
|
seq_printf(m, "RC6 Enabled: %s\n",
|
|
|
|
yesno(rcctl1 & (GEN7_RC_CTL_TO_MODE |
|
|
|
|
GEN6_RC_CTL_EI_MODE(1))));
|
|
|
|
seq_printf(m, "Render Power Well: %s\n",
|
2014-11-19 18:07:42 +00:00
|
|
|
(pw_status & VLV_GTLC_PW_RENDER_STATUS_MASK) ? "Up" : "Down");
|
2014-01-10 09:48:26 +00:00
|
|
|
seq_printf(m, "Media Power Well: %s\n",
|
2014-11-19 18:07:42 +00:00
|
|
|
(pw_status & VLV_GTLC_PW_MEDIA_STATUS_MASK) ? "Up" : "Down");
|
2014-01-10 09:48:26 +00:00
|
|
|
|
2014-04-14 17:24:24 +00:00
|
|
|
seq_printf(m, "Render RC6 residency since boot: %u\n",
|
|
|
|
I915_READ(VLV_GT_RENDER_RC6));
|
|
|
|
seq_printf(m, "Media RC6 residency since boot: %u\n",
|
|
|
|
I915_READ(VLV_GT_MEDIA_RC6));
|
|
|
|
|
2015-01-16 09:34:42 +00:00
|
|
|
return i915_forcewake_domains(m, NULL);
|
2014-01-10 09:48:26 +00:00
|
|
|
}
|
|
|
|
|
2011-12-13 03:34:16 +00:00
|
|
|
static int gen6_drpc_info(struct seq_file *m)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2012-09-26 17:34:02 +00:00
|
|
|
u32 rpmodectl1, gt_core_status, rcctl1, rc6vids = 0;
|
2016-06-27 14:40:01 +00:00
|
|
|
u32 gen9_powergate_enable = 0, gen9_powergate_status = 0;
|
2012-01-25 12:52:43 +00:00
|
|
|
unsigned forcewake_count;
|
2013-06-24 21:59:49 +00:00
|
|
|
int count = 0, ret;
|
2011-12-13 03:34:16 +00:00
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
2011-12-13 03:34:16 +00:00
|
|
|
|
2013-07-19 19:36:52 +00:00
|
|
|
spin_lock_irq(&dev_priv->uncore.lock);
|
2015-01-16 09:34:37 +00:00
|
|
|
forcewake_count = dev_priv->uncore.fw_domain[FW_DOMAIN_ID_RENDER].wake_count;
|
2013-07-19 19:36:52 +00:00
|
|
|
spin_unlock_irq(&dev_priv->uncore.lock);
|
2012-01-25 12:52:43 +00:00
|
|
|
|
|
|
|
if (forcewake_count) {
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "RC information inaccurate because somebody "
|
|
|
|
"holds a forcewake reference \n");
|
2011-12-13 03:34:16 +00:00
|
|
|
} else {
|
|
|
|
/* NB: we cannot use forcewake, else we read the wrong values */
|
|
|
|
while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1))
|
|
|
|
udelay(10);
|
|
|
|
seq_printf(m, "RC information accurate: %s\n", yesno(count < 51));
|
|
|
|
}
|
|
|
|
|
2015-10-22 12:34:56 +00:00
|
|
|
gt_core_status = I915_READ_FW(GEN6_GT_CORE_STATUS);
|
2013-07-19 19:36:56 +00:00
|
|
|
trace_i915_reg_rw(false, GEN6_GT_CORE_STATUS, gt_core_status, 4, true);
|
2011-12-13 03:34:16 +00:00
|
|
|
|
|
|
|
rpmodectl1 = I915_READ(GEN6_RP_CONTROL);
|
|
|
|
rcctl1 = I915_READ(GEN6_RC_CONTROL);
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 9) {
|
2016-06-27 14:40:01 +00:00
|
|
|
gen9_powergate_enable = I915_READ(GEN9_PG_ENABLE);
|
|
|
|
gen9_powergate_status = I915_READ(GEN9_PWRGT_DOMAIN_STATUS);
|
|
|
|
}
|
2011-12-13 03:34:16 +00:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2012-11-06 14:36:36 +00:00
|
|
|
mutex_lock(&dev_priv->rps.hw_lock);
|
|
|
|
sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
|
|
|
|
mutex_unlock(&dev_priv->rps.hw_lock);
|
2011-12-13 03:34:16 +00:00
|
|
|
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
|
2011-12-13 03:34:16 +00:00
|
|
|
seq_printf(m, "Video Turbo Mode: %s\n",
|
|
|
|
yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO));
|
|
|
|
seq_printf(m, "HW control enabled: %s\n",
|
|
|
|
yesno(rpmodectl1 & GEN6_RP_ENABLE));
|
|
|
|
seq_printf(m, "SW control enabled: %s\n",
|
|
|
|
yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) ==
|
|
|
|
GEN6_RP_MEDIA_SW_MODE));
|
2012-01-24 00:14:05 +00:00
|
|
|
seq_printf(m, "RC1e Enabled: %s\n",
|
2011-12-13 03:34:16 +00:00
|
|
|
yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE));
|
|
|
|
seq_printf(m, "RC6 Enabled: %s\n",
|
|
|
|
yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE));
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 9) {
|
2016-06-27 14:40:01 +00:00
|
|
|
seq_printf(m, "Render Well Gating Enabled: %s\n",
|
|
|
|
yesno(gen9_powergate_enable & GEN9_RENDER_PG_ENABLE));
|
|
|
|
seq_printf(m, "Media Well Gating Enabled: %s\n",
|
|
|
|
yesno(gen9_powergate_enable & GEN9_MEDIA_PG_ENABLE));
|
|
|
|
}
|
2011-12-13 03:34:16 +00:00
|
|
|
seq_printf(m, "Deep RC6 Enabled: %s\n",
|
|
|
|
yesno(rcctl1 & GEN6_RC_CTL_RC6p_ENABLE));
|
|
|
|
seq_printf(m, "Deepest RC6 Enabled: %s\n",
|
|
|
|
yesno(rcctl1 & GEN6_RC_CTL_RC6pp_ENABLE));
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "Current RC state: ");
|
2011-12-13 03:34:16 +00:00
|
|
|
switch (gt_core_status & GEN6_RCn_MASK) {
|
|
|
|
case GEN6_RC0:
|
|
|
|
if (gt_core_status & GEN6_CORE_CPD_STATE_MASK)
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "Core Power Down\n");
|
2011-12-13 03:34:16 +00:00
|
|
|
else
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "on\n");
|
2011-12-13 03:34:16 +00:00
|
|
|
break;
|
|
|
|
case GEN6_RC3:
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "RC3\n");
|
2011-12-13 03:34:16 +00:00
|
|
|
break;
|
|
|
|
case GEN6_RC6:
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "RC6\n");
|
2011-12-13 03:34:16 +00:00
|
|
|
break;
|
|
|
|
case GEN6_RC7:
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "RC7\n");
|
2011-12-13 03:34:16 +00:00
|
|
|
break;
|
|
|
|
default:
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "Unknown\n");
|
2011-12-13 03:34:16 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
seq_printf(m, "Core Power Down: %s\n",
|
|
|
|
yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK));
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 9) {
|
2016-06-27 14:40:01 +00:00
|
|
|
seq_printf(m, "Render Power Well: %s\n",
|
|
|
|
(gen9_powergate_status &
|
|
|
|
GEN9_PWRGT_RENDER_STATUS_MASK) ? "Up" : "Down");
|
|
|
|
seq_printf(m, "Media Power Well: %s\n",
|
|
|
|
(gen9_powergate_status &
|
|
|
|
GEN9_PWRGT_MEDIA_STATUS_MASK) ? "Up" : "Down");
|
|
|
|
}
|
2012-03-28 01:59:38 +00:00
|
|
|
|
|
|
|
/* Not exactly sure what this is */
|
|
|
|
seq_printf(m, "RC6 \"Locked to RPn\" residency since boot: %u\n",
|
|
|
|
I915_READ(GEN6_GT_GFX_RC6_LOCKED));
|
|
|
|
seq_printf(m, "RC6 residency since boot: %u\n",
|
|
|
|
I915_READ(GEN6_GT_GFX_RC6));
|
|
|
|
seq_printf(m, "RC6+ residency since boot: %u\n",
|
|
|
|
I915_READ(GEN6_GT_GFX_RC6p));
|
|
|
|
seq_printf(m, "RC6++ residency since boot: %u\n",
|
|
|
|
I915_READ(GEN6_GT_GFX_RC6pp));
|
|
|
|
|
2012-09-26 17:34:02 +00:00
|
|
|
seq_printf(m, "RC6 voltage: %dmV\n",
|
|
|
|
GEN6_DECODE_RC6_VID(((rc6vids >> 0) & 0xff)));
|
|
|
|
seq_printf(m, "RC6+ voltage: %dmV\n",
|
|
|
|
GEN6_DECODE_RC6_VID(((rc6vids >> 8) & 0xff)));
|
|
|
|
seq_printf(m, "RC6++ voltage: %dmV\n",
|
|
|
|
GEN6_DECODE_RC6_VID(((rc6vids >> 16) & 0xff)));
|
2016-06-27 14:40:01 +00:00
|
|
|
return i915_forcewake_domains(m, NULL);
|
2011-12-13 03:34:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_drpc_info(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2011-12-13 03:34:16 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
|
2014-01-10 09:48:26 +00:00
|
|
|
return vlv_drpc_info(m);
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
else if (INTEL_GEN(dev_priv) >= 6)
|
2011-12-13 03:34:16 +00:00
|
|
|
return gen6_drpc_info(m);
|
|
|
|
else
|
|
|
|
return ironlake_drpc_info(m);
|
|
|
|
}
|
|
|
|
|
2015-06-18 08:30:22 +00:00
|
|
|
static int i915_frontbuffer_tracking(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2015-06-18 08:30:22 +00:00
|
|
|
|
|
|
|
seq_printf(m, "FB tracking busy bits: 0x%08x\n",
|
|
|
|
dev_priv->fb_tracking.busy_bits);
|
|
|
|
|
|
|
|
seq_printf(m, "FB tracking flip bits: 0x%08x\n",
|
|
|
|
dev_priv->fb_tracking.flip_bits);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-02-05 20:42:41 +00:00
|
|
|
static int i915_fbc_status(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2010-02-05 20:42:41 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (!HAS_FBC(dev_priv)) {
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "FBC unsupported on this chipset\n");
|
2010-02-05 20:42:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-02-21 16:52:23 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
2015-07-02 22:25:10 +00:00
|
|
|
mutex_lock(&dev_priv->fbc.lock);
|
2014-02-21 16:52:23 +00:00
|
|
|
|
2015-10-14 20:45:36 +00:00
|
|
|
if (intel_fbc_is_active(dev_priv))
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "FBC enabled\n");
|
2015-06-12 17:36:20 +00:00
|
|
|
else
|
|
|
|
seq_printf(m, "FBC disabled: %s\n",
|
2015-10-27 16:50:03 +00:00
|
|
|
dev_priv->fbc.no_fbc_reason);
|
2014-02-21 16:52:23 +00:00
|
|
|
|
2016-10-21 15:55:46 +00:00
|
|
|
if (intel_fbc_is_active(dev_priv) && INTEL_GEN(dev_priv) >= 7) {
|
|
|
|
uint32_t mask = INTEL_GEN(dev_priv) >= 8 ?
|
|
|
|
BDW_FBC_COMPRESSION_MASK :
|
|
|
|
IVB_FBC_COMPRESSION_MASK;
|
2015-06-12 17:36:18 +00:00
|
|
|
seq_printf(m, "Compressing: %s\n",
|
2016-10-21 15:55:46 +00:00
|
|
|
yesno(I915_READ(FBC_STATUS2) & mask));
|
|
|
|
}
|
2015-06-12 17:36:18 +00:00
|
|
|
|
2015-07-02 22:25:10 +00:00
|
|
|
mutex_unlock(&dev_priv->fbc.lock);
|
2014-02-21 16:52:23 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
|
2010-02-05 20:42:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-01 09:04:45 +00:00
|
|
|
static int i915_fbc_fc_get(void *data, u64 *val)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
2014-08-01 09:04:45 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) < 7 || !HAS_FBC(dev_priv))
|
2014-08-01 09:04:45 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
*val = dev_priv->fbc.false_color;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_fbc_fc_set(void *data, u64 val)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
2014-08-01 09:04:45 +00:00
|
|
|
u32 reg;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) < 7 || !HAS_FBC(dev_priv))
|
2014-08-01 09:04:45 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
2015-07-02 22:25:10 +00:00
|
|
|
mutex_lock(&dev_priv->fbc.lock);
|
2014-08-01 09:04:45 +00:00
|
|
|
|
|
|
|
reg = I915_READ(ILK_DPFC_CONTROL);
|
|
|
|
dev_priv->fbc.false_color = val;
|
|
|
|
|
|
|
|
I915_WRITE(ILK_DPFC_CONTROL, val ?
|
|
|
|
(reg | FBC_CTL_FALSE_COLOR) :
|
|
|
|
(reg & ~FBC_CTL_FALSE_COLOR));
|
|
|
|
|
2015-07-02 22:25:10 +00:00
|
|
|
mutex_unlock(&dev_priv->fbc.lock);
|
2014-08-01 09:04:45 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_SIMPLE_ATTRIBUTE(i915_fbc_fc_fops,
|
|
|
|
i915_fbc_fc_get, i915_fbc_fc_set,
|
|
|
|
"%llu\n");
|
|
|
|
|
2013-05-31 19:33:24 +00:00
|
|
|
static int i915_ips_status(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2013-05-31 19:33:24 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (!HAS_IPS(dev_priv)) {
|
2013-05-31 19:33:24 +00:00
|
|
|
seq_puts(m, "not supported\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-02-21 16:52:23 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
|
|
|
|
2014-06-30 11:45:01 +00:00
|
|
|
seq_printf(m, "Enabled by kernel parameter: %s\n",
|
|
|
|
yesno(i915.enable_ips));
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 8) {
|
2014-06-30 11:45:01 +00:00
|
|
|
seq_puts(m, "Currently: unknown\n");
|
|
|
|
} else {
|
|
|
|
if (I915_READ(IPS_CTL) & IPS_ENABLE)
|
|
|
|
seq_puts(m, "Currently: enabled\n");
|
|
|
|
else
|
|
|
|
seq_puts(m, "Currently: disabled\n");
|
|
|
|
}
|
2013-05-31 19:33:24 +00:00
|
|
|
|
2014-02-21 16:52:23 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
|
2013-05-31 19:33:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-02-05 20:47:35 +00:00
|
|
|
static int i915_sr_status(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2010-02-05 20:47:35 +00:00
|
|
|
bool sr_enabled = false;
|
|
|
|
|
2014-02-21 16:52:23 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
2016-10-24 12:42:15 +00:00
|
|
|
intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
|
2014-02-21 16:52:23 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (HAS_PCH_SPLIT(dev_priv))
|
2010-08-19 17:04:08 +00:00
|
|
|
sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
else if (IS_CRESTLINE(dev_priv) || IS_G4X(dev_priv) ||
|
|
|
|
IS_I945G(dev_priv) || IS_I945GM(dev_priv))
|
2010-02-05 20:47:35 +00:00
|
|
|
sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
else if (IS_I915GM(dev_priv))
|
2010-02-05 20:47:35 +00:00
|
|
|
sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
else if (IS_PINEVIEW(dev_priv))
|
2010-02-05 20:47:35 +00:00
|
|
|
sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
|
2015-06-02 11:17:47 +00:00
|
|
|
sr_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
|
2010-02-05 20:47:35 +00:00
|
|
|
|
2016-10-24 12:42:15 +00:00
|
|
|
intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
|
2014-02-21 16:52:23 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
|
2010-08-19 17:04:08 +00:00
|
|
|
seq_printf(m, "self-refresh: %s\n",
|
|
|
|
sr_enabled ? "enabled" : "disabled");
|
2010-02-05 20:47:35 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-05-20 21:28:11 +00:00
|
|
|
static int i915_emon_status(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2010-05-20 21:28:11 +00:00
|
|
|
unsigned long temp, chipset, gfx;
|
2010-07-03 06:58:38 +00:00
|
|
|
int ret;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (!IS_GEN5(dev_priv))
|
2012-04-30 18:35:02 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
2010-07-03 06:58:38 +00:00
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2010-05-20 21:28:11 +00:00
|
|
|
|
|
|
|
temp = i915_mch_val(dev_priv);
|
|
|
|
chipset = i915_chipset_val(dev_priv);
|
|
|
|
gfx = i915_gfx_val(dev_priv);
|
2010-07-03 06:58:38 +00:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2010-05-20 21:28:11 +00:00
|
|
|
|
|
|
|
seq_printf(m, "GMCH temp: %ld\n", temp);
|
|
|
|
seq_printf(m, "Chipset power: %ld\n", chipset);
|
|
|
|
seq_printf(m, "GFX power: %ld\n", gfx);
|
|
|
|
seq_printf(m, "Total power: %ld\n", chipset + gfx);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-06-28 20:04:16 +00:00
|
|
|
static int i915_ring_freq_table(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2013-12-19 13:54:52 +00:00
|
|
|
int ret = 0;
|
2011-06-28 20:04:16 +00:00
|
|
|
int gpu_freq, ia_freq;
|
2015-06-29 09:20:22 +00:00
|
|
|
unsigned int max_gpu_freq, min_gpu_freq;
|
2011-06-28 20:04:16 +00:00
|
|
|
|
2016-08-17 19:30:41 +00:00
|
|
|
if (!HAS_LLC(dev_priv)) {
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "unsupported on this chipset\n");
|
2011-06-28 20:04:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-12-19 13:54:52 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
|
|
|
|
2012-11-02 18:14:01 +00:00
|
|
|
ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
|
2011-06-28 20:04:16 +00:00
|
|
|
if (ret)
|
2013-12-19 13:54:52 +00:00
|
|
|
goto out;
|
2011-06-28 20:04:16 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
|
2015-06-29 09:20:22 +00:00
|
|
|
/* Convert GT frequency to 50 HZ units */
|
|
|
|
min_gpu_freq =
|
|
|
|
dev_priv->rps.min_freq_softlimit / GEN9_FREQ_SCALER;
|
|
|
|
max_gpu_freq =
|
|
|
|
dev_priv->rps.max_freq_softlimit / GEN9_FREQ_SCALER;
|
|
|
|
} else {
|
|
|
|
min_gpu_freq = dev_priv->rps.min_freq_softlimit;
|
|
|
|
max_gpu_freq = dev_priv->rps.max_freq_softlimit;
|
|
|
|
}
|
|
|
|
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "GPU freq (MHz)\tEffective CPU freq (MHz)\tEffective Ring freq (MHz)\n");
|
2011-06-28 20:04:16 +00:00
|
|
|
|
2015-06-29 09:20:22 +00:00
|
|
|
for (gpu_freq = min_gpu_freq; gpu_freq <= max_gpu_freq; gpu_freq++) {
|
2012-09-26 17:34:00 +00:00
|
|
|
ia_freq = gpu_freq;
|
|
|
|
sandybridge_pcode_read(dev_priv,
|
|
|
|
GEN6_PCODE_READ_MIN_FREQ_TABLE,
|
|
|
|
&ia_freq);
|
2013-04-12 18:10:13 +00:00
|
|
|
seq_printf(m, "%d\t\t%d\t\t\t\t%d\n",
|
2015-06-29 09:20:22 +00:00
|
|
|
intel_gpu_freq(dev_priv, (gpu_freq *
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
(IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv) ?
|
2015-10-28 11:16:45 +00:00
|
|
|
GEN9_FREQ_SCALER : 1))),
|
2013-04-12 18:10:13 +00:00
|
|
|
((ia_freq >> 0) & 0xff) * 100,
|
|
|
|
((ia_freq >> 8) & 0xff) * 100);
|
2011-06-28 20:04:16 +00:00
|
|
|
}
|
|
|
|
|
2012-11-02 18:14:01 +00:00
|
|
|
mutex_unlock(&dev_priv->rps.hw_lock);
|
2011-06-28 20:04:16 +00:00
|
|
|
|
2013-12-19 13:54:52 +00:00
|
|
|
out:
|
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
return ret;
|
2011-06-28 20:04:16 +00:00
|
|
|
}
|
|
|
|
|
2010-08-19 15:09:23 +00:00
|
|
|
static int i915_opregion(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2010-08-19 15:09:23 +00:00
|
|
|
struct intel_opregion *opregion = &dev_priv->opregion;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
2012-04-21 20:49:10 +00:00
|
|
|
goto out;
|
2010-08-19 15:09:23 +00:00
|
|
|
|
2015-12-14 10:50:53 +00:00
|
|
|
if (opregion->header)
|
|
|
|
seq_write(m, opregion->header, OPREGION_SIZE);
|
2010-08-19 15:09:23 +00:00
|
|
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
2012-04-21 20:49:10 +00:00
|
|
|
out:
|
2010-08-19 15:09:23 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-12-15 11:17:12 +00:00
|
|
|
static int i915_vbt(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct intel_opregion *opregion = &node_to_i915(m->private)->opregion;
|
2015-12-15 11:17:12 +00:00
|
|
|
|
|
|
|
if (opregion->vbt)
|
|
|
|
seq_write(m, opregion->vbt, opregion->vbt_size);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-08-25 21:45:57 +00:00
|
|
|
static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2015-11-27 08:13:11 +00:00
|
|
|
struct intel_framebuffer *fbdev_fb = NULL;
|
2015-07-10 17:02:51 +00:00
|
|
|
struct drm_framebuffer *drm_fb;
|
2016-04-03 13:14:20 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2010-08-25 21:45:57 +00:00
|
|
|
|
2015-08-10 11:34:08 +00:00
|
|
|
#ifdef CONFIG_DRM_FBDEV_EMULATION
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (dev_priv->fbdev) {
|
|
|
|
fbdev_fb = to_intel_framebuffer(dev_priv->fbdev->helper.fb);
|
2016-07-02 14:36:00 +00:00
|
|
|
|
|
|
|
seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, modifier 0x%llx, refcount %d, obj ",
|
|
|
|
fbdev_fb->base.width,
|
|
|
|
fbdev_fb->base.height,
|
|
|
|
fbdev_fb->base.depth,
|
|
|
|
fbdev_fb->base.bits_per_pixel,
|
|
|
|
fbdev_fb->base.modifier[0],
|
|
|
|
drm_framebuffer_read_refcount(&fbdev_fb->base));
|
|
|
|
describe_obj(m, fbdev_fb->obj);
|
|
|
|
seq_putc(m, '\n');
|
|
|
|
}
|
2013-10-09 07:18:51 +00:00
|
|
|
#endif
|
2010-08-25 21:45:57 +00:00
|
|
|
|
drm: revamp locking around fb creation/destruction
Well, at least step 1. The goal here is that framebuffer objects can
survive outside of the mode_config lock, with just a reference held
as protection. The first step to get there is to introduce a special
fb_lock which protects fb lookup, creation and destruction, to make
them appear atomic.
This new fb_lock can nest within the mode_config lock. But the idea is
(once the reference counting part is completed) that we only quickly
take that fb_lock to lookup a framebuffer and grab a reference,
without any other locks involved.
vmwgfx is the only driver which does framebuffer lookups itself, also
wrap those calls to drm_mode_object_find with the new lock.
Also protect the fb_list walking in i915 and omapdrm with the new lock.
As a slight complication there's also the list of user-created fbs
attached to the file private. The problem now is that at fclose() time
we need to walk that list, eventually do a modeset call to remove the
fb from active usage (and are required to be able to take the
mode_config lock), but in the end we need to grab the new fb_lock to
remove the fb from the list. The easiest solution is to add another
mutex to protect this per-file list.
Currently that new fbs_lock nests within the modeset locks and so
appears redudant. But later patches will switch around this sequence
so that taking the modeset locks in the fb destruction path is
optional in the fastpath. Ultimately the goal is that addfb and rmfb
do not require the mode_config lock, since otherwise they have the
potential to introduce stalls in the pageflip sequence of a compositor
(if the compositor e.g. switches to a fullscreen client or if it
enables a plane). But that requires a few more steps and hoops to jump
through.
Note that framebuffer creation/destruction is now double-protected -
once by the fb_lock and in parts by the idr_lock. The later would be
unnecessariy if framebuffers would have their own idr allocator. But
that's material for another patch (series).
v2: Properly initialize the fb->filp_head list in _init, otherwise the
newly added WARN to check whether the fb isn't on a fpriv list any
more will fail for driver-private objects.
v3: Fixup two error-case unlock bugs spotted by Richard Wilbur.
Reviewed-by: Rob Clark <rob@ti.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-12-10 20:19:18 +00:00
|
|
|
mutex_lock(&dev->mode_config.fb_lock);
|
2015-07-10 17:02:51 +00:00
|
|
|
drm_for_each_fb(drm_fb, dev) {
|
2015-11-27 08:13:11 +00:00
|
|
|
struct intel_framebuffer *fb = to_intel_framebuffer(drm_fb);
|
|
|
|
if (fb == fbdev_fb)
|
2010-08-25 21:45:57 +00:00
|
|
|
continue;
|
|
|
|
|
2015-02-10 17:16:07 +00:00
|
|
|
seq_printf(m, "user size: %d x %d, depth %d, %d bpp, modifier 0x%llx, refcount %d, obj ",
|
2010-08-25 21:45:57 +00:00
|
|
|
fb->base.width,
|
|
|
|
fb->base.height,
|
|
|
|
fb->base.depth,
|
2012-12-11 15:21:38 +00:00
|
|
|
fb->base.bits_per_pixel,
|
2015-02-10 17:16:07 +00:00
|
|
|
fb->base.modifier[0],
|
2016-04-15 05:10:35 +00:00
|
|
|
drm_framebuffer_read_refcount(&fb->base));
|
2010-11-08 19:18:58 +00:00
|
|
|
describe_obj(m, fb->obj);
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_putc(m, '\n');
|
2010-08-25 21:45:57 +00:00
|
|
|
}
|
drm: revamp locking around fb creation/destruction
Well, at least step 1. The goal here is that framebuffer objects can
survive outside of the mode_config lock, with just a reference held
as protection. The first step to get there is to introduce a special
fb_lock which protects fb lookup, creation and destruction, to make
them appear atomic.
This new fb_lock can nest within the mode_config lock. But the idea is
(once the reference counting part is completed) that we only quickly
take that fb_lock to lookup a framebuffer and grab a reference,
without any other locks involved.
vmwgfx is the only driver which does framebuffer lookups itself, also
wrap those calls to drm_mode_object_find with the new lock.
Also protect the fb_list walking in i915 and omapdrm with the new lock.
As a slight complication there's also the list of user-created fbs
attached to the file private. The problem now is that at fclose() time
we need to walk that list, eventually do a modeset call to remove the
fb from active usage (and are required to be able to take the
mode_config lock), but in the end we need to grab the new fb_lock to
remove the fb from the list. The easiest solution is to add another
mutex to protect this per-file list.
Currently that new fbs_lock nests within the modeset locks and so
appears redudant. But later patches will switch around this sequence
so that taking the modeset locks in the fb destruction path is
optional in the fastpath. Ultimately the goal is that addfb and rmfb
do not require the mode_config lock, since otherwise they have the
potential to introduce stalls in the pageflip sequence of a compositor
(if the compositor e.g. switches to a fullscreen client or if it
enables a plane). But that requires a few more steps and hoops to jump
through.
Note that framebuffer creation/destruction is now double-protected -
once by the fb_lock and in parts by the idr_lock. The later would be
unnecessariy if framebuffers would have their own idr allocator. But
that's material for another patch (series).
v2: Properly initialize the fb->filp_head list in _init, otherwise the
newly added WARN to check whether the fb isn't on a fpriv list any
more will fail for driver-private objects.
v3: Fixup two error-case unlock bugs spotted by Richard Wilbur.
Reviewed-by: Rob Clark <rob@ti.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2012-12-10 20:19:18 +00:00
|
|
|
mutex_unlock(&dev->mode_config.fb_lock);
|
2016-04-03 13:14:20 +00:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2010-08-25 21:45:57 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-08-02 21:50:21 +00:00
|
|
|
static void describe_ctx_ring(struct seq_file *m, struct intel_ring *ring)
|
2014-07-24 16:04:46 +00:00
|
|
|
{
|
|
|
|
seq_printf(m, " (ringbuffer, space: %d, head: %u, tail: %u, last head: %d)",
|
2016-08-02 21:50:21 +00:00
|
|
|
ring->space, ring->head, ring->tail,
|
|
|
|
ring->last_retired_head);
|
2014-07-24 16:04:46 +00:00
|
|
|
}
|
|
|
|
|
2011-03-20 01:14:29 +00:00
|
|
|
static int i915_context_status(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
2016-05-24 13:53:34 +00:00
|
|
|
struct i915_gem_context *ctx;
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
enum intel_engine_id id;
|
2016-03-23 18:19:53 +00:00
|
|
|
int ret;
|
2011-03-20 01:14:29 +00:00
|
|
|
|
2014-05-29 21:23:08 +00:00
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
2011-03-20 01:14:29 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2013-09-18 04:12:45 +00:00
|
|
|
list_for_each_entry(ctx, &dev_priv->context_list, link) {
|
2016-04-28 08:56:51 +00:00
|
|
|
seq_printf(m, "HW context %u ", ctx->hw_id);
|
2016-08-15 09:49:08 +00:00
|
|
|
if (ctx->pid) {
|
2016-05-24 13:53:39 +00:00
|
|
|
struct task_struct *task;
|
|
|
|
|
2016-08-15 09:49:08 +00:00
|
|
|
task = get_pid_task(ctx->pid, PIDTYPE_PID);
|
2016-05-24 13:53:39 +00:00
|
|
|
if (task) {
|
|
|
|
seq_printf(m, "(%s [%d]) ",
|
|
|
|
task->comm, task->pid);
|
|
|
|
put_task_struct(task);
|
|
|
|
}
|
2016-08-15 09:49:08 +00:00
|
|
|
} else if (IS_ERR(ctx->file_priv)) {
|
|
|
|
seq_puts(m, "(deleted) ");
|
2016-05-24 13:53:39 +00:00
|
|
|
} else {
|
|
|
|
seq_puts(m, "(kernel) ");
|
|
|
|
}
|
|
|
|
|
2016-05-24 13:53:41 +00:00
|
|
|
seq_putc(m, ctx->remap_slice ? 'R' : 'r');
|
|
|
|
seq_putc(m, '\n');
|
2014-07-24 16:04:46 +00:00
|
|
|
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id) {
|
2016-05-24 13:53:41 +00:00
|
|
|
struct intel_context *ce = &ctx->engine[engine->id];
|
|
|
|
|
|
|
|
seq_printf(m, "%s: ", engine->name);
|
|
|
|
seq_putc(m, ce->initialised ? 'I' : 'i');
|
|
|
|
if (ce->state)
|
2016-08-15 09:48:54 +00:00
|
|
|
describe_obj(m, ce->state->obj);
|
2016-08-02 21:50:20 +00:00
|
|
|
if (ce->ring)
|
2016-08-02 21:50:21 +00:00
|
|
|
describe_ctx_ring(m, ce->ring);
|
2014-07-24 16:04:46 +00:00
|
|
|
seq_putc(m, '\n');
|
|
|
|
}
|
2013-09-18 04:12:45 +00:00
|
|
|
|
|
|
|
seq_putc(m, '\n');
|
2013-02-14 23:05:12 +00:00
|
|
|
}
|
|
|
|
|
2014-05-29 21:23:08 +00:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2011-03-20 01:14:29 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-12-02 13:21:18 +00:00
|
|
|
static void i915_dump_lrc_obj(struct seq_file *m,
|
2016-05-24 13:53:34 +00:00
|
|
|
struct i915_gem_context *ctx,
|
2016-03-16 11:00:37 +00:00
|
|
|
struct intel_engine_cs *engine)
|
2014-12-02 13:21:18 +00:00
|
|
|
{
|
2016-08-15 09:48:54 +00:00
|
|
|
struct i915_vma *vma = ctx->engine[engine->id].state;
|
2014-12-02 13:21:18 +00:00
|
|
|
struct page *page;
|
|
|
|
int j;
|
|
|
|
|
2016-04-28 08:56:52 +00:00
|
|
|
seq_printf(m, "CONTEXT: %s %u\n", engine->name, ctx->hw_id);
|
|
|
|
|
2016-08-15 09:48:54 +00:00
|
|
|
if (!vma) {
|
|
|
|
seq_puts(m, "\tFake context\n");
|
2014-12-02 13:21:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-08-15 09:48:54 +00:00
|
|
|
if (vma->flags & I915_VMA_GLOBAL_BIND)
|
|
|
|
seq_printf(m, "\tBound in GGTT at 0x%08x\n",
|
2016-08-15 09:49:07 +00:00
|
|
|
i915_ggtt_offset(vma));
|
2014-12-02 13:21:18 +00:00
|
|
|
|
2016-10-28 12:58:35 +00:00
|
|
|
if (i915_gem_object_pin_pages(vma->obj)) {
|
2016-08-15 09:48:54 +00:00
|
|
|
seq_puts(m, "\tFailed to get pages for context object\n\n");
|
2014-12-02 13:21:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-08-15 09:48:54 +00:00
|
|
|
page = i915_gem_object_get_page(vma->obj, LRC_STATE_PN);
|
|
|
|
if (page) {
|
|
|
|
u32 *reg_state = kmap_atomic(page);
|
2014-12-02 13:21:18 +00:00
|
|
|
|
|
|
|
for (j = 0; j < 0x600 / sizeof(u32) / 4; j += 4) {
|
2016-08-15 09:48:54 +00:00
|
|
|
seq_printf(m,
|
|
|
|
"\t[0x%04x] 0x%08x 0x%08x 0x%08x 0x%08x\n",
|
|
|
|
j * 4,
|
2014-12-02 13:21:18 +00:00
|
|
|
reg_state[j], reg_state[j + 1],
|
|
|
|
reg_state[j + 2], reg_state[j + 3]);
|
|
|
|
}
|
|
|
|
kunmap_atomic(reg_state);
|
|
|
|
}
|
|
|
|
|
2016-10-28 12:58:35 +00:00
|
|
|
i915_gem_object_unpin_pages(vma->obj);
|
2014-12-02 13:21:18 +00:00
|
|
|
seq_putc(m, '\n');
|
|
|
|
}
|
|
|
|
|
2014-08-07 12:24:26 +00:00
|
|
|
static int i915_dump_lrc(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
2016-05-24 13:53:34 +00:00
|
|
|
struct i915_gem_context *ctx;
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
enum intel_engine_id id;
|
2016-03-24 11:20:38 +00:00
|
|
|
int ret;
|
2014-08-07 12:24:26 +00:00
|
|
|
|
|
|
|
if (!i915.enable_execlists) {
|
|
|
|
seq_printf(m, "Logical Ring Contexts are disabled\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2016-01-19 19:02:55 +00:00
|
|
|
list_for_each_entry(ctx, &dev_priv->context_list, link)
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id)
|
2016-04-28 08:56:53 +00:00
|
|
|
i915_dump_lrc_obj(m, ctx, engine);
|
2014-08-07 12:24:26 +00:00
|
|
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-12-14 12:57:16 +00:00
|
|
|
static const char *swizzle_string(unsigned swizzle)
|
|
|
|
{
|
2013-06-24 21:59:49 +00:00
|
|
|
switch (swizzle) {
|
2011-12-14 12:57:16 +00:00
|
|
|
case I915_BIT_6_SWIZZLE_NONE:
|
|
|
|
return "none";
|
|
|
|
case I915_BIT_6_SWIZZLE_9:
|
|
|
|
return "bit9";
|
|
|
|
case I915_BIT_6_SWIZZLE_9_10:
|
|
|
|
return "bit9/bit10";
|
|
|
|
case I915_BIT_6_SWIZZLE_9_11:
|
|
|
|
return "bit9/bit11";
|
|
|
|
case I915_BIT_6_SWIZZLE_9_10_11:
|
|
|
|
return "bit9/bit10/bit11";
|
|
|
|
case I915_BIT_6_SWIZZLE_9_17:
|
|
|
|
return "bit9/bit17";
|
|
|
|
case I915_BIT_6_SWIZZLE_9_10_17:
|
|
|
|
return "bit9/bit10/bit17";
|
|
|
|
case I915_BIT_6_SWIZZLE_UNKNOWN:
|
2012-12-28 17:00:09 +00:00
|
|
|
return "unknown";
|
2011-12-14 12:57:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return "bug";
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_swizzle_info(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2012-08-09 13:07:02 +00:00
|
|
|
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
2011-12-14 12:57:16 +00:00
|
|
|
|
|
|
|
seq_printf(m, "bit6 swizzle for X-tiling = %s\n",
|
|
|
|
swizzle_string(dev_priv->mm.bit_6_swizzle_x));
|
|
|
|
seq_printf(m, "bit6 swizzle for Y-tiling = %s\n",
|
|
|
|
swizzle_string(dev_priv->mm.bit_6_swizzle_y));
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_GEN3(dev_priv) || IS_GEN4(dev_priv)) {
|
2011-12-14 12:57:16 +00:00
|
|
|
seq_printf(m, "DDC = 0x%08x\n",
|
|
|
|
I915_READ(DCC));
|
2014-11-20 08:26:30 +00:00
|
|
|
seq_printf(m, "DDC2 = 0x%08x\n",
|
|
|
|
I915_READ(DCC2));
|
2011-12-14 12:57:16 +00:00
|
|
|
seq_printf(m, "C0DRB3 = 0x%04x\n",
|
|
|
|
I915_READ16(C0DRB3));
|
|
|
|
seq_printf(m, "C1DRB3 = 0x%04x\n",
|
|
|
|
I915_READ16(C1DRB3));
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
} else if (INTEL_GEN(dev_priv) >= 6) {
|
2012-01-31 15:47:56 +00:00
|
|
|
seq_printf(m, "MAD_DIMM_C0 = 0x%08x\n",
|
|
|
|
I915_READ(MAD_DIMM_C0));
|
|
|
|
seq_printf(m, "MAD_DIMM_C1 = 0x%08x\n",
|
|
|
|
I915_READ(MAD_DIMM_C1));
|
|
|
|
seq_printf(m, "MAD_DIMM_C2 = 0x%08x\n",
|
|
|
|
I915_READ(MAD_DIMM_C2));
|
|
|
|
seq_printf(m, "TILECTL = 0x%08x\n",
|
|
|
|
I915_READ(TILECTL));
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 8)
|
2013-11-03 04:07:14 +00:00
|
|
|
seq_printf(m, "GAMTARBMODE = 0x%08x\n",
|
|
|
|
I915_READ(GAMTARBMODE));
|
|
|
|
else
|
|
|
|
seq_printf(m, "ARB_MODE = 0x%08x\n",
|
|
|
|
I915_READ(ARB_MODE));
|
2012-01-31 15:47:56 +00:00
|
|
|
seq_printf(m, "DISP_ARB_CTL = 0x%08x\n",
|
|
|
|
I915_READ(DISP_ARB_CTL));
|
2011-12-14 12:57:16 +00:00
|
|
|
}
|
2014-11-20 08:26:30 +00:00
|
|
|
|
|
|
|
if (dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
|
|
|
|
seq_puts(m, "L-shaped memory detected\n");
|
|
|
|
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
2011-12-14 12:57:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-12-06 22:11:30 +00:00
|
|
|
static int per_file_ctx(int id, void *ptr, void *data)
|
|
|
|
{
|
2016-05-24 13:53:34 +00:00
|
|
|
struct i915_gem_context *ctx = ptr;
|
2013-12-06 22:11:30 +00:00
|
|
|
struct seq_file *m = data;
|
2014-08-06 13:04:53 +00:00
|
|
|
struct i915_hw_ppgtt *ppgtt = ctx->ppgtt;
|
|
|
|
|
|
|
|
if (!ppgtt) {
|
|
|
|
seq_printf(m, " no ppgtt for context %d\n",
|
|
|
|
ctx->user_handle);
|
|
|
|
return 0;
|
|
|
|
}
|
2013-12-06 22:11:30 +00:00
|
|
|
|
2014-05-22 13:13:38 +00:00
|
|
|
if (i915_gem_context_is_default(ctx))
|
|
|
|
seq_puts(m, " default context:\n");
|
|
|
|
else
|
drm/i915: Emphasize that ctx->id is merely a user handle
This is an Execlists preparatory patch, since they make context ID become an
overloaded term:
- In the software, it was used to distinguish which context userspace was
trying to use.
- In the BSpec, the term is used to describe the 20-bits long field the
hardware uses to it to discriminate the contexts that are submitted to
the ELSP and inform the driver about their current status (via Context
Switch Interrupts and Context Status Buffers).
Initially, I tried to make the different meanings converge, but it proved
impossible:
- The software ctx->id is per-filp, while the hardware one needs to be
globally unique.
- Also, we multiplex several backing states objects per intel_context,
and all of them need unique HW IDs.
- I tried adding a per-filp ID and then composing the HW context ID as:
ctx->id + file_priv->id + ring->id, but the fact that the hardware only
uses 20-bits means we have to artificially limit the number of filps or
contexts the userspace can create.
The ctx->user_handle renaming bits are done with this Cocci patch (plus
manual frobbing of the struct declaration):
@@
struct intel_context c;
@@
- (c).id
+ c.user_handle
@@
struct intel_context *c;
@@
- (c)->id
+ c->user_handle
Also, while we are at it, s/DEFAULT_CONTEXT_ID/DEFAULT_CONTEXT_HANDLE and
change the type to unsigned 32 bits.
v2: s/handle/user_handle and change the type to uint32_t as suggested by
Chris Wilson.
Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org> (v1)
Signed-off-by: Oscar Mateo <oscar.mateo@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2014-07-03 15:28:00 +00:00
|
|
|
seq_printf(m, " context %d:\n", ctx->user_handle);
|
2013-12-06 22:11:30 +00:00
|
|
|
ppgtt->debug_dump(ppgtt, m);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static void gen8_ppgtt_info(struct seq_file *m,
|
|
|
|
struct drm_i915_private *dev_priv)
|
2012-02-09 16:15:49 +00:00
|
|
|
{
|
2013-11-03 04:07:30 +00:00
|
|
|
struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
struct intel_engine_cs *engine;
|
|
|
|
enum intel_engine_id id;
|
2016-03-24 11:20:38 +00:00
|
|
|
int i;
|
2012-02-09 16:15:49 +00:00
|
|
|
|
2013-11-03 04:07:30 +00:00
|
|
|
if (!ppgtt)
|
|
|
|
return;
|
|
|
|
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id) {
|
2016-03-16 11:00:36 +00:00
|
|
|
seq_printf(m, "%s\n", engine->name);
|
2013-11-03 04:07:30 +00:00
|
|
|
for (i = 0; i < 4; i++) {
|
2016-03-16 11:00:36 +00:00
|
|
|
u64 pdp = I915_READ(GEN8_RING_PDP_UDW(engine, i));
|
2013-11-03 04:07:30 +00:00
|
|
|
pdp <<= 32;
|
2016-03-16 11:00:36 +00:00
|
|
|
pdp |= I915_READ(GEN8_RING_PDP_LDW(engine, i));
|
2014-03-31 15:17:16 +00:00
|
|
|
seq_printf(m, "\tPDP%d 0x%016llx\n", i, pdp);
|
2013-11-03 04:07:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static void gen6_ppgtt_info(struct seq_file *m,
|
|
|
|
struct drm_i915_private *dev_priv)
|
2013-11-03 04:07:30 +00:00
|
|
|
{
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
enum intel_engine_id id;
|
2012-02-09 16:15:49 +00:00
|
|
|
|
2016-05-10 09:57:06 +00:00
|
|
|
if (IS_GEN6(dev_priv))
|
2012-02-09 16:15:49 +00:00
|
|
|
seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE));
|
|
|
|
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id) {
|
2016-03-16 11:00:36 +00:00
|
|
|
seq_printf(m, "%s\n", engine->name);
|
2016-05-10 09:57:06 +00:00
|
|
|
if (IS_GEN7(dev_priv))
|
2016-03-16 11:00:36 +00:00
|
|
|
seq_printf(m, "GFX_MODE: 0x%08x\n",
|
|
|
|
I915_READ(RING_MODE_GEN7(engine)));
|
|
|
|
seq_printf(m, "PP_DIR_BASE: 0x%08x\n",
|
|
|
|
I915_READ(RING_PP_DIR_BASE(engine)));
|
|
|
|
seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n",
|
|
|
|
I915_READ(RING_PP_DIR_BASE_READ(engine)));
|
|
|
|
seq_printf(m, "PP_DIR_DCLV: 0x%08x\n",
|
|
|
|
I915_READ(RING_PP_DIR_DCLV(engine)));
|
2012-02-09 16:15:49 +00:00
|
|
|
}
|
|
|
|
if (dev_priv->mm.aliasing_ppgtt) {
|
|
|
|
struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
|
|
|
|
|
2013-06-24 21:59:48 +00:00
|
|
|
seq_puts(m, "aliasing PPGTT:\n");
|
2015-06-25 15:35:07 +00:00
|
|
|
seq_printf(m, "pd gtt offset: 0x%08x\n", ppgtt->pd.base.ggtt_offset);
|
2013-12-06 22:11:30 +00:00
|
|
|
|
2013-12-06 22:11:29 +00:00
|
|
|
ppgtt->debug_dump(ppgtt, m);
|
2014-08-06 13:04:53 +00:00
|
|
|
}
|
2013-12-06 22:11:30 +00:00
|
|
|
|
2012-02-09 16:15:49 +00:00
|
|
|
seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK));
|
2013-11-03 04:07:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_ppgtt_info(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2015-07-29 16:23:57 +00:00
|
|
|
struct drm_file *file;
|
2016-08-22 13:28:20 +00:00
|
|
|
int ret;
|
2013-11-03 04:07:30 +00:00
|
|
|
|
2016-08-22 13:28:20 +00:00
|
|
|
mutex_lock(&dev->filelist_mutex);
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
2013-11-03 04:07:30 +00:00
|
|
|
if (ret)
|
2016-08-22 13:28:20 +00:00
|
|
|
goto out_unlock;
|
|
|
|
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
2013-11-03 04:07:30 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 8)
|
|
|
|
gen8_ppgtt_info(m, dev_priv);
|
|
|
|
else if (INTEL_GEN(dev_priv) >= 6)
|
|
|
|
gen6_ppgtt_info(m, dev_priv);
|
2013-11-03 04:07:30 +00:00
|
|
|
|
2015-07-29 16:23:57 +00:00
|
|
|
list_for_each_entry_reverse(file, &dev->filelist, lhead) {
|
|
|
|
struct drm_i915_file_private *file_priv = file->driver_priv;
|
2015-09-25 10:58:11 +00:00
|
|
|
struct task_struct *task;
|
2015-07-29 16:23:57 +00:00
|
|
|
|
2015-09-25 10:58:11 +00:00
|
|
|
task = get_pid_task(file->pid, PIDTYPE_PID);
|
2015-10-02 15:14:22 +00:00
|
|
|
if (!task) {
|
|
|
|
ret = -ESRCH;
|
2016-08-22 13:28:20 +00:00
|
|
|
goto out_rpm;
|
2015-10-02 15:14:22 +00:00
|
|
|
}
|
2015-09-25 10:58:11 +00:00
|
|
|
seq_printf(m, "\nproc: %s\n", task->comm);
|
|
|
|
put_task_struct(task);
|
2015-07-29 16:23:57 +00:00
|
|
|
idr_for_each(&file_priv->context_idr, per_file_ctx,
|
|
|
|
(void *)(unsigned long)m);
|
|
|
|
}
|
|
|
|
|
2016-08-22 13:28:20 +00:00
|
|
|
out_rpm:
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
2012-02-09 16:15:49 +00:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2016-08-22 13:28:20 +00:00
|
|
|
out_unlock:
|
|
|
|
mutex_unlock(&dev->filelist_mutex);
|
2015-10-02 15:14:22 +00:00
|
|
|
return ret;
|
2012-02-09 16:15:49 +00:00
|
|
|
}
|
|
|
|
|
2015-04-27 12:41:23 +00:00
|
|
|
static int count_irq_waiters(struct drm_i915_private *i915)
|
|
|
|
{
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
enum intel_engine_id id;
|
2015-04-27 12:41:23 +00:00
|
|
|
int count = 0;
|
|
|
|
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, i915, id)
|
drm/i915: Slaughter the thundering i915_wait_request herd
One particularly stressful scenario consists of many independent tasks
all competing for GPU time and waiting upon the results (e.g. realtime
transcoding of many, many streams). One bottleneck in particular is that
each client waits on its own results, but every client is woken up after
every batchbuffer - hence the thunder of hooves as then every client must
do its heavyweight dance to read a coherent seqno to see if it is the
lucky one.
Ideally, we only want one client to wake up after the interrupt and
check its request for completion. Since the requests must retire in
order, we can select the first client on the oldest request to be woken.
Once that client has completed his wait, we can then wake up the
next client and so on. However, all clients then incur latency as every
process in the chain may be delayed for scheduling - this may also then
cause some priority inversion. To reduce the latency, when a client
is added or removed from the list, we scan the tree for completed
seqno and wake up all the completed waiters in parallel.
Using igt/benchmarks/gem_latency, we can demonstrate this effect. The
benchmark measures the number of GPU cycles between completion of a
batch and the client waking up from a call to wait-ioctl. With many
concurrent waiters, with each on a different request, we observe that
the wakeup latency before the patch scales nearly linearly with the
number of waiters (before external factors kick in making the scaling much
worse). After applying the patch, we can see that only the single waiter
for the request is being woken up, providing a constant wakeup latency
for every operation. However, the situation is not quite as rosy for
many waiters on the same request, though to the best of my knowledge this
is much less likely in practice. Here, we can observe that the
concurrent waiters incur extra latency from being woken up by the
solitary bottom-half, rather than directly by the interrupt. This
appears to be scheduler induced (having discounted adverse effects from
having a rbtree walk/erase in the wakeup path), each additional
wake_up_process() costs approximately 1us on big core. Another effect of
performing the secondary wakeups from the first bottom-half is the
incurred delay this imposes on high priority threads - rather than
immediately returning to userspace and leaving the interrupt handler to
wake the others.
To offset the delay incurred with additional waiters on a request, we
could use a hybrid scheme that did a quick read in the interrupt handler
and dequeued all the completed waiters (incurring the overhead in the
interrupt handler, not the best plan either as we then incur GPU
submission latency) but we would still have to wake up the bottom-half
every time to do the heavyweight slow read. Or we could only kick the
waiters on the seqno with the same priority as the current task (i.e. in
the realtime waiter scenario, only it is woken up immediately by the
interrupt and simply queues the next waiter before returning to userspace,
minimising its delay at the expense of the chain, and also reducing
contention on its scheduler runqueue). This is effective at avoid long
pauses in the interrupt handler and at avoiding the extra latency in
realtime/high-priority waiters.
v2: Convert from a kworker per engine into a dedicated kthread for the
bottom-half.
v3: Rename request members and tweak comments.
v4: Use a per-engine spinlock in the breadcrumbs bottom-half.
v5: Fix race in locklessly checking waiter status and kicking the task on
adding a new waiter.
v6: Fix deciding when to force the timer to hide missing interrupts.
v7: Move the bottom-half from the kthread to the first client process.
v8: Reword a few comments
v9: Break the busy loop when the interrupt is unmasked or has fired.
v10: Comments, unnecessary churn, better debugging from Tvrtko
v11: Wake all completed waiters on removing the current bottom-half to
reduce the latency of waking up a herd of clients all waiting on the
same request.
v12: Rearrange missed-interrupt fault injection so that it works with
igt/drv_missed_irq_hang
v13: Rename intel_breadcrumb and friends to intel_wait in preparation
for signal handling.
v14: RCU commentary, assert_spin_locked
v15: Hide BUG_ON behind the compiler; report on gem_latency findings.
v16: Sort seqno-groups by priority so that first-waiter has the highest
task priority (and so avoid priority inversion).
v17: Add waiters to post-mortem GPU hang state.
v18: Return early for a completed wait after acquiring the spinlock.
Avoids adding ourselves to the tree if the is already complete, and
skips the awkward question of why we don't do completion wakeups for
waits earlier than or equal to ourselves.
v19: Prepare for init_breadcrumbs to fail. Later patches may want to
allocate during init, so be prepared to propagate back the error code.
Testcase: igt/gem_concurrent_blit
Testcase: igt/benchmarks/gem_latency
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: "Rogozhkin, Dmitry V" <dmitry.v.rogozhkin@intel.com>
Cc: "Gong, Zhipeng" <zhipeng.gong@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Dave Gordon <david.s.gordon@intel.com>
Cc: "Goel, Akash" <akash.goel@intel.com>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> #v18
Link: http://patchwork.freedesktop.org/patch/msgid/1467390209-3576-6-git-send-email-chris@chris-wilson.co.uk
2016-07-01 16:23:15 +00:00
|
|
|
count += intel_engine_has_waiter(engine);
|
2015-04-27 12:41:23 +00:00
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2016-08-15 08:49:33 +00:00
|
|
|
static const char *rps_power_to_str(unsigned int power)
|
|
|
|
{
|
|
|
|
static const char * const strings[] = {
|
|
|
|
[LOW_POWER] = "low power",
|
|
|
|
[BETWEEN] = "mixed",
|
|
|
|
[HIGH_POWER] = "high power",
|
|
|
|
};
|
|
|
|
|
|
|
|
if (power >= ARRAY_SIZE(strings) || !strings[power])
|
|
|
|
return "unknown";
|
|
|
|
|
|
|
|
return strings[power];
|
|
|
|
}
|
|
|
|
|
2015-04-07 15:20:32 +00:00
|
|
|
static int i915_rps_boost_info(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2015-04-07 15:20:32 +00:00
|
|
|
struct drm_file *file;
|
|
|
|
|
2015-04-27 12:41:23 +00:00
|
|
|
seq_printf(m, "RPS enabled? %d\n", dev_priv->rps.enabled);
|
2016-10-28 12:58:56 +00:00
|
|
|
seq_printf(m, "GPU busy? %s [%d requests]\n",
|
|
|
|
yesno(dev_priv->gt.awake), dev_priv->gt.active_requests);
|
2015-04-27 12:41:23 +00:00
|
|
|
seq_printf(m, "CPU waiting? %d\n", count_irq_waiters(dev_priv));
|
2016-08-15 08:49:33 +00:00
|
|
|
seq_printf(m, "Frequency requested %d\n",
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq));
|
|
|
|
seq_printf(m, " min hard:%d, soft:%d; max soft:%d, hard:%d\n",
|
2015-04-27 12:41:23 +00:00
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.min_freq_softlimit),
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.max_freq_softlimit),
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.max_freq));
|
2016-08-15 08:49:33 +00:00
|
|
|
seq_printf(m, " idle:%d, efficient:%d, boost:%d\n",
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.idle_freq),
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
|
|
|
|
intel_gpu_freq(dev_priv, dev_priv->rps.boost_freq));
|
2016-04-26 17:29:41 +00:00
|
|
|
|
|
|
|
mutex_lock(&dev->filelist_mutex);
|
2015-05-21 20:01:47 +00:00
|
|
|
spin_lock(&dev_priv->rps.client_lock);
|
2015-04-07 15:20:32 +00:00
|
|
|
list_for_each_entry_reverse(file, &dev->filelist, lhead) {
|
|
|
|
struct drm_i915_file_private *file_priv = file->driver_priv;
|
|
|
|
struct task_struct *task;
|
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
task = pid_task(file->pid, PIDTYPE_PID);
|
|
|
|
seq_printf(m, "%s [%d]: %d boosts%s\n",
|
|
|
|
task ? task->comm : "<unknown>",
|
|
|
|
task ? task->pid : -1,
|
2015-04-27 12:41:22 +00:00
|
|
|
file_priv->rps.boosts,
|
|
|
|
list_empty(&file_priv->rps.link) ? "" : ", active");
|
2015-04-07 15:20:32 +00:00
|
|
|
rcu_read_unlock();
|
|
|
|
}
|
2016-07-20 08:21:13 +00:00
|
|
|
seq_printf(m, "Kernel (anonymous) boosts: %d\n", dev_priv->rps.boosts);
|
2015-05-21 20:01:47 +00:00
|
|
|
spin_unlock(&dev_priv->rps.client_lock);
|
2016-04-26 17:29:41 +00:00
|
|
|
mutex_unlock(&dev->filelist_mutex);
|
2015-04-07 15:20:32 +00:00
|
|
|
|
2016-08-15 08:49:33 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 6 &&
|
|
|
|
dev_priv->rps.enabled &&
|
2016-10-28 12:58:56 +00:00
|
|
|
dev_priv->gt.active_requests) {
|
2016-08-15 08:49:33 +00:00
|
|
|
u32 rpup, rpupei;
|
|
|
|
u32 rpdown, rpdownei;
|
|
|
|
|
|
|
|
intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
|
|
|
|
rpup = I915_READ_FW(GEN6_RP_CUR_UP) & GEN6_RP_EI_MASK;
|
|
|
|
rpupei = I915_READ_FW(GEN6_RP_CUR_UP_EI) & GEN6_RP_EI_MASK;
|
|
|
|
rpdown = I915_READ_FW(GEN6_RP_CUR_DOWN) & GEN6_RP_EI_MASK;
|
|
|
|
rpdownei = I915_READ_FW(GEN6_RP_CUR_DOWN_EI) & GEN6_RP_EI_MASK;
|
|
|
|
intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
|
|
|
|
|
|
|
|
seq_printf(m, "\nRPS Autotuning (current \"%s\" window):\n",
|
|
|
|
rps_power_to_str(dev_priv->rps.power));
|
|
|
|
seq_printf(m, " Avg. up: %d%% [above threshold? %d%%]\n",
|
|
|
|
100 * rpup / rpupei,
|
|
|
|
dev_priv->rps.up_threshold);
|
|
|
|
seq_printf(m, " Avg. down: %d%% [below threshold? %d%%]\n",
|
|
|
|
100 * rpdown / rpdownei,
|
|
|
|
dev_priv->rps.down_threshold);
|
|
|
|
} else {
|
|
|
|
seq_puts(m, "\nRPS Autotuning inactive\n");
|
|
|
|
}
|
|
|
|
|
2015-05-21 20:01:47 +00:00
|
|
|
return 0;
|
2015-04-07 15:20:32 +00:00
|
|
|
}
|
|
|
|
|
2013-07-04 18:02:07 +00:00
|
|
|
static int i915_llc(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2016-04-13 14:26:43 +00:00
|
|
|
const bool edram = INTEL_GEN(dev_priv) > 8;
|
2013-07-04 18:02:07 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
seq_printf(m, "LLC: %s\n", yesno(HAS_LLC(dev_priv)));
|
2016-04-13 14:26:43 +00:00
|
|
|
seq_printf(m, "%s: %lluMB\n", edram ? "eDRAM" : "eLLC",
|
|
|
|
intel_uncore_edram_size(dev_priv)/1024/1024);
|
2013-07-04 18:02:07 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-12 14:43:37 +00:00
|
|
|
static int i915_guc_load_status_info(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2015-08-12 14:43:37 +00:00
|
|
|
struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
|
|
|
|
u32 tmp, i;
|
|
|
|
|
2016-04-07 08:08:05 +00:00
|
|
|
if (!HAS_GUC_UCODE(dev_priv))
|
2015-08-12 14:43:37 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
seq_printf(m, "GuC firmware status:\n");
|
|
|
|
seq_printf(m, "\tpath: %s\n",
|
|
|
|
guc_fw->guc_fw_path);
|
|
|
|
seq_printf(m, "\tfetch: %s\n",
|
|
|
|
intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status));
|
|
|
|
seq_printf(m, "\tload: %s\n",
|
|
|
|
intel_guc_fw_status_repr(guc_fw->guc_fw_load_status));
|
|
|
|
seq_printf(m, "\tversion wanted: %d.%d\n",
|
|
|
|
guc_fw->guc_fw_major_wanted, guc_fw->guc_fw_minor_wanted);
|
|
|
|
seq_printf(m, "\tversion found: %d.%d\n",
|
|
|
|
guc_fw->guc_fw_major_found, guc_fw->guc_fw_minor_found);
|
2015-10-19 23:10:54 +00:00
|
|
|
seq_printf(m, "\theader: offset is %d; size = %d\n",
|
|
|
|
guc_fw->header_offset, guc_fw->header_size);
|
|
|
|
seq_printf(m, "\tuCode: offset is %d; size = %d\n",
|
|
|
|
guc_fw->ucode_offset, guc_fw->ucode_size);
|
|
|
|
seq_printf(m, "\tRSA: offset is %d; size = %d\n",
|
|
|
|
guc_fw->rsa_offset, guc_fw->rsa_size);
|
2015-08-12 14:43:37 +00:00
|
|
|
|
|
|
|
tmp = I915_READ(GUC_STATUS);
|
|
|
|
|
|
|
|
seq_printf(m, "\nGuC status 0x%08x:\n", tmp);
|
|
|
|
seq_printf(m, "\tBootrom status = 0x%x\n",
|
|
|
|
(tmp & GS_BOOTROM_MASK) >> GS_BOOTROM_SHIFT);
|
|
|
|
seq_printf(m, "\tuKernel status = 0x%x\n",
|
|
|
|
(tmp & GS_UKERNEL_MASK) >> GS_UKERNEL_SHIFT);
|
|
|
|
seq_printf(m, "\tMIA Core status = 0x%x\n",
|
|
|
|
(tmp & GS_MIA_MASK) >> GS_MIA_SHIFT);
|
|
|
|
seq_puts(m, "\nScratch registers:\n");
|
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
seq_printf(m, "\t%2d: \t0x%x\n", i, I915_READ(SOFT_SCRATCH(i)));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-12 16:24:36 +00:00
|
|
|
static void i915_guc_log_info(struct seq_file *m,
|
|
|
|
struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
struct intel_guc *guc = &dev_priv->guc;
|
|
|
|
|
|
|
|
seq_puts(m, "\nGuC logging stats:\n");
|
|
|
|
|
|
|
|
seq_printf(m, "\tISR: flush count %10u, overflow count %10u\n",
|
|
|
|
guc->log.flush_count[GUC_ISR_LOG_BUFFER],
|
|
|
|
guc->log.total_overflow_count[GUC_ISR_LOG_BUFFER]);
|
|
|
|
|
|
|
|
seq_printf(m, "\tDPC: flush count %10u, overflow count %10u\n",
|
|
|
|
guc->log.flush_count[GUC_DPC_LOG_BUFFER],
|
|
|
|
guc->log.total_overflow_count[GUC_DPC_LOG_BUFFER]);
|
|
|
|
|
|
|
|
seq_printf(m, "\tCRASH: flush count %10u, overflow count %10u\n",
|
|
|
|
guc->log.flush_count[GUC_CRASH_DUMP_LOG_BUFFER],
|
|
|
|
guc->log.total_overflow_count[GUC_CRASH_DUMP_LOG_BUFFER]);
|
|
|
|
|
|
|
|
seq_printf(m, "\tTotal flush interrupt count: %u\n",
|
|
|
|
guc->log.flush_interrupt_count);
|
|
|
|
|
|
|
|
seq_printf(m, "\tCapture miss count: %u\n",
|
|
|
|
guc->log.capture_miss_count);
|
|
|
|
}
|
|
|
|
|
2015-08-12 14:43:44 +00:00
|
|
|
static void i915_guc_client_info(struct seq_file *m,
|
|
|
|
struct drm_i915_private *dev_priv,
|
|
|
|
struct i915_guc_client *client)
|
|
|
|
{
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
2016-08-09 14:19:22 +00:00
|
|
|
enum intel_engine_id id;
|
2015-08-12 14:43:44 +00:00
|
|
|
uint64_t tot = 0;
|
|
|
|
|
|
|
|
seq_printf(m, "\tPriority %d, GuC ctx index: %u, PD offset 0x%x\n",
|
|
|
|
client->priority, client->ctx_index, client->proc_desc_offset);
|
|
|
|
seq_printf(m, "\tDoorbell id %d, offset: 0x%x, cookie 0x%x\n",
|
|
|
|
client->doorbell_id, client->doorbell_offset, client->cookie);
|
|
|
|
seq_printf(m, "\tWQ size %d, offset: 0x%x, tail %d\n",
|
|
|
|
client->wq_size, client->wq_offset, client->wq_tail);
|
|
|
|
|
2016-05-13 14:36:33 +00:00
|
|
|
seq_printf(m, "\tWork queue full: %u\n", client->no_wq_space);
|
2015-08-12 14:43:44 +00:00
|
|
|
seq_printf(m, "\tFailed doorbell: %u\n", client->b_fail);
|
|
|
|
seq_printf(m, "\tLast submission result: %d\n", client->retcode);
|
|
|
|
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id) {
|
2016-08-09 14:19:22 +00:00
|
|
|
u64 submissions = client->submissions[id];
|
|
|
|
tot += submissions;
|
2015-08-12 14:43:44 +00:00
|
|
|
seq_printf(m, "\tSubmissions: %llu %s\n",
|
2016-08-09 14:19:22 +00:00
|
|
|
submissions, engine->name);
|
2015-08-12 14:43:44 +00:00
|
|
|
}
|
|
|
|
seq_printf(m, "\tTotal: %llu\n", tot);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_guc_info(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2015-08-12 14:43:44 +00:00
|
|
|
struct intel_guc guc;
|
2015-08-21 17:45:27 +00:00
|
|
|
struct i915_guc_client client = {};
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
2016-08-09 14:19:22 +00:00
|
|
|
enum intel_engine_id id;
|
2015-08-12 14:43:44 +00:00
|
|
|
u64 total = 0;
|
|
|
|
|
2016-04-07 08:08:05 +00:00
|
|
|
if (!HAS_GUC_SCHED(dev_priv))
|
2015-08-12 14:43:44 +00:00
|
|
|
return 0;
|
|
|
|
|
2015-12-03 00:56:29 +00:00
|
|
|
if (mutex_lock_interruptible(&dev->struct_mutex))
|
|
|
|
return 0;
|
|
|
|
|
2015-08-12 14:43:44 +00:00
|
|
|
/* Take a local copy of the GuC data, so we can dump it at leisure */
|
|
|
|
guc = dev_priv->guc;
|
2015-12-03 00:56:29 +00:00
|
|
|
if (guc.execbuf_client)
|
2015-08-12 14:43:44 +00:00
|
|
|
client = *guc.execbuf_client;
|
2015-12-03 00:56:29 +00:00
|
|
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
2015-08-12 14:43:44 +00:00
|
|
|
|
2016-06-13 16:57:28 +00:00
|
|
|
seq_printf(m, "Doorbell map:\n");
|
|
|
|
seq_printf(m, "\t%*pb\n", GUC_MAX_DOORBELLS, guc.doorbell_bitmap);
|
|
|
|
seq_printf(m, "Doorbell next cacheline: 0x%x\n\n", guc.db_cacheline);
|
|
|
|
|
2015-08-12 14:43:44 +00:00
|
|
|
seq_printf(m, "GuC total action count: %llu\n", guc.action_count);
|
|
|
|
seq_printf(m, "GuC action failure count: %u\n", guc.action_fail);
|
|
|
|
seq_printf(m, "GuC last action command: 0x%x\n", guc.action_cmd);
|
|
|
|
seq_printf(m, "GuC last action status: 0x%x\n", guc.action_status);
|
|
|
|
seq_printf(m, "GuC last action error code: %d\n", guc.action_err);
|
|
|
|
|
|
|
|
seq_printf(m, "\nGuC submissions:\n");
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id) {
|
2016-08-09 14:19:22 +00:00
|
|
|
u64 submissions = guc.submissions[id];
|
|
|
|
total += submissions;
|
2016-01-23 19:58:14 +00:00
|
|
|
seq_printf(m, "\t%-24s: %10llu, last seqno 0x%08x\n",
|
2016-08-09 14:19:22 +00:00
|
|
|
engine->name, submissions, guc.last_seqno[id]);
|
2015-08-12 14:43:44 +00:00
|
|
|
}
|
|
|
|
seq_printf(m, "\t%s: %llu\n", "Total", total);
|
|
|
|
|
|
|
|
seq_printf(m, "\nGuC execbuf client @ %p:\n", guc.execbuf_client);
|
|
|
|
i915_guc_client_info(m, dev_priv, &client);
|
|
|
|
|
2016-10-12 16:24:36 +00:00
|
|
|
i915_guc_log_info(m, dev_priv);
|
|
|
|
|
2015-08-12 14:43:44 +00:00
|
|
|
/* Add more as required ... */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-12 14:43:40 +00:00
|
|
|
static int i915_guc_log_dump(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2016-08-15 09:48:51 +00:00
|
|
|
struct drm_i915_gem_object *obj;
|
2015-08-12 14:43:40 +00:00
|
|
|
int i = 0, pg;
|
|
|
|
|
2016-10-12 16:24:29 +00:00
|
|
|
if (!dev_priv->guc.log.vma)
|
2015-08-12 14:43:40 +00:00
|
|
|
return 0;
|
|
|
|
|
2016-10-12 16:24:29 +00:00
|
|
|
obj = dev_priv->guc.log.vma->obj;
|
2016-08-15 09:48:51 +00:00
|
|
|
for (pg = 0; pg < obj->base.size / PAGE_SIZE; pg++) {
|
|
|
|
u32 *log = kmap_atomic(i915_gem_object_get_page(obj, pg));
|
2015-08-12 14:43:40 +00:00
|
|
|
|
|
|
|
for (i = 0; i < PAGE_SIZE / sizeof(u32); i += 4)
|
|
|
|
seq_printf(m, "0x%08x 0x%08x 0x%08x 0x%08x\n",
|
|
|
|
*(log + i), *(log + i + 1),
|
|
|
|
*(log + i + 2), *(log + i + 3));
|
|
|
|
|
|
|
|
kunmap_atomic(log);
|
|
|
|
}
|
|
|
|
|
|
|
|
seq_putc(m, '\n');
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-12 16:24:41 +00:00
|
|
|
static int i915_guc_log_control_get(void *data, u64 *val)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = data;
|
|
|
|
struct drm_i915_private *dev_priv = to_i915(dev);
|
|
|
|
|
|
|
|
if (!dev_priv->guc.log.vma)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
*val = i915.guc_log_level;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_guc_log_control_set(void *data, u64 val)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = data;
|
|
|
|
struct drm_i915_private *dev_priv = to_i915(dev);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!dev_priv->guc.log.vma)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
intel_runtime_pm_get(dev_priv);
|
|
|
|
ret = i915_guc_log_control(dev_priv, val);
|
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_SIMPLE_ATTRIBUTE(i915_guc_log_control_fops,
|
|
|
|
i915_guc_log_control_get, i915_guc_log_control_set,
|
|
|
|
"%lld\n");
|
|
|
|
|
2013-07-11 21:44:59 +00:00
|
|
|
static int i915_edp_psr_status(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2013-10-03 19:15:06 +00:00
|
|
|
u32 psrperf = 0;
|
2014-11-14 16:52:40 +00:00
|
|
|
u32 stat[3];
|
|
|
|
enum pipe pipe;
|
2013-10-03 19:15:06 +00:00
|
|
|
bool enabled = false;
|
2013-07-11 21:44:59 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (!HAS_PSR(dev_priv)) {
|
2015-03-09 14:17:58 +00:00
|
|
|
seq_puts(m, "PSR not supported\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
|
|
|
|
2014-07-11 17:30:17 +00:00
|
|
|
mutex_lock(&dev_priv->psr.lock);
|
2013-10-03 19:15:06 +00:00
|
|
|
seq_printf(m, "Sink_Support: %s\n", yesno(dev_priv->psr.sink_support));
|
|
|
|
seq_printf(m, "Source_OK: %s\n", yesno(dev_priv->psr.source_ok));
|
2014-07-11 17:30:11 +00:00
|
|
|
seq_printf(m, "Enabled: %s\n", yesno((bool)dev_priv->psr.enabled));
|
2014-06-12 17:16:45 +00:00
|
|
|
seq_printf(m, "Active: %s\n", yesno(dev_priv->psr.active));
|
2014-07-11 17:30:17 +00:00
|
|
|
seq_printf(m, "Busy frontbuffer bits: 0x%03x\n",
|
|
|
|
dev_priv->psr.busy_frontbuffer_bits);
|
|
|
|
seq_printf(m, "Re-enable work scheduled: %s\n",
|
|
|
|
yesno(work_busy(&dev_priv->psr.work.work)));
|
2013-07-11 21:44:59 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (HAS_DDI(dev_priv))
|
2015-11-11 18:34:15 +00:00
|
|
|
enabled = I915_READ(EDP_PSR_CTL) & EDP_PSR_ENABLE;
|
2015-03-09 14:17:58 +00:00
|
|
|
else {
|
|
|
|
for_each_pipe(dev_priv, pipe) {
|
2016-10-24 12:42:15 +00:00
|
|
|
enum transcoder cpu_transcoder =
|
|
|
|
intel_pipe_to_cpu_transcoder(dev_priv, pipe);
|
|
|
|
enum intel_display_power_domain power_domain;
|
|
|
|
|
|
|
|
power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder);
|
|
|
|
if (!intel_display_power_get_if_enabled(dev_priv,
|
|
|
|
power_domain))
|
|
|
|
continue;
|
|
|
|
|
2015-03-09 14:17:58 +00:00
|
|
|
stat[pipe] = I915_READ(VLV_PSRSTAT(pipe)) &
|
|
|
|
VLV_EDP_PSR_CURR_STATE_MASK;
|
|
|
|
if ((stat[pipe] == VLV_EDP_PSR_ACTIVE_NORFB_UP) ||
|
|
|
|
(stat[pipe] == VLV_EDP_PSR_ACTIVE_SF_UPDATE))
|
|
|
|
enabled = true;
|
2016-10-24 12:42:15 +00:00
|
|
|
|
|
|
|
intel_display_power_put(dev_priv, power_domain);
|
2014-11-14 16:52:40 +00:00
|
|
|
}
|
|
|
|
}
|
2016-02-01 20:02:07 +00:00
|
|
|
|
|
|
|
seq_printf(m, "Main link in standby mode: %s\n",
|
|
|
|
yesno(dev_priv->psr.link_standby));
|
|
|
|
|
2014-11-14 16:52:40 +00:00
|
|
|
seq_printf(m, "HW Enabled & Active bit: %s", yesno(enabled));
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (!HAS_DDI(dev_priv))
|
2014-11-14 16:52:40 +00:00
|
|
|
for_each_pipe(dev_priv, pipe) {
|
|
|
|
if ((stat[pipe] == VLV_EDP_PSR_ACTIVE_NORFB_UP) ||
|
|
|
|
(stat[pipe] == VLV_EDP_PSR_ACTIVE_SF_UPDATE))
|
|
|
|
seq_printf(m, " pipe %c", pipe_name(pipe));
|
|
|
|
}
|
|
|
|
seq_puts(m, "\n");
|
2013-07-11 21:44:59 +00:00
|
|
|
|
2015-11-23 22:16:40 +00:00
|
|
|
/*
|
|
|
|
* VLV/CHV PSR has no kind of performance counter
|
|
|
|
* SKL+ Perf counter is reset to 0 everytime DC state is entered
|
|
|
|
*/
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
|
2015-11-11 18:34:15 +00:00
|
|
|
psrperf = I915_READ(EDP_PSR_PERF_CNT) &
|
2013-10-03 19:15:06 +00:00
|
|
|
EDP_PSR_PERF_CNT_MASK;
|
2014-11-14 16:52:40 +00:00
|
|
|
|
|
|
|
seq_printf(m, "Performance_Counter: %u\n", psrperf);
|
|
|
|
}
|
2014-07-11 17:30:17 +00:00
|
|
|
mutex_unlock(&dev_priv->psr.lock);
|
2013-07-11 21:44:59 +00:00
|
|
|
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
2013-07-11 21:44:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-24 15:36:17 +00:00
|
|
|
static int i915_sink_crc(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2014-01-24 15:36:17 +00:00
|
|
|
struct intel_connector *connector;
|
|
|
|
struct intel_dp *intel_dp = NULL;
|
|
|
|
int ret;
|
|
|
|
u8 crc[6];
|
|
|
|
|
|
|
|
drm_modeset_lock_all(dev);
|
2015-03-13 23:13:59 +00:00
|
|
|
for_each_intel_connector(dev, connector) {
|
2016-06-20 13:57:38 +00:00
|
|
|
struct drm_crtc *crtc;
|
2014-01-24 15:36:17 +00:00
|
|
|
|
2016-06-20 13:57:38 +00:00
|
|
|
if (!connector->base.state->best_encoder)
|
2014-01-24 15:36:17 +00:00
|
|
|
continue;
|
|
|
|
|
2016-06-20 13:57:38 +00:00
|
|
|
crtc = connector->base.state->crtc;
|
|
|
|
if (!crtc->state->active)
|
2014-02-13 19:51:33 +00:00
|
|
|
continue;
|
|
|
|
|
2016-06-20 13:57:38 +00:00
|
|
|
if (connector->base.connector_type != DRM_MODE_CONNECTOR_eDP)
|
2014-01-24 15:36:17 +00:00
|
|
|
continue;
|
|
|
|
|
2016-06-20 13:57:38 +00:00
|
|
|
intel_dp = enc_to_intel_dp(connector->base.state->best_encoder);
|
2014-01-24 15:36:17 +00:00
|
|
|
|
|
|
|
ret = intel_dp_sink_crc(intel_dp, crc);
|
|
|
|
if (ret)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
seq_printf(m, "%02x%02x%02x%02x%02x%02x\n",
|
|
|
|
crc[0], crc[1], crc[2],
|
|
|
|
crc[3], crc[4], crc[5]);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
ret = -ENODEV;
|
|
|
|
out:
|
|
|
|
drm_modeset_unlock_all(dev);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-08-20 09:29:23 +00:00
|
|
|
static int i915_energy_uJ(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2013-08-20 09:29:23 +00:00
|
|
|
u64 power;
|
|
|
|
u32 units;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) < 6)
|
2013-08-20 09:29:23 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
2014-02-21 16:52:23 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
|
|
|
|
2013-08-20 09:29:23 +00:00
|
|
|
rdmsrl(MSR_RAPL_POWER_UNIT, power);
|
|
|
|
power = (power & 0x1f00) >> 8;
|
|
|
|
units = 1000000 / (1 << power); /* convert to uJ */
|
|
|
|
power = I915_READ(MCH_SECP_NRG_STTS);
|
|
|
|
power *= units;
|
|
|
|
|
2014-02-21 16:52:23 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
|
2013-08-20 09:29:23 +00:00
|
|
|
seq_printf(m, "%llu", (long long unsigned)power);
|
2013-08-19 16:18:10 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-06-04 17:23:57 +00:00
|
|
|
static int i915_runtime_pm_status(struct seq_file *m, void *unused)
|
2013-08-19 16:18:10 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2016-08-22 10:32:44 +00:00
|
|
|
struct pci_dev *pdev = dev_priv->drm.pdev;
|
2013-08-19 16:18:10 +00:00
|
|
|
|
2016-04-03 13:14:21 +00:00
|
|
|
if (!HAS_RUNTIME_PM(dev_priv))
|
|
|
|
seq_puts(m, "Runtime power management not supported\n");
|
2013-08-19 16:18:10 +00:00
|
|
|
|
2016-07-04 07:08:31 +00:00
|
|
|
seq_printf(m, "GPU idle: %s\n", yesno(!dev_priv->gt.awake));
|
2013-08-19 16:18:10 +00:00
|
|
|
seq_printf(m, "IRQs disabled: %s\n",
|
2014-06-20 16:29:20 +00:00
|
|
|
yesno(!intel_irqs_enabled(dev_priv)));
|
2015-06-15 11:52:28 +00:00
|
|
|
#ifdef CONFIG_PM
|
2015-06-04 17:23:58 +00:00
|
|
|
seq_printf(m, "Usage count: %d\n",
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
atomic_read(&dev_priv->drm.dev->power.usage_count));
|
2015-06-15 11:52:28 +00:00
|
|
|
#else
|
|
|
|
seq_printf(m, "Device Power Management (CONFIG_PM) disabled\n");
|
|
|
|
#endif
|
2016-04-03 13:14:21 +00:00
|
|
|
seq_printf(m, "PCI device power state: %s [%d]\n",
|
2016-08-22 10:32:44 +00:00
|
|
|
pci_power_name(pdev->current_state),
|
|
|
|
pdev->current_state);
|
2013-08-19 16:18:10 +00:00
|
|
|
|
2013-08-20 09:29:23 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-25 15:15:35 +00:00
|
|
|
static int i915_power_domain_info(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2013-11-25 15:15:35 +00:00
|
|
|
struct i915_power_domains *power_domains = &dev_priv->power_domains;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
mutex_lock(&power_domains->lock);
|
|
|
|
|
|
|
|
seq_printf(m, "%-25s %s\n", "Power well/domain", "Use count");
|
|
|
|
for (i = 0; i < power_domains->power_well_count; i++) {
|
|
|
|
struct i915_power_well *power_well;
|
|
|
|
enum intel_display_power_domain power_domain;
|
|
|
|
|
|
|
|
power_well = &power_domains->power_wells[i];
|
|
|
|
seq_printf(m, "%-25s %d\n", power_well->name,
|
|
|
|
power_well->count);
|
|
|
|
|
|
|
|
for (power_domain = 0; power_domain < POWER_DOMAIN_NUM;
|
|
|
|
power_domain++) {
|
|
|
|
if (!(BIT(power_domain) & power_well->domains))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
seq_printf(m, " %-23s %d\n",
|
2015-11-20 15:55:33 +00:00
|
|
|
intel_display_power_domain_str(power_domain),
|
2013-11-25 15:15:35 +00:00
|
|
|
power_domains->domain_use_count[power_domain]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutex_unlock(&power_domains->lock);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-10-27 12:47:01 +00:00
|
|
|
static int i915_dmc_info(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2015-10-27 12:47:01 +00:00
|
|
|
struct intel_csr *csr;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (!HAS_CSR(dev_priv)) {
|
2015-10-27 12:47:01 +00:00
|
|
|
seq_puts(m, "not supported\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
csr = &dev_priv->csr;
|
|
|
|
|
2015-10-30 15:54:47 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
|
|
|
|
2015-10-27 12:47:01 +00:00
|
|
|
seq_printf(m, "fw loaded: %s\n", yesno(csr->dmc_payload != NULL));
|
|
|
|
seq_printf(m, "path: %s\n", csr->fw_path);
|
|
|
|
|
|
|
|
if (!csr->dmc_payload)
|
2015-10-30 15:54:47 +00:00
|
|
|
goto out;
|
2015-10-27 12:47:01 +00:00
|
|
|
|
|
|
|
seq_printf(m, "version: %d.%d\n", CSR_VERSION_MAJOR(csr->version),
|
|
|
|
CSR_VERSION_MINOR(csr->version));
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_SKYLAKE(dev_priv) && csr->version >= CSR_VERSION(1, 6)) {
|
2015-10-30 15:53:32 +00:00
|
|
|
seq_printf(m, "DC3 -> DC5 count: %d\n",
|
|
|
|
I915_READ(SKL_CSR_DC3_DC5_COUNT));
|
|
|
|
seq_printf(m, "DC5 -> DC6 count: %d\n",
|
|
|
|
I915_READ(SKL_CSR_DC5_DC6_COUNT));
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
} else if (IS_BROXTON(dev_priv) && csr->version >= CSR_VERSION(1, 4)) {
|
2015-10-27 12:47:03 +00:00
|
|
|
seq_printf(m, "DC3 -> DC5 count: %d\n",
|
|
|
|
I915_READ(BXT_CSR_DC3_DC5_COUNT));
|
2015-10-30 15:53:32 +00:00
|
|
|
}
|
|
|
|
|
2015-10-30 15:54:47 +00:00
|
|
|
out:
|
|
|
|
seq_printf(m, "program base: 0x%08x\n", I915_READ(CSR_PROGRAM(0)));
|
|
|
|
seq_printf(m, "ssp base: 0x%08x\n", I915_READ(CSR_SSP_BASE));
|
|
|
|
seq_printf(m, "htp: 0x%08x\n", I915_READ(CSR_HTP_SKL));
|
|
|
|
|
2015-10-30 15:53:32 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
|
2015-10-27 12:47:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-02-07 20:48:15 +00:00
|
|
|
static void intel_seq_print_mode(struct seq_file *m, int tabs,
|
|
|
|
struct drm_display_mode *mode)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < tabs; i++)
|
|
|
|
seq_putc(m, '\t');
|
|
|
|
|
|
|
|
seq_printf(m, "id %d:\"%s\" freq %d clock %d hdisp %d hss %d hse %d htot %d vdisp %d vss %d vse %d vtot %d type 0x%x flags 0x%x\n",
|
|
|
|
mode->base.id, mode->name,
|
|
|
|
mode->vrefresh, mode->clock,
|
|
|
|
mode->hdisplay, mode->hsync_start,
|
|
|
|
mode->hsync_end, mode->htotal,
|
|
|
|
mode->vdisplay, mode->vsync_start,
|
|
|
|
mode->vsync_end, mode->vtotal,
|
|
|
|
mode->type, mode->flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void intel_encoder_info(struct seq_file *m,
|
|
|
|
struct intel_crtc *intel_crtc,
|
|
|
|
struct intel_encoder *intel_encoder)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2014-02-07 20:48:15 +00:00
|
|
|
struct drm_crtc *crtc = &intel_crtc->base;
|
|
|
|
struct intel_connector *intel_connector;
|
|
|
|
struct drm_encoder *encoder;
|
|
|
|
|
|
|
|
encoder = &intel_encoder->base;
|
|
|
|
seq_printf(m, "\tencoder %d: type: %s, connectors:\n",
|
2014-06-03 11:56:21 +00:00
|
|
|
encoder->base.id, encoder->name);
|
2014-02-07 20:48:15 +00:00
|
|
|
for_each_connector_on_encoder(dev, encoder, intel_connector) {
|
|
|
|
struct drm_connector *connector = &intel_connector->base;
|
|
|
|
seq_printf(m, "\t\tconnector %d: type: %s, status: %s",
|
|
|
|
connector->base.id,
|
2014-06-03 11:56:17 +00:00
|
|
|
connector->name,
|
2014-02-07 20:48:15 +00:00
|
|
|
drm_get_connector_status_name(connector->status));
|
|
|
|
if (connector->status == connector_status_connected) {
|
|
|
|
struct drm_display_mode *mode = &crtc->mode;
|
|
|
|
seq_printf(m, ", mode:\n");
|
|
|
|
intel_seq_print_mode(m, 2, mode);
|
|
|
|
} else {
|
|
|
|
seq_putc(m, '\n');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void intel_crtc_info(struct seq_file *m, struct intel_crtc *intel_crtc)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2014-02-07 20:48:15 +00:00
|
|
|
struct drm_crtc *crtc = &intel_crtc->base;
|
|
|
|
struct intel_encoder *intel_encoder;
|
2015-09-10 14:07:57 +00:00
|
|
|
struct drm_plane_state *plane_state = crtc->primary->state;
|
|
|
|
struct drm_framebuffer *fb = plane_state->fb;
|
2014-02-07 20:48:15 +00:00
|
|
|
|
2015-09-10 14:07:57 +00:00
|
|
|
if (fb)
|
2014-06-16 17:12:55 +00:00
|
|
|
seq_printf(m, "\tfb: %d, pos: %dx%d, size: %dx%d\n",
|
2015-09-10 14:07:57 +00:00
|
|
|
fb->base.id, plane_state->src_x >> 16,
|
|
|
|
plane_state->src_y >> 16, fb->width, fb->height);
|
2014-06-16 17:12:55 +00:00
|
|
|
else
|
|
|
|
seq_puts(m, "\tprimary plane disabled\n");
|
2014-02-07 20:48:15 +00:00
|
|
|
for_each_encoder_on_crtc(dev, crtc, intel_encoder)
|
|
|
|
intel_encoder_info(m, intel_crtc, intel_encoder);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void intel_panel_info(struct seq_file *m, struct intel_panel *panel)
|
|
|
|
{
|
|
|
|
struct drm_display_mode *mode = panel->fixed_mode;
|
|
|
|
|
|
|
|
seq_printf(m, "\tfixed mode:\n");
|
|
|
|
intel_seq_print_mode(m, 2, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void intel_dp_info(struct seq_file *m,
|
|
|
|
struct intel_connector *intel_connector)
|
|
|
|
{
|
|
|
|
struct intel_encoder *intel_encoder = intel_connector->encoder;
|
|
|
|
struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
|
|
|
|
|
|
|
|
seq_printf(m, "\tDPCD rev: %x\n", intel_dp->dpcd[DP_DPCD_REV]);
|
2015-09-03 08:16:09 +00:00
|
|
|
seq_printf(m, "\taudio support: %s\n", yesno(intel_dp->has_audio));
|
2016-06-20 13:57:37 +00:00
|
|
|
if (intel_connector->base.connector_type == DRM_MODE_CONNECTOR_eDP)
|
2014-02-07 20:48:15 +00:00
|
|
|
intel_panel_info(m, &intel_connector->panel);
|
2016-09-09 11:10:57 +00:00
|
|
|
|
|
|
|
drm_dp_downstream_debug(m, intel_dp->dpcd, intel_dp->downstream_ports,
|
|
|
|
&intel_dp->aux);
|
2014-02-07 20:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void intel_hdmi_info(struct seq_file *m,
|
|
|
|
struct intel_connector *intel_connector)
|
|
|
|
{
|
|
|
|
struct intel_encoder *intel_encoder = intel_connector->encoder;
|
|
|
|
struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base);
|
|
|
|
|
2015-09-03 08:16:09 +00:00
|
|
|
seq_printf(m, "\taudio support: %s\n", yesno(intel_hdmi->has_audio));
|
2014-02-07 20:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void intel_lvds_info(struct seq_file *m,
|
|
|
|
struct intel_connector *intel_connector)
|
|
|
|
{
|
|
|
|
intel_panel_info(m, &intel_connector->panel);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void intel_connector_info(struct seq_file *m,
|
|
|
|
struct drm_connector *connector)
|
|
|
|
{
|
|
|
|
struct intel_connector *intel_connector = to_intel_connector(connector);
|
|
|
|
struct intel_encoder *intel_encoder = intel_connector->encoder;
|
2014-02-20 20:39:57 +00:00
|
|
|
struct drm_display_mode *mode;
|
2014-02-07 20:48:15 +00:00
|
|
|
|
|
|
|
seq_printf(m, "connector %d: type %s, status: %s\n",
|
2014-06-03 11:56:17 +00:00
|
|
|
connector->base.id, connector->name,
|
2014-02-07 20:48:15 +00:00
|
|
|
drm_get_connector_status_name(connector->status));
|
|
|
|
if (connector->status == connector_status_connected) {
|
|
|
|
seq_printf(m, "\tname: %s\n", connector->display_info.name);
|
|
|
|
seq_printf(m, "\tphysical dimensions: %dx%dmm\n",
|
|
|
|
connector->display_info.width_mm,
|
|
|
|
connector->display_info.height_mm);
|
|
|
|
seq_printf(m, "\tsubpixel order: %s\n",
|
|
|
|
drm_get_subpixel_order_name(connector->display_info.subpixel_order));
|
|
|
|
seq_printf(m, "\tCEA rev: %d\n",
|
|
|
|
connector->display_info.cea_rev);
|
|
|
|
}
|
2016-06-21 10:00:38 +00:00
|
|
|
|
|
|
|
if (!intel_encoder || intel_encoder->type == INTEL_OUTPUT_DP_MST)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (connector->connector_type) {
|
|
|
|
case DRM_MODE_CONNECTOR_DisplayPort:
|
|
|
|
case DRM_MODE_CONNECTOR_eDP:
|
2016-09-29 06:55:04 +00:00
|
|
|
intel_dp_info(m, intel_connector);
|
2016-06-21 10:00:38 +00:00
|
|
|
break;
|
|
|
|
case DRM_MODE_CONNECTOR_LVDS:
|
|
|
|
if (intel_encoder->type == INTEL_OUTPUT_LVDS)
|
2014-05-02 03:44:18 +00:00
|
|
|
intel_lvds_info(m, intel_connector);
|
2016-06-21 10:00:38 +00:00
|
|
|
break;
|
|
|
|
case DRM_MODE_CONNECTOR_HDMIA:
|
|
|
|
if (intel_encoder->type == INTEL_OUTPUT_HDMI ||
|
|
|
|
intel_encoder->type == INTEL_OUTPUT_UNKNOWN)
|
|
|
|
intel_hdmi_info(m, intel_connector);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2014-05-02 03:44:18 +00:00
|
|
|
}
|
2014-02-07 20:48:15 +00:00
|
|
|
|
2014-02-20 20:39:57 +00:00
|
|
|
seq_printf(m, "\tmodes:\n");
|
|
|
|
list_for_each_entry(mode, &connector->modes, head)
|
|
|
|
intel_seq_print_mode(m, 2, mode);
|
2014-02-07 20:48:15 +00:00
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static bool cursor_active(struct drm_i915_private *dev_priv, int pipe)
|
2014-03-12 09:13:13 +00:00
|
|
|
{
|
|
|
|
u32 state;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_845G(dev_priv) || IS_I865G(dev_priv))
|
2015-09-22 16:47:51 +00:00
|
|
|
state = I915_READ(CURCNTR(PIPE_A)) & CURSOR_ENABLE;
|
2014-03-12 09:13:13 +00:00
|
|
|
else
|
2014-04-09 10:28:53 +00:00
|
|
|
state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
|
2014-03-12 09:13:13 +00:00
|
|
|
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static bool cursor_position(struct drm_i915_private *dev_priv,
|
|
|
|
int pipe, int *x, int *y)
|
2014-03-12 09:13:13 +00:00
|
|
|
{
|
|
|
|
u32 pos;
|
|
|
|
|
2014-04-09 10:28:53 +00:00
|
|
|
pos = I915_READ(CURPOS(pipe));
|
2014-03-12 09:13:13 +00:00
|
|
|
|
|
|
|
*x = (pos >> CURSOR_X_SHIFT) & CURSOR_POS_MASK;
|
|
|
|
if (pos & (CURSOR_POS_SIGN << CURSOR_X_SHIFT))
|
|
|
|
*x = -*x;
|
|
|
|
|
|
|
|
*y = (pos >> CURSOR_Y_SHIFT) & CURSOR_POS_MASK;
|
|
|
|
if (pos & (CURSOR_POS_SIGN << CURSOR_Y_SHIFT))
|
|
|
|
*y = -*y;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
return cursor_active(dev_priv, pipe);
|
2014-03-12 09:13:13 +00:00
|
|
|
}
|
|
|
|
|
2015-10-27 15:58:32 +00:00
|
|
|
static const char *plane_type(enum drm_plane_type type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case DRM_PLANE_TYPE_OVERLAY:
|
|
|
|
return "OVL";
|
|
|
|
case DRM_PLANE_TYPE_PRIMARY:
|
|
|
|
return "PRI";
|
|
|
|
case DRM_PLANE_TYPE_CURSOR:
|
|
|
|
return "CUR";
|
|
|
|
/*
|
|
|
|
* Deliberately omitting default: to generate compiler warnings
|
|
|
|
* when a new drm_plane_type gets added.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *plane_rotation(unsigned int rotation)
|
|
|
|
{
|
|
|
|
static char buf[48];
|
|
|
|
/*
|
|
|
|
* According to doc only one DRM_ROTATE_ is allowed but this
|
|
|
|
* will print them all to visualize if the values are misused
|
|
|
|
*/
|
|
|
|
snprintf(buf, sizeof(buf),
|
|
|
|
"%s%s%s%s%s%s(0x%08x)",
|
2016-07-29 05:50:05 +00:00
|
|
|
(rotation & DRM_ROTATE_0) ? "0 " : "",
|
|
|
|
(rotation & DRM_ROTATE_90) ? "90 " : "",
|
|
|
|
(rotation & DRM_ROTATE_180) ? "180 " : "",
|
|
|
|
(rotation & DRM_ROTATE_270) ? "270 " : "",
|
|
|
|
(rotation & DRM_REFLECT_X) ? "FLIPX " : "",
|
|
|
|
(rotation & DRM_REFLECT_Y) ? "FLIPY " : "",
|
2015-10-27 15:58:32 +00:00
|
|
|
rotation);
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void intel_plane_info(struct seq_file *m, struct intel_crtc *intel_crtc)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2015-10-27 15:58:32 +00:00
|
|
|
struct intel_plane *intel_plane;
|
|
|
|
|
|
|
|
for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
|
|
|
|
struct drm_plane_state *state;
|
|
|
|
struct drm_plane *plane = &intel_plane->base;
|
2016-08-15 15:29:55 +00:00
|
|
|
char *format_name;
|
2015-10-27 15:58:32 +00:00
|
|
|
|
|
|
|
if (!plane->state) {
|
|
|
|
seq_puts(m, "plane->state is NULL!\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
state = plane->state;
|
|
|
|
|
2016-08-15 00:02:38 +00:00
|
|
|
if (state->fb) {
|
|
|
|
format_name = drm_get_format_name(state->fb->pixel_format);
|
|
|
|
} else {
|
|
|
|
format_name = kstrdup("N/A", GFP_KERNEL);
|
|
|
|
}
|
|
|
|
|
2015-10-27 15:58:32 +00:00
|
|
|
seq_printf(m, "\t--Plane id %d: type=%s, crtc_pos=%4dx%4d, crtc_size=%4dx%4d, src_pos=%d.%04ux%d.%04u, src_size=%d.%04ux%d.%04u, format=%s, rotation=%s\n",
|
|
|
|
plane->base.id,
|
|
|
|
plane_type(intel_plane->base.type),
|
|
|
|
state->crtc_x, state->crtc_y,
|
|
|
|
state->crtc_w, state->crtc_h,
|
|
|
|
(state->src_x >> 16),
|
|
|
|
((state->src_x & 0xffff) * 15625) >> 10,
|
|
|
|
(state->src_y >> 16),
|
|
|
|
((state->src_y & 0xffff) * 15625) >> 10,
|
|
|
|
(state->src_w >> 16),
|
|
|
|
((state->src_w & 0xffff) * 15625) >> 10,
|
|
|
|
(state->src_h >> 16),
|
|
|
|
((state->src_h & 0xffff) * 15625) >> 10,
|
2016-08-15 00:02:38 +00:00
|
|
|
format_name,
|
2015-10-27 15:58:32 +00:00
|
|
|
plane_rotation(state->rotation));
|
2016-08-15 00:02:38 +00:00
|
|
|
|
|
|
|
kfree(format_name);
|
2015-10-27 15:58:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void intel_scaler_info(struct seq_file *m, struct intel_crtc *intel_crtc)
|
|
|
|
{
|
|
|
|
struct intel_crtc_state *pipe_config;
|
|
|
|
int num_scalers = intel_crtc->num_scalers;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
pipe_config = to_intel_crtc_state(intel_crtc->base.state);
|
|
|
|
|
|
|
|
/* Not all platformas have a scaler */
|
|
|
|
if (num_scalers) {
|
|
|
|
seq_printf(m, "\tnum_scalers=%d, scaler_users=%x scaler_id=%d",
|
|
|
|
num_scalers,
|
|
|
|
pipe_config->scaler_state.scaler_users,
|
|
|
|
pipe_config->scaler_state.scaler_id);
|
|
|
|
|
|
|
|
for (i = 0; i < SKL_NUM_SCALERS; i++) {
|
|
|
|
struct intel_scaler *sc =
|
|
|
|
&pipe_config->scaler_state.scalers[i];
|
|
|
|
|
|
|
|
seq_printf(m, ", scalers[%d]: use=%s, mode=%x",
|
|
|
|
i, yesno(sc->in_use), sc->mode);
|
|
|
|
}
|
|
|
|
seq_puts(m, "\n");
|
|
|
|
} else {
|
|
|
|
seq_puts(m, "\tNo scalers available on this platform\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-07 20:48:15 +00:00
|
|
|
static int i915_display_info(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2014-03-12 09:13:13 +00:00
|
|
|
struct intel_crtc *crtc;
|
2014-02-07 20:48:15 +00:00
|
|
|
struct drm_connector *connector;
|
|
|
|
|
2014-04-01 17:55:10 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
2014-02-07 20:48:15 +00:00
|
|
|
drm_modeset_lock_all(dev);
|
|
|
|
seq_printf(m, "CRTC info\n");
|
|
|
|
seq_printf(m, "---------\n");
|
2014-05-13 22:32:22 +00:00
|
|
|
for_each_intel_crtc(dev, crtc) {
|
2014-03-12 09:13:13 +00:00
|
|
|
bool active;
|
2015-06-01 10:50:08 +00:00
|
|
|
struct intel_crtc_state *pipe_config;
|
2014-03-12 09:13:13 +00:00
|
|
|
int x, y;
|
2014-02-07 20:48:15 +00:00
|
|
|
|
2015-06-01 10:50:08 +00:00
|
|
|
pipe_config = to_intel_crtc_state(crtc->base.state);
|
|
|
|
|
2015-10-27 15:58:32 +00:00
|
|
|
seq_printf(m, "CRTC %d: pipe: %c, active=%s, (size=%dx%d), dither=%s, bpp=%d\n",
|
2014-03-12 09:13:13 +00:00
|
|
|
crtc->base.base.id, pipe_name(crtc->pipe),
|
2015-06-01 10:50:08 +00:00
|
|
|
yesno(pipe_config->base.active),
|
2015-10-27 15:58:32 +00:00
|
|
|
pipe_config->pipe_src_w, pipe_config->pipe_src_h,
|
|
|
|
yesno(pipe_config->dither), pipe_config->pipe_bpp);
|
|
|
|
|
2015-06-01 10:50:08 +00:00
|
|
|
if (pipe_config->base.active) {
|
2014-03-12 09:13:13 +00:00
|
|
|
intel_crtc_info(m, crtc);
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
active = cursor_position(dev_priv, crtc->pipe, &x, &y);
|
2014-07-04 07:20:11 +00:00
|
|
|
seq_printf(m, "\tcursor visible? %s, position (%d, %d), size %dx%d, addr 0x%08x, active? %s\n",
|
2014-05-30 13:35:26 +00:00
|
|
|
yesno(crtc->cursor_base),
|
2015-02-27 18:12:00 +00:00
|
|
|
x, y, crtc->base.cursor->state->crtc_w,
|
|
|
|
crtc->base.cursor->state->crtc_h,
|
2014-07-04 07:20:11 +00:00
|
|
|
crtc->cursor_addr, yesno(active));
|
2015-10-27 15:58:32 +00:00
|
|
|
intel_scaler_info(m, crtc);
|
|
|
|
intel_plane_info(m, crtc);
|
2014-04-01 17:55:11 +00:00
|
|
|
}
|
2014-05-22 15:56:31 +00:00
|
|
|
|
|
|
|
seq_printf(m, "\tunderrun reporting: cpu=%s pch=%s \n",
|
|
|
|
yesno(!crtc->cpu_fifo_underrun_disabled),
|
|
|
|
yesno(!crtc->pch_fifo_underrun_disabled));
|
2014-02-07 20:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
seq_printf(m, "\n");
|
|
|
|
seq_printf(m, "Connector info\n");
|
|
|
|
seq_printf(m, "--------------\n");
|
|
|
|
list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
|
|
|
|
intel_connector_info(m, connector);
|
|
|
|
}
|
|
|
|
drm_modeset_unlock_all(dev);
|
2014-04-01 17:55:10 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
2014-02-07 20:48:15 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-04 20:11:31 +00:00
|
|
|
static int i915_engine_info(struct seq_file *m, void *unused)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct intel_engine_cs *engine;
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
enum intel_engine_id id;
|
2016-10-04 20:11:31 +00:00
|
|
|
|
2016-10-24 12:42:15 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
|
|
|
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id) {
|
2016-10-04 20:11:31 +00:00
|
|
|
struct intel_breadcrumbs *b = &engine->breadcrumbs;
|
|
|
|
struct drm_i915_gem_request *rq;
|
|
|
|
struct rb_node *rb;
|
|
|
|
u64 addr;
|
|
|
|
|
|
|
|
seq_printf(m, "%s\n", engine->name);
|
|
|
|
seq_printf(m, "\tcurrent seqno %x, last %x, hangcheck %x [score %d]\n",
|
|
|
|
intel_engine_get_seqno(engine),
|
2016-10-28 12:58:46 +00:00
|
|
|
engine->timeline->last_submitted_seqno,
|
2016-10-04 20:11:31 +00:00
|
|
|
engine->hangcheck.seqno,
|
|
|
|
engine->hangcheck.score);
|
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
|
|
|
|
seq_printf(m, "\tRequests:\n");
|
|
|
|
|
2016-10-28 12:58:46 +00:00
|
|
|
rq = list_first_entry(&engine->timeline->requests,
|
|
|
|
struct drm_i915_gem_request, link);
|
|
|
|
if (&rq->link != &engine->timeline->requests)
|
2016-10-04 20:11:31 +00:00
|
|
|
print_request(m, rq, "\t\tfirst ");
|
|
|
|
|
2016-10-28 12:58:46 +00:00
|
|
|
rq = list_last_entry(&engine->timeline->requests,
|
|
|
|
struct drm_i915_gem_request, link);
|
|
|
|
if (&rq->link != &engine->timeline->requests)
|
2016-10-04 20:11:31 +00:00
|
|
|
print_request(m, rq, "\t\tlast ");
|
|
|
|
|
|
|
|
rq = i915_gem_find_active_request(engine);
|
|
|
|
if (rq) {
|
|
|
|
print_request(m, rq, "\t\tactive ");
|
|
|
|
seq_printf(m,
|
|
|
|
"\t\t[head %04x, postfix %04x, tail %04x, batch 0x%08x_%08x]\n",
|
|
|
|
rq->head, rq->postfix, rq->tail,
|
|
|
|
rq->batch ? upper_32_bits(rq->batch->node.start) : ~0u,
|
|
|
|
rq->batch ? lower_32_bits(rq->batch->node.start) : ~0u);
|
|
|
|
}
|
|
|
|
|
|
|
|
seq_printf(m, "\tRING_START: 0x%08x [0x%08x]\n",
|
|
|
|
I915_READ(RING_START(engine->mmio_base)),
|
|
|
|
rq ? i915_ggtt_offset(rq->ring->vma) : 0);
|
|
|
|
seq_printf(m, "\tRING_HEAD: 0x%08x [0x%08x]\n",
|
|
|
|
I915_READ(RING_HEAD(engine->mmio_base)) & HEAD_ADDR,
|
|
|
|
rq ? rq->ring->head : 0);
|
|
|
|
seq_printf(m, "\tRING_TAIL: 0x%08x [0x%08x]\n",
|
|
|
|
I915_READ(RING_TAIL(engine->mmio_base)) & TAIL_ADDR,
|
|
|
|
rq ? rq->ring->tail : 0);
|
|
|
|
seq_printf(m, "\tRING_CTL: 0x%08x [%s]\n",
|
|
|
|
I915_READ(RING_CTL(engine->mmio_base)),
|
|
|
|
I915_READ(RING_CTL(engine->mmio_base)) & (RING_WAIT | RING_WAIT_SEMAPHORE) ? "waiting" : "");
|
|
|
|
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
|
|
|
addr = intel_engine_get_active_head(engine);
|
|
|
|
seq_printf(m, "\tACTHD: 0x%08x_%08x\n",
|
|
|
|
upper_32_bits(addr), lower_32_bits(addr));
|
|
|
|
addr = intel_engine_get_last_batch_head(engine);
|
|
|
|
seq_printf(m, "\tBBADDR: 0x%08x_%08x\n",
|
|
|
|
upper_32_bits(addr), lower_32_bits(addr));
|
|
|
|
|
|
|
|
if (i915.enable_execlists) {
|
|
|
|
u32 ptr, read, write;
|
|
|
|
|
|
|
|
seq_printf(m, "\tExeclist status: 0x%08x %08x\n",
|
|
|
|
I915_READ(RING_EXECLIST_STATUS_LO(engine)),
|
|
|
|
I915_READ(RING_EXECLIST_STATUS_HI(engine)));
|
|
|
|
|
|
|
|
ptr = I915_READ(RING_CONTEXT_STATUS_PTR(engine));
|
|
|
|
read = GEN8_CSB_READ_PTR(ptr);
|
|
|
|
write = GEN8_CSB_WRITE_PTR(ptr);
|
|
|
|
seq_printf(m, "\tExeclist CSB read %d, write %d\n",
|
|
|
|
read, write);
|
|
|
|
if (read >= GEN8_CSB_ENTRIES)
|
|
|
|
read = 0;
|
|
|
|
if (write >= GEN8_CSB_ENTRIES)
|
|
|
|
write = 0;
|
|
|
|
if (read > write)
|
|
|
|
write += GEN8_CSB_ENTRIES;
|
|
|
|
while (read < write) {
|
|
|
|
unsigned int idx = ++read % GEN8_CSB_ENTRIES;
|
|
|
|
|
|
|
|
seq_printf(m, "\tExeclist CSB[%d]: 0x%08x, context: %d\n",
|
|
|
|
idx,
|
|
|
|
I915_READ(RING_CONTEXT_STATUS_BUF_LO(engine, idx)),
|
|
|
|
I915_READ(RING_CONTEXT_STATUS_BUF_HI(engine, idx)));
|
|
|
|
}
|
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
rq = READ_ONCE(engine->execlist_port[0].request);
|
|
|
|
if (rq)
|
|
|
|
print_request(m, rq, "\t\tELSP[0] ");
|
|
|
|
else
|
|
|
|
seq_printf(m, "\t\tELSP[0] idle\n");
|
|
|
|
rq = READ_ONCE(engine->execlist_port[1].request);
|
|
|
|
if (rq)
|
|
|
|
print_request(m, rq, "\t\tELSP[1] ");
|
|
|
|
else
|
|
|
|
seq_printf(m, "\t\tELSP[1] idle\n");
|
|
|
|
rcu_read_unlock();
|
|
|
|
} else if (INTEL_GEN(dev_priv) > 6) {
|
|
|
|
seq_printf(m, "\tPP_DIR_BASE: 0x%08x\n",
|
|
|
|
I915_READ(RING_PP_DIR_BASE(engine)));
|
|
|
|
seq_printf(m, "\tPP_DIR_BASE_READ: 0x%08x\n",
|
|
|
|
I915_READ(RING_PP_DIR_BASE_READ(engine)));
|
|
|
|
seq_printf(m, "\tPP_DIR_DCLV: 0x%08x\n",
|
|
|
|
I915_READ(RING_PP_DIR_DCLV(engine)));
|
|
|
|
}
|
|
|
|
|
2016-10-28 12:58:55 +00:00
|
|
|
spin_lock_irq(&b->lock);
|
2016-10-04 20:11:31 +00:00
|
|
|
for (rb = rb_first(&b->waiters); rb; rb = rb_next(rb)) {
|
|
|
|
struct intel_wait *w = container_of(rb, typeof(*w), node);
|
|
|
|
|
|
|
|
seq_printf(m, "\t%s [%d] waiting for %x\n",
|
|
|
|
w->tsk->comm, w->tsk->pid, w->seqno);
|
|
|
|
}
|
2016-10-28 12:58:55 +00:00
|
|
|
spin_unlock_irq(&b->lock);
|
2016-10-04 20:11:31 +00:00
|
|
|
|
|
|
|
seq_puts(m, "\n");
|
|
|
|
}
|
|
|
|
|
2016-10-24 12:42:15 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
|
2016-10-04 20:11:31 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-06-30 16:53:42 +00:00
|
|
|
static int i915_semaphore_status(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
int num_rings = INTEL_INFO(dev_priv)->num_rings;
|
2016-03-23 18:19:53 +00:00
|
|
|
enum intel_engine_id id;
|
|
|
|
int j, ret;
|
2014-06-30 16:53:42 +00:00
|
|
|
|
2016-07-20 12:31:57 +00:00
|
|
|
if (!i915.semaphores) {
|
2014-06-30 16:53:42 +00:00
|
|
|
seq_puts(m, "Semaphores are disabled\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2014-07-09 17:31:57 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
2014-06-30 16:53:42 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_BROADWELL(dev_priv)) {
|
2014-06-30 16:53:42 +00:00
|
|
|
struct page *page;
|
|
|
|
uint64_t *seqno;
|
|
|
|
|
2016-08-15 09:49:02 +00:00
|
|
|
page = i915_gem_object_get_page(dev_priv->semaphore->obj, 0);
|
2014-06-30 16:53:42 +00:00
|
|
|
|
|
|
|
seqno = (uint64_t *)kmap_atomic(page);
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id) {
|
2014-06-30 16:53:42 +00:00
|
|
|
uint64_t offset;
|
|
|
|
|
2016-03-16 11:00:36 +00:00
|
|
|
seq_printf(m, "%s\n", engine->name);
|
2014-06-30 16:53:42 +00:00
|
|
|
|
|
|
|
seq_puts(m, " Last signal:");
|
|
|
|
for (j = 0; j < num_rings; j++) {
|
2016-03-23 18:19:53 +00:00
|
|
|
offset = id * I915_NUM_ENGINES + j;
|
2014-06-30 16:53:42 +00:00
|
|
|
seq_printf(m, "0x%08llx (0x%02llx) ",
|
|
|
|
seqno[offset], offset * 8);
|
|
|
|
}
|
|
|
|
seq_putc(m, '\n');
|
|
|
|
|
|
|
|
seq_puts(m, " Last wait: ");
|
|
|
|
for (j = 0; j < num_rings; j++) {
|
2016-03-23 18:19:53 +00:00
|
|
|
offset = id + (j * I915_NUM_ENGINES);
|
2014-06-30 16:53:42 +00:00
|
|
|
seq_printf(m, "0x%08llx (0x%02llx) ",
|
|
|
|
seqno[offset], offset * 8);
|
|
|
|
}
|
|
|
|
seq_putc(m, '\n');
|
|
|
|
|
|
|
|
}
|
|
|
|
kunmap_atomic(seqno);
|
|
|
|
} else {
|
|
|
|
seq_puts(m, " Last signal:");
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id)
|
2014-06-30 16:53:42 +00:00
|
|
|
for (j = 0; j < num_rings; j++)
|
|
|
|
seq_printf(m, "0x%08x\n",
|
2016-03-16 11:00:36 +00:00
|
|
|
I915_READ(engine->semaphore.mbox.signal[j]));
|
2014-06-30 16:53:42 +00:00
|
|
|
seq_putc(m, '\n');
|
|
|
|
}
|
|
|
|
|
2014-07-09 17:31:57 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
2014-06-30 16:53:42 +00:00
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-06-25 19:01:53 +00:00
|
|
|
static int i915_shared_dplls_info(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2014-06-25 19:01:53 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
drm_modeset_lock_all(dev);
|
|
|
|
for (i = 0; i < dev_priv->num_shared_dpll; i++) {
|
|
|
|
struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
|
|
|
|
|
|
|
|
seq_printf(m, "DPLL%i: %s, id: %i\n", i, pll->name, pll->id);
|
2016-03-14 08:27:52 +00:00
|
|
|
seq_printf(m, " crtc_mask: 0x%08x, active: 0x%x, on: %s\n",
|
|
|
|
pll->config.crtc_mask, pll->active_mask, yesno(pll->on));
|
2014-06-25 19:01:53 +00:00
|
|
|
seq_printf(m, " tracked hardware state:\n");
|
2014-10-29 09:32:32 +00:00
|
|
|
seq_printf(m, " dpll: 0x%08x\n", pll->config.hw_state.dpll);
|
|
|
|
seq_printf(m, " dpll_md: 0x%08x\n",
|
|
|
|
pll->config.hw_state.dpll_md);
|
|
|
|
seq_printf(m, " fp0: 0x%08x\n", pll->config.hw_state.fp0);
|
|
|
|
seq_printf(m, " fp1: 0x%08x\n", pll->config.hw_state.fp1);
|
|
|
|
seq_printf(m, " wrpll: 0x%08x\n", pll->config.hw_state.wrpll);
|
2014-06-25 19:01:53 +00:00
|
|
|
}
|
|
|
|
drm_modeset_unlock_all(dev);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-08-30 15:50:59 +00:00
|
|
|
static int i915_wa_registers(struct seq_file *m, void *unused)
|
2014-08-26 13:44:51 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int ret;
|
2016-03-16 11:00:36 +00:00
|
|
|
struct intel_engine_cs *engine;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2016-01-21 21:43:47 +00:00
|
|
|
struct i915_workarounds *workarounds = &dev_priv->workarounds;
|
2016-03-23 18:19:53 +00:00
|
|
|
enum intel_engine_id id;
|
2014-08-26 13:44:51 +00:00
|
|
|
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
intel_runtime_pm_get(dev_priv);
|
|
|
|
|
2016-01-21 21:43:47 +00:00
|
|
|
seq_printf(m, "Workarounds applied: %d\n", workarounds->count);
|
drm/i915: Allocate intel_engine_cs structure only for the enabled engines
With the possibility of addition of many more number of rings in future,
the drm_i915_private structure could bloat as an array, of type
intel_engine_cs, is embedded inside it.
struct intel_engine_cs engine[I915_NUM_ENGINES];
Though this is still fine as generally there is only a single instance of
drm_i915_private structure used, but not all of the possible rings would be
enabled or active on most of the platforms. Some memory can be saved by
allocating intel_engine_cs structure only for the enabled/active engines.
Currently the engine/ring ID is kept static and dev_priv->engine[] is simply
indexed using the enums defined in intel_engine_id.
To save memory and continue using the static engine/ring IDs, 'engine' is
defined as an array of pointers.
struct intel_engine_cs *engine[I915_NUM_ENGINES];
dev_priv->engine[engine_ID] will be NULL for disabled engine instances.
There is a text size reduction of 928 bytes, from 1028200 to 1027272, for
i915.o file (but for i915.ko file text size remain same as 1193131 bytes).
v2:
- Remove the engine iterator field added in drm_i915_private structure,
instead pass a local iterator variable to the for_each_engine**
macros. (Chris)
- Do away with intel_engine_initialized() and instead directly use the
NULL pointer check on engine pointer. (Chris)
v3:
- Remove for_each_engine_id() macro, as the updated macro for_each_engine()
can be used in place of it. (Chris)
- Protect the access to Render engine Fault register with a NULL check, as
engine specific init is done later in Driver load sequence.
v4:
- Use !!dev_priv->engine[VCS] style for the engine check in getparam. (Chris)
- Kill the superfluous init_engine_lists().
v5:
- Cleanup the intel_engines_init() & intel_engines_setup(), with respect to
allocation of intel_engine_cs structure. (Chris)
v6:
- Rebase.
v7:
- Optimize the for_each_engine_masked() macro. (Chris)
- Change the type of 'iter' local variable to enum intel_engine_id. (Chris)
- Rebase.
v8: Rebase.
v9: Rebase.
v10:
- For index calculation use engine ID instead of pointer based arithmetic in
intel_engine_sync_index() as engine pointers are not contiguous now (Chris)
- For appropriateness, rename local enum variable 'iter' to 'id'. (Joonas)
- Use for_each_engine macro for cleanup in intel_engines_init() and remove
check for NULL engine pointer in cleanup() routines. (Joonas)
v11: Rebase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1476378888-7372-1-git-send-email-akash.goel@intel.com
2016-10-13 17:14:48 +00:00
|
|
|
for_each_engine(engine, dev_priv, id)
|
2016-01-21 21:43:47 +00:00
|
|
|
seq_printf(m, "HW whitelist count for %s: %d\n",
|
2016-03-23 18:19:53 +00:00
|
|
|
engine->name, workarounds->hw_whitelist_count[id]);
|
2016-01-21 21:43:47 +00:00
|
|
|
for (i = 0; i < workarounds->count; ++i) {
|
drm/i915: Type safe register read/write
Make I915_READ and I915_WRITE more type safe by wrapping the register
offset in a struct. This should eliminate most of the fumbles we've had
with misplaced parens.
This only takes care of normal mmio registers. We could extend the idea
to other register types and define each with its own struct. That way
you wouldn't be able to accidentally pass the wrong thing to a specific
register access function.
The gpio_reg setup is probably the ugliest thing left. But I figure I'd
just leave it for now, and wait for some divine inspiration to strike
before making it nice.
As for the generated code, it's actually a bit better sometimes. Eg.
looking at i915_irq_handler(), we can see the following change:
lea 0x70024(%rdx,%rax,1),%r9d
mov $0x1,%edx
- movslq %r9d,%r9
- mov %r9,%rsi
- mov %r9,-0x58(%rbp)
- callq *0xd8(%rbx)
+ mov %r9d,%esi
+ mov %r9d,-0x48(%rbp)
callq *0xd8(%rbx)
So previously gcc thought the register offset might be signed and
decided to sign extend it, just in case. The rest appears to be
mostly just minor shuffling of instructions.
v2: i915_mmio_reg_{offset,equal,valid}() helpers added
s/_REG/_MMIO/ in the register defines
mo more switch statements left to worry about
ring_emit stuff got sorted in a prep patch
cmd parser, lrc context and w/a batch buildup also in prep patch
vgpu stuff cleaned up and moved to a prep patch
all other unrelated changes split out
v3: Rebased due to BXT DSI/BLC, MOCS, etc.
v4: Rebased due to churn, s/i915_mmio_reg_t/i915_reg_t/
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: http://patchwork.freedesktop.org/patch/msgid/1447853606-2751-1-git-send-email-ville.syrjala@linux.intel.com
2015-11-18 13:33:26 +00:00
|
|
|
i915_reg_t addr;
|
|
|
|
u32 mask, value, read;
|
2014-10-07 14:21:27 +00:00
|
|
|
bool ok;
|
2014-08-26 13:44:51 +00:00
|
|
|
|
2016-01-21 21:43:47 +00:00
|
|
|
addr = workarounds->reg[i].addr;
|
|
|
|
mask = workarounds->reg[i].mask;
|
|
|
|
value = workarounds->reg[i].value;
|
2014-10-07 14:21:27 +00:00
|
|
|
read = I915_READ(addr);
|
|
|
|
ok = (value & mask) == (read & mask);
|
|
|
|
seq_printf(m, "0x%X: 0x%08X, mask: 0x%08X, read: 0x%08x, status: %s\n",
|
drm/i915: Type safe register read/write
Make I915_READ and I915_WRITE more type safe by wrapping the register
offset in a struct. This should eliminate most of the fumbles we've had
with misplaced parens.
This only takes care of normal mmio registers. We could extend the idea
to other register types and define each with its own struct. That way
you wouldn't be able to accidentally pass the wrong thing to a specific
register access function.
The gpio_reg setup is probably the ugliest thing left. But I figure I'd
just leave it for now, and wait for some divine inspiration to strike
before making it nice.
As for the generated code, it's actually a bit better sometimes. Eg.
looking at i915_irq_handler(), we can see the following change:
lea 0x70024(%rdx,%rax,1),%r9d
mov $0x1,%edx
- movslq %r9d,%r9
- mov %r9,%rsi
- mov %r9,-0x58(%rbp)
- callq *0xd8(%rbx)
+ mov %r9d,%esi
+ mov %r9d,-0x48(%rbp)
callq *0xd8(%rbx)
So previously gcc thought the register offset might be signed and
decided to sign extend it, just in case. The rest appears to be
mostly just minor shuffling of instructions.
v2: i915_mmio_reg_{offset,equal,valid}() helpers added
s/_REG/_MMIO/ in the register defines
mo more switch statements left to worry about
ring_emit stuff got sorted in a prep patch
cmd parser, lrc context and w/a batch buildup also in prep patch
vgpu stuff cleaned up and moved to a prep patch
all other unrelated changes split out
v3: Rebased due to BXT DSI/BLC, MOCS, etc.
v4: Rebased due to churn, s/i915_mmio_reg_t/i915_reg_t/
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: http://patchwork.freedesktop.org/patch/msgid/1447853606-2751-1-git-send-email-ville.syrjala@linux.intel.com
2015-11-18 13:33:26 +00:00
|
|
|
i915_mmio_reg_offset(addr), value, mask, read, ok ? "OK" : "FAIL");
|
2014-08-26 13:44:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-11-04 17:06:51 +00:00
|
|
|
static int i915_ddb_info(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2014-11-04 17:06:51 +00:00
|
|
|
struct skl_ddb_allocation *ddb;
|
|
|
|
struct skl_ddb_entry *entry;
|
|
|
|
enum pipe pipe;
|
|
|
|
int plane;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) < 9)
|
2014-12-03 17:33:24 +00:00
|
|
|
return 0;
|
|
|
|
|
2014-11-04 17:06:51 +00:00
|
|
|
drm_modeset_lock_all(dev);
|
|
|
|
|
|
|
|
ddb = &dev_priv->wm.skl_hw.ddb;
|
|
|
|
|
|
|
|
seq_printf(m, "%-15s%8s%8s%8s\n", "", "Start", "End", "Size");
|
|
|
|
|
|
|
|
for_each_pipe(dev_priv, pipe) {
|
|
|
|
seq_printf(m, "Pipe %c\n", pipe_name(pipe));
|
|
|
|
|
2016-10-26 22:51:28 +00:00
|
|
|
for_each_universal_plane(dev_priv, pipe, plane) {
|
2014-11-04 17:06:51 +00:00
|
|
|
entry = &ddb->plane[pipe][plane];
|
|
|
|
seq_printf(m, " Plane%-8d%8u%8u%8u\n", plane + 1,
|
|
|
|
entry->start, entry->end,
|
|
|
|
skl_ddb_entry_size(entry));
|
|
|
|
}
|
|
|
|
|
2015-09-24 22:53:10 +00:00
|
|
|
entry = &ddb->plane[pipe][PLANE_CURSOR];
|
2014-11-04 17:06:51 +00:00
|
|
|
seq_printf(m, " %-13s%8u%8u%8u\n", "Cursor", entry->start,
|
|
|
|
entry->end, skl_ddb_entry_size(entry));
|
|
|
|
}
|
|
|
|
|
|
|
|
drm_modeset_unlock_all(dev);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
drm/i915: Add debugfs entry for DRRS
Adding a debugfs entry to determine if DRRS is supported or not
V2: [By Ram]: Following details about the active crtc will be filled
in seq-file of the debugfs
1. Encoder output type
2. DRRS Support on this CRTC
3. DRRS current state
4. Current Vrefresh
Format is as follows:
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_HIGH_RR, Vrefresh: 60
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_LOW_RR, Vrefresh: 40
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
V3: [By Ram]: Readability is improved.
Another error case is covered [Daniel]
V4: [By Ram]: Current status of the Idleness DRRS along with
the Front buffer bits are added to the debugfs. [Rodrigo]
V5: [By Ram]: Rephrased to make it easy to understand.
And format is modified. [Rodrigo]
V6: [By Ram]: Modeset mutex are acquired for each crtc along with
renaming the Idleness detection states [Daniel]
Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
[danvet: dump full busy_frontbuffer_bits and remove the dubios
computed logical state of DRRS - debugfs is about what is fact,
developers should reach their own conclusion when debugging issues.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-03-03 15:23:10 +00:00
|
|
|
static void drrs_status_per_crtc(struct seq_file *m,
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_device *dev,
|
|
|
|
struct intel_crtc *intel_crtc)
|
drm/i915: Add debugfs entry for DRRS
Adding a debugfs entry to determine if DRRS is supported or not
V2: [By Ram]: Following details about the active crtc will be filled
in seq-file of the debugfs
1. Encoder output type
2. DRRS Support on this CRTC
3. DRRS current state
4. Current Vrefresh
Format is as follows:
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_HIGH_RR, Vrefresh: 60
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_LOW_RR, Vrefresh: 40
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
V3: [By Ram]: Readability is improved.
Another error case is covered [Daniel]
V4: [By Ram]: Current status of the Idleness DRRS along with
the Front buffer bits are added to the debugfs. [Rodrigo]
V5: [By Ram]: Rephrased to make it easy to understand.
And format is modified. [Rodrigo]
V6: [By Ram]: Modeset mutex are acquired for each crtc along with
renaming the Idleness detection states [Daniel]
Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
[danvet: dump full busy_frontbuffer_bits and remove the dubios
computed logical state of DRRS - debugfs is about what is fact,
developers should reach their own conclusion when debugging issues.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-03-03 15:23:10 +00:00
|
|
|
{
|
2016-07-04 10:34:36 +00:00
|
|
|
struct drm_i915_private *dev_priv = to_i915(dev);
|
drm/i915: Add debugfs entry for DRRS
Adding a debugfs entry to determine if DRRS is supported or not
V2: [By Ram]: Following details about the active crtc will be filled
in seq-file of the debugfs
1. Encoder output type
2. DRRS Support on this CRTC
3. DRRS current state
4. Current Vrefresh
Format is as follows:
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_HIGH_RR, Vrefresh: 60
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_LOW_RR, Vrefresh: 40
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
V3: [By Ram]: Readability is improved.
Another error case is covered [Daniel]
V4: [By Ram]: Current status of the Idleness DRRS along with
the Front buffer bits are added to the debugfs. [Rodrigo]
V5: [By Ram]: Rephrased to make it easy to understand.
And format is modified. [Rodrigo]
V6: [By Ram]: Modeset mutex are acquired for each crtc along with
renaming the Idleness detection states [Daniel]
Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
[danvet: dump full busy_frontbuffer_bits and remove the dubios
computed logical state of DRRS - debugfs is about what is fact,
developers should reach their own conclusion when debugging issues.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-03-03 15:23:10 +00:00
|
|
|
struct i915_drrs *drrs = &dev_priv->drrs;
|
|
|
|
int vrefresh = 0;
|
2016-06-20 13:57:36 +00:00
|
|
|
struct drm_connector *connector;
|
drm/i915: Add debugfs entry for DRRS
Adding a debugfs entry to determine if DRRS is supported or not
V2: [By Ram]: Following details about the active crtc will be filled
in seq-file of the debugfs
1. Encoder output type
2. DRRS Support on this CRTC
3. DRRS current state
4. Current Vrefresh
Format is as follows:
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_HIGH_RR, Vrefresh: 60
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_LOW_RR, Vrefresh: 40
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
V3: [By Ram]: Readability is improved.
Another error case is covered [Daniel]
V4: [By Ram]: Current status of the Idleness DRRS along with
the Front buffer bits are added to the debugfs. [Rodrigo]
V5: [By Ram]: Rephrased to make it easy to understand.
And format is modified. [Rodrigo]
V6: [By Ram]: Modeset mutex are acquired for each crtc along with
renaming the Idleness detection states [Daniel]
Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
[danvet: dump full busy_frontbuffer_bits and remove the dubios
computed logical state of DRRS - debugfs is about what is fact,
developers should reach their own conclusion when debugging issues.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-03-03 15:23:10 +00:00
|
|
|
|
2016-06-20 13:57:36 +00:00
|
|
|
drm_for_each_connector(connector, dev) {
|
|
|
|
if (connector->state->crtc != &intel_crtc->base)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
seq_printf(m, "%s:\n", connector->name);
|
drm/i915: Add debugfs entry for DRRS
Adding a debugfs entry to determine if DRRS is supported or not
V2: [By Ram]: Following details about the active crtc will be filled
in seq-file of the debugfs
1. Encoder output type
2. DRRS Support on this CRTC
3. DRRS current state
4. Current Vrefresh
Format is as follows:
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_HIGH_RR, Vrefresh: 60
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_LOW_RR, Vrefresh: 40
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
V3: [By Ram]: Readability is improved.
Another error case is covered [Daniel]
V4: [By Ram]: Current status of the Idleness DRRS along with
the Front buffer bits are added to the debugfs. [Rodrigo]
V5: [By Ram]: Rephrased to make it easy to understand.
And format is modified. [Rodrigo]
V6: [By Ram]: Modeset mutex are acquired for each crtc along with
renaming the Idleness detection states [Daniel]
Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
[danvet: dump full busy_frontbuffer_bits and remove the dubios
computed logical state of DRRS - debugfs is about what is fact,
developers should reach their own conclusion when debugging issues.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-03-03 15:23:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (dev_priv->vbt.drrs_type == STATIC_DRRS_SUPPORT)
|
|
|
|
seq_puts(m, "\tVBT: DRRS_type: Static");
|
|
|
|
else if (dev_priv->vbt.drrs_type == SEAMLESS_DRRS_SUPPORT)
|
|
|
|
seq_puts(m, "\tVBT: DRRS_type: Seamless");
|
|
|
|
else if (dev_priv->vbt.drrs_type == DRRS_NOT_SUPPORTED)
|
|
|
|
seq_puts(m, "\tVBT: DRRS_type: None");
|
|
|
|
else
|
|
|
|
seq_puts(m, "\tVBT: DRRS_type: FIXME: Unrecognized Value");
|
|
|
|
|
|
|
|
seq_puts(m, "\n\n");
|
|
|
|
|
2015-06-01 10:50:08 +00:00
|
|
|
if (to_intel_crtc_state(intel_crtc->base.state)->has_drrs) {
|
drm/i915: Add debugfs entry for DRRS
Adding a debugfs entry to determine if DRRS is supported or not
V2: [By Ram]: Following details about the active crtc will be filled
in seq-file of the debugfs
1. Encoder output type
2. DRRS Support on this CRTC
3. DRRS current state
4. Current Vrefresh
Format is as follows:
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_HIGH_RR, Vrefresh: 60
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_LOW_RR, Vrefresh: 40
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
V3: [By Ram]: Readability is improved.
Another error case is covered [Daniel]
V4: [By Ram]: Current status of the Idleness DRRS along with
the Front buffer bits are added to the debugfs. [Rodrigo]
V5: [By Ram]: Rephrased to make it easy to understand.
And format is modified. [Rodrigo]
V6: [By Ram]: Modeset mutex are acquired for each crtc along with
renaming the Idleness detection states [Daniel]
Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
[danvet: dump full busy_frontbuffer_bits and remove the dubios
computed logical state of DRRS - debugfs is about what is fact,
developers should reach their own conclusion when debugging issues.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-03-03 15:23:10 +00:00
|
|
|
struct intel_panel *panel;
|
|
|
|
|
|
|
|
mutex_lock(&drrs->mutex);
|
|
|
|
/* DRRS Supported */
|
|
|
|
seq_puts(m, "\tDRRS Supported: Yes\n");
|
|
|
|
|
|
|
|
/* disable_drrs() will make drrs->dp NULL */
|
|
|
|
if (!drrs->dp) {
|
|
|
|
seq_puts(m, "Idleness DRRS: Disabled");
|
|
|
|
mutex_unlock(&drrs->mutex);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
panel = &drrs->dp->attached_connector->panel;
|
|
|
|
seq_printf(m, "\t\tBusy_frontbuffer_bits: 0x%X",
|
|
|
|
drrs->busy_frontbuffer_bits);
|
|
|
|
|
|
|
|
seq_puts(m, "\n\t\t");
|
|
|
|
if (drrs->refresh_rate_type == DRRS_HIGH_RR) {
|
|
|
|
seq_puts(m, "DRRS_State: DRRS_HIGH_RR\n");
|
|
|
|
vrefresh = panel->fixed_mode->vrefresh;
|
|
|
|
} else if (drrs->refresh_rate_type == DRRS_LOW_RR) {
|
|
|
|
seq_puts(m, "DRRS_State: DRRS_LOW_RR\n");
|
|
|
|
vrefresh = panel->downclock_mode->vrefresh;
|
|
|
|
} else {
|
|
|
|
seq_printf(m, "DRRS_State: Unknown(%d)\n",
|
|
|
|
drrs->refresh_rate_type);
|
|
|
|
mutex_unlock(&drrs->mutex);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
seq_printf(m, "\t\tVrefresh: %d", vrefresh);
|
|
|
|
|
|
|
|
seq_puts(m, "\n\t\t");
|
|
|
|
mutex_unlock(&drrs->mutex);
|
|
|
|
} else {
|
|
|
|
/* DRRS not supported. Print the VBT parameter*/
|
|
|
|
seq_puts(m, "\tDRRS Supported : No");
|
|
|
|
}
|
|
|
|
seq_puts(m, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_drrs_status(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
drm/i915: Add debugfs entry for DRRS
Adding a debugfs entry to determine if DRRS is supported or not
V2: [By Ram]: Following details about the active crtc will be filled
in seq-file of the debugfs
1. Encoder output type
2. DRRS Support on this CRTC
3. DRRS current state
4. Current Vrefresh
Format is as follows:
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_HIGH_RR, Vrefresh: 60
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_LOW_RR, Vrefresh: 40
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
V3: [By Ram]: Readability is improved.
Another error case is covered [Daniel]
V4: [By Ram]: Current status of the Idleness DRRS along with
the Front buffer bits are added to the debugfs. [Rodrigo]
V5: [By Ram]: Rephrased to make it easy to understand.
And format is modified. [Rodrigo]
V6: [By Ram]: Modeset mutex are acquired for each crtc along with
renaming the Idleness detection states [Daniel]
Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
[danvet: dump full busy_frontbuffer_bits and remove the dubios
computed logical state of DRRS - debugfs is about what is fact,
developers should reach their own conclusion when debugging issues.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-03-03 15:23:10 +00:00
|
|
|
struct intel_crtc *intel_crtc;
|
|
|
|
int active_crtc_cnt = 0;
|
|
|
|
|
2016-06-20 13:57:36 +00:00
|
|
|
drm_modeset_lock_all(dev);
|
drm/i915: Add debugfs entry for DRRS
Adding a debugfs entry to determine if DRRS is supported or not
V2: [By Ram]: Following details about the active crtc will be filled
in seq-file of the debugfs
1. Encoder output type
2. DRRS Support on this CRTC
3. DRRS current state
4. Current Vrefresh
Format is as follows:
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_HIGH_RR, Vrefresh: 60
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_LOW_RR, Vrefresh: 40
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
V3: [By Ram]: Readability is improved.
Another error case is covered [Daniel]
V4: [By Ram]: Current status of the Idleness DRRS along with
the Front buffer bits are added to the debugfs. [Rodrigo]
V5: [By Ram]: Rephrased to make it easy to understand.
And format is modified. [Rodrigo]
V6: [By Ram]: Modeset mutex are acquired for each crtc along with
renaming the Idleness detection states [Daniel]
Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
[danvet: dump full busy_frontbuffer_bits and remove the dubios
computed logical state of DRRS - debugfs is about what is fact,
developers should reach their own conclusion when debugging issues.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-03-03 15:23:10 +00:00
|
|
|
for_each_intel_crtc(dev, intel_crtc) {
|
2015-06-01 10:50:08 +00:00
|
|
|
if (intel_crtc->base.state->active) {
|
drm/i915: Add debugfs entry for DRRS
Adding a debugfs entry to determine if DRRS is supported or not
V2: [By Ram]: Following details about the active crtc will be filled
in seq-file of the debugfs
1. Encoder output type
2. DRRS Support on this CRTC
3. DRRS current state
4. Current Vrefresh
Format is as follows:
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_HIGH_RR, Vrefresh: 60
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_LOW_RR, Vrefresh: 40
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
V3: [By Ram]: Readability is improved.
Another error case is covered [Daniel]
V4: [By Ram]: Current status of the Idleness DRRS along with
the Front buffer bits are added to the debugfs. [Rodrigo]
V5: [By Ram]: Rephrased to make it easy to understand.
And format is modified. [Rodrigo]
V6: [By Ram]: Modeset mutex are acquired for each crtc along with
renaming the Idleness detection states [Daniel]
Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
[danvet: dump full busy_frontbuffer_bits and remove the dubios
computed logical state of DRRS - debugfs is about what is fact,
developers should reach their own conclusion when debugging issues.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-03-03 15:23:10 +00:00
|
|
|
active_crtc_cnt++;
|
|
|
|
seq_printf(m, "\nCRTC %d: ", active_crtc_cnt);
|
|
|
|
|
|
|
|
drrs_status_per_crtc(m, dev, intel_crtc);
|
|
|
|
}
|
|
|
|
}
|
2016-06-20 13:57:36 +00:00
|
|
|
drm_modeset_unlock_all(dev);
|
drm/i915: Add debugfs entry for DRRS
Adding a debugfs entry to determine if DRRS is supported or not
V2: [By Ram]: Following details about the active crtc will be filled
in seq-file of the debugfs
1. Encoder output type
2. DRRS Support on this CRTC
3. DRRS current state
4. Current Vrefresh
Format is as follows:
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_HIGH_RR, Vrefresh: 60
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_LOW_RR, Vrefresh: 40
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
V3: [By Ram]: Readability is improved.
Another error case is covered [Daniel]
V4: [By Ram]: Current status of the Idleness DRRS along with
the Front buffer bits are added to the debugfs. [Rodrigo]
V5: [By Ram]: Rephrased to make it easy to understand.
And format is modified. [Rodrigo]
V6: [By Ram]: Modeset mutex are acquired for each crtc along with
renaming the Idleness detection states [Daniel]
Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
[danvet: dump full busy_frontbuffer_bits and remove the dubios
computed logical state of DRRS - debugfs is about what is fact,
developers should reach their own conclusion when debugging issues.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-03-03 15:23:10 +00:00
|
|
|
|
|
|
|
if (!active_crtc_cnt)
|
|
|
|
seq_puts(m, "No active crtc found\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-15 17:55:40 +00:00
|
|
|
struct pipe_crc_info {
|
|
|
|
const char *name;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv;
|
2013-10-15 17:55:40 +00:00
|
|
|
enum pipe pipe;
|
|
|
|
};
|
|
|
|
|
2014-05-12 05:22:27 +00:00
|
|
|
static int i915_dp_mst_info(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2014-05-12 05:22:27 +00:00
|
|
|
struct intel_encoder *intel_encoder;
|
|
|
|
struct intel_digital_port *intel_dig_port;
|
2016-06-20 13:57:37 +00:00
|
|
|
struct drm_connector *connector;
|
|
|
|
|
2014-05-12 05:22:27 +00:00
|
|
|
drm_modeset_lock_all(dev);
|
2016-06-20 13:57:37 +00:00
|
|
|
drm_for_each_connector(connector, dev) {
|
|
|
|
if (connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort)
|
2014-05-12 05:22:27 +00:00
|
|
|
continue;
|
2016-06-20 13:57:37 +00:00
|
|
|
|
|
|
|
intel_encoder = intel_attached_encoder(connector);
|
|
|
|
if (!intel_encoder || intel_encoder->type == INTEL_OUTPUT_DP_MST)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
intel_dig_port = enc_to_dig_port(&intel_encoder->base);
|
2014-05-12 05:22:27 +00:00
|
|
|
if (!intel_dig_port->dp.can_mst)
|
|
|
|
continue;
|
2016-06-20 13:57:37 +00:00
|
|
|
|
2016-04-14 17:18:37 +00:00
|
|
|
seq_printf(m, "MST Source Port %c\n",
|
|
|
|
port_name(intel_dig_port->port));
|
2014-05-12 05:22:27 +00:00
|
|
|
drm_dp_mst_dump_topology(m, &intel_dig_port->dp.mst_mgr);
|
|
|
|
}
|
|
|
|
drm_modeset_unlock_all(dev);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-15 17:55:40 +00:00
|
|
|
static int i915_pipe_crc_open(struct inode *inode, struct file *filep)
|
|
|
|
{
|
2013-10-15 17:55:41 +00:00
|
|
|
struct pipe_crc_info *info = inode->i_private;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = info->dev_priv;
|
2013-10-15 17:55:41 +00:00
|
|
|
struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe];
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (info->pipe >= INTEL_INFO(dev_priv)->num_pipes)
|
2013-11-14 10:30:43 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
2013-10-21 13:29:30 +00:00
|
|
|
spin_lock_irq(&pipe_crc->lock);
|
|
|
|
|
|
|
|
if (pipe_crc->opened) {
|
|
|
|
spin_unlock_irq(&pipe_crc->lock);
|
2013-10-15 17:55:41 +00:00
|
|
|
return -EBUSY; /* already open */
|
|
|
|
}
|
|
|
|
|
2013-10-21 13:29:30 +00:00
|
|
|
pipe_crc->opened = true;
|
2013-10-15 17:55:40 +00:00
|
|
|
filep->private_data = inode->i_private;
|
|
|
|
|
2013-10-21 13:29:30 +00:00
|
|
|
spin_unlock_irq(&pipe_crc->lock);
|
|
|
|
|
2013-10-15 17:55:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_pipe_crc_release(struct inode *inode, struct file *filep)
|
|
|
|
{
|
2013-10-15 17:55:41 +00:00
|
|
|
struct pipe_crc_info *info = inode->i_private;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = info->dev_priv;
|
2013-10-15 17:55:41 +00:00
|
|
|
struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe];
|
|
|
|
|
2013-10-21 13:29:30 +00:00
|
|
|
spin_lock_irq(&pipe_crc->lock);
|
|
|
|
pipe_crc->opened = false;
|
|
|
|
spin_unlock_irq(&pipe_crc->lock);
|
2013-10-15 17:55:41 +00:00
|
|
|
|
2013-10-15 17:55:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* (6 fields, 8 chars each, space separated (5) + '\n') */
|
|
|
|
#define PIPE_CRC_LINE_LEN (6 * 8 + 5 + 1)
|
|
|
|
/* account for \'0' */
|
|
|
|
#define PIPE_CRC_BUFFER_LEN (PIPE_CRC_LINE_LEN + 1)
|
|
|
|
|
|
|
|
static int pipe_crc_data_count(struct intel_pipe_crc *pipe_crc)
|
2013-10-15 17:55:27 +00:00
|
|
|
{
|
2013-10-21 13:29:30 +00:00
|
|
|
assert_spin_locked(&pipe_crc->lock);
|
|
|
|
return CIRC_CNT(pipe_crc->head, pipe_crc->tail,
|
|
|
|
INTEL_PIPE_CRC_ENTRIES_NR);
|
2013-10-15 17:55:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t
|
|
|
|
i915_pipe_crc_read(struct file *filep, char __user *user_buf, size_t count,
|
|
|
|
loff_t *pos)
|
|
|
|
{
|
|
|
|
struct pipe_crc_info *info = filep->private_data;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = info->dev_priv;
|
2013-10-15 17:55:40 +00:00
|
|
|
struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe];
|
|
|
|
char buf[PIPE_CRC_BUFFER_LEN];
|
2014-12-09 19:28:32 +00:00
|
|
|
int n_entries;
|
2013-10-15 17:55:40 +00:00
|
|
|
ssize_t bytes_read;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't allow user space to provide buffers not big enough to hold
|
|
|
|
* a line of data.
|
|
|
|
*/
|
|
|
|
if (count < PIPE_CRC_LINE_LEN)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (pipe_crc->source == INTEL_PIPE_CRC_SOURCE_NONE)
|
2013-10-15 17:55:27 +00:00
|
|
|
return 0;
|
2013-10-15 17:55:40 +00:00
|
|
|
|
|
|
|
/* nothing to read */
|
2013-10-21 13:29:30 +00:00
|
|
|
spin_lock_irq(&pipe_crc->lock);
|
2013-10-15 17:55:40 +00:00
|
|
|
while (pipe_crc_data_count(pipe_crc) == 0) {
|
2013-10-21 13:29:30 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (filep->f_flags & O_NONBLOCK) {
|
|
|
|
spin_unlock_irq(&pipe_crc->lock);
|
2013-10-15 17:55:40 +00:00
|
|
|
return -EAGAIN;
|
2013-10-21 13:29:30 +00:00
|
|
|
}
|
2013-10-15 17:55:40 +00:00
|
|
|
|
2013-10-21 13:29:30 +00:00
|
|
|
ret = wait_event_interruptible_lock_irq(pipe_crc->wq,
|
|
|
|
pipe_crc_data_count(pipe_crc), pipe_crc->lock);
|
|
|
|
if (ret) {
|
|
|
|
spin_unlock_irq(&pipe_crc->lock);
|
|
|
|
return ret;
|
|
|
|
}
|
2013-10-15 17:55:27 +00:00
|
|
|
}
|
|
|
|
|
2013-10-15 17:55:40 +00:00
|
|
|
/* We now have one or more entries to read */
|
2014-12-09 19:28:32 +00:00
|
|
|
n_entries = count / PIPE_CRC_LINE_LEN;
|
2013-10-21 13:29:30 +00:00
|
|
|
|
2013-10-15 17:55:40 +00:00
|
|
|
bytes_read = 0;
|
2014-12-09 19:28:32 +00:00
|
|
|
while (n_entries > 0) {
|
|
|
|
struct intel_pipe_crc_entry *entry =
|
|
|
|
&pipe_crc->entries[pipe_crc->tail];
|
2013-10-15 17:55:27 +00:00
|
|
|
|
2014-12-09 19:28:32 +00:00
|
|
|
if (CIRC_CNT(pipe_crc->head, pipe_crc->tail,
|
|
|
|
INTEL_PIPE_CRC_ENTRIES_NR) < 1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
BUILD_BUG_ON_NOT_POWER_OF_2(INTEL_PIPE_CRC_ENTRIES_NR);
|
|
|
|
pipe_crc->tail = (pipe_crc->tail + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
|
|
|
|
|
2013-10-15 17:55:40 +00:00
|
|
|
bytes_read += snprintf(buf, PIPE_CRC_BUFFER_LEN,
|
|
|
|
"%8u %8x %8x %8x %8x %8x\n",
|
|
|
|
entry->frame, entry->crc[0],
|
|
|
|
entry->crc[1], entry->crc[2],
|
|
|
|
entry->crc[3], entry->crc[4]);
|
|
|
|
|
2014-12-09 19:28:32 +00:00
|
|
|
spin_unlock_irq(&pipe_crc->lock);
|
|
|
|
|
2016-08-03 15:22:57 +00:00
|
|
|
if (copy_to_user(user_buf, buf, PIPE_CRC_LINE_LEN))
|
2013-10-15 17:55:40 +00:00
|
|
|
return -EFAULT;
|
2013-10-15 17:55:29 +00:00
|
|
|
|
2014-12-09 19:28:32 +00:00
|
|
|
user_buf += PIPE_CRC_LINE_LEN;
|
|
|
|
n_entries--;
|
|
|
|
|
|
|
|
spin_lock_irq(&pipe_crc->lock);
|
|
|
|
}
|
2013-10-15 17:55:27 +00:00
|
|
|
|
2013-10-21 13:29:30 +00:00
|
|
|
spin_unlock_irq(&pipe_crc->lock);
|
|
|
|
|
2013-10-15 17:55:40 +00:00
|
|
|
return bytes_read;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations i915_pipe_crc_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = i915_pipe_crc_open,
|
|
|
|
.read = i915_pipe_crc_read,
|
|
|
|
.release = i915_pipe_crc_release,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct pipe_crc_info i915_pipe_crc_data[I915_MAX_PIPES] = {
|
|
|
|
{
|
|
|
|
.name = "i915_pipe_A_crc",
|
|
|
|
.pipe = PIPE_A,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "i915_pipe_B_crc",
|
|
|
|
.pipe = PIPE_B,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "i915_pipe_C_crc",
|
|
|
|
.pipe = PIPE_C,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static int i915_pipe_crc_create(struct dentry *root, struct drm_minor *minor,
|
|
|
|
enum pipe pipe)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = to_i915(minor->dev);
|
2013-10-15 17:55:40 +00:00
|
|
|
struct dentry *ent;
|
|
|
|
struct pipe_crc_info *info = &i915_pipe_crc_data[pipe];
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
info->dev_priv = dev_priv;
|
2013-10-15 17:55:40 +00:00
|
|
|
ent = debugfs_create_file(info->name, S_IRUGO, root, info,
|
|
|
|
&i915_pipe_crc_fops);
|
2013-12-16 06:13:25 +00:00
|
|
|
if (!ent)
|
|
|
|
return -ENOMEM;
|
2013-10-15 17:55:40 +00:00
|
|
|
|
|
|
|
return drm_add_fake_info_node(minor, ent, info);
|
2013-10-15 17:55:27 +00:00
|
|
|
}
|
|
|
|
|
2013-10-16 09:51:54 +00:00
|
|
|
static const char * const pipe_crc_sources[] = {
|
2013-10-16 11:30:34 +00:00
|
|
|
"none",
|
|
|
|
"plane1",
|
|
|
|
"plane2",
|
|
|
|
"pf",
|
2013-10-16 20:55:48 +00:00
|
|
|
"pipe",
|
2013-10-16 20:55:58 +00:00
|
|
|
"TV",
|
|
|
|
"DP-B",
|
|
|
|
"DP-C",
|
|
|
|
"DP-D",
|
2013-11-01 09:50:20 +00:00
|
|
|
"auto",
|
2013-10-16 11:30:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const char *pipe_crc_source_name(enum intel_pipe_crc_source source)
|
|
|
|
{
|
|
|
|
BUILD_BUG_ON(ARRAY_SIZE(pipe_crc_sources) != INTEL_PIPE_CRC_SOURCE_MAX);
|
|
|
|
return pipe_crc_sources[source];
|
|
|
|
}
|
|
|
|
|
2013-10-15 17:55:36 +00:00
|
|
|
static int display_crc_ctl_show(struct seq_file *m, void *data)
|
2013-10-16 11:30:34 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = m->private;
|
2013-10-16 11:30:34 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < I915_MAX_PIPES; i++)
|
|
|
|
seq_printf(m, "%c %s\n", pipe_name(i),
|
|
|
|
pipe_crc_source_name(dev_priv->pipe_crc[i].source));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-15 17:55:36 +00:00
|
|
|
static int display_crc_ctl_open(struct inode *inode, struct file *file)
|
2013-10-16 11:30:34 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
return single_open(file, display_crc_ctl_show, inode->i_private);
|
2013-10-16 11:30:34 +00:00
|
|
|
}
|
|
|
|
|
2013-11-01 09:50:20 +00:00
|
|
|
static int i8xx_pipe_crc_ctl_reg(enum intel_pipe_crc_source *source,
|
2013-10-21 15:26:38 +00:00
|
|
|
uint32_t *val)
|
|
|
|
{
|
2013-11-01 09:50:20 +00:00
|
|
|
if (*source == INTEL_PIPE_CRC_SOURCE_AUTO)
|
|
|
|
*source = INTEL_PIPE_CRC_SOURCE_PIPE;
|
|
|
|
|
|
|
|
switch (*source) {
|
2013-10-21 15:26:38 +00:00
|
|
|
case INTEL_PIPE_CRC_SOURCE_PIPE:
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_INCLUDE_BORDER_I8XX;
|
|
|
|
break;
|
|
|
|
case INTEL_PIPE_CRC_SOURCE_NONE:
|
|
|
|
*val = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static int i9xx_pipe_crc_auto_source(struct drm_i915_private *dev_priv,
|
|
|
|
enum pipe pipe,
|
2013-11-01 09:50:20 +00:00
|
|
|
enum intel_pipe_crc_source *source)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2013-11-01 09:50:20 +00:00
|
|
|
struct intel_encoder *encoder;
|
|
|
|
struct intel_crtc *crtc;
|
2013-11-01 09:50:23 +00:00
|
|
|
struct intel_digital_port *dig_port;
|
2013-11-01 09:50:20 +00:00
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
*source = INTEL_PIPE_CRC_SOURCE_PIPE;
|
|
|
|
|
drm: Split connection_mutex out of mode_config.mutex (v3)
After the split-out of crtc locks from the big mode_config.mutex
there's still two major areas it protects:
- Various connector probe states, like connector->status, EDID
properties, probed mode lists and similar information.
- The links from connector->encoder and encoder->crtc and other
modeset-relevant connector state (e.g. properties which control the
panel fitter).
The later is used by modeset operations. But they don't really care
about the former since it's allowed to e.g. enable a disconnected VGA
output or with a mode not in the probed list.
Thus far this hasn't been a problem, but for the atomic modeset
conversion Rob Clark needs to convert all modeset relevant locks into
w/w locks. This is required because the order of acquisition is
determined by how userspace supplies the atomic modeset data. This has
run into troubles in the detect path since the i915 load detect code
needs _both_ protections offered by the mode_config.mutex: It updates
probe state and it needs to change the modeset configuration to enable
the temporary load detect pipe.
The big deal here is that for the probe/detect users of this lock a
plain mutex fits best, but for atomic modesets we really want a w/w
mutex. To fix this lets split out a new connection_mutex lock for the
modeset relevant parts.
For simplicity I've decided to only add one additional lock for all
connector/encoder links and modeset configuration states. We have
piles of different modeset objects in addition to those (like bridges
or panels), so adding per-object locks would be much more effort.
Also, we're guaranteed (at least for now) to do a full modeset if we
need to acquire this lock. Which means that fine-grained locking is
fairly irrelevant compared to the amount of time the full modeset will
take.
I've done a full audit, and there's just a few things that justify
special focus:
- Locking in drm_sysfs.c is almost completely absent. We should
sprinkle mode_config.connection_mutex over this file a bit, but
since it already lacks mode_config.mutex this patch wont make the
situation any worse. This is material for a follow-up patch.
- omap has a omap_framebuffer_flush function which walks the
connector->encoder->crtc links and is called from many contexts.
Some look like they don't acquire mode_config.mutex, so this is
already racy. Again fixing this is material for a separate patch.
- The radeon hot_plug function to retrain DP links looks at
connector->dpms. Currently this happens without any locking, so is
already racy. I think radeon_hotplug_work_func should gain
mutex_lock/unlock calls for the mode_config.connection_mutex.
- Same applies to i915's intel_dp_hot_plug. But again, this is already
racy.
- i915 load_detect code needs to acquire this lock. Which means the
w/w dance due to Rob's work will be nicely contained to _just_ this
function.
I've added fixme comments everywhere where it looks suspicious but in
the sysfs code. After a quick irc discussion with Dave Airlie it
sounds like the lack of locking in there is due to sysfs cleanup fun
at module unload.
v1: original (only compile tested)
v2: missing mutex_init(), etc (from Rob Clark)
v3: i915 needs more care in the conversion:
- Protect the edp pp logic with the connection_mutex.
- Use connection_mutex in the backlight code due to
get_pipe_from_connector.
- Use drm_modeset_lock_all in suspend/resume paths.
- Update lock checks in the overlay code.
Cc: Alex Deucher <alexdeucher@gmail.com>
Cc: Rob Clark <robdclark@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Rob Clark <robdclark@gmail.com>
2014-05-29 21:54:47 +00:00
|
|
|
drm_modeset_lock_all(dev);
|
2014-08-05 10:29:37 +00:00
|
|
|
for_each_intel_encoder(dev, encoder) {
|
2013-11-01 09:50:20 +00:00
|
|
|
if (!encoder->base.crtc)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
crtc = to_intel_crtc(encoder->base.crtc);
|
|
|
|
|
|
|
|
if (crtc->pipe != pipe)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
switch (encoder->type) {
|
|
|
|
case INTEL_OUTPUT_TVOUT:
|
|
|
|
*source = INTEL_PIPE_CRC_SOURCE_TV;
|
|
|
|
break;
|
2016-06-22 18:57:06 +00:00
|
|
|
case INTEL_OUTPUT_DP:
|
2013-11-01 09:50:20 +00:00
|
|
|
case INTEL_OUTPUT_EDP:
|
2013-11-01 09:50:23 +00:00
|
|
|
dig_port = enc_to_dig_port(&encoder->base);
|
|
|
|
switch (dig_port->port) {
|
|
|
|
case PORT_B:
|
|
|
|
*source = INTEL_PIPE_CRC_SOURCE_DP_B;
|
|
|
|
break;
|
|
|
|
case PORT_C:
|
|
|
|
*source = INTEL_PIPE_CRC_SOURCE_DP_C;
|
|
|
|
break;
|
|
|
|
case PORT_D:
|
|
|
|
*source = INTEL_PIPE_CRC_SOURCE_DP_D;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WARN(1, "nonexisting DP port %c\n",
|
|
|
|
port_name(dig_port->port));
|
|
|
|
break;
|
|
|
|
}
|
2013-11-01 09:50:20 +00:00
|
|
|
break;
|
2014-10-27 19:47:52 +00:00
|
|
|
default:
|
|
|
|
break;
|
2013-11-01 09:50:20 +00:00
|
|
|
}
|
|
|
|
}
|
drm: Split connection_mutex out of mode_config.mutex (v3)
After the split-out of crtc locks from the big mode_config.mutex
there's still two major areas it protects:
- Various connector probe states, like connector->status, EDID
properties, probed mode lists and similar information.
- The links from connector->encoder and encoder->crtc and other
modeset-relevant connector state (e.g. properties which control the
panel fitter).
The later is used by modeset operations. But they don't really care
about the former since it's allowed to e.g. enable a disconnected VGA
output or with a mode not in the probed list.
Thus far this hasn't been a problem, but for the atomic modeset
conversion Rob Clark needs to convert all modeset relevant locks into
w/w locks. This is required because the order of acquisition is
determined by how userspace supplies the atomic modeset data. This has
run into troubles in the detect path since the i915 load detect code
needs _both_ protections offered by the mode_config.mutex: It updates
probe state and it needs to change the modeset configuration to enable
the temporary load detect pipe.
The big deal here is that for the probe/detect users of this lock a
plain mutex fits best, but for atomic modesets we really want a w/w
mutex. To fix this lets split out a new connection_mutex lock for the
modeset relevant parts.
For simplicity I've decided to only add one additional lock for all
connector/encoder links and modeset configuration states. We have
piles of different modeset objects in addition to those (like bridges
or panels), so adding per-object locks would be much more effort.
Also, we're guaranteed (at least for now) to do a full modeset if we
need to acquire this lock. Which means that fine-grained locking is
fairly irrelevant compared to the amount of time the full modeset will
take.
I've done a full audit, and there's just a few things that justify
special focus:
- Locking in drm_sysfs.c is almost completely absent. We should
sprinkle mode_config.connection_mutex over this file a bit, but
since it already lacks mode_config.mutex this patch wont make the
situation any worse. This is material for a follow-up patch.
- omap has a omap_framebuffer_flush function which walks the
connector->encoder->crtc links and is called from many contexts.
Some look like they don't acquire mode_config.mutex, so this is
already racy. Again fixing this is material for a separate patch.
- The radeon hot_plug function to retrain DP links looks at
connector->dpms. Currently this happens without any locking, so is
already racy. I think radeon_hotplug_work_func should gain
mutex_lock/unlock calls for the mode_config.connection_mutex.
- Same applies to i915's intel_dp_hot_plug. But again, this is already
racy.
- i915 load_detect code needs to acquire this lock. Which means the
w/w dance due to Rob's work will be nicely contained to _just_ this
function.
I've added fixme comments everywhere where it looks suspicious but in
the sysfs code. After a quick irc discussion with Dave Airlie it
sounds like the lack of locking in there is due to sysfs cleanup fun
at module unload.
v1: original (only compile tested)
v2: missing mutex_init(), etc (from Rob Clark)
v3: i915 needs more care in the conversion:
- Protect the edp pp logic with the connection_mutex.
- Use connection_mutex in the backlight code due to
get_pipe_from_connector.
- Use drm_modeset_lock_all in suspend/resume paths.
- Update lock checks in the overlay code.
Cc: Alex Deucher <alexdeucher@gmail.com>
Cc: Rob Clark <robdclark@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Rob Clark <robdclark@gmail.com>
2014-05-29 21:54:47 +00:00
|
|
|
drm_modeset_unlock_all(dev);
|
2013-11-01 09:50:20 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static int vlv_pipe_crc_ctl_reg(struct drm_i915_private *dev_priv,
|
2013-11-01 09:50:20 +00:00
|
|
|
enum pipe pipe,
|
|
|
|
enum intel_pipe_crc_source *source,
|
2013-10-18 14:37:06 +00:00
|
|
|
uint32_t *val)
|
|
|
|
{
|
2013-11-01 09:50:22 +00:00
|
|
|
bool need_stable_symbols = false;
|
|
|
|
|
2013-11-01 09:50:20 +00:00
|
|
|
if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) {
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
int ret = i9xx_pipe_crc_auto_source(dev_priv, pipe, source);
|
2013-11-01 09:50:20 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (*source) {
|
2013-10-18 14:37:06 +00:00
|
|
|
case INTEL_PIPE_CRC_SOURCE_PIPE:
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_VLV;
|
|
|
|
break;
|
|
|
|
case INTEL_PIPE_CRC_SOURCE_DP_B:
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_B_VLV;
|
2013-11-01 09:50:22 +00:00
|
|
|
need_stable_symbols = true;
|
2013-10-18 14:37:06 +00:00
|
|
|
break;
|
|
|
|
case INTEL_PIPE_CRC_SOURCE_DP_C:
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_C_VLV;
|
2013-11-01 09:50:22 +00:00
|
|
|
need_stable_symbols = true;
|
2013-10-18 14:37:06 +00:00
|
|
|
break;
|
2014-12-09 19:28:29 +00:00
|
|
|
case INTEL_PIPE_CRC_SOURCE_DP_D:
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (!IS_CHERRYVIEW(dev_priv))
|
2014-12-09 19:28:29 +00:00
|
|
|
return -EINVAL;
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_D_VLV;
|
|
|
|
need_stable_symbols = true;
|
|
|
|
break;
|
2013-10-18 14:37:06 +00:00
|
|
|
case INTEL_PIPE_CRC_SOURCE_NONE:
|
|
|
|
*val = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2013-11-01 09:50:22 +00:00
|
|
|
/*
|
|
|
|
* When the pipe CRC tap point is after the transcoders we need
|
|
|
|
* to tweak symbol-level features to produce a deterministic series of
|
|
|
|
* symbols for a given frame. We need to reset those features only once
|
|
|
|
* a frame (instead of every nth symbol):
|
|
|
|
* - DC-balance: used to ensure a better clock recovery from the data
|
|
|
|
* link (SDVO)
|
|
|
|
* - DisplayPort scrambling: used for EMI reduction
|
|
|
|
*/
|
|
|
|
if (need_stable_symbols) {
|
|
|
|
uint32_t tmp = I915_READ(PORT_DFT2_G4X);
|
|
|
|
|
|
|
|
tmp |= DC_BALANCE_RESET_VLV;
|
2014-12-09 19:28:28 +00:00
|
|
|
switch (pipe) {
|
|
|
|
case PIPE_A:
|
2013-11-01 09:50:22 +00:00
|
|
|
tmp |= PIPE_A_SCRAMBLE_RESET;
|
2014-12-09 19:28:28 +00:00
|
|
|
break;
|
|
|
|
case PIPE_B:
|
2013-11-01 09:50:22 +00:00
|
|
|
tmp |= PIPE_B_SCRAMBLE_RESET;
|
2014-12-09 19:28:28 +00:00
|
|
|
break;
|
|
|
|
case PIPE_C:
|
|
|
|
tmp |= PIPE_C_SCRAMBLE_RESET;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2013-11-01 09:50:22 +00:00
|
|
|
I915_WRITE(PORT_DFT2_G4X, tmp);
|
|
|
|
}
|
|
|
|
|
2013-10-18 14:37:06 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static int i9xx_pipe_crc_ctl_reg(struct drm_i915_private *dev_priv,
|
2013-11-01 09:50:20 +00:00
|
|
|
enum pipe pipe,
|
|
|
|
enum intel_pipe_crc_source *source,
|
2013-10-16 20:55:59 +00:00
|
|
|
uint32_t *val)
|
|
|
|
{
|
2013-11-01 09:50:21 +00:00
|
|
|
bool need_stable_symbols = false;
|
|
|
|
|
2013-11-01 09:50:20 +00:00
|
|
|
if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) {
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
int ret = i9xx_pipe_crc_auto_source(dev_priv, pipe, source);
|
2013-11-01 09:50:20 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (*source) {
|
2013-10-16 20:55:59 +00:00
|
|
|
case INTEL_PIPE_CRC_SOURCE_PIPE:
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_I9XX;
|
|
|
|
break;
|
|
|
|
case INTEL_PIPE_CRC_SOURCE_TV:
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (!SUPPORTS_TV(dev_priv))
|
2013-10-16 20:55:59 +00:00
|
|
|
return -EINVAL;
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_TV_PRE;
|
|
|
|
break;
|
|
|
|
case INTEL_PIPE_CRC_SOURCE_DP_B:
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (!IS_G4X(dev_priv))
|
2013-10-16 20:55:59 +00:00
|
|
|
return -EINVAL;
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_B_G4X;
|
2013-11-01 09:50:21 +00:00
|
|
|
need_stable_symbols = true;
|
2013-10-16 20:55:59 +00:00
|
|
|
break;
|
|
|
|
case INTEL_PIPE_CRC_SOURCE_DP_C:
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (!IS_G4X(dev_priv))
|
2013-10-16 20:55:59 +00:00
|
|
|
return -EINVAL;
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_C_G4X;
|
2013-11-01 09:50:21 +00:00
|
|
|
need_stable_symbols = true;
|
2013-10-16 20:55:59 +00:00
|
|
|
break;
|
|
|
|
case INTEL_PIPE_CRC_SOURCE_DP_D:
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (!IS_G4X(dev_priv))
|
2013-10-16 20:55:59 +00:00
|
|
|
return -EINVAL;
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_D_G4X;
|
2013-11-01 09:50:21 +00:00
|
|
|
need_stable_symbols = true;
|
2013-10-16 20:55:59 +00:00
|
|
|
break;
|
|
|
|
case INTEL_PIPE_CRC_SOURCE_NONE:
|
|
|
|
*val = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2013-11-01 09:50:21 +00:00
|
|
|
/*
|
|
|
|
* When the pipe CRC tap point is after the transcoders we need
|
|
|
|
* to tweak symbol-level features to produce a deterministic series of
|
|
|
|
* symbols for a given frame. We need to reset those features only once
|
|
|
|
* a frame (instead of every nth symbol):
|
|
|
|
* - DC-balance: used to ensure a better clock recovery from the data
|
|
|
|
* link (SDVO)
|
|
|
|
* - DisplayPort scrambling: used for EMI reduction
|
|
|
|
*/
|
|
|
|
if (need_stable_symbols) {
|
|
|
|
uint32_t tmp = I915_READ(PORT_DFT2_G4X);
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
WARN_ON(!IS_G4X(dev_priv));
|
2013-11-01 09:50:21 +00:00
|
|
|
|
|
|
|
I915_WRITE(PORT_DFT_I9XX,
|
|
|
|
I915_READ(PORT_DFT_I9XX) | DC_BALANCE_RESET);
|
|
|
|
|
|
|
|
if (pipe == PIPE_A)
|
|
|
|
tmp |= PIPE_A_SCRAMBLE_RESET;
|
|
|
|
else
|
|
|
|
tmp |= PIPE_B_SCRAMBLE_RESET;
|
|
|
|
|
|
|
|
I915_WRITE(PORT_DFT2_G4X, tmp);
|
|
|
|
}
|
|
|
|
|
2013-10-16 20:55:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static void vlv_undo_pipe_scramble_reset(struct drm_i915_private *dev_priv,
|
2013-11-01 09:50:22 +00:00
|
|
|
enum pipe pipe)
|
|
|
|
{
|
|
|
|
uint32_t tmp = I915_READ(PORT_DFT2_G4X);
|
|
|
|
|
2014-12-09 19:28:28 +00:00
|
|
|
switch (pipe) {
|
|
|
|
case PIPE_A:
|
2013-11-01 09:50:22 +00:00
|
|
|
tmp &= ~PIPE_A_SCRAMBLE_RESET;
|
2014-12-09 19:28:28 +00:00
|
|
|
break;
|
|
|
|
case PIPE_B:
|
2013-11-01 09:50:22 +00:00
|
|
|
tmp &= ~PIPE_B_SCRAMBLE_RESET;
|
2014-12-09 19:28:28 +00:00
|
|
|
break;
|
|
|
|
case PIPE_C:
|
|
|
|
tmp &= ~PIPE_C_SCRAMBLE_RESET;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
2013-11-01 09:50:22 +00:00
|
|
|
if (!(tmp & PIPE_SCRAMBLE_RESET_MASK))
|
|
|
|
tmp &= ~DC_BALANCE_RESET_VLV;
|
|
|
|
I915_WRITE(PORT_DFT2_G4X, tmp);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static void g4x_undo_pipe_scramble_reset(struct drm_i915_private *dev_priv,
|
2013-11-01 09:50:21 +00:00
|
|
|
enum pipe pipe)
|
|
|
|
{
|
|
|
|
uint32_t tmp = I915_READ(PORT_DFT2_G4X);
|
|
|
|
|
|
|
|
if (pipe == PIPE_A)
|
|
|
|
tmp &= ~PIPE_A_SCRAMBLE_RESET;
|
|
|
|
else
|
|
|
|
tmp &= ~PIPE_B_SCRAMBLE_RESET;
|
|
|
|
I915_WRITE(PORT_DFT2_G4X, tmp);
|
|
|
|
|
|
|
|
if (!(tmp & PIPE_SCRAMBLE_RESET_MASK)) {
|
|
|
|
I915_WRITE(PORT_DFT_I9XX,
|
|
|
|
I915_READ(PORT_DFT_I9XX) & ~DC_BALANCE_RESET);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-01 09:50:20 +00:00
|
|
|
static int ilk_pipe_crc_ctl_reg(enum intel_pipe_crc_source *source,
|
2013-10-16 20:55:48 +00:00
|
|
|
uint32_t *val)
|
|
|
|
{
|
2013-11-01 09:50:20 +00:00
|
|
|
if (*source == INTEL_PIPE_CRC_SOURCE_AUTO)
|
|
|
|
*source = INTEL_PIPE_CRC_SOURCE_PIPE;
|
|
|
|
|
|
|
|
switch (*source) {
|
2013-10-16 20:55:48 +00:00
|
|
|
case INTEL_PIPE_CRC_SOURCE_PLANE1:
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PRIMARY_ILK;
|
|
|
|
break;
|
|
|
|
case INTEL_PIPE_CRC_SOURCE_PLANE2:
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_ILK;
|
|
|
|
break;
|
|
|
|
case INTEL_PIPE_CRC_SOURCE_PIPE:
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_ILK;
|
|
|
|
break;
|
2013-10-16 20:55:58 +00:00
|
|
|
case INTEL_PIPE_CRC_SOURCE_NONE:
|
2013-10-16 20:55:48 +00:00
|
|
|
*val = 0;
|
|
|
|
break;
|
2013-10-16 20:55:58 +00:00
|
|
|
default:
|
|
|
|
return -EINVAL;
|
2013-10-16 20:55:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static void hsw_trans_edp_pipe_A_crc_wa(struct drm_i915_private *dev_priv,
|
|
|
|
bool enable)
|
2014-05-29 12:10:22 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2014-05-29 12:10:22 +00:00
|
|
|
struct intel_crtc *crtc =
|
|
|
|
to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_A]);
|
2015-06-01 10:50:08 +00:00
|
|
|
struct intel_crtc_state *pipe_config;
|
2015-08-05 10:36:59 +00:00
|
|
|
struct drm_atomic_state *state;
|
|
|
|
int ret = 0;
|
2014-05-29 12:10:22 +00:00
|
|
|
|
|
|
|
drm_modeset_lock_all(dev);
|
2015-08-05 10:36:59 +00:00
|
|
|
state = drm_atomic_state_alloc(dev);
|
|
|
|
if (!state) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto out;
|
2014-05-29 12:10:22 +00:00
|
|
|
}
|
|
|
|
|
2015-08-05 10:36:59 +00:00
|
|
|
state->acquire_ctx = drm_modeset_legacy_acquire_ctx(&crtc->base);
|
|
|
|
pipe_config = intel_atomic_get_crtc_state(state, crtc);
|
|
|
|
if (IS_ERR(pipe_config)) {
|
|
|
|
ret = PTR_ERR(pipe_config);
|
|
|
|
goto out;
|
|
|
|
}
|
2014-05-29 12:10:22 +00:00
|
|
|
|
2015-08-05 10:36:59 +00:00
|
|
|
pipe_config->pch_pfit.force_thru = enable;
|
|
|
|
if (pipe_config->cpu_transcoder == TRANSCODER_EDP &&
|
|
|
|
pipe_config->pch_pfit.enabled != enable)
|
|
|
|
pipe_config->base.connectors_changed = true;
|
2015-06-01 10:49:48 +00:00
|
|
|
|
2015-08-05 10:36:59 +00:00
|
|
|
ret = drm_atomic_commit(state);
|
|
|
|
out:
|
|
|
|
WARN(ret, "Toggling workaround to %i returns %i\n", enable, ret);
|
2016-10-14 12:18:18 +00:00
|
|
|
drm_modeset_unlock_all(dev);
|
|
|
|
drm_atomic_state_put(state);
|
2014-05-29 12:10:22 +00:00
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static int ivb_pipe_crc_ctl_reg(struct drm_i915_private *dev_priv,
|
2014-05-29 12:10:22 +00:00
|
|
|
enum pipe pipe,
|
|
|
|
enum intel_pipe_crc_source *source,
|
2013-10-16 20:55:48 +00:00
|
|
|
uint32_t *val)
|
|
|
|
{
|
2013-11-01 09:50:20 +00:00
|
|
|
if (*source == INTEL_PIPE_CRC_SOURCE_AUTO)
|
|
|
|
*source = INTEL_PIPE_CRC_SOURCE_PF;
|
|
|
|
|
|
|
|
switch (*source) {
|
2013-10-16 20:55:48 +00:00
|
|
|
case INTEL_PIPE_CRC_SOURCE_PLANE1:
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PRIMARY_IVB;
|
|
|
|
break;
|
|
|
|
case INTEL_PIPE_CRC_SOURCE_PLANE2:
|
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_IVB;
|
|
|
|
break;
|
|
|
|
case INTEL_PIPE_CRC_SOURCE_PF:
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_HASWELL(dev_priv) && pipe == PIPE_A)
|
|
|
|
hsw_trans_edp_pipe_A_crc_wa(dev_priv, true);
|
2014-05-29 12:10:22 +00:00
|
|
|
|
2013-10-16 20:55:48 +00:00
|
|
|
*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PF_IVB;
|
|
|
|
break;
|
2013-10-16 20:55:58 +00:00
|
|
|
case INTEL_PIPE_CRC_SOURCE_NONE:
|
2013-10-16 20:55:48 +00:00
|
|
|
*val = 0;
|
|
|
|
break;
|
2013-10-16 20:55:58 +00:00
|
|
|
default:
|
|
|
|
return -EINVAL;
|
2013-10-16 20:55:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static int pipe_crc_set_source(struct drm_i915_private *dev_priv,
|
|
|
|
enum pipe pipe,
|
2013-10-16 11:30:34 +00:00
|
|
|
enum intel_pipe_crc_source source)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2013-10-15 17:55:31 +00:00
|
|
|
struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct intel_crtc *crtc =
|
|
|
|
to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
|
2016-02-12 16:55:17 +00:00
|
|
|
enum intel_display_power_domain power_domain;
|
2013-11-21 15:49:46 +00:00
|
|
|
u32 val = 0; /* shut up gcc */
|
2013-10-16 20:55:48 +00:00
|
|
|
int ret;
|
2013-10-16 11:30:34 +00:00
|
|
|
|
2013-10-15 17:55:31 +00:00
|
|
|
if (pipe_crc->source == source)
|
|
|
|
return 0;
|
|
|
|
|
2013-10-15 17:55:32 +00:00
|
|
|
/* forbid changing the source without going back to 'none' */
|
|
|
|
if (pipe_crc->source && source)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2016-02-12 16:55:17 +00:00
|
|
|
power_domain = POWER_DOMAIN_PIPE(pipe);
|
|
|
|
if (!intel_display_power_get_if_enabled(dev_priv, power_domain)) {
|
2014-11-25 13:00:40 +00:00
|
|
|
DRM_DEBUG_KMS("Trying to capture CRC while pipe is off\n");
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_GEN2(dev_priv))
|
2013-11-01 09:50:20 +00:00
|
|
|
ret = i8xx_pipe_crc_ctl_reg(&source, &val);
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
else if (INTEL_GEN(dev_priv) < 5)
|
|
|
|
ret = i9xx_pipe_crc_ctl_reg(dev_priv, pipe, &source, &val);
|
|
|
|
else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
|
|
|
|
ret = vlv_pipe_crc_ctl_reg(dev_priv, pipe, &source, &val);
|
|
|
|
else if (IS_GEN5(dev_priv) || IS_GEN6(dev_priv))
|
2013-11-01 09:50:20 +00:00
|
|
|
ret = ilk_pipe_crc_ctl_reg(&source, &val);
|
2013-10-16 20:55:48 +00:00
|
|
|
else
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
ret = ivb_pipe_crc_ctl_reg(dev_priv, pipe, &source, &val);
|
2013-10-16 20:55:48 +00:00
|
|
|
|
|
|
|
if (ret != 0)
|
2016-02-12 16:55:17 +00:00
|
|
|
goto out;
|
2013-10-16 20:55:48 +00:00
|
|
|
|
2013-10-15 17:55:33 +00:00
|
|
|
/* none -> real source transition */
|
|
|
|
if (source) {
|
2014-12-09 19:28:30 +00:00
|
|
|
struct intel_pipe_crc_entry *entries;
|
|
|
|
|
2013-10-15 17:55:38 +00:00
|
|
|
DRM_DEBUG_DRIVER("collecting CRCs for pipe %c, %s\n",
|
|
|
|
pipe_name(pipe), pipe_crc_source_name(source));
|
|
|
|
|
2014-12-09 19:28:31 +00:00
|
|
|
entries = kcalloc(INTEL_PIPE_CRC_ENTRIES_NR,
|
|
|
|
sizeof(pipe_crc->entries[0]),
|
2014-12-09 19:28:30 +00:00
|
|
|
GFP_KERNEL);
|
2016-02-12 16:55:17 +00:00
|
|
|
if (!entries) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto out;
|
|
|
|
}
|
2013-10-15 17:55:34 +00:00
|
|
|
|
2014-10-17 21:42:03 +00:00
|
|
|
/*
|
|
|
|
* When IPS gets enabled, the pipe CRC changes. Since IPS gets
|
|
|
|
* enabled and disabled dynamically based on package C states,
|
|
|
|
* user space can't make reliable use of the CRCs, so let's just
|
|
|
|
* completely disable it.
|
|
|
|
*/
|
|
|
|
hsw_disable_ips(crtc);
|
|
|
|
|
2013-10-21 13:29:30 +00:00
|
|
|
spin_lock_irq(&pipe_crc->lock);
|
2014-12-10 10:00:29 +00:00
|
|
|
kfree(pipe_crc->entries);
|
2014-12-09 19:28:30 +00:00
|
|
|
pipe_crc->entries = entries;
|
2013-10-21 13:29:30 +00:00
|
|
|
pipe_crc->head = 0;
|
|
|
|
pipe_crc->tail = 0;
|
|
|
|
spin_unlock_irq(&pipe_crc->lock);
|
2013-10-15 17:55:33 +00:00
|
|
|
}
|
|
|
|
|
2013-10-15 17:55:31 +00:00
|
|
|
pipe_crc->source = source;
|
2013-10-16 11:30:34 +00:00
|
|
|
|
|
|
|
I915_WRITE(PIPE_CRC_CTL(pipe), val);
|
|
|
|
POSTING_READ(PIPE_CRC_CTL(pipe));
|
|
|
|
|
2013-10-15 17:55:34 +00:00
|
|
|
/* real source -> none transition */
|
|
|
|
if (source == INTEL_PIPE_CRC_SOURCE_NONE) {
|
2013-10-21 13:29:30 +00:00
|
|
|
struct intel_pipe_crc_entry *entries;
|
2014-06-06 06:22:08 +00:00
|
|
|
struct intel_crtc *crtc =
|
|
|
|
to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
|
2013-10-21 13:29:30 +00:00
|
|
|
|
2013-10-15 17:55:38 +00:00
|
|
|
DRM_DEBUG_DRIVER("stopping CRCs for pipe %c\n",
|
|
|
|
pipe_name(pipe));
|
|
|
|
|
2014-06-06 06:22:08 +00:00
|
|
|
drm_modeset_lock(&crtc->base.mutex, NULL);
|
2015-06-01 10:50:08 +00:00
|
|
|
if (crtc->base.state->active)
|
2014-06-06 06:22:08 +00:00
|
|
|
intel_wait_for_vblank(dev, pipe);
|
|
|
|
drm_modeset_unlock(&crtc->base.mutex);
|
2013-10-16 20:55:50 +00:00
|
|
|
|
2013-10-21 13:29:30 +00:00
|
|
|
spin_lock_irq(&pipe_crc->lock);
|
|
|
|
entries = pipe_crc->entries;
|
2013-10-15 17:55:34 +00:00
|
|
|
pipe_crc->entries = NULL;
|
2014-12-09 19:28:32 +00:00
|
|
|
pipe_crc->head = 0;
|
|
|
|
pipe_crc->tail = 0;
|
2013-10-21 13:29:30 +00:00
|
|
|
spin_unlock_irq(&pipe_crc->lock);
|
|
|
|
|
|
|
|
kfree(entries);
|
2013-11-01 09:50:21 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_G4X(dev_priv))
|
|
|
|
g4x_undo_pipe_scramble_reset(dev_priv, pipe);
|
|
|
|
else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
|
|
|
|
vlv_undo_pipe_scramble_reset(dev_priv, pipe);
|
|
|
|
else if (IS_HASWELL(dev_priv) && pipe == PIPE_A)
|
|
|
|
hsw_trans_edp_pipe_A_crc_wa(dev_priv, false);
|
2014-10-17 21:42:03 +00:00
|
|
|
|
|
|
|
hsw_enable_ips(crtc);
|
2013-10-15 17:55:34 +00:00
|
|
|
}
|
|
|
|
|
2016-02-12 16:55:17 +00:00
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
out:
|
|
|
|
intel_display_power_put(dev_priv, power_domain);
|
|
|
|
|
|
|
|
return ret;
|
2013-10-16 11:30:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse pipe CRC command strings:
|
2013-10-15 17:55:35 +00:00
|
|
|
* command: wsp* object wsp+ name wsp+ source wsp*
|
|
|
|
* object: 'pipe'
|
|
|
|
* name: (A | B | C)
|
2013-10-16 11:30:34 +00:00
|
|
|
* source: (none | plane1 | plane2 | pf)
|
|
|
|
* wsp: (#0x20 | #0x9 | #0xA)+
|
|
|
|
*
|
|
|
|
* eg.:
|
2013-10-15 17:55:35 +00:00
|
|
|
* "pipe A plane1" -> Start CRC computations on plane1 of pipe A
|
|
|
|
* "pipe A none" -> Stop CRC
|
2013-10-16 11:30:34 +00:00
|
|
|
*/
|
2013-10-15 17:55:36 +00:00
|
|
|
static int display_crc_ctl_tokenize(char *buf, char *words[], int max_words)
|
2013-10-16 11:30:34 +00:00
|
|
|
{
|
|
|
|
int n_words = 0;
|
|
|
|
|
|
|
|
while (*buf) {
|
|
|
|
char *end;
|
|
|
|
|
|
|
|
/* skip leading white space */
|
|
|
|
buf = skip_spaces(buf);
|
|
|
|
if (!*buf)
|
|
|
|
break; /* end of buffer */
|
|
|
|
|
|
|
|
/* find end of word */
|
|
|
|
for (end = buf; *end && !isspace(*end); end++)
|
|
|
|
;
|
|
|
|
|
|
|
|
if (n_words == max_words) {
|
|
|
|
DRM_DEBUG_DRIVER("too many words, allowed <= %d\n",
|
|
|
|
max_words);
|
|
|
|
return -EINVAL; /* ran out of words[] before bytes */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*end)
|
|
|
|
*end++ = '\0';
|
|
|
|
words[n_words++] = buf;
|
|
|
|
buf = end;
|
|
|
|
}
|
|
|
|
|
|
|
|
return n_words;
|
|
|
|
}
|
|
|
|
|
2013-10-15 17:55:35 +00:00
|
|
|
enum intel_pipe_crc_object {
|
|
|
|
PIPE_CRC_OBJECT_PIPE,
|
|
|
|
};
|
|
|
|
|
2013-10-16 09:51:54 +00:00
|
|
|
static const char * const pipe_crc_objects[] = {
|
2013-10-15 17:55:35 +00:00
|
|
|
"pipe",
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
2013-10-15 17:55:36 +00:00
|
|
|
display_crc_ctl_parse_object(const char *buf, enum intel_pipe_crc_object *o)
|
2013-10-15 17:55:35 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(pipe_crc_objects); i++)
|
|
|
|
if (!strcmp(buf, pipe_crc_objects[i])) {
|
2013-10-15 17:55:36 +00:00
|
|
|
*o = i;
|
2013-10-15 17:55:35 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2013-10-15 17:55:36 +00:00
|
|
|
static int display_crc_ctl_parse_pipe(const char *buf, enum pipe *pipe)
|
2013-10-16 11:30:34 +00:00
|
|
|
{
|
|
|
|
const char name = buf[0];
|
|
|
|
|
|
|
|
if (name < 'A' || name >= pipe_name(I915_MAX_PIPES))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
*pipe = name - 'A';
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2013-10-15 17:55:36 +00:00
|
|
|
display_crc_ctl_parse_source(const char *buf, enum intel_pipe_crc_source *s)
|
2013-10-16 11:30:34 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(pipe_crc_sources); i++)
|
|
|
|
if (!strcmp(buf, pipe_crc_sources[i])) {
|
2013-10-15 17:55:36 +00:00
|
|
|
*s = i;
|
2013-10-16 11:30:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static int display_crc_ctl_parse(struct drm_i915_private *dev_priv,
|
|
|
|
char *buf, size_t len)
|
2013-10-16 11:30:34 +00:00
|
|
|
{
|
2013-10-15 17:55:35 +00:00
|
|
|
#define N_WORDS 3
|
2013-10-16 11:30:34 +00:00
|
|
|
int n_words;
|
2013-10-15 17:55:35 +00:00
|
|
|
char *words[N_WORDS];
|
2013-10-16 11:30:34 +00:00
|
|
|
enum pipe pipe;
|
2013-10-15 17:55:35 +00:00
|
|
|
enum intel_pipe_crc_object object;
|
2013-10-16 11:30:34 +00:00
|
|
|
enum intel_pipe_crc_source source;
|
|
|
|
|
2013-10-15 17:55:36 +00:00
|
|
|
n_words = display_crc_ctl_tokenize(buf, words, N_WORDS);
|
2013-10-15 17:55:35 +00:00
|
|
|
if (n_words != N_WORDS) {
|
|
|
|
DRM_DEBUG_DRIVER("tokenize failed, a command is %d words\n",
|
|
|
|
N_WORDS);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2013-10-15 17:55:36 +00:00
|
|
|
if (display_crc_ctl_parse_object(words[0], &object) < 0) {
|
2013-10-15 17:55:35 +00:00
|
|
|
DRM_DEBUG_DRIVER("unknown object %s\n", words[0]);
|
2013-10-16 11:30:34 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2013-10-15 17:55:36 +00:00
|
|
|
if (display_crc_ctl_parse_pipe(words[1], &pipe) < 0) {
|
2013-10-15 17:55:35 +00:00
|
|
|
DRM_DEBUG_DRIVER("unknown pipe %s\n", words[1]);
|
2013-10-16 11:30:34 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2013-10-15 17:55:36 +00:00
|
|
|
if (display_crc_ctl_parse_source(words[2], &source) < 0) {
|
2013-10-15 17:55:35 +00:00
|
|
|
DRM_DEBUG_DRIVER("unknown source %s\n", words[2]);
|
2013-10-16 11:30:34 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
return pipe_crc_set_source(dev_priv, pipe, source);
|
2013-10-16 11:30:34 +00:00
|
|
|
}
|
|
|
|
|
2013-10-15 17:55:36 +00:00
|
|
|
static ssize_t display_crc_ctl_write(struct file *file, const char __user *ubuf,
|
|
|
|
size_t len, loff_t *offp)
|
2013-10-16 11:30:34 +00:00
|
|
|
{
|
|
|
|
struct seq_file *m = file->private_data;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = m->private;
|
2013-10-16 11:30:34 +00:00
|
|
|
char *tmpbuf;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (len == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (len > PAGE_SIZE - 1) {
|
|
|
|
DRM_DEBUG_DRIVER("expected <%lu bytes into pipe crc control\n",
|
|
|
|
PAGE_SIZE);
|
|
|
|
return -E2BIG;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmpbuf = kmalloc(len + 1, GFP_KERNEL);
|
|
|
|
if (!tmpbuf)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
if (copy_from_user(tmpbuf, ubuf, len)) {
|
|
|
|
ret = -EFAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
tmpbuf[len] = '\0';
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
ret = display_crc_ctl_parse(dev_priv, tmpbuf, len);
|
2013-10-16 11:30:34 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
kfree(tmpbuf);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
*offp += len;
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2013-10-15 17:55:36 +00:00
|
|
|
static const struct file_operations i915_display_crc_ctl_fops = {
|
2013-10-16 11:30:34 +00:00
|
|
|
.owner = THIS_MODULE,
|
2013-10-15 17:55:36 +00:00
|
|
|
.open = display_crc_ctl_open,
|
2013-10-16 11:30:34 +00:00
|
|
|
.read = seq_read,
|
|
|
|
.llseek = seq_lseek,
|
|
|
|
.release = single_release,
|
2013-10-15 17:55:36 +00:00
|
|
|
.write = display_crc_ctl_write
|
2013-10-16 11:30:34 +00:00
|
|
|
};
|
|
|
|
|
2015-04-18 07:04:19 +00:00
|
|
|
static ssize_t i915_displayport_test_active_write(struct file *file,
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
const char __user *ubuf,
|
|
|
|
size_t len, loff_t *offp)
|
2015-04-18 07:04:19 +00:00
|
|
|
{
|
|
|
|
char *input_buffer;
|
|
|
|
int status = 0;
|
|
|
|
struct drm_device *dev;
|
|
|
|
struct drm_connector *connector;
|
|
|
|
struct list_head *connector_list;
|
|
|
|
struct intel_dp *intel_dp;
|
|
|
|
int val = 0;
|
|
|
|
|
2015-07-21 12:06:45 +00:00
|
|
|
dev = ((struct seq_file *)file->private_data)->private;
|
2015-04-18 07:04:19 +00:00
|
|
|
|
|
|
|
connector_list = &dev->mode_config.connector_list;
|
|
|
|
|
|
|
|
if (len == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
input_buffer = kmalloc(len + 1, GFP_KERNEL);
|
|
|
|
if (!input_buffer)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
if (copy_from_user(input_buffer, ubuf, len)) {
|
|
|
|
status = -EFAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
input_buffer[len] = '\0';
|
|
|
|
DRM_DEBUG_DRIVER("Copied %d bytes from user\n", (unsigned int)len);
|
|
|
|
|
|
|
|
list_for_each_entry(connector, connector_list, head) {
|
|
|
|
if (connector->connector_type !=
|
|
|
|
DRM_MODE_CONNECTOR_DisplayPort)
|
|
|
|
continue;
|
|
|
|
|
2015-07-21 12:06:46 +00:00
|
|
|
if (connector->status == connector_status_connected &&
|
2015-04-18 07:04:19 +00:00
|
|
|
connector->encoder != NULL) {
|
|
|
|
intel_dp = enc_to_intel_dp(connector->encoder);
|
|
|
|
status = kstrtoint(input_buffer, 10, &val);
|
|
|
|
if (status < 0)
|
|
|
|
goto out;
|
|
|
|
DRM_DEBUG_DRIVER("Got %d for test active\n", val);
|
|
|
|
/* To prevent erroneous activation of the compliance
|
|
|
|
* testing code, only accept an actual value of 1 here
|
|
|
|
*/
|
|
|
|
if (val == 1)
|
|
|
|
intel_dp->compliance_test_active = 1;
|
|
|
|
else
|
|
|
|
intel_dp->compliance_test_active = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
kfree(input_buffer);
|
|
|
|
if (status < 0)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
*offp += len;
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_displayport_test_active_show(struct seq_file *m, void *data)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = m->private;
|
|
|
|
struct drm_connector *connector;
|
|
|
|
struct list_head *connector_list = &dev->mode_config.connector_list;
|
|
|
|
struct intel_dp *intel_dp;
|
|
|
|
|
|
|
|
list_for_each_entry(connector, connector_list, head) {
|
|
|
|
if (connector->connector_type !=
|
|
|
|
DRM_MODE_CONNECTOR_DisplayPort)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (connector->status == connector_status_connected &&
|
|
|
|
connector->encoder != NULL) {
|
|
|
|
intel_dp = enc_to_intel_dp(connector->encoder);
|
|
|
|
if (intel_dp->compliance_test_active)
|
|
|
|
seq_puts(m, "1");
|
|
|
|
else
|
|
|
|
seq_puts(m, "0");
|
|
|
|
} else
|
|
|
|
seq_puts(m, "0");
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_displayport_test_active_open(struct inode *inode,
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct file *file)
|
2015-04-18 07:04:19 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = inode->i_private;
|
2015-04-18 07:04:19 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
return single_open(file, i915_displayport_test_active_show,
|
|
|
|
&dev_priv->drm);
|
2015-04-18 07:04:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations i915_displayport_test_active_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = i915_displayport_test_active_open,
|
|
|
|
.read = seq_read,
|
|
|
|
.llseek = seq_lseek,
|
|
|
|
.release = single_release,
|
|
|
|
.write = i915_displayport_test_active_write
|
|
|
|
};
|
|
|
|
|
|
|
|
static int i915_displayport_test_data_show(struct seq_file *m, void *data)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = m->private;
|
|
|
|
struct drm_connector *connector;
|
|
|
|
struct list_head *connector_list = &dev->mode_config.connector_list;
|
|
|
|
struct intel_dp *intel_dp;
|
|
|
|
|
|
|
|
list_for_each_entry(connector, connector_list, head) {
|
|
|
|
if (connector->connector_type !=
|
|
|
|
DRM_MODE_CONNECTOR_DisplayPort)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (connector->status == connector_status_connected &&
|
|
|
|
connector->encoder != NULL) {
|
|
|
|
intel_dp = enc_to_intel_dp(connector->encoder);
|
|
|
|
seq_printf(m, "%lx", intel_dp->compliance_test_data);
|
|
|
|
} else
|
|
|
|
seq_puts(m, "0");
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static int i915_displayport_test_data_open(struct inode *inode,
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct file *file)
|
2015-04-18 07:04:19 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = inode->i_private;
|
2015-04-18 07:04:19 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
return single_open(file, i915_displayport_test_data_show,
|
|
|
|
&dev_priv->drm);
|
2015-04-18 07:04:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations i915_displayport_test_data_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = i915_displayport_test_data_open,
|
|
|
|
.read = seq_read,
|
|
|
|
.llseek = seq_lseek,
|
|
|
|
.release = single_release
|
|
|
|
};
|
|
|
|
|
|
|
|
static int i915_displayport_test_type_show(struct seq_file *m, void *data)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = m->private;
|
|
|
|
struct drm_connector *connector;
|
|
|
|
struct list_head *connector_list = &dev->mode_config.connector_list;
|
|
|
|
struct intel_dp *intel_dp;
|
|
|
|
|
|
|
|
list_for_each_entry(connector, connector_list, head) {
|
|
|
|
if (connector->connector_type !=
|
|
|
|
DRM_MODE_CONNECTOR_DisplayPort)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (connector->status == connector_status_connected &&
|
|
|
|
connector->encoder != NULL) {
|
|
|
|
intel_dp = enc_to_intel_dp(connector->encoder);
|
|
|
|
seq_printf(m, "%02lx", intel_dp->compliance_test_type);
|
|
|
|
} else
|
|
|
|
seq_puts(m, "0");
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_displayport_test_type_open(struct inode *inode,
|
|
|
|
struct file *file)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = inode->i_private;
|
2015-04-18 07:04:19 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
return single_open(file, i915_displayport_test_type_show,
|
|
|
|
&dev_priv->drm);
|
2015-04-18 07:04:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations i915_displayport_test_type_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = i915_displayport_test_type_open,
|
|
|
|
.read = seq_read,
|
|
|
|
.llseek = seq_lseek,
|
|
|
|
.release = single_release
|
|
|
|
};
|
|
|
|
|
2014-11-04 17:06:50 +00:00
|
|
|
static void wm_latency_show(struct seq_file *m, const uint16_t wm[8])
|
2014-01-22 12:36:08 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = m->private;
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2014-01-22 12:36:08 +00:00
|
|
|
int level;
|
2015-06-24 19:00:09 +00:00
|
|
|
int num_levels;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_CHERRYVIEW(dev_priv))
|
2015-06-24 19:00:09 +00:00
|
|
|
num_levels = 3;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
else if (IS_VALLEYVIEW(dev_priv))
|
2015-06-24 19:00:09 +00:00
|
|
|
num_levels = 1;
|
|
|
|
else
|
2016-10-13 10:03:10 +00:00
|
|
|
num_levels = ilk_wm_max_level(dev_priv) + 1;
|
2014-01-22 12:36:08 +00:00
|
|
|
|
|
|
|
drm_modeset_lock_all(dev);
|
|
|
|
|
|
|
|
for (level = 0; level < num_levels; level++) {
|
|
|
|
unsigned int latency = wm[level];
|
|
|
|
|
2014-11-04 17:06:50 +00:00
|
|
|
/*
|
|
|
|
* - WM1+ latency values in 0.5us units
|
2015-06-24 19:00:09 +00:00
|
|
|
* - latencies are in us on gen9/vlv/chv
|
2014-11-04 17:06:50 +00:00
|
|
|
*/
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 9 || IS_VALLEYVIEW(dev_priv) ||
|
|
|
|
IS_CHERRYVIEW(dev_priv))
|
2014-11-04 17:06:50 +00:00
|
|
|
latency *= 10;
|
|
|
|
else if (level > 0)
|
2014-01-22 12:36:08 +00:00
|
|
|
latency *= 5;
|
|
|
|
|
|
|
|
seq_printf(m, "WM%d %u (%u.%u usec)\n",
|
2014-11-04 17:06:50 +00:00
|
|
|
level, wm[level], latency / 10, latency % 10);
|
2014-01-22 12:36:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
drm_modeset_unlock_all(dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pri_wm_latency_show(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = m->private;
|
2014-11-04 17:06:50 +00:00
|
|
|
const uint16_t *latencies;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 9)
|
2014-11-04 17:06:50 +00:00
|
|
|
latencies = dev_priv->wm.skl_latency;
|
|
|
|
else
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
latencies = dev_priv->wm.pri_latency;
|
2014-01-22 12:36:08 +00:00
|
|
|
|
2014-11-04 17:06:50 +00:00
|
|
|
wm_latency_show(m, latencies);
|
2014-01-22 12:36:08 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int spr_wm_latency_show(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = m->private;
|
2014-11-04 17:06:50 +00:00
|
|
|
const uint16_t *latencies;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 9)
|
2014-11-04 17:06:50 +00:00
|
|
|
latencies = dev_priv->wm.skl_latency;
|
|
|
|
else
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
latencies = dev_priv->wm.spr_latency;
|
2014-01-22 12:36:08 +00:00
|
|
|
|
2014-11-04 17:06:50 +00:00
|
|
|
wm_latency_show(m, latencies);
|
2014-01-22 12:36:08 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cur_wm_latency_show(struct seq_file *m, void *data)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = m->private;
|
2014-11-04 17:06:50 +00:00
|
|
|
const uint16_t *latencies;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 9)
|
2014-11-04 17:06:50 +00:00
|
|
|
latencies = dev_priv->wm.skl_latency;
|
|
|
|
else
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
latencies = dev_priv->wm.cur_latency;
|
2014-01-22 12:36:08 +00:00
|
|
|
|
2014-11-04 17:06:50 +00:00
|
|
|
wm_latency_show(m, latencies);
|
2014-01-22 12:36:08 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pri_wm_latency_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = inode->i_private;
|
2014-01-22 12:36:08 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) < 5)
|
2014-01-22 12:36:08 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
return single_open(file, pri_wm_latency_show, dev_priv);
|
2014-01-22 12:36:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int spr_wm_latency_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = inode->i_private;
|
2014-01-22 12:36:08 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (HAS_GMCH_DISPLAY(dev_priv))
|
2014-01-22 12:36:08 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
return single_open(file, spr_wm_latency_show, dev_priv);
|
2014-01-22 12:36:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int cur_wm_latency_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = inode->i_private;
|
2014-01-22 12:36:08 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (HAS_GMCH_DISPLAY(dev_priv))
|
2014-01-22 12:36:08 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
return single_open(file, cur_wm_latency_show, dev_priv);
|
2014-01-22 12:36:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t wm_latency_write(struct file *file, const char __user *ubuf,
|
2014-11-04 17:06:50 +00:00
|
|
|
size_t len, loff_t *offp, uint16_t wm[8])
|
2014-01-22 12:36:08 +00:00
|
|
|
{
|
|
|
|
struct seq_file *m = file->private_data;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = m->private;
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2014-11-04 17:06:50 +00:00
|
|
|
uint16_t new[8] = { 0 };
|
2015-06-24 19:00:09 +00:00
|
|
|
int num_levels;
|
2014-01-22 12:36:08 +00:00
|
|
|
int level;
|
|
|
|
int ret;
|
|
|
|
char tmp[32];
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_CHERRYVIEW(dev_priv))
|
2015-06-24 19:00:09 +00:00
|
|
|
num_levels = 3;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
else if (IS_VALLEYVIEW(dev_priv))
|
2015-06-24 19:00:09 +00:00
|
|
|
num_levels = 1;
|
|
|
|
else
|
2016-10-13 10:03:10 +00:00
|
|
|
num_levels = ilk_wm_max_level(dev_priv) + 1;
|
2015-06-24 19:00:09 +00:00
|
|
|
|
2014-01-22 12:36:08 +00:00
|
|
|
if (len >= sizeof(tmp))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (copy_from_user(tmp, ubuf, len))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
tmp[len] = '\0';
|
|
|
|
|
2014-11-04 17:06:50 +00:00
|
|
|
ret = sscanf(tmp, "%hu %hu %hu %hu %hu %hu %hu %hu",
|
|
|
|
&new[0], &new[1], &new[2], &new[3],
|
|
|
|
&new[4], &new[5], &new[6], &new[7]);
|
2014-01-22 12:36:08 +00:00
|
|
|
if (ret != num_levels)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
drm_modeset_lock_all(dev);
|
|
|
|
|
|
|
|
for (level = 0; level < num_levels; level++)
|
|
|
|
wm[level] = new[level];
|
|
|
|
|
|
|
|
drm_modeset_unlock_all(dev);
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static ssize_t pri_wm_latency_write(struct file *file, const char __user *ubuf,
|
|
|
|
size_t len, loff_t *offp)
|
|
|
|
{
|
|
|
|
struct seq_file *m = file->private_data;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = m->private;
|
2014-11-04 17:06:50 +00:00
|
|
|
uint16_t *latencies;
|
2014-01-22 12:36:08 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 9)
|
2014-11-04 17:06:50 +00:00
|
|
|
latencies = dev_priv->wm.skl_latency;
|
|
|
|
else
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
latencies = dev_priv->wm.pri_latency;
|
2014-11-04 17:06:50 +00:00
|
|
|
|
|
|
|
return wm_latency_write(file, ubuf, len, offp, latencies);
|
2014-01-22 12:36:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t spr_wm_latency_write(struct file *file, const char __user *ubuf,
|
|
|
|
size_t len, loff_t *offp)
|
|
|
|
{
|
|
|
|
struct seq_file *m = file->private_data;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = m->private;
|
2014-11-04 17:06:50 +00:00
|
|
|
uint16_t *latencies;
|
2014-01-22 12:36:08 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 9)
|
2014-11-04 17:06:50 +00:00
|
|
|
latencies = dev_priv->wm.skl_latency;
|
|
|
|
else
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
latencies = dev_priv->wm.spr_latency;
|
2014-11-04 17:06:50 +00:00
|
|
|
|
|
|
|
return wm_latency_write(file, ubuf, len, offp, latencies);
|
2014-01-22 12:36:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t cur_wm_latency_write(struct file *file, const char __user *ubuf,
|
|
|
|
size_t len, loff_t *offp)
|
|
|
|
{
|
|
|
|
struct seq_file *m = file->private_data;
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = m->private;
|
2014-11-04 17:06:50 +00:00
|
|
|
uint16_t *latencies;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) >= 9)
|
2014-11-04 17:06:50 +00:00
|
|
|
latencies = dev_priv->wm.skl_latency;
|
|
|
|
else
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
latencies = dev_priv->wm.cur_latency;
|
2014-01-22 12:36:08 +00:00
|
|
|
|
2014-11-04 17:06:50 +00:00
|
|
|
return wm_latency_write(file, ubuf, len, offp, latencies);
|
2014-01-22 12:36:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations i915_pri_wm_latency_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = pri_wm_latency_open,
|
|
|
|
.read = seq_read,
|
|
|
|
.llseek = seq_lseek,
|
|
|
|
.release = single_release,
|
|
|
|
.write = pri_wm_latency_write
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct file_operations i915_spr_wm_latency_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = spr_wm_latency_open,
|
|
|
|
.read = seq_read,
|
|
|
|
.llseek = seq_lseek,
|
|
|
|
.release = single_release,
|
|
|
|
.write = spr_wm_latency_write
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct file_operations i915_cur_wm_latency_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = cur_wm_latency_open,
|
|
|
|
.read = seq_read,
|
|
|
|
.llseek = seq_lseek,
|
|
|
|
.release = single_release,
|
|
|
|
.write = cur_wm_latency_write
|
|
|
|
};
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
static int
|
|
|
|
i915_wedged_get(void *data, u64 *val)
|
2009-10-13 21:20:20 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
2009-10-13 21:20:20 +00:00
|
|
|
|
2016-04-13 16:35:05 +00:00
|
|
|
*val = i915_terminally_wedged(&dev_priv->gpu_error);
|
2009-10-13 21:20:20 +00:00
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
return 0;
|
2009-10-13 21:20:20 +00:00
|
|
|
}
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
static int
|
|
|
|
i915_wedged_set(void *data, u64 val)
|
2009-10-13 21:20:20 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
2014-04-14 17:24:27 +00:00
|
|
|
|
2015-01-28 15:03:14 +00:00
|
|
|
/*
|
|
|
|
* There is no safeguard against this debugfs entry colliding
|
|
|
|
* with the hangcheck calling same i915_handle_error() in
|
|
|
|
* parallel, causing an explosion. For now we assume that the
|
|
|
|
* test harness is responsible enough not to inject gpu hangs
|
|
|
|
* while it is writing to 'i915_wedged'
|
|
|
|
*/
|
|
|
|
|
2016-04-13 16:35:05 +00:00
|
|
|
if (i915_reset_in_progress(&dev_priv->gpu_error))
|
2015-01-28 15:03:14 +00:00
|
|
|
return -EAGAIN;
|
|
|
|
|
2016-05-06 14:40:21 +00:00
|
|
|
i915_handle_error(dev_priv, val,
|
2014-02-25 15:11:26 +00:00
|
|
|
"Manually setting wedged to %llu", val);
|
2014-04-14 17:24:27 +00:00
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
return 0;
|
2009-10-13 21:20:20 +00:00
|
|
|
}
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
DEFINE_SIMPLE_ATTRIBUTE(i915_wedged_fops,
|
|
|
|
i915_wedged_get, i915_wedged_set,
|
2013-04-12 09:10:05 +00:00
|
|
|
"%llu\n");
|
2009-10-13 21:20:20 +00:00
|
|
|
|
2013-09-25 16:34:55 +00:00
|
|
|
static int
|
|
|
|
i915_ring_missed_irq_get(void *data, u64 *val)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
2013-09-25 16:34:55 +00:00
|
|
|
|
|
|
|
*val = dev_priv->gpu_error.missed_irq_rings;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
i915_ring_missed_irq_set(void *data, u64 val)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2013-09-25 16:34:55 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Lock against concurrent debugfs callers */
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
dev_priv->gpu_error.missed_irq_rings = val;
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_SIMPLE_ATTRIBUTE(i915_ring_missed_irq_fops,
|
|
|
|
i915_ring_missed_irq_get, i915_ring_missed_irq_set,
|
|
|
|
"0x%08llx\n");
|
|
|
|
|
|
|
|
static int
|
|
|
|
i915_ring_test_irq_get(void *data, u64 *val)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
2013-09-25 16:34:55 +00:00
|
|
|
|
|
|
|
*val = dev_priv->gpu_error.test_irq_rings;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
i915_ring_test_irq_set(void *data, u64 val)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
2013-09-25 16:34:55 +00:00
|
|
|
|
2016-06-17 13:35:05 +00:00
|
|
|
val &= INTEL_INFO(dev_priv)->ring_mask;
|
2013-09-25 16:34:55 +00:00
|
|
|
DRM_DEBUG_DRIVER("Masking interrupts on rings 0x%08llx\n", val);
|
|
|
|
dev_priv->gpu_error.test_irq_rings = val;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_SIMPLE_ATTRIBUTE(i915_ring_test_irq_fops,
|
|
|
|
i915_ring_test_irq_get, i915_ring_test_irq_set,
|
|
|
|
"0x%08llx\n");
|
|
|
|
|
2013-01-15 12:39:35 +00:00
|
|
|
#define DROP_UNBOUND 0x1
|
|
|
|
#define DROP_BOUND 0x2
|
|
|
|
#define DROP_RETIRE 0x4
|
|
|
|
#define DROP_ACTIVE 0x8
|
2016-10-28 12:58:42 +00:00
|
|
|
#define DROP_FREED 0x10
|
|
|
|
#define DROP_ALL (DROP_UNBOUND | \
|
|
|
|
DROP_BOUND | \
|
|
|
|
DROP_RETIRE | \
|
|
|
|
DROP_ACTIVE | \
|
|
|
|
DROP_FREED)
|
2013-03-10 21:10:06 +00:00
|
|
|
static int
|
|
|
|
i915_drop_caches_get(void *data, u64 *val)
|
2013-01-15 12:39:35 +00:00
|
|
|
{
|
2013-03-10 21:10:06 +00:00
|
|
|
*val = DROP_ALL;
|
2013-01-15 12:39:35 +00:00
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
return 0;
|
2013-01-15 12:39:35 +00:00
|
|
|
}
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
static int
|
|
|
|
i915_drop_caches_set(void *data, u64 val)
|
2013-01-15 12:39:35 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
|
|
|
struct drm_device *dev = &dev_priv->drm;
|
2013-03-10 21:10:06 +00:00
|
|
|
int ret;
|
2013-01-15 12:39:35 +00:00
|
|
|
|
2013-11-25 17:54:37 +00:00
|
|
|
DRM_DEBUG("Dropping caches: 0x%08llx\n", val);
|
2013-01-15 12:39:35 +00:00
|
|
|
|
|
|
|
/* No need to check and wait for gpu resets, only libdrm auto-restarts
|
|
|
|
* on ioctls on -EAGAIN. */
|
|
|
|
ret = mutex_lock_interruptible(&dev->struct_mutex);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (val & DROP_ACTIVE) {
|
2016-09-09 13:11:50 +00:00
|
|
|
ret = i915_gem_wait_for_idle(dev_priv,
|
|
|
|
I915_WAIT_INTERRUPTIBLE |
|
|
|
|
I915_WAIT_LOCKED);
|
2013-01-15 12:39:35 +00:00
|
|
|
if (ret)
|
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (val & (DROP_RETIRE | DROP_ACTIVE))
|
2016-05-06 14:40:21 +00:00
|
|
|
i915_gem_retire_requests(dev_priv);
|
2013-01-15 12:39:35 +00:00
|
|
|
|
2014-09-09 10:16:08 +00:00
|
|
|
if (val & DROP_BOUND)
|
|
|
|
i915_gem_shrink(dev_priv, LONG_MAX, I915_SHRINK_BOUND);
|
2014-09-03 18:23:37 +00:00
|
|
|
|
2014-09-09 10:16:08 +00:00
|
|
|
if (val & DROP_UNBOUND)
|
|
|
|
i915_gem_shrink(dev_priv, LONG_MAX, I915_SHRINK_UNBOUND);
|
2013-01-15 12:39:35 +00:00
|
|
|
|
|
|
|
unlock:
|
|
|
|
mutex_unlock(&dev->struct_mutex);
|
|
|
|
|
2016-10-28 12:58:42 +00:00
|
|
|
if (val & DROP_FREED) {
|
|
|
|
synchronize_rcu();
|
|
|
|
flush_work(&dev_priv->mm.free_work);
|
|
|
|
}
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
return ret;
|
2013-01-15 12:39:35 +00:00
|
|
|
}
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
DEFINE_SIMPLE_ATTRIBUTE(i915_drop_caches_fops,
|
|
|
|
i915_drop_caches_get, i915_drop_caches_set,
|
|
|
|
"0x%08llx\n");
|
2013-01-15 12:39:35 +00:00
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
static int
|
|
|
|
i915_max_freq_get(void *data, u64 *val)
|
2011-07-27 18:53:01 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
2012-08-09 13:07:01 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) < 6)
|
2012-08-09 13:07:01 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
drm/i915: Use intel_gpu_freq() and intel_freq_opcode()
Replace all the vlv_gpu_freq(), vlv_freq_opcode(),
*GT_FREQUENCY_MULTIPLIER, and /GT_FREQUENCY_MULTIPLIER instances
with intel_gpu_freq() and intel_freq_opcode() calls.
Most of the change was performed with the following semantic patch:
@@
expression E;
@@
(
- E * GT_FREQUENCY_MULTIPLIER
+ intel_gpu_freq(dev_priv, E)
|
- E *= GT_FREQUENCY_MULTIPLIER
+ E = intel_gpu_freq(dev_priv, E)
|
- E /= GT_FREQUENCY_MULTIPLIER
+ E = intel_freq_opcode(dev_priv, E)
|
- do_div(E, GT_FREQUENCY_MULTIPLIER)
+ E = intel_freq_opcode(dev_priv, E)
)
@@
expression E1, E2;
@@
(
- vlv_gpu_freq(E1, E2)
+ intel_gpu_freq(E1, E2)
|
- vlv_freq_opcode(E1, E2)
+ intel_freq_opcode(E1, E2)
)
@@
expression E1, E2, E3, E4;
@@
(
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_gpu_freq(E3, E4);
- } else {
- E2 = intel_gpu_freq(E3, E4);
- }
+ E2 = intel_gpu_freq(E3, E4);
|
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_freq_opcode(E3, E4);
- } else {
- E2 = intel_freq_opcode(E3, E4);
- }
+ E2 = intel_freq_opcode(E3, E4);
)
One hunk was manually undone as intel_gpu_freq() ended up
calling itself. Supposedly it would be possible to exclude
certain functions via !=~, but I couldn't get that to work.
Also the removal of vlv_gpu_freq() and vlv_opcode_freq() compat
wrappers was done manually.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-01-23 19:04:26 +00:00
|
|
|
*val = intel_gpu_freq(dev_priv, dev_priv->rps.max_freq_softlimit);
|
2013-03-10 21:10:06 +00:00
|
|
|
return 0;
|
2011-07-27 18:53:01 +00:00
|
|
|
}
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
static int
|
|
|
|
i915_max_freq_set(void *data, u64 val)
|
2011-07-27 18:53:01 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
drm/i915: Removed the read of RP_STATE_CAP from sysfs/debugfs functions
The frequency values(Rp0, Rp1, Rpn) reported by RP_STATE_CAP register
are stored, initially by the Driver, inside the dev_priv->rps structure.
Since these values are expected to remain same throughout, there is no real
need to read this register, on dynamic basis, from certain debugfs/sysfs
functions and the values can be instead retrieved from the dev_priv->rps
structure when needed.
For the i915_frequency_info debugfs interface, the frequency values from the
RP_STATE_CAP register only should be used, to indicate the actual Hw state,
since it is principally used for the debugging purpose.
v2: Reverted the changes in i915_frequency_info function, to continue report
back the frequency values, as per the actual Hw state (Chris)
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-02-26 10:39:47 +00:00
|
|
|
u32 hw_max, hw_min;
|
2013-03-10 21:10:06 +00:00
|
|
|
int ret;
|
2012-08-09 13:07:01 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) < 6)
|
2012-08-09 13:07:01 +00:00
|
|
|
return -ENODEV;
|
2011-07-27 18:53:01 +00:00
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
DRM_DEBUG_DRIVER("Manually setting max freq to %llu\n", val);
|
2011-07-27 18:53:01 +00:00
|
|
|
|
2012-11-02 18:14:01 +00:00
|
|
|
ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
|
2012-08-09 13:07:01 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2011-07-27 18:53:01 +00:00
|
|
|
/*
|
|
|
|
* Turbo will still be enabled, but won't go above the set value.
|
|
|
|
*/
|
drm/i915: Removed the read of RP_STATE_CAP from sysfs/debugfs functions
The frequency values(Rp0, Rp1, Rpn) reported by RP_STATE_CAP register
are stored, initially by the Driver, inside the dev_priv->rps structure.
Since these values are expected to remain same throughout, there is no real
need to read this register, on dynamic basis, from certain debugfs/sysfs
functions and the values can be instead retrieved from the dev_priv->rps
structure when needed.
For the i915_frequency_info debugfs interface, the frequency values from the
RP_STATE_CAP register only should be used, to indicate the actual Hw state,
since it is principally used for the debugging purpose.
v2: Reverted the changes in i915_frequency_info function, to continue report
back the frequency values, as per the actual Hw state (Chris)
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-02-26 10:39:47 +00:00
|
|
|
val = intel_freq_opcode(dev_priv, val);
|
2014-02-04 17:32:31 +00:00
|
|
|
|
drm/i915: Removed the read of RP_STATE_CAP from sysfs/debugfs functions
The frequency values(Rp0, Rp1, Rpn) reported by RP_STATE_CAP register
are stored, initially by the Driver, inside the dev_priv->rps structure.
Since these values are expected to remain same throughout, there is no real
need to read this register, on dynamic basis, from certain debugfs/sysfs
functions and the values can be instead retrieved from the dev_priv->rps
structure when needed.
For the i915_frequency_info debugfs interface, the frequency values from the
RP_STATE_CAP register only should be used, to indicate the actual Hw state,
since it is principally used for the debugging purpose.
v2: Reverted the changes in i915_frequency_info function, to continue report
back the frequency values, as per the actual Hw state (Chris)
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-02-26 10:39:47 +00:00
|
|
|
hw_max = dev_priv->rps.max_freq;
|
|
|
|
hw_min = dev_priv->rps.min_freq;
|
2014-02-04 17:32:31 +00:00
|
|
|
|
2014-03-20 01:31:11 +00:00
|
|
|
if (val < hw_min || val > hw_max || val < dev_priv->rps.min_freq_softlimit) {
|
2014-02-04 17:32:31 +00:00
|
|
|
mutex_unlock(&dev_priv->rps.hw_lock);
|
|
|
|
return -EINVAL;
|
2013-04-17 22:54:58 +00:00
|
|
|
}
|
|
|
|
|
2014-03-20 01:31:11 +00:00
|
|
|
dev_priv->rps.max_freq_softlimit = val;
|
2014-02-04 17:32:31 +00:00
|
|
|
|
2016-05-10 13:10:04 +00:00
|
|
|
intel_set_rps(dev_priv, val);
|
2014-02-04 17:32:31 +00:00
|
|
|
|
2012-11-02 18:14:01 +00:00
|
|
|
mutex_unlock(&dev_priv->rps.hw_lock);
|
2011-07-27 18:53:01 +00:00
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
return 0;
|
2011-07-27 18:53:01 +00:00
|
|
|
}
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
DEFINE_SIMPLE_ATTRIBUTE(i915_max_freq_fops,
|
|
|
|
i915_max_freq_get, i915_max_freq_set,
|
2013-04-12 09:10:05 +00:00
|
|
|
"%llu\n");
|
2011-07-27 18:53:01 +00:00
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
static int
|
|
|
|
i915_min_freq_get(void *data, u64 *val)
|
2012-05-25 19:34:54 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
2012-08-09 13:07:01 +00:00
|
|
|
|
2016-07-13 08:10:36 +00:00
|
|
|
if (INTEL_GEN(dev_priv) < 6)
|
2012-08-09 13:07:01 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
drm/i915: Use intel_gpu_freq() and intel_freq_opcode()
Replace all the vlv_gpu_freq(), vlv_freq_opcode(),
*GT_FREQUENCY_MULTIPLIER, and /GT_FREQUENCY_MULTIPLIER instances
with intel_gpu_freq() and intel_freq_opcode() calls.
Most of the change was performed with the following semantic patch:
@@
expression E;
@@
(
- E * GT_FREQUENCY_MULTIPLIER
+ intel_gpu_freq(dev_priv, E)
|
- E *= GT_FREQUENCY_MULTIPLIER
+ E = intel_gpu_freq(dev_priv, E)
|
- E /= GT_FREQUENCY_MULTIPLIER
+ E = intel_freq_opcode(dev_priv, E)
|
- do_div(E, GT_FREQUENCY_MULTIPLIER)
+ E = intel_freq_opcode(dev_priv, E)
)
@@
expression E1, E2;
@@
(
- vlv_gpu_freq(E1, E2)
+ intel_gpu_freq(E1, E2)
|
- vlv_freq_opcode(E1, E2)
+ intel_freq_opcode(E1, E2)
)
@@
expression E1, E2, E3, E4;
@@
(
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_gpu_freq(E3, E4);
- } else {
- E2 = intel_gpu_freq(E3, E4);
- }
+ E2 = intel_gpu_freq(E3, E4);
|
- if (IS_VALLEYVIEW(E1)) {
- E2 = intel_freq_opcode(E3, E4);
- } else {
- E2 = intel_freq_opcode(E3, E4);
- }
+ E2 = intel_freq_opcode(E3, E4);
)
One hunk was manually undone as intel_gpu_freq() ended up
calling itself. Supposedly it would be possible to exclude
certain functions via !=~, but I couldn't get that to work.
Also the removal of vlv_gpu_freq() and vlv_opcode_freq() compat
wrappers was done manually.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-01-23 19:04:26 +00:00
|
|
|
*val = intel_gpu_freq(dev_priv, dev_priv->rps.min_freq_softlimit);
|
2013-03-10 21:10:06 +00:00
|
|
|
return 0;
|
2012-05-25 19:34:54 +00:00
|
|
|
}
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
static int
|
|
|
|
i915_min_freq_set(void *data, u64 val)
|
2012-05-25 19:34:54 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
drm/i915: Removed the read of RP_STATE_CAP from sysfs/debugfs functions
The frequency values(Rp0, Rp1, Rpn) reported by RP_STATE_CAP register
are stored, initially by the Driver, inside the dev_priv->rps structure.
Since these values are expected to remain same throughout, there is no real
need to read this register, on dynamic basis, from certain debugfs/sysfs
functions and the values can be instead retrieved from the dev_priv->rps
structure when needed.
For the i915_frequency_info debugfs interface, the frequency values from the
RP_STATE_CAP register only should be used, to indicate the actual Hw state,
since it is principally used for the debugging purpose.
v2: Reverted the changes in i915_frequency_info function, to continue report
back the frequency values, as per the actual Hw state (Chris)
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-02-26 10:39:47 +00:00
|
|
|
u32 hw_max, hw_min;
|
2013-03-10 21:10:06 +00:00
|
|
|
int ret;
|
2012-08-09 13:07:01 +00:00
|
|
|
|
2016-07-13 08:10:36 +00:00
|
|
|
if (INTEL_GEN(dev_priv) < 6)
|
2012-08-09 13:07:01 +00:00
|
|
|
return -ENODEV;
|
2012-05-25 19:34:54 +00:00
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
DRM_DEBUG_DRIVER("Manually setting min freq to %llu\n", val);
|
2012-05-25 19:34:54 +00:00
|
|
|
|
2012-11-02 18:14:01 +00:00
|
|
|
ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
|
2012-08-09 13:07:01 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2012-05-25 19:34:54 +00:00
|
|
|
/*
|
|
|
|
* Turbo will still be enabled, but won't go below the set value.
|
|
|
|
*/
|
drm/i915: Removed the read of RP_STATE_CAP from sysfs/debugfs functions
The frequency values(Rp0, Rp1, Rpn) reported by RP_STATE_CAP register
are stored, initially by the Driver, inside the dev_priv->rps structure.
Since these values are expected to remain same throughout, there is no real
need to read this register, on dynamic basis, from certain debugfs/sysfs
functions and the values can be instead retrieved from the dev_priv->rps
structure when needed.
For the i915_frequency_info debugfs interface, the frequency values from the
RP_STATE_CAP register only should be used, to indicate the actual Hw state,
since it is principally used for the debugging purpose.
v2: Reverted the changes in i915_frequency_info function, to continue report
back the frequency values, as per the actual Hw state (Chris)
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-02-26 10:39:47 +00:00
|
|
|
val = intel_freq_opcode(dev_priv, val);
|
2014-02-04 17:32:31 +00:00
|
|
|
|
drm/i915: Removed the read of RP_STATE_CAP from sysfs/debugfs functions
The frequency values(Rp0, Rp1, Rpn) reported by RP_STATE_CAP register
are stored, initially by the Driver, inside the dev_priv->rps structure.
Since these values are expected to remain same throughout, there is no real
need to read this register, on dynamic basis, from certain debugfs/sysfs
functions and the values can be instead retrieved from the dev_priv->rps
structure when needed.
For the i915_frequency_info debugfs interface, the frequency values from the
RP_STATE_CAP register only should be used, to indicate the actual Hw state,
since it is principally used for the debugging purpose.
v2: Reverted the changes in i915_frequency_info function, to continue report
back the frequency values, as per the actual Hw state (Chris)
Signed-off-by: Akash Goel <akash.goel@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-02-26 10:39:47 +00:00
|
|
|
hw_max = dev_priv->rps.max_freq;
|
|
|
|
hw_min = dev_priv->rps.min_freq;
|
2014-02-04 17:32:31 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (val < hw_min ||
|
|
|
|
val > hw_max || val > dev_priv->rps.max_freq_softlimit) {
|
2014-02-04 17:32:31 +00:00
|
|
|
mutex_unlock(&dev_priv->rps.hw_lock);
|
|
|
|
return -EINVAL;
|
2013-04-17 22:54:58 +00:00
|
|
|
}
|
2014-02-04 17:32:31 +00:00
|
|
|
|
2014-03-20 01:31:11 +00:00
|
|
|
dev_priv->rps.min_freq_softlimit = val;
|
2014-02-04 17:32:31 +00:00
|
|
|
|
2016-05-10 13:10:04 +00:00
|
|
|
intel_set_rps(dev_priv, val);
|
2014-02-04 17:32:31 +00:00
|
|
|
|
2012-11-02 18:14:01 +00:00
|
|
|
mutex_unlock(&dev_priv->rps.hw_lock);
|
2012-05-25 19:34:54 +00:00
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
return 0;
|
2012-05-25 19:34:54 +00:00
|
|
|
}
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
DEFINE_SIMPLE_ATTRIBUTE(i915_min_freq_fops,
|
|
|
|
i915_min_freq_get, i915_min_freq_set,
|
2013-04-12 09:10:05 +00:00
|
|
|
"%llu\n");
|
2012-05-25 19:34:54 +00:00
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
static int
|
|
|
|
i915_cache_sharing_get(void *data, u64 *val)
|
2011-08-03 18:28:44 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
2011-08-03 18:28:44 +00:00
|
|
|
u32 snpcr;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (!(IS_GEN6(dev_priv) || IS_GEN7(dev_priv)))
|
2012-08-09 13:07:01 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
2012-08-09 13:07:02 +00:00
|
|
|
|
2011-08-03 18:28:44 +00:00
|
|
|
snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
|
2013-11-27 20:21:54 +00:00
|
|
|
|
|
|
|
intel_runtime_pm_put(dev_priv);
|
2011-08-03 18:28:44 +00:00
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
*val = (snpcr & GEN6_MBC_SNPCR_MASK) >> GEN6_MBC_SNPCR_SHIFT;
|
2011-08-03 18:28:44 +00:00
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
return 0;
|
2011-08-03 18:28:44 +00:00
|
|
|
}
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
static int
|
|
|
|
i915_cache_sharing_set(void *data, u64 val)
|
2011-08-03 18:28:44 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = data;
|
2011-08-03 18:28:44 +00:00
|
|
|
u32 snpcr;
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (!(IS_GEN6(dev_priv) || IS_GEN7(dev_priv)))
|
2012-08-09 13:07:01 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
if (val > 3)
|
2011-08-03 18:28:44 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
2013-03-10 21:10:06 +00:00
|
|
|
DRM_DEBUG_DRIVER("Manually setting uncore sharing to %llu\n", val);
|
2011-08-03 18:28:44 +00:00
|
|
|
|
|
|
|
/* Update the cache sharing policy here as well */
|
|
|
|
snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
|
|
|
|
snpcr &= ~GEN6_MBC_SNPCR_MASK;
|
|
|
|
snpcr |= (val << GEN6_MBC_SNPCR_SHIFT);
|
|
|
|
I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
|
|
|
|
|
2013-11-27 20:21:54 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
2013-03-10 21:10:06 +00:00
|
|
|
return 0;
|
2011-08-03 18:28:44 +00:00
|
|
|
}
|
|
|
|
|
2013-03-10 21:10:06 +00:00
|
|
|
DEFINE_SIMPLE_ATTRIBUTE(i915_cache_sharing_fops,
|
|
|
|
i915_cache_sharing_get, i915_cache_sharing_set,
|
|
|
|
"%llu\n");
|
2011-08-03 18:28:44 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static void cherryview_sseu_device_status(struct drm_i915_private *dev_priv,
|
2016-08-31 16:13:01 +00:00
|
|
|
struct sseu_dev_info *sseu)
|
2015-04-04 01:13:17 +00:00
|
|
|
{
|
2015-08-21 17:45:27 +00:00
|
|
|
int ss_max = 2;
|
2015-04-04 01:13:17 +00:00
|
|
|
int ss;
|
|
|
|
u32 sig1[ss_max], sig2[ss_max];
|
|
|
|
|
|
|
|
sig1[0] = I915_READ(CHV_POWER_SS0_SIG1);
|
|
|
|
sig1[1] = I915_READ(CHV_POWER_SS1_SIG1);
|
|
|
|
sig2[0] = I915_READ(CHV_POWER_SS0_SIG2);
|
|
|
|
sig2[1] = I915_READ(CHV_POWER_SS1_SIG2);
|
|
|
|
|
|
|
|
for (ss = 0; ss < ss_max; ss++) {
|
|
|
|
unsigned int eu_cnt;
|
|
|
|
|
|
|
|
if (sig1[ss] & CHV_SS_PG_ENABLE)
|
|
|
|
/* skip disabled subslice */
|
|
|
|
continue;
|
|
|
|
|
2016-08-31 16:13:04 +00:00
|
|
|
sseu->slice_mask = BIT(0);
|
2016-08-31 16:13:05 +00:00
|
|
|
sseu->subslice_mask |= BIT(ss);
|
2015-04-04 01:13:17 +00:00
|
|
|
eu_cnt = ((sig1[ss] & CHV_EU08_PG_ENABLE) ? 0 : 2) +
|
|
|
|
((sig1[ss] & CHV_EU19_PG_ENABLE) ? 0 : 2) +
|
|
|
|
((sig1[ss] & CHV_EU210_PG_ENABLE) ? 0 : 2) +
|
|
|
|
((sig2[ss] & CHV_EU311_PG_ENABLE) ? 0 : 2);
|
2016-08-31 16:13:01 +00:00
|
|
|
sseu->eu_total += eu_cnt;
|
|
|
|
sseu->eu_per_subslice = max_t(unsigned int,
|
|
|
|
sseu->eu_per_subslice, eu_cnt);
|
2015-04-04 01:13:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static void gen9_sseu_device_status(struct drm_i915_private *dev_priv,
|
2016-08-31 16:13:01 +00:00
|
|
|
struct sseu_dev_info *sseu)
|
2015-04-04 01:13:17 +00:00
|
|
|
{
|
2015-04-04 01:13:18 +00:00
|
|
|
int s_max = 3, ss_max = 4;
|
2015-04-04 01:13:17 +00:00
|
|
|
int s, ss;
|
|
|
|
u32 s_reg[s_max], eu_reg[2*s_max], eu_mask[2];
|
|
|
|
|
2015-04-04 01:13:18 +00:00
|
|
|
/* BXT has a single slice and at most 3 subslices. */
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_BROXTON(dev_priv)) {
|
2015-04-04 01:13:18 +00:00
|
|
|
s_max = 1;
|
|
|
|
ss_max = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (s = 0; s < s_max; s++) {
|
|
|
|
s_reg[s] = I915_READ(GEN9_SLICE_PGCTL_ACK(s));
|
|
|
|
eu_reg[2*s] = I915_READ(GEN9_SS01_EU_PGCTL_ACK(s));
|
|
|
|
eu_reg[2*s + 1] = I915_READ(GEN9_SS23_EU_PGCTL_ACK(s));
|
|
|
|
}
|
|
|
|
|
2015-04-04 01:13:17 +00:00
|
|
|
eu_mask[0] = GEN9_PGCTL_SSA_EU08_ACK |
|
|
|
|
GEN9_PGCTL_SSA_EU19_ACK |
|
|
|
|
GEN9_PGCTL_SSA_EU210_ACK |
|
|
|
|
GEN9_PGCTL_SSA_EU311_ACK;
|
|
|
|
eu_mask[1] = GEN9_PGCTL_SSB_EU08_ACK |
|
|
|
|
GEN9_PGCTL_SSB_EU19_ACK |
|
|
|
|
GEN9_PGCTL_SSB_EU210_ACK |
|
|
|
|
GEN9_PGCTL_SSB_EU311_ACK;
|
|
|
|
|
|
|
|
for (s = 0; s < s_max; s++) {
|
|
|
|
if ((s_reg[s] & GEN9_PGCTL_SLICE_ACK) == 0)
|
|
|
|
/* skip disabled slice */
|
|
|
|
continue;
|
|
|
|
|
2016-08-31 16:13:04 +00:00
|
|
|
sseu->slice_mask |= BIT(s);
|
2015-04-04 01:13:18 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
|
2016-08-31 16:13:05 +00:00
|
|
|
sseu->subslice_mask =
|
|
|
|
INTEL_INFO(dev_priv)->sseu.subslice_mask;
|
2015-04-04 01:13:18 +00:00
|
|
|
|
2015-04-04 01:13:17 +00:00
|
|
|
for (ss = 0; ss < ss_max; ss++) {
|
|
|
|
unsigned int eu_cnt;
|
|
|
|
|
2016-08-31 16:13:05 +00:00
|
|
|
if (IS_BROXTON(dev_priv)) {
|
|
|
|
if (!(s_reg[s] & (GEN9_PGCTL_SS_ACK(ss))))
|
|
|
|
/* skip disabled subslice */
|
|
|
|
continue;
|
2015-04-04 01:13:18 +00:00
|
|
|
|
2016-08-31 16:13:05 +00:00
|
|
|
sseu->subslice_mask |= BIT(ss);
|
|
|
|
}
|
2015-04-04 01:13:18 +00:00
|
|
|
|
2015-04-04 01:13:17 +00:00
|
|
|
eu_cnt = 2 * hweight32(eu_reg[2*s + ss/2] &
|
|
|
|
eu_mask[ss%2]);
|
2016-08-31 16:13:01 +00:00
|
|
|
sseu->eu_total += eu_cnt;
|
|
|
|
sseu->eu_per_subslice = max_t(unsigned int,
|
|
|
|
sseu->eu_per_subslice,
|
|
|
|
eu_cnt);
|
2015-04-04 01:13:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
static void broadwell_sseu_device_status(struct drm_i915_private *dev_priv,
|
2016-08-31 16:13:01 +00:00
|
|
|
struct sseu_dev_info *sseu)
|
2015-09-25 09:54:58 +00:00
|
|
|
{
|
|
|
|
u32 slice_info = I915_READ(GEN8_GT_SLICE_INFO);
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
int s;
|
2015-09-25 09:54:58 +00:00
|
|
|
|
2016-08-31 16:13:04 +00:00
|
|
|
sseu->slice_mask = slice_info & GEN8_LSLICESTAT_MASK;
|
2015-09-25 09:54:58 +00:00
|
|
|
|
2016-08-31 16:13:04 +00:00
|
|
|
if (sseu->slice_mask) {
|
2016-08-31 16:13:05 +00:00
|
|
|
sseu->subslice_mask = INTEL_INFO(dev_priv)->sseu.subslice_mask;
|
2016-08-31 16:13:02 +00:00
|
|
|
sseu->eu_per_subslice =
|
|
|
|
INTEL_INFO(dev_priv)->sseu.eu_per_subslice;
|
2016-08-31 16:13:05 +00:00
|
|
|
sseu->eu_total = sseu->eu_per_subslice *
|
|
|
|
sseu_subslice_total(sseu);
|
2015-09-25 09:54:58 +00:00
|
|
|
|
|
|
|
/* subtract fused off EU(s) from enabled slice(s) */
|
2016-08-31 16:13:07 +00:00
|
|
|
for (s = 0; s < fls(sseu->slice_mask); s++) {
|
2016-08-31 16:13:02 +00:00
|
|
|
u8 subslice_7eu =
|
|
|
|
INTEL_INFO(dev_priv)->sseu.subslice_7eu[s];
|
2015-09-25 09:54:58 +00:00
|
|
|
|
2016-08-31 16:13:01 +00:00
|
|
|
sseu->eu_total -= hweight8(subslice_7eu);
|
2015-09-25 09:54:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-31 16:13:03 +00:00
|
|
|
static void i915_print_sseu_info(struct seq_file *m, bool is_available_info,
|
|
|
|
const struct sseu_dev_info *sseu)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
|
|
|
const char *type = is_available_info ? "Available" : "Enabled";
|
|
|
|
|
2016-08-31 16:13:06 +00:00
|
|
|
seq_printf(m, " %s Slice Mask: %04x\n", type,
|
|
|
|
sseu->slice_mask);
|
2016-08-31 16:13:03 +00:00
|
|
|
seq_printf(m, " %s Slice Total: %u\n", type,
|
2016-08-31 16:13:04 +00:00
|
|
|
hweight8(sseu->slice_mask));
|
2016-08-31 16:13:03 +00:00
|
|
|
seq_printf(m, " %s Subslice Total: %u\n", type,
|
2016-08-31 16:13:05 +00:00
|
|
|
sseu_subslice_total(sseu));
|
2016-08-31 16:13:06 +00:00
|
|
|
seq_printf(m, " %s Subslice Mask: %04x\n", type,
|
|
|
|
sseu->subslice_mask);
|
2016-08-31 16:13:03 +00:00
|
|
|
seq_printf(m, " %s Subslice Per Slice: %u\n", type,
|
2016-08-31 16:13:05 +00:00
|
|
|
hweight8(sseu->subslice_mask));
|
2016-08-31 16:13:03 +00:00
|
|
|
seq_printf(m, " %s EU Total: %u\n", type,
|
|
|
|
sseu->eu_total);
|
|
|
|
seq_printf(m, " %s EU Per Subslice: %u\n", type,
|
|
|
|
sseu->eu_per_subslice);
|
|
|
|
|
|
|
|
if (!is_available_info)
|
|
|
|
return;
|
|
|
|
|
|
|
|
seq_printf(m, " Has Pooled EU: %s\n", yesno(HAS_POOLED_EU(dev_priv)));
|
|
|
|
if (HAS_POOLED_EU(dev_priv))
|
|
|
|
seq_printf(m, " Min EU in pool: %u\n", sseu->min_eu_in_pool);
|
|
|
|
|
|
|
|
seq_printf(m, " Has Slice Power Gating: %s\n",
|
|
|
|
yesno(sseu->has_slice_pg));
|
|
|
|
seq_printf(m, " Has Subslice Power Gating: %s\n",
|
|
|
|
yesno(sseu->has_subslice_pg));
|
|
|
|
seq_printf(m, " Has EU Power Gating: %s\n",
|
|
|
|
yesno(sseu->has_eu_pg));
|
|
|
|
}
|
|
|
|
|
2015-02-13 16:27:54 +00:00
|
|
|
static int i915_sseu_status(struct seq_file *m, void *unused)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = node_to_i915(m->private);
|
2016-08-31 16:13:01 +00:00
|
|
|
struct sseu_dev_info sseu;
|
2015-02-13 16:27:54 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) < 8)
|
2015-02-13 16:27:54 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
seq_puts(m, "SSEU Device Info\n");
|
2016-08-31 16:13:03 +00:00
|
|
|
i915_print_sseu_info(m, true, &INTEL_INFO(dev_priv)->sseu);
|
2015-02-13 16:27:54 +00:00
|
|
|
|
2015-02-13 16:27:55 +00:00
|
|
|
seq_puts(m, "SSEU Device Status\n");
|
2016-08-31 16:13:01 +00:00
|
|
|
memset(&sseu, 0, sizeof(sseu));
|
2016-08-01 14:33:27 +00:00
|
|
|
|
|
|
|
intel_runtime_pm_get(dev_priv);
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (IS_CHERRYVIEW(dev_priv)) {
|
2016-08-31 16:13:01 +00:00
|
|
|
cherryview_sseu_device_status(dev_priv, &sseu);
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
} else if (IS_BROADWELL(dev_priv)) {
|
2016-08-31 16:13:01 +00:00
|
|
|
broadwell_sseu_device_status(dev_priv, &sseu);
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
} else if (INTEL_GEN(dev_priv) >= 9) {
|
2016-08-31 16:13:01 +00:00
|
|
|
gen9_sseu_device_status(dev_priv, &sseu);
|
2015-02-13 16:27:55 +00:00
|
|
|
}
|
2016-08-01 14:33:27 +00:00
|
|
|
|
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
|
2016-08-31 16:13:03 +00:00
|
|
|
i915_print_sseu_info(m, false, &sseu);
|
2015-02-13 16:27:55 +00:00
|
|
|
|
2015-02-13 16:27:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-04-25 18:25:56 +00:00
|
|
|
static int i915_forcewake_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = inode->i_private;
|
2011-04-25 18:25:56 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) < 6)
|
2011-04-25 18:25:56 +00:00
|
|
|
return 0;
|
|
|
|
|
2015-01-16 09:34:35 +00:00
|
|
|
intel_runtime_pm_get(dev_priv);
|
2015-01-16 09:34:40 +00:00
|
|
|
intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
|
2011-04-25 18:25:56 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-16 21:07:40 +00:00
|
|
|
static int i915_forcewake_release(struct inode *inode, struct file *file)
|
2011-04-25 18:25:56 +00:00
|
|
|
{
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
struct drm_i915_private *dev_priv = inode->i_private;
|
2011-04-25 18:25:56 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
if (INTEL_GEN(dev_priv) < 6)
|
2011-04-25 18:25:56 +00:00
|
|
|
return 0;
|
|
|
|
|
2015-01-16 09:34:40 +00:00
|
|
|
intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
|
2015-01-16 09:34:35 +00:00
|
|
|
intel_runtime_pm_put(dev_priv);
|
2011-04-25 18:25:56 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations i915_forcewake_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = i915_forcewake_open,
|
|
|
|
.release = i915_forcewake_release,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int i915_forcewake_create(struct dentry *root, struct drm_minor *minor)
|
|
|
|
{
|
|
|
|
struct dentry *ent;
|
|
|
|
|
|
|
|
ent = debugfs_create_file("i915_forcewake_user",
|
2011-05-11 22:10:58 +00:00
|
|
|
S_IRUSR,
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
root, to_i915(minor->dev),
|
2011-04-25 18:25:56 +00:00
|
|
|
&i915_forcewake_fops);
|
2013-12-16 06:13:25 +00:00
|
|
|
if (!ent)
|
|
|
|
return -ENOMEM;
|
2011-04-25 18:25:56 +00:00
|
|
|
|
2011-05-11 22:10:58 +00:00
|
|
|
return drm_add_fake_info_node(minor, ent, &i915_forcewake_fops);
|
2011-04-25 18:25:56 +00:00
|
|
|
}
|
|
|
|
|
2011-12-14 12:57:11 +00:00
|
|
|
static int i915_debugfs_create(struct dentry *root,
|
|
|
|
struct drm_minor *minor,
|
|
|
|
const char *name,
|
|
|
|
const struct file_operations *fops)
|
2011-08-03 18:28:44 +00:00
|
|
|
{
|
|
|
|
struct dentry *ent;
|
|
|
|
|
2011-12-14 12:57:11 +00:00
|
|
|
ent = debugfs_create_file(name,
|
2011-08-03 18:28:44 +00:00
|
|
|
S_IRUGO | S_IWUSR,
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
root, to_i915(minor->dev),
|
2011-12-14 12:57:11 +00:00
|
|
|
fops);
|
2013-12-16 06:13:25 +00:00
|
|
|
if (!ent)
|
|
|
|
return -ENOMEM;
|
2011-08-03 18:28:44 +00:00
|
|
|
|
2011-12-14 12:57:11 +00:00
|
|
|
return drm_add_fake_info_node(minor, ent, fops);
|
2011-08-03 18:28:44 +00:00
|
|
|
}
|
|
|
|
|
2013-10-17 18:09:56 +00:00
|
|
|
static const struct drm_info_list i915_debugfs_list[] = {
|
2011-01-13 19:06:50 +00:00
|
|
|
{"i915_capabilities", i915_capabilities, 0},
|
2010-09-30 10:46:12 +00:00
|
|
|
{"i915_gem_objects", i915_gem_object_info, 0},
|
2011-01-10 00:00:24 +00:00
|
|
|
{"i915_gem_gtt", i915_gem_gtt_info, 0},
|
2016-08-15 09:48:44 +00:00
|
|
|
{"i915_gem_pin_display", i915_gem_gtt_info, 0, (void *)1},
|
2013-08-07 17:30:54 +00:00
|
|
|
{"i915_gem_stolen", i915_gem_stolen_list_info },
|
2010-09-01 16:47:52 +00:00
|
|
|
{"i915_gem_pageflip", i915_gem_pageflip_info, 0},
|
2009-02-18 01:08:50 +00:00
|
|
|
{"i915_gem_request", i915_gem_request_info, 0},
|
|
|
|
{"i915_gem_seqno", i915_gem_seqno_info, 0},
|
2009-02-11 14:26:38 +00:00
|
|
|
{"i915_gem_fence_regs", i915_gem_fence_regs_info, 0},
|
2009-02-18 01:08:50 +00:00
|
|
|
{"i915_gem_interrupt", i915_interrupt_info, 0},
|
2010-12-04 11:30:53 +00:00
|
|
|
{"i915_gem_hws", i915_hws_info, 0, (void *)RCS},
|
|
|
|
{"i915_gem_hws_blt", i915_hws_info, 0, (void *)BCS},
|
|
|
|
{"i915_gem_hws_bsd", i915_hws_info, 0, (void *)VCS},
|
2013-05-29 16:22:36 +00:00
|
|
|
{"i915_gem_hws_vebox", i915_hws_info, 0, (void *)VECS},
|
2014-12-11 20:13:08 +00:00
|
|
|
{"i915_gem_batch_pool", i915_gem_batch_pool_info, 0},
|
2015-08-12 14:43:44 +00:00
|
|
|
{"i915_guc_info", i915_guc_info, 0},
|
2015-08-12 14:43:37 +00:00
|
|
|
{"i915_guc_load_status", i915_guc_load_status_info, 0},
|
2015-08-12 14:43:40 +00:00
|
|
|
{"i915_guc_log_dump", i915_guc_log_dump, 0},
|
2014-03-31 06:00:02 +00:00
|
|
|
{"i915_frequency_info", i915_frequency_info, 0},
|
2015-01-26 16:03:04 +00:00
|
|
|
{"i915_hangcheck_info", i915_hangcheck_info, 0},
|
2010-01-29 19:27:07 +00:00
|
|
|
{"i915_drpc_info", i915_drpc_info, 0},
|
2010-05-20 21:28:11 +00:00
|
|
|
{"i915_emon_status", i915_emon_status, 0},
|
2011-06-28 20:04:16 +00:00
|
|
|
{"i915_ring_freq_table", i915_ring_freq_table, 0},
|
2015-06-18 08:30:22 +00:00
|
|
|
{"i915_frontbuffer_tracking", i915_frontbuffer_tracking, 0},
|
2010-02-05 20:42:41 +00:00
|
|
|
{"i915_fbc_status", i915_fbc_status, 0},
|
2013-05-31 19:33:24 +00:00
|
|
|
{"i915_ips_status", i915_ips_status, 0},
|
2010-02-05 20:47:35 +00:00
|
|
|
{"i915_sr_status", i915_sr_status, 0},
|
2010-08-19 15:09:23 +00:00
|
|
|
{"i915_opregion", i915_opregion, 0},
|
2015-12-15 11:17:12 +00:00
|
|
|
{"i915_vbt", i915_vbt, 0},
|
2010-08-25 21:45:57 +00:00
|
|
|
{"i915_gem_framebuffer", i915_gem_framebuffer_info, 0},
|
2011-03-20 01:14:29 +00:00
|
|
|
{"i915_context_status", i915_context_status, 0},
|
2014-08-07 12:24:26 +00:00
|
|
|
{"i915_dump_lrc", i915_dump_lrc, 0},
|
2015-01-16 09:34:42 +00:00
|
|
|
{"i915_forcewake_domains", i915_forcewake_domains, 0},
|
2011-12-14 12:57:16 +00:00
|
|
|
{"i915_swizzle_info", i915_swizzle_info, 0},
|
2012-02-09 16:15:49 +00:00
|
|
|
{"i915_ppgtt_info", i915_ppgtt_info, 0},
|
2013-07-04 18:02:07 +00:00
|
|
|
{"i915_llc", i915_llc, 0},
|
2013-07-11 21:44:59 +00:00
|
|
|
{"i915_edp_psr_status", i915_edp_psr_status, 0},
|
2014-01-24 15:36:17 +00:00
|
|
|
{"i915_sink_crc_eDP1", i915_sink_crc, 0},
|
2013-08-20 09:29:23 +00:00
|
|
|
{"i915_energy_uJ", i915_energy_uJ, 0},
|
2015-06-04 17:23:57 +00:00
|
|
|
{"i915_runtime_pm_status", i915_runtime_pm_status, 0},
|
2013-11-25 15:15:35 +00:00
|
|
|
{"i915_power_domain_info", i915_power_domain_info, 0},
|
2015-10-27 12:47:01 +00:00
|
|
|
{"i915_dmc_info", i915_dmc_info, 0},
|
2014-02-07 20:48:15 +00:00
|
|
|
{"i915_display_info", i915_display_info, 0},
|
2016-10-04 20:11:31 +00:00
|
|
|
{"i915_engine_info", i915_engine_info, 0},
|
2014-06-30 16:53:42 +00:00
|
|
|
{"i915_semaphore_status", i915_semaphore_status, 0},
|
2014-06-25 19:01:53 +00:00
|
|
|
{"i915_shared_dplls_info", i915_shared_dplls_info, 0},
|
2014-05-12 05:22:27 +00:00
|
|
|
{"i915_dp_mst_info", i915_dp_mst_info, 0},
|
2014-08-30 15:50:59 +00:00
|
|
|
{"i915_wa_registers", i915_wa_registers, 0},
|
2014-11-04 17:06:51 +00:00
|
|
|
{"i915_ddb_info", i915_ddb_info, 0},
|
2015-02-13 16:27:54 +00:00
|
|
|
{"i915_sseu_status", i915_sseu_status, 0},
|
drm/i915: Add debugfs entry for DRRS
Adding a debugfs entry to determine if DRRS is supported or not
V2: [By Ram]: Following details about the active crtc will be filled
in seq-file of the debugfs
1. Encoder output type
2. DRRS Support on this CRTC
3. DRRS current state
4. Current Vrefresh
Format is as follows:
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_HIGH_RR, Vrefresh: 60
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
CRTC 1: Output: eDP, DRRS Supported: Yes (Seamless), DRRS_State: DRRS_LOW_RR, Vrefresh: 40
CRTC 2: Output: HDMI, DRRS Supported : No, VBT DRRS_type: Seamless
V3: [By Ram]: Readability is improved.
Another error case is covered [Daniel]
V4: [By Ram]: Current status of the Idleness DRRS along with
the Front buffer bits are added to the debugfs. [Rodrigo]
V5: [By Ram]: Rephrased to make it easy to understand.
And format is modified. [Rodrigo]
V6: [By Ram]: Modeset mutex are acquired for each crtc along with
renaming the Idleness detection states [Daniel]
Signed-off-by: Vandana Kannan <vandana.kannan@intel.com>
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
[danvet: dump full busy_frontbuffer_bits and remove the dubios
computed logical state of DRRS - debugfs is about what is fact,
developers should reach their own conclusion when debugging issues.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2015-03-03 15:23:10 +00:00
|
|
|
{"i915_drrs_status", i915_drrs_status, 0},
|
2015-04-07 15:20:32 +00:00
|
|
|
{"i915_rps_boost_info", i915_rps_boost_info, 0},
|
2009-02-18 01:08:50 +00:00
|
|
|
};
|
2009-07-02 02:26:52 +00:00
|
|
|
#define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list)
|
2009-02-18 01:08:50 +00:00
|
|
|
|
2013-10-17 18:09:56 +00:00
|
|
|
static const struct i915_debugfs_files {
|
2013-07-04 18:49:44 +00:00
|
|
|
const char *name;
|
|
|
|
const struct file_operations *fops;
|
|
|
|
} i915_debugfs_files[] = {
|
|
|
|
{"i915_wedged", &i915_wedged_fops},
|
|
|
|
{"i915_max_freq", &i915_max_freq_fops},
|
|
|
|
{"i915_min_freq", &i915_min_freq_fops},
|
|
|
|
{"i915_cache_sharing", &i915_cache_sharing_fops},
|
2013-09-25 16:34:55 +00:00
|
|
|
{"i915_ring_missed_irq", &i915_ring_missed_irq_fops},
|
|
|
|
{"i915_ring_test_irq", &i915_ring_test_irq_fops},
|
2013-07-04 18:49:44 +00:00
|
|
|
{"i915_gem_drop_caches", &i915_drop_caches_fops},
|
2016-10-12 09:05:18 +00:00
|
|
|
#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
|
2013-07-04 18:49:44 +00:00
|
|
|
{"i915_error_state", &i915_error_state_fops},
|
2016-10-12 09:05:18 +00:00
|
|
|
#endif
|
2013-07-04 18:49:44 +00:00
|
|
|
{"i915_next_seqno", &i915_next_seqno_fops},
|
2013-10-15 17:55:36 +00:00
|
|
|
{"i915_display_crc_ctl", &i915_display_crc_ctl_fops},
|
2014-01-22 12:36:08 +00:00
|
|
|
{"i915_pri_wm_latency", &i915_pri_wm_latency_fops},
|
|
|
|
{"i915_spr_wm_latency", &i915_spr_wm_latency_fops},
|
|
|
|
{"i915_cur_wm_latency", &i915_cur_wm_latency_fops},
|
2014-08-01 09:04:45 +00:00
|
|
|
{"i915_fbc_false_color", &i915_fbc_fc_fops},
|
2015-04-18 07:04:19 +00:00
|
|
|
{"i915_dp_test_data", &i915_displayport_test_data_fops},
|
|
|
|
{"i915_dp_test_type", &i915_displayport_test_type_fops},
|
2016-10-12 16:24:41 +00:00
|
|
|
{"i915_dp_test_active", &i915_displayport_test_active_fops},
|
|
|
|
{"i915_guc_log_control", &i915_guc_log_control_fops}
|
2013-07-04 18:49:44 +00:00
|
|
|
};
|
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
void intel_display_crc_init(struct drm_i915_private *dev_priv)
|
2013-10-15 17:55:40 +00:00
|
|
|
{
|
2013-11-14 10:30:42 +00:00
|
|
|
enum pipe pipe;
|
2013-10-15 17:55:40 +00:00
|
|
|
|
2014-08-18 12:49:10 +00:00
|
|
|
for_each_pipe(dev_priv, pipe) {
|
2013-11-14 10:30:42 +00:00
|
|
|
struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
|
2013-10-15 17:55:40 +00:00
|
|
|
|
2013-10-21 13:29:30 +00:00
|
|
|
pipe_crc->opened = false;
|
|
|
|
spin_lock_init(&pipe_crc->lock);
|
2013-10-15 17:55:40 +00:00
|
|
|
init_waitqueue_head(&pipe_crc->wq);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-24 13:00:17 +00:00
|
|
|
int i915_debugfs_register(struct drm_i915_private *dev_priv)
|
2009-02-18 01:08:50 +00:00
|
|
|
{
|
2016-07-05 09:40:23 +00:00
|
|
|
struct drm_minor *minor = dev_priv->drm.primary;
|
2013-07-04 18:49:44 +00:00
|
|
|
int ret, i;
|
2009-10-13 21:20:20 +00:00
|
|
|
|
2011-04-25 18:25:56 +00:00
|
|
|
ret = i915_forcewake_create(minor->debugfs_root, minor);
|
2011-07-27 18:53:01 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2011-12-14 12:57:11 +00:00
|
|
|
|
2013-10-15 17:55:40 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(i915_pipe_crc_data); i++) {
|
|
|
|
ret = i915_pipe_crc_create(minor->debugfs_root, minor, i);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-07-04 18:49:44 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) {
|
|
|
|
ret = i915_debugfs_create(minor->debugfs_root, minor,
|
|
|
|
i915_debugfs_files[i].name,
|
|
|
|
i915_debugfs_files[i].fops);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
2012-12-04 13:12:00 +00:00
|
|
|
|
2009-07-02 02:26:52 +00:00
|
|
|
return drm_debugfs_create_files(i915_debugfs_list,
|
|
|
|
I915_DEBUGFS_ENTRIES,
|
2009-02-18 01:08:50 +00:00
|
|
|
minor->debugfs_root, minor);
|
|
|
|
}
|
|
|
|
|
2016-06-24 13:00:17 +00:00
|
|
|
void i915_debugfs_unregister(struct drm_i915_private *dev_priv)
|
2009-02-18 01:08:50 +00:00
|
|
|
{
|
2016-07-05 09:40:23 +00:00
|
|
|
struct drm_minor *minor = dev_priv->drm.primary;
|
2013-07-04 18:49:44 +00:00
|
|
|
int i;
|
|
|
|
|
2009-07-02 02:26:52 +00:00
|
|
|
drm_debugfs_remove_files(i915_debugfs_list,
|
|
|
|
I915_DEBUGFS_ENTRIES, minor);
|
2013-10-15 17:55:40 +00:00
|
|
|
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
drm_debugfs_remove_files((struct drm_info_list *)&i915_forcewake_fops,
|
2011-04-25 18:25:56 +00:00
|
|
|
1, minor);
|
2013-10-15 17:55:40 +00:00
|
|
|
|
2013-10-16 20:55:51 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(i915_pipe_crc_data); i++) {
|
2013-10-15 17:55:40 +00:00
|
|
|
struct drm_info_list *info_list =
|
|
|
|
(struct drm_info_list *)&i915_pipe_crc_data[i];
|
|
|
|
|
|
|
|
drm_debugfs_remove_files(info_list, 1, minor);
|
|
|
|
}
|
|
|
|
|
2013-07-04 18:49:44 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) {
|
|
|
|
struct drm_info_list *info_list =
|
drm/i915: debugfs spring cleaning
Just like with sysfs, we do some major overhaul.
Pass dev_priv instead of dev to all feature macros (IS_, HAS_,
INTEL_, etc.). This has the side effect that a bunch of functions
now get dev_priv passed instead of dev.
All calls to INTEL_INFO()->gen have been replaced with
INTEL_GEN().
We want access to to_i915(node->minor->dev) in a lot of places,
so add the node_to_i915() helper to accommodate for this.
Finally, we have quite a few cases where we get a void * pointer,
and need to cast it to drm_device *, only to run to_i915() on it.
Add cast_to_i915() to do this.
v2: Don't introduce extra dev (Chris)
v3: Make pipe_crc_info have a pointer to drm_i915_private instead of
drm_device. This saves a bit of space, since we never use
drm_device anywhere in these functions.
Also some minor fixup that I missed in the previous version.
v4: Changed the code a bit so that dev_priv is passed directly
to various functions, thus removing the need for the
cast_to_i915() helper. Also did some additional cleanup.
v5: Additional cleanup of newly introduced changes.
v6: Rebase again because of conflict.
Signed-off-by: David Weinehall <david.weinehall@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160822105931.pcbe2lpsgzckzboa@boom
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-08-22 10:59:31 +00:00
|
|
|
(struct drm_info_list *)i915_debugfs_files[i].fops;
|
2013-07-04 18:49:44 +00:00
|
|
|
|
|
|
|
drm_debugfs_remove_files(info_list, 1, minor);
|
|
|
|
}
|
2009-02-18 01:08:50 +00:00
|
|
|
}
|
2015-04-01 08:15:21 +00:00
|
|
|
|
|
|
|
struct dpcd_block {
|
|
|
|
/* DPCD dump start address. */
|
|
|
|
unsigned int offset;
|
|
|
|
/* DPCD dump end address, inclusive. If unset, .size will be used. */
|
|
|
|
unsigned int end;
|
|
|
|
/* DPCD dump size. Used if .end is unset. If unset, defaults to 1. */
|
|
|
|
size_t size;
|
|
|
|
/* Only valid for eDP. */
|
|
|
|
bool edp;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct dpcd_block i915_dpcd_debug[] = {
|
|
|
|
{ .offset = DP_DPCD_REV, .size = DP_RECEIVER_CAP_SIZE },
|
|
|
|
{ .offset = DP_PSR_SUPPORT, .end = DP_PSR_CAPS },
|
|
|
|
{ .offset = DP_DOWNSTREAM_PORT_0, .size = 16 },
|
|
|
|
{ .offset = DP_LINK_BW_SET, .end = DP_EDP_CONFIGURATION_SET },
|
|
|
|
{ .offset = DP_SINK_COUNT, .end = DP_ADJUST_REQUEST_LANE2_3 },
|
|
|
|
{ .offset = DP_SET_POWER },
|
|
|
|
{ .offset = DP_EDP_DPCD_REV },
|
|
|
|
{ .offset = DP_EDP_GENERAL_CAP_1, .end = DP_EDP_GENERAL_CAP_3 },
|
|
|
|
{ .offset = DP_EDP_DISPLAY_CONTROL_REGISTER, .end = DP_EDP_BACKLIGHT_FREQ_CAP_MAX_LSB },
|
|
|
|
{ .offset = DP_EDP_DBC_MINIMUM_BRIGHTNESS_SET, .end = DP_EDP_DBC_MAXIMUM_BRIGHTNESS_SET },
|
|
|
|
};
|
|
|
|
|
|
|
|
static int i915_dpcd_show(struct seq_file *m, void *data)
|
|
|
|
{
|
|
|
|
struct drm_connector *connector = m->private;
|
|
|
|
struct intel_dp *intel_dp =
|
|
|
|
enc_to_intel_dp(&intel_attached_encoder(connector)->base);
|
|
|
|
uint8_t buf[16];
|
|
|
|
ssize_t err;
|
|
|
|
int i;
|
|
|
|
|
2015-05-15 10:09:21 +00:00
|
|
|
if (connector->status != connector_status_connected)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2015-04-01 08:15:21 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(i915_dpcd_debug); i++) {
|
|
|
|
const struct dpcd_block *b = &i915_dpcd_debug[i];
|
|
|
|
size_t size = b->end ? b->end - b->offset + 1 : (b->size ?: 1);
|
|
|
|
|
|
|
|
if (b->edp &&
|
|
|
|
connector->connector_type != DRM_MODE_CONNECTOR_eDP)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* low tech for now */
|
|
|
|
if (WARN_ON(size > sizeof(buf)))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
err = drm_dp_dpcd_read(&intel_dp->aux, b->offset, buf, size);
|
|
|
|
if (err <= 0) {
|
|
|
|
DRM_ERROR("dpcd read (%zu bytes at %u) failed (%zd)\n",
|
|
|
|
size, b->offset, err);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
seq_printf(m, "%04x: %*ph\n", b->offset, (int) size, buf);
|
2015-04-16 10:34:06 +00:00
|
|
|
}
|
2015-04-01 08:15:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_dpcd_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
|
|
|
return single_open(file, i915_dpcd_show, inode->i_private);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations i915_dpcd_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = i915_dpcd_open,
|
|
|
|
.read = seq_read,
|
|
|
|
.llseek = seq_lseek,
|
|
|
|
.release = single_release,
|
|
|
|
};
|
|
|
|
|
2016-08-23 09:23:56 +00:00
|
|
|
static int i915_panel_show(struct seq_file *m, void *data)
|
|
|
|
{
|
|
|
|
struct drm_connector *connector = m->private;
|
|
|
|
struct intel_dp *intel_dp =
|
|
|
|
enc_to_intel_dp(&intel_attached_encoder(connector)->base);
|
|
|
|
|
|
|
|
if (connector->status != connector_status_connected)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
seq_printf(m, "Panel power up delay: %d\n",
|
|
|
|
intel_dp->panel_power_up_delay);
|
|
|
|
seq_printf(m, "Panel power down delay: %d\n",
|
|
|
|
intel_dp->panel_power_down_delay);
|
|
|
|
seq_printf(m, "Backlight on delay: %d\n",
|
|
|
|
intel_dp->backlight_on_delay);
|
|
|
|
seq_printf(m, "Backlight off delay: %d\n",
|
|
|
|
intel_dp->backlight_off_delay);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_panel_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
|
|
|
return single_open(file, i915_panel_show, inode->i_private);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations i915_panel_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = i915_panel_open,
|
|
|
|
.read = seq_read,
|
|
|
|
.llseek = seq_lseek,
|
|
|
|
.release = single_release,
|
|
|
|
};
|
|
|
|
|
2015-04-01 08:15:21 +00:00
|
|
|
/**
|
|
|
|
* i915_debugfs_connector_add - add i915 specific connector debugfs files
|
|
|
|
* @connector: pointer to a registered drm_connector
|
|
|
|
*
|
|
|
|
* Cleanup will be done by drm_connector_unregister() through a call to
|
|
|
|
* drm_debugfs_connector_remove().
|
|
|
|
*
|
|
|
|
* Returns 0 on success, negative error codes on error.
|
|
|
|
*/
|
|
|
|
int i915_debugfs_connector_add(struct drm_connector *connector)
|
|
|
|
{
|
|
|
|
struct dentry *root = connector->debugfs_entry;
|
|
|
|
|
|
|
|
/* The connector must have been registered beforehands. */
|
|
|
|
if (!root)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
if (connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort ||
|
|
|
|
connector->connector_type == DRM_MODE_CONNECTOR_eDP)
|
2016-08-23 09:23:56 +00:00
|
|
|
debugfs_create_file("i915_dpcd", S_IRUGO, root,
|
|
|
|
connector, &i915_dpcd_fops);
|
|
|
|
|
|
|
|
if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
|
|
|
|
debugfs_create_file("i915_panel_timings", S_IRUGO, root,
|
|
|
|
connector, &i915_panel_fops);
|
2015-04-01 08:15:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|