drm/nouveau: Dis/Enable vblank irqs during suspend/resume.
[pandora-kernel.git] / drivers / gpu / drm / nouveau / nouveau_display.c
1 /*
2  * Copyright (C) 2008 Maarten Maathuis.
3  * All Rights Reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining
6  * a copy of this software and associated documentation files (the
7  * "Software"), to deal in the Software without restriction, including
8  * without limitation the rights to use, copy, modify, merge, publish,
9  * distribute, sublicense, and/or sell copies of the Software, and to
10  * permit persons to whom the Software is furnished to do so, subject to
11  * the following conditions:
12  *
13  * The above copyright notice and this permission notice (including the
14  * next paragraph) shall be included in all copies or substantial
15  * portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20  * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24  *
25  */
26
27 #include <drm/drmP.h>
28 #include <drm/drm_crtc_helper.h>
29
30 #include "nouveau_fbcon.h"
31 #include "dispnv04/hw.h"
32 #include "nouveau_crtc.h"
33 #include "nouveau_dma.h"
34 #include "nouveau_gem.h"
35 #include "nouveau_connector.h"
36 #include "nv50_display.h"
37
38 #include "nouveau_fence.h"
39
40 #include <engine/disp.h>
41
42 #include <core/class.h>
43
44 static int
45 nouveau_display_vblank_handler(void *data, u32 type, int head)
46 {
47         struct nouveau_drm *drm = data;
48         drm_handle_vblank(drm->dev, head);
49         return NVKM_EVENT_KEEP;
50 }
51
52 int
53 nouveau_display_vblank_enable(struct drm_device *dev, int head)
54 {
55         struct nouveau_display *disp = nouveau_display(dev);
56         if (disp) {
57                 nouveau_event_get(disp->vblank[head]);
58                 return 0;
59         }
60         return -EIO;
61 }
62
63 void
64 nouveau_display_vblank_disable(struct drm_device *dev, int head)
65 {
66         struct nouveau_display *disp = nouveau_display(dev);
67         if (disp)
68                 nouveau_event_put(disp->vblank[head]);
69 }
70
71 static inline int
72 calc(int blanks, int blanke, int total, int line)
73 {
74         if (blanke >= blanks) {
75                 if (line >= blanks)
76                         line -= total;
77         } else {
78                 if (line >= blanks)
79                         line -= total;
80                 line -= blanke + 1;
81         }
82         return line;
83 }
84
85 int
86 nouveau_display_scanoutpos_head(struct drm_crtc *crtc, int *vpos, int *hpos,
87                                 ktime_t *stime, ktime_t *etime)
88 {
89         const u32 mthd = NV04_DISP_SCANOUTPOS + nouveau_crtc(crtc)->index;
90         struct nouveau_display *disp = nouveau_display(crtc->dev);
91         struct nv04_display_scanoutpos args;
92         int ret, retry = 1;
93
94         do {
95                 ret = nv_exec(disp->core, mthd, &args, sizeof(args));
96                 if (ret != 0)
97                         return 0;
98
99                 if (args.vline) {
100                         ret |= DRM_SCANOUTPOS_ACCURATE;
101                         ret |= DRM_SCANOUTPOS_VALID;
102                         break;
103                 }
104
105                 if (retry) ndelay(crtc->linedur_ns);
106         } while (retry--);
107
108         *hpos = args.hline;
109         *vpos = calc(args.vblanks, args.vblanke, args.vtotal, args.vline);
110         if (stime) *stime = ns_to_ktime(args.time[0]);
111         if (etime) *etime = ns_to_ktime(args.time[1]);
112
113         if (*vpos < 0)
114                 ret |= DRM_SCANOUTPOS_INVBL;
115         return ret;
116 }
117
118 int
119 nouveau_display_scanoutpos(struct drm_device *dev, int head, unsigned int flags,
120                            int *vpos, int *hpos, ktime_t *stime, ktime_t *etime)
121 {
122         struct drm_crtc *crtc;
123
124         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
125                 if (nouveau_crtc(crtc)->index == head) {
126                         return nouveau_display_scanoutpos_head(crtc, vpos, hpos,
127                                                                stime, etime);
128                 }
129         }
130
131         return 0;
132 }
133
134 int
135 nouveau_display_vblstamp(struct drm_device *dev, int head, int *max_error,
136                          struct timeval *time, unsigned flags)
137 {
138         struct drm_crtc *crtc;
139
140         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
141                 if (nouveau_crtc(crtc)->index == head) {
142                         return drm_calc_vbltimestamp_from_scanoutpos(dev,
143                                         head, max_error, time, flags, crtc,
144                                         &crtc->hwmode);
145                 }
146         }
147
148         return -EINVAL;
149 }
150
151 static void
152 nouveau_display_vblank_fini(struct drm_device *dev)
153 {
154         struct nouveau_display *disp = nouveau_display(dev);
155         int i;
156
157         drm_vblank_cleanup(dev);
158
159         if (disp->vblank) {
160                 for (i = 0; i < dev->mode_config.num_crtc; i++)
161                         nouveau_event_ref(NULL, &disp->vblank[i]);
162                 kfree(disp->vblank);
163                 disp->vblank = NULL;
164         }
165 }
166
167 static int
168 nouveau_display_vblank_init(struct drm_device *dev)
169 {
170         struct nouveau_display *disp = nouveau_display(dev);
171         struct nouveau_drm *drm = nouveau_drm(dev);
172         struct nouveau_disp *pdisp = nouveau_disp(drm->device);
173         int ret, i;
174
175         disp->vblank = kzalloc(dev->mode_config.num_crtc *
176                                sizeof(*disp->vblank), GFP_KERNEL);
177         if (!disp->vblank)
178                 return -ENOMEM;
179
180         for (i = 0; i < dev->mode_config.num_crtc; i++) {
181                 ret = nouveau_event_new(pdisp->vblank, 1, i,
182                                         nouveau_display_vblank_handler,
183                                         drm, &disp->vblank[i]);
184                 if (ret) {
185                         nouveau_display_vblank_fini(dev);
186                         return ret;
187                 }
188         }
189
190         ret = drm_vblank_init(dev, dev->mode_config.num_crtc);
191         if (ret) {
192                 nouveau_display_vblank_fini(dev);
193                 return ret;
194         }
195
196         return 0;
197 }
198
199 static void
200 nouveau_user_framebuffer_destroy(struct drm_framebuffer *drm_fb)
201 {
202         struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb);
203
204         if (fb->nvbo)
205                 drm_gem_object_unreference_unlocked(&fb->nvbo->gem);
206
207         drm_framebuffer_cleanup(drm_fb);
208         kfree(fb);
209 }
210
211 static int
212 nouveau_user_framebuffer_create_handle(struct drm_framebuffer *drm_fb,
213                                        struct drm_file *file_priv,
214                                        unsigned int *handle)
215 {
216         struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb);
217
218         return drm_gem_handle_create(file_priv, &fb->nvbo->gem, handle);
219 }
220
221 static const struct drm_framebuffer_funcs nouveau_framebuffer_funcs = {
222         .destroy = nouveau_user_framebuffer_destroy,
223         .create_handle = nouveau_user_framebuffer_create_handle,
224 };
225
226 int
227 nouveau_framebuffer_init(struct drm_device *dev,
228                          struct nouveau_framebuffer *nv_fb,
229                          struct drm_mode_fb_cmd2 *mode_cmd,
230                          struct nouveau_bo *nvbo)
231 {
232         struct nouveau_drm *drm = nouveau_drm(dev);
233         struct drm_framebuffer *fb = &nv_fb->base;
234         int ret;
235
236         drm_helper_mode_fill_fb_struct(fb, mode_cmd);
237         nv_fb->nvbo = nvbo;
238
239         if (nv_device(drm->device)->card_type >= NV_50) {
240                 u32 tile_flags = nouveau_bo_tile_layout(nvbo);
241                 if (tile_flags == 0x7a00 ||
242                     tile_flags == 0xfe00)
243                         nv_fb->r_dma = NvEvoFB32;
244                 else
245                 if (tile_flags == 0x7000)
246                         nv_fb->r_dma = NvEvoFB16;
247                 else
248                         nv_fb->r_dma = NvEvoVRAM_LP;
249
250                 switch (fb->depth) {
251                 case  8: nv_fb->r_format = 0x1e00; break;
252                 case 15: nv_fb->r_format = 0xe900; break;
253                 case 16: nv_fb->r_format = 0xe800; break;
254                 case 24:
255                 case 32: nv_fb->r_format = 0xcf00; break;
256                 case 30: nv_fb->r_format = 0xd100; break;
257                 default:
258                          NV_ERROR(drm, "unknown depth %d\n", fb->depth);
259                          return -EINVAL;
260                 }
261
262                 if (nvbo->tile_flags & NOUVEAU_GEM_TILE_NONCONTIG) {
263                         NV_ERROR(drm, "framebuffer requires contiguous bo\n");
264                         return -EINVAL;
265                 }
266
267                 if (nv_device(drm->device)->chipset == 0x50)
268                         nv_fb->r_format |= (tile_flags << 8);
269
270                 if (!tile_flags) {
271                         if (nv_device(drm->device)->card_type < NV_D0)
272                                 nv_fb->r_pitch = 0x00100000 | fb->pitches[0];
273                         else
274                                 nv_fb->r_pitch = 0x01000000 | fb->pitches[0];
275                 } else {
276                         u32 mode = nvbo->tile_mode;
277                         if (nv_device(drm->device)->card_type >= NV_C0)
278                                 mode >>= 4;
279                         nv_fb->r_pitch = ((fb->pitches[0] / 4) << 4) | mode;
280                 }
281         }
282
283         ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs);
284         if (ret) {
285                 return ret;
286         }
287
288         return 0;
289 }
290
291 static struct drm_framebuffer *
292 nouveau_user_framebuffer_create(struct drm_device *dev,
293                                 struct drm_file *file_priv,
294                                 struct drm_mode_fb_cmd2 *mode_cmd)
295 {
296         struct nouveau_framebuffer *nouveau_fb;
297         struct drm_gem_object *gem;
298         int ret = -ENOMEM;
299
300         gem = drm_gem_object_lookup(dev, file_priv, mode_cmd->handles[0]);
301         if (!gem)
302                 return ERR_PTR(-ENOENT);
303
304         nouveau_fb = kzalloc(sizeof(struct nouveau_framebuffer), GFP_KERNEL);
305         if (!nouveau_fb)
306                 goto err_unref;
307
308         ret = nouveau_framebuffer_init(dev, nouveau_fb, mode_cmd, nouveau_gem_object(gem));
309         if (ret)
310                 goto err;
311
312         return &nouveau_fb->base;
313
314 err:
315         kfree(nouveau_fb);
316 err_unref:
317         drm_gem_object_unreference(gem);
318         return ERR_PTR(ret);
319 }
320
321 static const struct drm_mode_config_funcs nouveau_mode_config_funcs = {
322         .fb_create = nouveau_user_framebuffer_create,
323         .output_poll_changed = nouveau_fbcon_output_poll_changed,
324 };
325
326
327 struct nouveau_drm_prop_enum_list {
328         u8 gen_mask;
329         int type;
330         char *name;
331 };
332
333 static struct nouveau_drm_prop_enum_list underscan[] = {
334         { 6, UNDERSCAN_AUTO, "auto" },
335         { 6, UNDERSCAN_OFF, "off" },
336         { 6, UNDERSCAN_ON, "on" },
337         {}
338 };
339
340 static struct nouveau_drm_prop_enum_list dither_mode[] = {
341         { 7, DITHERING_MODE_AUTO, "auto" },
342         { 7, DITHERING_MODE_OFF, "off" },
343         { 1, DITHERING_MODE_ON, "on" },
344         { 6, DITHERING_MODE_STATIC2X2, "static 2x2" },
345         { 6, DITHERING_MODE_DYNAMIC2X2, "dynamic 2x2" },
346         { 4, DITHERING_MODE_TEMPORAL, "temporal" },
347         {}
348 };
349
350 static struct nouveau_drm_prop_enum_list dither_depth[] = {
351         { 6, DITHERING_DEPTH_AUTO, "auto" },
352         { 6, DITHERING_DEPTH_6BPC, "6 bpc" },
353         { 6, DITHERING_DEPTH_8BPC, "8 bpc" },
354         {}
355 };
356
357 #define PROP_ENUM(p,gen,n,list) do {                                           \
358         struct nouveau_drm_prop_enum_list *l = (list);                         \
359         int c = 0;                                                             \
360         while (l->gen_mask) {                                                  \
361                 if (l->gen_mask & (1 << (gen)))                                \
362                         c++;                                                   \
363                 l++;                                                           \
364         }                                                                      \
365         if (c) {                                                               \
366                 p = drm_property_create(dev, DRM_MODE_PROP_ENUM, n, c);        \
367                 l = (list);                                                    \
368                 c = 0;                                                         \
369                 while (p && l->gen_mask) {                                     \
370                         if (l->gen_mask & (1 << (gen))) {                      \
371                                 drm_property_add_enum(p, c, l->type, l->name); \
372                                 c++;                                           \
373                         }                                                      \
374                         l++;                                                   \
375                 }                                                              \
376         }                                                                      \
377 } while(0)
378
379 int
380 nouveau_display_init(struct drm_device *dev)
381 {
382         struct nouveau_display *disp = nouveau_display(dev);
383         struct drm_connector *connector;
384         int ret;
385
386         ret = disp->init(dev);
387         if (ret)
388                 return ret;
389
390         /* enable polling for external displays */
391         drm_kms_helper_poll_enable(dev);
392
393         /* enable hotplug interrupts */
394         list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
395                 struct nouveau_connector *conn = nouveau_connector(connector);
396                 if (conn->hpd) nouveau_event_get(conn->hpd);
397         }
398
399         return ret;
400 }
401
402 void
403 nouveau_display_fini(struct drm_device *dev)
404 {
405         struct nouveau_display *disp = nouveau_display(dev);
406         struct drm_connector *connector;
407         int head;
408
409         /* Make sure that drm and hw vblank irqs get properly disabled. */
410         for (head = 0; head < dev->mode_config.num_crtc; head++)
411                 drm_vblank_off(dev, head);
412
413         /* disable hotplug interrupts */
414         list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
415                 struct nouveau_connector *conn = nouveau_connector(connector);
416                 if (conn->hpd) nouveau_event_put(conn->hpd);
417         }
418
419         drm_kms_helper_poll_disable(dev);
420         disp->fini(dev);
421 }
422
423 int
424 nouveau_display_create(struct drm_device *dev)
425 {
426         struct nouveau_drm *drm = nouveau_drm(dev);
427         struct nouveau_device *device = nouveau_dev(dev);
428         struct nouveau_display *disp;
429         int ret, gen;
430
431         disp = drm->display = kzalloc(sizeof(*disp), GFP_KERNEL);
432         if (!disp)
433                 return -ENOMEM;
434
435         drm_mode_config_init(dev);
436         drm_mode_create_scaling_mode_property(dev);
437         drm_mode_create_dvi_i_properties(dev);
438
439         if (nv_device(drm->device)->card_type < NV_50)
440                 gen = 0;
441         else
442         if (nv_device(drm->device)->card_type < NV_D0)
443                 gen = 1;
444         else
445                 gen = 2;
446
447         PROP_ENUM(disp->dithering_mode, gen, "dithering mode", dither_mode);
448         PROP_ENUM(disp->dithering_depth, gen, "dithering depth", dither_depth);
449         PROP_ENUM(disp->underscan_property, gen, "underscan", underscan);
450
451         disp->underscan_hborder_property =
452                 drm_property_create_range(dev, 0, "underscan hborder", 0, 128);
453
454         disp->underscan_vborder_property =
455                 drm_property_create_range(dev, 0, "underscan vborder", 0, 128);
456
457         if (gen >= 1) {
458                 /* -90..+90 */
459                 disp->vibrant_hue_property =
460                         drm_property_create_range(dev, 0, "vibrant hue", 0, 180);
461
462                 /* -100..+100 */
463                 disp->color_vibrance_property =
464                         drm_property_create_range(dev, 0, "color vibrance", 0, 200);
465         }
466
467         dev->mode_config.funcs = &nouveau_mode_config_funcs;
468         dev->mode_config.fb_base = nv_device_resource_start(device, 1);
469
470         dev->mode_config.min_width = 0;
471         dev->mode_config.min_height = 0;
472         if (nv_device(drm->device)->card_type < NV_10) {
473                 dev->mode_config.max_width = 2048;
474                 dev->mode_config.max_height = 2048;
475         } else
476         if (nv_device(drm->device)->card_type < NV_50) {
477                 dev->mode_config.max_width = 4096;
478                 dev->mode_config.max_height = 4096;
479         } else {
480                 dev->mode_config.max_width = 8192;
481                 dev->mode_config.max_height = 8192;
482         }
483
484         dev->mode_config.preferred_depth = 24;
485         dev->mode_config.prefer_shadow = 1;
486
487         if (nv_device(drm->device)->chipset < 0x11)
488                 dev->mode_config.async_page_flip = false;
489         else
490                 dev->mode_config.async_page_flip = true;
491
492         drm_kms_helper_poll_init(dev);
493         drm_kms_helper_poll_disable(dev);
494
495         if (drm->vbios.dcb.entries) {
496                 static const u16 oclass[] = {
497                         GM107_DISP_CLASS,
498                         NVF0_DISP_CLASS,
499                         NVE0_DISP_CLASS,
500                         NVD0_DISP_CLASS,
501                         NVA3_DISP_CLASS,
502                         NV94_DISP_CLASS,
503                         NVA0_DISP_CLASS,
504                         NV84_DISP_CLASS,
505                         NV50_DISP_CLASS,
506                         NV04_DISP_CLASS,
507                 };
508                 int i;
509
510                 for (i = 0, ret = -ENODEV; ret && i < ARRAY_SIZE(oclass); i++) {
511                         ret = nouveau_object_new(nv_object(drm), NVDRM_DEVICE,
512                                                  NVDRM_DISPLAY, oclass[i],
513                                                  NULL, 0, &disp->core);
514                 }
515
516                 if (ret == 0) {
517                         if (nv_mclass(disp->core) < NV50_DISP_CLASS)
518                                 ret = nv04_display_create(dev);
519                         else
520                                 ret = nv50_display_create(dev);
521                 }
522         } else {
523                 ret = 0;
524         }
525
526         if (ret)
527                 goto disp_create_err;
528
529         if (dev->mode_config.num_crtc) {
530                 ret = nouveau_display_vblank_init(dev);
531                 if (ret)
532                         goto vblank_err;
533         }
534
535         nouveau_backlight_init(dev);
536         return 0;
537
538 vblank_err:
539         disp->dtor(dev);
540 disp_create_err:
541         drm_kms_helper_poll_fini(dev);
542         drm_mode_config_cleanup(dev);
543         return ret;
544 }
545
546 void
547 nouveau_display_destroy(struct drm_device *dev)
548 {
549         struct nouveau_display *disp = nouveau_display(dev);
550         struct nouveau_drm *drm = nouveau_drm(dev);
551
552         nouveau_backlight_exit(dev);
553         nouveau_display_vblank_fini(dev);
554
555         drm_kms_helper_poll_fini(dev);
556         drm_mode_config_cleanup(dev);
557
558         if (disp->dtor)
559                 disp->dtor(dev);
560
561         nouveau_object_del(nv_object(drm), NVDRM_DEVICE, NVDRM_DISPLAY);
562
563         nouveau_drm(dev)->display = NULL;
564         kfree(disp);
565 }
566
567 int
568 nouveau_display_suspend(struct drm_device *dev)
569 {
570         struct nouveau_drm *drm = nouveau_drm(dev);
571         struct drm_crtc *crtc;
572
573         nouveau_display_fini(dev);
574
575         NV_INFO(drm, "unpinning framebuffer(s)...\n");
576         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
577                 struct nouveau_framebuffer *nouveau_fb;
578
579                 nouveau_fb = nouveau_framebuffer(crtc->primary->fb);
580                 if (!nouveau_fb || !nouveau_fb->nvbo)
581                         continue;
582
583                 nouveau_bo_unpin(nouveau_fb->nvbo);
584         }
585
586         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
587                 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
588
589                 nouveau_bo_unmap(nv_crtc->cursor.nvbo);
590                 nouveau_bo_unpin(nv_crtc->cursor.nvbo);
591         }
592
593         return 0;
594 }
595
596 void
597 nouveau_display_repin(struct drm_device *dev)
598 {
599         struct nouveau_drm *drm = nouveau_drm(dev);
600         struct drm_crtc *crtc;
601         int ret;
602
603         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
604                 struct nouveau_framebuffer *nouveau_fb;
605
606                 nouveau_fb = nouveau_framebuffer(crtc->primary->fb);
607                 if (!nouveau_fb || !nouveau_fb->nvbo)
608                         continue;
609
610                 nouveau_bo_pin(nouveau_fb->nvbo, TTM_PL_FLAG_VRAM);
611         }
612
613         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
614                 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
615
616                 ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM);
617                 if (!ret)
618                         ret = nouveau_bo_map(nv_crtc->cursor.nvbo);
619                 if (ret)
620                         NV_ERROR(drm, "Could not pin/map cursor.\n");
621         }
622 }
623
624 void
625 nouveau_display_resume(struct drm_device *dev)
626 {
627         struct drm_crtc *crtc;
628         int head;
629
630         nouveau_display_init(dev);
631
632         /* Force CLUT to get re-loaded during modeset */
633         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
634                 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
635
636                 nv_crtc->lut.depth = 0;
637         }
638
639         /* Make sure that drm and hw vblank irqs get resumed if needed. */
640         for (head = 0; head < dev->mode_config.num_crtc; head++)
641                 drm_vblank_on(dev, head);
642
643         drm_helper_resume_force_mode(dev);
644
645         list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
646                 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
647                 u32 offset = nv_crtc->cursor.nvbo->bo.offset;
648
649                 nv_crtc->cursor.set_offset(nv_crtc, offset);
650                 nv_crtc->cursor.set_pos(nv_crtc, nv_crtc->cursor_saved_x,
651                                                  nv_crtc->cursor_saved_y);
652         }
653 }
654
655 static int
656 nouveau_page_flip_emit(struct nouveau_channel *chan,
657                        struct nouveau_bo *old_bo,
658                        struct nouveau_bo *new_bo,
659                        struct nouveau_page_flip_state *s,
660                        struct nouveau_fence **pfence)
661 {
662         struct nouveau_fence_chan *fctx = chan->fence;
663         struct nouveau_drm *drm = chan->drm;
664         struct drm_device *dev = drm->dev;
665         unsigned long flags;
666         int ret;
667
668         /* Queue it to the pending list */
669         spin_lock_irqsave(&dev->event_lock, flags);
670         list_add_tail(&s->head, &fctx->flip);
671         spin_unlock_irqrestore(&dev->event_lock, flags);
672
673         /* Synchronize with the old framebuffer */
674         ret = nouveau_fence_sync(old_bo->bo.sync_obj, chan);
675         if (ret)
676                 goto fail;
677
678         /* Emit the pageflip */
679         ret = RING_SPACE(chan, 2);
680         if (ret)
681                 goto fail;
682
683         if (nv_device(drm->device)->card_type < NV_C0)
684                 BEGIN_NV04(chan, NvSubSw, NV_SW_PAGE_FLIP, 1);
685         else
686                 BEGIN_NVC0(chan, FermiSw, NV_SW_PAGE_FLIP, 1);
687         OUT_RING  (chan, 0x00000000);
688         FIRE_RING (chan);
689
690         ret = nouveau_fence_new(chan, false, pfence);
691         if (ret)
692                 goto fail;
693
694         return 0;
695 fail:
696         spin_lock_irqsave(&dev->event_lock, flags);
697         list_del(&s->head);
698         spin_unlock_irqrestore(&dev->event_lock, flags);
699         return ret;
700 }
701
702 int
703 nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
704                        struct drm_pending_vblank_event *event, u32 flags)
705 {
706         const int swap_interval = (flags & DRM_MODE_PAGE_FLIP_ASYNC) ? 0 : 1;
707         struct drm_device *dev = crtc->dev;
708         struct nouveau_drm *drm = nouveau_drm(dev);
709         struct nouveau_bo *old_bo = nouveau_framebuffer(crtc->primary->fb)->nvbo;
710         struct nouveau_bo *new_bo = nouveau_framebuffer(fb)->nvbo;
711         struct nouveau_page_flip_state *s;
712         struct nouveau_channel *chan = drm->channel;
713         struct nouveau_fence *fence;
714         int ret;
715
716         if (!drm->channel)
717                 return -ENODEV;
718
719         s = kzalloc(sizeof(*s), GFP_KERNEL);
720         if (!s)
721                 return -ENOMEM;
722
723         if (new_bo != old_bo) {
724                 ret = nouveau_bo_pin(new_bo, TTM_PL_FLAG_VRAM);
725                 if (ret)
726                         goto fail_free;
727         }
728
729         mutex_lock(&chan->cli->mutex);
730
731         /* synchronise rendering channel with the kernel's channel */
732         spin_lock(&new_bo->bo.bdev->fence_lock);
733         fence = nouveau_fence_ref(new_bo->bo.sync_obj);
734         spin_unlock(&new_bo->bo.bdev->fence_lock);
735         ret = nouveau_fence_sync(fence, chan);
736         nouveau_fence_unref(&fence);
737         if (ret)
738                 goto fail_unpin;
739
740         ret = ttm_bo_reserve(&old_bo->bo, true, false, false, NULL);
741         if (ret)
742                 goto fail_unpin;
743
744         /* Initialize a page flip struct */
745         *s = (struct nouveau_page_flip_state)
746                 { { }, event, nouveau_crtc(crtc)->index,
747                   fb->bits_per_pixel, fb->pitches[0], crtc->x, crtc->y,
748                   new_bo->bo.offset };
749
750         /* Keep vblanks on during flip, for the target crtc of this flip */
751         drm_vblank_get(dev, nouveau_crtc(crtc)->index);
752
753         /* Emit a page flip */
754         if (nv_device(drm->device)->card_type >= NV_50) {
755                 ret = nv50_display_flip_next(crtc, fb, chan, swap_interval);
756                 if (ret)
757                         goto fail_unreserve;
758         } else {
759                 struct nv04_display *dispnv04 = nv04_display(dev);
760                 int head = nouveau_crtc(crtc)->index;
761
762                 if (swap_interval) {
763                         ret = RING_SPACE(chan, 8);
764                         if (ret)
765                                 goto fail_unreserve;
766
767                         BEGIN_NV04(chan, NvSubImageBlit, 0x012c, 1);
768                         OUT_RING  (chan, 0);
769                         BEGIN_NV04(chan, NvSubImageBlit, 0x0134, 1);
770                         OUT_RING  (chan, head);
771                         BEGIN_NV04(chan, NvSubImageBlit, 0x0100, 1);
772                         OUT_RING  (chan, 0);
773                         BEGIN_NV04(chan, NvSubImageBlit, 0x0130, 1);
774                         OUT_RING  (chan, 0);
775                 }
776
777                 nouveau_bo_ref(new_bo, &dispnv04->image[head]);
778         }
779
780         ret = nouveau_page_flip_emit(chan, old_bo, new_bo, s, &fence);
781         if (ret)
782                 goto fail_unreserve;
783         mutex_unlock(&chan->cli->mutex);
784
785         /* Update the crtc struct and cleanup */
786         crtc->primary->fb = fb;
787
788         nouveau_bo_fence(old_bo, fence);
789         ttm_bo_unreserve(&old_bo->bo);
790         if (old_bo != new_bo)
791                 nouveau_bo_unpin(old_bo);
792         nouveau_fence_unref(&fence);
793         return 0;
794
795 fail_unreserve:
796         drm_vblank_put(dev, nouveau_crtc(crtc)->index);
797         ttm_bo_unreserve(&old_bo->bo);
798 fail_unpin:
799         mutex_unlock(&chan->cli->mutex);
800         if (old_bo != new_bo)
801                 nouveau_bo_unpin(new_bo);
802 fail_free:
803         kfree(s);
804         return ret;
805 }
806
807 int
808 nouveau_finish_page_flip(struct nouveau_channel *chan,
809                          struct nouveau_page_flip_state *ps)
810 {
811         struct nouveau_fence_chan *fctx = chan->fence;
812         struct nouveau_drm *drm = chan->drm;
813         struct drm_device *dev = drm->dev;
814         struct nouveau_page_flip_state *s;
815         unsigned long flags;
816         int crtcid = -1;
817
818         spin_lock_irqsave(&dev->event_lock, flags);
819
820         if (list_empty(&fctx->flip)) {
821                 NV_ERROR(drm, "unexpected pageflip\n");
822                 spin_unlock_irqrestore(&dev->event_lock, flags);
823                 return -EINVAL;
824         }
825
826         s = list_first_entry(&fctx->flip, struct nouveau_page_flip_state, head);
827         if (s->event) {
828                 /* Vblank timestamps/counts are only correct on >= NV-50 */
829                 if (nv_device(drm->device)->card_type >= NV_50)
830                         crtcid = s->crtc;
831
832                 drm_send_vblank_event(dev, crtcid, s->event);
833         }
834
835         /* Give up ownership of vblank for page-flipped crtc */
836         drm_vblank_put(dev, s->crtc);
837
838         list_del(&s->head);
839         if (ps)
840                 *ps = *s;
841         kfree(s);
842
843         spin_unlock_irqrestore(&dev->event_lock, flags);
844         return 0;
845 }
846
847 int
848 nouveau_flip_complete(void *data)
849 {
850         struct nouveau_channel *chan = data;
851         struct nouveau_drm *drm = chan->drm;
852         struct nouveau_page_flip_state state;
853
854         if (!nouveau_finish_page_flip(chan, &state)) {
855                 if (nv_device(drm->device)->card_type < NV_50) {
856                         nv_set_crtc_base(drm->dev, state.crtc, state.offset +
857                                          state.y * state.pitch +
858                                          state.x * state.bpp / 8);
859                 }
860         }
861
862         return 0;
863 }
864
865 int
866 nouveau_display_dumb_create(struct drm_file *file_priv, struct drm_device *dev,
867                             struct drm_mode_create_dumb *args)
868 {
869         struct nouveau_bo *bo;
870         int ret;
871
872         args->pitch = roundup(args->width * (args->bpp / 8), 256);
873         args->size = args->pitch * args->height;
874         args->size = roundup(args->size, PAGE_SIZE);
875
876         ret = nouveau_gem_new(dev, args->size, 0, NOUVEAU_GEM_DOMAIN_VRAM, 0, 0, &bo);
877         if (ret)
878                 return ret;
879
880         ret = drm_gem_handle_create(file_priv, &bo->gem, &args->handle);
881         drm_gem_object_unreference_unlocked(&bo->gem);
882         return ret;
883 }
884
885 int
886 nouveau_display_dumb_map_offset(struct drm_file *file_priv,
887                                 struct drm_device *dev,
888                                 uint32_t handle, uint64_t *poffset)
889 {
890         struct drm_gem_object *gem;
891
892         gem = drm_gem_object_lookup(dev, file_priv, handle);
893         if (gem) {
894                 struct nouveau_bo *bo = nouveau_gem_object(gem);
895                 *poffset = drm_vma_node_offset_addr(&bo->bo.vma_node);
896                 drm_gem_object_unreference_unlocked(gem);
897                 return 0;
898         }
899
900         return -ENOENT;
901 }