File: rvu_devlink.h

package info (click to toggle)
linux 6.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,532,052 kB
  • sloc: ansic: 23,400,063; asm: 266,720; sh: 108,896; makefile: 49,712; python: 36,925; perl: 36,810; cpp: 6,044; yacc: 4,904; lex: 2,722; awk: 1,440; ruby: 25; sed: 5
file content (82 lines) | stat: -rw-r--r-- 2,077 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
72
73
74
75
76
77
78
79
80
81
82
/* SPDX-License-Identifier: GPL-2.0 */
/* Marvell RVU Admin Function Devlink
 *
 * Copyright (C) 2020 Marvell.
 *
 */

#ifndef RVU_DEVLINK_H
#define  RVU_DEVLINK_H

#define RVU_REPORTERS(_name)  \
static const struct devlink_health_reporter_ops  rvu_ ## _name ## _reporter_ops =  { \
	.name = #_name, \
	.recover = rvu_ ## _name ## _recover, \
	.dump = rvu_ ## _name ## _dump, \
}

enum npa_af_rvu_health {
	NPA_AF_RVU_INTR,
	NPA_AF_RVU_GEN,
	NPA_AF_RVU_ERR,
	NPA_AF_RVU_RAS,
};

struct rvu_npa_event_ctx {
	u64 npa_af_rvu_int;
	u64 npa_af_rvu_gen;
	u64 npa_af_rvu_err;
	u64 npa_af_rvu_ras;
};

struct rvu_npa_health_reporters {
	struct rvu_npa_event_ctx *npa_event_ctx;
	struct devlink_health_reporter *rvu_hw_npa_intr_reporter;
	struct work_struct              intr_work;
	struct devlink_health_reporter *rvu_hw_npa_gen_reporter;
	struct work_struct              gen_work;
	struct devlink_health_reporter *rvu_hw_npa_err_reporter;
	struct work_struct             err_work;
	struct devlink_health_reporter *rvu_hw_npa_ras_reporter;
	struct work_struct              ras_work;
};

enum nix_af_rvu_health {
	NIX_AF_RVU_INTR,
	NIX_AF_RVU_GEN,
	NIX_AF_RVU_ERR,
	NIX_AF_RVU_RAS,
};

struct rvu_nix_event_ctx {
	u64 nix_af_rvu_int;
	u64 nix_af_rvu_gen;
	u64 nix_af_rvu_err;
	u64 nix_af_rvu_ras;
};

struct rvu_nix_health_reporters {
	struct rvu_nix_event_ctx *nix_event_ctx;
	struct devlink_health_reporter *rvu_hw_nix_intr_reporter;
	struct work_struct		intr_work;
	struct devlink_health_reporter *rvu_hw_nix_gen_reporter;
	struct work_struct		gen_work;
	struct devlink_health_reporter *rvu_hw_nix_err_reporter;
	struct work_struct		err_work;
	struct devlink_health_reporter *rvu_hw_nix_ras_reporter;
	struct work_struct		ras_work;
};

struct rvu_devlink {
	struct devlink *dl;
	struct rvu *rvu;
	struct workqueue_struct *devlink_wq;
	struct rvu_npa_health_reporters *rvu_npa_health_reporter;
	struct rvu_nix_health_reporters *rvu_nix_health_reporter;
};

/* Devlink APIs */
int rvu_register_dl(struct rvu *rvu);
void rvu_unregister_dl(struct rvu *rvu);

#endif /* RVU_DEVLINK_H */