Merge branch 'master' of ../../drm into modesetting-101
[profile/ivi/libdrm.git] / linux-core / drm_crtc.c
1 /*
2  * Copyright (c) 2006-2007 Intel Corporation
3  * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
4  *
5  * DRM core CRTC related functions
6  *
7  * Permission to use, copy, modify, distribute, and sell this software and its
8  * documentation for any purpose is hereby granted without fee, provided that
9  * the above copyright notice appear in all copies and that both that copyright
10  * notice and this permission notice appear in supporting documentation, and
11  * that the name of the copyright holders not be used in advertising or
12  * publicity pertaining to distribution of the software without specific,
13  * written prior permission.  The copyright holders make no representations
14  * about the suitability of this software for any purpose.  It is provided "as
15  * is" without express or implied warranty.
16  *
17  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
18  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
19  * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
20  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
21  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
22  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
23  * OF THIS SOFTWARE.
24  *
25  * Authors:
26  *      Keith Packard
27  *      Eric Anholt <eric@anholt.net>
28  *      Dave Airlie <airlied@linux.ie>
29  *      Jesse Barnes <jesse.barnes@intel.com>
30  */
31 #include <linux/list.h>
32 #include "drm.h"
33 #include "drmP.h"
34 #include "drm_crtc.h"
35
36 struct drm_prop_enum_list {
37         int type;
38         char *name;
39 };
40
41 /*
42  * Global properties
43  */
44 static struct drm_prop_enum_list drm_dpms_enum_list[] =
45 { { DPMSModeOn, "On" },
46   { DPMSModeStandby, "Standby" },
47   { DPMSModeSuspend, "Suspend" },
48   { DPMSModeOff, "Off" }
49 };
50 static struct drm_prop_enum_list drm_conn_enum_list[] = 
51 { { ConnectorUnknown, "Unknown" },
52   { ConnectorVGA, "VGA" },
53   { ConnectorDVII, "DVI-I" },
54   { ConnectorDVID, "DVI-D" },
55   { ConnectorDVIA, "DVI-A" },
56   { ConnectorComposite, "Composite" },
57   { ConnectorSVIDEO, "SVIDEO" },
58   { ConnectorLVDS, "LVDS" },
59   { ConnectorComponent, "Component" },
60   { Connector9PinDIN, "9-pin DIN" },
61   { ConnectorDisplayPort, "DisplayPort" },
62   { ConnectorHDMIA, "HDMI Type A" },
63   { ConnectorHDMIB, "HDMI Type B" },
64 };
65 static struct drm_prop_enum_list drm_output_enum_list[] =
66 { { DRM_MODE_OUTPUT_NONE, "None" },
67   { DRM_MODE_OUTPUT_DAC, "DAC" },
68   { DRM_MODE_OUTPUT_TMDS, "TMDS" },
69   { DRM_MODE_OUTPUT_LVDS, "LVDS" },
70   { DRM_MODE_OUTPUT_TVDAC, "TV" },
71 };
72
73 char *drm_get_output_name(struct drm_output *output)
74 {
75         static char buf[32];
76
77         snprintf(buf, 32, "%s-%d", drm_output_enum_list[output->output_type].name,
78                  output->output_type_id);
79         return buf;
80 }
81
82 /**
83  * drm_idr_get - allocate a new identifier
84  * @dev: DRM device
85  * @ptr: object pointer, used to generate unique ID
86  *
87  * LOCKING:
88  * Caller must hold DRM mode_config lock.
89  *
90  * Create a unique identifier based on @ptr in @dev's identifier space.  Used
91  * for tracking modes, CRTCs and outputs.
92  *
93  * RETURNS:
94  * New unique (relative to other objects in @dev) integer identifier for the
95  * object.
96  */
97 int drm_idr_get(struct drm_device *dev, void *ptr)
98 {
99         int new_id = 0;
100         int ret;
101 again:
102         if (idr_pre_get(&dev->mode_config.crtc_idr, GFP_KERNEL) == 0) {
103                 DRM_ERROR("Ran out memory getting a mode number\n");
104                 return 0;
105         }
106
107         ret = idr_get_new_above(&dev->mode_config.crtc_idr, ptr, 1, &new_id);
108         if (ret == -EAGAIN)
109                 goto again;     
110
111         return new_id;
112 }
113
114 /**
115  * drm_idr_put - free an identifer
116  * @dev: DRM device
117  * @id: ID to free
118  *
119  * LOCKING:
120  * Caller must hold DRM mode_config lock.
121  *
122  * Free @id from @dev's unique identifier pool.
123  */
124 void drm_idr_put(struct drm_device *dev, int id)
125 {
126         idr_remove(&dev->mode_config.crtc_idr, id);
127 }
128
129 /**
130  * drm_crtc_from_fb - find the CRTC structure associated with an fb
131  * @dev: DRM device
132  * @fb: framebuffer in question
133  *
134  * LOCKING:
135  * Caller must hold mode_config lock.
136  *
137  * Find CRTC in the mode_config structure that matches @fb.
138  *
139  * RETURNS:
140  * Pointer to the CRTC or NULL if it wasn't found.
141  */
142 struct drm_crtc *drm_crtc_from_fb(struct drm_device *dev,
143                                   struct drm_framebuffer *fb)
144 {
145         struct drm_crtc *crtc;
146
147         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
148                 if (crtc->fb == fb)
149                         return crtc;
150         }
151         return NULL;
152 }
153
154 /**
155  * drm_framebuffer_create - create a new framebuffer object
156  * @dev: DRM device
157  *
158  * LOCKING:
159  * Caller must hold mode config lock.
160  *
161  * Creates a new framebuffer objects and adds it to @dev's DRM mode_config.
162  *
163  * RETURNS:
164  * Pointer to new framebuffer or NULL on error.
165  */
166 struct drm_framebuffer *drm_framebuffer_create(struct drm_device *dev)
167 {
168         struct drm_framebuffer *fb;
169
170         fb = kzalloc(sizeof(struct drm_framebuffer), GFP_KERNEL);
171         if (!fb)
172                 return NULL;
173         
174         fb->id = drm_idr_get(dev, fb);
175         fb->dev = dev;
176         dev->mode_config.num_fb++;
177         list_add(&fb->head, &dev->mode_config.fb_list);
178
179         return fb;
180 }
181 EXPORT_SYMBOL(drm_framebuffer_create);
182
183 /**
184  * drm_framebuffer_destroy - remove a framebuffer object
185  * @fb: framebuffer to remove
186  *
187  * LOCKING:
188  * Caller must hold mode config lock.
189  *
190  * Scans all the CRTCs in @dev's mode_config.  If they're using @fb, removes
191  * it, setting it to NULL.
192  */
193 void drm_framebuffer_destroy(struct drm_framebuffer *fb)
194 {
195         struct drm_device *dev = fb->dev;
196         struct drm_crtc *crtc;
197
198         /* remove from any CRTC */
199         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
200                 if (crtc->fb == fb)
201                         crtc->fb = NULL;
202         }
203
204         drm_idr_put(dev, fb->id);
205         list_del(&fb->head);
206         dev->mode_config.num_fb--;
207
208         kfree(fb);
209 }
210 EXPORT_SYMBOL(drm_framebuffer_destroy);
211
212 /**
213  * drm_crtc_create - create a new CRTC object
214  * @dev: DRM device
215  * @funcs: callbacks for the new CRTC
216  *
217  * LOCKING:
218  * Caller must hold mode config lock.
219  *
220  * Creates a new CRTC object and adds it to @dev's mode_config structure.
221  *
222  * RETURNS:
223  * Pointer to new CRTC object or NULL on error.
224  */
225 struct drm_crtc *drm_crtc_create(struct drm_device *dev,
226                                  const struct drm_crtc_funcs *funcs)
227 {
228         struct drm_crtc *crtc;
229
230         crtc = kzalloc(sizeof(struct drm_crtc), GFP_KERNEL);
231         if (!crtc)
232                 return NULL;
233
234         crtc->dev = dev;
235         crtc->funcs = funcs;
236
237         crtc->id = drm_idr_get(dev, crtc);
238
239         list_add_tail(&crtc->head, &dev->mode_config.crtc_list);
240         dev->mode_config.num_crtc++;
241
242         return crtc;
243 }
244 EXPORT_SYMBOL(drm_crtc_create);
245
246 /**
247  * drm_crtc_destroy - remove a CRTC object
248  * @crtc: CRTC to remove
249  *
250  * LOCKING:
251  * Caller must hold mode config lock.
252  *
253  * Cleanup @crtc.  Calls @crtc's cleanup function, then removes @crtc from
254  * its associated DRM device's mode_config.  Frees it afterwards.
255  */
256 void drm_crtc_destroy(struct drm_crtc *crtc)
257 {
258         struct drm_device *dev = crtc->dev;
259
260         if (crtc->funcs->cleanup)
261                 (*crtc->funcs->cleanup)(crtc);
262
263         drm_idr_put(dev, crtc->id);
264         list_del(&crtc->head);
265         dev->mode_config.num_crtc--;
266         kfree(crtc);
267 }
268 EXPORT_SYMBOL(drm_crtc_destroy);
269
270 /**
271  * drm_crtc_in_use - check if a given CRTC is in a mode_config
272  * @crtc: CRTC to check
273  *
274  * LOCKING:
275  * Caller must hold mode config lock.
276  *
277  * Walk @crtc's DRM device's mode_config and see if it's in use.
278  *
279  * RETURNS:
280  * True if @crtc is part of the mode_config, false otherwise.
281  */
282 bool drm_crtc_in_use(struct drm_crtc *crtc)
283 {
284         struct drm_output *output;
285         struct drm_device *dev = crtc->dev;
286         /* FIXME: Locking around list access? */
287         list_for_each_entry(output, &dev->mode_config.output_list, head)
288                 if (output->crtc == crtc)
289                         return true;
290         return false;
291 }
292 EXPORT_SYMBOL(drm_crtc_in_use);
293
294 /*
295  * Detailed mode info for a standard 640x480@60Hz monitor
296  */
297 static struct drm_display_mode std_mode[] = {
298         { DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 25200, 640, 656,
299                    752, 800, 0, 480, 490, 492, 525, 0,
300                    V_NHSYNC | V_NVSYNC) }, /* 640x480@60Hz */
301 };
302
303 /**
304  * drm_crtc_probe_output_modes - get complete set of display modes
305  * @dev: DRM device
306  * @maxX: max width for modes
307  * @maxY: max height for modes
308  *
309  * LOCKING:
310  * Caller must hold mode config lock.
311  *
312  * Based on @dev's mode_config layout, scan all the outputs and try to detect
313  * modes on them.  Modes will first be added to the output's probed_modes
314  * list, then culled (based on validity and the @maxX, @maxY parameters) and
315  * put into the normal modes list.
316  *
317  * Intended to be used either at bootup time or when major configuration
318  * changes have occurred.
319  *
320  * FIXME: take into account monitor limits
321  */
322 void drm_crtc_probe_single_output_modes(struct drm_output *output, int maxX, int maxY)
323 {
324         struct drm_device *dev = output->dev;
325         struct drm_display_mode *mode, *t;
326         int ret;
327         //if (maxX == 0 || maxY == 0) 
328         // TODO
329
330         /* set all modes to the unverified state */
331         list_for_each_entry_safe(mode, t, &output->modes, head)
332                 mode->status = MODE_UNVERIFIED;
333                 
334         output->status = (*output->funcs->detect)(output);
335         
336         if (output->status == output_status_disconnected) {
337                 DRM_DEBUG("%s is disconnected\n", drm_get_output_name(output));
338                 /* TODO set EDID to NULL */
339                 return;
340         }
341         
342         ret = (*output->funcs->get_modes)(output);
343         
344         if (ret) {
345                 drm_mode_output_list_update(output);
346         }
347         
348         if (maxX && maxY)
349                 drm_mode_validate_size(dev, &output->modes, maxX,
350                                        maxY, 0);
351         list_for_each_entry_safe(mode, t, &output->modes, head) {
352                 if (mode->status == MODE_OK)
353                         mode->status = (*output->funcs->mode_valid)(output,mode);
354         }
355         
356         
357         drm_mode_prune_invalid(dev, &output->modes, TRUE);
358         
359         if (list_empty(&output->modes)) {
360                 struct drm_display_mode *stdmode;
361                 
362                 DRM_DEBUG("No valid modes on %s\n", drm_get_output_name(output));
363                 
364                 /* Should we do this here ???
365                  * When no valid EDID modes are available we end up
366                  * here and bailed in the past, now we add a standard
367                  * 640x480@60Hz mode and carry on.
368                  */
369                 stdmode = drm_mode_duplicate(dev, &std_mode[0]);
370                 drm_mode_probed_add(output, stdmode);
371                 drm_mode_list_concat(&output->probed_modes,
372                                      &output->modes);
373                 
374                 DRM_DEBUG("Adding standard 640x480 @ 60Hz to %s\n",
375                           drm_get_output_name(output));
376         }
377         
378         drm_mode_sort(&output->modes);
379         
380         DRM_DEBUG("Probed modes for %s\n", drm_get_output_name(output));
381         list_for_each_entry_safe(mode, t, &output->modes, head) {
382                 mode->vrefresh = drm_mode_vrefresh(mode);
383                 
384                 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
385                 drm_mode_debug_printmodeline(dev, mode);
386         }
387 }
388
389 void drm_crtc_probe_output_modes(struct drm_device *dev, int maxX, int maxY)
390 {
391         struct drm_output *output;
392
393         list_for_each_entry(output, &dev->mode_config.output_list, head) {
394                 drm_crtc_probe_single_output_modes(output, maxX, maxY);
395         }
396 }
397 EXPORT_SYMBOL(drm_crtc_probe_output_modes);
398
399 /**
400  * drm_crtc_set_mode - set a mode
401  * @crtc: CRTC to program
402  * @mode: mode to use
403  * @x: width of mode
404  * @y: height of mode
405  *
406  * LOCKING:
407  * Caller must hold mode config lock.
408  *
409  * Try to set @mode on @crtc.  Give @crtc and its associated outputs a chance
410  * to fixup or reject the mode prior to trying to set it.
411  *
412  * RETURNS:
413  * True if the mode was set successfully, or false otherwise.
414  */
415 bool drm_crtc_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
416                        int x, int y)
417 {
418         struct drm_device *dev = crtc->dev;
419         struct drm_display_mode *adjusted_mode, saved_mode;
420         int saved_x, saved_y;
421         bool didLock = false;
422         struct drm_output *output;
423         bool ret = true;
424
425         adjusted_mode = drm_mode_duplicate(dev, mode);
426
427         crtc->enabled = drm_crtc_in_use(crtc);
428
429         if (!crtc->enabled)
430                 return true;
431
432         didLock = crtc->funcs->lock(crtc);
433
434         saved_mode = crtc->mode;
435         saved_x = crtc->x;
436         saved_y = crtc->y;
437         
438         /* Update crtc values up front so the driver can rely on them for mode
439          * setting.
440          */
441         crtc->mode = *mode;
442         crtc->x = x;
443         crtc->y = y;
444
445         if (drm_mode_equal(&saved_mode, &crtc->mode)) {
446                 if (saved_x != crtc->x || saved_y != crtc->y) {
447                         crtc->funcs->mode_set_base(crtc, crtc->x, crtc->y);
448                         goto done;
449                 }
450         }
451
452         /* Pass our mode to the outputs and the CRTC to give them a chance to
453          * adjust it according to limitations or output properties, and also
454          * a chance to reject the mode entirely.
455          */
456         list_for_each_entry(output, &dev->mode_config.output_list, head) {
457                 
458                 if (output->crtc != crtc)
459                         continue;
460                 
461                 if (!(ret = output->funcs->mode_fixup(output, mode, adjusted_mode))) {
462                         goto done;
463                 }
464         }
465         
466         if (!(ret = crtc->funcs->mode_fixup(crtc, mode, adjusted_mode))) {
467                 goto done;
468         }
469
470         /* Prepare the outputs and CRTCs before setting the mode. */
471         list_for_each_entry(output, &dev->mode_config.output_list, head) {
472
473                 if (output->crtc != crtc)
474                         continue;
475                 
476                 /* Disable the output as the first thing we do. */
477                 output->funcs->prepare(output);
478         }
479         
480         crtc->funcs->prepare(crtc);
481         
482         /* Set up the DPLL and any output state that needs to adjust or depend
483          * on the DPLL.
484          */
485         crtc->funcs->mode_set(crtc, mode, adjusted_mode, x, y);
486
487         list_for_each_entry(output, &dev->mode_config.output_list, head) {
488
489                 if (output->crtc != crtc)
490                         continue;
491                 
492                 DRM_INFO("%s: set mode %s %x\n", drm_get_output_name(output), mode->name, mode->mode_id);
493
494                 output->funcs->mode_set(output, mode, adjusted_mode);
495         }
496         
497         /* Now, enable the clocks, plane, pipe, and outputs that we set up. */
498         crtc->funcs->commit(crtc);
499
500         list_for_each_entry(output, &dev->mode_config.output_list, head) {
501
502                 if (output->crtc != crtc)
503                         continue;
504                 
505                 output->funcs->commit(output);
506
507 #if 0 // TODO def RANDR_12_INTERFACE
508                 if (output->randr_output)
509                         RRPostPendingProperties (output->randr_output);
510 #endif
511         }
512         
513         /* XXX free adjustedmode */
514         drm_mode_destroy(dev, adjusted_mode);
515         /* TODO */
516 //      if (scrn->pScreen)
517 //              drm_crtc_set_screen_sub_pixel_order(dev);
518
519 done:
520         if (!ret) { 
521                 crtc->mode = saved_mode;
522                 crtc->x = saved_x;
523                 crtc->y = saved_y;
524         } 
525
526         if (didLock)
527                 crtc->funcs->unlock (crtc);
528         
529         return ret;
530 }
531 EXPORT_SYMBOL(drm_crtc_set_mode);
532
533 /**
534  * drm_disable_unused_functions - disable unused objects
535  * @dev: DRM device
536  *
537  * LOCKING:
538  * Caller must hold mode config lock.
539  *
540  * If an output or CRTC isn't part of @dev's mode_config, it can be disabled
541  * by calling its dpms function, which should power it off.
542  */
543 void drm_disable_unused_functions(struct drm_device *dev)
544 {
545         struct drm_output *output;
546         struct drm_crtc *crtc;
547
548         list_for_each_entry(output, &dev->mode_config.output_list, head) {
549                 if (!output->crtc)
550                         (*output->funcs->dpms)(output, DPMSModeOff);
551         }
552
553         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
554                 if (!crtc->enabled)
555                         crtc->funcs->dpms(crtc, DPMSModeOff);
556         }
557 }
558 EXPORT_SYMBOL(drm_disable_unused_functions);
559
560 /**
561  * drm_mode_probed_add - add a mode to the specified output's probed mode list
562  * @output: output the new mode
563  * @mode: mode data
564  *
565  * LOCKING:
566  * Caller must hold mode config lock.
567  * 
568  * Add @mode to @output's mode list for later use.
569  */
570 void drm_mode_probed_add(struct drm_output *output,
571                          struct drm_display_mode *mode)
572 {
573         list_add(&mode->head, &output->probed_modes);
574 }
575 EXPORT_SYMBOL(drm_mode_probed_add);
576
577 /**
578  * drm_mode_remove - remove and free a mode
579  * @output: output list to modify
580  * @mode: mode to remove
581  *
582  * LOCKING:
583  * Caller must hold mode config lock.
584  * 
585  * Remove @mode from @output's mode list, then free it.
586  */
587 void drm_mode_remove(struct drm_output *output, struct drm_display_mode *mode)
588 {
589         list_del(&mode->head);
590         kfree(mode);
591 }
592 EXPORT_SYMBOL(drm_mode_remove);
593
594 /**
595  * drm_output_create - create a new output
596  * @dev: DRM device
597  * @funcs: callbacks for this output
598  * @name: user visible name of the output
599  *
600  * LOCKING:
601  * Caller must hold @dev's mode_config lock.
602  *
603  * Creates a new drm_output structure and adds it to @dev's mode_config
604  * structure.
605  *
606  * RETURNS:
607  * Pointer to the new output or NULL on error.
608  */
609 struct drm_output *drm_output_create(struct drm_device *dev,
610                                      const struct drm_output_funcs *funcs,
611                                      int output_type)
612 {
613         struct drm_output *output = NULL;
614
615         output = kzalloc(sizeof(struct drm_output), GFP_KERNEL);
616         if (!output)
617                 return NULL;
618                 
619         output->dev = dev;
620         output->funcs = funcs;
621         output->id = drm_idr_get(dev, output);
622         output->output_type = output_type;
623         output->output_type_id = 1; /* TODO */
624         output->subpixel_order = SubPixelUnknown;
625         INIT_LIST_HEAD(&output->user_modes);
626         INIT_LIST_HEAD(&output->probed_modes);
627         INIT_LIST_HEAD(&output->modes);
628         /* randr_output? */
629         /* output_set_monitor(output)? */
630         /* check for output_ignored(output)? */
631
632         mutex_lock(&dev->mode_config.mutex);
633         list_add_tail(&output->head, &dev->mode_config.output_list);
634         dev->mode_config.num_output++;
635
636         drm_output_attach_property(output, dev->mode_config.edid_property, 0);
637
638         drm_output_attach_property(output, dev->mode_config.dpms_property, 0);
639
640         mutex_unlock(&dev->mode_config.mutex);
641
642         return output;
643
644 }
645 EXPORT_SYMBOL(drm_output_create);
646
647 /**
648  * drm_output_destroy - remove an output
649  * @output: output to remove
650  *
651  * LOCKING:
652  * Caller must hold @dev's mode_config lock.
653  *
654  * Call @output's cleanup function, then remove the output from the DRM
655  * mode_config after freeing @output's modes.
656  */
657 void drm_output_destroy(struct drm_output *output)
658 {
659         struct drm_device *dev = output->dev;
660         struct drm_display_mode *mode, *t;
661
662         if (*output->funcs->cleanup)
663                 (*output->funcs->cleanup)(output);
664
665         list_for_each_entry_safe(mode, t, &output->probed_modes, head)
666                 drm_mode_remove(output, mode);
667
668         list_for_each_entry_safe(mode, t, &output->modes, head)
669                 drm_mode_remove(output, mode);
670
671         list_for_each_entry_safe(mode, t, &output->user_modes, head)
672                 drm_mode_remove(output, mode);
673
674         mutex_lock(&dev->mode_config.mutex);
675         drm_idr_put(dev, output->id);
676         list_del(&output->head);
677         mutex_unlock(&dev->mode_config.mutex);
678         kfree(output);
679 }
680 EXPORT_SYMBOL(drm_output_destroy);
681
682
683 /**
684  * drm_mode_create - create a new display mode
685  * @dev: DRM device
686  *
687  * LOCKING:
688  * None.
689  *
690  * Create a new drm_display_mode, give it an ID, and return it.
691  *
692  * RETURNS:
693  * Pointer to new mode on success, NULL on error.
694  */
695 struct drm_display_mode *drm_mode_create(struct drm_device *dev)
696 {
697         struct drm_display_mode *nmode;
698
699         nmode = kzalloc(sizeof(struct drm_display_mode), GFP_KERNEL);
700         if (!nmode)
701                 return NULL;
702
703         nmode->mode_id = drm_idr_get(dev, nmode);
704         return nmode;
705 }
706 EXPORT_SYMBOL(drm_mode_create);
707
708 /**
709  * drm_mode_destroy - remove a mode
710  * @dev: DRM device
711  * @mode: mode to remove
712  *
713  * LOCKING:
714  * Caller must hold mode config lock.
715  *
716  * Free @mode's unique identifier, then free it.
717  */
718 void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode)
719 {
720         drm_idr_put(dev, mode->mode_id);
721
722         kfree(mode);
723 }
724 EXPORT_SYMBOL(drm_mode_destroy);
725
726 static int drm_mode_create_standard_output_properties(struct drm_device *dev)
727 {
728         int i;
729
730         /*
731          * Standard properties (apply to all outputs)
732          */
733         dev->mode_config.edid_property =
734                 drm_property_create(dev, DRM_MODE_PROP_BLOB | DRM_MODE_PROP_IMMUTABLE,
735                                     "EDID", 0);
736
737         dev->mode_config.dpms_property =
738                 drm_property_create(dev, DRM_MODE_PROP_ENUM, 
739                         "DPMS", ARRAY_SIZE(drm_dpms_enum_list));
740         for (i = 0; i < ARRAY_SIZE(drm_dpms_enum_list); i++)
741                 drm_property_add_enum(dev->mode_config.dpms_property, i, drm_dpms_enum_list[i].type, drm_dpms_enum_list[i].name);
742
743         dev->mode_config.connector_type_property =
744                 drm_property_create(dev, DRM_MODE_PROP_ENUM | DRM_MODE_PROP_IMMUTABLE,
745                         "Connector Type", ARRAY_SIZE(drm_conn_enum_list));
746         for (i = 0; i < ARRAY_SIZE(drm_conn_enum_list); i++)
747                 drm_property_add_enum(dev->mode_config.connector_type_property, i, drm_conn_enum_list[i].type, drm_conn_enum_list[i].name);
748
749         dev->mode_config.connector_num_property =
750                 drm_property_create(dev, DRM_MODE_PROP_RANGE | DRM_MODE_PROP_IMMUTABLE,
751                         "Connector ID", 2);
752         dev->mode_config.connector_num_property->values[0] = 0;
753         dev->mode_config.connector_num_property->values[1] = 20;
754
755         /*
756          * TV specific properties
757          */
758         dev->mode_config.tv_left_margin_property =
759                 drm_property_create(dev, DRM_MODE_PROP_RANGE |
760                                     DRM_MODE_PROP_IMMUTABLE,
761                                     "left margin", 2);
762         dev->mode_config.tv_left_margin_property->values[0] = 0;
763         dev->mode_config.tv_left_margin_property->values[1] = 100;
764
765         dev->mode_config.tv_right_margin_property =
766                 drm_property_create(dev, DRM_MODE_PROP_RANGE |
767                                     DRM_MODE_PROP_IMMUTABLE,
768                                     "right margin", 2);
769         dev->mode_config.tv_right_margin_property->values[0] = 0;
770         dev->mode_config.tv_right_margin_property->values[1] = 100;
771
772         dev->mode_config.tv_top_margin_property =
773                 drm_property_create(dev, DRM_MODE_PROP_RANGE |
774                                     DRM_MODE_PROP_IMMUTABLE,
775                                     "top margin", 2);
776         dev->mode_config.tv_top_margin_property->values[0] = 0;
777         dev->mode_config.tv_top_margin_property->values[1] = 100;
778
779         dev->mode_config.tv_bottom_margin_property =
780                 drm_property_create(dev, DRM_MODE_PROP_RANGE |
781                                     DRM_MODE_PROP_IMMUTABLE,
782                                     "bottom margin", 2);
783         dev->mode_config.tv_bottom_margin_property->values[0] = 0;
784         dev->mode_config.tv_bottom_margin_property->values[1] = 100;
785
786         return 0;
787 }
788
789 /**
790  * drm_mode_config_init - initialize DRM mode_configuration structure
791  * @dev: DRM device
792  *
793  * LOCKING:
794  * None, should happen single threaded at init time.
795  *
796  * Initialize @dev's mode_config structure, used for tracking the graphics
797  * configuration of @dev.
798  */
799 void drm_mode_config_init(struct drm_device *dev)
800 {
801         mutex_init(&dev->mode_config.mutex);
802         INIT_LIST_HEAD(&dev->mode_config.fb_list);
803         INIT_LIST_HEAD(&dev->mode_config.crtc_list);
804         INIT_LIST_HEAD(&dev->mode_config.output_list);
805         INIT_LIST_HEAD(&dev->mode_config.property_list);
806         INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
807         idr_init(&dev->mode_config.crtc_idr);
808
809         drm_mode_create_standard_output_properties(dev);
810
811         /* Just to be sure */
812         dev->mode_config.num_fb = 0;
813         dev->mode_config.num_output = 0;
814         dev->mode_config.num_crtc = 0;
815         dev->mode_config.hotplug_counter = 0;
816 }
817 EXPORT_SYMBOL(drm_mode_config_init);
818
819 /**
820  * drm_get_buffer_object - find the buffer object for a given handle
821  * @dev: DRM device
822  * @bo: pointer to caller's buffer_object pointer
823  * @handle: handle to lookup
824  *
825  * LOCKING:
826  * Must take @dev's struct_mutex to protect buffer object lookup.
827  *
828  * Given @handle, lookup the buffer object in @dev and put it in the caller's
829  * @bo pointer.
830  *
831  * RETURNS:
832  * Zero on success, -EINVAL if the handle couldn't be found.
833  */
834 static int drm_get_buffer_object(struct drm_device *dev, struct drm_buffer_object **bo, unsigned long handle)
835 {
836         struct drm_user_object *uo;
837         struct drm_hash_item *hash;
838         int ret;
839
840         *bo = NULL;
841
842         mutex_lock(&dev->struct_mutex);
843         ret = drm_ht_find_item(&dev->object_hash, handle, &hash);
844         if (ret) {
845                 DRM_ERROR("Couldn't find handle.\n");
846                 ret = -EINVAL;
847                 goto out_err;
848         }
849
850         uo = drm_hash_entry(hash, struct drm_user_object, hash);
851         if (uo->type != drm_buffer_type) {
852                 ret = -EINVAL;
853                 goto out_err;
854         }
855         
856         *bo = drm_user_object_entry(uo, struct drm_buffer_object, base);
857         ret = 0;
858 out_err:
859         mutex_unlock(&dev->struct_mutex);
860         return ret;
861 }
862
863 /**
864  * drm_pick_crtcs - pick crtcs for output devices
865  * @dev: DRM device
866  *
867  * LOCKING:
868  * Caller must hold mode config lock.
869  */
870 static void drm_pick_crtcs (struct drm_device *dev)
871 {
872         int c, o, assigned;
873         struct drm_output *output, *output_equal;
874         struct drm_crtc   *crtc;
875         struct drm_display_mode *des_mode = NULL, *modes, *modes_equal;
876         int found;
877
878         list_for_each_entry(output, &dev->mode_config.output_list, head) {
879                 output->crtc = NULL;
880     
881                 /* Don't hook up outputs that are disconnected ??
882                  *
883                  * This is debateable. Do we want fixed /dev/fbX or
884                  * dynamic on hotplug (need mode code for that though) ?
885                  *
886                  * If we don't hook up outputs now, then we only create
887                  * /dev/fbX for the output that's enabled, that's good as
888                  * the users console will be on that output.
889                  *
890                  * If we do hook up outputs that are disconnected now, then
891                  * the user may end up having to muck about with the fbcon
892                  * map flags to assign his console to the enabled output. Ugh.
893                  */
894                 if (output->status != output_status_connected)
895                         continue;
896
897                 if (list_empty(&output->modes))
898                         continue;
899
900                 des_mode = NULL;
901                 found = 0;
902                 list_for_each_entry(des_mode, &output->modes, head) {
903                         if (des_mode->type & DRM_MODE_TYPE_PREFERRED) {
904                                 found = 1;
905                                 break;
906                         }
907                 }
908
909                 /* No preferred mode, let's just select the first available */
910                 if (!found) {
911                         des_mode = NULL;
912                         list_for_each_entry(des_mode, &output->modes, head) {
913                                 break;
914                         }
915                 }
916
917                 c = -1;
918                 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
919                         assigned = 0;
920
921                         c++;
922                         if ((output->possible_crtcs & (1 << c)) == 0)
923                                 continue;
924         
925                         list_for_each_entry(output_equal, &dev->mode_config.output_list, head) {
926                                 if (output->id == output_equal->id)
927                                         continue;
928
929                                 /* Find out if crtc has been assigned before */
930                                 if (output_equal->crtc == crtc)
931                                         assigned = 1;
932                         }
933
934 #if 1 /* continue for now */
935                         if (assigned)
936                                 continue;
937 #endif
938
939                         o = -1;
940                         list_for_each_entry(output_equal, &dev->mode_config.output_list, head) {
941                                 o++;
942                                 if (output->id == output_equal->id)
943                                         continue;
944
945                                 list_for_each_entry(modes, &output->modes, head) {
946                                         list_for_each_entry(modes_equal, &output_equal->modes, head) {
947                                                 if (drm_mode_equal (modes, modes_equal)) {
948                                                         if ((output->possible_clones & output_equal->possible_clones) && (output_equal->crtc == crtc)) {
949                                                                 printk("Cloning %s (0x%lx) to %s (0x%lx)\n",drm_get_output_name(output),output->possible_clones,drm_get_output_name(output_equal),output_equal->possible_clones);
950                                                                 assigned = 0;
951                                                                 goto clone;
952                                                         }
953                                                 }
954                                         }
955                                 }
956                         }
957
958 clone:
959                         /* crtc has been assigned skip it */
960                         if (assigned)
961                                 continue;
962
963                         /* Found a CRTC to attach to, do it ! */
964                         output->crtc = crtc;
965                         output->crtc->desired_mode = des_mode;
966                         output->initial_x = 0;
967                         output->initial_y = 0;
968                         DRM_DEBUG("Desired mode for CRTC %d is 0x%x:%s\n",c,des_mode->mode_id, des_mode->name);
969                         break;
970                 }
971         }
972 }
973 EXPORT_SYMBOL(drm_pick_crtcs);
974
975 /**
976  * drm_initial_config - setup a sane initial output configuration
977  * @dev: DRM device
978  * @can_grow: this configuration is growable
979  *
980  * LOCKING:
981  * Called at init time, must take mode config lock.
982  *
983  * Scan the CRTCs and outputs and try to put together an initial setup.
984  * At the moment, this is a cloned configuration across all heads with
985  * a new framebuffer object as the backing store.
986  *
987  * RETURNS:
988  * Zero if everything went ok, nonzero otherwise.
989  */
990 bool drm_initial_config(struct drm_device *dev, bool can_grow)
991 {
992         struct drm_output *output;
993         struct drm_crtc *crtc;
994         int ret = false;
995
996         mutex_lock(&dev->mode_config.mutex);
997
998         drm_crtc_probe_output_modes(dev, 2048, 2048);
999
1000         drm_pick_crtcs(dev);
1001
1002         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1003
1004                 /* can't setup the crtc if there's no assigned mode */
1005                 if (!crtc->desired_mode)
1006                         continue;
1007
1008                 /* Now setup the fbdev for attached crtcs */
1009                 dev->driver->fb_probe(dev, crtc);
1010         }
1011
1012         /* This is a little screwy, as we've already walked the outputs 
1013          * above, but it's a little bit of magic too. There's the potential
1014          * for things not to get setup above if an existing device gets
1015          * re-assigned thus confusing the hardware. By walking the outputs
1016          * this fixes up their crtc's.
1017          */
1018         list_for_each_entry(output, &dev->mode_config.output_list, head) {
1019
1020                 /* can't setup the output if there's no assigned mode */
1021                 if (!output->crtc || !output->crtc->desired_mode)
1022                         continue;
1023
1024                 /* and needs an attached fb */
1025                 if (output->crtc->fb)
1026                         drm_crtc_set_mode(output->crtc, output->crtc->desired_mode, 0, 0);
1027         }
1028
1029         drm_disable_unused_functions(dev);
1030
1031         mutex_unlock(&dev->mode_config.mutex);
1032         return ret;
1033 }
1034 EXPORT_SYMBOL(drm_initial_config);
1035
1036 /**
1037  * drm_mode_config_cleanup - free up DRM mode_config info
1038  * @dev: DRM device
1039  *
1040  * LOCKING:
1041  * Caller must hold mode config lock.
1042  *
1043  * Free up all the outputs and CRTCs associated with this DRM device, then
1044  * free up the framebuffers and associated buffer objects.
1045  *
1046  * FIXME: cleanup any dangling user buffer objects too
1047  */
1048 void drm_mode_config_cleanup(struct drm_device *dev)
1049 {
1050         struct drm_output *output, *ot;
1051         struct drm_crtc *crtc, *ct;
1052         struct drm_framebuffer *fb, *fbt;
1053         struct drm_property *property, *pt;
1054
1055         list_for_each_entry_safe(output, ot, &dev->mode_config.output_list, head) {
1056                 drm_output_destroy(output);
1057         }
1058
1059         list_for_each_entry_safe(property, pt, &dev->mode_config.property_list, head) {
1060                 drm_property_destroy(dev, property);
1061         }
1062
1063         list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
1064                 /* there should only be bo of kernel type left */
1065                 if (fb->bo->type != drm_bo_type_kernel)
1066                         drm_framebuffer_destroy(fb);
1067                 else
1068                         dev->driver->fb_remove(dev, drm_crtc_from_fb(dev, fb));
1069         }
1070
1071         list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
1072                 drm_crtc_destroy(crtc);
1073         }
1074
1075 }
1076 EXPORT_SYMBOL(drm_mode_config_cleanup);
1077
1078 /**
1079  * drm_crtc_set_config - set a new config from userspace
1080  * @crtc: CRTC to setup
1081  * @crtc_info: user provided configuration
1082  * @new_mode: new mode to set
1083  * @output_set: set of outputs for the new config
1084  * @fb: new framebuffer
1085  *
1086  * LOCKING:
1087  * Caller must hold mode config lock.
1088  *
1089  * Setup a new configuration, provided by the user in @crtc_info, and enable
1090  * it.
1091  *
1092  * RETURNS:
1093  * Zero. (FIXME)
1094  */
1095 int drm_crtc_set_config(struct drm_crtc *crtc, struct drm_mode_crtc *crtc_info, struct drm_display_mode *new_mode, struct drm_output **output_set, struct drm_framebuffer *fb)
1096 {
1097         struct drm_device *dev = crtc->dev;
1098         struct drm_crtc **save_crtcs, *new_crtc;
1099         bool save_enabled = crtc->enabled;
1100         bool changed = false;
1101         bool flip_or_move = false;
1102         struct drm_output *output;
1103         int count = 0, ro;
1104
1105         /* this is meant to be num_output not num_crtc */
1106         save_crtcs = kzalloc(dev->mode_config.num_output * sizeof(struct drm_crtc *), GFP_KERNEL);
1107         if (!save_crtcs)
1108                 return -ENOMEM;
1109
1110         /* We should be able to check here if the fb has the same properties
1111          * and then just flip_or_move it */
1112         if (crtc->fb != fb)
1113                 changed = true;
1114
1115         if (crtc_info->x != crtc->x || crtc_info->y != crtc->y)
1116                 flip_or_move = true;
1117
1118         if (new_mode && !drm_mode_equal(new_mode, &crtc->mode))
1119                 changed = true;
1120
1121         list_for_each_entry(output, &dev->mode_config.output_list, head) {
1122                 save_crtcs[count++] = output->crtc;
1123
1124                 if (output->crtc == crtc)
1125                         new_crtc = NULL;
1126                 else
1127                         new_crtc = output->crtc;
1128
1129                 for (ro = 0; ro < crtc_info->count_outputs; ro++) {
1130                         if (output_set[ro] == output)
1131                                 new_crtc = crtc;
1132                 }
1133                 if (new_crtc != output->crtc) {
1134                         changed = true;
1135                         output->crtc = new_crtc;
1136                 }
1137         }
1138
1139         /* mode_set_base is not a required function */
1140         if (flip_or_move && !crtc->funcs->mode_set_base)
1141                 changed = true;
1142
1143         if (changed) {
1144                 crtc->fb = fb;
1145                 crtc->enabled = (new_mode != NULL);
1146                 if (new_mode != NULL) {
1147                         DRM_DEBUG("attempting to set mode from userspace\n");
1148                         drm_mode_debug_printmodeline(dev, new_mode);
1149                         if (!drm_crtc_set_mode(crtc, new_mode, crtc_info->x,
1150                                                crtc_info->y)) {
1151                                 crtc->enabled = save_enabled;
1152                                 count = 0;
1153                                 list_for_each_entry(output, &dev->mode_config.output_list, head)
1154                                         output->crtc = save_crtcs[count++];
1155                                 kfree(save_crtcs);
1156                                 return -EINVAL;
1157                         }
1158                         crtc->desired_x = crtc_info->x;
1159                         crtc->desired_y = crtc_info->y;
1160                         crtc->desired_mode = new_mode;
1161                 }
1162                 drm_disable_unused_functions(dev);
1163         } else if (flip_or_move) {
1164                 crtc->funcs->mode_set_base(crtc, crtc_info->x, crtc_info->y);
1165         }
1166
1167         kfree(save_crtcs);
1168         return 0;
1169 }
1170
1171 /**
1172  * drm_hotplug_stage_two
1173  * @dev DRM device
1174  * @output hotpluged output
1175  *
1176  * LOCKING.
1177  * Caller must hold mode config lock, function might grap struct lock.
1178  *
1179  * Stage two of a hotplug.
1180  *
1181  * RETURNS:
1182  * Zero on success, errno on failure.
1183  */
1184 int drm_hotplug_stage_two(struct drm_device *dev, struct drm_output *output,
1185                           bool connected)
1186 {
1187         int has_config = 0;
1188
1189         /* We might want to do something more here */
1190         if (!connected) {
1191                 DRM_DEBUG("not connected\n");
1192                 dev->mode_config.hotplug_counter++;
1193                 return 0;
1194         }
1195
1196         if (output->crtc && output->crtc->desired_mode) {
1197                 DRM_DEBUG("drm thinks that the output already has a config\n");
1198                 has_config = 1;
1199         }
1200
1201         drm_crtc_probe_output_modes(dev, 2048, 2048);
1202
1203         if (!has_config)
1204                 drm_pick_crtcs(dev);
1205
1206         if (!output->crtc || !output->crtc->desired_mode) {
1207                 DRM_DEBUG("could not find a desired mode or crtc for output\n");
1208                 goto out_err;
1209         }
1210
1211         /* We should realy check if there is a fb using this crtc */
1212         if (!has_config)
1213                 dev->driver->fb_probe(dev, output->crtc);
1214         else {
1215                 dev->driver->fb_resize(dev, output->crtc);
1216
1217                 if (!drm_crtc_set_mode(output->crtc, output->crtc->desired_mode, 0, 0))
1218                         DRM_ERROR("failed to set mode after hotplug\n");
1219         }
1220
1221         drm_disable_unused_functions(dev);
1222
1223         dev->mode_config.hotplug_counter++;
1224         return 0;
1225
1226 out_err:
1227         dev->mode_config.hotplug_counter++;
1228         return 1;
1229 }
1230 EXPORT_SYMBOL(drm_hotplug_stage_two);
1231
1232 int drm_mode_hotplug_ioctl(struct drm_device *dev,
1233                            void *data, struct drm_file *file_priv)
1234 {
1235         struct drm_mode_hotplug *arg = data;
1236
1237         arg->counter = dev->mode_config.hotplug_counter;
1238
1239         return 0;
1240 }
1241
1242 /**
1243  * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1244  * @out: drm_mode_modeinfo struct to return to the user
1245  * @in: drm_display_mode to use
1246  *
1247  * LOCKING:
1248  * None.
1249  *
1250  * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1251  * the user.
1252  */
1253 void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out, struct drm_display_mode *in)
1254 {
1255         out->clock = in->clock;
1256         out->hdisplay = in->hdisplay;
1257         out->hsync_start = in->hsync_start;
1258         out->hsync_end = in->hsync_end;
1259         out->htotal = in->htotal;
1260         out->hskew = in->hskew;
1261         out->vdisplay = in->vdisplay;
1262         out->vsync_start = in->vsync_start;
1263         out->vsync_end = in->vsync_end;
1264         out->vtotal = in->vtotal;
1265         out->vscan = in->vscan;
1266         out->vrefresh = in->vrefresh;
1267         out->flags = in->flags;
1268         out->type = in->type;
1269         strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1270         out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1271 }
1272
1273 /**
1274  * drm_crtc_convert_to_umode - convert a modeinfo into a drm_display_mode
1275  * @out: drm_display_mode to return to the user
1276  * @in: drm_mode_modeinfo to use
1277  *
1278  * LOCKING:
1279  * None.
1280  *
1281  * Convert a drmo_mode_modeinfo into a drm_display_mode structure to return to
1282  * the caller.
1283  */
1284 void drm_crtc_convert_umode(struct drm_display_mode *out, struct drm_mode_modeinfo *in)
1285 {
1286         out->clock = in->clock;
1287         out->hdisplay = in->hdisplay;
1288         out->hsync_start = in->hsync_start;
1289         out->hsync_end = in->hsync_end;
1290         out->htotal = in->htotal;
1291         out->hskew = in->hskew;
1292         out->vdisplay = in->vdisplay;
1293         out->vsync_start = in->vsync_start;
1294         out->vsync_end = in->vsync_end;
1295         out->vtotal = in->vtotal;
1296         out->vscan = in->vscan;
1297         out->vrefresh = in->vrefresh;
1298         out->flags = in->flags;
1299         out->type = in->type;
1300         strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1301         out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1302 }
1303         
1304 /**
1305  * drm_mode_getresources - get graphics configuration
1306  * @inode: inode from the ioctl
1307  * @filp: file * from the ioctl
1308  * @cmd: cmd from ioctl
1309  * @arg: arg from ioctl
1310  *
1311  * LOCKING:
1312  * Takes mode config lock.
1313  *
1314  * Construct a set of configuration description structures and return
1315  * them to the user, including CRTC, output and framebuffer configuration.
1316  *
1317  * Called by the user via ioctl.
1318  *
1319  * RETURNS:
1320  * Zero on success, errno on failure.
1321  */
1322 int drm_mode_getresources(struct drm_device *dev,
1323                           void *data, struct drm_file *file_priv)
1324 {
1325         struct drm_mode_card_res *card_res = data;
1326         struct list_head *lh;
1327         struct drm_framebuffer *fb;
1328         struct drm_output *output;
1329         struct drm_crtc *crtc;
1330         int ret = 0;
1331         int output_count = 0;
1332         int crtc_count = 0;
1333         int fb_count = 0;
1334         int copied = 0;
1335         uint32_t __user *fb_id;
1336         uint32_t __user *crtc_id;
1337         uint32_t __user *output_id;
1338
1339         mutex_lock(&dev->mode_config.mutex);
1340
1341         list_for_each(lh, &dev->mode_config.fb_list)
1342                 fb_count++;
1343
1344         list_for_each(lh, &dev->mode_config.crtc_list)
1345                 crtc_count++;
1346
1347         list_for_each(lh, &dev->mode_config.output_list)
1348                 output_count++;
1349
1350         card_res->max_height = dev->mode_config.max_height;
1351         card_res->min_height = dev->mode_config.min_height;
1352         card_res->max_width = dev->mode_config.max_width;
1353         card_res->min_width = dev->mode_config.min_width;
1354
1355         /* handle this in 4 parts */
1356         /* FBs */
1357         if (card_res->count_fbs >= fb_count) {
1358                 copied = 0;
1359                 fb_id = (uint32_t *)(unsigned long)card_res->fb_id_ptr;
1360                 list_for_each_entry(fb, &dev->mode_config.fb_list, head) {
1361                         if (put_user(fb->id, fb_id + copied)) {
1362                                 ret = -EFAULT;
1363                                 goto out;
1364                         }
1365                         copied++;
1366                 }
1367         }
1368         card_res->count_fbs = fb_count;
1369
1370         /* CRTCs */
1371         if (card_res->count_crtcs >= crtc_count) {
1372                 copied = 0;
1373                 crtc_id = (uint32_t *)(unsigned long)card_res->crtc_id_ptr;
1374                 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head){
1375                         DRM_DEBUG("CRTC ID is %d\n", crtc->id);
1376                         if (put_user(crtc->id, crtc_id + copied)) {
1377                                 ret = -EFAULT;
1378                                 goto out;
1379                         }
1380                         copied++;
1381                 }
1382         }
1383         card_res->count_crtcs = crtc_count;
1384
1385
1386         /* Outputs */
1387         if (card_res->count_outputs >= output_count) {
1388                 copied = 0;
1389                 output_id = (uint32_t *)(unsigned long)card_res->output_id_ptr;
1390                 list_for_each_entry(output, &dev->mode_config.output_list,
1391                                     head) {
1392                         DRM_DEBUG("OUTPUT ID is %d\n", output->id);
1393                         if (put_user(output->id, output_id + copied)) {
1394                                 ret = -EFAULT;
1395                                 goto out;
1396                         }
1397                         copied++;
1398                 }
1399         }
1400         card_res->count_outputs = output_count;
1401         
1402         DRM_DEBUG("Counted %d %d\n", card_res->count_crtcs,
1403                   card_res->count_outputs);
1404
1405 out:    
1406         mutex_unlock(&dev->mode_config.mutex);
1407         return ret;
1408 }
1409
1410 /**
1411  * drm_mode_getcrtc - get CRTC configuration
1412  * @inode: inode from the ioctl
1413  * @filp: file * from the ioctl
1414  * @cmd: cmd from ioctl
1415  * @arg: arg from ioctl
1416  *
1417  * LOCKING:
1418  * Caller? (FIXME)
1419  *
1420  * Construct a CRTC configuration structure to return to the user.
1421  *
1422  * Called by the user via ioctl.
1423  *
1424  * RETURNS:
1425  * Zero on success, errno on failure.
1426  */
1427 int drm_mode_getcrtc(struct drm_device *dev,
1428                      void *data, struct drm_file *file_priv)
1429 {
1430         struct drm_mode_crtc *crtc_resp = data;
1431         struct drm_crtc *crtc;
1432         struct drm_output *output;
1433         int ocount;
1434         int ret = 0;
1435
1436         mutex_lock(&dev->mode_config.mutex);
1437         crtc = idr_find(&dev->mode_config.crtc_idr, crtc_resp->crtc_id);
1438         if (!crtc || (crtc->id != crtc_resp->crtc_id)) {
1439                 ret = -EINVAL;
1440                 goto out;
1441         }
1442
1443         crtc_resp->x = crtc->x;
1444         crtc_resp->y = crtc->y;
1445
1446         if (crtc->fb)
1447                 crtc_resp->fb_id = crtc->fb->id;
1448         else
1449                 crtc_resp->fb_id = 0;
1450
1451         crtc_resp->outputs = 0;
1452         if (crtc->enabled) {
1453
1454                 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
1455                 crtc_resp->mode_valid = 1;
1456                 ocount = 0;
1457                 list_for_each_entry(output, &dev->mode_config.output_list, head) {
1458                         if (output->crtc == crtc)
1459                                 crtc_resp->outputs |= 1 << (ocount++);
1460                 }
1461                 
1462         } else {
1463                 crtc_resp->mode_valid = 0;
1464         }
1465
1466 out:
1467         mutex_unlock(&dev->mode_config.mutex);
1468         return ret;
1469 }
1470
1471 /**
1472  * drm_mode_getoutput - get output configuration
1473  * @inode: inode from the ioctl
1474  * @filp: file * from the ioctl
1475  * @cmd: cmd from ioctl
1476  * @arg: arg from ioctl
1477  *
1478  * LOCKING:
1479  * Caller? (FIXME)
1480  *
1481  * Construct a output configuration structure to return to the user.
1482  *
1483  * Called by the user via ioctl.
1484  *
1485  * RETURNS:
1486  * Zero on success, errno on failure.
1487  */
1488 int drm_mode_getoutput(struct drm_device *dev,
1489                        void *data, struct drm_file *file_priv)
1490 {
1491         struct drm_mode_get_output *out_resp = data;
1492         struct drm_output *output;
1493         struct drm_display_mode *mode;
1494         int mode_count = 0;
1495         int props_count = 0;
1496         int ret = 0;
1497         int copied = 0;
1498         int i;
1499         struct drm_mode_modeinfo u_mode;
1500         struct drm_mode_modeinfo __user *mode_ptr;
1501         uint32_t __user *prop_ptr;
1502         uint64_t __user *prop_values;
1503
1504         memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1505
1506         DRM_DEBUG("output id %d:\n", out_resp->output);
1507
1508         mutex_lock(&dev->mode_config.mutex);
1509         output= idr_find(&dev->mode_config.crtc_idr, out_resp->output);
1510         if (!output || (output->id != out_resp->output)) {
1511                 ret = -EINVAL;
1512                 goto out;
1513         }
1514
1515         list_for_each_entry(mode, &output->modes, head)
1516                 mode_count++;
1517         
1518         for (i = 0; i < DRM_OUTPUT_MAX_PROPERTY; i++) {
1519                 if (output->property_ids[i] != 0) {
1520                         props_count++;
1521                 }
1522         }
1523
1524         if (out_resp->count_modes == 0) {
1525                 drm_crtc_probe_single_output_modes(output, dev->mode_config.max_width, dev->mode_config.max_height);
1526         }
1527
1528         out_resp->output_type = output->output_type;
1529         out_resp->output_type_id = output->output_type_id;
1530         out_resp->mm_width = output->mm_width;
1531         out_resp->mm_height = output->mm_height;
1532         out_resp->subpixel = output->subpixel_order;
1533         out_resp->connection = output->status;
1534         if (output->crtc)
1535                 out_resp->crtc = output->crtc->id;
1536         else
1537                 out_resp->crtc = 0;
1538
1539         out_resp->crtcs = output->possible_crtcs;
1540         out_resp->clones = output->possible_clones;
1541
1542         if ((out_resp->count_modes >= mode_count) && mode_count) {
1543                 copied = 0;
1544                 mode_ptr = (struct drm_mode_modeinfo *)(unsigned long)out_resp->modes_ptr;
1545                 list_for_each_entry(mode, &output->modes, head) {
1546                         drm_crtc_convert_to_umode(&u_mode, mode);
1547                         if (copy_to_user(mode_ptr + copied,
1548                                          &u_mode, sizeof(u_mode))) {
1549                                 ret = -EFAULT;
1550                                 goto out;
1551                         }
1552                         copied++;
1553                         
1554                 }
1555         }
1556         out_resp->count_modes = mode_count;
1557
1558         if ((out_resp->count_props >= props_count) && props_count) {
1559                 copied = 0;
1560                 prop_ptr = (uint32_t *)(unsigned long)(out_resp->props_ptr);
1561                 prop_values = (uint64_t *)(unsigned long)(out_resp->prop_values_ptr);
1562                 for (i = 0; i < DRM_OUTPUT_MAX_PROPERTY; i++) {
1563                         if (output->property_ids[i] != 0) {
1564                                 if (put_user(output->property_ids[i], prop_ptr + copied)) {
1565                                         ret = -EFAULT;
1566                                         goto out;
1567                                 }
1568
1569                                 if (put_user(output->property_values[i], prop_values + copied)) {
1570                                         ret = -EFAULT;
1571                                         goto out;
1572                                 }
1573                                 copied++;
1574                         }
1575                 }
1576         }
1577         out_resp->count_props = props_count;
1578
1579 out:
1580         mutex_unlock(&dev->mode_config.mutex);
1581         return ret;
1582 }
1583
1584 /**
1585  * drm_mode_setcrtc - set CRTC configuration
1586  * @inode: inode from the ioctl
1587  * @filp: file * from the ioctl
1588  * @cmd: cmd from ioctl
1589  * @arg: arg from ioctl
1590  *
1591  * LOCKING:
1592  * Caller? (FIXME)
1593  *
1594  * Build a new CRTC configuration based on user request.
1595  *
1596  * Called by the user via ioctl.
1597  *
1598  * RETURNS:
1599  * Zero on success, errno on failure.
1600  */
1601 int drm_mode_setcrtc(struct drm_device *dev,
1602                      void *data, struct drm_file *file_priv)
1603 {
1604         struct drm_mode_crtc *crtc_req = data;
1605         struct drm_crtc *crtc, *crtcfb;
1606         struct drm_output **output_set = NULL, *output;
1607         struct drm_framebuffer *fb = NULL;
1608         struct drm_display_mode *mode = NULL;
1609         uint32_t __user *set_outputs_ptr;
1610         int ret = 0;
1611         int i;
1612
1613         mutex_lock(&dev->mode_config.mutex);
1614         crtc = idr_find(&dev->mode_config.crtc_idr, crtc_req->crtc_id);
1615         if (!crtc || (crtc->id != crtc_req->crtc_id)) {
1616                 DRM_DEBUG("Unknown CRTC ID %d\n", crtc_req->crtc_id);
1617                 ret = -EINVAL;
1618                 goto out;
1619         }
1620
1621         if (crtc_req->mode_valid) {
1622                 /* If we have a mode we need a framebuffer. */
1623                 /* If we pass -1, set the mode with the currently bound fb */
1624                 if (crtc_req->fb_id == -1) {
1625                         list_for_each_entry(crtcfb, &dev->mode_config.crtc_list, head) {
1626                                 if (crtcfb == crtc) {
1627                                         DRM_DEBUG("Using current fb for setmode\n");
1628                                         fb = crtc->fb;          
1629                                 }
1630                         }
1631                 } else {
1632                         fb = idr_find(&dev->mode_config.crtc_idr, crtc_req->fb_id);
1633                         if (!fb || (fb->id != crtc_req->fb_id)) {
1634                                 DRM_DEBUG("Unknown FB ID%d\n", crtc_req->fb_id);
1635                                 ret = -EINVAL;
1636                                 goto out;
1637                         }
1638                 }
1639
1640                 mode = drm_mode_create(dev);
1641                 drm_crtc_convert_umode(mode, &crtc_req->mode);
1642                 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
1643         }
1644
1645         if (crtc_req->count_outputs == 0 && mode) {
1646                 DRM_DEBUG("Count outputs is 0 but mode set\n");
1647                 ret = -EINVAL;
1648                 goto out;
1649         }
1650
1651         if (crtc_req->count_outputs > 0 && !mode && !fb) {
1652                 DRM_DEBUG("Count outputs is %d but no mode or fb set\n", crtc_req->count_outputs);
1653                 ret = -EINVAL;
1654                 goto out;
1655         }
1656
1657         if (crtc_req->count_outputs > 0) {
1658                 u32 out_id;
1659                 /* Maybe we should check that count_outputs is a sensible value. */
1660                 output_set = kmalloc(crtc_req->count_outputs *
1661                                      sizeof(struct drm_output *), GFP_KERNEL);
1662                 if (!output_set) {
1663                         ret = -ENOMEM;
1664                         goto out;
1665                 }
1666
1667                 for (i = 0; i < crtc_req->count_outputs; i++) {
1668                         set_outputs_ptr = (uint32_t *)(unsigned long)crtc_req->set_outputs_ptr;
1669                         if (get_user(out_id, &set_outputs_ptr[i])) {
1670                                 ret = -EFAULT;
1671                                 goto out;
1672                         }
1673
1674                         output = idr_find(&dev->mode_config.crtc_idr, out_id);
1675                         if (!output || (out_id != output->id)) {
1676                                 DRM_DEBUG("Output id %d unknown\n", out_id);
1677                                 ret = -EINVAL;
1678                                 goto out;
1679                         }
1680
1681                         output_set[i] = output;
1682                 }
1683         }
1684
1685         ret = drm_crtc_set_config(crtc, crtc_req, mode, output_set, fb);
1686
1687 out:
1688         kfree(output_set);
1689         mutex_unlock(&dev->mode_config.mutex);
1690         return ret;
1691 }
1692
1693 int drm_mode_cursor_ioctl(struct drm_device *dev,
1694                         void *data, struct drm_file *file_priv)
1695 {
1696         struct drm_mode_cursor *req = data;
1697         struct drm_crtc *crtc;
1698         struct drm_buffer_object *bo = NULL; /* must be set */
1699         int ret = 0;
1700
1701         DRM_DEBUG("\n");
1702
1703         if (!req->flags) {
1704                 DRM_ERROR("no operation set\n");
1705                 return -EINVAL;
1706         }
1707
1708         mutex_lock(&dev->mode_config.mutex);
1709         crtc = idr_find(&dev->mode_config.crtc_idr, req->crtc);
1710         if (!crtc || (crtc->id != req->crtc)) {
1711                 DRM_DEBUG("Unknown CRTC ID %d\n", req->crtc);
1712                 ret = -EINVAL;
1713                 goto out;
1714         }
1715
1716         if (req->flags & DRM_MODE_CURSOR_BO) {
1717                 /* Turn of the cursor if handle is 0 */
1718                 if (req->handle)
1719                         ret = drm_get_buffer_object(dev, &bo, req->handle);
1720
1721                 if (ret) {
1722                         DRM_ERROR("invalid buffer id\n");
1723                         ret = -EINVAL;
1724                         goto out;
1725                 }
1726
1727                 if (crtc->funcs->cursor_set) {
1728                         ret = crtc->funcs->cursor_set(crtc, bo, req->width, req->height);
1729                 } else {
1730                         DRM_ERROR("crtc does not support cursor\n");
1731                         ret = -EFAULT;
1732                         goto out;
1733                 }
1734         }
1735
1736         if (req->flags & DRM_MODE_CURSOR_MOVE) {
1737                 if (crtc->funcs->cursor_move) {
1738                         ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
1739                 } else {
1740                         DRM_ERROR("crtc does not support cursor\n");
1741                         ret = -EFAULT;
1742                         goto out;
1743                 }
1744         }
1745 out:
1746         mutex_unlock(&dev->mode_config.mutex);
1747         return ret;
1748 }
1749
1750 /**
1751  * drm_mode_addfb - add an FB to the graphics configuration
1752  * @inode: inode from the ioctl
1753  * @filp: file * from the ioctl
1754  * @cmd: cmd from ioctl
1755  * @arg: arg from ioctl
1756  *
1757  * LOCKING:
1758  * Takes mode config lock.
1759  *
1760  * Add a new FB to the specified CRTC, given a user request.
1761  *
1762  * Called by the user via ioctl.
1763  *
1764  * RETURNS:
1765  * Zero on success, errno on failure.
1766  */
1767 int drm_mode_addfb(struct drm_device *dev,
1768                    void *data, struct drm_file *file_priv)
1769 {
1770         struct drm_mode_fb_cmd *r = data;
1771         struct drm_mode_config *config = &dev->mode_config;
1772         struct drm_framebuffer *fb;
1773         struct drm_buffer_object *bo;
1774         int ret = 0;
1775
1776         if ((config->min_width > r->width) || (r->width > config->max_width)) {
1777                 DRM_ERROR("mode new framebuffer width not within limits\n");
1778                 return -EINVAL;
1779         }
1780         if ((config->min_height > r->height) || (r->height > config->max_height)) {
1781                 DRM_ERROR("mode new framebuffer height not within limits\n");
1782                 return -EINVAL;
1783         }
1784
1785         mutex_lock(&dev->mode_config.mutex);
1786         /* TODO check limits are okay */
1787         ret = drm_get_buffer_object(dev, &bo, r->handle);
1788         if (ret || !bo) {
1789                 DRM_ERROR("BO handle not valid\n");
1790                 ret = -EINVAL;
1791                 goto out;
1792         }
1793
1794         /* TODO check buffer is sufficently large */
1795         /* TODO setup destructor callback */
1796
1797         fb = drm_framebuffer_create(dev);
1798         if (!fb) {
1799                 DRM_ERROR("could not create framebuffer\n");
1800                 ret = -EINVAL;
1801                 goto out;
1802         }
1803
1804         fb->width = r->width;
1805         fb->height = r->height;
1806         fb->pitch = r->pitch;
1807         fb->bits_per_pixel = r->bpp;
1808         fb->depth = r->depth;
1809         fb->bo = bo;
1810
1811         r->buffer_id = fb->id;
1812
1813         list_add(&fb->filp_head, &file_priv->fbs);
1814
1815 out:
1816         mutex_unlock(&dev->mode_config.mutex);
1817         return ret;
1818 }
1819
1820 /**
1821  * drm_mode_rmfb - remove an FB from the configuration
1822  * @inode: inode from the ioctl
1823  * @filp: file * from the ioctl
1824  * @cmd: cmd from ioctl
1825  * @arg: arg from ioctl
1826  *
1827  * LOCKING:
1828  * Takes mode config lock.
1829  *
1830  * Remove the FB specified by the user.
1831  *
1832  * Called by the user via ioctl.
1833  *
1834  * RETURNS:
1835  * Zero on success, errno on failure.
1836  */
1837 int drm_mode_rmfb(struct drm_device *dev,
1838                    void *data, struct drm_file *file_priv)
1839 {
1840         struct drm_framebuffer *fb = 0;
1841         struct drm_framebuffer *fbl = 0;
1842         uint32_t *id = data;
1843         int ret = 0;
1844         int found = 0;
1845
1846         mutex_lock(&dev->mode_config.mutex);
1847         fb = idr_find(&dev->mode_config.crtc_idr, *id);
1848         /* TODO check that we realy get a framebuffer back. */
1849         if (!fb || (*id != fb->id)) {
1850                 DRM_ERROR("mode invalid framebuffer id\n");
1851                 ret = -EINVAL;
1852                 goto out;
1853         }
1854
1855         list_for_each_entry(fbl, &file_priv->fbs, filp_head)
1856                 if (fb == fbl)
1857                         found = 1;
1858
1859         if (!found) {
1860                 DRM_ERROR("tried to remove a fb that we didn't own\n");
1861                 ret = -EINVAL;
1862                 goto out;
1863         }
1864
1865         /* TODO release all crtc connected to the framebuffer */
1866         /* TODO unhock the destructor from the buffer object */
1867
1868         if (fb->bo->type == drm_bo_type_kernel)
1869                 DRM_ERROR("the bo type should not be of kernel type\n");
1870
1871         list_del(&fb->filp_head);
1872         drm_framebuffer_destroy(fb);
1873
1874 out:
1875         mutex_unlock(&dev->mode_config.mutex);
1876         return ret;
1877 }
1878
1879 /**
1880  * drm_mode_getfb - get FB info
1881  * @inode: inode from the ioctl
1882  * @filp: file * from the ioctl
1883  * @cmd: cmd from ioctl
1884  * @arg: arg from ioctl
1885  *
1886  * LOCKING:
1887  * Caller? (FIXME)
1888  *
1889  * Lookup the FB given its ID and return info about it.
1890  *
1891  * Called by the user via ioctl.
1892  *
1893  * RETURNS:
1894  * Zero on success, errno on failure.
1895  */
1896 int drm_mode_getfb(struct drm_device *dev,
1897                    void *data, struct drm_file *file_priv)
1898 {
1899         struct drm_mode_fb_cmd *r = data;
1900         struct drm_framebuffer *fb;
1901         int ret = 0;
1902
1903         mutex_lock(&dev->mode_config.mutex);
1904         fb = idr_find(&dev->mode_config.crtc_idr, r->buffer_id);
1905         if (!fb || (r->buffer_id != fb->id)) {
1906                 DRM_ERROR("invalid framebuffer id\n");
1907                 ret = -EINVAL;
1908                 goto out;
1909         }
1910
1911         r->height = fb->height;
1912         r->width = fb->width;
1913         r->depth = fb->depth;
1914         r->bpp = fb->bits_per_pixel;
1915         r->handle = fb->bo->base.hash.key;
1916         r->pitch = fb->pitch;
1917
1918 out:
1919         mutex_unlock(&dev->mode_config.mutex);
1920         return ret;
1921 }
1922
1923 /**
1924  * drm_fb_release - remove and free the FBs on this file
1925  * @filp: file * from the ioctl
1926  *
1927  * LOCKING:
1928  * Takes mode config lock.
1929  *
1930  * Destroy all the FBs associated with @filp.
1931  *
1932  * Called by the user via ioctl.
1933  *
1934  * RETURNS:
1935  * Zero on success, errno on failure.
1936  */
1937 void drm_fb_release(struct file *filp)
1938 {
1939         struct drm_file *priv = filp->private_data;
1940         struct drm_device *dev = priv->minor->dev;
1941         struct drm_framebuffer *fb, *tfb;
1942
1943         mutex_lock(&dev->mode_config.mutex);
1944         list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
1945                 list_del(&fb->filp_head);
1946                 if (fb->bo->type == drm_bo_type_kernel)
1947                         DRM_ERROR("the bo type should not be of kernel_type, the kernel will probably explode, why Dave\n");
1948
1949                 drm_framebuffer_destroy(fb);
1950         }
1951         mutex_unlock(&dev->mode_config.mutex);
1952 }
1953
1954 /*
1955  *
1956  */
1957
1958 static int drm_mode_attachmode(struct drm_device *dev,
1959                                struct drm_output *output,
1960                                struct drm_display_mode *mode)
1961 {
1962         int ret = 0;
1963
1964         list_add_tail(&mode->head, &output->user_modes);
1965         return ret;
1966 }
1967
1968 int drm_mode_attachmode_crtc(struct drm_device *dev, struct drm_crtc *crtc,
1969                              struct drm_display_mode *mode)
1970 {
1971         struct drm_output *output;
1972         int ret = 0;
1973         struct drm_display_mode *dup_mode;
1974         int need_dup = 0;
1975         list_for_each_entry(output, &dev->mode_config.output_list, head) {
1976                 if (output->crtc == crtc) {
1977                         if (need_dup)
1978                                 dup_mode = drm_mode_duplicate(dev, mode);
1979                         else
1980                                 dup_mode = mode;
1981                         ret = drm_mode_attachmode(dev, output, dup_mode); 
1982                         if (ret)
1983                                 return ret;
1984                         need_dup = 1;
1985                 }
1986         }
1987         return 0;
1988 }
1989 EXPORT_SYMBOL(drm_mode_attachmode_crtc);
1990
1991 static int drm_mode_detachmode(struct drm_device *dev,
1992                                struct drm_output *output,
1993                                struct drm_display_mode *mode)
1994 {
1995         int found = 0;
1996         int ret = 0;
1997         struct drm_display_mode *match_mode, *t;
1998
1999         list_for_each_entry_safe(match_mode, t, &output->user_modes, head) {
2000                 if (drm_mode_equal(match_mode, mode)) {
2001                         list_del(&match_mode->head);
2002                         drm_mode_destroy(dev, match_mode);
2003                         found = 1;
2004                         break;
2005                 }
2006         }
2007
2008         if (!found)
2009                 ret = -EINVAL;
2010
2011         return ret;
2012 }
2013
2014 int drm_mode_detachmode_crtc(struct drm_device *dev, struct drm_display_mode *mode)
2015 {
2016         struct drm_output *output;
2017
2018         list_for_each_entry(output, &dev->mode_config.output_list, head) {
2019                 drm_mode_detachmode(dev, output, mode);
2020         }
2021         return 0;
2022 }
2023 EXPORT_SYMBOL(drm_mode_detachmode_crtc);
2024
2025 /**
2026  * drm_fb_attachmode - Attach a user mode to an output
2027  * @inode: inode from the ioctl
2028  * @filp: file * from the ioctl
2029  * @cmd: cmd from ioctl
2030  * @arg: arg from ioctl
2031  *
2032  * This attaches a user specified mode to an output.
2033  * Called by the user via ioctl.
2034  *
2035  * RETURNS:
2036  * Zero on success, errno on failure.
2037  */
2038 int drm_mode_attachmode_ioctl(struct drm_device *dev,
2039                               void *data, struct drm_file *file_priv)
2040 {
2041         struct drm_mode_mode_cmd *mode_cmd = data;
2042         struct drm_output *output;
2043         struct drm_display_mode *mode;
2044         struct drm_mode_modeinfo *umode = &mode_cmd->mode;
2045         int ret = 0;
2046
2047         mutex_lock(&dev->mode_config.mutex);
2048
2049         output = idr_find(&dev->mode_config.crtc_idr, mode_cmd->output_id);
2050         if (!output || (output->id != mode_cmd->output_id)) {
2051                 ret = -EINVAL;
2052                 goto out;
2053         }
2054
2055         mode = drm_mode_create(dev);
2056         if (!mode) {
2057                 ret = -ENOMEM;
2058                 goto out;
2059         }
2060         
2061         drm_crtc_convert_umode(mode, umode);
2062
2063         ret = drm_mode_attachmode(dev, output, mode);
2064 out:
2065         mutex_unlock(&dev->mode_config.mutex);
2066         return ret;
2067 }
2068
2069
2070 /**
2071  * drm_fb_detachmode - Detach a user specified mode from an output
2072  * @inode: inode from the ioctl
2073  * @filp: file * from the ioctl
2074  * @cmd: cmd from ioctl
2075  * @arg: arg from ioctl
2076  *
2077  * Called by the user via ioctl.
2078  *
2079  * RETURNS:
2080  * Zero on success, errno on failure.
2081  */
2082 int drm_mode_detachmode_ioctl(struct drm_device *dev,
2083                               void *data, struct drm_file *file_priv)
2084 {
2085         struct drm_mode_mode_cmd *mode_cmd = data;
2086         struct drm_output *output;
2087         struct drm_display_mode mode;
2088         struct drm_mode_modeinfo *umode = &mode_cmd->mode;
2089         int ret = 0;
2090
2091         mutex_lock(&dev->mode_config.mutex);
2092
2093         output = idr_find(&dev->mode_config.crtc_idr, mode_cmd->output_id);
2094         if (!output || (output->id != mode_cmd->output_id)) {
2095                 ret = -EINVAL;
2096                 goto out;
2097         }
2098         
2099         drm_crtc_convert_umode(&mode, umode);
2100         ret = drm_mode_detachmode(dev, output, &mode);
2101 out:           
2102         mutex_unlock(&dev->mode_config.mutex);
2103         return ret;
2104 }
2105
2106 struct drm_property *drm_property_create(struct drm_device *dev, int flags,
2107                                          const char *name, int num_values)
2108 {
2109         struct drm_property *property = NULL;
2110
2111         property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
2112         if (!property)
2113                 return NULL;
2114
2115         if (num_values) {
2116                 property->values = kzalloc(sizeof(uint64_t)*num_values, GFP_KERNEL);
2117                 if (!property->values)
2118                         goto fail;
2119         }
2120
2121         property->id = drm_idr_get(dev, property);
2122         property->flags = flags;
2123         property->num_values = num_values;
2124         INIT_LIST_HEAD(&property->enum_blob_list);
2125
2126         if (name)
2127                 strncpy(property->name, name, DRM_PROP_NAME_LEN);
2128
2129         list_add_tail(&property->head, &dev->mode_config.property_list);
2130         return property;
2131 fail:
2132         kfree(property);
2133         return NULL;
2134 }
2135 EXPORT_SYMBOL(drm_property_create);
2136
2137 int drm_property_add_enum(struct drm_property *property, int index,
2138                           uint64_t value, const char *name)
2139 {
2140         struct drm_property_enum *prop_enum;
2141
2142         if (!(property->flags & DRM_MODE_PROP_ENUM))
2143                 return -EINVAL;
2144
2145         if (!list_empty(&property->enum_blob_list)) {
2146                 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
2147                         if (prop_enum->value == value) {
2148                                 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN); 
2149                                 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
2150                                 return 0;
2151                         }
2152                 }
2153         }
2154
2155         prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
2156         if (!prop_enum)
2157                 return -ENOMEM;
2158
2159         strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN); 
2160         prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
2161         prop_enum->value = value;
2162
2163         property->values[index] = value;
2164         list_add_tail(&prop_enum->head, &property->enum_blob_list);
2165         return 0;
2166 }
2167 EXPORT_SYMBOL(drm_property_add_enum);
2168
2169 void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
2170 {
2171         struct drm_property_enum *prop_enum, *pt;
2172
2173         list_for_each_entry_safe(prop_enum, pt, &property->enum_blob_list, head) {
2174                 list_del(&prop_enum->head);
2175                 kfree(prop_enum);
2176         }
2177
2178         if (property->num_values)
2179                 kfree(property->values);
2180         drm_idr_put(dev, property->id);
2181         list_del(&property->head);
2182         kfree(property);        
2183 }
2184 EXPORT_SYMBOL(drm_property_destroy);
2185
2186 int drm_output_attach_property(struct drm_output *output,
2187                                struct drm_property *property, uint64_t init_val)
2188 {
2189         int i;
2190
2191         for (i = 0; i < DRM_OUTPUT_MAX_PROPERTY; i++) {
2192                 if (output->property_ids[i] == 0) {
2193                         output->property_ids[i] = property->id;
2194                         output->property_values[i] = init_val;
2195                         break;
2196                 }
2197         }
2198
2199         if (i == DRM_OUTPUT_MAX_PROPERTY)
2200                 return -EINVAL;
2201         return 0;
2202 }
2203 EXPORT_SYMBOL(drm_output_attach_property);
2204
2205 int drm_output_property_set_value(struct drm_output *output,
2206                                   struct drm_property *property, uint64_t value)
2207 {
2208         int i;
2209
2210         for (i = 0; i < DRM_OUTPUT_MAX_PROPERTY; i++) {
2211                 if (output->property_ids[i] == property->id) {
2212                         output->property_values[i] = value;
2213                         break;
2214                 }
2215         }
2216
2217         if (i == DRM_OUTPUT_MAX_PROPERTY)
2218                 return -EINVAL;
2219         return 0;
2220 }
2221 EXPORT_SYMBOL(drm_output_property_set_value);
2222
2223 int drm_mode_getproperty_ioctl(struct drm_device *dev,
2224                                void *data, struct drm_file *file_priv)
2225 {
2226         struct drm_mode_get_property *out_resp = data;
2227         struct drm_property *property;
2228         int enum_count = 0;
2229         int blob_count = 0;
2230         int value_count = 0;
2231         int ret = 0, i;
2232         int copied;
2233         struct drm_property_enum *prop_enum;
2234         struct drm_mode_property_enum __user *enum_ptr;
2235         struct drm_property_blob *prop_blob;
2236         uint32_t *blob_id_ptr;
2237         uint64_t __user *values_ptr;
2238         uint32_t __user *blob_length_ptr;
2239
2240         mutex_lock(&dev->mode_config.mutex);
2241         property = idr_find(&dev->mode_config.crtc_idr, out_resp->prop_id);
2242         if (!property || (property->id != out_resp->prop_id)) {
2243                 ret = -EINVAL;
2244                 goto done;
2245         }
2246
2247         if (property->flags & DRM_MODE_PROP_ENUM) {
2248                 list_for_each_entry(prop_enum, &property->enum_blob_list, head)
2249                         enum_count++;
2250         } else if (property->flags & DRM_MODE_PROP_BLOB) {
2251                 list_for_each_entry(prop_blob, &property->enum_blob_list, head)
2252                         blob_count++;
2253         }
2254
2255         value_count = property->num_values;
2256
2257         strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
2258         out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
2259         out_resp->flags = property->flags;
2260
2261         if ((out_resp->count_values >= value_count) && value_count) {
2262                 values_ptr = (uint64_t *)(unsigned long)out_resp->values_ptr;
2263                 for (i = 0; i < value_count; i++) {
2264                         if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
2265                                 ret = -EFAULT;
2266                                 goto done;
2267                         }
2268                 }
2269         }
2270         out_resp->count_values = value_count;
2271
2272         if (property->flags & DRM_MODE_PROP_ENUM) {
2273
2274                 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
2275                         copied = 0;
2276                         enum_ptr = (struct drm_mode_property_enum *)(unsigned long)out_resp->enum_blob_ptr;
2277                         list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
2278                                 
2279                                 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
2280                                         ret = -EFAULT;
2281                                         goto done;
2282                                 }
2283                                 
2284                                 if (copy_to_user(&enum_ptr[copied].name,
2285                                                  &prop_enum->name, DRM_PROP_NAME_LEN)) {
2286                                         ret = -EFAULT;
2287                                         goto done;
2288                                 }
2289                                 copied++;
2290                         }
2291                 }
2292                 out_resp->count_enum_blobs = enum_count;
2293         }
2294
2295         if (property->flags & DRM_MODE_PROP_BLOB) {
2296                 if ((out_resp->count_enum_blobs >= blob_count) && blob_count) {
2297                         copied = 0;
2298                         blob_id_ptr = (uint32_t *)(unsigned long)out_resp->enum_blob_ptr;
2299                         blob_length_ptr = (uint32_t *)(unsigned long)out_resp->values_ptr;
2300                         
2301                         list_for_each_entry(prop_blob, &property->enum_blob_list, head) {
2302                                 if (put_user(prop_blob->id, blob_id_ptr + copied)) {
2303                                         ret = -EFAULT;
2304                                         goto done;
2305                                 }
2306                                 
2307                                 if (put_user(prop_blob->length, blob_length_ptr + copied)) {
2308                                         ret = -EFAULT;
2309                                         goto done;
2310                                 }
2311                                 
2312                                 copied++;
2313                         }
2314                 }
2315                 out_resp->count_enum_blobs = enum_count;
2316         }
2317 done:
2318         mutex_unlock(&dev->mode_config.mutex);
2319         return ret;
2320 }
2321
2322 static struct drm_property_blob *drm_property_create_blob(struct drm_device *dev, int length,
2323                                                           void *data)
2324 {
2325         struct drm_property_blob *blob;
2326
2327         if (!length || !data)
2328                 return NULL;
2329
2330         blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
2331         if (!blob)
2332                 return NULL;
2333
2334         blob->data = (void *)((char *)blob + sizeof(struct drm_property_blob));
2335         blob->length = length;
2336
2337         memcpy(blob->data, data, length);
2338
2339         blob->id = drm_idr_get(dev, blob);
2340         
2341         list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
2342         return blob;
2343 }
2344
2345 static void drm_property_destroy_blob(struct drm_device *dev,
2346                                struct drm_property_blob *blob)
2347 {
2348         drm_idr_put(dev, blob->id);
2349         list_del(&blob->head);
2350         kfree(blob);
2351 }
2352
2353 int drm_mode_getblob_ioctl(struct drm_device *dev,
2354                            void *data, struct drm_file *file_priv)
2355 {
2356         struct drm_mode_get_blob *out_resp = data;
2357         struct drm_property_blob *blob;
2358         int ret = 0;
2359         void *blob_ptr;
2360
2361         mutex_lock(&dev->mode_config.mutex);
2362         
2363         blob = idr_find(&dev->mode_config.crtc_idr, out_resp->blob_id);
2364         if (!blob || (blob->id != out_resp->blob_id)) {
2365                 ret = -EINVAL;
2366                 goto done;
2367         }
2368
2369         if (out_resp->length == blob->length) {
2370                 blob_ptr = (void *)(unsigned long)out_resp->data;
2371                 if (copy_to_user(blob_ptr, blob->data, blob->length)){
2372                         ret = -EFAULT;
2373                         goto done;
2374                 }
2375         }
2376         out_resp->length = blob->length;
2377
2378 done:
2379         mutex_unlock(&dev->mode_config.mutex);
2380         return ret;
2381 }
2382
2383 int drm_mode_output_update_edid_property(struct drm_output *output, struct edid *edid)
2384 {
2385         struct drm_device *dev = output->dev;
2386         int ret = 0;
2387         if (output->edid_blob_ptr)
2388                 drm_property_destroy_blob(dev, output->edid_blob_ptr);
2389
2390         output->edid_blob_ptr = drm_property_create_blob(output->dev, 128, edid);
2391         
2392         ret = drm_output_property_set_value(output, dev->mode_config.edid_property, output->edid_blob_ptr->id);
2393         return ret;
2394 }
2395 EXPORT_SYMBOL(drm_mode_output_update_edid_property);
2396
2397 int drm_mode_output_property_set_ioctl(struct drm_device *dev,
2398                                        void *data, struct drm_file *file_priv)
2399 {
2400         struct drm_mode_output_set_property *out_resp = data;
2401         struct drm_property *property;
2402         struct drm_output *output;
2403         int ret = -EINVAL;
2404         int i;
2405
2406         mutex_lock(&dev->mode_config.mutex);
2407         output = idr_find(&dev->mode_config.crtc_idr, out_resp->output_id);
2408         if (!output || (output->id != out_resp->output_id)) {
2409                 goto out;
2410         }
2411
2412         for (i = 0; i < DRM_OUTPUT_MAX_PROPERTY; i++) {
2413                 if (output->property_ids[i] == out_resp->prop_id)
2414                         break;
2415         }
2416
2417         if (i == DRM_OUTPUT_MAX_PROPERTY) {
2418                 goto out;
2419         }
2420         
2421         property = idr_find(&dev->mode_config.crtc_idr, out_resp->prop_id);
2422         if (!property || (property->id != out_resp->prop_id)) {
2423                 goto out;
2424         }
2425
2426         if (property->flags & DRM_MODE_PROP_IMMUTABLE)
2427                 goto out;
2428
2429         if (property->flags & DRM_MODE_PROP_RANGE) {
2430                 if (out_resp->value < property->values[0])
2431                         goto out;
2432
2433                 if (out_resp->value > property->values[1])
2434                         goto out;
2435         } else {
2436                 int found = 0;
2437                 for (i = 0; i < property->num_values; i++) {
2438                         if (property->values[i] == out_resp->value) {
2439                                 found = 1;
2440                                 break;
2441                         }
2442                 }
2443                 if (!found) {
2444                         goto out;
2445                 }
2446         }
2447
2448         if (output->funcs->set_property)
2449                 ret = output->funcs->set_property(output, property, out_resp->value);
2450
2451 out:
2452         mutex_unlock(&dev->mode_config.mutex);
2453         return ret;
2454 }
2455