]> git.ipfire.org Git - thirdparty/kernel/stable.git/blob - drivers/net/ethernet/amd/pds_core/devlink.c
KVM: clean up directives to compile out irqfds
[thirdparty/kernel/stable.git] / drivers / net / ethernet / amd / pds_core / devlink.c
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright(c) 2023 Advanced Micro Devices, Inc */
3
4 #include "core.h"
5 #include <linux/pds/pds_auxbus.h>
6
7 static struct
8 pdsc_viftype *pdsc_dl_find_viftype_by_id(struct pdsc *pdsc,
9 enum devlink_param_type dl_id)
10 {
11 int vt;
12
13 if (!pdsc->viftype_status)
14 return NULL;
15
16 for (vt = 0; vt < PDS_DEV_TYPE_MAX; vt++) {
17 if (pdsc->viftype_status[vt].dl_id == dl_id)
18 return &pdsc->viftype_status[vt];
19 }
20
21 return NULL;
22 }
23
24 int pdsc_dl_enable_get(struct devlink *dl, u32 id,
25 struct devlink_param_gset_ctx *ctx)
26 {
27 struct pdsc *pdsc = devlink_priv(dl);
28 struct pdsc_viftype *vt_entry;
29
30 vt_entry = pdsc_dl_find_viftype_by_id(pdsc, id);
31 if (!vt_entry)
32 return -ENOENT;
33
34 ctx->val.vbool = vt_entry->enabled;
35
36 return 0;
37 }
38
39 int pdsc_dl_enable_set(struct devlink *dl, u32 id,
40 struct devlink_param_gset_ctx *ctx)
41 {
42 struct pdsc *pdsc = devlink_priv(dl);
43 struct pdsc_viftype *vt_entry;
44 int err = 0;
45 int vf_id;
46
47 vt_entry = pdsc_dl_find_viftype_by_id(pdsc, id);
48 if (!vt_entry || !vt_entry->supported)
49 return -EOPNOTSUPP;
50
51 if (vt_entry->enabled == ctx->val.vbool)
52 return 0;
53
54 vt_entry->enabled = ctx->val.vbool;
55 for (vf_id = 0; vf_id < pdsc->num_vfs; vf_id++) {
56 struct pdsc *vf = pdsc->vfs[vf_id].vf;
57
58 err = ctx->val.vbool ? pdsc_auxbus_dev_add(vf, pdsc) :
59 pdsc_auxbus_dev_del(vf, pdsc);
60 }
61
62 return err;
63 }
64
65 int pdsc_dl_enable_validate(struct devlink *dl, u32 id,
66 union devlink_param_value val,
67 struct netlink_ext_ack *extack)
68 {
69 struct pdsc *pdsc = devlink_priv(dl);
70 struct pdsc_viftype *vt_entry;
71
72 vt_entry = pdsc_dl_find_viftype_by_id(pdsc, id);
73 if (!vt_entry || !vt_entry->supported)
74 return -EOPNOTSUPP;
75
76 if (!pdsc->viftype_status[vt_entry->vif_id].supported)
77 return -ENODEV;
78
79 return 0;
80 }
81
82 int pdsc_dl_flash_update(struct devlink *dl,
83 struct devlink_flash_update_params *params,
84 struct netlink_ext_ack *extack)
85 {
86 struct pdsc *pdsc = devlink_priv(dl);
87
88 return pdsc_firmware_update(pdsc, params->fw, extack);
89 }
90
91 static char *fw_slotnames[] = {
92 "fw.goldfw",
93 "fw.mainfwa",
94 "fw.mainfwb",
95 };
96
97 int pdsc_dl_info_get(struct devlink *dl, struct devlink_info_req *req,
98 struct netlink_ext_ack *extack)
99 {
100 union pds_core_dev_cmd cmd = {
101 .fw_control.opcode = PDS_CORE_CMD_FW_CONTROL,
102 .fw_control.oper = PDS_CORE_FW_GET_LIST,
103 };
104 struct pds_core_fw_list_info fw_list;
105 struct pdsc *pdsc = devlink_priv(dl);
106 union pds_core_dev_comp comp;
107 char buf[16];
108 int listlen;
109 int err;
110 int i;
111
112 mutex_lock(&pdsc->devcmd_lock);
113 err = pdsc_devcmd_locked(pdsc, &cmd, &comp, pdsc->devcmd_timeout * 2);
114 memcpy_fromio(&fw_list, pdsc->cmd_regs->data, sizeof(fw_list));
115 mutex_unlock(&pdsc->devcmd_lock);
116 if (err && err != -EIO)
117 return err;
118
119 listlen = fw_list.num_fw_slots;
120 for (i = 0; i < listlen; i++) {
121 if (i < ARRAY_SIZE(fw_slotnames))
122 strscpy(buf, fw_slotnames[i], sizeof(buf));
123 else
124 snprintf(buf, sizeof(buf), "fw.slot_%d", i);
125 err = devlink_info_version_stored_put(req, buf,
126 fw_list.fw_names[i].fw_version);
127 if (err)
128 return err;
129 }
130
131 err = devlink_info_version_running_put(req,
132 DEVLINK_INFO_VERSION_GENERIC_FW,
133 pdsc->dev_info.fw_version);
134 if (err)
135 return err;
136
137 snprintf(buf, sizeof(buf), "0x%x", pdsc->dev_info.asic_type);
138 err = devlink_info_version_fixed_put(req,
139 DEVLINK_INFO_VERSION_GENERIC_ASIC_ID,
140 buf);
141 if (err)
142 return err;
143
144 snprintf(buf, sizeof(buf), "0x%x", pdsc->dev_info.asic_rev);
145 err = devlink_info_version_fixed_put(req,
146 DEVLINK_INFO_VERSION_GENERIC_ASIC_REV,
147 buf);
148 if (err)
149 return err;
150
151 return devlink_info_serial_number_put(req, pdsc->dev_info.serial_num);
152 }
153
154 int pdsc_fw_reporter_diagnose(struct devlink_health_reporter *reporter,
155 struct devlink_fmsg *fmsg,
156 struct netlink_ext_ack *extack)
157 {
158 struct pdsc *pdsc = devlink_health_reporter_priv(reporter);
159
160 mutex_lock(&pdsc->config_lock);
161 if (test_bit(PDSC_S_FW_DEAD, &pdsc->state))
162 devlink_fmsg_string_pair_put(fmsg, "Status", "dead");
163 else if (!pdsc_is_fw_good(pdsc))
164 devlink_fmsg_string_pair_put(fmsg, "Status", "unhealthy");
165 else
166 devlink_fmsg_string_pair_put(fmsg, "Status", "healthy");
167 mutex_unlock(&pdsc->config_lock);
168
169 devlink_fmsg_u32_pair_put(fmsg, "State",
170 pdsc->fw_status & ~PDS_CORE_FW_STS_F_GENERATION);
171 devlink_fmsg_u32_pair_put(fmsg, "Generation", pdsc->fw_generation >> 4);
172 devlink_fmsg_u32_pair_put(fmsg, "Recoveries", pdsc->fw_recoveries);
173
174 return 0;
175 }