drm/i915: rename debugfs_gt_pm files
We shouldn't be using debugfs_ namespace for this functionality. Rename debugfs_gt_pm.[ch] to intel_gt_pm_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-3-lucas.demarchi@intel.com
This commit is contained in:
@@ -78,7 +78,6 @@ i915-$(CONFIG_PERF_EVENTS) += i915_pmu.o
|
|||||||
|
|
||||||
# "Graphics Technology" (aka we talk to the gpu)
|
# "Graphics Technology" (aka we talk to the gpu)
|
||||||
gt-y += \
|
gt-y += \
|
||||||
gt/debugfs_gt_pm.o \
|
|
||||||
gt/gen2_engine_cs.o \
|
gt/gen2_engine_cs.o \
|
||||||
gt/gen6_engine_cs.o \
|
gt/gen6_engine_cs.o \
|
||||||
gt/gen6_ppgtt.o \
|
gt/gen6_ppgtt.o \
|
||||||
@@ -102,6 +101,7 @@ gt-y += \
|
|||||||
gt/intel_gt_engines_debugfs.o \
|
gt/intel_gt_engines_debugfs.o \
|
||||||
gt/intel_gt_irq.o \
|
gt/intel_gt_irq.o \
|
||||||
gt/intel_gt_pm.o \
|
gt/intel_gt_pm.o \
|
||||||
|
gt/intel_gt_pm_debugfs.o \
|
||||||
gt/intel_gt_pm_irq.o \
|
gt/intel_gt_pm_irq.o \
|
||||||
gt/intel_gt_requests.o \
|
gt/intel_gt_requests.o \
|
||||||
gt/intel_gtt.o \
|
gt/intel_gtt.o \
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
/* SPDX-License-Identifier: MIT */
|
|
||||||
/*
|
|
||||||
* Copyright © 2019 Intel Corporation
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef DEBUGFS_GT_PM_H
|
|
||||||
#define DEBUGFS_GT_PM_H
|
|
||||||
|
|
||||||
struct intel_gt;
|
|
||||||
struct dentry;
|
|
||||||
|
|
||||||
void debugfs_gt_pm_register(struct intel_gt *gt, struct dentry *root);
|
|
||||||
|
|
||||||
#endif /* DEBUGFS_GT_PM_H */
|
|
||||||
@@ -5,10 +5,10 @@
|
|||||||
|
|
||||||
#include <linux/debugfs.h>
|
#include <linux/debugfs.h>
|
||||||
|
|
||||||
#include "debugfs_gt_pm.h"
|
|
||||||
#include "i915_drv.h"
|
#include "i915_drv.h"
|
||||||
#include "intel_gt_debugfs.h"
|
#include "intel_gt_debugfs.h"
|
||||||
#include "intel_gt_engines_debugfs.h"
|
#include "intel_gt_engines_debugfs.h"
|
||||||
|
#include "intel_gt_pm_debugfs.h"
|
||||||
#include "intel_sseu_debugfs.h"
|
#include "intel_sseu_debugfs.h"
|
||||||
#include "uc/intel_uc_debugfs.h"
|
#include "uc/intel_uc_debugfs.h"
|
||||||
|
|
||||||
@@ -24,7 +24,7 @@ void intel_gt_debugfs_register(struct intel_gt *gt)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
intel_gt_engines_debugfs_register(gt, root);
|
intel_gt_engines_debugfs_register(gt, root);
|
||||||
debugfs_gt_pm_register(gt, root);
|
intel_gt_pm_debugfs_register(gt, root);
|
||||||
intel_sseu_debugfs_register(gt, root);
|
intel_sseu_debugfs_register(gt, root);
|
||||||
|
|
||||||
intel_uc_debugfs_register(>->uc, root);
|
intel_uc_debugfs_register(>->uc, root);
|
||||||
|
|||||||
@@ -6,12 +6,12 @@
|
|||||||
|
|
||||||
#include <linux/seq_file.h>
|
#include <linux/seq_file.h>
|
||||||
|
|
||||||
#include "debugfs_gt_pm.h"
|
|
||||||
#include "i915_drv.h"
|
#include "i915_drv.h"
|
||||||
#include "intel_gt.h"
|
#include "intel_gt.h"
|
||||||
#include "intel_gt_clock_utils.h"
|
#include "intel_gt_clock_utils.h"
|
||||||
#include "intel_gt_debugfs.h"
|
#include "intel_gt_debugfs.h"
|
||||||
#include "intel_gt_pm.h"
|
#include "intel_gt_pm.h"
|
||||||
|
#include "intel_gt_pm_debugfs.h"
|
||||||
#include "intel_llc.h"
|
#include "intel_llc.h"
|
||||||
#include "intel_rc6.h"
|
#include "intel_rc6.h"
|
||||||
#include "intel_rps.h"
|
#include "intel_rps.h"
|
||||||
@@ -614,7 +614,7 @@ static bool rps_eval(void *data)
|
|||||||
|
|
||||||
DEFINE_INTEL_GT_DEBUGFS_ATTRIBUTE(rps_boost);
|
DEFINE_INTEL_GT_DEBUGFS_ATTRIBUTE(rps_boost);
|
||||||
|
|
||||||
void debugfs_gt_pm_register(struct intel_gt *gt, struct dentry *root)
|
void intel_gt_pm_debugfs_register(struct intel_gt *gt, struct dentry *root)
|
||||||
{
|
{
|
||||||
static const struct intel_gt_debugfs_file files[] = {
|
static const struct intel_gt_debugfs_file files[] = {
|
||||||
{ "drpc", &drpc_fops, NULL },
|
{ "drpc", &drpc_fops, NULL },
|
||||||
14
drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.h
Normal file
14
drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.h
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
/* SPDX-License-Identifier: MIT */
|
||||||
|
/*
|
||||||
|
* Copyright © 2019 Intel Corporation
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef INTEL_GT_PM_DEBUGFS_H
|
||||||
|
#define INTEL_GT_PM_DEBUGFS_H
|
||||||
|
|
||||||
|
struct intel_gt;
|
||||||
|
struct dentry;
|
||||||
|
|
||||||
|
void intel_gt_pm_debugfs_register(struct intel_gt *gt, struct dentry *root);
|
||||||
|
|
||||||
|
#endif /* INTEL_GT_PM_DEBUGFS_H */
|
||||||
Reference in New Issue
Block a user