3 * /proc support for DRM
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
8 * \par Acknowledgements:
9 * Matthew J Sottek <matthew.j.sottek@intel.com> sent in a patch to fix
10 * the problem with the proc files not outputting all their information.
14 * Created: Mon Jan 11 09:48:47 1999 by faith@valinux.com
16 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
17 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
18 * All Rights Reserved.
20 * Permission is hereby granted, free of charge, to any person obtaining a
21 * copy of this software and associated documentation files (the "Software"),
22 * to deal in the Software without restriction, including without limitation
23 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
24 * and/or sell copies of the Software, and to permit persons to whom the
25 * Software is furnished to do so, subject to the following conditions:
27 * The above copyright notice and this permission notice (including the next
28 * paragraph) shall be included in all copies or substantial portions of the
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
32 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
33 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
34 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
35 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
36 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
37 * OTHER DEALINGS IN THE SOFTWARE.
42 static int drm_name_info(char *buf, char **start, off_t offset,
43 int request, int *eof, void *data);
44 static int drm_vm_info(char *buf, char **start, off_t offset,
45 int request, int *eof, void *data);
46 static int drm_clients_info(char *buf, char **start, off_t offset,
47 int request, int *eof, void *data);
48 static int drm_queues_info(char *buf, char **start, off_t offset,
49 int request, int *eof, void *data);
50 static int drm_bufs_info(char *buf, char **start, off_t offset,
51 int request, int *eof, void *data);
53 static int drm_vma_info(char *buf, char **start, off_t offset,
54 int request, int *eof, void *data);
60 static struct drm_proc_list {
61 const char *name; /**< file name */
62 int (*f)(char *, char **, off_t, int, int *, void *); /**< proc callback*/
64 { "name", drm_name_info },
65 { "mem", drm_mem_info },
66 { "vm", drm_vm_info },
67 { "clients", drm_clients_info },
68 { "queues", drm_queues_info },
69 { "bufs", drm_bufs_info },
71 { "vma", drm_vma_info },
74 #define DRM_PROC_ENTRIES (sizeof(drm_proc_list)/sizeof(drm_proc_list[0]))
77 * Initialize the DRI proc filesystem for a device.
79 * \param dev DRM device.
80 * \param minor device minor number.
81 * \param root DRI proc dir entry.
82 * \param dev_root resulting DRI device proc dir entry.
83 * \return root entry pointer on success, or NULL on failure.
85 * Create the DRI proc root entry "/proc/dri", the device proc root entry
86 * "/proc/dri/%minor%/", and each entry in proc_list as
87 * "/proc/dri/%minor%/%name%".
89 int drm_proc_init(drm_device_t *dev, int minor,
90 struct proc_dir_entry *root,
91 struct proc_dir_entry **dev_root)
93 struct proc_dir_entry *ent;
97 sprintf(name, "%d", minor);
98 *dev_root = create_proc_entry(name, S_IFDIR, root);
100 DRM_ERROR("Cannot create /proc/dri/%s\n", name);
104 for (i = 0; i < DRM_PROC_ENTRIES; i++) {
105 ent = create_proc_entry(drm_proc_list[i].name,
106 S_IFREG|S_IRUGO, *dev_root);
108 DRM_ERROR("Cannot create /proc/dri/%s/%s\n",
109 name, drm_proc_list[i].name);
110 for (j = 0; j < i; j++)
111 remove_proc_entry(drm_proc_list[i].name,
113 remove_proc_entry(name, root);
116 ent->read_proc = drm_proc_list[i].f;
125 * Cleanup the proc filesystem resources.
127 * \param minor device minor number.
128 * \param root DRI proc dir entry.
129 * \param dev_root DRI device proc dir entry.
130 * \return always zero.
132 * Remove all proc entries created by proc_init().
134 int drm_proc_cleanup(int minor, struct proc_dir_entry *root,
135 struct proc_dir_entry *dev_root)
140 if (!root || !dev_root) return 0;
142 for (i = 0; i < DRM_PROC_ENTRIES; i++)
143 remove_proc_entry(drm_proc_list[i].name, dev_root);
144 sprintf(name, "%d", minor);
145 remove_proc_entry(name, root);
151 * Called when "/proc/dri/.../name" is read.
153 * \param buf output buffer.
154 * \param start start of output data.
155 * \param offset requested start offset.
156 * \param request requested number of bytes.
157 * \param eof whether there is no more data to return.
158 * \param data private data.
159 * \return number of written bytes.
161 * Prints the device name together with the bus id if available.
163 static int drm_name_info(char *buf, char **start, off_t offset, int request,
164 int *eof, void *data)
166 drm_device_t *dev = (drm_device_t *)data;
169 if (offset > DRM_PROC_LIMIT) {
174 *start = &buf[offset];
178 DRM_PROC_PRINT("%s %s %s\n",
179 dev->driver->pci_driver.name, pci_name(dev->pdev), dev->unique);
181 DRM_PROC_PRINT("%s %s\n", dev->driver->pci_driver.name, pci_name(dev->pdev));
184 if (len > request + offset) return request;
190 * Called when "/proc/dri/.../vm" is read.
192 * \param buf output buffer.
193 * \param start start of output data.
194 * \param offset requested start offset.
195 * \param request requested number of bytes.
196 * \param eof whether there is no more data to return.
197 * \param data private data.
198 * \return number of written bytes.
200 * Prints information about all mappings in drm_device::maplist.
202 static int drm__vm_info(char *buf, char **start, off_t offset, int request,
203 int *eof, void *data)
205 drm_device_t *dev = (drm_device_t *)data;
208 drm_map_list_t *r_list;
209 struct list_head *list;
211 /* Hardcoded from _DRM_FRAME_BUFFER,
212 _DRM_REGISTERS, _DRM_SHM, _DRM_AGP, and
213 _DRM_SCATTER_GATHER. */
214 const char *types[] = { "FB", "REG", "SHM", "AGP", "SG" };
218 if (offset > DRM_PROC_LIMIT) {
223 *start = &buf[offset];
226 DRM_PROC_PRINT("slot offset size type flags "
229 if (dev->maplist != NULL) list_for_each(list, &dev->maplist->head) {
230 r_list = list_entry(list, drm_map_list_t, head);
233 if (map->type < 0 || map->type > 4) type = "??";
234 else type = types[map->type];
235 DRM_PROC_PRINT("%4d 0x%08lx 0x%08lx %4.4s 0x%02x 0x%08lx ",
241 (unsigned long)map->handle);
243 DRM_PROC_PRINT("none\n");
245 DRM_PROC_PRINT("%4d\n", map->mtrr);
250 if (len > request + offset) return request;
256 * Simply calls _vm_info() while holding the drm_device::struct_sem lock.
258 static int drm_vm_info(char *buf, char **start, off_t offset, int request,
259 int *eof, void *data)
261 drm_device_t *dev = (drm_device_t *)data;
264 down(&dev->struct_sem);
265 ret = drm__vm_info(buf, start, offset, request, eof, data);
266 up(&dev->struct_sem);
271 * Called when "/proc/dri/.../queues" is read.
273 * \param buf output buffer.
274 * \param start start of output data.
275 * \param offset requested start offset.
276 * \param request requested number of bytes.
277 * \param eof whether there is no more data to return.
278 * \param data private data.
279 * \return number of written bytes.
281 static int drm__queues_info(char *buf, char **start, off_t offset,
282 int request, int *eof, void *data)
284 drm_device_t *dev = (drm_device_t *)data;
289 if (offset > DRM_PROC_LIMIT) {
294 *start = &buf[offset];
297 DRM_PROC_PRINT(" ctx/flags use fin"
298 " blk/rw/rwf wait flushed queued"
300 for (i = 0; i < dev->queue_count; i++) {
301 q = dev->queuelist[i];
302 atomic_inc(&q->use_count);
303 DRM_PROC_PRINT_RET(atomic_dec(&q->use_count),
305 " %5d/%c%c/%c%c%c %5Zd\n",
308 atomic_read(&q->use_count),
309 atomic_read(&q->finalization),
310 atomic_read(&q->block_count),
311 atomic_read(&q->block_read) ? 'r' : '-',
312 atomic_read(&q->block_write) ? 'w' : '-',
313 waitqueue_active(&q->read_queue) ? 'r':'-',
314 waitqueue_active(&q->write_queue) ? 'w':'-',
315 waitqueue_active(&q->flush_queue) ? 'f':'-',
316 DRM_BUFCOUNT(&q->waitlist));
317 atomic_dec(&q->use_count);
320 if (len > request + offset) return request;
326 * Simply calls _queues_info() while holding the drm_device::struct_sem lock.
328 static int drm_queues_info(char *buf, char **start, off_t offset, int request,
329 int *eof, void *data)
331 drm_device_t *dev = (drm_device_t *)data;
334 down(&dev->struct_sem);
335 ret = drm__queues_info(buf, start, offset, request, eof, data);
336 up(&dev->struct_sem);
341 * Called when "/proc/dri/.../bufs" is read.
343 * \param buf output buffer.
344 * \param start start of output data.
345 * \param offset requested start offset.
346 * \param request requested number of bytes.
347 * \param eof whether there is no more data to return.
348 * \param data private data.
349 * \return number of written bytes.
351 static int drm__bufs_info(char *buf, char **start, off_t offset, int request,
352 int *eof, void *data)
354 drm_device_t *dev = (drm_device_t *)data;
356 drm_device_dma_t *dma = dev->dma;
359 if (!dma || offset > DRM_PROC_LIMIT) {
364 *start = &buf[offset];
367 DRM_PROC_PRINT(" o size count free segs pages kB\n\n");
368 for (i = 0; i <= DRM_MAX_ORDER; i++) {
369 if (dma->bufs[i].buf_count)
370 DRM_PROC_PRINT("%2d %8d %5d %5d %5d %5d %5ld\n",
372 dma->bufs[i].buf_size,
373 dma->bufs[i].buf_count,
374 atomic_read(&dma->bufs[i]
376 dma->bufs[i].seg_count,
377 dma->bufs[i].seg_count
378 *(1 << dma->bufs[i].page_order),
379 (dma->bufs[i].seg_count
380 * (1 << dma->bufs[i].page_order))
383 DRM_PROC_PRINT("\n");
384 for (i = 0; i < dma->buf_count; i++) {
385 if (i && !(i%32)) DRM_PROC_PRINT("\n");
386 DRM_PROC_PRINT(" %d", dma->buflist[i]->list);
388 DRM_PROC_PRINT("\n");
390 if (len > request + offset) return request;
396 * Simply calls _bufs_info() while holding the drm_device::struct_sem lock.
398 static int drm_bufs_info(char *buf, char **start, off_t offset, int request,
399 int *eof, void *data)
401 drm_device_t *dev = (drm_device_t *)data;
404 down(&dev->struct_sem);
405 ret = drm__bufs_info(buf, start, offset, request, eof, data);
406 up(&dev->struct_sem);
411 * Called when "/proc/dri/.../clients" is read.
413 * \param buf output buffer.
414 * \param start start of output data.
415 * \param offset requested start offset.
416 * \param request requested number of bytes.
417 * \param eof whether there is no more data to return.
418 * \param data private data.
419 * \return number of written bytes.
421 static int drm__clients_info(char *buf, char **start, off_t offset,
422 int request, int *eof, void *data)
424 drm_device_t *dev = (drm_device_t *)data;
428 if (offset > DRM_PROC_LIMIT) {
433 *start = &buf[offset];
436 DRM_PROC_PRINT("a dev pid uid magic ioctls\n\n");
437 for (priv = dev->file_first; priv; priv = priv->next) {
438 DRM_PROC_PRINT("%c %3d %5d %5d %10u %10lu\n",
439 priv->authenticated ? 'y' : 'n',
447 if (len > request + offset) return request;
453 * Simply calls _clients_info() while holding the drm_device::struct_sem lock.
455 static int drm_clients_info(char *buf, char **start, off_t offset,
456 int request, int *eof, void *data)
458 drm_device_t *dev = (drm_device_t *)data;
461 down(&dev->struct_sem);
462 ret = drm__clients_info(buf, start, offset, request, eof, data);
463 up(&dev->struct_sem);
469 static int drm__vma_info(char *buf, char **start, off_t offset, int request,
470 int *eof, void *data)
472 drm_device_t *dev = (drm_device_t *)data;
475 struct vm_area_struct *vma;
476 #if defined(__i386__)
480 if (offset > DRM_PROC_LIMIT) {
485 *start = &buf[offset];
488 DRM_PROC_PRINT("vma use count: %d, high_memory = %p, 0x%08lx\n",
489 atomic_read(&dev->vma_count),
490 high_memory, virt_to_phys(high_memory));
491 for (pt = dev->vmalist; pt; pt = pt->next) {
492 if (!(vma = pt->vma)) continue;
493 DRM_PROC_PRINT("\n%5d 0x%08lx-0x%08lx %c%c%c%c%c%c 0x%08lx",
497 vma->vm_flags & VM_READ ? 'r' : '-',
498 vma->vm_flags & VM_WRITE ? 'w' : '-',
499 vma->vm_flags & VM_EXEC ? 'x' : '-',
500 vma->vm_flags & VM_MAYSHARE ? 's' : 'p',
501 vma->vm_flags & VM_LOCKED ? 'l' : '-',
502 vma->vm_flags & VM_IO ? 'i' : '-',
505 #if defined(__i386__)
506 pgprot = pgprot_val(vma->vm_page_prot);
507 DRM_PROC_PRINT(" %c%c%c%c%c%c%c%c%c",
508 pgprot & _PAGE_PRESENT ? 'p' : '-',
509 pgprot & _PAGE_RW ? 'w' : 'r',
510 pgprot & _PAGE_USER ? 'u' : 's',
511 pgprot & _PAGE_PWT ? 't' : 'b',
512 pgprot & _PAGE_PCD ? 'u' : 'c',
513 pgprot & _PAGE_ACCESSED ? 'a' : '-',
514 pgprot & _PAGE_DIRTY ? 'd' : '-',
515 pgprot & _PAGE_PSE ? 'm' : 'k',
516 pgprot & _PAGE_GLOBAL ? 'g' : 'l' );
518 DRM_PROC_PRINT("\n");
521 if (len > request + offset) return request;
526 static int drm_vma_info(char *buf, char **start, off_t offset, int request,
527 int *eof, void *data)
529 drm_device_t *dev = (drm_device_t *)data;
532 down(&dev->struct_sem);
533 ret = drm__vma_info(buf, start, offset, request, eof, data);
534 up(&dev->struct_sem);