pci-ep-cfs.c
7.75 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
/**
* pci-ep-cfs.c - configfs to configure the PCI endpoint
*
* Copyright (C) 2016 Texas Instruments
* Author: Kishon Vijay Abraham I <kishon@ti.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 of
* the License as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <linux/configfs.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/pci-epc.h>
#include <linux/pci-epf.h>
struct pci_epf_info {
struct config_item pci_epf;
struct pci_epf *epf;
};
static inline struct pci_epf_info *to_pci_epf_info(struct config_item *item)
{
return container_of(item, struct pci_epf_info, pci_epf);
}
#define PCI_EPF_HEADER_R(_name) \
static ssize_t pci_epf_##_name##_show(struct config_item *item, \
char *page) \
{ \
return sprintf(page, "0x%04x\n", \
to_pci_epf_info(item)->epf->header->_name); \
}
#define PCI_EPF_HEADER_W_u32(_name) \
static ssize_t pci_epf_##_name##_store(struct config_item *item, \
const char *page, size_t len) \
{ \
u32 val; \
int ret; \
ret = kstrtou32(page, 0, &val); \
if (ret) \
return ret; \
to_pci_epf_info(item)->epf->header->_name = val; \
return len; \
}
#define PCI_EPF_HEADER_W_u16(_name) \
static ssize_t pci_epf_##_name##_store(struct config_item *item, \
const char *page, size_t len) \
{ \
u16 val; \
int ret; \
ret = kstrtou16(page, 0, &val); \
if (ret) \
return ret; \
to_pci_epf_info(item)->epf->header->_name = val; \
return len; \
}
#define PCI_EPF_HEADER_W_u8(_name) \
static ssize_t pci_epf_##_name##_store(struct config_item *item, \
const char *page, size_t len) \
{ \
u8 val; \
int ret; \
ret = kstrtou8(page, 0, &val); \
if (ret) \
return ret; \
to_pci_epf_info(item)->epf->header->_name = val; \
return len; \
}
static ssize_t pci_epf_msi_interrupts_store(struct config_item *item,
const char *page, size_t len)
{
u8 val;
int ret;
ret = kstrtou8(page, 0, &val);
if (ret)
return ret;
to_pci_epf_info(item)->epf->msi_interrupts = val;
return len;
}
static ssize_t pci_epf_msi_interrupts_show(struct config_item *item,
char *page)
{
return sprintf(page, "%d\n",
to_pci_epf_info(item)->epf->msi_interrupts);
}
static ssize_t pci_epf_peripheral_store(struct config_item *item,
const char *page, size_t len)
{
struct pci_epf_info *epf_info = to_pci_epf_info(item);
char *dev_name;
dev_name = kstrdup(page, GFP_KERNEL);
if (!dev_name)
return -ENOMEM;
if (dev_name[len - 1] == '\n')
dev_name[len - 1] = '\0';
epf_info->epf->hw_devname = dev_name;
return len;
}
static ssize_t pci_epf_peripheral_show(struct config_item *item,
char *page)
{
return sprintf(page, "%s\n",
to_pci_epf_info(item)->epf->hw_devname);
}
static ssize_t pci_epf_function_show(struct config_item *item,
char *page)
{
return sprintf(page, "%s\n",
to_pci_epf_info(item)->epf->name);
}
static ssize_t pci_epf_epc_store(struct config_item *item,
const char *page, size_t len)
{
int ret;
struct pci_epf_info *epf_info = to_pci_epf_info(item);
char *epc_name;
epc_name = kstrdup(page, GFP_KERNEL);
if (!epc_name)
return -ENOMEM;
if (epc_name[len - 1] == '\n')
epc_name[len - 1] = '\0';
if (epf_info->epf->epc)
pci_epc_unbind_epf(epf_info->epf);
epf_info->epf->pci_epc_name = epc_name;
ret = pci_epc_bind_epf(epf_info->epf);
if (ret)
return -EINVAL;
return len;
}
static ssize_t pci_epf_epc_show(struct config_item *item,
char *page)
{
return sprintf(page, "%s\n",
to_pci_epf_info(item)->epf->pci_epc_name);
}
PCI_EPF_HEADER_R(vendorid)
PCI_EPF_HEADER_W_u16(vendorid)
PCI_EPF_HEADER_R(deviceid)
PCI_EPF_HEADER_W_u16(deviceid)
PCI_EPF_HEADER_R(revid)
PCI_EPF_HEADER_W_u8(revid)
PCI_EPF_HEADER_R(progif_code)
PCI_EPF_HEADER_W_u8(progif_code)
PCI_EPF_HEADER_R(subclass_code)
PCI_EPF_HEADER_W_u8(subclass_code)
PCI_EPF_HEADER_R(baseclass_code)
PCI_EPF_HEADER_W_u8(baseclass_code)
PCI_EPF_HEADER_R(cache_line_size)
PCI_EPF_HEADER_W_u8(cache_line_size)
PCI_EPF_HEADER_R(subsys_vendor_id)
PCI_EPF_HEADER_W_u16(subsys_vendor_id)
PCI_EPF_HEADER_R(subsys_id)
PCI_EPF_HEADER_W_u16(subsys_id)
PCI_EPF_HEADER_R(interrupt_pin)
PCI_EPF_HEADER_W_u8(interrupt_pin)
CONFIGFS_ATTR(pci_epf_, vendorid);
CONFIGFS_ATTR(pci_epf_, deviceid);
CONFIGFS_ATTR(pci_epf_, revid);
CONFIGFS_ATTR(pci_epf_, progif_code);
CONFIGFS_ATTR(pci_epf_, subclass_code);
CONFIGFS_ATTR(pci_epf_, baseclass_code);
CONFIGFS_ATTR(pci_epf_, cache_line_size);
CONFIGFS_ATTR(pci_epf_, subsys_vendor_id);
CONFIGFS_ATTR(pci_epf_, subsys_id);
CONFIGFS_ATTR(pci_epf_, interrupt_pin);
CONFIGFS_ATTR(pci_epf_, msi_interrupts);
CONFIGFS_ATTR(pci_epf_, peripheral);
CONFIGFS_ATTR_RO(pci_epf_, function);
CONFIGFS_ATTR(pci_epf_, epc);
static struct configfs_attribute *pci_epf_attrs[] = {
&pci_epf_attr_vendorid,
&pci_epf_attr_deviceid,
&pci_epf_attr_revid,
&pci_epf_attr_progif_code,
&pci_epf_attr_subclass_code,
&pci_epf_attr_baseclass_code,
&pci_epf_attr_cache_line_size,
&pci_epf_attr_subsys_vendor_id,
&pci_epf_attr_subsys_id,
&pci_epf_attr_interrupt_pin,
&pci_epf_attr_msi_interrupts,
&pci_epf_attr_peripheral,
&pci_epf_attr_function,
&pci_epf_attr_epc,
NULL,
};
static void pci_epf_release(struct config_item *item)
{
struct pci_epf_info *epf_info = to_pci_epf_info(item);
pci_epf_destroy(epf_info->epf);
kfree(epf_info);
}
static struct configfs_item_operations pci_epf_ops = {
.release = pci_epf_release,
};
static struct config_item_type pci_epf_type = {
.ct_item_ops = &pci_epf_ops,
.ct_attrs = pci_epf_attrs,
.ct_owner = THIS_MODULE,
};
static struct config_item *pci_epf_make(struct config_group *group,
const char *name)
{
struct pci_epf_info *epf_info;
struct pci_epf *epf;
epf_info = kzalloc(sizeof(*epf_info), GFP_KERNEL);
if (!epf_info)
return ERR_PTR(-ENOMEM);
epf = pci_epf_create(name);
if (IS_ERR(epf)) {
pr_err("failed to create endpoint function device\n");
return ERR_PTR(-EINVAL);
}
epf_info->epf = epf;
config_item_init_type_name(&epf_info->pci_epf, name,
&pci_epf_type);
return &epf_info->pci_epf;
}
static struct configfs_group_operations pci_ep_ops = {
.make_item = pci_epf_make,
};
static struct config_item_type pci_ep_type = {
.ct_group_ops = &pci_ep_ops,
.ct_owner = THIS_MODULE,
};
static struct configfs_subsystem pci_ep_cfs_subsys = {
.su_group = {
.cg_item = {
.ci_namebuf = "pci_ep",
.ci_type = &pci_ep_type,
},
},
.su_mutex = __MUTEX_INITIALIZER(pci_ep_cfs_subsys.su_mutex),
};
static int __init pci_ep_cfs_init(void)
{
int ret;
config_group_init(&pci_ep_cfs_subsys.su_group);
ret = configfs_register_subsystem(&pci_ep_cfs_subsys);
if (ret)
pr_err("Error %d while registering subsystem %s\n",
ret, pci_ep_cfs_subsys.su_group.cg_item.ci_namebuf);
return ret;
}
module_init(pci_ep_cfs_init);
static void __exit pci_ep_cfs_exit(void)
{
configfs_unregister_subsystem(&pci_ep_cfs_subsys);
}
module_exit(pci_ep_cfs_exit);
MODULE_DESCRIPTION("PCI EP CONFIGFS");
MODULE_AUTHOR("Kishon Vijay Abraham I <kishon@ti.com>");
MODULE_LICENSE("GPL v2");