• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 <acpi/video.h>
28 #include <drm/drmP.h>
29 #include <drm/drm_crtc_helper.h>
30 
31 #include <nvif/class.h>
32 
33 #include "nouveau_fbcon.h"
34 #include "dispnv04/hw.h"
35 #include "nouveau_crtc.h"
36 #include "nouveau_dma.h"
37 #include "nouveau_gem.h"
38 #include "nouveau_connector.h"
39 #include "nv50_display.h"
40 
41 #include "nouveau_fence.h"
42 
43 #include <nvif/cl0046.h>
44 #include <nvif/event.h>
45 
46 static int
nouveau_display_vblank_handler(struct nvif_notify * notify)47 nouveau_display_vblank_handler(struct nvif_notify *notify)
48 {
49 	struct nouveau_crtc *nv_crtc =
50 		container_of(notify, typeof(*nv_crtc), vblank);
51 	drm_crtc_handle_vblank(&nv_crtc->base);
52 	return NVIF_NOTIFY_KEEP;
53 }
54 
55 int
nouveau_display_vblank_enable(struct drm_device * dev,unsigned int pipe)56 nouveau_display_vblank_enable(struct drm_device *dev, unsigned int pipe)
57 {
58 	struct drm_crtc *crtc;
59 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
60 		struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
61 		if (nv_crtc->index == pipe) {
62 			nvif_notify_get(&nv_crtc->vblank);
63 			return 0;
64 		}
65 	}
66 	return -EINVAL;
67 }
68 
69 void
nouveau_display_vblank_disable(struct drm_device * dev,unsigned int pipe)70 nouveau_display_vblank_disable(struct drm_device *dev, unsigned int pipe)
71 {
72 	struct drm_crtc *crtc;
73 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
74 		struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
75 		if (nv_crtc->index == pipe) {
76 			nvif_notify_put(&nv_crtc->vblank);
77 			return;
78 		}
79 	}
80 }
81 
82 static inline int
calc(int blanks,int blanke,int total,int line)83 calc(int blanks, int blanke, int total, int line)
84 {
85 	if (blanke >= blanks) {
86 		if (line >= blanks)
87 			line -= total;
88 	} else {
89 		if (line >= blanks)
90 			line -= total;
91 		line -= blanke + 1;
92 	}
93 	return line;
94 }
95 
96 int
nouveau_display_scanoutpos_head(struct drm_crtc * crtc,int * vpos,int * hpos,ktime_t * stime,ktime_t * etime)97 nouveau_display_scanoutpos_head(struct drm_crtc *crtc, int *vpos, int *hpos,
98 				ktime_t *stime, ktime_t *etime)
99 {
100 	struct {
101 		struct nv04_disp_mthd_v0 base;
102 		struct nv04_disp_scanoutpos_v0 scan;
103 	} args = {
104 		.base.method = NV04_DISP_SCANOUTPOS,
105 		.base.head = nouveau_crtc(crtc)->index,
106 	};
107 	struct nouveau_display *disp = nouveau_display(crtc->dev);
108 	struct drm_vblank_crtc *vblank = &crtc->dev->vblank[drm_crtc_index(crtc)];
109 	int ret, retry = 20;
110 
111 	do {
112 		ret = nvif_mthd(&disp->disp, 0, &args, sizeof(args));
113 		if (ret != 0)
114 			return 0;
115 
116 		if (args.scan.vline) {
117 			ret |= DRM_SCANOUTPOS_ACCURATE;
118 			ret |= DRM_SCANOUTPOS_VALID;
119 			break;
120 		}
121 
122 		if (retry) ndelay(vblank->linedur_ns);
123 	} while (retry--);
124 
125 	*hpos = args.scan.hline;
126 	*vpos = calc(args.scan.vblanks, args.scan.vblanke,
127 		     args.scan.vtotal, args.scan.vline);
128 	if (stime) *stime = ns_to_ktime(args.scan.time[0]);
129 	if (etime) *etime = ns_to_ktime(args.scan.time[1]);
130 
131 	if (*vpos < 0)
132 		ret |= DRM_SCANOUTPOS_IN_VBLANK;
133 	return ret;
134 }
135 
136 int
nouveau_display_scanoutpos(struct drm_device * dev,unsigned int pipe,unsigned int flags,int * vpos,int * hpos,ktime_t * stime,ktime_t * etime,const struct drm_display_mode * mode)137 nouveau_display_scanoutpos(struct drm_device *dev, unsigned int pipe,
138 			   unsigned int flags, int *vpos, int *hpos,
139 			   ktime_t *stime, ktime_t *etime,
140 			   const struct drm_display_mode *mode)
141 {
142 	struct drm_crtc *crtc;
143 
144 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
145 		if (nouveau_crtc(crtc)->index == pipe) {
146 			return nouveau_display_scanoutpos_head(crtc, vpos, hpos,
147 							       stime, etime);
148 		}
149 	}
150 
151 	return 0;
152 }
153 
154 int
nouveau_display_vblstamp(struct drm_device * dev,unsigned int pipe,int * max_error,struct timeval * time,unsigned flags)155 nouveau_display_vblstamp(struct drm_device *dev, unsigned int pipe,
156 			 int *max_error, struct timeval *time, unsigned flags)
157 {
158 	struct drm_crtc *crtc;
159 
160 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
161 		if (nouveau_crtc(crtc)->index == pipe) {
162 			return drm_calc_vbltimestamp_from_scanoutpos(dev,
163 					pipe, max_error, time, flags,
164 					&crtc->hwmode);
165 		}
166 	}
167 
168 	return -EINVAL;
169 }
170 
171 static void
nouveau_display_vblank_fini(struct drm_device * dev)172 nouveau_display_vblank_fini(struct drm_device *dev)
173 {
174 	struct drm_crtc *crtc;
175 
176 	drm_vblank_cleanup(dev);
177 
178 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
179 		struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
180 		nvif_notify_fini(&nv_crtc->vblank);
181 	}
182 }
183 
184 static int
nouveau_display_vblank_init(struct drm_device * dev)185 nouveau_display_vblank_init(struct drm_device *dev)
186 {
187 	struct nouveau_display *disp = nouveau_display(dev);
188 	struct drm_crtc *crtc;
189 	int ret;
190 
191 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
192 		struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
193 		ret = nvif_notify_init(&disp->disp,
194 				       nouveau_display_vblank_handler, false,
195 				       NV04_DISP_NTFY_VBLANK,
196 				       &(struct nvif_notify_head_req_v0) {
197 					.head = nv_crtc->index,
198 				       },
199 				       sizeof(struct nvif_notify_head_req_v0),
200 				       sizeof(struct nvif_notify_head_rep_v0),
201 				       &nv_crtc->vblank);
202 		if (ret) {
203 			nouveau_display_vblank_fini(dev);
204 			return ret;
205 		}
206 	}
207 
208 	ret = drm_vblank_init(dev, dev->mode_config.num_crtc);
209 	if (ret) {
210 		nouveau_display_vblank_fini(dev);
211 		return ret;
212 	}
213 
214 	return 0;
215 }
216 
217 static void
nouveau_user_framebuffer_destroy(struct drm_framebuffer * drm_fb)218 nouveau_user_framebuffer_destroy(struct drm_framebuffer *drm_fb)
219 {
220 	struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb);
221 	struct nouveau_display *disp = nouveau_display(drm_fb->dev);
222 
223 	if (disp->fb_dtor)
224 		disp->fb_dtor(drm_fb);
225 
226 	if (fb->nvbo)
227 		drm_gem_object_unreference_unlocked(&fb->nvbo->gem);
228 
229 	drm_framebuffer_cleanup(drm_fb);
230 	kfree(fb);
231 }
232 
233 static int
nouveau_user_framebuffer_create_handle(struct drm_framebuffer * drm_fb,struct drm_file * file_priv,unsigned int * handle)234 nouveau_user_framebuffer_create_handle(struct drm_framebuffer *drm_fb,
235 				       struct drm_file *file_priv,
236 				       unsigned int *handle)
237 {
238 	struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb);
239 
240 	return drm_gem_handle_create(file_priv, &fb->nvbo->gem, handle);
241 }
242 
243 static const struct drm_framebuffer_funcs nouveau_framebuffer_funcs = {
244 	.destroy = nouveau_user_framebuffer_destroy,
245 	.create_handle = nouveau_user_framebuffer_create_handle,
246 };
247 
248 int
nouveau_framebuffer_init(struct drm_device * dev,struct nouveau_framebuffer * nv_fb,const struct drm_mode_fb_cmd2 * mode_cmd,struct nouveau_bo * nvbo)249 nouveau_framebuffer_init(struct drm_device *dev,
250 			 struct nouveau_framebuffer *nv_fb,
251 			 const struct drm_mode_fb_cmd2 *mode_cmd,
252 			 struct nouveau_bo *nvbo)
253 {
254 	struct nouveau_display *disp = nouveau_display(dev);
255 	struct drm_framebuffer *fb = &nv_fb->base;
256 	int ret;
257 
258 	drm_helper_mode_fill_fb_struct(fb, mode_cmd);
259 	nv_fb->nvbo = nvbo;
260 
261 	ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs);
262 	if (ret)
263 		return ret;
264 
265 	if (disp->fb_ctor) {
266 		ret = disp->fb_ctor(fb);
267 		if (ret)
268 			disp->fb_dtor(fb);
269 	}
270 
271 	return ret;
272 }
273 
274 static struct drm_framebuffer *
nouveau_user_framebuffer_create(struct drm_device * dev,struct drm_file * file_priv,const struct drm_mode_fb_cmd2 * mode_cmd)275 nouveau_user_framebuffer_create(struct drm_device *dev,
276 				struct drm_file *file_priv,
277 				const struct drm_mode_fb_cmd2 *mode_cmd)
278 {
279 	struct nouveau_framebuffer *nouveau_fb;
280 	struct drm_gem_object *gem;
281 	int ret = -ENOMEM;
282 
283 	gem = drm_gem_object_lookup(file_priv, mode_cmd->handles[0]);
284 	if (!gem)
285 		return ERR_PTR(-ENOENT);
286 
287 	nouveau_fb = kzalloc(sizeof(struct nouveau_framebuffer), GFP_KERNEL);
288 	if (!nouveau_fb)
289 		goto err_unref;
290 
291 	ret = nouveau_framebuffer_init(dev, nouveau_fb, mode_cmd, nouveau_gem_object(gem));
292 	if (ret)
293 		goto err;
294 
295 	return &nouveau_fb->base;
296 
297 err:
298 	kfree(nouveau_fb);
299 err_unref:
300 	drm_gem_object_unreference_unlocked(gem);
301 	return ERR_PTR(ret);
302 }
303 
304 static const struct drm_mode_config_funcs nouveau_mode_config_funcs = {
305 	.fb_create = nouveau_user_framebuffer_create,
306 	.output_poll_changed = nouveau_fbcon_output_poll_changed,
307 };
308 
309 
310 struct nouveau_drm_prop_enum_list {
311 	u8 gen_mask;
312 	int type;
313 	char *name;
314 };
315 
316 static struct nouveau_drm_prop_enum_list underscan[] = {
317 	{ 6, UNDERSCAN_AUTO, "auto" },
318 	{ 6, UNDERSCAN_OFF, "off" },
319 	{ 6, UNDERSCAN_ON, "on" },
320 	{}
321 };
322 
323 static struct nouveau_drm_prop_enum_list dither_mode[] = {
324 	{ 7, DITHERING_MODE_AUTO, "auto" },
325 	{ 7, DITHERING_MODE_OFF, "off" },
326 	{ 1, DITHERING_MODE_ON, "on" },
327 	{ 6, DITHERING_MODE_STATIC2X2, "static 2x2" },
328 	{ 6, DITHERING_MODE_DYNAMIC2X2, "dynamic 2x2" },
329 	{ 4, DITHERING_MODE_TEMPORAL, "temporal" },
330 	{}
331 };
332 
333 static struct nouveau_drm_prop_enum_list dither_depth[] = {
334 	{ 6, DITHERING_DEPTH_AUTO, "auto" },
335 	{ 6, DITHERING_DEPTH_6BPC, "6 bpc" },
336 	{ 6, DITHERING_DEPTH_8BPC, "8 bpc" },
337 	{}
338 };
339 
340 #define PROP_ENUM(p,gen,n,list) do {                                           \
341 	struct nouveau_drm_prop_enum_list *l = (list);                         \
342 	int c = 0;                                                             \
343 	while (l->gen_mask) {                                                  \
344 		if (l->gen_mask & (1 << (gen)))                                \
345 			c++;                                                   \
346 		l++;                                                           \
347 	}                                                                      \
348 	if (c) {                                                               \
349 		p = drm_property_create(dev, DRM_MODE_PROP_ENUM, n, c);        \
350 		l = (list);                                                    \
351 		c = 0;                                                         \
352 		while (p && l->gen_mask) {                                     \
353 			if (l->gen_mask & (1 << (gen))) {                      \
354 				drm_property_add_enum(p, c, l->type, l->name); \
355 				c++;                                           \
356 			}                                                      \
357 			l++;                                                   \
358 		}                                                              \
359 	}                                                                      \
360 } while(0)
361 
362 static void
nouveau_display_hpd_work(struct work_struct * work)363 nouveau_display_hpd_work(struct work_struct *work)
364 {
365 	struct nouveau_drm *drm = container_of(work, typeof(*drm), hpd_work);
366 
367 	pm_runtime_get_sync(drm->dev->dev);
368 
369 	drm_helper_hpd_irq_event(drm->dev);
370 	/* enable polling for external displays */
371 	drm_kms_helper_poll_enable(drm->dev);
372 
373 	pm_runtime_mark_last_busy(drm->dev->dev);
374 	pm_runtime_put_sync(drm->dev->dev);
375 }
376 
377 #ifdef CONFIG_ACPI
378 
379 /*
380  * Hans de Goede: This define belongs in acpi/video.h, I've submitted a patch
381  * to the acpi subsys to move it there from drivers/acpi/acpi_video.c .
382  * This should be dropped once that is merged.
383  */
384 #ifndef ACPI_VIDEO_NOTIFY_PROBE
385 #define ACPI_VIDEO_NOTIFY_PROBE			0x81
386 #endif
387 
388 static int
nouveau_display_acpi_ntfy(struct notifier_block * nb,unsigned long val,void * data)389 nouveau_display_acpi_ntfy(struct notifier_block *nb, unsigned long val,
390 			  void *data)
391 {
392 	struct nouveau_drm *drm = container_of(nb, typeof(*drm), acpi_nb);
393 	struct acpi_bus_event *info = data;
394 
395 	if (!strcmp(info->device_class, ACPI_VIDEO_CLASS)) {
396 		if (info->type == ACPI_VIDEO_NOTIFY_PROBE) {
397 			/*
398 			 * This may be the only indication we receive of a
399 			 * connector hotplug on a runtime suspended GPU,
400 			 * schedule hpd_work to check.
401 			 */
402 			schedule_work(&drm->hpd_work);
403 
404 			/* acpi-video should not generate keypresses for this */
405 			return NOTIFY_BAD;
406 		}
407 	}
408 
409 	return NOTIFY_DONE;
410 }
411 #endif
412 
413 int
nouveau_display_init(struct drm_device * dev)414 nouveau_display_init(struct drm_device *dev)
415 {
416 	struct nouveau_display *disp = nouveau_display(dev);
417 	struct nouveau_drm *drm = nouveau_drm(dev);
418 	struct drm_connector *connector;
419 	int ret;
420 
421 	ret = disp->init(dev);
422 	if (ret)
423 		return ret;
424 
425 	/* enable hotplug interrupts */
426 	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
427 		struct nouveau_connector *conn = nouveau_connector(connector);
428 		nvif_notify_get(&conn->hpd);
429 	}
430 
431 	/* enable flip completion events */
432 	nvif_notify_get(&drm->flip);
433 	return ret;
434 }
435 
436 void
nouveau_display_fini(struct drm_device * dev)437 nouveau_display_fini(struct drm_device *dev)
438 {
439 	struct nouveau_display *disp = nouveau_display(dev);
440 	struct nouveau_drm *drm = nouveau_drm(dev);
441 	struct drm_connector *connector;
442 	int head;
443 
444 	/* Make sure that drm and hw vblank irqs get properly disabled. */
445 	for (head = 0; head < dev->mode_config.num_crtc; head++)
446 		drm_vblank_off(dev, head);
447 
448 	/* disable flip completion events */
449 	nvif_notify_put(&drm->flip);
450 
451 	/* disable hotplug interrupts */
452 	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
453 		struct nouveau_connector *conn = nouveau_connector(connector);
454 		nvif_notify_put(&conn->hpd);
455 	}
456 
457 	drm_kms_helper_poll_disable(dev);
458 	disp->fini(dev);
459 }
460 
461 static void
nouveau_display_create_properties(struct drm_device * dev)462 nouveau_display_create_properties(struct drm_device *dev)
463 {
464 	struct nouveau_display *disp = nouveau_display(dev);
465 	int gen;
466 
467 	if (disp->disp.oclass < NV50_DISP)
468 		gen = 0;
469 	else
470 	if (disp->disp.oclass < GF110_DISP)
471 		gen = 1;
472 	else
473 		gen = 2;
474 
475 	PROP_ENUM(disp->dithering_mode, gen, "dithering mode", dither_mode);
476 	PROP_ENUM(disp->dithering_depth, gen, "dithering depth", dither_depth);
477 	PROP_ENUM(disp->underscan_property, gen, "underscan", underscan);
478 
479 	disp->underscan_hborder_property =
480 		drm_property_create_range(dev, 0, "underscan hborder", 0, 128);
481 
482 	disp->underscan_vborder_property =
483 		drm_property_create_range(dev, 0, "underscan vborder", 0, 128);
484 
485 	if (gen < 1)
486 		return;
487 
488 	/* -90..+90 */
489 	disp->vibrant_hue_property =
490 		drm_property_create_range(dev, 0, "vibrant hue", 0, 180);
491 
492 	/* -100..+100 */
493 	disp->color_vibrance_property =
494 		drm_property_create_range(dev, 0, "color vibrance", 0, 200);
495 }
496 
497 int
nouveau_display_create(struct drm_device * dev)498 nouveau_display_create(struct drm_device *dev)
499 {
500 	struct nouveau_drm *drm = nouveau_drm(dev);
501 	struct nvkm_device *device = nvxx_device(&drm->device);
502 	struct nouveau_display *disp;
503 	int ret;
504 
505 	disp = drm->display = kzalloc(sizeof(*disp), GFP_KERNEL);
506 	if (!disp)
507 		return -ENOMEM;
508 
509 	drm_mode_config_init(dev);
510 	drm_mode_create_scaling_mode_property(dev);
511 	drm_mode_create_dvi_i_properties(dev);
512 
513 	dev->mode_config.funcs = &nouveau_mode_config_funcs;
514 	dev->mode_config.fb_base = device->func->resource_addr(device, 1);
515 
516 	dev->mode_config.min_width = 0;
517 	dev->mode_config.min_height = 0;
518 	if (drm->device.info.family < NV_DEVICE_INFO_V0_CELSIUS) {
519 		dev->mode_config.max_width = 2048;
520 		dev->mode_config.max_height = 2048;
521 	} else
522 	if (drm->device.info.family < NV_DEVICE_INFO_V0_TESLA) {
523 		dev->mode_config.max_width = 4096;
524 		dev->mode_config.max_height = 4096;
525 	} else
526 	if (drm->device.info.family < NV_DEVICE_INFO_V0_FERMI) {
527 		dev->mode_config.max_width = 8192;
528 		dev->mode_config.max_height = 8192;
529 	} else {
530 		dev->mode_config.max_width = 16384;
531 		dev->mode_config.max_height = 16384;
532 	}
533 
534 	dev->mode_config.preferred_depth = 24;
535 	dev->mode_config.prefer_shadow = 1;
536 
537 	if (drm->device.info.chipset < 0x11)
538 		dev->mode_config.async_page_flip = false;
539 	else
540 		dev->mode_config.async_page_flip = true;
541 
542 	drm_kms_helper_poll_init(dev);
543 	drm_kms_helper_poll_disable(dev);
544 
545 	if (nouveau_modeset != 2 && drm->vbios.dcb.entries) {
546 		static const u16 oclass[] = {
547 			GP104_DISP,
548 			GP100_DISP,
549 			GM200_DISP,
550 			GM107_DISP,
551 			GK110_DISP,
552 			GK104_DISP,
553 			GF110_DISP,
554 			GT214_DISP,
555 			GT206_DISP,
556 			GT200_DISP,
557 			G82_DISP,
558 			NV50_DISP,
559 			NV04_DISP,
560 		};
561 		int i;
562 
563 		for (i = 0, ret = -ENODEV; ret && i < ARRAY_SIZE(oclass); i++) {
564 			ret = nvif_object_init(&drm->device.object, 0,
565 					       oclass[i], NULL, 0, &disp->disp);
566 		}
567 
568 		if (ret == 0) {
569 			nouveau_display_create_properties(dev);
570 			if (disp->disp.oclass < NV50_DISP)
571 				ret = nv04_display_create(dev);
572 			else
573 				ret = nv50_display_create(dev);
574 		}
575 	} else {
576 		ret = 0;
577 	}
578 
579 	if (ret)
580 		goto disp_create_err;
581 
582 	if (dev->mode_config.num_crtc) {
583 		ret = nouveau_display_vblank_init(dev);
584 		if (ret)
585 			goto vblank_err;
586 	}
587 
588 	nouveau_backlight_init(dev);
589 	INIT_WORK(&drm->hpd_work, nouveau_display_hpd_work);
590 #ifdef CONFIG_ACPI
591 	drm->acpi_nb.notifier_call = nouveau_display_acpi_ntfy;
592 	register_acpi_notifier(&drm->acpi_nb);
593 #endif
594 
595 	return 0;
596 
597 vblank_err:
598 	disp->dtor(dev);
599 disp_create_err:
600 	drm_kms_helper_poll_fini(dev);
601 	drm_mode_config_cleanup(dev);
602 	return ret;
603 }
604 
605 void
nouveau_display_destroy(struct drm_device * dev)606 nouveau_display_destroy(struct drm_device *dev)
607 {
608 	struct nouveau_display *disp = nouveau_display(dev);
609 
610 #ifdef CONFIG_ACPI
611 	unregister_acpi_notifier(&nouveau_drm(dev)->acpi_nb);
612 #endif
613 	nouveau_backlight_exit(dev);
614 	nouveau_display_vblank_fini(dev);
615 
616 	drm_kms_helper_poll_fini(dev);
617 	drm_crtc_force_disable_all(dev);
618 	drm_mode_config_cleanup(dev);
619 
620 	if (disp->dtor)
621 		disp->dtor(dev);
622 
623 	nvif_object_fini(&disp->disp);
624 
625 	nouveau_drm(dev)->display = NULL;
626 	kfree(disp);
627 }
628 
629 int
nouveau_display_suspend(struct drm_device * dev,bool runtime)630 nouveau_display_suspend(struct drm_device *dev, bool runtime)
631 {
632 	struct drm_crtc *crtc;
633 
634 	nouveau_display_fini(dev);
635 
636 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
637 		struct nouveau_framebuffer *nouveau_fb;
638 
639 		nouveau_fb = nouveau_framebuffer(crtc->primary->fb);
640 		if (!nouveau_fb || !nouveau_fb->nvbo)
641 			continue;
642 
643 		nouveau_bo_unpin(nouveau_fb->nvbo);
644 	}
645 
646 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
647 		struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
648 		if (nv_crtc->cursor.nvbo) {
649 			if (nv_crtc->cursor.set_offset)
650 				nouveau_bo_unmap(nv_crtc->cursor.nvbo);
651 			nouveau_bo_unpin(nv_crtc->cursor.nvbo);
652 		}
653 	}
654 
655 	return 0;
656 }
657 
658 void
nouveau_display_resume(struct drm_device * dev,bool runtime)659 nouveau_display_resume(struct drm_device *dev, bool runtime)
660 {
661 	struct nouveau_drm *drm = nouveau_drm(dev);
662 	struct drm_crtc *crtc;
663 	int ret, head;
664 
665 	/* re-pin fb/cursors */
666 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
667 		struct nouveau_framebuffer *nouveau_fb;
668 
669 		nouveau_fb = nouveau_framebuffer(crtc->primary->fb);
670 		if (!nouveau_fb || !nouveau_fb->nvbo)
671 			continue;
672 
673 		ret = nouveau_bo_pin(nouveau_fb->nvbo, TTM_PL_FLAG_VRAM, true);
674 		if (ret)
675 			NV_ERROR(drm, "Could not pin framebuffer\n");
676 	}
677 
678 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
679 		struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
680 		if (!nv_crtc->cursor.nvbo)
681 			continue;
682 
683 		ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM, true);
684 		if (!ret && nv_crtc->cursor.set_offset)
685 			ret = nouveau_bo_map(nv_crtc->cursor.nvbo);
686 		if (ret)
687 			NV_ERROR(drm, "Could not pin/map cursor.\n");
688 	}
689 
690 	nouveau_display_init(dev);
691 
692 	/* Force CLUT to get re-loaded during modeset */
693 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
694 		struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
695 
696 		nv_crtc->lut.depth = 0;
697 	}
698 
699 	/* This should ensure we don't hit a locking problem when someone
700 	 * wakes us up via a connector.  We should never go into suspend
701 	 * while the display is on anyways.
702 	 */
703 	if (runtime)
704 		return;
705 
706 	drm_helper_resume_force_mode(dev);
707 
708 	/* Make sure that drm and hw vblank irqs get resumed if needed. */
709 	for (head = 0; head < dev->mode_config.num_crtc; head++)
710 		drm_vblank_on(dev, head);
711 
712 	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
713 		struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
714 
715 		if (!nv_crtc->cursor.nvbo)
716 			continue;
717 
718 		if (nv_crtc->cursor.set_offset)
719 			nv_crtc->cursor.set_offset(nv_crtc, nv_crtc->cursor.nvbo->bo.offset);
720 		nv_crtc->cursor.set_pos(nv_crtc, nv_crtc->cursor_saved_x,
721 						 nv_crtc->cursor_saved_y);
722 	}
723 }
724 
725 static int
nouveau_page_flip_emit(struct nouveau_channel * chan,struct nouveau_bo * old_bo,struct nouveau_bo * new_bo,struct nouveau_page_flip_state * s,struct nouveau_fence ** pfence)726 nouveau_page_flip_emit(struct nouveau_channel *chan,
727 		       struct nouveau_bo *old_bo,
728 		       struct nouveau_bo *new_bo,
729 		       struct nouveau_page_flip_state *s,
730 		       struct nouveau_fence **pfence)
731 {
732 	struct nouveau_fence_chan *fctx = chan->fence;
733 	struct nouveau_drm *drm = chan->drm;
734 	struct drm_device *dev = drm->dev;
735 	unsigned long flags;
736 	int ret;
737 
738 	/* Queue it to the pending list */
739 	spin_lock_irqsave(&dev->event_lock, flags);
740 	list_add_tail(&s->head, &fctx->flip);
741 	spin_unlock_irqrestore(&dev->event_lock, flags);
742 
743 	/* Synchronize with the old framebuffer */
744 	ret = nouveau_fence_sync(old_bo, chan, false, false);
745 	if (ret)
746 		goto fail;
747 
748 	/* Emit the pageflip */
749 	ret = RING_SPACE(chan, 2);
750 	if (ret)
751 		goto fail;
752 
753 	if (drm->device.info.family < NV_DEVICE_INFO_V0_FERMI)
754 		BEGIN_NV04(chan, NvSubSw, NV_SW_PAGE_FLIP, 1);
755 	else
756 		BEGIN_NVC0(chan, FermiSw, NV_SW_PAGE_FLIP, 1);
757 	OUT_RING  (chan, 0x00000000);
758 	FIRE_RING (chan);
759 
760 	ret = nouveau_fence_new(chan, false, pfence);
761 	if (ret)
762 		goto fail;
763 
764 	return 0;
765 fail:
766 	spin_lock_irqsave(&dev->event_lock, flags);
767 	list_del(&s->head);
768 	spin_unlock_irqrestore(&dev->event_lock, flags);
769 	return ret;
770 }
771 
772 int
nouveau_crtc_page_flip(struct drm_crtc * crtc,struct drm_framebuffer * fb,struct drm_pending_vblank_event * event,u32 flags)773 nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
774 		       struct drm_pending_vblank_event *event, u32 flags)
775 {
776 	const int swap_interval = (flags & DRM_MODE_PAGE_FLIP_ASYNC) ? 0 : 1;
777 	struct drm_device *dev = crtc->dev;
778 	struct nouveau_drm *drm = nouveau_drm(dev);
779 	struct nouveau_bo *old_bo = nouveau_framebuffer(crtc->primary->fb)->nvbo;
780 	struct nouveau_bo *new_bo = nouveau_framebuffer(fb)->nvbo;
781 	struct nouveau_page_flip_state *s;
782 	struct nouveau_channel *chan;
783 	struct nouveau_cli *cli;
784 	struct nouveau_fence *fence;
785 	int ret;
786 
787 	chan = drm->channel;
788 	if (!chan)
789 		return -ENODEV;
790 	cli = (void *)chan->user.client;
791 
792 	s = kzalloc(sizeof(*s), GFP_KERNEL);
793 	if (!s)
794 		return -ENOMEM;
795 
796 	if (new_bo != old_bo) {
797 		ret = nouveau_bo_pin(new_bo, TTM_PL_FLAG_VRAM, true);
798 		if (ret)
799 			goto fail_free;
800 	}
801 
802 	mutex_lock(&cli->mutex);
803 	ret = ttm_bo_reserve(&new_bo->bo, true, false, NULL);
804 	if (ret)
805 		goto fail_unpin;
806 
807 	/* synchronise rendering channel with the kernel's channel */
808 	ret = nouveau_fence_sync(new_bo, chan, false, true);
809 	if (ret) {
810 		ttm_bo_unreserve(&new_bo->bo);
811 		goto fail_unpin;
812 	}
813 
814 	if (new_bo != old_bo) {
815 		ttm_bo_unreserve(&new_bo->bo);
816 
817 		ret = ttm_bo_reserve(&old_bo->bo, true, false, NULL);
818 		if (ret)
819 			goto fail_unpin;
820 	}
821 
822 	/* Initialize a page flip struct */
823 	*s = (struct nouveau_page_flip_state)
824 		{ { }, event, crtc, fb->bits_per_pixel, fb->pitches[0],
825 		  new_bo->bo.offset };
826 
827 	/* Keep vblanks on during flip, for the target crtc of this flip */
828 	drm_crtc_vblank_get(crtc);
829 
830 	/* Emit a page flip */
831 	if (drm->device.info.family >= NV_DEVICE_INFO_V0_TESLA) {
832 		ret = nv50_display_flip_next(crtc, fb, chan, swap_interval);
833 		if (ret)
834 			goto fail_unreserve;
835 	} else {
836 		struct nv04_display *dispnv04 = nv04_display(dev);
837 		int head = nouveau_crtc(crtc)->index;
838 
839 		if (swap_interval) {
840 			ret = RING_SPACE(chan, 8);
841 			if (ret)
842 				goto fail_unreserve;
843 
844 			BEGIN_NV04(chan, NvSubImageBlit, 0x012c, 1);
845 			OUT_RING  (chan, 0);
846 			BEGIN_NV04(chan, NvSubImageBlit, 0x0134, 1);
847 			OUT_RING  (chan, head);
848 			BEGIN_NV04(chan, NvSubImageBlit, 0x0100, 1);
849 			OUT_RING  (chan, 0);
850 			BEGIN_NV04(chan, NvSubImageBlit, 0x0130, 1);
851 			OUT_RING  (chan, 0);
852 		}
853 
854 		nouveau_bo_ref(new_bo, &dispnv04->image[head]);
855 	}
856 
857 	ret = nouveau_page_flip_emit(chan, old_bo, new_bo, s, &fence);
858 	if (ret)
859 		goto fail_unreserve;
860 	mutex_unlock(&cli->mutex);
861 
862 	/* Update the crtc struct and cleanup */
863 	crtc->primary->fb = fb;
864 
865 	nouveau_bo_fence(old_bo, fence, false);
866 	ttm_bo_unreserve(&old_bo->bo);
867 	if (old_bo != new_bo)
868 		nouveau_bo_unpin(old_bo);
869 	nouveau_fence_unref(&fence);
870 	return 0;
871 
872 fail_unreserve:
873 	drm_crtc_vblank_put(crtc);
874 	ttm_bo_unreserve(&old_bo->bo);
875 fail_unpin:
876 	mutex_unlock(&cli->mutex);
877 	if (old_bo != new_bo)
878 		nouveau_bo_unpin(new_bo);
879 fail_free:
880 	kfree(s);
881 	return ret;
882 }
883 
884 int
nouveau_finish_page_flip(struct nouveau_channel * chan,struct nouveau_page_flip_state * ps)885 nouveau_finish_page_flip(struct nouveau_channel *chan,
886 			 struct nouveau_page_flip_state *ps)
887 {
888 	struct nouveau_fence_chan *fctx = chan->fence;
889 	struct nouveau_drm *drm = chan->drm;
890 	struct drm_device *dev = drm->dev;
891 	struct nouveau_page_flip_state *s;
892 	unsigned long flags;
893 
894 	spin_lock_irqsave(&dev->event_lock, flags);
895 
896 	if (list_empty(&fctx->flip)) {
897 		NV_ERROR(drm, "unexpected pageflip\n");
898 		spin_unlock_irqrestore(&dev->event_lock, flags);
899 		return -EINVAL;
900 	}
901 
902 	s = list_first_entry(&fctx->flip, struct nouveau_page_flip_state, head);
903 	if (s->event) {
904 		if (drm->device.info.family < NV_DEVICE_INFO_V0_TESLA) {
905 			drm_crtc_arm_vblank_event(s->crtc, s->event);
906 		} else {
907 			drm_crtc_send_vblank_event(s->crtc, s->event);
908 
909 			/* Give up ownership of vblank for page-flipped crtc */
910 			drm_crtc_vblank_put(s->crtc);
911 		}
912 	}
913 	else {
914 		/* Give up ownership of vblank for page-flipped crtc */
915 		drm_crtc_vblank_put(s->crtc);
916 	}
917 
918 	list_del(&s->head);
919 	if (ps)
920 		*ps = *s;
921 	kfree(s);
922 
923 	spin_unlock_irqrestore(&dev->event_lock, flags);
924 	return 0;
925 }
926 
927 int
nouveau_flip_complete(struct nvif_notify * notify)928 nouveau_flip_complete(struct nvif_notify *notify)
929 {
930 	struct nouveau_drm *drm = container_of(notify, typeof(*drm), flip);
931 	struct nouveau_channel *chan = drm->channel;
932 	struct nouveau_page_flip_state state;
933 
934 	if (!nouveau_finish_page_flip(chan, &state)) {
935 		if (drm->device.info.family < NV_DEVICE_INFO_V0_TESLA) {
936 			nv_set_crtc_base(drm->dev, drm_crtc_index(state.crtc),
937 					 state.offset + state.crtc->y *
938 					 state.pitch + state.crtc->x *
939 					 state.bpp / 8);
940 		}
941 	}
942 
943 	return NVIF_NOTIFY_KEEP;
944 }
945 
946 int
nouveau_display_dumb_create(struct drm_file * file_priv,struct drm_device * dev,struct drm_mode_create_dumb * args)947 nouveau_display_dumb_create(struct drm_file *file_priv, struct drm_device *dev,
948 			    struct drm_mode_create_dumb *args)
949 {
950 	struct nouveau_bo *bo;
951 	uint32_t domain;
952 	int ret;
953 
954 	args->pitch = roundup(args->width * (args->bpp / 8), 256);
955 	args->size = args->pitch * args->height;
956 	args->size = roundup(args->size, PAGE_SIZE);
957 
958 	/* Use VRAM if there is any ; otherwise fallback to system memory */
959 	if (nouveau_drm(dev)->device.info.ram_size != 0)
960 		domain = NOUVEAU_GEM_DOMAIN_VRAM;
961 	else
962 		domain = NOUVEAU_GEM_DOMAIN_GART;
963 
964 	ret = nouveau_gem_new(dev, args->size, 0, domain, 0, 0, &bo);
965 	if (ret)
966 		return ret;
967 
968 	ret = drm_gem_handle_create(file_priv, &bo->gem, &args->handle);
969 	drm_gem_object_unreference_unlocked(&bo->gem);
970 	return ret;
971 }
972 
973 int
nouveau_display_dumb_map_offset(struct drm_file * file_priv,struct drm_device * dev,uint32_t handle,uint64_t * poffset)974 nouveau_display_dumb_map_offset(struct drm_file *file_priv,
975 				struct drm_device *dev,
976 				uint32_t handle, uint64_t *poffset)
977 {
978 	struct drm_gem_object *gem;
979 
980 	gem = drm_gem_object_lookup(file_priv, handle);
981 	if (gem) {
982 		struct nouveau_bo *bo = nouveau_gem_object(gem);
983 		*poffset = drm_vma_node_offset_addr(&bo->bo.vma_node);
984 		drm_gem_object_unreference_unlocked(gem);
985 		return 0;
986 	}
987 
988 	return -ENOENT;
989 }
990