1 // SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0-only)
2 /* Copyright(c) 2022 Intel Corporation */
3 #include <linux/device.h>
4 #include <linux/errno.h>
5 #include <linux/pci.h>
6 #include "adf_accel_devices.h"
7 #include "adf_cfg.h"
8 #include "adf_common_drv.h"
9
10 static const char * const state_operations[] = {
11 [DEV_DOWN] = "down",
12 [DEV_UP] = "up",
13 };
14
state_show(struct device * dev,struct device_attribute * attr,char * buf)15 static ssize_t state_show(struct device *dev, struct device_attribute *attr,
16 char *buf)
17 {
18 struct adf_accel_dev *accel_dev;
19 char *state;
20
21 accel_dev = adf_devmgr_pci_to_accel_dev(to_pci_dev(dev));
22 if (!accel_dev)
23 return -EINVAL;
24
25 state = adf_dev_started(accel_dev) ? "up" : "down";
26 return sysfs_emit(buf, "%s\n", state);
27 }
28
state_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)29 static ssize_t state_store(struct device *dev, struct device_attribute *attr,
30 const char *buf, size_t count)
31 {
32 struct adf_accel_dev *accel_dev;
33 u32 accel_id;
34 int ret;
35
36 accel_dev = adf_devmgr_pci_to_accel_dev(to_pci_dev(dev));
37 if (!accel_dev)
38 return -EINVAL;
39
40 accel_id = accel_dev->accel_id;
41
42 if (adf_devmgr_in_reset(accel_dev) || adf_dev_in_use(accel_dev)) {
43 dev_info(dev, "Device qat_dev%d is busy\n", accel_id);
44 return -EBUSY;
45 }
46
47 ret = sysfs_match_string(state_operations, buf);
48 if (ret < 0)
49 return ret;
50
51 switch (ret) {
52 case DEV_DOWN:
53 dev_info(dev, "Stopping device qat_dev%d\n", accel_id);
54
55 ret = adf_dev_down(accel_dev, true);
56 if (ret < 0)
57 return -EINVAL;
58
59 break;
60 case DEV_UP:
61 dev_info(dev, "Starting device qat_dev%d\n", accel_id);
62
63 ret = adf_dev_up(accel_dev, true);
64 if (ret < 0) {
65 dev_err(dev, "Failed to start device qat_dev%d\n",
66 accel_id);
67 adf_dev_down(accel_dev, true);
68 return ret;
69 }
70 break;
71 default:
72 return -EINVAL;
73 }
74
75 return count;
76 }
77
78 static const char * const services_operations[] = {
79 ADF_CFG_CY,
80 ADF_CFG_DC,
81 ADF_CFG_SYM,
82 ADF_CFG_ASYM,
83 ADF_CFG_ASYM_SYM,
84 ADF_CFG_ASYM_DC,
85 ADF_CFG_DC_ASYM,
86 ADF_CFG_SYM_DC,
87 ADF_CFG_DC_SYM,
88 };
89
cfg_services_show(struct device * dev,struct device_attribute * attr,char * buf)90 static ssize_t cfg_services_show(struct device *dev, struct device_attribute *attr,
91 char *buf)
92 {
93 char services[ADF_CFG_MAX_VAL_LEN_IN_BYTES] = {0};
94 struct adf_accel_dev *accel_dev;
95 int ret;
96
97 accel_dev = adf_devmgr_pci_to_accel_dev(to_pci_dev(dev));
98 if (!accel_dev)
99 return -EINVAL;
100
101 ret = adf_cfg_get_param_value(accel_dev, ADF_GENERAL_SEC,
102 ADF_SERVICES_ENABLED, services);
103 if (ret)
104 return ret;
105
106 return sysfs_emit(buf, "%s\n", services);
107 }
108
adf_sysfs_update_dev_config(struct adf_accel_dev * accel_dev,const char * services)109 static int adf_sysfs_update_dev_config(struct adf_accel_dev *accel_dev,
110 const char *services)
111 {
112 return adf_cfg_add_key_value_param(accel_dev, ADF_GENERAL_SEC,
113 ADF_SERVICES_ENABLED, services,
114 ADF_STR);
115 }
116
cfg_services_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)117 static ssize_t cfg_services_store(struct device *dev, struct device_attribute *attr,
118 const char *buf, size_t count)
119 {
120 struct adf_hw_device_data *hw_data;
121 struct adf_accel_dev *accel_dev;
122 int ret;
123
124 ret = sysfs_match_string(services_operations, buf);
125 if (ret < 0)
126 return ret;
127
128 accel_dev = adf_devmgr_pci_to_accel_dev(to_pci_dev(dev));
129 if (!accel_dev)
130 return -EINVAL;
131
132 if (adf_dev_started(accel_dev)) {
133 dev_info(dev, "Device qat_dev%d must be down to reconfigure the service.\n",
134 accel_dev->accel_id);
135 return -EINVAL;
136 }
137
138 ret = adf_sysfs_update_dev_config(accel_dev, services_operations[ret]);
139 if (ret < 0)
140 return ret;
141
142 hw_data = GET_HW_DATA(accel_dev);
143
144 /* Update capabilities mask after change in configuration.
145 * A call to this function is required as capabilities are, at the
146 * moment, tied to configuration
147 */
148 hw_data->accel_capabilities_mask = hw_data->get_accel_cap(accel_dev);
149 if (!hw_data->accel_capabilities_mask)
150 return -EINVAL;
151
152 return count;
153 }
154
pm_idle_enabled_show(struct device * dev,struct device_attribute * attr,char * buf)155 static ssize_t pm_idle_enabled_show(struct device *dev, struct device_attribute *attr,
156 char *buf)
157 {
158 char pm_idle_enabled[ADF_CFG_MAX_VAL_LEN_IN_BYTES] = {};
159 struct adf_accel_dev *accel_dev;
160 int ret;
161
162 accel_dev = adf_devmgr_pci_to_accel_dev(to_pci_dev(dev));
163 if (!accel_dev)
164 return -EINVAL;
165
166 ret = adf_cfg_get_param_value(accel_dev, ADF_GENERAL_SEC,
167 ADF_PM_IDLE_SUPPORT, pm_idle_enabled);
168 if (ret)
169 return sysfs_emit(buf, "1\n");
170
171 return sysfs_emit(buf, "%s\n", pm_idle_enabled);
172 }
173
pm_idle_enabled_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)174 static ssize_t pm_idle_enabled_store(struct device *dev, struct device_attribute *attr,
175 const char *buf, size_t count)
176 {
177 unsigned long pm_idle_enabled_cfg_val;
178 struct adf_accel_dev *accel_dev;
179 bool pm_idle_enabled;
180 int ret;
181
182 ret = kstrtobool(buf, &pm_idle_enabled);
183 if (ret)
184 return ret;
185
186 pm_idle_enabled_cfg_val = pm_idle_enabled;
187 accel_dev = adf_devmgr_pci_to_accel_dev(to_pci_dev(dev));
188 if (!accel_dev)
189 return -EINVAL;
190
191 if (adf_dev_started(accel_dev)) {
192 dev_info(dev, "Device qat_dev%d must be down to set pm_idle_enabled.\n",
193 accel_dev->accel_id);
194 return -EINVAL;
195 }
196
197 ret = adf_cfg_add_key_value_param(accel_dev, ADF_GENERAL_SEC,
198 ADF_PM_IDLE_SUPPORT, &pm_idle_enabled_cfg_val,
199 ADF_DEC);
200 if (ret)
201 return ret;
202
203 return count;
204 }
205 static DEVICE_ATTR_RW(pm_idle_enabled);
206
207 static DEVICE_ATTR_RW(state);
208 static DEVICE_ATTR_RW(cfg_services);
209
210 static struct attribute *qat_attrs[] = {
211 &dev_attr_state.attr,
212 &dev_attr_cfg_services.attr,
213 &dev_attr_pm_idle_enabled.attr,
214 NULL,
215 };
216
217 static struct attribute_group qat_group = {
218 .attrs = qat_attrs,
219 .name = "qat",
220 };
221
adf_sysfs_init(struct adf_accel_dev * accel_dev)222 int adf_sysfs_init(struct adf_accel_dev *accel_dev)
223 {
224 int ret;
225
226 ret = devm_device_add_group(&GET_DEV(accel_dev), &qat_group);
227 if (ret) {
228 dev_err(&GET_DEV(accel_dev),
229 "Failed to create qat attribute group: %d\n", ret);
230 }
231
232 return ret;
233 }
234 EXPORT_SYMBOL_GPL(adf_sysfs_init);
235