drm/amdgpu: Relocate some definitions v2
Move some KFD-related (but used in amdgpu_drv.c) definitions from kfd_priv.h to kgd_kfd_interface.h so we don't need to include kfd_priv.h in amdgpu_drv.c. This fixes a build failure when AMDGPU is enabled but MMU_NOTIFIER is not. This patch also disables KFD-related module options when HSA_AMD is not enabled. v2: rebase (Alex) Signed-off-by: Amber Lin <Amber.Lin@amd.com> Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
此提交包含在:
@@ -98,6 +98,33 @@ enum kgd_engine_type {
|
||||
KGD_ENGINE_MAX
|
||||
};
|
||||
|
||||
/**
|
||||
* enum kfd_sched_policy
|
||||
*
|
||||
* @KFD_SCHED_POLICY_HWS: H/W scheduling policy known as command processor (cp)
|
||||
* scheduling. In this scheduling mode we're using the firmware code to
|
||||
* schedule the user mode queues and kernel queues such as HIQ and DIQ.
|
||||
* the HIQ queue is used as a special queue that dispatches the configuration
|
||||
* to the cp and the user mode queues list that are currently running.
|
||||
* the DIQ queue is a debugging queue that dispatches debugging commands to the
|
||||
* firmware.
|
||||
* in this scheduling mode user mode queues over subscription feature is
|
||||
* enabled.
|
||||
*
|
||||
* @KFD_SCHED_POLICY_HWS_NO_OVERSUBSCRIPTION: The same as above but the over
|
||||
* subscription feature disabled.
|
||||
*
|
||||
* @KFD_SCHED_POLICY_NO_HWS: no H/W scheduling policy is a mode which directly
|
||||
* set the command processor registers and sets the queues "manually". This
|
||||
* mode is used *ONLY* for debugging proposes.
|
||||
*
|
||||
*/
|
||||
enum kfd_sched_policy {
|
||||
KFD_SCHED_POLICY_HWS = 0,
|
||||
KFD_SCHED_POLICY_HWS_NO_OVERSUBSCRIPTION,
|
||||
KFD_SCHED_POLICY_NO_HWS
|
||||
};
|
||||
|
||||
struct kgd2kfd_shared_resources {
|
||||
/* Bit n == 1 means VMID n is available for KFD. */
|
||||
unsigned int compute_vmid_bitmap;
|
||||
@@ -153,6 +180,7 @@ struct tile_config {
|
||||
uint32_t num_ranks;
|
||||
};
|
||||
|
||||
#define KFD_MAX_NUM_OF_QUEUES_PER_DEVICE_DEFAULT 4096
|
||||
|
||||
/*
|
||||
* Allocation flag domains
|
||||
|
新增問題並參考
封鎖使用者