Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1// SPDX-License-Identifier: GPL-2.0-only
2/* Copyright(c) 2020 Intel Corporation. */
3
4#include <linux/device.h>
5#include <linux/slab.h>
6#include <linux/idr.h>
7#include <linux/pci.h>
8#include <cxlmem.h>
9#include "core.h"
10
11static DECLARE_RWSEM(cxl_memdev_rwsem);
12
13/*
14 * An entire PCI topology full of devices should be enough for any
15 * config
16 */
17#define CXL_MEM_MAX_DEVS 65536
18
19static int cxl_mem_major;
20static DEFINE_IDA(cxl_memdev_ida);
21
22static void cxl_memdev_release(struct device *dev)
23{
24 struct cxl_memdev *cxlmd = to_cxl_memdev(dev);
25
26 ida_free(&cxl_memdev_ida, cxlmd->id);
27 kfree(cxlmd);
28}
29
30static char *cxl_memdev_devnode(struct device *dev, umode_t *mode, kuid_t *uid,
31 kgid_t *gid)
32{
33 return kasprintf(GFP_KERNEL, "cxl/%s", dev_name(dev));
34}
35
36static ssize_t firmware_version_show(struct device *dev,
37 struct device_attribute *attr, char *buf)
38{
39 struct cxl_memdev *cxlmd = to_cxl_memdev(dev);
40 struct cxl_dev_state *cxlds = cxlmd->cxlds;
41
42 return sysfs_emit(buf, "%.16s\n", cxlds->firmware_version);
43}
44static DEVICE_ATTR_RO(firmware_version);
45
46static ssize_t payload_max_show(struct device *dev,
47 struct device_attribute *attr, char *buf)
48{
49 struct cxl_memdev *cxlmd = to_cxl_memdev(dev);
50 struct cxl_dev_state *cxlds = cxlmd->cxlds;
51
52 return sysfs_emit(buf, "%zu\n", cxlds->payload_size);
53}
54static DEVICE_ATTR_RO(payload_max);
55
56static ssize_t label_storage_size_show(struct device *dev,
57 struct device_attribute *attr, char *buf)
58{
59 struct cxl_memdev *cxlmd = to_cxl_memdev(dev);
60 struct cxl_dev_state *cxlds = cxlmd->cxlds;
61
62 return sysfs_emit(buf, "%zu\n", cxlds->lsa_size);
63}
64static DEVICE_ATTR_RO(label_storage_size);
65
66static ssize_t ram_size_show(struct device *dev, struct device_attribute *attr,
67 char *buf)
68{
69 struct cxl_memdev *cxlmd = to_cxl_memdev(dev);
70 struct cxl_dev_state *cxlds = cxlmd->cxlds;
71 unsigned long long len = range_len(&cxlds->ram_range);
72
73 return sysfs_emit(buf, "%#llx\n", len);
74}
75
76static struct device_attribute dev_attr_ram_size =
77 __ATTR(size, 0444, ram_size_show, NULL);
78
79static ssize_t pmem_size_show(struct device *dev, struct device_attribute *attr,
80 char *buf)
81{
82 struct cxl_memdev *cxlmd = to_cxl_memdev(dev);
83 struct cxl_dev_state *cxlds = cxlmd->cxlds;
84 unsigned long long len = range_len(&cxlds->pmem_range);
85
86 return sysfs_emit(buf, "%#llx\n", len);
87}
88
89static struct device_attribute dev_attr_pmem_size =
90 __ATTR(size, 0444, pmem_size_show, NULL);
91
92static ssize_t serial_show(struct device *dev, struct device_attribute *attr,
93 char *buf)
94{
95 struct cxl_memdev *cxlmd = to_cxl_memdev(dev);
96 struct cxl_dev_state *cxlds = cxlmd->cxlds;
97
98 return sysfs_emit(buf, "%#llx\n", cxlds->serial);
99}
100static DEVICE_ATTR_RO(serial);
101
102static ssize_t numa_node_show(struct device *dev, struct device_attribute *attr,
103 char *buf)
104{
105 return sprintf(buf, "%d\n", dev_to_node(dev));
106}
107static DEVICE_ATTR_RO(numa_node);
108
109static struct attribute *cxl_memdev_attributes[] = {
110 &dev_attr_serial.attr,
111 &dev_attr_firmware_version.attr,
112 &dev_attr_payload_max.attr,
113 &dev_attr_label_storage_size.attr,
114 &dev_attr_numa_node.attr,
115 NULL,
116};
117
118static struct attribute *cxl_memdev_pmem_attributes[] = {
119 &dev_attr_pmem_size.attr,
120 NULL,
121};
122
123static struct attribute *cxl_memdev_ram_attributes[] = {
124 &dev_attr_ram_size.attr,
125 NULL,
126};
127
128static umode_t cxl_memdev_visible(struct kobject *kobj, struct attribute *a,
129 int n)
130{
131 if (!IS_ENABLED(CONFIG_NUMA) && a == &dev_attr_numa_node.attr)
132 return 0;
133 return a->mode;
134}
135
136static struct attribute_group cxl_memdev_attribute_group = {
137 .attrs = cxl_memdev_attributes,
138 .is_visible = cxl_memdev_visible,
139};
140
141static struct attribute_group cxl_memdev_ram_attribute_group = {
142 .name = "ram",
143 .attrs = cxl_memdev_ram_attributes,
144};
145
146static struct attribute_group cxl_memdev_pmem_attribute_group = {
147 .name = "pmem",
148 .attrs = cxl_memdev_pmem_attributes,
149};
150
151static const struct attribute_group *cxl_memdev_attribute_groups[] = {
152 &cxl_memdev_attribute_group,
153 &cxl_memdev_ram_attribute_group,
154 &cxl_memdev_pmem_attribute_group,
155 NULL,
156};
157
158static const struct device_type cxl_memdev_type = {
159 .name = "cxl_memdev",
160 .release = cxl_memdev_release,
161 .devnode = cxl_memdev_devnode,
162 .groups = cxl_memdev_attribute_groups,
163};
164
165bool is_cxl_memdev(struct device *dev)
166{
167 return dev->type == &cxl_memdev_type;
168}
169EXPORT_SYMBOL_NS_GPL(is_cxl_memdev, CXL);
170
171/**
172 * set_exclusive_cxl_commands() - atomically disable user cxl commands
173 * @cxlds: The device state to operate on
174 * @cmds: bitmap of commands to mark exclusive
175 *
176 * Grab the cxl_memdev_rwsem in write mode to flush in-flight
177 * invocations of the ioctl path and then disable future execution of
178 * commands with the command ids set in @cmds.
179 */
180void set_exclusive_cxl_commands(struct cxl_dev_state *cxlds, unsigned long *cmds)
181{
182 down_write(&cxl_memdev_rwsem);
183 bitmap_or(cxlds->exclusive_cmds, cxlds->exclusive_cmds, cmds,
184 CXL_MEM_COMMAND_ID_MAX);
185 up_write(&cxl_memdev_rwsem);
186}
187EXPORT_SYMBOL_NS_GPL(set_exclusive_cxl_commands, CXL);
188
189/**
190 * clear_exclusive_cxl_commands() - atomically enable user cxl commands
191 * @cxlds: The device state to modify
192 * @cmds: bitmap of commands to mark available for userspace
193 */
194void clear_exclusive_cxl_commands(struct cxl_dev_state *cxlds, unsigned long *cmds)
195{
196 down_write(&cxl_memdev_rwsem);
197 bitmap_andnot(cxlds->exclusive_cmds, cxlds->exclusive_cmds, cmds,
198 CXL_MEM_COMMAND_ID_MAX);
199 up_write(&cxl_memdev_rwsem);
200}
201EXPORT_SYMBOL_NS_GPL(clear_exclusive_cxl_commands, CXL);
202
203static void cxl_memdev_shutdown(struct device *dev)
204{
205 struct cxl_memdev *cxlmd = to_cxl_memdev(dev);
206
207 down_write(&cxl_memdev_rwsem);
208 cxlmd->cxlds = NULL;
209 up_write(&cxl_memdev_rwsem);
210}
211
212static void cxl_memdev_unregister(void *_cxlmd)
213{
214 struct cxl_memdev *cxlmd = _cxlmd;
215 struct device *dev = &cxlmd->dev;
216
217 cxl_memdev_shutdown(dev);
218 cdev_device_del(&cxlmd->cdev, dev);
219 put_device(dev);
220}
221
222static void detach_memdev(struct work_struct *work)
223{
224 struct cxl_memdev *cxlmd;
225
226 cxlmd = container_of(work, typeof(*cxlmd), detach_work);
227 device_release_driver(&cxlmd->dev);
228 put_device(&cxlmd->dev);
229}
230
231static struct cxl_memdev *cxl_memdev_alloc(struct cxl_dev_state *cxlds,
232 const struct file_operations *fops)
233{
234 struct cxl_memdev *cxlmd;
235 struct device *dev;
236 struct cdev *cdev;
237 int rc;
238
239 cxlmd = kzalloc(sizeof(*cxlmd), GFP_KERNEL);
240 if (!cxlmd)
241 return ERR_PTR(-ENOMEM);
242
243 rc = ida_alloc_range(&cxl_memdev_ida, 0, CXL_MEM_MAX_DEVS, GFP_KERNEL);
244 if (rc < 0)
245 goto err;
246 cxlmd->id = rc;
247
248 dev = &cxlmd->dev;
249 device_initialize(dev);
250 dev->parent = cxlds->dev;
251 dev->bus = &cxl_bus_type;
252 dev->devt = MKDEV(cxl_mem_major, cxlmd->id);
253 dev->type = &cxl_memdev_type;
254 device_set_pm_not_required(dev);
255 INIT_WORK(&cxlmd->detach_work, detach_memdev);
256
257 cdev = &cxlmd->cdev;
258 cdev_init(cdev, fops);
259 return cxlmd;
260
261err:
262 kfree(cxlmd);
263 return ERR_PTR(rc);
264}
265
266static long __cxl_memdev_ioctl(struct cxl_memdev *cxlmd, unsigned int cmd,
267 unsigned long arg)
268{
269 switch (cmd) {
270 case CXL_MEM_QUERY_COMMANDS:
271 return cxl_query_cmd(cxlmd, (void __user *)arg);
272 case CXL_MEM_SEND_COMMAND:
273 return cxl_send_cmd(cxlmd, (void __user *)arg);
274 default:
275 return -ENOTTY;
276 }
277}
278
279static long cxl_memdev_ioctl(struct file *file, unsigned int cmd,
280 unsigned long arg)
281{
282 struct cxl_memdev *cxlmd = file->private_data;
283 int rc = -ENXIO;
284
285 down_read(&cxl_memdev_rwsem);
286 if (cxlmd->cxlds)
287 rc = __cxl_memdev_ioctl(cxlmd, cmd, arg);
288 up_read(&cxl_memdev_rwsem);
289
290 return rc;
291}
292
293static int cxl_memdev_open(struct inode *inode, struct file *file)
294{
295 struct cxl_memdev *cxlmd =
296 container_of(inode->i_cdev, typeof(*cxlmd), cdev);
297
298 get_device(&cxlmd->dev);
299 file->private_data = cxlmd;
300
301 return 0;
302}
303
304static int cxl_memdev_release_file(struct inode *inode, struct file *file)
305{
306 struct cxl_memdev *cxlmd =
307 container_of(inode->i_cdev, typeof(*cxlmd), cdev);
308
309 put_device(&cxlmd->dev);
310
311 return 0;
312}
313
314static const struct file_operations cxl_memdev_fops = {
315 .owner = THIS_MODULE,
316 .unlocked_ioctl = cxl_memdev_ioctl,
317 .open = cxl_memdev_open,
318 .release = cxl_memdev_release_file,
319 .compat_ioctl = compat_ptr_ioctl,
320 .llseek = noop_llseek,
321};
322
323struct cxl_memdev *devm_cxl_add_memdev(struct cxl_dev_state *cxlds)
324{
325 struct cxl_memdev *cxlmd;
326 struct device *dev;
327 struct cdev *cdev;
328 int rc;
329
330 cxlmd = cxl_memdev_alloc(cxlds, &cxl_memdev_fops);
331 if (IS_ERR(cxlmd))
332 return cxlmd;
333
334 dev = &cxlmd->dev;
335 rc = dev_set_name(dev, "mem%d", cxlmd->id);
336 if (rc)
337 goto err;
338
339 /*
340 * Activate ioctl operations, no cxl_memdev_rwsem manipulation
341 * needed as this is ordered with cdev_add() publishing the device.
342 */
343 cxlmd->cxlds = cxlds;
344
345 cdev = &cxlmd->cdev;
346 rc = cdev_device_add(cdev, dev);
347 if (rc)
348 goto err;
349
350 rc = devm_add_action_or_reset(cxlds->dev, cxl_memdev_unregister, cxlmd);
351 if (rc)
352 return ERR_PTR(rc);
353 return cxlmd;
354
355err:
356 /*
357 * The cdev was briefly live, shutdown any ioctl operations that
358 * saw that state.
359 */
360 cxl_memdev_shutdown(dev);
361 put_device(dev);
362 return ERR_PTR(rc);
363}
364EXPORT_SYMBOL_NS_GPL(devm_cxl_add_memdev, CXL);
365
366__init int cxl_memdev_init(void)
367{
368 dev_t devt;
369 int rc;
370
371 rc = alloc_chrdev_region(&devt, 0, CXL_MEM_MAX_DEVS, "cxl");
372 if (rc)
373 return rc;
374
375 cxl_mem_major = MAJOR(devt);
376
377 return 0;
378}
379
380void cxl_memdev_exit(void)
381{
382 unregister_chrdev_region(MKDEV(cxl_mem_major, 0), CXL_MEM_MAX_DEVS);
383}