Commit a79d4884 authored by Andi Shyti's avatar Andi Shyti
Browse files

i915/drm/gt: Move the gt defines in the gt directory



Create a new intel_gt_defines.h inside the gt/ directory as a
placeholder for all the generic GT based defines.

As of now place only I915_MAX_GT.

Co-developed-by: default avatarChris Wilson <chris.p.wilson@linux.intel.com>
Signed-off-by: default avatarChris Wilson <chris.p.wilson@linux.intel.com>
Signed-off-by: default avatarAndi Shyti <andi.shyti@linux.intel.com>
Reviewed-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20230801141955.383305-3-andi.shyti@linux.intel.com
parent 568a2e6f
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
/* SPDX-License-Identifier: MIT */
/*
 * Copyright © 2019 Intel Corporation
 */

#ifndef __INTEL_GT_DEFINES__
#define __INTEL_GT_DEFINES__

#define I915_MAX_GT 2

#endif
+1 −1
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@
#include "gem/i915_gem_stolen.h"

#include "gt/intel_engine.h"
#include "gt/intel_gt_defines.h"
#include "gt/intel_gt_types.h"
#include "gt/intel_region_lmem.h"
#include "gt/intel_workarounds.h"
@@ -313,7 +314,6 @@ struct drm_i915_private {
	/*
	 * i915->gt[0] == &i915->gt0
	 */
#define I915_MAX_GT 2
	struct intel_gt *gt[I915_MAX_GT];

	struct kobject *sysfs_gt;