blob: 3a30d822dec171f49b1924edc4a632e3f197aea2 [file] [log] [blame]
Ben Skeggs6ee73862009-12-11 19:24:15 +10001/*
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"
Francisco Jerez042206c2010-10-21 18:19:29 +020032#include "nouveau_hw.h"
Francisco Jerez332b2422010-10-20 23:35:40 +020033#include "nouveau_crtc.h"
34#include "nouveau_dma.h"
Ben Skeggs45c4e0a2011-02-09 11:57:45 +100035#include "nv50_display.h"
Ben Skeggs6ee73862009-12-11 19:24:15 +100036
37static void
38nouveau_user_framebuffer_destroy(struct drm_framebuffer *drm_fb)
39{
40 struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb);
Ben Skeggs6ee73862009-12-11 19:24:15 +100041
Luca Barbieribc9025b2010-02-09 05:49:12 +000042 if (fb->nvbo)
43 drm_gem_object_unreference_unlocked(fb->nvbo->gem);
Ben Skeggs6ee73862009-12-11 19:24:15 +100044
45 drm_framebuffer_cleanup(drm_fb);
46 kfree(fb);
47}
48
49static int
50nouveau_user_framebuffer_create_handle(struct drm_framebuffer *drm_fb,
51 struct drm_file *file_priv,
52 unsigned int *handle)
53{
54 struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb);
55
56 return drm_gem_handle_create(file_priv, fb->nvbo->gem, handle);
57}
58
59static const struct drm_framebuffer_funcs nouveau_framebuffer_funcs = {
60 .destroy = nouveau_user_framebuffer_destroy,
61 .create_handle = nouveau_user_framebuffer_create_handle,
62};
63
Dave Airlie38651672010-03-30 05:34:13 +000064int
Ben Skeggs45c4e0a2011-02-09 11:57:45 +100065nouveau_framebuffer_init(struct drm_device *dev,
66 struct nouveau_framebuffer *nv_fb,
67 struct drm_mode_fb_cmd *mode_cmd,
68 struct nouveau_bo *nvbo)
Ben Skeggs6ee73862009-12-11 19:24:15 +100069{
Ben Skeggs45c4e0a2011-02-09 11:57:45 +100070 struct drm_nouveau_private *dev_priv = dev->dev_private;
71 struct drm_framebuffer *fb = &nv_fb->base;
Ben Skeggs6ee73862009-12-11 19:24:15 +100072 int ret;
73
Ben Skeggs45c4e0a2011-02-09 11:57:45 +100074 ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs);
Ben Skeggs6ee73862009-12-11 19:24:15 +100075 if (ret) {
Dave Airlie38651672010-03-30 05:34:13 +000076 return ret;
Ben Skeggs6ee73862009-12-11 19:24:15 +100077 }
78
Ben Skeggs45c4e0a2011-02-09 11:57:45 +100079 drm_helper_mode_fill_fb_struct(fb, mode_cmd);
80 nv_fb->nvbo = nvbo;
81
82 if (dev_priv->card_type >= NV_50) {
83 u32 tile_flags = nouveau_bo_tile_layout(nvbo);
84 if (tile_flags == 0x7a00 ||
85 tile_flags == 0xfe00)
86 nv_fb->r_dma = NvEvoFB32;
87 else
88 if (tile_flags == 0x7000)
89 nv_fb->r_dma = NvEvoFB16;
90 else
91 nv_fb->r_dma = NvEvoVRAM_LP;
92
93 switch (fb->depth) {
94 case 8: nv_fb->r_format = NV50_EVO_CRTC_FB_DEPTH_8; break;
95 case 15: nv_fb->r_format = NV50_EVO_CRTC_FB_DEPTH_15; break;
96 case 16: nv_fb->r_format = NV50_EVO_CRTC_FB_DEPTH_16; break;
97 case 24:
98 case 32: nv_fb->r_format = NV50_EVO_CRTC_FB_DEPTH_24; break;
99 case 30: nv_fb->r_format = NV50_EVO_CRTC_FB_DEPTH_30; break;
100 default:
101 NV_ERROR(dev, "unknown depth %d\n", fb->depth);
102 return -EINVAL;
103 }
104
105 if (dev_priv->chipset == 0x50)
106 nv_fb->r_format |= (tile_flags << 8);
107
108 if (!tile_flags)
109 nv_fb->r_pitch = 0x00100000 | fb->pitch;
110 else {
111 u32 mode = nvbo->tile_mode;
112 if (dev_priv->card_type >= NV_C0)
113 mode >>= 4;
114 nv_fb->r_pitch = ((fb->pitch / 4) << 4) | mode;
115 }
116 }
117
Dave Airlie38651672010-03-30 05:34:13 +0000118 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000119}
120
121static struct drm_framebuffer *
122nouveau_user_framebuffer_create(struct drm_device *dev,
123 struct drm_file *file_priv,
124 struct drm_mode_fb_cmd *mode_cmd)
125{
Dave Airlie38651672010-03-30 05:34:13 +0000126 struct nouveau_framebuffer *nouveau_fb;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000127 struct drm_gem_object *gem;
Dave Airlie38651672010-03-30 05:34:13 +0000128 int ret;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000129
130 gem = drm_gem_object_lookup(dev, file_priv, mode_cmd->handle);
131 if (!gem)
Chris Wilsoncce13ff2010-08-08 13:36:38 +0100132 return ERR_PTR(-ENOENT);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000133
Dave Airlie38651672010-03-30 05:34:13 +0000134 nouveau_fb = kzalloc(sizeof(struct nouveau_framebuffer), GFP_KERNEL);
135 if (!nouveau_fb)
Chris Wilsoncce13ff2010-08-08 13:36:38 +0100136 return ERR_PTR(-ENOMEM);
Dave Airlie38651672010-03-30 05:34:13 +0000137
138 ret = nouveau_framebuffer_init(dev, nouveau_fb, mode_cmd, nouveau_gem_object(gem));
139 if (ret) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000140 drm_gem_object_unreference(gem);
Chris Wilsoncce13ff2010-08-08 13:36:38 +0100141 return ERR_PTR(ret);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000142 }
143
Dave Airlie38651672010-03-30 05:34:13 +0000144 return &nouveau_fb->base;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000145}
146
147const struct drm_mode_config_funcs nouveau_mode_config_funcs = {
148 .fb_create = nouveau_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000149 .output_poll_changed = nouveau_fbcon_output_poll_changed,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000150};
151
Francisco Jerez042206c2010-10-21 18:19:29 +0200152int
153nouveau_vblank_enable(struct drm_device *dev, int crtc)
154{
155 struct drm_nouveau_private *dev_priv = dev->dev_private;
156
157 if (dev_priv->card_type >= NV_50)
158 nv_mask(dev, NV50_PDISPLAY_INTR_EN_1, 0,
159 NV50_PDISPLAY_INTR_EN_1_VBLANK_CRTC_(crtc));
160 else
161 NVWriteCRTC(dev, crtc, NV_PCRTC_INTR_EN_0,
162 NV_PCRTC_INTR_0_VBLANK);
163
164 return 0;
165}
166
167void
168nouveau_vblank_disable(struct drm_device *dev, int crtc)
169{
170 struct drm_nouveau_private *dev_priv = dev->dev_private;
171
172 if (dev_priv->card_type >= NV_50)
173 nv_mask(dev, NV50_PDISPLAY_INTR_EN_1,
174 NV50_PDISPLAY_INTR_EN_1_VBLANK_CRTC_(crtc), 0);
175 else
176 NVWriteCRTC(dev, crtc, NV_PCRTC_INTR_EN_0, 0);
177}
Francisco Jerez332b2422010-10-20 23:35:40 +0200178
179static int
180nouveau_page_flip_reserve(struct nouveau_bo *old_bo,
181 struct nouveau_bo *new_bo)
182{
183 int ret;
184
185 ret = nouveau_bo_pin(new_bo, TTM_PL_FLAG_VRAM);
186 if (ret)
187 return ret;
188
189 ret = ttm_bo_reserve(&new_bo->bo, false, false, false, 0);
190 if (ret)
191 goto fail;
192
193 ret = ttm_bo_reserve(&old_bo->bo, false, false, false, 0);
194 if (ret)
195 goto fail_unreserve;
196
197 return 0;
198
199fail_unreserve:
200 ttm_bo_unreserve(&new_bo->bo);
201fail:
202 nouveau_bo_unpin(new_bo);
203 return ret;
204}
205
206static void
207nouveau_page_flip_unreserve(struct nouveau_bo *old_bo,
208 struct nouveau_bo *new_bo,
209 struct nouveau_fence *fence)
210{
211 nouveau_bo_fence(new_bo, fence);
212 ttm_bo_unreserve(&new_bo->bo);
213
214 nouveau_bo_fence(old_bo, fence);
215 ttm_bo_unreserve(&old_bo->bo);
216
217 nouveau_bo_unpin(old_bo);
218}
219
220static int
221nouveau_page_flip_emit(struct nouveau_channel *chan,
222 struct nouveau_bo *old_bo,
223 struct nouveau_bo *new_bo,
224 struct nouveau_page_flip_state *s,
225 struct nouveau_fence **pfence)
226{
227 struct drm_device *dev = chan->dev;
228 unsigned long flags;
229 int ret;
230
231 /* Queue it to the pending list */
232 spin_lock_irqsave(&dev->event_lock, flags);
233 list_add_tail(&s->head, &chan->nvsw.flip);
234 spin_unlock_irqrestore(&dev->event_lock, flags);
235
236 /* Synchronize with the old framebuffer */
237 ret = nouveau_fence_sync(old_bo->bo.sync_obj, chan);
238 if (ret)
239 goto fail;
240
241 /* Emit the pageflip */
242 ret = RING_SPACE(chan, 2);
243 if (ret)
244 goto fail;
245
246 BEGIN_RING(chan, NvSubSw, NV_SW_PAGE_FLIP, 1);
247 OUT_RING(chan, 0);
248 FIRE_RING(chan);
249
250 ret = nouveau_fence_new(chan, pfence, true);
251 if (ret)
252 goto fail;
253
254 return 0;
255fail:
256 spin_lock_irqsave(&dev->event_lock, flags);
257 list_del(&s->head);
258 spin_unlock_irqrestore(&dev->event_lock, flags);
259 return ret;
260}
261
262int
263nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
264 struct drm_pending_vblank_event *event)
265{
266 struct drm_device *dev = crtc->dev;
267 struct drm_nouveau_private *dev_priv = dev->dev_private;
268 struct nouveau_bo *old_bo = nouveau_framebuffer(crtc->fb)->nvbo;
269 struct nouveau_bo *new_bo = nouveau_framebuffer(fb)->nvbo;
270 struct nouveau_page_flip_state *s;
271 struct nouveau_channel *chan;
272 struct nouveau_fence *fence;
273 int ret;
274
275 if (dev_priv->engine.graph.accel_blocked)
276 return -ENODEV;
277
278 s = kzalloc(sizeof(*s), GFP_KERNEL);
279 if (!s)
280 return -ENOMEM;
281
282 /* Don't let the buffers go away while we flip */
283 ret = nouveau_page_flip_reserve(old_bo, new_bo);
284 if (ret)
285 goto fail_free;
286
287 /* Initialize a page flip struct */
288 *s = (struct nouveau_page_flip_state)
289 { { }, s->event, nouveau_crtc(crtc)->index,
290 fb->bits_per_pixel, fb->pitch, crtc->x, crtc->y,
291 new_bo->bo.offset };
292
293 /* Choose the channel the flip will be handled in */
294 chan = nouveau_fence_channel(new_bo->bo.sync_obj);
295 if (!chan)
296 chan = nouveau_channel_get_unlocked(dev_priv->channel);
297 mutex_lock(&chan->mutex);
298
299 /* Emit a page flip */
300 ret = nouveau_page_flip_emit(chan, old_bo, new_bo, s, &fence);
301 nouveau_channel_put(&chan);
302 if (ret)
303 goto fail_unreserve;
304
305 /* Update the crtc struct and cleanup */
306 crtc->fb = fb;
307
308 nouveau_page_flip_unreserve(old_bo, new_bo, fence);
309 nouveau_fence_unref(&fence);
310 return 0;
311
312fail_unreserve:
313 nouveau_page_flip_unreserve(old_bo, new_bo, NULL);
314fail_free:
315 kfree(s);
316 return ret;
317}
318
319int
320nouveau_finish_page_flip(struct nouveau_channel *chan,
321 struct nouveau_page_flip_state *ps)
322{
323 struct drm_device *dev = chan->dev;
324 struct nouveau_page_flip_state *s;
325 unsigned long flags;
326
327 spin_lock_irqsave(&dev->event_lock, flags);
328
329 if (list_empty(&chan->nvsw.flip)) {
330 NV_ERROR(dev, "Unexpected pageflip in channel %d.\n", chan->id);
331 spin_unlock_irqrestore(&dev->event_lock, flags);
332 return -EINVAL;
333 }
334
335 s = list_first_entry(&chan->nvsw.flip,
336 struct nouveau_page_flip_state, head);
337 if (s->event) {
338 struct drm_pending_vblank_event *e = s->event;
339 struct timeval now;
340
341 do_gettimeofday(&now);
342 e->event.sequence = 0;
343 e->event.tv_sec = now.tv_sec;
344 e->event.tv_usec = now.tv_usec;
345 list_add_tail(&e->base.link, &e->base.file_priv->event_list);
346 wake_up_interruptible(&e->base.file_priv->event_wait);
347 }
348
349 list_del(&s->head);
350 *ps = *s;
351 kfree(s);
352
353 spin_unlock_irqrestore(&dev->event_lock, flags);
354 return 0;
355}