drm/amdkfd: Add new VI-specific queue properties
This patch adds new fields to the queue_properties structure. The new fields are relevant only for queues running on AMD GPU VI architecture. The eop_ring_buffer_address and eop_ring_buffer_size describe an end-of-pipe queue which is assigned to the MQD. In CI, the EOP queue was per pipeline and in VI it is per queue. The ctx_save_restore_area_address and ctx_save_restore_area_size describe a memory area that is designated to allow the CP to do context save/restore in mid-wave state. This patch also modifies the set_queue_properties_from_user() (called from kfd_ioctl_create_queue()) to check and copy those new parameters. Signed-off-by: Ben Goz <ben.goz@amd.com> Signed-off-by: Oded Gabbay <oded.gabbay@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Родитель
836aabc0d4
Коммит
ff3d04a171
|
@ -145,6 +145,8 @@ static long kfd_ioctl_get_version(struct file *filep, struct kfd_process *p,
|
||||||
static int set_queue_properties_from_user(struct queue_properties *q_properties,
|
static int set_queue_properties_from_user(struct queue_properties *q_properties,
|
||||||
struct kfd_ioctl_create_queue_args *args)
|
struct kfd_ioctl_create_queue_args *args)
|
||||||
{
|
{
|
||||||
|
void *tmp;
|
||||||
|
|
||||||
if (args->queue_percentage > KFD_MAX_QUEUE_PERCENTAGE) {
|
if (args->queue_percentage > KFD_MAX_QUEUE_PERCENTAGE) {
|
||||||
pr_err("kfd: queue percentage must be between 0 to KFD_MAX_QUEUE_PERCENTAGE\n");
|
pr_err("kfd: queue percentage must be between 0 to KFD_MAX_QUEUE_PERCENTAGE\n");
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
@ -182,6 +184,20 @@ static int set_queue_properties_from_user(struct queue_properties *q_properties,
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tmp = (void *)(uintptr_t)args->eop_buffer_address;
|
||||||
|
if (tmp != NULL &&
|
||||||
|
!access_ok(VERIFY_WRITE, tmp, sizeof(uint32_t))) {
|
||||||
|
pr_debug("kfd: can't access eop buffer");
|
||||||
|
return -EFAULT;
|
||||||
|
}
|
||||||
|
|
||||||
|
tmp = (void *)(uintptr_t)args->ctx_save_restore_address;
|
||||||
|
if (tmp != NULL &&
|
||||||
|
!access_ok(VERIFY_WRITE, tmp, sizeof(uint32_t))) {
|
||||||
|
pr_debug("kfd: can't access ctx save restore buffer");
|
||||||
|
return -EFAULT;
|
||||||
|
}
|
||||||
|
|
||||||
q_properties->is_interop = false;
|
q_properties->is_interop = false;
|
||||||
q_properties->queue_percent = args->queue_percentage;
|
q_properties->queue_percent = args->queue_percentage;
|
||||||
q_properties->priority = args->queue_priority;
|
q_properties->priority = args->queue_priority;
|
||||||
|
@ -189,6 +205,11 @@ static int set_queue_properties_from_user(struct queue_properties *q_properties,
|
||||||
q_properties->queue_size = args->ring_size;
|
q_properties->queue_size = args->ring_size;
|
||||||
q_properties->read_ptr = (uint32_t *) args->read_pointer_address;
|
q_properties->read_ptr = (uint32_t *) args->read_pointer_address;
|
||||||
q_properties->write_ptr = (uint32_t *) args->write_pointer_address;
|
q_properties->write_ptr = (uint32_t *) args->write_pointer_address;
|
||||||
|
q_properties->eop_ring_buffer_address = args->eop_buffer_address;
|
||||||
|
q_properties->eop_ring_buffer_size = args->eop_buffer_size;
|
||||||
|
q_properties->ctx_save_restore_area_address =
|
||||||
|
args->ctx_save_restore_address;
|
||||||
|
q_properties->ctx_save_restore_area_size = args->ctx_save_restore_size;
|
||||||
if (args->queue_type == KFD_IOC_QUEUE_TYPE_COMPUTE ||
|
if (args->queue_type == KFD_IOC_QUEUE_TYPE_COMPUTE ||
|
||||||
args->queue_type == KFD_IOC_QUEUE_TYPE_COMPUTE_AQL)
|
args->queue_type == KFD_IOC_QUEUE_TYPE_COMPUTE_AQL)
|
||||||
q_properties->type = KFD_QUEUE_TYPE_COMPUTE;
|
q_properties->type = KFD_QUEUE_TYPE_COMPUTE;
|
||||||
|
@ -220,6 +241,11 @@ static int set_queue_properties_from_user(struct queue_properties *q_properties,
|
||||||
|
|
||||||
pr_debug("Queue Format (%d)\n", q_properties->format);
|
pr_debug("Queue Format (%d)\n", q_properties->format);
|
||||||
|
|
||||||
|
pr_debug("Queue EOP (0x%llX)\n", q_properties->eop_ring_buffer_address);
|
||||||
|
|
||||||
|
pr_debug("Queue CTX save arex (0x%llX)\n",
|
||||||
|
q_properties->ctx_save_restore_area_address);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -244,9 +270,12 @@ static long kfd_ioctl_create_queue(struct file *filep, struct kfd_process *p,
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
|
pr_debug("kfd: looking for gpu id 0x%x\n", args.gpu_id);
|
||||||
dev = kfd_device_by_id(args.gpu_id);
|
dev = kfd_device_by_id(args.gpu_id);
|
||||||
if (dev == NULL)
|
if (dev == NULL) {
|
||||||
|
pr_debug("kfd: gpu id 0x%x was not found\n", args.gpu_id);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
mutex_lock(&p->mutex);
|
mutex_lock(&p->mutex);
|
||||||
|
|
||||||
|
|
|
@ -299,6 +299,11 @@ struct queue_properties {
|
||||||
uint32_t sdma_engine_id;
|
uint32_t sdma_engine_id;
|
||||||
uint32_t sdma_queue_id;
|
uint32_t sdma_queue_id;
|
||||||
uint32_t sdma_vm_addr;
|
uint32_t sdma_vm_addr;
|
||||||
|
/* Relevant only for VI */
|
||||||
|
uint64_t eop_ring_buffer_address;
|
||||||
|
uint32_t eop_ring_buffer_size;
|
||||||
|
uint64_t ctx_save_restore_area_address;
|
||||||
|
uint32_t ctx_save_restore_area_size;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Загрузка…
Ссылка в новой задаче