We shouldn't be using debugfs_ namespace for this functionality. Rename debugfs_engines.[ch] to intel_gt_engines_debugfs.[ch] and then make functions, defines and structs follow suit. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Acked-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Matt Roper <matthew.d.roper@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210918025754.1254705-2-lucas.demarchi@intel.com
37 lines
848 B
C
37 lines
848 B
C
// SPDX-License-Identifier: MIT
|
|
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#include <drm/drm_print.h>
|
|
|
|
#include "i915_drv.h" /* for_each_engine! */
|
|
#include "intel_engine.h"
|
|
#include "intel_gt_debugfs.h"
|
|
#include "intel_gt_engines_debugfs.h"
|
|
|
|
static int engines_show(struct seq_file *m, void *data)
|
|
{
|
|
struct intel_gt *gt = m->private;
|
|
struct intel_engine_cs *engine;
|
|
enum intel_engine_id id;
|
|
struct drm_printer p;
|
|
|
|
p = drm_seq_file_printer(m);
|
|
for_each_engine(engine, gt, id)
|
|
intel_engine_dump(engine, &p, "%s\n", engine->name);
|
|
|
|
return 0;
|
|
}
|
|
DEFINE_INTEL_GT_DEBUGFS_ATTRIBUTE(engines);
|
|
|
|
void intel_gt_engines_debugfs_register(struct intel_gt *gt, struct dentry *root)
|
|
{
|
|
static const struct intel_gt_debugfs_file files[] = {
|
|
{ "engines", &engines_fops },
|
|
};
|
|
|
|
intel_gt_debugfs_register_files(root, files, ARRAY_SIZE(files), gt);
|
|
}
|