Merge tag 'drm-intel-next-2012-02-07' of git://people.freedesktop.org/~danvet/drm...
[firefly-linux-kernel-4.4.55.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 "drmP.h"
28 #include "drm_crtc_helper.h"
29 #include "nouveau_drv.h"
30 #include "nouveau_fb.h"
31 #include "nouveau_fbcon.h"
32 #include "nouveau_hw.h"
33 #include "nouveau_crtc.h"
34 #include "nouveau_dma.h"
35 #include "nouveau_connector.h"
36 #include "nouveau_gpio.h"
37 #include "nv50_display.h"
38
39 static void
40 nouveau_user_framebuffer_destroy(struct drm_framebuffer *drm_fb)
41 {
42         struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb);
43
44         if (fb->nvbo)
45                 drm_gem_object_unreference_unlocked(fb->nvbo->gem);
46
47         drm_framebuffer_cleanup(drm_fb);
48         kfree(fb);
49 }
50
51 static int
52 nouveau_user_framebuffer_create_handle(struct drm_framebuffer *drm_fb,
53                                        struct drm_file *file_priv,
54                                        unsigned int *handle)
55 {
56         struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb);
57
58         return drm_gem_handle_create(file_priv, fb->nvbo->gem, handle);
59 }
60
61 static const struct drm_framebuffer_funcs nouveau_framebuffer_funcs = {
62         .destroy = nouveau_user_framebuffer_destroy,
63         .create_handle = nouveau_user_framebuffer_create_handle,
64 };
65
66 int
67 nouveau_framebuffer_init(struct drm_device *dev,
68                          struct nouveau_framebuffer *nv_fb,
69                          struct drm_mode_fb_cmd2 *mode_cmd,
70                          struct nouveau_bo *nvbo)
71 {
72         struct drm_nouveau_private *dev_priv = dev->dev_private;
73         struct drm_framebuffer *fb = &nv_fb->base;
74         int ret;
75
76         ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs);
77         if (ret) {
78                 return ret;
79         }
80
81         drm_helper_mode_fill_fb_struct(fb, mode_cmd);
82         nv_fb->nvbo = nvbo;
83
84         if (dev_priv->card_type >= NV_50) {
85                 u32 tile_flags = nouveau_bo_tile_layout(nvbo);
86                 if (tile_flags == 0x7a00 ||
87                     tile_flags == 0xfe00)
88                         nv_fb->r_dma = NvEvoFB32;
89                 else
90                 if (tile_flags == 0x7000)
91                         nv_fb->r_dma = NvEvoFB16;
92                 else
93                         nv_fb->r_dma = NvEvoVRAM_LP;
94
95                 switch (fb->depth) {
96                 case  8: nv_fb->r_format = NV50_EVO_CRTC_FB_DEPTH_8; break;
97                 case 15: nv_fb->r_format = NV50_EVO_CRTC_FB_DEPTH_15; break;
98                 case 16: nv_fb->r_format = NV50_EVO_CRTC_FB_DEPTH_16; break;
99                 case 24:
100                 case 32: nv_fb->r_format = NV50_EVO_CRTC_FB_DEPTH_24; break;
101                 case 30: nv_fb->r_format = NV50_EVO_CRTC_FB_DEPTH_30; break;
102                 default:
103                          NV_ERROR(dev, "unknown depth %d\n", fb->depth);
104                          return -EINVAL;
105                 }
106
107                 if (dev_priv->chipset == 0x50)
108                         nv_fb->r_format |= (tile_flags << 8);
109
110                 if (!tile_flags) {
111                         if (dev_priv->card_type < NV_D0)
112                                 nv_fb->r_pitch = 0x00100000 | fb->pitches[0];
113                         else
114                                 nv_fb->r_pitch = 0x01000000 | fb->pitches[0];
115                 } else {
116                         u32 mode = nvbo->tile_mode;
117                         if (dev_priv->card_type >= NV_C0)
118                                 mode >>= 4;
119                         nv_fb->r_pitch = ((fb->pitches[0] / 4) << 4) | mode;
120                 }
121         }
122
123         return 0;
124 }
125
126 static struct drm_framebuffer *
127 nouveau_user_framebuffer_create(struct drm_device *dev,
128                                 struct drm_file *file_priv,
129                                 struct drm_mode_fb_cmd2 *mode_cmd)
130 {
131         struct nouveau_framebuffer *nouveau_fb;
132         struct drm_gem_object *gem;
133         int ret;
134
135         gem = drm_gem_object_lookup(dev, file_priv, mode_cmd->handles[0]);
136         if (!gem)
137                 return ERR_PTR(-ENOENT);
138
139         nouveau_fb = kzalloc(sizeof(struct nouveau_framebuffer), GFP_KERNEL);
140         if (!nouveau_fb)
141                 return ERR_PTR(-ENOMEM);
142
143         ret = nouveau_framebuffer_init(dev, nouveau_fb, mode_cmd, nouveau_gem_object(gem));
144         if (ret) {
145                 drm_gem_object_unreference(gem);
146                 return ERR_PTR(ret);
147         }
148
149         return &nouveau_fb->base;
150 }
151
152 static const struct drm_mode_config_funcs nouveau_mode_config_funcs = {
153         .fb_create = nouveau_user_framebuffer_create,
154         .output_poll_changed = nouveau_fbcon_output_poll_changed,
155 };
156
157
158 struct nouveau_drm_prop_enum_list {
159         u8 gen_mask;
160         int type;
161         char *name;
162 };
163
164 static struct nouveau_drm_prop_enum_list underscan[] = {
165         { 6, UNDERSCAN_AUTO, "auto" },
166         { 6, UNDERSCAN_OFF, "off" },
167         { 6, UNDERSCAN_ON, "on" },
168         {}
169 };
170
171 static struct nouveau_drm_prop_enum_list dither_mode[] = {
172         { 7, DITHERING_MODE_AUTO, "auto" },
173         { 7, DITHERING_MODE_OFF, "off" },
174         { 1, DITHERING_MODE_ON, "on" },
175         { 6, DITHERING_MODE_STATIC2X2, "static 2x2" },
176         { 6, DITHERING_MODE_DYNAMIC2X2, "dynamic 2x2" },
177         { 4, DITHERING_MODE_TEMPORAL, "temporal" },
178         {}
179 };
180
181 static struct nouveau_drm_prop_enum_list dither_depth[] = {
182         { 6, DITHERING_DEPTH_AUTO, "auto" },
183         { 6, DITHERING_DEPTH_6BPC, "6 bpc" },
184         { 6, DITHERING_DEPTH_8BPC, "8 bpc" },
185         {}
186 };
187
188 #define PROP_ENUM(p,gen,n,list) do {                                           \
189         struct nouveau_drm_prop_enum_list *l = (list);                         \
190         int c = 0;                                                             \
191         while (l->gen_mask) {                                                  \
192                 if (l->gen_mask & (1 << (gen)))                                \
193                         c++;                                                   \
194                 l++;                                                           \
195         }                                                                      \
196         if (c) {                                                               \
197                 p = drm_property_create(dev, DRM_MODE_PROP_ENUM, n, c);        \
198                 l = (list);                                                    \
199                 c = 0;                                                         \
200                 while (p && l->gen_mask) {                                     \
201                         if (l->gen_mask & (1 << (gen))) {                      \
202                                 drm_property_add_enum(p, c, l->type, l->name); \
203                                 c++;                                           \
204                         }                                                      \
205                         l++;                                                   \
206                 }                                                              \
207         }                                                                      \
208 } while(0)
209
210 int
211 nouveau_display_init(struct drm_device *dev)
212 {
213         struct drm_nouveau_private *dev_priv = dev->dev_private;
214         struct nouveau_display_engine *disp = &dev_priv->engine.display;
215         struct drm_connector *connector;
216         int ret;
217
218         ret = disp->init(dev);
219         if (ret)
220                 return ret;
221
222         /* power on internal panel if it's not already.  the init tables of
223          * some vbios default this to off for some reason, causing the
224          * panel to not work after resume
225          */
226         if (nouveau_gpio_func_get(dev, DCB_GPIO_PANEL_POWER) == 0) {
227                 nouveau_gpio_func_set(dev, DCB_GPIO_PANEL_POWER, true);
228                 msleep(300);
229         }
230
231         /* enable polling for external displays */
232         drm_kms_helper_poll_enable(dev);
233
234         /* enable hotplug interrupts */
235         list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
236                 struct nouveau_connector *conn = nouveau_connector(connector);
237                 nouveau_gpio_irq(dev, 0, conn->hpd, 0xff, true);
238         }
239
240         return ret;
241 }
242
243 void
244 nouveau_display_fini(struct drm_device *dev)
245 {
246         struct drm_nouveau_private *dev_priv = dev->dev_private;
247         struct nouveau_display_engine *disp = &dev_priv->engine.display;
248         struct drm_connector *connector;
249
250         /* disable hotplug interrupts */
251         list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
252                 struct nouveau_connector *conn = nouveau_connector(connector);
253                 nouveau_gpio_irq(dev, 0, conn->hpd, 0xff, false);
254         }
255
256         drm_kms_helper_poll_disable(dev);
257         disp->fini(dev);
258 }
259
260 int
261 nouveau_display_create(struct drm_device *dev)
262 {
263         struct drm_nouveau_private *dev_priv = dev->dev_private;
264         struct nouveau_display_engine *disp = &dev_priv->engine.display;
265         int ret, gen;
266
267         drm_mode_config_init(dev);
268         drm_mode_create_scaling_mode_property(dev);
269         drm_mode_create_dvi_i_properties(dev);
270
271         if (dev_priv->card_type < NV_50)
272                 gen = 0;
273         else
274         if (dev_priv->card_type < NV_D0)
275                 gen = 1;
276         else
277                 gen = 2;
278
279         PROP_ENUM(disp->dithering_mode, gen, "dithering mode", dither_mode);
280         PROP_ENUM(disp->dithering_depth, gen, "dithering depth", dither_depth);
281         PROP_ENUM(disp->underscan_property, gen, "underscan", underscan);
282
283         disp->underscan_hborder_property =
284                 drm_property_create_range(dev, 0, "underscan hborder", 0, 128);
285
286         disp->underscan_vborder_property =
287                 drm_property_create_range(dev, 0, "underscan vborder", 0, 128);
288
289         dev->mode_config.funcs = (void *)&nouveau_mode_config_funcs;
290         dev->mode_config.fb_base = pci_resource_start(dev->pdev, 1);
291
292         dev->mode_config.min_width = 0;
293         dev->mode_config.min_height = 0;
294         if (dev_priv->card_type < NV_10) {
295                 dev->mode_config.max_width = 2048;
296                 dev->mode_config.max_height = 2048;
297         } else
298         if (dev_priv->card_type < NV_50) {
299                 dev->mode_config.max_width = 4096;
300                 dev->mode_config.max_height = 4096;
301         } else {
302                 dev->mode_config.max_width = 8192;
303                 dev->mode_config.max_height = 8192;
304         }
305
306         drm_kms_helper_poll_init(dev);
307         drm_kms_helper_poll_disable(dev);
308
309         ret = disp->create(dev);
310         if (ret)
311                 return ret;
312
313         if (dev->mode_config.num_crtc) {
314                 ret = drm_vblank_init(dev, dev->mode_config.num_crtc);
315                 if (ret)
316                         return ret;
317         }
318
319         return ret;
320 }
321
322 void
323 nouveau_display_destroy(struct drm_device *dev)
324 {
325         struct drm_nouveau_private *dev_priv = dev->dev_private;
326         struct nouveau_display_engine *disp = &dev_priv->engine.display;
327
328         drm_vblank_cleanup(dev);
329
330         disp->destroy(dev);
331
332         drm_kms_helper_poll_fini(dev);
333         drm_mode_config_cleanup(dev);
334 }
335
336 int
337 nouveau_vblank_enable(struct drm_device *dev, int crtc)
338 {
339         struct drm_nouveau_private *dev_priv = dev->dev_private;
340
341         if (dev_priv->card_type >= NV_50)
342                 nv_mask(dev, NV50_PDISPLAY_INTR_EN_1, 0,
343                         NV50_PDISPLAY_INTR_EN_1_VBLANK_CRTC_(crtc));
344         else
345                 NVWriteCRTC(dev, crtc, NV_PCRTC_INTR_EN_0,
346                             NV_PCRTC_INTR_0_VBLANK);
347
348         return 0;
349 }
350
351 void
352 nouveau_vblank_disable(struct drm_device *dev, int crtc)
353 {
354         struct drm_nouveau_private *dev_priv = dev->dev_private;
355
356         if (dev_priv->card_type >= NV_50)
357                 nv_mask(dev, NV50_PDISPLAY_INTR_EN_1,
358                         NV50_PDISPLAY_INTR_EN_1_VBLANK_CRTC_(crtc), 0);
359         else
360                 NVWriteCRTC(dev, crtc, NV_PCRTC_INTR_EN_0, 0);
361 }
362
363 static int
364 nouveau_page_flip_reserve(struct nouveau_bo *old_bo,
365                           struct nouveau_bo *new_bo)
366 {
367         int ret;
368
369         ret = nouveau_bo_pin(new_bo, TTM_PL_FLAG_VRAM);
370         if (ret)
371                 return ret;
372
373         ret = ttm_bo_reserve(&new_bo->bo, false, false, false, 0);
374         if (ret)
375                 goto fail;
376
377         ret = ttm_bo_reserve(&old_bo->bo, false, false, false, 0);
378         if (ret)
379                 goto fail_unreserve;
380
381         return 0;
382
383 fail_unreserve:
384         ttm_bo_unreserve(&new_bo->bo);
385 fail:
386         nouveau_bo_unpin(new_bo);
387         return ret;
388 }
389
390 static void
391 nouveau_page_flip_unreserve(struct nouveau_bo *old_bo,
392                             struct nouveau_bo *new_bo,
393                             struct nouveau_fence *fence)
394 {
395         nouveau_bo_fence(new_bo, fence);
396         ttm_bo_unreserve(&new_bo->bo);
397
398         nouveau_bo_fence(old_bo, fence);
399         ttm_bo_unreserve(&old_bo->bo);
400
401         nouveau_bo_unpin(old_bo);
402 }
403
404 static int
405 nouveau_page_flip_emit(struct nouveau_channel *chan,
406                        struct nouveau_bo *old_bo,
407                        struct nouveau_bo *new_bo,
408                        struct nouveau_page_flip_state *s,
409                        struct nouveau_fence **pfence)
410 {
411         struct drm_nouveau_private *dev_priv = chan->dev->dev_private;
412         struct drm_device *dev = chan->dev;
413         unsigned long flags;
414         int ret;
415
416         /* Queue it to the pending list */
417         spin_lock_irqsave(&dev->event_lock, flags);
418         list_add_tail(&s->head, &chan->nvsw.flip);
419         spin_unlock_irqrestore(&dev->event_lock, flags);
420
421         /* Synchronize with the old framebuffer */
422         ret = nouveau_fence_sync(old_bo->bo.sync_obj, chan);
423         if (ret)
424                 goto fail;
425
426         /* Emit the pageflip */
427         ret = RING_SPACE(chan, 2);
428         if (ret)
429                 goto fail;
430
431         if (dev_priv->card_type < NV_C0)
432                 BEGIN_RING(chan, NvSubSw, NV_SW_PAGE_FLIP, 1);
433         else
434                 BEGIN_NVC0(chan, 2, NvSubM2MF, 0x0500, 1);
435         OUT_RING  (chan, 0);
436         FIRE_RING (chan);
437
438         ret = nouveau_fence_new(chan, pfence, true);
439         if (ret)
440                 goto fail;
441
442         return 0;
443 fail:
444         spin_lock_irqsave(&dev->event_lock, flags);
445         list_del(&s->head);
446         spin_unlock_irqrestore(&dev->event_lock, flags);
447         return ret;
448 }
449
450 int
451 nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
452                        struct drm_pending_vblank_event *event)
453 {
454         struct drm_device *dev = crtc->dev;
455         struct drm_nouveau_private *dev_priv = dev->dev_private;
456         struct nouveau_bo *old_bo = nouveau_framebuffer(crtc->fb)->nvbo;
457         struct nouveau_bo *new_bo = nouveau_framebuffer(fb)->nvbo;
458         struct nouveau_page_flip_state *s;
459         struct nouveau_channel *chan;
460         struct nouveau_fence *fence;
461         int ret;
462
463         if (!dev_priv->channel)
464                 return -ENODEV;
465
466         s = kzalloc(sizeof(*s), GFP_KERNEL);
467         if (!s)
468                 return -ENOMEM;
469
470         /* Don't let the buffers go away while we flip */
471         ret = nouveau_page_flip_reserve(old_bo, new_bo);
472         if (ret)
473                 goto fail_free;
474
475         /* Initialize a page flip struct */
476         *s = (struct nouveau_page_flip_state)
477                 { { }, event, nouveau_crtc(crtc)->index,
478                   fb->bits_per_pixel, fb->pitches[0], crtc->x, crtc->y,
479                   new_bo->bo.offset };
480
481         /* Choose the channel the flip will be handled in */
482         chan = nouveau_fence_channel(new_bo->bo.sync_obj);
483         if (!chan)
484                 chan = nouveau_channel_get_unlocked(dev_priv->channel);
485         mutex_lock(&chan->mutex);
486
487         /* Emit a page flip */
488         if (dev_priv->card_type >= NV_50) {
489                 if (dev_priv->card_type >= NV_D0)
490                         ret = nvd0_display_flip_next(crtc, fb, chan, 0);
491                 else
492                         ret = nv50_display_flip_next(crtc, fb, chan);
493                 if (ret) {
494                         nouveau_channel_put(&chan);
495                         goto fail_unreserve;
496                 }
497         }
498
499         ret = nouveau_page_flip_emit(chan, old_bo, new_bo, s, &fence);
500         nouveau_channel_put(&chan);
501         if (ret)
502                 goto fail_unreserve;
503
504         /* Update the crtc struct and cleanup */
505         crtc->fb = fb;
506
507         nouveau_page_flip_unreserve(old_bo, new_bo, fence);
508         nouveau_fence_unref(&fence);
509         return 0;
510
511 fail_unreserve:
512         nouveau_page_flip_unreserve(old_bo, new_bo, NULL);
513 fail_free:
514         kfree(s);
515         return ret;
516 }
517
518 int
519 nouveau_finish_page_flip(struct nouveau_channel *chan,
520                          struct nouveau_page_flip_state *ps)
521 {
522         struct drm_device *dev = chan->dev;
523         struct nouveau_page_flip_state *s;
524         unsigned long flags;
525
526         spin_lock_irqsave(&dev->event_lock, flags);
527
528         if (list_empty(&chan->nvsw.flip)) {
529                 NV_ERROR(dev, "Unexpected pageflip in channel %d.\n", chan->id);
530                 spin_unlock_irqrestore(&dev->event_lock, flags);
531                 return -EINVAL;
532         }
533
534         s = list_first_entry(&chan->nvsw.flip,
535                              struct nouveau_page_flip_state, head);
536         if (s->event) {
537                 struct drm_pending_vblank_event *e = s->event;
538                 struct timeval now;
539
540                 do_gettimeofday(&now);
541                 e->event.sequence = 0;
542                 e->event.tv_sec = now.tv_sec;
543                 e->event.tv_usec = now.tv_usec;
544                 list_add_tail(&e->base.link, &e->base.file_priv->event_list);
545                 wake_up_interruptible(&e->base.file_priv->event_wait);
546         }
547
548         list_del(&s->head);
549         if (ps)
550                 *ps = *s;
551         kfree(s);
552
553         spin_unlock_irqrestore(&dev->event_lock, flags);
554         return 0;
555 }
556
557 int
558 nouveau_display_dumb_create(struct drm_file *file_priv, struct drm_device *dev,
559                             struct drm_mode_create_dumb *args)
560 {
561         struct nouveau_bo *bo;
562         int ret;
563
564         args->pitch = roundup(args->width * (args->bpp / 8), 256);
565         args->size = args->pitch * args->height;
566         args->size = roundup(args->size, PAGE_SIZE);
567
568         ret = nouveau_gem_new(dev, args->size, 0, TTM_PL_FLAG_VRAM, 0, 0, &bo);
569         if (ret)
570                 return ret;
571
572         ret = drm_gem_handle_create(file_priv, bo->gem, &args->handle);
573         drm_gem_object_unreference_unlocked(bo->gem);
574         return ret;
575 }
576
577 int
578 nouveau_display_dumb_destroy(struct drm_file *file_priv, struct drm_device *dev,
579                              uint32_t handle)
580 {
581         return drm_gem_handle_delete(file_priv, handle);
582 }
583
584 int
585 nouveau_display_dumb_map_offset(struct drm_file *file_priv,
586                                 struct drm_device *dev,
587                                 uint32_t handle, uint64_t *poffset)
588 {
589         struct drm_gem_object *gem;
590
591         gem = drm_gem_object_lookup(dev, file_priv, handle);
592         if (gem) {
593                 struct nouveau_bo *bo = gem->driver_private;
594                 *poffset = bo->bo.addr_space_offset;
595                 drm_gem_object_unreference_unlocked(gem);
596                 return 0;
597         }
598
599         return -ENOENT;
600 }