2014-07-17 05:45:35 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Advanced Micro Devices, Inc.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KFD_DEVICE_QUEUE_MANAGER_H_
|
|
|
|
#define KFD_DEVICE_QUEUE_MANAGER_H_
|
|
|
|
|
|
|
|
#include <linux/rwsem.h>
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include "kfd_priv.h"
|
|
|
|
#include "kfd_mqd_manager.h"
|
|
|
|
|
|
|
|
#define QUEUE_PREEMPT_DEFAULT_TIMEOUT_MS (500)
|
|
|
|
#define QUEUES_PER_PIPE (8)
|
|
|
|
#define PIPE_PER_ME_CP_SCHEDULING (3)
|
|
|
|
#define CIK_VMID_NUM (8)
|
|
|
|
#define KFD_VMID_START_OFFSET (8)
|
|
|
|
#define VMID_PER_DEVICE CIK_VMID_NUM
|
|
|
|
#define KFD_DQM_FIRST_PIPE (0)
|
2015-01-04 04:12:32 +08:00
|
|
|
#define CIK_SDMA_QUEUES (4)
|
|
|
|
#define CIK_SDMA_QUEUES_PER_ENGINE (2)
|
|
|
|
#define CIK_SDMA_ENGINE_NUM (2)
|
2014-07-17 05:45:35 +08:00
|
|
|
|
|
|
|
struct device_process_node {
|
|
|
|
struct qcm_process_device *qpd;
|
|
|
|
struct list_head list;
|
|
|
|
};
|
|
|
|
|
2014-07-17 06:27:00 +08:00
|
|
|
/**
|
2015-01-12 20:26:10 +08:00
|
|
|
* struct device_queue_manager_ops
|
2014-07-17 06:27:00 +08:00
|
|
|
*
|
|
|
|
* @create_queue: Queue creation routine.
|
|
|
|
*
|
|
|
|
* @destroy_queue: Queue destruction routine.
|
|
|
|
*
|
|
|
|
* @update_queue: Queue update routine.
|
|
|
|
*
|
|
|
|
* @get_mqd_manager: Returns the mqd manager according to the mqd type.
|
|
|
|
*
|
|
|
|
* @exeute_queues: Dispatches the queues list to the H/W.
|
|
|
|
*
|
|
|
|
* @register_process: This routine associates a specific process with device.
|
|
|
|
*
|
|
|
|
* @unregister_process: destroys the associations between process to device.
|
|
|
|
*
|
|
|
|
* @initialize: Initializes the pipelines and memory module for that device.
|
|
|
|
*
|
|
|
|
* @start: Initializes the resources/modules the the device needs for queues
|
|
|
|
* execution. This function is called on device initialization and after the
|
|
|
|
* system woke up after suspension.
|
|
|
|
*
|
|
|
|
* @stop: This routine stops execution of all the active queue running on the
|
|
|
|
* H/W and basically this function called on system suspend.
|
|
|
|
*
|
|
|
|
* @uninitialize: Destroys all the device queue manager resources allocated in
|
|
|
|
* initialize routine.
|
|
|
|
*
|
|
|
|
* @create_kernel_queue: Creates kernel queue. Used for debug queue.
|
|
|
|
*
|
|
|
|
* @destroy_kernel_queue: Destroys kernel queue. Used for debug queue.
|
|
|
|
*
|
|
|
|
* @set_cache_memory_policy: Sets memory policy (cached/ non cached) for the
|
|
|
|
* memory apertures.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-01-12 20:26:10 +08:00
|
|
|
struct device_queue_manager_ops {
|
2014-07-17 05:45:35 +08:00
|
|
|
int (*create_queue)(struct device_queue_manager *dqm,
|
|
|
|
struct queue *q,
|
|
|
|
struct qcm_process_device *qpd,
|
|
|
|
int *allocate_vmid);
|
|
|
|
int (*destroy_queue)(struct device_queue_manager *dqm,
|
|
|
|
struct qcm_process_device *qpd,
|
|
|
|
struct queue *q);
|
|
|
|
int (*update_queue)(struct device_queue_manager *dqm,
|
|
|
|
struct queue *q);
|
2014-07-17 06:27:00 +08:00
|
|
|
|
|
|
|
struct mqd_manager * (*get_mqd_manager)
|
|
|
|
(struct device_queue_manager *dqm,
|
2014-07-17 05:45:35 +08:00
|
|
|
enum KFD_MQD_TYPE type);
|
|
|
|
|
|
|
|
int (*register_process)(struct device_queue_manager *dqm,
|
|
|
|
struct qcm_process_device *qpd);
|
|
|
|
int (*unregister_process)(struct device_queue_manager *dqm,
|
|
|
|
struct qcm_process_device *qpd);
|
|
|
|
int (*initialize)(struct device_queue_manager *dqm);
|
|
|
|
int (*start)(struct device_queue_manager *dqm);
|
|
|
|
int (*stop)(struct device_queue_manager *dqm);
|
|
|
|
void (*uninitialize)(struct device_queue_manager *dqm);
|
|
|
|
int (*create_kernel_queue)(struct device_queue_manager *dqm,
|
|
|
|
struct kernel_queue *kq,
|
|
|
|
struct qcm_process_device *qpd);
|
|
|
|
void (*destroy_kernel_queue)(struct device_queue_manager *dqm,
|
|
|
|
struct kernel_queue *kq,
|
|
|
|
struct qcm_process_device *qpd);
|
|
|
|
bool (*set_cache_memory_policy)(struct device_queue_manager *dqm,
|
|
|
|
struct qcm_process_device *qpd,
|
|
|
|
enum cache_policy default_policy,
|
|
|
|
enum cache_policy alternate_policy,
|
|
|
|
void __user *alternate_aperture_base,
|
|
|
|
uint64_t alternate_aperture_size);
|
2015-01-12 20:26:10 +08:00
|
|
|
};
|
|
|
|
|
2015-05-05 16:51:31 +08:00
|
|
|
struct device_queue_manager_asic_ops {
|
|
|
|
int (*register_process)(struct device_queue_manager *dqm,
|
|
|
|
struct qcm_process_device *qpd);
|
|
|
|
int (*initialize)(struct device_queue_manager *dqm);
|
|
|
|
bool (*set_cache_memory_policy)(struct device_queue_manager *dqm,
|
|
|
|
struct qcm_process_device *qpd,
|
|
|
|
enum cache_policy default_policy,
|
|
|
|
enum cache_policy alternate_policy,
|
|
|
|
void __user *alternate_aperture_base,
|
|
|
|
uint64_t alternate_aperture_size);
|
|
|
|
};
|
|
|
|
|
2015-01-12 20:26:10 +08:00
|
|
|
/**
|
|
|
|
* struct device_queue_manager
|
|
|
|
*
|
|
|
|
* This struct is a base class for the kfd queues scheduler in the
|
|
|
|
* device level. The device base class should expose the basic operations
|
|
|
|
* for queue creation and queue destruction. This base class hides the
|
|
|
|
* scheduling mode of the driver and the specific implementation of the
|
|
|
|
* concrete device. This class is the only class in the queues scheduler
|
|
|
|
* that configures the H/W.
|
|
|
|
*
|
|
|
|
*/
|
2014-07-17 05:45:35 +08:00
|
|
|
|
2015-01-12 20:26:10 +08:00
|
|
|
struct device_queue_manager {
|
|
|
|
struct device_queue_manager_ops ops;
|
2015-05-05 16:51:31 +08:00
|
|
|
struct device_queue_manager_asic_ops ops_asic_specific;
|
2014-07-17 05:45:35 +08:00
|
|
|
|
|
|
|
struct mqd_manager *mqds[KFD_MQD_TYPE_MAX];
|
|
|
|
struct packet_manager packets;
|
|
|
|
struct kfd_dev *dev;
|
|
|
|
struct mutex lock;
|
|
|
|
struct list_head queues;
|
|
|
|
unsigned int processes_count;
|
|
|
|
unsigned int queue_count;
|
2015-01-04 04:12:32 +08:00
|
|
|
unsigned int sdma_queue_count;
|
2015-01-18 19:18:01 +08:00
|
|
|
unsigned int total_queue_count;
|
2014-07-17 05:45:35 +08:00
|
|
|
unsigned int next_pipe_to_allocate;
|
|
|
|
unsigned int *allocated_queues;
|
2015-01-04 04:12:32 +08:00
|
|
|
unsigned int sdma_bitmap;
|
2014-07-17 05:45:35 +08:00
|
|
|
unsigned int vmid_bitmap;
|
|
|
|
uint64_t pipelines_addr;
|
|
|
|
struct kfd_mem_obj *pipeline_mem;
|
|
|
|
uint64_t fence_gpu_addr;
|
|
|
|
unsigned int *fence_addr;
|
|
|
|
struct kfd_mem_obj *fence_mem;
|
|
|
|
bool active_runlist;
|
|
|
|
};
|
|
|
|
|
2015-05-05 16:51:31 +08:00
|
|
|
void device_queue_manager_init_cik(struct device_queue_manager_asic_ops *ops);
|
|
|
|
void device_queue_manager_init_vi(struct device_queue_manager_asic_ops *ops);
|
2015-01-12 20:28:46 +08:00
|
|
|
void program_sh_mem_settings(struct device_queue_manager *dqm,
|
|
|
|
struct qcm_process_device *qpd);
|
|
|
|
int init_pipelines(struct device_queue_manager *dqm,
|
|
|
|
unsigned int pipes_num, unsigned int first_pipe);
|
2015-02-17 17:58:27 +08:00
|
|
|
unsigned int get_first_pipe(struct device_queue_manager *dqm);
|
2015-02-17 17:30:31 +08:00
|
|
|
unsigned int get_pipes_num(struct device_queue_manager *dqm);
|
2015-01-22 19:42:28 +08:00
|
|
|
|
|
|
|
extern inline unsigned int get_sh_mem_bases_32(struct kfd_process_device *pdd)
|
|
|
|
{
|
|
|
|
return (pdd->lds_base >> 16) & 0xFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern inline unsigned int
|
|
|
|
get_sh_mem_bases_nybble_64(struct kfd_process_device *pdd)
|
|
|
|
{
|
|
|
|
return (pdd->lds_base >> 60) & 0x0E;
|
|
|
|
}
|
|
|
|
|
2014-07-17 05:45:35 +08:00
|
|
|
#endif /* KFD_DEVICE_QUEUE_MANAGER_H_ */
|