blob: 42790760ade13987a4c9e10786162d3ad1271f58 [file] [log] [blame]
Tadeusz Strukd8cba252014-06-05 13:42:39 -07001/*
2 This file is provided under a dual BSD/GPLv2 license. When using or
3 redistributing this file, you may do so under either license.
4
5 GPL LICENSE SUMMARY
6 Copyright(c) 2014 Intel Corporation.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of version 2 of the GNU General Public License as
9 published by the Free Software Foundation.
10
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 Contact Information:
17 qat-linux@intel.com
18
19 BSD LICENSE
20 Copyright(c) 2014 Intel Corporation.
21 Redistribution and use in source and binary forms, with or without
22 modification, are permitted provided that the following conditions
23 are met:
24
25 * Redistributions of source code must retain the above copyright
26 notice, this list of conditions and the following disclaimer.
27 * Redistributions in binary form must reproduce the above copyright
28 notice, this list of conditions and the following disclaimer in
29 the documentation and/or other materials provided with the
30 distribution.
31 * Neither the name of Intel Corporation nor the names of its
32 contributors may be used to endorse or promote products derived
33 from this software without specific prior written permission.
34
35 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
36 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
38 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
39 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
42 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
43 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
44 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
45 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
46*/
47#include <linux/mutex.h>
48#include <linux/slab.h>
49#include <linux/list.h>
50#include <linux/seq_file.h>
51#include "adf_accel_devices.h"
52#include "adf_common_drv.h"
53#include "adf_cfg.h"
54
55static DEFINE_MUTEX(qat_cfg_read_lock);
56
57static void *qat_dev_cfg_start(struct seq_file *sfile, loff_t *pos)
58{
59 struct adf_cfg_device_data *dev_cfg = sfile->private;
Tadeusz Strukd65071e2014-06-24 15:19:34 -070060
Tadeusz Strukd8cba252014-06-05 13:42:39 -070061 mutex_lock(&qat_cfg_read_lock);
62 return seq_list_start(&dev_cfg->sec_list, *pos);
63}
64
65static int qat_dev_cfg_show(struct seq_file *sfile, void *v)
66{
67 struct list_head *list;
68 struct adf_cfg_section *sec =
69 list_entry(v, struct adf_cfg_section, list);
70
71 seq_printf(sfile, "[%s]\n", sec->name);
72 list_for_each(list, &sec->param_head) {
73 struct adf_cfg_key_val *ptr =
74 list_entry(list, struct adf_cfg_key_val, list);
75 seq_printf(sfile, "%s = %s\n", ptr->key, ptr->val);
76 }
77 return 0;
78}
79
80static void *qat_dev_cfg_next(struct seq_file *sfile, void *v, loff_t *pos)
81{
82 struct adf_cfg_device_data *dev_cfg = sfile->private;
Tadeusz Strukd65071e2014-06-24 15:19:34 -070083
Tadeusz Strukd8cba252014-06-05 13:42:39 -070084 return seq_list_next(v, &dev_cfg->sec_list, pos);
85}
86
87static void qat_dev_cfg_stop(struct seq_file *sfile, void *v)
88{
89 mutex_unlock(&qat_cfg_read_lock);
90}
91
92static const struct seq_operations qat_dev_cfg_sops = {
93 .start = qat_dev_cfg_start,
94 .next = qat_dev_cfg_next,
95 .stop = qat_dev_cfg_stop,
96 .show = qat_dev_cfg_show
97};
98
99static int qat_dev_cfg_open(struct inode *inode, struct file *file)
100{
101 int ret = seq_open(file, &qat_dev_cfg_sops);
102
103 if (!ret) {
104 struct seq_file *seq_f = file->private_data;
Tadeusz Strukd65071e2014-06-24 15:19:34 -0700105
Tadeusz Strukd8cba252014-06-05 13:42:39 -0700106 seq_f->private = inode->i_private;
107 }
108 return ret;
109}
110
111static const struct file_operations qat_dev_cfg_fops = {
112 .open = qat_dev_cfg_open,
113 .read = seq_read,
114 .llseek = seq_lseek,
115 .release = seq_release
116};
117
118/**
119 * adf_cfg_dev_add() - Create an acceleration device configuration table.
120 * @accel_dev: Pointer to acceleration device.
121 *
122 * Function creates a configuration table for the given acceleration device.
123 * The table stores device specific config values.
124 * To be used by QAT device specific drivers.
125 *
126 * Return: 0 on success, error code othewise.
127 */
128int adf_cfg_dev_add(struct adf_accel_dev *accel_dev)
129{
130 struct adf_cfg_device_data *dev_cfg_data;
131
132 dev_cfg_data = kzalloc(sizeof(*dev_cfg_data), GFP_KERNEL);
133 if (!dev_cfg_data)
134 return -ENOMEM;
135 INIT_LIST_HEAD(&dev_cfg_data->sec_list);
136 init_rwsem(&dev_cfg_data->lock);
137 accel_dev->cfg = dev_cfg_data;
138
139 /* accel_dev->debugfs_dir should always be non-NULL here */
140 dev_cfg_data->debug = debugfs_create_file("dev_cfg", S_IRUSR,
141 accel_dev->debugfs_dir,
142 dev_cfg_data,
143 &qat_dev_cfg_fops);
144 if (!dev_cfg_data->debug) {
145 pr_err("QAT: Failed to create qat cfg debugfs entry.\n");
146 kfree(dev_cfg_data);
147 accel_dev->cfg = NULL;
148 return -EFAULT;
149 }
150 return 0;
151}
152EXPORT_SYMBOL_GPL(adf_cfg_dev_add);
153
154static void adf_cfg_section_del_all(struct list_head *head);
155
156void adf_cfg_del_all(struct adf_accel_dev *accel_dev)
157{
158 struct adf_cfg_device_data *dev_cfg_data = accel_dev->cfg;
159
160 down_write(&dev_cfg_data->lock);
161 adf_cfg_section_del_all(&dev_cfg_data->sec_list);
162 up_write(&dev_cfg_data->lock);
163}
164
165/**
166 * adf_cfg_dev_remove() - Clears acceleration device configuration table.
167 * @accel_dev: Pointer to acceleration device.
168 *
169 * Function removes configuration table from the given acceleration device
170 * and frees all allocated memory.
171 * To be used by QAT device specific drivers.
172 *
173 * Return: void
174 */
175void adf_cfg_dev_remove(struct adf_accel_dev *accel_dev)
176{
177 struct adf_cfg_device_data *dev_cfg_data = accel_dev->cfg;
178
179 down_write(&dev_cfg_data->lock);
180 adf_cfg_section_del_all(&dev_cfg_data->sec_list);
181 up_write(&dev_cfg_data->lock);
182 debugfs_remove(dev_cfg_data->debug);
183 kfree(dev_cfg_data);
184 accel_dev->cfg = NULL;
185}
186EXPORT_SYMBOL_GPL(adf_cfg_dev_remove);
187
188static void adf_cfg_keyval_add(struct adf_cfg_key_val *new,
189 struct adf_cfg_section *sec)
190{
191 list_add_tail(&new->list, &sec->param_head);
192}
193
194static void adf_cfg_keyval_del_all(struct list_head *head)
195{
196 struct list_head *list_ptr, *tmp;
197
198 list_for_each_prev_safe(list_ptr, tmp, head) {
199 struct adf_cfg_key_val *ptr =
200 list_entry(list_ptr, struct adf_cfg_key_val, list);
201 list_del(list_ptr);
202 kfree(ptr);
203 }
204}
205
206static void adf_cfg_section_del_all(struct list_head *head)
207{
208 struct adf_cfg_section *ptr;
209 struct list_head *list, *tmp;
210
211 list_for_each_prev_safe(list, tmp, head) {
212 ptr = list_entry(list, struct adf_cfg_section, list);
213 adf_cfg_keyval_del_all(&ptr->param_head);
214 list_del(list);
215 kfree(ptr);
216 }
217}
218
219static struct adf_cfg_key_val *adf_cfg_key_value_find(struct adf_cfg_section *s,
220 const char *key)
221{
222 struct list_head *list;
223
224 list_for_each(list, &s->param_head) {
225 struct adf_cfg_key_val *ptr =
226 list_entry(list, struct adf_cfg_key_val, list);
227 if (!strcmp(ptr->key, key))
228 return ptr;
229 }
230 return NULL;
231}
232
233static struct adf_cfg_section *adf_cfg_sec_find(struct adf_accel_dev *accel_dev,
234 const char *sec_name)
235{
236 struct adf_cfg_device_data *cfg = accel_dev->cfg;
237 struct list_head *list;
238
239 list_for_each(list, &cfg->sec_list) {
240 struct adf_cfg_section *ptr =
241 list_entry(list, struct adf_cfg_section, list);
242 if (!strcmp(ptr->name, sec_name))
243 return ptr;
244 }
245 return NULL;
246}
247
248static int adf_cfg_key_val_get(struct adf_accel_dev *accel_dev,
249 const char *sec_name,
250 const char *key_name,
251 char *val)
252{
253 struct adf_cfg_section *sec = adf_cfg_sec_find(accel_dev, sec_name);
254 struct adf_cfg_key_val *keyval = NULL;
255
256 if (sec)
257 keyval = adf_cfg_key_value_find(sec, key_name);
258 if (keyval) {
259 memcpy(val, keyval->val, ADF_CFG_MAX_VAL_LEN_IN_BYTES);
260 return 0;
261 }
262 return -1;
263}
264
265/**
266 * adf_cfg_add_key_value_param() - Add key-value config entry to config table.
267 * @accel_dev: Pointer to acceleration device.
268 * @section_name: Name of the section where the param will be added
269 * @key: The key string
270 * @val: Value pain for the given @key
271 * @type: Type - string, int or address
272 *
273 * Function adds configuration key - value entry in the appropriate section
274 * in the given acceleration device
275 * To be used by QAT device specific drivers.
276 *
277 * Return: 0 on success, error code othewise.
278 */
279int adf_cfg_add_key_value_param(struct adf_accel_dev *accel_dev,
280 const char *section_name,
281 const char *key, const void *val,
282 enum adf_cfg_val_type type)
283{
284 struct adf_cfg_device_data *cfg = accel_dev->cfg;
285 struct adf_cfg_key_val *key_val;
286 struct adf_cfg_section *section = adf_cfg_sec_find(accel_dev,
287 section_name);
288 if (!section)
289 return -EFAULT;
290
291 key_val = kzalloc(sizeof(*key_val), GFP_KERNEL);
292 if (!key_val)
293 return -ENOMEM;
294
295 INIT_LIST_HEAD(&key_val->list);
296 strlcpy(key_val->key, key, sizeof(key_val->key));
297
298 if (type == ADF_DEC) {
299 snprintf(key_val->val, ADF_CFG_MAX_VAL_LEN_IN_BYTES,
300 "%ld", (*((long *)val)));
301 } else if (type == ADF_STR) {
302 strlcpy(key_val->val, (char *)val, sizeof(key_val->val));
303 } else if (type == ADF_HEX) {
304 snprintf(key_val->val, ADF_CFG_MAX_VAL_LEN_IN_BYTES,
305 "0x%lx", (unsigned long)val);
306 } else {
307 pr_err("QAT: Unknown type given.\n");
308 kfree(key_val);
309 return -1;
310 }
311 key_val->type = type;
312 down_write(&cfg->lock);
313 adf_cfg_keyval_add(key_val, section);
314 up_write(&cfg->lock);
315 return 0;
316}
317EXPORT_SYMBOL_GPL(adf_cfg_add_key_value_param);
318
319/**
320 * adf_cfg_section_add() - Add config section entry to config table.
321 * @accel_dev: Pointer to acceleration device.
322 * @name: Name of the section
323 *
324 * Function adds configuration section where key - value entries
325 * will be stored.
326 * To be used by QAT device specific drivers.
327 *
328 * Return: 0 on success, error code othewise.
329 */
330int adf_cfg_section_add(struct adf_accel_dev *accel_dev, const char *name)
331{
332 struct adf_cfg_device_data *cfg = accel_dev->cfg;
333 struct adf_cfg_section *sec = adf_cfg_sec_find(accel_dev, name);
334
335 if (sec)
336 return 0;
337
338 sec = kzalloc(sizeof(*sec), GFP_KERNEL);
339 if (!sec)
340 return -ENOMEM;
341
342 strlcpy(sec->name, name, sizeof(sec->name));
343 INIT_LIST_HEAD(&sec->param_head);
344 down_write(&cfg->lock);
345 list_add_tail(&sec->list, &cfg->sec_list);
346 up_write(&cfg->lock);
347 return 0;
348}
349EXPORT_SYMBOL_GPL(adf_cfg_section_add);
350
351int adf_cfg_get_param_value(struct adf_accel_dev *accel_dev,
352 const char *section, const char *name,
353 char *value)
354{
355 struct adf_cfg_device_data *cfg = accel_dev->cfg;
356 int ret;
357
358 down_read(&cfg->lock);
359 ret = adf_cfg_key_val_get(accel_dev, section, name, value);
360 up_read(&cfg->lock);
361 return ret;
362}