hisi_acc_qm.h 13.1 KB
Newer Older
1 2 3 4 5 6
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (c) 2019 HiSilicon Limited. */
#ifndef HISI_ACC_QM_H
#define HISI_ACC_QM_H

#include <linux/bitfield.h>
7
#include <linux/debugfs.h>
8 9 10
#include <linux/iopoll.h>
#include <linux/module.h>
#include <linux/pci.h>
11
#include <linux/uacce.h>
12

13 14
#define QM_QNUM_V1			4096
#define QM_QNUM_V2			1024
15 16
#define QM_MAX_VFS_NUM_V2		63

17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
/* qm user domain */
#define QM_ARUSER_M_CFG_1		0x100088
#define AXUSER_SNOOP_ENABLE		BIT(30)
#define AXUSER_CMD_TYPE			GENMASK(14, 12)
#define AXUSER_CMD_SMMU_NORMAL		1
#define AXUSER_NS			BIT(6)
#define AXUSER_NO			BIT(5)
#define AXUSER_FP			BIT(4)
#define AXUSER_SSV			BIT(0)
#define AXUSER_BASE			(AXUSER_SNOOP_ENABLE |		\
					FIELD_PREP(AXUSER_CMD_TYPE,	\
					AXUSER_CMD_SMMU_NORMAL) |	\
					AXUSER_NS | AXUSER_NO | AXUSER_FP)
#define QM_ARUSER_M_CFG_ENABLE		0x100090
#define ARUSER_M_CFG_ENABLE		0xfffffffe
#define QM_AWUSER_M_CFG_1		0x100098
#define QM_AWUSER_M_CFG_ENABLE		0x1000a0
#define AWUSER_M_CFG_ENABLE		0xfffffffe
#define QM_WUSER_M_CFG_ENABLE		0x1000a8
#define WUSER_M_CFG_ENABLE		0xffffffff

38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
/* mailbox */
#define QM_MB_CMD_SQC                   0x0
#define QM_MB_CMD_CQC                   0x1
#define QM_MB_CMD_EQC                   0x2
#define QM_MB_CMD_AEQC                  0x3
#define QM_MB_CMD_SQC_BT                0x4
#define QM_MB_CMD_CQC_BT                0x5
#define QM_MB_CMD_SQC_VFT_V2            0x6
#define QM_MB_CMD_STOP_QP               0x8
#define QM_MB_CMD_SRC                   0xc
#define QM_MB_CMD_DST                   0xd

#define QM_MB_CMD_SEND_BASE		0x300
#define QM_MB_EVENT_SHIFT               8
#define QM_MB_BUSY_SHIFT		13
#define QM_MB_OP_SHIFT			14
#define QM_MB_CMD_DATA_ADDR_L		0x304
#define QM_MB_CMD_DATA_ADDR_H		0x308
#define QM_MB_MAX_WAIT_CNT		6000

/* doorbell */
#define QM_DOORBELL_CMD_SQ              0
#define QM_DOORBELL_CMD_CQ              1
#define QM_DOORBELL_CMD_EQ              2
#define QM_DOORBELL_CMD_AEQ             3

#define QM_DOORBELL_SQ_CQ_BASE_V2	0x1000
#define QM_DOORBELL_EQ_AEQ_BASE_V2	0x2000
#define QM_QP_MAX_NUM_SHIFT             11
#define QM_DB_CMD_SHIFT_V2		12
#define QM_DB_RAND_SHIFT_V2		16
#define QM_DB_INDEX_SHIFT_V2		32
#define QM_DB_PRIORITY_SHIFT_V2		48

72 73 74 75 76 77 78 79 80 81 82
/* qm cache */
#define QM_CACHE_CTL			0x100050
#define SQC_CACHE_ENABLE		BIT(0)
#define CQC_CACHE_ENABLE		BIT(1)
#define SQC_CACHE_WB_ENABLE		BIT(4)
#define SQC_CACHE_WB_THRD		GENMASK(10, 5)
#define CQC_CACHE_WB_ENABLE		BIT(11)
#define CQC_CACHE_WB_THRD		GENMASK(17, 12)
#define QM_AXI_M_CFG			0x1000ac
#define AXI_M_CFG			0xffff
#define QM_AXI_M_CFG_ENABLE		0x1000b0
83
#define AM_CFG_SINGLE_PORT_MAX_TRANS	0x300014
84 85 86 87 88 89
#define AXI_M_CFG_ENABLE		0xffffffff
#define QM_PEH_AXUSER_CFG		0x1000cc
#define QM_PEH_AXUSER_CFG_ENABLE	0x1000d0
#define PEH_AXUSER_CFG			0x401001
#define PEH_AXUSER_CFG_ENABLE		0xffffffff

90
#define QM_MIN_QNUM                     2
91
#define HISI_ACC_SGL_SGE_NR_MAX		255
92 93 94
#define QM_SHAPER_CFG			0x100164
#define QM_SHAPER_ENABLE		BIT(30)
#define QM_SHAPER_TYPE1_OFFSET		10
95
#define QM_VF_STATE			0x0060
96

97 98 99
/* page number for queue file region */
#define QM_DOORBELL_PAGE_NR		1

100 101 102 103 104
/* uacce mode of the driver */
#define UACCE_MODE_NOUACCE		0 /* don't use uacce */
#define UACCE_MODE_SVA			1 /* use uacce sva mode */
#define UACCE_MODE_DESC	"0(default) means only register to crypto, 1 means both register to crypto and uacce"

105 106 107 108 109 110 111 112 113 114 115 116 117
enum qm_stop_reason {
	QM_NORMAL,
	QM_SOFT_RESET,
	QM_FLR,
};

enum qm_state {
	QM_INIT = 0,
	QM_START,
	QM_CLOSE,
	QM_STOP,
};

118
enum qp_state {
119 120
	QP_INIT = 1,
	QP_START,
121
	QP_STOP,
122
	QP_CLOSE,
123 124 125 126 127
};

enum qm_hw_ver {
	QM_HW_V1 = 0x20,
	QM_HW_V2 = 0x21,
128
	QM_HW_V3 = 0x30,
129 130 131 132
};

enum qm_fun_type {
	QM_HW_PF,
133
	QM_HW_VF,
134 135
};

136
enum qm_debug_file {
137
	CURRENT_QM,
138 139 140 141 142
	CURRENT_Q,
	CLEAR_ENABLE,
	DEBUG_FILE_NUM,
};

143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
enum vf_state {
	VF_READY = 0x0,
	VF_NOT_READY,
	VF_PREPARE,
};

enum qm_cap_bits {
	QM_SUPPORT_DB_ISOLATION = 0x0,
	QM_SUPPORT_FUNC_QOS,
	QM_SUPPORT_STOP_QP,
	QM_SUPPORT_MB_COMMAND,
	QM_SUPPORT_SVA_PREFETCH,
	QM_SUPPORT_RPM,
};

158 159 160 161 162 163 164 165 166 167 168 169 170
enum qm_dev_fail_state {
	STOP_QUEUE_FAIL = 1,
	ALLOC_CTX_FAIL,
	DUMP_SQC_FAIL,
	DUMP_CQC_FAIL,
	FINISH_WAIT,
};

struct qm_dev_dfx {
	u32 dev_state;
	u32 dev_timeout;
};

171 172 173 174 175 176
struct dfx_diff_registers {
	u32 *regs;
	u32 reg_offset;
	u32 reg_len;
};

177 178 179 180 181 182 183 184
struct qm_dfx {
	atomic64_t err_irq_cnt;
	atomic64_t aeq_irq_cnt;
	atomic64_t abnormal_irq_cnt;
	atomic64_t create_qp_err_cnt;
	atomic64_t mb_err_cnt;
};

185 186 187 188 189 190 191 192
struct debugfs_file {
	enum qm_debug_file index;
	struct mutex lock;
	struct qm_debug *debug;
};

struct qm_debug {
	u32 curr_qm_qp_num;
193 194
	u32 sqe_mask_offset;
	u32 sqe_mask_len;
195
	struct qm_dfx dfx;
196 197 198
	struct dentry *debug_root;
	struct dentry *qm_d;
	struct debugfs_file files[DEBUG_FILE_NUM];
199
	struct qm_dev_dfx dev_dfx;
200 201 202
	unsigned int *qm_last_words;
	/* ACC engines recoreding last regs */
	unsigned int *last_words;
203 204
	struct dfx_diff_registers *qm_diff_regs;
	struct dfx_diff_registers *acc_diff_regs;
205 206
};

207 208 209 210 211 212 213 214
struct qm_shaper_factor {
	u32 func_qos;
	u64 cir_b;
	u64 cir_u;
	u64 cir_s;
	u64 cbs_s;
};

215 216 217 218 219 220 221 222 223 224 225
struct qm_dma {
	void *va;
	dma_addr_t dma;
	size_t size;
};

struct hisi_qm_status {
	u32 eq_head;
	bool eqc_phase;
	u32 aeq_head;
	bool aeqc_phase;
226 227
	atomic_t flags;
	int stop_reason;
228 229
};

230 231 232
struct hisi_qm;

struct hisi_qm_err_info {
233 234 235
	char *acpi_rst;
	u32 msi_wr_port;
	u32 ecc_2bits_mask;
236 237 238 239
	u32 qm_shutdown_mask;
	u32 dev_shutdown_mask;
	u32 qm_reset_mask;
	u32 dev_reset_mask;
240 241 242 243 244
	u32 ce;
	u32 nfe;
	u32 fe;
};

245 246 247 248 249
struct hisi_qm_err_status {
	u32 is_qm_ecc_mbit;
	u32 is_dev_ecc_mbit;
};

250
struct hisi_qm_err_ini {
251
	int (*hw_init)(struct hisi_qm *qm);
252 253
	void (*hw_err_enable)(struct hisi_qm *qm);
	void (*hw_err_disable)(struct hisi_qm *qm);
254
	u32 (*get_dev_hw_err_status)(struct hisi_qm *qm);
255 256 257
	void (*clear_dev_hw_err_status)(struct hisi_qm *qm, u32 err_sts);
	void (*open_axi_master_ooo)(struct hisi_qm *qm);
	void (*close_axi_master_ooo)(struct hisi_qm *qm);
258 259
	void (*open_sva_prefetch)(struct hisi_qm *qm);
	void (*close_sva_prefetch)(struct hisi_qm *qm);
260
	void (*log_dev_hw_err)(struct hisi_qm *qm, u32 err_sts);
261
	void (*show_last_dfx_regs)(struct hisi_qm *qm);
262
	void (*err_info_init)(struct hisi_qm *qm);
263 264
};

265 266 267 268 269 270 271 272 273 274 275 276
struct hisi_qm_cap_info {
	u32 type;
	/* Register offset */
	u32 offset;
	/* Bit offset in register */
	u32 shift;
	u32 mask;
	u32 v1_val;
	u32 v2_val;
	u32 v3_val;
};

277 278 279
struct hisi_qm_list {
	struct mutex lock;
	struct list_head list;
280 281
	int (*register_to_crypto)(struct hisi_qm *qm);
	void (*unregister_from_crypto)(struct hisi_qm *qm);
282 283
};

284 285 286 287 288 289
struct hisi_qm_poll_data {
	struct hisi_qm *qm;
	struct work_struct work;
	u16 *qp_finish_id;
};

290 291 292 293 294 295 296 297 298 299 300 301 302 303
/**
 * struct qm_err_isolate
 * @isolate_lock: protects device error log
 * @err_threshold: user config error threshold which triggers isolation
 * @is_isolate: device isolation state
 * @uacce_hw_errs: index into qm device error list
 */
struct qm_err_isolate {
	struct mutex isolate_lock;
	u32 err_threshold;
	bool is_isolate;
	struct list_head qm_hw_errs;
};

304 305
struct hisi_qm {
	enum qm_hw_ver ver;
306
	enum qm_fun_type fun_type;
307 308 309
	const char *dev_name;
	struct pci_dev *pdev;
	void __iomem *io_base;
310
	void __iomem *db_io_base;
311 312 313

	/* Capbility version, 0: not supports */
	u32 cap_ver;
314 315 316
	u32 sqe_size;
	u32 qp_base;
	u32 qp_num;
317
	u32 qp_in_used;
318
	u32 ctrl_qp_num;
319
	u32 max_qp_num;
320
	u32 vfs_num;
321
	u32 db_interval;
322 323
	u16 eq_depth;
	u16 aeq_depth;
324
	struct list_head list;
325
	struct hisi_qm_list *qm_list;
326 327 328 329 330 331 332 333 334 335 336 337

	struct qm_dma qdma;
	struct qm_sqc *sqc;
	struct qm_cqc *cqc;
	struct qm_eqe *eqe;
	struct qm_aeqe *aeqe;
	dma_addr_t sqc_dma;
	dma_addr_t cqc_dma;
	dma_addr_t eqe_dma;
	dma_addr_t aeqe_dma;

	struct hisi_qm_status status;
338
	const struct hisi_qm_err_ini *err_ini;
339
	struct hisi_qm_err_info err_info;
340
	struct hisi_qm_err_status err_status;
341 342
	/* driver removing and reset sched */
	unsigned long misc_ctl;
343 344
	/* Device capability bit */
	unsigned long caps;
345

346
	struct rw_semaphore qps_lock;
347 348
	struct idr qp_idr;
	struct hisi_qp *qp_array;
349
	struct hisi_qm_poll_data *poll_data;
350 351 352 353 354

	struct mutex mailbox_lock;

	const struct hisi_qm_hw_ops *ops;

355 356
	struct qm_debug debug;

357 358
	u32 error_mask;

359
	struct workqueue_struct *wq;
360
	struct work_struct rst_work;
361
	struct work_struct cmd_process;
362

363
	const char *algs;
364
	bool use_uacce;
365
	bool use_sva;
366
	bool use_iommu;
367

368
	resource_size_t phys_base;
369
	resource_size_t db_phys_base;
370
	struct uacce_device *uacce;
371
	int mode;
372 373 374
	struct qm_shaper_factor *factor;
	u32 mb_qos;
	u32 type_rate;
375
	struct qm_err_isolate isolate_data;
376 377 378 379 380 381 382
};

struct hisi_qp_status {
	atomic_t used;
	u16 sq_tail;
	u16 cq_head;
	bool cqc_phase;
383
	atomic_t flags;
384
	atomic_t complete_task;
385 386 387 388 389 390 391 392
};

struct hisi_qp_ops {
	int (*fill_sqe)(void *sqe, void *q_parm, void *d_parm);
};

struct hisi_qp {
	u32 qp_id;
393 394
	u16 sq_depth;
	u16 cq_depth;
395 396 397 398 399 400 401 402 403 404 405 406 407
	u8 alg_type;
	u8 req_type;

	struct qm_dma qdma;
	void *sqe;
	struct qm_cqe *cqe;
	dma_addr_t sqe_dma;
	dma_addr_t cqe_dma;

	struct hisi_qp_status qp_status;
	struct hisi_qp_ops *hw_ops;
	void *qp_ctx;
	void (*req_cb)(struct hisi_qp *qp, void *data);
408
	void (*event_cb)(struct hisi_qp *qp);
409 410

	struct hisi_qm *qm;
411
	bool is_resetting;
412
	bool is_in_kernel;
413 414
	u16 pasid;
	struct uacce_queue *uacce_q;
415 416
};

417 418 419
static inline int q_num_set(const char *val, const struct kernel_param *kp,
			    unsigned int device)
{
420
	struct pci_dev *pdev;
421 422 423 424 425 426
	u32 n, q_num;
	int ret;

	if (!val)
		return -EINVAL;

427
	pdev = pci_get_device(PCI_VENDOR_ID_HUAWEI, device, NULL);
428 429
	if (!pdev) {
		q_num = min_t(u32, QM_QNUM_V1, QM_QNUM_V2);
430
		pr_info("No device found currently, suppose queue number is %u\n",
431 432
			q_num);
	} else {
433
		if (pdev->revision == QM_HW_V1)
434
			q_num = QM_QNUM_V1;
435
		else
436
			q_num = QM_QNUM_V2;
437 438

		pci_dev_put(pdev);
439 440 441
	}

	ret = kstrtou32(val, 10, &n);
442
	if (ret || n < QM_MIN_QNUM || n > q_num)
443 444 445 446 447
		return -EINVAL;

	return param_set_int(val, kp);
}

448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
static inline int vfs_num_set(const char *val, const struct kernel_param *kp)
{
	u32 n;
	int ret;

	if (!val)
		return -EINVAL;

	ret = kstrtou32(val, 10, &n);
	if (ret < 0)
		return ret;

	if (n > QM_MAX_VFS_NUM_V2)
		return -EINVAL;

	return param_set_int(val, kp);
}

466 467 468 469 470 471 472 473 474
static inline int mode_set(const char *val, const struct kernel_param *kp)
{
	u32 n;
	int ret;

	if (!val)
		return -EINVAL;

	ret = kstrtou32(val, 10, &n);
475
	if (ret != 0 || (n != UACCE_MODE_NOIOMMU && n != UACCE_MODE_SVA &&
476 477 478 479 480 481 482 483 484 485 486
			 n != UACCE_MODE_NOUACCE))
		return -EINVAL;

	return param_set_int(val, kp);
}

static inline int uacce_mode_set(const char *val, const struct kernel_param *kp)
{
	return mode_set(val, kp);
}

487 488 489 490 491 492
static inline void hisi_qm_init_list(struct hisi_qm_list *qm_list)
{
	INIT_LIST_HEAD(&qm_list->list);
	mutex_init(&qm_list->lock);
}

493
int qm_register_uacce(struct hisi_qm *qm);
494 495 496
int hisi_qm_init(struct hisi_qm *qm);
void hisi_qm_uninit(struct hisi_qm *qm);
int hisi_qm_start(struct hisi_qm *qm);
497
int hisi_qm_stop(struct hisi_qm *qm, enum qm_stop_reason r);
498 499 500
int hisi_qm_start_qp(struct hisi_qp *qp, unsigned long arg);
int hisi_qm_stop_qp(struct hisi_qp *qp);
int hisi_qp_send(struct hisi_qp *qp, const void *msg);
501
void hisi_qm_debug_init(struct hisi_qm *qm);
502
void hisi_qm_debug_regs_clear(struct hisi_qm *qm);
503
int hisi_qm_sriov_enable(struct pci_dev *pdev, int max_vfs);
504
int hisi_qm_sriov_disable(struct pci_dev *pdev, bool is_frozen);
505
int hisi_qm_sriov_configure(struct pci_dev *pdev, int num_vfs);
506 507
void hisi_qm_dev_err_init(struct hisi_qm *qm);
void hisi_qm_dev_err_uninit(struct hisi_qm *qm);
508 509 510
int hisi_qm_regs_debugfs_init(struct hisi_qm *qm,
			  struct dfx_diff_registers *dregs, u32 reg_len);
void hisi_qm_regs_debugfs_uninit(struct hisi_qm *qm, u32 reg_len);
511
void hisi_qm_acc_diff_regs_dump(struct hisi_qm *qm, struct seq_file *s,
512
				struct dfx_diff_registers *dregs, u32 regs_len);
513

514 515
pci_ers_result_t hisi_qm_dev_err_detected(struct pci_dev *pdev,
					  pci_channel_state_t state);
516
pci_ers_result_t hisi_qm_dev_slot_reset(struct pci_dev *pdev);
S
Shukun Tan 已提交
517 518
void hisi_qm_reset_prepare(struct pci_dev *pdev);
void hisi_qm_reset_done(struct pci_dev *pdev);
519

520 521 522 523
int hisi_qm_wait_mb_ready(struct hisi_qm *qm);
int hisi_qm_mb(struct hisi_qm *qm, u8 cmd, dma_addr_t dma_addr, u16 queue,
	       bool op);

524 525 526 527 528 529 530 531 532 533
struct hisi_acc_sgl_pool;
struct hisi_acc_hw_sgl *hisi_acc_sg_buf_map_to_hw_sgl(struct device *dev,
	struct scatterlist *sgl, struct hisi_acc_sgl_pool *pool,
	u32 index, dma_addr_t *hw_sgl_dma);
void hisi_acc_sg_buf_unmap(struct device *dev, struct scatterlist *sgl,
			   struct hisi_acc_hw_sgl *hw_sgl);
struct hisi_acc_sgl_pool *hisi_acc_create_sgl_pool(struct device *dev,
						   u32 count, u32 sge_nr);
void hisi_acc_free_sgl_pool(struct device *dev,
			    struct hisi_acc_sgl_pool *pool);
534 535 536
int hisi_qm_alloc_qps_node(struct hisi_qm_list *qm_list, int qp_num,
			   u8 alg_type, int node, struct hisi_qp **qps);
void hisi_qm_free_qps(struct hisi_qp **qps, int qp_num);
537
void hisi_qm_dev_shutdown(struct pci_dev *pdev);
538
void hisi_qm_wait_task_finish(struct hisi_qm *qm, struct hisi_qm_list *qm_list);
539 540
int hisi_qm_alg_register(struct hisi_qm *qm, struct hisi_qm_list *qm_list);
void hisi_qm_alg_unregister(struct hisi_qm *qm, struct hisi_qm_list *qm_list);
541 542
int hisi_qm_resume(struct device *dev);
int hisi_qm_suspend(struct device *dev);
543 544 545 546
void hisi_qm_pm_uninit(struct hisi_qm *qm);
void hisi_qm_pm_init(struct hisi_qm *qm);
int hisi_qm_get_dfx_access(struct hisi_qm *qm);
void hisi_qm_put_dfx_access(struct hisi_qm *qm);
547
void hisi_qm_regs_dump(struct seq_file *s, struct debugfs_regset32 *regset);
548 549 550
u32 hisi_qm_get_hw_info(struct hisi_qm *qm,
			const struct hisi_qm_cap_info *info_table,
			u32 index, bool is_read);
551
#endif