OSDN Git Service

Use SYSCTL_ADD_OID macro instead of calling function directly.
[android-x86/external-libdrm.git] / bsd-core / drm_sysctl.c
1 /* 
2  * Copyright 2003 Eric Anholt
3  * All Rights Reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  * 
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  * 
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19  * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24
25 #include "drmP.h"
26 #include "drm.h"
27
28 #include <sys/sysctl.h>
29
30 static int         drm_name_info DRM_SYSCTL_HANDLER_ARGS;
31 static int         drm_vm_info DRM_SYSCTL_HANDLER_ARGS;
32 static int         drm_clients_info DRM_SYSCTL_HANDLER_ARGS;
33 static int         drm_bufs_info DRM_SYSCTL_HANDLER_ARGS;
34
35 struct drm_sysctl_list {
36         const char *name;
37         int        (*f) DRM_SYSCTL_HANDLER_ARGS;
38 } drm_sysctl_list[] = {
39         {"name",    drm_name_info},
40         {"vm",      drm_vm_info},
41         {"clients", drm_clients_info},
42         {"bufs",    drm_bufs_info},
43 };
44 #define DRM_SYSCTL_ENTRIES (sizeof(drm_sysctl_list)/sizeof(drm_sysctl_list[0]))
45
46 struct drm_sysctl_info {
47         struct sysctl_ctx_list ctx;
48         char                   name[2];
49 };
50
51 int drm_sysctl_init(drm_device_t *dev)
52 {
53         struct drm_sysctl_info *info;
54         struct sysctl_oid *oid;
55         struct sysctl_oid *top, *drioid;
56         int               i;
57
58         info = malloc(sizeof *info, M_DRM, M_WAITOK | M_ZERO);
59         if ( !info )
60                 return 1;
61         dev->sysctl = info;
62
63         /* Add the sysctl node for DRI if it doesn't already exist */
64         drioid = SYSCTL_ADD_NODE( &info->ctx, &sysctl__hw_children, OID_AUTO, "dri", CTLFLAG_RW, NULL, "DRI Graphics");
65         if (!drioid)
66                 return 1;
67
68         /* Find the next free slot under hw.dri */
69         i = 0;
70         SLIST_FOREACH(oid, SYSCTL_CHILDREN(drioid), oid_link) {
71                 if (i <= oid->oid_arg2)
72                         i = oid->oid_arg2 + 1;
73         }
74         if (i>9)
75                 return 1;
76         
77         /* Add the hw.dri.x for our device */
78         info->name[0] = '0' + i;
79         info->name[1] = 0;
80         top = SYSCTL_ADD_NODE( &info->ctx, SYSCTL_CHILDREN(drioid), OID_AUTO, info->name, CTLFLAG_RW, NULL, NULL);
81         if (!top)
82                 return 1;
83         
84         for (i = 0; i < DRM_SYSCTL_ENTRIES; i++) {
85                 oid = SYSCTL_ADD_OID(&info->ctx, 
86                         SYSCTL_CHILDREN(top), 
87                         OID_AUTO, 
88                         drm_sysctl_list[i].name, 
89                         CTLTYPE_INT | CTLFLAG_RD, 
90                         dev, 
91                         0, 
92                         drm_sysctl_list[i].f, 
93                         "A", 
94                         NULL);
95                 if (!oid)
96                         return 1;
97         }
98         SYSCTL_ADD_INT(&info->ctx, SYSCTL_CHILDREN(top), OID_AUTO, "debug",
99             CTLFLAG_RW, &drm_debug_flag, sizeof(drm_debug_flag),
100             "Enable debugging output");
101
102         return 0;
103 }
104
105 int drm_sysctl_cleanup(drm_device_t *dev)
106 {
107         int error;
108         error = sysctl_ctx_free( &dev->sysctl->ctx );
109
110         free(dev->sysctl, M_DRM);
111         dev->sysctl = NULL;
112
113         return error;
114 }
115
116 #define DRM_SYSCTL_PRINT(fmt, arg...)                           \
117 do {                                                            \
118         snprintf(buf, sizeof(buf), fmt, ##arg);                 \
119         retcode = SYSCTL_OUT(req, buf, strlen(buf));            \
120         if (retcode)                                            \
121                 goto done;                                      \
122 } while (0)
123
124 static int drm_name_info DRM_SYSCTL_HANDLER_ARGS
125 {
126         drm_device_t *dev = arg1;
127         char buf[128];
128         int retcode;
129         int hasunique = 0;
130
131         DRM_SYSCTL_PRINT("%s 0x%x", dev->driver_name, dev2udev(dev->devnode));
132         
133         DRM_LOCK();
134         if (dev->unique) {
135                 snprintf(buf, sizeof(buf), " %s", dev->unique);
136                 hasunique = 1;
137         }
138         DRM_UNLOCK();
139         
140         if (hasunique)
141                 SYSCTL_OUT(req, buf, strlen(buf));
142
143         SYSCTL_OUT(req, "", 1);
144
145 done:
146         return retcode;
147 }
148
149 static int drm_vm_info DRM_SYSCTL_HANDLER_ARGS
150 {
151         drm_device_t *dev = arg1;
152         drm_local_map_t *map, *tempmaps;
153         drm_map_list_entry_t    *listentry;
154         const char   *types[] = { "FB", "REG", "SHM", "AGP", "SG" };
155         const char *type, *yesno;
156         int i, mapcount;
157         char buf[128];
158         int retcode;
159
160         /* We can't hold the lock while doing SYSCTL_OUTs, so allocate a
161          * temporary copy of all the map entries and then SYSCTL_OUT that.
162          */
163         DRM_LOCK();
164
165         mapcount = 0;
166         TAILQ_FOREACH(listentry, dev->maplist, link)
167                 mapcount++;
168
169         tempmaps = malloc(sizeof(drm_local_map_t) * mapcount, M_DRM, M_NOWAIT);
170         if (tempmaps == NULL) {
171                 DRM_UNLOCK();
172                 return ENOMEM;
173         }
174
175         i = 0;
176         TAILQ_FOREACH(listentry, dev->maplist, link)
177                 tempmaps[i++] = *listentry->map;
178
179         DRM_UNLOCK();
180
181         DRM_SYSCTL_PRINT("\nslot         offset       size type flags    "
182                          "address mtrr\n");
183
184         for (i = 0; i < mapcount; i++) {
185                 map = &tempmaps[i];
186
187                 if (map->type < 0 || map->type > 4)
188                         type = "??";
189                 else
190                         type = types[map->type];
191
192                 if (!map->mtrr)
193                         yesno = "no";
194                 else
195                         yesno = "yes";
196
197                 DRM_SYSCTL_PRINT(
198                     "%4d 0x%08lx 0x%08lx %4.4s  0x%02x 0x%08lx %s\n", i,
199                     map->offset, map->size, type, map->flags,
200                     (unsigned long)map->handle, yesno);
201         }
202         SYSCTL_OUT(req, "", 1);
203
204 done:
205         free(tempmaps, M_DRM);
206         return retcode;
207 }
208
209 static int drm_bufs_info DRM_SYSCTL_HANDLER_ARGS
210 {
211         drm_device_t     *dev = arg1;
212         drm_device_dma_t *dma = dev->dma;
213         drm_device_dma_t tempdma;
214         int *templists;
215         int i;
216         char buf[128];
217         int retcode;
218
219         /* We can't hold the locks around DRM_SYSCTL_PRINT, so make a temporary
220          * copy of the whole structure and the relevant data from buflist.
221          */
222         DRM_LOCK();
223         if (dma == NULL) {
224                 DRM_UNLOCK();
225                 return 0;
226         }
227         DRM_SPINLOCK(&dev->dma_lock);
228         tempdma = *dma;
229         templists = malloc(sizeof(int) * dma->buf_count, M_DRM, M_NOWAIT);
230         for (i = 0; i < dma->buf_count; i++)
231                 templists[i] = dma->buflist[i]->list;
232         dma = &tempdma;
233         DRM_SPINUNLOCK(&dev->dma_lock);
234         DRM_UNLOCK();
235
236         DRM_SYSCTL_PRINT("\n o     size count  free      segs pages    kB\n");
237         for (i = 0; i <= DRM_MAX_ORDER; i++) {
238                 if (dma->bufs[i].buf_count)
239                         DRM_SYSCTL_PRINT("%2d %8d %5d %5d %5d %5d %5d\n",
240                                        i,
241                                        dma->bufs[i].buf_size,
242                                        dma->bufs[i].buf_count,
243                                        atomic_read(&dma->bufs[i]
244                                                    .freelist.count),
245                                        dma->bufs[i].seg_count,
246                                        dma->bufs[i].seg_count
247                                        *(1 << dma->bufs[i].page_order),
248                                        (dma->bufs[i].seg_count
249                                         * (1 << dma->bufs[i].page_order))
250                                        * PAGE_SIZE / 1024);
251         }
252         DRM_SYSCTL_PRINT("\n");
253         for (i = 0; i < dma->buf_count; i++) {
254                 if (i && !(i%32)) DRM_SYSCTL_PRINT("\n");
255                 DRM_SYSCTL_PRINT(" %d", templists[i]);
256         }
257         DRM_SYSCTL_PRINT("\n");
258
259         SYSCTL_OUT(req, "", 1);
260 done:
261         free(templists, M_DRM);
262         return retcode;
263 }
264
265 static int drm_clients_info DRM_SYSCTL_HANDLER_ARGS
266 {
267         drm_device_t *dev = arg1;
268         drm_file_t *priv, *tempprivs;
269         char buf[128];
270         int retcode;
271         int privcount, i;
272
273         DRM_LOCK();
274
275         privcount = 0;
276         TAILQ_FOREACH(priv, &dev->files, link)
277                 privcount++;
278
279         tempprivs = malloc(sizeof(drm_file_t) * privcount, M_DRM, M_NOWAIT);
280         if (tempprivs == NULL) {
281                 DRM_UNLOCK();
282                 return ENOMEM;
283         }
284         i = 0;
285         TAILQ_FOREACH(priv, &dev->files, link)
286                 tempprivs[i++] = *priv;
287
288         DRM_UNLOCK();
289
290         DRM_SYSCTL_PRINT("\na dev       pid    uid      magic     ioctls\n");
291         for (i = 0; i < privcount; i++) {
292                 priv = &tempprivs[i];
293                 DRM_SYSCTL_PRINT("%c %3d %5d %5d %10u %10lu\n",
294                                priv->authenticated ? 'y' : 'n',
295                                priv->minor,
296                                priv->pid,
297                                priv->uid,
298                                priv->magic,
299                                priv->ioctl_count);
300         }
301
302         SYSCTL_OUT(req, "", 1);
303 done:
304         free(tempprivs, M_DRM);
305         return retcode;
306 }