blob: 6720d63cfccca5aabf1679c177fb8376921f21d9 [file] [log] [blame]
Ben Skeggs26f6d882011-07-04 16:25:18 +10001/*
2 * Copyright 2011 Red Hat Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: Ben Skeggs
23 */
24
Ben Skeggs51beb422011-07-05 10:33:08 +100025#include <linux/dma-mapping.h>
Ben Skeggs83fc0832011-07-05 13:08:40 +100026
Ben Skeggs26f6d882011-07-04 16:25:18 +100027#include "drmP.h"
Ben Skeggs83fc0832011-07-05 13:08:40 +100028#include "drm_crtc_helper.h"
Ben Skeggs26f6d882011-07-04 16:25:18 +100029
30#include "nouveau_drv.h"
31#include "nouveau_connector.h"
32#include "nouveau_encoder.h"
33#include "nouveau_crtc.h"
Ben Skeggs438d99e2011-07-05 16:48:06 +100034#include "nouveau_fb.h"
Ben Skeggs3a89cd02011-07-07 10:47:10 +100035#include "nv50_display.h"
Ben Skeggs26f6d882011-07-04 16:25:18 +100036
Ben Skeggsefd272a2011-07-05 11:58:58 +100037#define MEM_SYNC 0xe0000001
38#define MEM_VRAM 0xe0010000
Ben Skeggsc0cc92a2011-07-06 11:40:45 +100039#include "nouveau_dma.h"
Ben Skeggsefd272a2011-07-05 11:58:58 +100040
Ben Skeggs26f6d882011-07-04 16:25:18 +100041struct nvd0_display {
42 struct nouveau_gpuobj *mem;
Ben Skeggs51beb422011-07-05 10:33:08 +100043 struct {
44 dma_addr_t handle;
45 u32 *ptr;
46 } evo[1];
Ben Skeggs3a89cd02011-07-07 10:47:10 +100047 struct {
48 struct dcb_entry *dis;
49 struct dcb_entry *ena;
50 int crtc;
51 int pclk;
52 u16 script;
53 } irq;
Ben Skeggs26f6d882011-07-04 16:25:18 +100054};
55
56static struct nvd0_display *
57nvd0_display(struct drm_device *dev)
58{
59 struct drm_nouveau_private *dev_priv = dev->dev_private;
60 return dev_priv->engine.display.priv;
61}
62
Ben Skeggs51beb422011-07-05 10:33:08 +100063static int
64evo_icmd(struct drm_device *dev, int id, u32 mthd, u32 data)
65{
66 int ret = 0;
67 nv_mask(dev, 0x610700 + (id * 0x10), 0x00000001, 0x00000001);
68 nv_wr32(dev, 0x610704 + (id * 0x10), data);
69 nv_mask(dev, 0x610704 + (id * 0x10), 0x80000ffc, 0x80000000 | mthd);
70 if (!nv_wait(dev, 0x610704 + (id * 0x10), 0x80000000, 0x00000000))
71 ret = -EBUSY;
72 nv_mask(dev, 0x610700 + (id * 0x10), 0x00000001, 0x00000000);
73 return ret;
74}
75
76static u32 *
77evo_wait(struct drm_device *dev, int id, int nr)
78{
79 struct nvd0_display *disp = nvd0_display(dev);
80 u32 put = nv_rd32(dev, 0x640000 + (id * 0x1000)) / 4;
81
82 if (put + nr >= (PAGE_SIZE / 4)) {
83 disp->evo[id].ptr[put] = 0x20000000;
84
85 nv_wr32(dev, 0x640000 + (id * 0x1000), 0x00000000);
86 if (!nv_wait(dev, 0x640004 + (id * 0x1000), ~0, 0x00000000)) {
87 NV_ERROR(dev, "evo %d dma stalled\n", id);
88 return NULL;
89 }
90
91 put = 0;
92 }
93
94 return disp->evo[id].ptr + put;
95}
96
97static void
98evo_kick(u32 *push, struct drm_device *dev, int id)
99{
100 struct nvd0_display *disp = nvd0_display(dev);
101 nv_wr32(dev, 0x640000 + (id * 0x1000), (push - disp->evo[id].ptr) << 2);
102}
103
104#define evo_mthd(p,m,s) *((p)++) = (((s) << 18) | (m))
105#define evo_data(p,d) *((p)++) = (d)
106
Ben Skeggs83fc0832011-07-05 13:08:40 +1000107static struct drm_crtc *
108nvd0_display_crtc_get(struct drm_encoder *encoder)
109{
110 return nouveau_encoder(encoder)->crtc;
111}
112
Ben Skeggs26f6d882011-07-04 16:25:18 +1000113/******************************************************************************
Ben Skeggs438d99e2011-07-05 16:48:06 +1000114 * CRTC
115 *****************************************************************************/
116static int
117nvd0_crtc_set_dither(struct nouveau_crtc *nv_crtc, bool on, bool update)
118{
119 struct drm_device *dev = nv_crtc->base.dev;
120 u32 *push, mode;
121
122 mode = 0x00000000;
123 if (on) {
124 /* 0x11: 6bpc dynamic 2x2
125 * 0x13: 8bpc dynamic 2x2
126 * 0x19: 6bpc static 2x2
127 * 0x1b: 8bpc static 2x2
128 * 0x21: 6bpc temporal
129 * 0x23: 8bpc temporal
130 */
131 mode = 0x00000011;
132 }
133
134 push = evo_wait(dev, 0, 4);
135 if (push) {
136 evo_mthd(push, 0x0490 + (nv_crtc->index * 0x300), 1);
137 evo_data(push, mode);
138 if (update) {
139 evo_mthd(push, 0x0080, 1);
140 evo_data(push, 0x00000000);
141 }
142 evo_kick(push, dev, 0);
143 }
144
145 return 0;
146}
147
148static int
149nvd0_crtc_set_scale(struct nouveau_crtc *nv_crtc, int type, bool update)
150{
151 struct drm_display_mode *mode = &nv_crtc->base.mode;
152 struct drm_device *dev = nv_crtc->base.dev;
Ben Skeggsf3fdc522011-07-07 16:01:57 +1000153 struct nouveau_connector *nv_connector;
154 u32 *push, outX, outY;
Ben Skeggs438d99e2011-07-05 16:48:06 +1000155
Ben Skeggsf3fdc522011-07-07 16:01:57 +1000156 outX = mode->hdisplay;
157 outY = mode->vdisplay;
158
159 nv_connector = nouveau_crtc_connector_get(nv_crtc);
160 if (nv_connector && nv_connector->native_mode) {
161 struct drm_display_mode *native = nv_connector->native_mode;
162 u32 xratio = (native->hdisplay << 19) / mode->hdisplay;
163 u32 yratio = (native->vdisplay << 19) / mode->vdisplay;
164
165 switch (type) {
166 case DRM_MODE_SCALE_ASPECT:
167 if (xratio > yratio) {
168 outX = (mode->hdisplay * yratio) >> 19;
169 outY = (mode->vdisplay * yratio) >> 19;
170 } else {
171 outX = (mode->hdisplay * xratio) >> 19;
172 outY = (mode->vdisplay * xratio) >> 19;
173 }
174 break;
175 case DRM_MODE_SCALE_FULLSCREEN:
176 outX = native->hdisplay;
177 outY = native->vdisplay;
178 break;
179 default:
180 break;
181 }
182 }
Ben Skeggs438d99e2011-07-05 16:48:06 +1000183
184 push = evo_wait(dev, 0, 16);
185 if (push) {
186 evo_mthd(push, 0x04c0 + (nv_crtc->index * 0x300), 3);
Ben Skeggsf3fdc522011-07-07 16:01:57 +1000187 evo_data(push, (outY << 16) | outX);
188 evo_data(push, (outY << 16) | outX);
189 evo_data(push, (outY << 16) | outX);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000190 evo_mthd(push, 0x0494 + (nv_crtc->index * 0x300), 1);
191 evo_data(push, 0x00000000);
192 evo_mthd(push, 0x04b0 + (nv_crtc->index * 0x300), 1);
193 evo_data(push, 0x00000000);
194 evo_mthd(push, 0x04b8 + (nv_crtc->index * 0x300), 1);
195 evo_data(push, (mode->vdisplay << 16) | mode->hdisplay);
196 if (update) {
197 evo_mthd(push, 0x0080, 1);
198 evo_data(push, 0x00000000);
199 }
200 evo_kick(push, dev, 0);
201 }
202
203 return 0;
204}
205
206static int
207nvd0_crtc_set_image(struct nouveau_crtc *nv_crtc, struct drm_framebuffer *fb,
208 int x, int y, bool update)
209{
210 struct nouveau_framebuffer *nvfb = nouveau_framebuffer(fb);
211 u32 *push;
212
Ben Skeggs438d99e2011-07-05 16:48:06 +1000213 push = evo_wait(fb->dev, 0, 16);
214 if (push) {
215 evo_mthd(push, 0x0460 + (nv_crtc->index * 0x300), 1);
216 evo_data(push, nvfb->nvbo->bo.offset >> 8);
217 evo_mthd(push, 0x0468 + (nv_crtc->index * 0x300), 4);
218 evo_data(push, (fb->height << 16) | fb->width);
219 evo_data(push, nvfb->r_pitch);
220 evo_data(push, nvfb->r_format);
Ben Skeggsc0cc92a2011-07-06 11:40:45 +1000221 evo_data(push, nvfb->r_dma);
Ben Skeggsa46232e2011-07-07 15:23:48 +1000222 if (update) {
223 evo_mthd(push, 0x0080, 1);
224 evo_data(push, 0x00000000);
225 }
Ben Skeggs438d99e2011-07-05 16:48:06 +1000226 evo_kick(push, fb->dev, 0);
227 }
228
Ben Skeggsc0cc92a2011-07-06 11:40:45 +1000229 nv_crtc->fb.tile_flags = nvfb->r_dma;
Ben Skeggs438d99e2011-07-05 16:48:06 +1000230 return 0;
231}
232
233static void
234nvd0_crtc_cursor_show(struct nouveau_crtc *nv_crtc, bool show, bool update)
235{
236 struct drm_device *dev = nv_crtc->base.dev;
237 u32 *push = evo_wait(dev, 0, 16);
238 if (push) {
239 if (show) {
240 evo_mthd(push, 0x0480 + (nv_crtc->index * 0x300), 2);
241 evo_data(push, 0x85000000);
242 evo_data(push, nv_crtc->cursor.nvbo->bo.offset >> 8);
243 evo_mthd(push, 0x048c + (nv_crtc->index * 0x300), 1);
244 evo_data(push, MEM_VRAM);
245 } else {
246 evo_mthd(push, 0x0480 + (nv_crtc->index * 0x300), 1);
247 evo_data(push, 0x05000000);
248 evo_mthd(push, 0x048c + (nv_crtc->index * 0x300), 1);
249 evo_data(push, 0x00000000);
250 }
251
252 if (update) {
253 evo_mthd(push, 0x0080, 1);
254 evo_data(push, 0x00000000);
255 }
256
257 evo_kick(push, dev, 0);
258 }
259}
260
261static void
262nvd0_crtc_dpms(struct drm_crtc *crtc, int mode)
263{
264}
265
266static void
267nvd0_crtc_prepare(struct drm_crtc *crtc)
268{
269 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
270 u32 *push;
271
272 push = evo_wait(crtc->dev, 0, 2);
273 if (push) {
274 evo_mthd(push, 0x0474 + (nv_crtc->index * 0x300), 1);
275 evo_data(push, 0x00000000);
276 evo_mthd(push, 0x0440 + (nv_crtc->index * 0x300), 1);
277 evo_data(push, 0x03000000);
278 evo_mthd(push, 0x045c + (nv_crtc->index * 0x300), 1);
279 evo_data(push, 0x00000000);
280 evo_kick(push, crtc->dev, 0);
281 }
282
283 nvd0_crtc_cursor_show(nv_crtc, false, false);
284}
285
286static void
287nvd0_crtc_commit(struct drm_crtc *crtc)
288{
289 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
290 u32 *push;
291
292 push = evo_wait(crtc->dev, 0, 32);
293 if (push) {
294 evo_mthd(push, 0x0474 + (nv_crtc->index * 0x300), 1);
295 evo_data(push, nv_crtc->fb.tile_flags);
296 evo_mthd(push, 0x0440 + (nv_crtc->index * 0x300), 4);
297 evo_data(push, 0x83000000);
298 evo_data(push, nv_crtc->lut.nvbo->bo.offset >> 8);
299 evo_data(push, 0x00000000);
300 evo_data(push, 0x00000000);
301 evo_mthd(push, 0x045c + (nv_crtc->index * 0x300), 1);
302 evo_data(push, MEM_VRAM);
Ben Skeggs8ea0d4a2011-07-07 14:49:24 +1000303 evo_mthd(push, 0x0430 + (nv_crtc->index * 0x300), 1);
304 evo_data(push, 0xffffff00);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000305 evo_kick(push, crtc->dev, 0);
306 }
307
308 nvd0_crtc_cursor_show(nv_crtc, nv_crtc->cursor.visible, true);
309}
310
311static bool
312nvd0_crtc_mode_fixup(struct drm_crtc *crtc, struct drm_display_mode *mode,
313 struct drm_display_mode *adjusted_mode)
314{
315 return true;
316}
317
318static int
319nvd0_crtc_swap_fbs(struct drm_crtc *crtc, struct drm_framebuffer *old_fb)
320{
321 struct nouveau_framebuffer *nvfb = nouveau_framebuffer(crtc->fb);
322 int ret;
323
324 ret = nouveau_bo_pin(nvfb->nvbo, TTM_PL_FLAG_VRAM);
325 if (ret)
326 return ret;
327
328 if (old_fb) {
329 nvfb = nouveau_framebuffer(old_fb);
330 nouveau_bo_unpin(nvfb->nvbo);
331 }
332
333 return 0;
334}
335
336static int
337nvd0_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *umode,
338 struct drm_display_mode *mode, int x, int y,
339 struct drm_framebuffer *old_fb)
340{
341 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
342 struct nouveau_connector *nv_connector;
343 u32 htotal = mode->htotal;
344 u32 vtotal = mode->vtotal;
345 u32 hsyncw = mode->hsync_end - mode->hsync_start - 1;
346 u32 vsyncw = mode->vsync_end - mode->vsync_start - 1;
347 u32 hfrntp = mode->hsync_start - mode->hdisplay;
348 u32 vfrntp = mode->vsync_start - mode->vdisplay;
349 u32 hbackp = mode->htotal - mode->hsync_end;
350 u32 vbackp = mode->vtotal - mode->vsync_end;
351 u32 hss2be = hsyncw + hbackp;
352 u32 vss2be = vsyncw + vbackp;
353 u32 hss2de = htotal - hfrntp;
354 u32 vss2de = vtotal - vfrntp;
Ben Skeggs629c1b92011-07-08 09:43:20 +1000355 u32 syncs, *push;
Ben Skeggs438d99e2011-07-05 16:48:06 +1000356 int ret;
357
Ben Skeggs629c1b92011-07-08 09:43:20 +1000358 syncs = 0x00000001;
359 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
360 syncs |= 0x00000008;
361 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
362 syncs |= 0x00000010;
363
Ben Skeggs438d99e2011-07-05 16:48:06 +1000364 ret = nvd0_crtc_swap_fbs(crtc, old_fb);
365 if (ret)
366 return ret;
367
368 push = evo_wait(crtc->dev, 0, 64);
369 if (push) {
370 evo_mthd(push, 0x0410 + (nv_crtc->index * 0x300), 5);
Ben Skeggs629c1b92011-07-08 09:43:20 +1000371 evo_data(push, 0x00000000);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000372 evo_data(push, (vtotal << 16) | htotal);
373 evo_data(push, (vsyncw << 16) | hsyncw);
374 evo_data(push, (vss2be << 16) | hss2be);
375 evo_data(push, (vss2de << 16) | hss2de);
376 evo_mthd(push, 0x042c + (nv_crtc->index * 0x300), 1);
377 evo_data(push, 0x00000000); /* ??? */
378 evo_mthd(push, 0x0450 + (nv_crtc->index * 0x300), 3);
379 evo_data(push, mode->clock * 1000);
380 evo_data(push, 0x00200000); /* ??? */
381 evo_data(push, mode->clock * 1000);
Ben Skeggs629c1b92011-07-08 09:43:20 +1000382 evo_mthd(push, 0x0404 + (nv_crtc->index * 0x300), 1);
383 evo_data(push, syncs);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000384 evo_kick(push, crtc->dev, 0);
385 }
386
387 nv_connector = nouveau_crtc_connector_get(nv_crtc);
388 nvd0_crtc_set_dither(nv_crtc, nv_connector->use_dithering, false);
389 nvd0_crtc_set_scale(nv_crtc, nv_connector->scaling_mode, false);
390 nvd0_crtc_set_image(nv_crtc, crtc->fb, x, y, false);
391 return 0;
392}
393
394static int
395nvd0_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
396 struct drm_framebuffer *old_fb)
397{
398 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
399 int ret;
400
401 ret = nvd0_crtc_swap_fbs(crtc, old_fb);
402 if (ret)
403 return ret;
404
405 nvd0_crtc_set_image(nv_crtc, crtc->fb, x, y, true);
406 return 0;
407}
408
409static int
410nvd0_crtc_mode_set_base_atomic(struct drm_crtc *crtc,
411 struct drm_framebuffer *fb, int x, int y,
412 enum mode_set_atomic state)
413{
414 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
415 nvd0_crtc_set_image(nv_crtc, fb, x, y, true);
416 return 0;
417}
418
419static void
420nvd0_crtc_lut_load(struct drm_crtc *crtc)
421{
422 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
423 void __iomem *lut = nvbo_kmap_obj_iovirtual(nv_crtc->lut.nvbo);
424 int i;
425
426 for (i = 0; i < 256; i++) {
Ben Skeggs8ea0d4a2011-07-07 14:49:24 +1000427 writew(0x6000 + (nv_crtc->lut.r[i] >> 2), lut + (i * 0x20) + 0);
428 writew(0x6000 + (nv_crtc->lut.g[i] >> 2), lut + (i * 0x20) + 2);
429 writew(0x6000 + (nv_crtc->lut.b[i] >> 2), lut + (i * 0x20) + 4);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000430 }
431}
432
433static int
434nvd0_crtc_cursor_set(struct drm_crtc *crtc, struct drm_file *file_priv,
435 uint32_t handle, uint32_t width, uint32_t height)
436{
437 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
438 struct drm_device *dev = crtc->dev;
439 struct drm_gem_object *gem;
440 struct nouveau_bo *nvbo;
441 bool visible = (handle != 0);
442 int i, ret = 0;
443
444 if (visible) {
445 if (width != 64 || height != 64)
446 return -EINVAL;
447
448 gem = drm_gem_object_lookup(dev, file_priv, handle);
449 if (unlikely(!gem))
450 return -ENOENT;
451 nvbo = nouveau_gem_object(gem);
452
453 ret = nouveau_bo_map(nvbo);
454 if (ret == 0) {
455 for (i = 0; i < 64 * 64; i++) {
456 u32 v = nouveau_bo_rd32(nvbo, i);
457 nouveau_bo_wr32(nv_crtc->cursor.nvbo, i, v);
458 }
459 nouveau_bo_unmap(nvbo);
460 }
461
462 drm_gem_object_unreference_unlocked(gem);
463 }
464
465 if (visible != nv_crtc->cursor.visible) {
466 nvd0_crtc_cursor_show(nv_crtc, visible, true);
467 nv_crtc->cursor.visible = visible;
468 }
469
470 return ret;
471}
472
473static int
474nvd0_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
475{
476 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
477 const u32 data = (y << 16) | x;
478
479 nv_wr32(crtc->dev, 0x64d084 + (nv_crtc->index * 0x1000), data);
480 nv_wr32(crtc->dev, 0x64d080 + (nv_crtc->index * 0x1000), 0x00000000);
481 return 0;
482}
483
484static void
485nvd0_crtc_gamma_set(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
486 uint32_t start, uint32_t size)
487{
488 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
489 u32 end = max(start + size, (u32)256);
490 u32 i;
491
492 for (i = start; i < end; i++) {
493 nv_crtc->lut.r[i] = r[i];
494 nv_crtc->lut.g[i] = g[i];
495 nv_crtc->lut.b[i] = b[i];
496 }
497
498 nvd0_crtc_lut_load(crtc);
499}
500
501static void
502nvd0_crtc_destroy(struct drm_crtc *crtc)
503{
504 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
505 nouveau_bo_unmap(nv_crtc->cursor.nvbo);
506 nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo);
507 nouveau_bo_unmap(nv_crtc->lut.nvbo);
508 nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo);
509 drm_crtc_cleanup(crtc);
510 kfree(crtc);
511}
512
513static const struct drm_crtc_helper_funcs nvd0_crtc_hfunc = {
514 .dpms = nvd0_crtc_dpms,
515 .prepare = nvd0_crtc_prepare,
516 .commit = nvd0_crtc_commit,
517 .mode_fixup = nvd0_crtc_mode_fixup,
518 .mode_set = nvd0_crtc_mode_set,
519 .mode_set_base = nvd0_crtc_mode_set_base,
520 .mode_set_base_atomic = nvd0_crtc_mode_set_base_atomic,
521 .load_lut = nvd0_crtc_lut_load,
522};
523
524static const struct drm_crtc_funcs nvd0_crtc_func = {
525 .cursor_set = nvd0_crtc_cursor_set,
526 .cursor_move = nvd0_crtc_cursor_move,
527 .gamma_set = nvd0_crtc_gamma_set,
528 .set_config = drm_crtc_helper_set_config,
529 .destroy = nvd0_crtc_destroy,
530};
531
532static int
533nvd0_crtc_create(struct drm_device *dev, int index)
534{
535 struct nouveau_crtc *nv_crtc;
536 struct drm_crtc *crtc;
537 int ret, i;
538
539 nv_crtc = kzalloc(sizeof(*nv_crtc), GFP_KERNEL);
540 if (!nv_crtc)
541 return -ENOMEM;
542
543 nv_crtc->index = index;
544 nv_crtc->set_dither = nvd0_crtc_set_dither;
545 nv_crtc->set_scale = nvd0_crtc_set_scale;
546 for (i = 0; i < 256; i++) {
547 nv_crtc->lut.r[i] = i << 8;
548 nv_crtc->lut.g[i] = i << 8;
549 nv_crtc->lut.b[i] = i << 8;
550 }
551
552 crtc = &nv_crtc->base;
553 drm_crtc_init(dev, crtc, &nvd0_crtc_func);
554 drm_crtc_helper_add(crtc, &nvd0_crtc_hfunc);
555 drm_mode_crtc_set_gamma_size(crtc, 256);
556
557 ret = nouveau_bo_new(dev, 64 * 64 * 4, 0x100, TTM_PL_FLAG_VRAM,
558 0, 0x0000, &nv_crtc->cursor.nvbo);
559 if (!ret) {
560 ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM);
561 if (!ret)
562 ret = nouveau_bo_map(nv_crtc->cursor.nvbo);
563 if (ret)
564 nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo);
565 }
566
567 if (ret)
568 goto out;
569
Ben Skeggs8ea0d4a2011-07-07 14:49:24 +1000570 ret = nouveau_bo_new(dev, 8192, 0x100, TTM_PL_FLAG_VRAM,
Ben Skeggs438d99e2011-07-05 16:48:06 +1000571 0, 0x0000, &nv_crtc->lut.nvbo);
572 if (!ret) {
573 ret = nouveau_bo_pin(nv_crtc->lut.nvbo, TTM_PL_FLAG_VRAM);
574 if (!ret)
575 ret = nouveau_bo_map(nv_crtc->lut.nvbo);
576 if (ret)
577 nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo);
578 }
579
580 if (ret)
581 goto out;
582
583 nvd0_crtc_lut_load(crtc);
584
585out:
586 if (ret)
587 nvd0_crtc_destroy(crtc);
588 return ret;
589}
590
591/******************************************************************************
Ben Skeggs26f6d882011-07-04 16:25:18 +1000592 * DAC
593 *****************************************************************************/
Ben Skeggs8eaa9662011-07-06 15:25:47 +1000594static void
595nvd0_dac_dpms(struct drm_encoder *encoder, int mode)
596{
597 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
598 struct drm_device *dev = encoder->dev;
599 int or = nv_encoder->or;
600 u32 dpms_ctrl;
601
602 dpms_ctrl = 0x80000000;
603 if (mode == DRM_MODE_DPMS_STANDBY || mode == DRM_MODE_DPMS_OFF)
604 dpms_ctrl |= 0x00000001;
605 if (mode == DRM_MODE_DPMS_SUSPEND || mode == DRM_MODE_DPMS_OFF)
606 dpms_ctrl |= 0x00000004;
607
608 nv_wait(dev, 0x61a004 + (or * 0x0800), 0x80000000, 0x00000000);
609 nv_mask(dev, 0x61a004 + (or * 0x0800), 0xc000007f, dpms_ctrl);
610 nv_wait(dev, 0x61a004 + (or * 0x0800), 0x80000000, 0x00000000);
611}
612
613static bool
614nvd0_dac_mode_fixup(struct drm_encoder *encoder, struct drm_display_mode *mode,
615 struct drm_display_mode *adjusted_mode)
616{
617 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
618 struct nouveau_connector *nv_connector;
619
620 nv_connector = nouveau_encoder_connector_get(nv_encoder);
621 if (nv_connector && nv_connector->native_mode) {
622 if (nv_connector->scaling_mode != DRM_MODE_SCALE_NONE) {
623 int id = adjusted_mode->base.id;
624 *adjusted_mode = *nv_connector->native_mode;
625 adjusted_mode->base.id = id;
626 }
627 }
628
629 return true;
630}
631
632static void
633nvd0_dac_prepare(struct drm_encoder *encoder)
634{
635}
636
637static void
638nvd0_dac_commit(struct drm_encoder *encoder)
639{
640}
641
642static void
643nvd0_dac_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
644 struct drm_display_mode *adjusted_mode)
645{
646 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
647 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
648 u32 *push;
649
650 nvd0_dac_dpms(encoder, DRM_MODE_DPMS_ON);
651
652 push = evo_wait(encoder->dev, 0, 2);
653 if (push) {
654 evo_mthd(push, 0x0180 + (nv_encoder->or * 0x20), 1);
655 evo_data(push, 1 << nv_crtc->index);
656 evo_kick(push, encoder->dev, 0);
657 }
658
659 nv_encoder->crtc = encoder->crtc;
660}
661
662static void
663nvd0_dac_disconnect(struct drm_encoder *encoder)
664{
665 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
666 struct drm_device *dev = encoder->dev;
667 u32 *push;
668
669 if (nv_encoder->crtc) {
670 nvd0_crtc_prepare(nv_encoder->crtc);
671
672 push = evo_wait(dev, 0, 4);
673 if (push) {
674 evo_mthd(push, 0x0180 + (nv_encoder->or * 0x20), 1);
675 evo_data(push, 0x00000000);
676 evo_mthd(push, 0x0080, 1);
677 evo_data(push, 0x00000000);
678 evo_kick(push, dev, 0);
679 }
680
681 nv_encoder->crtc = NULL;
682 }
683}
684
Ben Skeggsb6d8e7e2011-07-07 09:51:29 +1000685static enum drm_connector_status
686nvd0_dac_detect(struct drm_encoder *encoder, struct drm_connector *connector)
687{
688 return connector_status_disconnected;
689}
690
Ben Skeggs8eaa9662011-07-06 15:25:47 +1000691static void
692nvd0_dac_destroy(struct drm_encoder *encoder)
693{
694 drm_encoder_cleanup(encoder);
695 kfree(encoder);
696}
697
698static const struct drm_encoder_helper_funcs nvd0_dac_hfunc = {
699 .dpms = nvd0_dac_dpms,
700 .mode_fixup = nvd0_dac_mode_fixup,
701 .prepare = nvd0_dac_prepare,
702 .commit = nvd0_dac_commit,
703 .mode_set = nvd0_dac_mode_set,
704 .disable = nvd0_dac_disconnect,
705 .get_crtc = nvd0_display_crtc_get,
Ben Skeggsb6d8e7e2011-07-07 09:51:29 +1000706 .detect = nvd0_dac_detect
Ben Skeggs8eaa9662011-07-06 15:25:47 +1000707};
708
709static const struct drm_encoder_funcs nvd0_dac_func = {
710 .destroy = nvd0_dac_destroy,
711};
712
713static int
714nvd0_dac_create(struct drm_connector *connector, struct dcb_entry *dcbe)
715{
716 struct drm_device *dev = connector->dev;
717 struct nouveau_encoder *nv_encoder;
718 struct drm_encoder *encoder;
719
720 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
721 if (!nv_encoder)
722 return -ENOMEM;
723 nv_encoder->dcb = dcbe;
724 nv_encoder->or = ffs(dcbe->or) - 1;
725
726 encoder = to_drm_encoder(nv_encoder);
727 encoder->possible_crtcs = dcbe->heads;
728 encoder->possible_clones = 0;
729 drm_encoder_init(dev, encoder, &nvd0_dac_func, DRM_MODE_ENCODER_DAC);
730 drm_encoder_helper_add(encoder, &nvd0_dac_hfunc);
731
732 drm_mode_connector_attach_encoder(connector, encoder);
733 return 0;
734}
Ben Skeggs26f6d882011-07-04 16:25:18 +1000735
736/******************************************************************************
737 * SOR
738 *****************************************************************************/
Ben Skeggs83fc0832011-07-05 13:08:40 +1000739static void
740nvd0_sor_dpms(struct drm_encoder *encoder, int mode)
741{
742 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
743 struct drm_device *dev = encoder->dev;
744 struct drm_encoder *partner;
745 int or = nv_encoder->or;
746 u32 dpms_ctrl;
747
748 nv_encoder->last_dpms = mode;
749
750 list_for_each_entry(partner, &dev->mode_config.encoder_list, head) {
751 struct nouveau_encoder *nv_partner = nouveau_encoder(partner);
752
753 if (partner->encoder_type != DRM_MODE_ENCODER_TMDS)
754 continue;
755
756 if (nv_partner != nv_encoder &&
757 nv_partner->dcb->or == nv_encoder->or) {
758 if (nv_partner->last_dpms == DRM_MODE_DPMS_ON)
759 return;
760 break;
761 }
762 }
763
764 dpms_ctrl = (mode == DRM_MODE_DPMS_ON);
765 dpms_ctrl |= 0x80000000;
766
767 nv_wait(dev, 0x61c004 + (or * 0x0800), 0x80000000, 0x00000000);
768 nv_mask(dev, 0x61c004 + (or * 0x0800), 0x80000001, dpms_ctrl);
769 nv_wait(dev, 0x61c004 + (or * 0x0800), 0x80000000, 0x00000000);
770 nv_wait(dev, 0x61c030 + (or * 0x0800), 0x10000000, 0x00000000);
771}
772
773static bool
774nvd0_sor_mode_fixup(struct drm_encoder *encoder, struct drm_display_mode *mode,
775 struct drm_display_mode *adjusted_mode)
776{
777 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
778 struct nouveau_connector *nv_connector;
779
780 nv_connector = nouveau_encoder_connector_get(nv_encoder);
781 if (nv_connector && nv_connector->native_mode) {
782 if (nv_connector->scaling_mode != DRM_MODE_SCALE_NONE) {
783 int id = adjusted_mode->base.id;
784 *adjusted_mode = *nv_connector->native_mode;
785 adjusted_mode->base.id = id;
786 }
787 }
788
789 return true;
790}
791
792static void
793nvd0_sor_prepare(struct drm_encoder *encoder)
794{
795}
796
797static void
798nvd0_sor_commit(struct drm_encoder *encoder)
799{
800}
801
802static void
803nvd0_sor_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
804 struct drm_display_mode *adjusted_mode)
805{
806 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
807 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
808 u32 mode_ctrl = (1 << nv_crtc->index);
809 u32 *push;
810
811 if (nv_encoder->dcb->sorconf.link & 1) {
812 if (adjusted_mode->clock < 165000)
813 mode_ctrl |= 0x00000100;
814 else
815 mode_ctrl |= 0x00000500;
816 } else {
817 mode_ctrl |= 0x00000200;
818 }
819
820 nvd0_sor_dpms(encoder, DRM_MODE_DPMS_ON);
821
822 push = evo_wait(encoder->dev, 0, 2);
823 if (push) {
824 evo_mthd(push, 0x0200 + (nv_encoder->or * 0x20), 1);
825 evo_data(push, mode_ctrl);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000826 evo_kick(push, encoder->dev, 0);
Ben Skeggs83fc0832011-07-05 13:08:40 +1000827 }
828
829 nv_encoder->crtc = encoder->crtc;
830}
831
832static void
833nvd0_sor_disconnect(struct drm_encoder *encoder)
834{
835 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
836 struct drm_device *dev = encoder->dev;
Ben Skeggs438d99e2011-07-05 16:48:06 +1000837 u32 *push;
Ben Skeggs83fc0832011-07-05 13:08:40 +1000838
839 if (nv_encoder->crtc) {
Ben Skeggs438d99e2011-07-05 16:48:06 +1000840 nvd0_crtc_prepare(nv_encoder->crtc);
841
842 push = evo_wait(dev, 0, 4);
Ben Skeggs83fc0832011-07-05 13:08:40 +1000843 if (push) {
844 evo_mthd(push, 0x0200 + (nv_encoder->or * 0x20), 1);
845 evo_data(push, 0x00000000);
846 evo_mthd(push, 0x0080, 1);
847 evo_data(push, 0x00000000);
848 evo_kick(push, dev, 0);
849 }
850
851 nv_encoder->crtc = NULL;
852 nv_encoder->last_dpms = DRM_MODE_DPMS_OFF;
853 }
854}
855
856static void
857nvd0_sor_destroy(struct drm_encoder *encoder)
858{
859 drm_encoder_cleanup(encoder);
860 kfree(encoder);
861}
862
863static const struct drm_encoder_helper_funcs nvd0_sor_hfunc = {
864 .dpms = nvd0_sor_dpms,
865 .mode_fixup = nvd0_sor_mode_fixup,
866 .prepare = nvd0_sor_prepare,
867 .commit = nvd0_sor_commit,
868 .mode_set = nvd0_sor_mode_set,
869 .disable = nvd0_sor_disconnect,
870 .get_crtc = nvd0_display_crtc_get,
871};
872
873static const struct drm_encoder_funcs nvd0_sor_func = {
874 .destroy = nvd0_sor_destroy,
875};
876
877static int
878nvd0_sor_create(struct drm_connector *connector, struct dcb_entry *dcbe)
879{
880 struct drm_device *dev = connector->dev;
881 struct nouveau_encoder *nv_encoder;
882 struct drm_encoder *encoder;
883
884 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
885 if (!nv_encoder)
886 return -ENOMEM;
887 nv_encoder->dcb = dcbe;
888 nv_encoder->or = ffs(dcbe->or) - 1;
889 nv_encoder->last_dpms = DRM_MODE_DPMS_OFF;
890
891 encoder = to_drm_encoder(nv_encoder);
892 encoder->possible_crtcs = dcbe->heads;
893 encoder->possible_clones = 0;
894 drm_encoder_init(dev, encoder, &nvd0_sor_func, DRM_MODE_ENCODER_TMDS);
895 drm_encoder_helper_add(encoder, &nvd0_sor_hfunc);
896
897 drm_mode_connector_attach_encoder(connector, encoder);
898 return 0;
899}
Ben Skeggs26f6d882011-07-04 16:25:18 +1000900
901/******************************************************************************
902 * IRQ
903 *****************************************************************************/
Ben Skeggs3a89cd02011-07-07 10:47:10 +1000904static struct dcb_entry *
905lookup_dcb(struct drm_device *dev, int id, u32 mc)
906{
907 struct drm_nouveau_private *dev_priv = dev->dev_private;
908 int type, or, i;
909
910 if (id < 4) {
911 type = OUTPUT_ANALOG;
912 or = id;
913 } else {
914 type = OUTPUT_TMDS;
915 or = id - 4;
916 }
917
918 for (i = 0; i < dev_priv->vbios.dcb.entries; i++) {
919 struct dcb_entry *dcb = &dev_priv->vbios.dcb.entry[i];
920 if (dcb->type == type && (dcb->or & (1 << or)))
921 return dcb;
922 }
923
924 NV_INFO(dev, "PDISP: DCB for %d/0x%08x not found\n", id, mc);
925 return NULL;
926}
927
Ben Skeggs46005222011-07-05 11:01:13 +1000928static void
Ben Skeggs270a5742011-07-05 14:16:05 +1000929nvd0_display_unk1_handler(struct drm_device *dev)
930{
Ben Skeggs3a89cd02011-07-07 10:47:10 +1000931 struct nvd0_display *disp = nvd0_display(dev);
932 struct dcb_entry *dcb;
933 u32 unkn, crtc = 0;
934 int i;
935
Ben Skeggsa36f04c2011-07-06 14:39:23 +1000936 NV_INFO(dev, "PDISP: 1 0x%08x 0x%08x 0x%08x\n", nv_rd32(dev, 0x6101d0),
937 nv_rd32(dev, 0x6101d4), nv_rd32(dev, 0x6109d4));
Ben Skeggs270a5742011-07-05 14:16:05 +1000938
Ben Skeggs3a89cd02011-07-07 10:47:10 +1000939 unkn = nv_rd32(dev, 0x6101d4);
940 if (!unkn) {
941 unkn = nv_rd32(dev, 0x6109d4);
942 crtc = 1;
943 }
944
945 disp->irq.ena = NULL;
946 disp->irq.dis = NULL;
947 disp->irq.crtc = crtc;
948 disp->irq.pclk = nv_rd32(dev, 0x660450 + (disp->irq.crtc * 0x300));
949 disp->irq.pclk /= 1000;
950
951 for (i = 0; i < 8; i++) {
952 u32 mcc = nv_rd32(dev, 0x640180 + (i * 0x20));
953 u32 mcp = nv_rd32(dev, 0x660180 + (i * 0x20));
954
955 if (mcc & (1 << crtc))
956 disp->irq.dis = lookup_dcb(dev, i, mcc);
957
958 if (mcp & (1 << crtc)) {
959 disp->irq.ena = lookup_dcb(dev, i, mcp);
960 switch (disp->irq.ena->type) {
961 case OUTPUT_ANALOG:
962 disp->irq.script = 0x00ff;
963 break;
964 case OUTPUT_TMDS:
965 disp->irq.script = (mcp & 0x00000f00) >> 8;
966 if (disp->irq.pclk >= 165000)
967 disp->irq.script |= 0x0100;
968 break;
969 default:
970 disp->irq.script = 0xbeef;
971 break;
972 }
973 }
974 }
975
976 dcb = disp->irq.dis;
977 if (dcb)
978 nouveau_bios_run_display_table(dev, 0x0000, -1, dcb, crtc);
979
Ben Skeggs270a5742011-07-05 14:16:05 +1000980 nv_wr32(dev, 0x6101d4, 0x00000000);
981 nv_wr32(dev, 0x6109d4, 0x00000000);
982 nv_wr32(dev, 0x6101d0, 0x80000000);
983}
984
985static void
986nvd0_display_unk2_handler(struct drm_device *dev)
987{
Ben Skeggs3a89cd02011-07-07 10:47:10 +1000988 struct nvd0_display *disp = nvd0_display(dev);
989 struct dcb_entry *dcb;
990 int crtc = disp->irq.crtc;
991 int pclk = disp->irq.pclk;
992 int or;
993 u32 tmp;
994
Ben Skeggsa36f04c2011-07-06 14:39:23 +1000995 NV_INFO(dev, "PDISP: 2 0x%08x 0x%08x 0x%08x\n", nv_rd32(dev, 0x6101d0),
996 nv_rd32(dev, 0x6101d4), nv_rd32(dev, 0x6109d4));
Ben Skeggs270a5742011-07-05 14:16:05 +1000997
Ben Skeggs3a89cd02011-07-07 10:47:10 +1000998 dcb = disp->irq.dis;
999 disp->irq.dis = NULL;
1000 if (dcb)
1001 nouveau_bios_run_display_table(dev, 0x0000, -2, dcb, crtc);
1002
1003 nv50_crtc_set_clock(dev, crtc, pclk);
1004
1005 dcb = disp->irq.ena;
1006 if (!dcb)
1007 goto ack;
1008 or = ffs(dcb->or) - 1;
1009
1010 nouveau_bios_run_display_table(dev, disp->irq.script, pclk, dcb, crtc);
1011
1012 nv_wr32(dev, 0x612200 + (crtc * 0x800), 0x00000000);
1013 switch (dcb->type) {
1014 case OUTPUT_ANALOG:
1015 nv_wr32(dev, 0x612280 + (or * 0x800), 0x00000000);
1016 break;
1017 case OUTPUT_TMDS:
1018 if (disp->irq.pclk >= 165000)
1019 tmp = 0x00000101;
1020 else
1021 tmp = 0x00000000;
1022
1023 nv_mask(dev, 0x612300 + (or * 0x800), 0x00000707, tmp);
1024 break;
1025 default:
1026 break;
1027 }
1028
1029ack:
Ben Skeggs270a5742011-07-05 14:16:05 +10001030 nv_wr32(dev, 0x6101d4, 0x00000000);
1031 nv_wr32(dev, 0x6109d4, 0x00000000);
1032 nv_wr32(dev, 0x6101d0, 0x80000000);
1033}
1034
1035static void
1036nvd0_display_unk4_handler(struct drm_device *dev)
1037{
Ben Skeggs3a89cd02011-07-07 10:47:10 +10001038 struct nvd0_display *disp = nvd0_display(dev);
1039 struct dcb_entry *dcb;
1040 int crtc = disp->irq.crtc;
1041 int pclk = disp->irq.pclk;
1042
Ben Skeggsa36f04c2011-07-06 14:39:23 +10001043 NV_INFO(dev, "PDISP: 4 0x%08x 0x%08x 0x%08x\n", nv_rd32(dev, 0x6101d0),
1044 nv_rd32(dev, 0x6101d4), nv_rd32(dev, 0x6109d4));
Ben Skeggs270a5742011-07-05 14:16:05 +10001045
Ben Skeggs3a89cd02011-07-07 10:47:10 +10001046 dcb = disp->irq.ena;
1047 disp->irq.ena = NULL;
1048 if (!dcb)
1049 goto ack;
1050
1051 nouveau_bios_run_display_table(dev, disp->irq.script, pclk, dcb, crtc);
1052
1053ack:
Ben Skeggs270a5742011-07-05 14:16:05 +10001054 nv_wr32(dev, 0x6101d4, 0x00000000);
1055 nv_wr32(dev, 0x6109d4, 0x00000000);
1056 nv_wr32(dev, 0x6101d0, 0x80000000);
1057}
1058
1059static void
Ben Skeggs46005222011-07-05 11:01:13 +10001060nvd0_display_intr(struct drm_device *dev)
1061{
1062 u32 intr = nv_rd32(dev, 0x610088);
1063
1064 if (intr & 0x00000002) {
1065 u32 stat = nv_rd32(dev, 0x61009c);
1066 int chid = ffs(stat) - 1;
1067 if (chid >= 0) {
1068 u32 mthd = nv_rd32(dev, 0x6101f0 + (chid * 12));
1069 u32 data = nv_rd32(dev, 0x6101f4 + (chid * 12));
1070 u32 unkn = nv_rd32(dev, 0x6101f8 + (chid * 12));
1071
1072 NV_INFO(dev, "EvoCh: chid %d mthd 0x%04x data 0x%08x "
1073 "0x%08x 0x%08x\n",
1074 chid, (mthd & 0x0000ffc), data, mthd, unkn);
1075 nv_wr32(dev, 0x61009c, (1 << chid));
1076 nv_wr32(dev, 0x6101f0 + (chid * 12), 0x90000000);
1077 }
1078
1079 intr &= ~0x00000002;
1080 }
1081
Ben Skeggs270a5742011-07-05 14:16:05 +10001082 if (intr & 0x00100000) {
1083 u32 stat = nv_rd32(dev, 0x6100ac);
1084
1085 if (stat & 0x00000007) {
1086 nv_wr32(dev, 0x6100ac, (stat & 0x00000007));
1087
1088 if (stat & 0x00000001)
1089 nvd0_display_unk1_handler(dev);
1090 if (stat & 0x00000002)
1091 nvd0_display_unk2_handler(dev);
1092 if (stat & 0x00000004)
1093 nvd0_display_unk4_handler(dev);
1094 stat &= ~0x00000007;
1095 }
1096
1097 if (stat) {
1098 NV_INFO(dev, "PDISP: unknown intr24 0x%08x\n", stat);
1099 nv_wr32(dev, 0x6100ac, stat);
1100 }
1101
1102 intr &= ~0x00100000;
1103 }
1104
Ben Skeggs46005222011-07-05 11:01:13 +10001105 if (intr & 0x01000000) {
1106 u32 stat = nv_rd32(dev, 0x6100bc);
1107 nv_wr32(dev, 0x6100bc, stat);
1108 intr &= ~0x01000000;
1109 }
1110
1111 if (intr & 0x02000000) {
1112 u32 stat = nv_rd32(dev, 0x6108bc);
1113 nv_wr32(dev, 0x6108bc, stat);
1114 intr &= ~0x02000000;
1115 }
1116
1117 if (intr)
1118 NV_INFO(dev, "PDISP: unknown intr 0x%08x\n", intr);
1119}
Ben Skeggs26f6d882011-07-04 16:25:18 +10001120
1121/******************************************************************************
1122 * Init
1123 *****************************************************************************/
1124static void
1125nvd0_display_fini(struct drm_device *dev)
1126{
1127 int i;
1128
1129 /* fini cursors */
1130 for (i = 14; i >= 13; i--) {
1131 if (!(nv_rd32(dev, 0x610490 + (i * 0x10)) & 0x00000001))
1132 continue;
1133
1134 nv_mask(dev, 0x610490 + (i * 0x10), 0x00000001, 0x00000000);
1135 nv_wait(dev, 0x610490 + (i * 0x10), 0x00010000, 0x00000000);
1136 nv_mask(dev, 0x610090, 1 << i, 0x00000000);
1137 nv_mask(dev, 0x6100a0, 1 << i, 0x00000000);
1138 }
1139
1140 /* fini master */
1141 if (nv_rd32(dev, 0x610490) & 0x00000010) {
1142 nv_mask(dev, 0x610490, 0x00000010, 0x00000000);
1143 nv_mask(dev, 0x610490, 0x00000003, 0x00000000);
1144 nv_wait(dev, 0x610490, 0x80000000, 0x00000000);
1145 nv_mask(dev, 0x610090, 0x00000001, 0x00000000);
1146 nv_mask(dev, 0x6100a0, 0x00000001, 0x00000000);
1147 }
1148}
1149
1150int
1151nvd0_display_init(struct drm_device *dev)
1152{
1153 struct nvd0_display *disp = nvd0_display(dev);
Ben Skeggsefd272a2011-07-05 11:58:58 +10001154 u32 *push;
Ben Skeggs26f6d882011-07-04 16:25:18 +10001155 int i;
1156
1157 if (nv_rd32(dev, 0x6100ac) & 0x00000100) {
1158 nv_wr32(dev, 0x6100ac, 0x00000100);
1159 nv_mask(dev, 0x6194e8, 0x00000001, 0x00000000);
1160 if (!nv_wait(dev, 0x6194e8, 0x00000002, 0x00000000)) {
1161 NV_ERROR(dev, "PDISP: 0x6194e8 0x%08x\n",
1162 nv_rd32(dev, 0x6194e8));
1163 return -EBUSY;
1164 }
1165 }
1166
Ben Skeggsa36f04c2011-07-06 14:39:23 +10001167 /* nfi what these are exactly, i do know that SOR_MODE_CTRL won't
1168 * work at all unless you do the SOR part below.
1169 */
1170 for (i = 0; i < 3; i++) {
1171 u32 dac = nv_rd32(dev, 0x61a000 + (i * 0x800));
1172 nv_wr32(dev, 0x6101c0 + (i * 0x800), dac);
1173 }
1174
1175 for (i = 0; i < 4; i++) {
1176 u32 sor = nv_rd32(dev, 0x61c000 + (i * 0x800));
1177 nv_wr32(dev, 0x6301c4 + (i * 0x800), sor);
1178 }
1179
1180 for (i = 0; i < 2; i++) {
1181 u32 crtc0 = nv_rd32(dev, 0x616104 + (i * 0x800));
1182 u32 crtc1 = nv_rd32(dev, 0x616108 + (i * 0x800));
1183 u32 crtc2 = nv_rd32(dev, 0x61610c + (i * 0x800));
1184 nv_wr32(dev, 0x6101b4 + (i * 0x800), crtc0);
1185 nv_wr32(dev, 0x6101b8 + (i * 0x800), crtc1);
1186 nv_wr32(dev, 0x6101bc + (i * 0x800), crtc2);
1187 }
1188
1189 /* point at our hash table / objects, enable interrupts */
Ben Skeggs26f6d882011-07-04 16:25:18 +10001190 nv_wr32(dev, 0x610010, (disp->mem->vinst >> 8) | 9);
Ben Skeggs270a5742011-07-05 14:16:05 +10001191 nv_mask(dev, 0x6100b0, 0x00000307, 0x00000307);
Ben Skeggs26f6d882011-07-04 16:25:18 +10001192
1193 /* init master */
Ben Skeggs51beb422011-07-05 10:33:08 +10001194 nv_wr32(dev, 0x610494, (disp->evo[0].handle >> 8) | 3);
Ben Skeggs26f6d882011-07-04 16:25:18 +10001195 nv_wr32(dev, 0x610498, 0x00010000);
Ben Skeggsefd272a2011-07-05 11:58:58 +10001196 nv_wr32(dev, 0x61049c, 0x00000001);
Ben Skeggs26f6d882011-07-04 16:25:18 +10001197 nv_mask(dev, 0x610490, 0x00000010, 0x00000010);
1198 nv_wr32(dev, 0x640000, 0x00000000);
1199 nv_wr32(dev, 0x610490, 0x01000013);
1200 if (!nv_wait(dev, 0x610490, 0x80000000, 0x00000000)) {
1201 NV_ERROR(dev, "PDISP: master 0x%08x\n",
1202 nv_rd32(dev, 0x610490));
1203 return -EBUSY;
1204 }
1205 nv_mask(dev, 0x610090, 0x00000001, 0x00000001);
1206 nv_mask(dev, 0x6100a0, 0x00000001, 0x00000001);
1207
1208 /* init cursors */
1209 for (i = 13; i <= 14; i++) {
1210 nv_wr32(dev, 0x610490 + (i * 0x10), 0x00000001);
1211 if (!nv_wait(dev, 0x610490 + (i * 0x10), 0x00010000, 0x00010000)) {
1212 NV_ERROR(dev, "PDISP: curs%d 0x%08x\n", i,
1213 nv_rd32(dev, 0x610490 + (i * 0x10)));
1214 return -EBUSY;
1215 }
1216
1217 nv_mask(dev, 0x610090, 1 << i, 1 << i);
1218 nv_mask(dev, 0x6100a0, 1 << i, 1 << i);
1219 }
1220
Ben Skeggsefd272a2011-07-05 11:58:58 +10001221 push = evo_wait(dev, 0, 32);
1222 if (!push)
1223 return -EBUSY;
1224 evo_mthd(push, 0x0088, 1);
1225 evo_data(push, MEM_SYNC);
1226 evo_mthd(push, 0x0084, 1);
1227 evo_data(push, 0x00000000);
1228 evo_mthd(push, 0x0084, 1);
1229 evo_data(push, 0x80000000);
1230 evo_mthd(push, 0x008c, 1);
1231 evo_data(push, 0x00000000);
1232 evo_kick(push, dev, 0);
1233
Ben Skeggs26f6d882011-07-04 16:25:18 +10001234 return 0;
1235}
1236
1237void
1238nvd0_display_destroy(struct drm_device *dev)
1239{
1240 struct drm_nouveau_private *dev_priv = dev->dev_private;
1241 struct nvd0_display *disp = nvd0_display(dev);
Ben Skeggs51beb422011-07-05 10:33:08 +10001242 struct pci_dev *pdev = dev->pdev;
Ben Skeggs26f6d882011-07-04 16:25:18 +10001243
1244 nvd0_display_fini(dev);
1245
Ben Skeggs51beb422011-07-05 10:33:08 +10001246 pci_free_consistent(pdev, PAGE_SIZE, disp->evo[0].ptr, disp->evo[0].handle);
Ben Skeggs26f6d882011-07-04 16:25:18 +10001247 nouveau_gpuobj_ref(NULL, &disp->mem);
Ben Skeggs46005222011-07-05 11:01:13 +10001248 nouveau_irq_unregister(dev, 26);
Ben Skeggs51beb422011-07-05 10:33:08 +10001249
1250 dev_priv->engine.display.priv = NULL;
Ben Skeggs26f6d882011-07-04 16:25:18 +10001251 kfree(disp);
1252}
1253
1254int
1255nvd0_display_create(struct drm_device *dev)
1256{
1257 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggsefd272a2011-07-05 11:58:58 +10001258 struct nouveau_instmem_engine *pinstmem = &dev_priv->engine.instmem;
Ben Skeggs83fc0832011-07-05 13:08:40 +10001259 struct dcb_table *dcb = &dev_priv->vbios.dcb;
1260 struct drm_connector *connector, *tmp;
Ben Skeggs51beb422011-07-05 10:33:08 +10001261 struct pci_dev *pdev = dev->pdev;
Ben Skeggs26f6d882011-07-04 16:25:18 +10001262 struct nvd0_display *disp;
Ben Skeggs83fc0832011-07-05 13:08:40 +10001263 struct dcb_entry *dcbe;
1264 int ret, i;
Ben Skeggs26f6d882011-07-04 16:25:18 +10001265
1266 disp = kzalloc(sizeof(*disp), GFP_KERNEL);
1267 if (!disp)
1268 return -ENOMEM;
1269 dev_priv->engine.display.priv = disp;
1270
Ben Skeggs438d99e2011-07-05 16:48:06 +10001271 /* create crtc objects to represent the hw heads */
1272 for (i = 0; i < 2; i++) {
1273 ret = nvd0_crtc_create(dev, i);
1274 if (ret)
1275 goto out;
1276 }
1277
Ben Skeggs83fc0832011-07-05 13:08:40 +10001278 /* create encoder/connector objects based on VBIOS DCB table */
1279 for (i = 0, dcbe = &dcb->entry[0]; i < dcb->entries; i++, dcbe++) {
1280 connector = nouveau_connector_create(dev, dcbe->connector);
1281 if (IS_ERR(connector))
1282 continue;
1283
1284 if (dcbe->location != DCB_LOC_ON_CHIP) {
1285 NV_WARN(dev, "skipping off-chip encoder %d/%d\n",
1286 dcbe->type, ffs(dcbe->or) - 1);
1287 continue;
1288 }
1289
1290 switch (dcbe->type) {
1291 case OUTPUT_TMDS:
1292 nvd0_sor_create(connector, dcbe);
1293 break;
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001294 case OUTPUT_ANALOG:
1295 nvd0_dac_create(connector, dcbe);
1296 break;
Ben Skeggs83fc0832011-07-05 13:08:40 +10001297 default:
1298 NV_WARN(dev, "skipping unsupported encoder %d/%d\n",
1299 dcbe->type, ffs(dcbe->or) - 1);
1300 continue;
1301 }
1302 }
1303
1304 /* cull any connectors we created that don't have an encoder */
1305 list_for_each_entry_safe(connector, tmp, &dev->mode_config.connector_list, head) {
1306 if (connector->encoder_ids[0])
1307 continue;
1308
1309 NV_WARN(dev, "%s has no encoders, removing\n",
1310 drm_get_connector_name(connector));
1311 connector->funcs->destroy(connector);
1312 }
1313
Ben Skeggs46005222011-07-05 11:01:13 +10001314 /* setup interrupt handling */
1315 nouveau_irq_register(dev, 26, nvd0_display_intr);
1316
Ben Skeggs51beb422011-07-05 10:33:08 +10001317 /* hash table and dma objects for the memory areas we care about */
Ben Skeggsefd272a2011-07-05 11:58:58 +10001318 ret = nouveau_gpuobj_new(dev, NULL, 0x4000, 0x10000,
1319 NVOBJ_FLAG_ZERO_ALLOC, &disp->mem);
Ben Skeggs26f6d882011-07-04 16:25:18 +10001320 if (ret)
1321 goto out;
1322
Ben Skeggsefd272a2011-07-05 11:58:58 +10001323 nv_wo32(disp->mem, 0x1000, 0x00000049);
1324 nv_wo32(disp->mem, 0x1004, (disp->mem->vinst + 0x2000) >> 8);
1325 nv_wo32(disp->mem, 0x1008, (disp->mem->vinst + 0x2fff) >> 8);
1326 nv_wo32(disp->mem, 0x100c, 0x00000000);
1327 nv_wo32(disp->mem, 0x1010, 0x00000000);
1328 nv_wo32(disp->mem, 0x1014, 0x00000000);
1329 nv_wo32(disp->mem, 0x0000, MEM_SYNC);
1330 nv_wo32(disp->mem, 0x0004, (0x1000 << 9) | 0x00000001);
1331
Ben Skeggsc0cc92a2011-07-06 11:40:45 +10001332 nv_wo32(disp->mem, 0x1020, 0x00000049);
Ben Skeggsefd272a2011-07-05 11:58:58 +10001333 nv_wo32(disp->mem, 0x1024, 0x00000000);
1334 nv_wo32(disp->mem, 0x1028, (dev_priv->vram_size - 1) >> 8);
1335 nv_wo32(disp->mem, 0x102c, 0x00000000);
1336 nv_wo32(disp->mem, 0x1030, 0x00000000);
1337 nv_wo32(disp->mem, 0x1034, 0x00000000);
1338 nv_wo32(disp->mem, 0x0008, MEM_VRAM);
1339 nv_wo32(disp->mem, 0x000c, (0x1020 << 9) | 0x00000001);
1340
Ben Skeggsc0cc92a2011-07-06 11:40:45 +10001341 nv_wo32(disp->mem, 0x1040, 0x00000009);
1342 nv_wo32(disp->mem, 0x1044, 0x00000000);
1343 nv_wo32(disp->mem, 0x1048, (dev_priv->vram_size - 1) >> 8);
1344 nv_wo32(disp->mem, 0x104c, 0x00000000);
1345 nv_wo32(disp->mem, 0x1050, 0x00000000);
1346 nv_wo32(disp->mem, 0x1054, 0x00000000);
1347 nv_wo32(disp->mem, 0x0010, NvEvoVRAM_LP);
1348 nv_wo32(disp->mem, 0x0014, (0x1040 << 9) | 0x00000001);
1349
1350 nv_wo32(disp->mem, 0x1060, 0x0fe00009);
1351 nv_wo32(disp->mem, 0x1064, 0x00000000);
1352 nv_wo32(disp->mem, 0x1068, (dev_priv->vram_size - 1) >> 8);
1353 nv_wo32(disp->mem, 0x106c, 0x00000000);
1354 nv_wo32(disp->mem, 0x1070, 0x00000000);
1355 nv_wo32(disp->mem, 0x1074, 0x00000000);
1356 nv_wo32(disp->mem, 0x0018, NvEvoFB32);
1357 nv_wo32(disp->mem, 0x001c, (0x1060 << 9) | 0x00000001);
1358
Ben Skeggsefd272a2011-07-05 11:58:58 +10001359 pinstmem->flush(dev);
1360
Ben Skeggs51beb422011-07-05 10:33:08 +10001361 /* push buffers for evo channels */
1362 disp->evo[0].ptr =
1363 pci_alloc_consistent(pdev, PAGE_SIZE, &disp->evo[0].handle);
1364 if (!disp->evo[0].ptr) {
1365 ret = -ENOMEM;
1366 goto out;
1367 }
1368
Ben Skeggs26f6d882011-07-04 16:25:18 +10001369 ret = nvd0_display_init(dev);
1370 if (ret)
1371 goto out;
1372
1373out:
1374 if (ret)
1375 nvd0_display_destroy(dev);
1376 return ret;
1377}