blob: eb8b36714fa1c2e481ae67150626f2cf6ade3847 [file] [log] [blame]
Ben Skeggs56d237d2014-05-19 14:54:33 +10001/*
Ben Skeggs26f6d882011-07-04 16:25:18 +10002 * 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
David Howells760285e2012-10-02 18:01:07 +010027#include <drm/drmP.h>
28#include <drm/drm_crtc_helper.h>
Ben Skeggs48743222014-05-31 01:48:06 +100029#include <drm/drm_dp_helper.h>
Ben Skeggs26f6d882011-07-04 16:25:18 +100030
Ben Skeggsfdb751e2014-08-10 04:10:23 +100031#include <nvif/class.h>
32
Ben Skeggs77145f12012-07-31 16:16:21 +100033#include "nouveau_drm.h"
34#include "nouveau_dma.h"
35#include "nouveau_gem.h"
Ben Skeggs26f6d882011-07-04 16:25:18 +100036#include "nouveau_connector.h"
37#include "nouveau_encoder.h"
38#include "nouveau_crtc.h"
Ben Skeggsf589be82012-07-22 11:55:54 +100039#include "nouveau_fence.h"
Ben Skeggs3a89cd02011-07-07 10:47:10 +100040#include "nv50_display.h"
Ben Skeggs26f6d882011-07-04 16:25:18 +100041
Ben Skeggs8a464382011-11-12 23:52:07 +100042#define EVO_DMA_NR 9
43
Ben Skeggsbdb8c212011-11-12 01:30:24 +100044#define EVO_MASTER (0x00)
Ben Skeggsa63a97e2011-11-16 15:22:34 +100045#define EVO_FLIP(c) (0x01 + (c))
Ben Skeggs8a464382011-11-12 23:52:07 +100046#define EVO_OVLY(c) (0x05 + (c))
47#define EVO_OIMM(c) (0x09 + (c))
Ben Skeggsbdb8c212011-11-12 01:30:24 +100048#define EVO_CURS(c) (0x0d + (c))
49
Ben Skeggs816af2f2011-11-16 15:48:48 +100050/* offsets in shared sync bo of various structures */
51#define EVO_SYNC(c, o) ((c) * 0x0100 + (o))
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +100052#define EVO_MAST_NTFY EVO_SYNC( 0, 0x00)
53#define EVO_FLIP_SEM0(c) EVO_SYNC((c) + 1, 0x00)
54#define EVO_FLIP_SEM1(c) EVO_SYNC((c) + 1, 0x10)
Ben Skeggs816af2f2011-11-16 15:48:48 +100055
Ben Skeggsb5a794b2012-10-16 14:18:32 +100056/******************************************************************************
57 * EVO channel
58 *****************************************************************************/
59
Ben Skeggse225f442012-11-21 14:40:21 +100060struct nv50_chan {
Ben Skeggs0ad72862014-08-10 04:10:22 +100061 struct nvif_object user;
Ben Skeggsb5a794b2012-10-16 14:18:32 +100062};
63
64static int
Ben Skeggs410f3ec2014-08-10 04:10:25 +100065nv50_chan_create(struct nvif_object *disp, const u32 *oclass, u8 head,
Ben Skeggse225f442012-11-21 14:40:21 +100066 void *data, u32 size, struct nv50_chan *chan)
Ben Skeggsb5a794b2012-10-16 14:18:32 +100067{
Ben Skeggs410f3ec2014-08-10 04:10:25 +100068 while (oclass[0]) {
69 int ret = nvif_object_init(disp, NULL, (oclass[0] << 16) | head,
70 oclass[0], data, size,
71 &chan->user);
Ben Skeggsb76f1522014-08-10 04:10:28 +100072 if (oclass++, ret == 0) {
73 nvif_object_map(&chan->user);
Ben Skeggs410f3ec2014-08-10 04:10:25 +100074 return ret;
Ben Skeggsb76f1522014-08-10 04:10:28 +100075 }
Ben Skeggs410f3ec2014-08-10 04:10:25 +100076 }
77 return -ENOSYS;
Ben Skeggsb5a794b2012-10-16 14:18:32 +100078}
79
80static void
Ben Skeggs0ad72862014-08-10 04:10:22 +100081nv50_chan_destroy(struct nv50_chan *chan)
Ben Skeggsb5a794b2012-10-16 14:18:32 +100082{
Ben Skeggs0ad72862014-08-10 04:10:22 +100083 nvif_object_fini(&chan->user);
Ben Skeggsb5a794b2012-10-16 14:18:32 +100084}
85
86/******************************************************************************
87 * PIO EVO channel
88 *****************************************************************************/
89
Ben Skeggse225f442012-11-21 14:40:21 +100090struct nv50_pioc {
91 struct nv50_chan base;
Ben Skeggsb5a794b2012-10-16 14:18:32 +100092};
93
94static void
Ben Skeggs0ad72862014-08-10 04:10:22 +100095nv50_pioc_destroy(struct nv50_pioc *pioc)
Ben Skeggsb5a794b2012-10-16 14:18:32 +100096{
Ben Skeggs0ad72862014-08-10 04:10:22 +100097 nv50_chan_destroy(&pioc->base);
Ben Skeggsb5a794b2012-10-16 14:18:32 +100098}
99
100static int
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000101nv50_pioc_create(struct nvif_object *disp, const u32 *oclass, u8 head,
Ben Skeggse225f442012-11-21 14:40:21 +1000102 void *data, u32 size, struct nv50_pioc *pioc)
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000103{
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000104 return nv50_chan_create(disp, oclass, head, data, size, &pioc->base);
105}
106
107/******************************************************************************
108 * Cursor Immediate
109 *****************************************************************************/
110
111struct nv50_curs {
112 struct nv50_pioc base;
113};
114
115static int
116nv50_curs_create(struct nvif_object *disp, int head, struct nv50_curs *curs)
117{
Ben Skeggs648d4df2014-08-10 04:10:27 +1000118 struct nv50_disp_cursor_v0 args = {
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000119 .head = head,
120 };
121 static const u32 oclass[] = {
Ben Skeggs648d4df2014-08-10 04:10:27 +1000122 GK104_DISP_CURSOR,
123 GF110_DISP_CURSOR,
124 GT214_DISP_CURSOR,
125 G82_DISP_CURSOR,
126 NV50_DISP_CURSOR,
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000127 0
128 };
129
130 return nv50_pioc_create(disp, oclass, head, &args, sizeof(args),
131 &curs->base);
132}
133
134/******************************************************************************
135 * Overlay Immediate
136 *****************************************************************************/
137
138struct nv50_oimm {
139 struct nv50_pioc base;
140};
141
142static int
143nv50_oimm_create(struct nvif_object *disp, int head, struct nv50_oimm *oimm)
144{
Ben Skeggs648d4df2014-08-10 04:10:27 +1000145 struct nv50_disp_cursor_v0 args = {
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000146 .head = head,
147 };
148 static const u32 oclass[] = {
Ben Skeggs648d4df2014-08-10 04:10:27 +1000149 GK104_DISP_OVERLAY,
150 GF110_DISP_OVERLAY,
151 GT214_DISP_OVERLAY,
152 G82_DISP_OVERLAY,
153 NV50_DISP_OVERLAY,
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000154 0
155 };
156
157 return nv50_pioc_create(disp, oclass, head, &args, sizeof(args),
158 &oimm->base);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000159}
160
161/******************************************************************************
162 * DMA EVO channel
163 *****************************************************************************/
164
Ben Skeggse225f442012-11-21 14:40:21 +1000165struct nv50_dmac {
166 struct nv50_chan base;
Ben Skeggs3376ee32011-11-12 14:28:12 +1000167 dma_addr_t handle;
168 u32 *ptr;
Daniel Vetter59ad1462012-12-02 14:49:44 +0100169
Ben Skeggs0ad72862014-08-10 04:10:22 +1000170 struct nvif_object sync;
171 struct nvif_object vram;
172
Daniel Vetter59ad1462012-12-02 14:49:44 +0100173 /* Protects against concurrent pushbuf access to this channel, lock is
174 * grabbed by evo_wait (if the pushbuf reservation is successful) and
175 * dropped again by evo_kick. */
176 struct mutex lock;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000177};
178
179static void
Ben Skeggs0ad72862014-08-10 04:10:22 +1000180nv50_dmac_destroy(struct nv50_dmac *dmac, struct nvif_object *disp)
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000181{
Ben Skeggs0ad72862014-08-10 04:10:22 +1000182 nvif_object_fini(&dmac->vram);
183 nvif_object_fini(&dmac->sync);
184
185 nv50_chan_destroy(&dmac->base);
186
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000187 if (dmac->ptr) {
Ben Skeggs0ad72862014-08-10 04:10:22 +1000188 struct pci_dev *pdev = nvkm_device(nvif_device(disp))->pdev;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000189 pci_free_consistent(pdev, PAGE_SIZE, dmac->ptr, dmac->handle);
190 }
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000191}
192
193static int
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000194nv50_dmac_create(struct nvif_object *disp, const u32 *oclass, u8 head,
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000195 void *data, u32 size, u64 syncbuf,
Ben Skeggse225f442012-11-21 14:40:21 +1000196 struct nv50_dmac *dmac)
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000197{
Ben Skeggsf392ec42014-08-10 04:10:28 +1000198 struct nvif_device *device = nvif_device(disp);
Ben Skeggs648d4df2014-08-10 04:10:27 +1000199 struct nv50_disp_core_channel_dma_v0 *args = data;
Ben Skeggs0ad72862014-08-10 04:10:22 +1000200 struct nvif_object pushbuf;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000201 int ret;
202
Daniel Vetter59ad1462012-12-02 14:49:44 +0100203 mutex_init(&dmac->lock);
204
Ben Skeggsf392ec42014-08-10 04:10:28 +1000205 dmac->ptr = pci_alloc_consistent(nvkm_device(device)->pdev,
Ben Skeggs0ad72862014-08-10 04:10:22 +1000206 PAGE_SIZE, &dmac->handle);
Ben Skeggs47057302012-11-16 13:58:48 +1000207 if (!dmac->ptr)
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000208 return -ENOMEM;
209
Ben Skeggsf392ec42014-08-10 04:10:28 +1000210 ret = nvif_object_init(nvif_object(device), NULL,
Ben Skeggs648d4df2014-08-10 04:10:27 +1000211 args->pushbuf, NV_DMA_FROM_MEMORY,
Ben Skeggs4acfd702014-08-10 04:10:24 +1000212 &(struct nv_dma_v0) {
213 .target = NV_DMA_V0_TARGET_PCI_US,
214 .access = NV_DMA_V0_ACCESS_RD,
Ben Skeggs47057302012-11-16 13:58:48 +1000215 .start = dmac->handle + 0x0000,
216 .limit = dmac->handle + 0x0fff,
Ben Skeggs4acfd702014-08-10 04:10:24 +1000217 }, sizeof(struct nv_dma_v0), &pushbuf);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000218 if (ret)
219 return ret;
220
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000221 ret = nv50_chan_create(disp, oclass, head, data, size, &dmac->base);
Ben Skeggs0ad72862014-08-10 04:10:22 +1000222 nvif_object_fini(&pushbuf);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000223 if (ret)
224 return ret;
225
Ben Skeggsf45f55c2014-08-10 04:10:23 +1000226 ret = nvif_object_init(&dmac->base.user, NULL, 0xf0000000,
Ben Skeggs4acfd702014-08-10 04:10:24 +1000227 NV_DMA_IN_MEMORY,
228 &(struct nv_dma_v0) {
229 .target = NV_DMA_V0_TARGET_VRAM,
230 .access = NV_DMA_V0_ACCESS_RDWR,
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000231 .start = syncbuf + 0x0000,
232 .limit = syncbuf + 0x0fff,
Ben Skeggs4acfd702014-08-10 04:10:24 +1000233 }, sizeof(struct nv_dma_v0),
Ben Skeggs0ad72862014-08-10 04:10:22 +1000234 &dmac->sync);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000235 if (ret)
Ben Skeggs47057302012-11-16 13:58:48 +1000236 return ret;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000237
Ben Skeggsf45f55c2014-08-10 04:10:23 +1000238 ret = nvif_object_init(&dmac->base.user, NULL, 0xf0000001,
Ben Skeggs4acfd702014-08-10 04:10:24 +1000239 NV_DMA_IN_MEMORY,
240 &(struct nv_dma_v0) {
241 .target = NV_DMA_V0_TARGET_VRAM,
242 .access = NV_DMA_V0_ACCESS_RDWR,
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000243 .start = 0,
Ben Skeggsf392ec42014-08-10 04:10:28 +1000244 .limit = device->info.ram_user - 1,
Ben Skeggs4acfd702014-08-10 04:10:24 +1000245 }, sizeof(struct nv_dma_v0),
Ben Skeggs0ad72862014-08-10 04:10:22 +1000246 &dmac->vram);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000247 if (ret)
Ben Skeggs47057302012-11-16 13:58:48 +1000248 return ret;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000249
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000250 return ret;
251}
252
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000253/******************************************************************************
254 * Core
255 *****************************************************************************/
256
Ben Skeggse225f442012-11-21 14:40:21 +1000257struct nv50_mast {
258 struct nv50_dmac base;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000259};
260
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000261static int
262nv50_core_create(struct nvif_object *disp, u64 syncbuf, struct nv50_mast *core)
263{
Ben Skeggs648d4df2014-08-10 04:10:27 +1000264 struct nv50_disp_core_channel_dma_v0 args = {
265 .pushbuf = 0xb0007d00,
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000266 };
267 static const u32 oclass[] = {
Ben Skeggs648d4df2014-08-10 04:10:27 +1000268 GM107_DISP_CORE_CHANNEL_DMA,
269 GK110_DISP_CORE_CHANNEL_DMA,
270 GK104_DISP_CORE_CHANNEL_DMA,
271 GF110_DISP_CORE_CHANNEL_DMA,
272 GT214_DISP_CORE_CHANNEL_DMA,
273 GT206_DISP_CORE_CHANNEL_DMA,
274 GT200_DISP_CORE_CHANNEL_DMA,
275 G82_DISP_CORE_CHANNEL_DMA,
276 NV50_DISP_CORE_CHANNEL_DMA,
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000277 0
278 };
279
280 return nv50_dmac_create(disp, oclass, 0, &args, sizeof(args), syncbuf,
281 &core->base);
282}
283
284/******************************************************************************
285 * Base
286 *****************************************************************************/
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000287
Ben Skeggse225f442012-11-21 14:40:21 +1000288struct nv50_sync {
289 struct nv50_dmac base;
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000290 u32 addr;
291 u32 data;
Ben Skeggs3376ee32011-11-12 14:28:12 +1000292};
293
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000294static int
295nv50_base_create(struct nvif_object *disp, int head, u64 syncbuf,
296 struct nv50_sync *base)
297{
Ben Skeggs648d4df2014-08-10 04:10:27 +1000298 struct nv50_disp_base_channel_dma_v0 args = {
299 .pushbuf = 0xb0007c00 | head,
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000300 .head = head,
301 };
302 static const u32 oclass[] = {
Ben Skeggs648d4df2014-08-10 04:10:27 +1000303 GK110_DISP_BASE_CHANNEL_DMA,
304 GK104_DISP_BASE_CHANNEL_DMA,
305 GF110_DISP_BASE_CHANNEL_DMA,
306 GT214_DISP_BASE_CHANNEL_DMA,
307 GT200_DISP_BASE_CHANNEL_DMA,
308 G82_DISP_BASE_CHANNEL_DMA,
309 NV50_DISP_BASE_CHANNEL_DMA,
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000310 0
311 };
312
313 return nv50_dmac_create(disp, oclass, head, &args, sizeof(args),
314 syncbuf, &base->base);
315}
316
317/******************************************************************************
318 * Overlay
319 *****************************************************************************/
320
Ben Skeggse225f442012-11-21 14:40:21 +1000321struct nv50_ovly {
322 struct nv50_dmac base;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000323};
Ben Skeggsf20ce962011-07-08 13:17:01 +1000324
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000325static int
326nv50_ovly_create(struct nvif_object *disp, int head, u64 syncbuf,
327 struct nv50_ovly *ovly)
328{
Ben Skeggs648d4df2014-08-10 04:10:27 +1000329 struct nv50_disp_overlay_channel_dma_v0 args = {
330 .pushbuf = 0xb0007e00 | head,
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000331 .head = head,
332 };
333 static const u32 oclass[] = {
Ben Skeggs648d4df2014-08-10 04:10:27 +1000334 GK104_DISP_OVERLAY_CONTROL_DMA,
335 GF110_DISP_OVERLAY_CONTROL_DMA,
336 GT214_DISP_OVERLAY_CHANNEL_DMA,
337 GT200_DISP_OVERLAY_CHANNEL_DMA,
338 G82_DISP_OVERLAY_CHANNEL_DMA,
339 NV50_DISP_OVERLAY_CHANNEL_DMA,
Ben Skeggs410f3ec2014-08-10 04:10:25 +1000340 0
341 };
342
343 return nv50_dmac_create(disp, oclass, head, &args, sizeof(args),
344 syncbuf, &ovly->base);
345}
Ben Skeggs26f6d882011-07-04 16:25:18 +1000346
Ben Skeggse225f442012-11-21 14:40:21 +1000347struct nv50_head {
Ben Skeggsdd0e3d52012-10-16 14:00:31 +1000348 struct nouveau_crtc base;
Ben Skeggs8dda53f2013-07-09 12:35:55 +1000349 struct nouveau_bo *image;
Ben Skeggse225f442012-11-21 14:40:21 +1000350 struct nv50_curs curs;
351 struct nv50_sync sync;
352 struct nv50_ovly ovly;
353 struct nv50_oimm oimm;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000354};
355
Ben Skeggse225f442012-11-21 14:40:21 +1000356#define nv50_head(c) ((struct nv50_head *)nouveau_crtc(c))
357#define nv50_curs(c) (&nv50_head(c)->curs)
358#define nv50_sync(c) (&nv50_head(c)->sync)
359#define nv50_ovly(c) (&nv50_head(c)->ovly)
360#define nv50_oimm(c) (&nv50_head(c)->oimm)
361#define nv50_chan(c) (&(c)->base.base)
Ben Skeggs0ad72862014-08-10 04:10:22 +1000362#define nv50_vers(c) nv50_chan(c)->user.oclass
363
364struct nv50_fbdma {
365 struct list_head head;
366 struct nvif_object core;
367 struct nvif_object base[4];
368};
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000369
Ben Skeggse225f442012-11-21 14:40:21 +1000370struct nv50_disp {
Ben Skeggs0ad72862014-08-10 04:10:22 +1000371 struct nvif_object *disp;
Ben Skeggse225f442012-11-21 14:40:21 +1000372 struct nv50_mast mast;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000373
Ben Skeggs8a423642014-08-10 04:10:19 +1000374 struct list_head fbdma;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000375
376 struct nouveau_bo *sync;
Ben Skeggsdd0e3d52012-10-16 14:00:31 +1000377};
378
Ben Skeggse225f442012-11-21 14:40:21 +1000379static struct nv50_disp *
380nv50_disp(struct drm_device *dev)
Ben Skeggs26f6d882011-07-04 16:25:18 +1000381{
Ben Skeggs77145f12012-07-31 16:16:21 +1000382 return nouveau_display(dev)->priv;
Ben Skeggs26f6d882011-07-04 16:25:18 +1000383}
384
Ben Skeggse225f442012-11-21 14:40:21 +1000385#define nv50_mast(d) (&nv50_disp(d)->mast)
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000386
Ben Skeggsbdb8c212011-11-12 01:30:24 +1000387static struct drm_crtc *
Ben Skeggse225f442012-11-21 14:40:21 +1000388nv50_display_crtc_get(struct drm_encoder *encoder)
Ben Skeggsbdb8c212011-11-12 01:30:24 +1000389{
390 return nouveau_encoder(encoder)->crtc;
391}
392
393/******************************************************************************
394 * EVO channel helpers
395 *****************************************************************************/
Ben Skeggs51beb422011-07-05 10:33:08 +1000396static u32 *
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000397evo_wait(void *evoc, int nr)
Ben Skeggs51beb422011-07-05 10:33:08 +1000398{
Ben Skeggse225f442012-11-21 14:40:21 +1000399 struct nv50_dmac *dmac = evoc;
Ben Skeggs0ad72862014-08-10 04:10:22 +1000400 u32 put = nvif_rd32(&dmac->base.user, 0x0000) / 4;
Ben Skeggs51beb422011-07-05 10:33:08 +1000401
Daniel Vetter59ad1462012-12-02 14:49:44 +0100402 mutex_lock(&dmac->lock);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000403 if (put + nr >= (PAGE_SIZE / 4) - 8) {
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000404 dmac->ptr[put] = 0x20000000;
Ben Skeggs51beb422011-07-05 10:33:08 +1000405
Ben Skeggs0ad72862014-08-10 04:10:22 +1000406 nvif_wr32(&dmac->base.user, 0x0000, 0x00000000);
407 if (!nvkm_wait(&dmac->base.user, 0x0004, ~0, 0x00000000)) {
Daniel Vetter59ad1462012-12-02 14:49:44 +0100408 mutex_unlock(&dmac->lock);
Ben Skeggs0ad72862014-08-10 04:10:22 +1000409 nv_error(nvkm_object(&dmac->base.user), "channel stalled\n");
Ben Skeggs51beb422011-07-05 10:33:08 +1000410 return NULL;
411 }
412
413 put = 0;
414 }
415
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000416 return dmac->ptr + put;
Ben Skeggs51beb422011-07-05 10:33:08 +1000417}
418
419static void
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000420evo_kick(u32 *push, void *evoc)
Ben Skeggs51beb422011-07-05 10:33:08 +1000421{
Ben Skeggse225f442012-11-21 14:40:21 +1000422 struct nv50_dmac *dmac = evoc;
Ben Skeggs0ad72862014-08-10 04:10:22 +1000423 nvif_wr32(&dmac->base.user, 0x0000, (push - dmac->ptr) << 2);
Daniel Vetter59ad1462012-12-02 14:49:44 +0100424 mutex_unlock(&dmac->lock);
Ben Skeggs51beb422011-07-05 10:33:08 +1000425}
426
427#define evo_mthd(p,m,s) *((p)++) = (((s) << 18) | (m))
428#define evo_data(p,d) *((p)++) = (d)
429
Ben Skeggs3376ee32011-11-12 14:28:12 +1000430static bool
431evo_sync_wait(void *data)
432{
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500433 if (nouveau_bo_rd32(data, EVO_MAST_NTFY) != 0x00000000)
434 return true;
435 usleep_range(1, 2);
436 return false;
Ben Skeggs3376ee32011-11-12 14:28:12 +1000437}
438
439static int
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000440evo_sync(struct drm_device *dev)
Ben Skeggs3376ee32011-11-12 14:28:12 +1000441{
Ben Skeggs967e7bd2014-08-10 04:10:22 +1000442 struct nvif_device *device = &nouveau_drm(dev)->device;
Ben Skeggse225f442012-11-21 14:40:21 +1000443 struct nv50_disp *disp = nv50_disp(dev);
444 struct nv50_mast *mast = nv50_mast(dev);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000445 u32 *push = evo_wait(mast, 8);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000446 if (push) {
Ben Skeggs816af2f2011-11-16 15:48:48 +1000447 nouveau_bo_wr32(disp->sync, EVO_MAST_NTFY, 0x00000000);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000448 evo_mthd(push, 0x0084, 1);
Ben Skeggs816af2f2011-11-16 15:48:48 +1000449 evo_data(push, 0x80000000 | EVO_MAST_NTFY);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000450 evo_mthd(push, 0x0080, 2);
451 evo_data(push, 0x00000000);
452 evo_data(push, 0x00000000);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000453 evo_kick(push, mast);
Ben Skeggs967e7bd2014-08-10 04:10:22 +1000454 if (nv_wait_cb(nvkm_device(device), evo_sync_wait, disp->sync))
Ben Skeggs3376ee32011-11-12 14:28:12 +1000455 return 0;
456 }
457
458 return -EBUSY;
459}
460
461/******************************************************************************
Ben Skeggsa63a97e2011-11-16 15:22:34 +1000462 * Page flipping channel
Ben Skeggs3376ee32011-11-12 14:28:12 +1000463 *****************************************************************************/
464struct nouveau_bo *
Ben Skeggse225f442012-11-21 14:40:21 +1000465nv50_display_crtc_sema(struct drm_device *dev, int crtc)
Ben Skeggs3376ee32011-11-12 14:28:12 +1000466{
Ben Skeggse225f442012-11-21 14:40:21 +1000467 return nv50_disp(dev)->sync;
Ben Skeggs3376ee32011-11-12 14:28:12 +1000468}
469
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000470struct nv50_display_flip {
471 struct nv50_disp *disp;
472 struct nv50_sync *chan;
473};
474
475static bool
476nv50_display_flip_wait(void *data)
477{
478 struct nv50_display_flip *flip = data;
479 if (nouveau_bo_rd32(flip->disp->sync, flip->chan->addr / 4) ==
Calvin Owensb1ea3e62013-04-07 21:01:19 -0500480 flip->chan->data)
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000481 return true;
482 usleep_range(1, 2);
483 return false;
484}
485
Ben Skeggs3376ee32011-11-12 14:28:12 +1000486void
Ben Skeggse225f442012-11-21 14:40:21 +1000487nv50_display_flip_stop(struct drm_crtc *crtc)
Ben Skeggs3376ee32011-11-12 14:28:12 +1000488{
Ben Skeggs967e7bd2014-08-10 04:10:22 +1000489 struct nvif_device *device = &nouveau_drm(crtc->dev)->device;
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000490 struct nv50_display_flip flip = {
491 .disp = nv50_disp(crtc->dev),
492 .chan = nv50_sync(crtc),
493 };
Ben Skeggs3376ee32011-11-12 14:28:12 +1000494 u32 *push;
495
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000496 push = evo_wait(flip.chan, 8);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000497 if (push) {
498 evo_mthd(push, 0x0084, 1);
499 evo_data(push, 0x00000000);
500 evo_mthd(push, 0x0094, 1);
501 evo_data(push, 0x00000000);
502 evo_mthd(push, 0x00c0, 1);
503 evo_data(push, 0x00000000);
504 evo_mthd(push, 0x0080, 1);
505 evo_data(push, 0x00000000);
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000506 evo_kick(push, flip.chan);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000507 }
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000508
Ben Skeggs967e7bd2014-08-10 04:10:22 +1000509 nv_wait_cb(nvkm_device(device), nv50_display_flip_wait, &flip);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000510}
511
512int
Ben Skeggse225f442012-11-21 14:40:21 +1000513nv50_display_flip_next(struct drm_crtc *crtc, struct drm_framebuffer *fb,
Ben Skeggs3376ee32011-11-12 14:28:12 +1000514 struct nouveau_channel *chan, u32 swap_interval)
515{
516 struct nouveau_framebuffer *nv_fb = nouveau_framebuffer(fb);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000517 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggs8dda53f2013-07-09 12:35:55 +1000518 struct nv50_head *head = nv50_head(crtc);
Ben Skeggse225f442012-11-21 14:40:21 +1000519 struct nv50_sync *sync = nv50_sync(crtc);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000520 u32 *push;
Ben Skeggs8dda53f2013-07-09 12:35:55 +1000521 int ret;
Ben Skeggs3376ee32011-11-12 14:28:12 +1000522
523 swap_interval <<= 4;
524 if (swap_interval == 0)
525 swap_interval |= 0x100;
Ben Skeggsf60b6e72013-03-19 15:20:00 +1000526 if (chan == NULL)
527 evo_sync(crtc->dev);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000528
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000529 push = evo_wait(sync, 128);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000530 if (unlikely(push == NULL))
531 return -EBUSY;
532
Ben Skeggsbbf89062014-08-10 04:10:25 +1000533 if (chan && chan->object->oclass < G82_CHANNEL_GPFIFO) {
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000534 ret = RING_SPACE(chan, 8);
535 if (ret)
536 return ret;
Ben Skeggs67f97182013-02-26 12:02:54 +1000537
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000538 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 2);
Ben Skeggs8dda53f2013-07-09 12:35:55 +1000539 OUT_RING (chan, NvEvoSema0 + nv_crtc->index);
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000540 OUT_RING (chan, sync->addr ^ 0x10);
541 BEGIN_NV04(chan, 0, NV11_SUBCHAN_SEMAPHORE_RELEASE, 1);
542 OUT_RING (chan, sync->data + 1);
543 BEGIN_NV04(chan, 0, NV11_SUBCHAN_SEMAPHORE_OFFSET, 2);
544 OUT_RING (chan, sync->addr);
545 OUT_RING (chan, sync->data);
546 } else
Ben Skeggsbbf89062014-08-10 04:10:25 +1000547 if (chan && chan->object->oclass < FERMI_CHANNEL_GPFIFO) {
Ben Skeggs8dda53f2013-07-09 12:35:55 +1000548 u64 addr = nv84_fence_crtc(chan, nv_crtc->index) + sync->addr;
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000549 ret = RING_SPACE(chan, 12);
550 if (ret)
551 return ret;
Ben Skeggsa34caf72013-02-14 09:28:37 +1000552
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000553 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
Ben Skeggs0ad72862014-08-10 04:10:22 +1000554 OUT_RING (chan, chan->vram.handle);
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000555 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
556 OUT_RING (chan, upper_32_bits(addr ^ 0x10));
557 OUT_RING (chan, lower_32_bits(addr ^ 0x10));
558 OUT_RING (chan, sync->data + 1);
559 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG);
560 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
561 OUT_RING (chan, upper_32_bits(addr));
562 OUT_RING (chan, lower_32_bits(addr));
563 OUT_RING (chan, sync->data);
564 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_EQUAL);
565 } else
566 if (chan) {
Ben Skeggs8dda53f2013-07-09 12:35:55 +1000567 u64 addr = nv84_fence_crtc(chan, nv_crtc->index) + sync->addr;
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000568 ret = RING_SPACE(chan, 10);
569 if (ret)
570 return ret;
Ben Skeggs67f97182013-02-26 12:02:54 +1000571
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000572 BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
573 OUT_RING (chan, upper_32_bits(addr ^ 0x10));
574 OUT_RING (chan, lower_32_bits(addr ^ 0x10));
575 OUT_RING (chan, sync->data + 1);
576 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG |
577 NVC0_SUBCHAN_SEMAPHORE_TRIGGER_YIELD);
578 BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
579 OUT_RING (chan, upper_32_bits(addr));
580 OUT_RING (chan, lower_32_bits(addr));
581 OUT_RING (chan, sync->data);
582 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_EQUAL |
583 NVC0_SUBCHAN_SEMAPHORE_TRIGGER_YIELD);
584 }
Ben Skeggs35bcf5d2012-04-30 11:34:10 -0500585
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000586 if (chan) {
587 sync->addr ^= 0x10;
588 sync->data++;
Ben Skeggs3376ee32011-11-12 14:28:12 +1000589 FIRE_RING (chan);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000590 }
591
592 /* queue the flip */
593 evo_mthd(push, 0x0100, 1);
594 evo_data(push, 0xfffe0000);
595 evo_mthd(push, 0x0084, 1);
596 evo_data(push, swap_interval);
597 if (!(swap_interval & 0x00000100)) {
598 evo_mthd(push, 0x00e0, 1);
599 evo_data(push, 0x40000000);
600 }
601 evo_mthd(push, 0x0088, 4);
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000602 evo_data(push, sync->addr);
603 evo_data(push, sync->data++);
604 evo_data(push, sync->data);
Ben Skeggsf45f55c2014-08-10 04:10:23 +1000605 evo_data(push, sync->base.sync.handle);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000606 evo_mthd(push, 0x00a0, 2);
607 evo_data(push, 0x00000000);
608 evo_data(push, 0x00000000);
609 evo_mthd(push, 0x00c0, 1);
Ben Skeggs8a423642014-08-10 04:10:19 +1000610 evo_data(push, nv_fb->r_handle);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000611 evo_mthd(push, 0x0110, 2);
612 evo_data(push, 0x00000000);
613 evo_data(push, 0x00000000);
Ben Skeggs648d4df2014-08-10 04:10:27 +1000614 if (nv50_vers(sync) < GF110_DISP_BASE_CHANNEL_DMA) {
Ben Skeggsed5085a52012-11-16 13:16:51 +1000615 evo_mthd(push, 0x0800, 5);
616 evo_data(push, nv_fb->nvbo->bo.offset >> 8);
617 evo_data(push, 0);
618 evo_data(push, (fb->height << 16) | fb->width);
619 evo_data(push, nv_fb->r_pitch);
620 evo_data(push, nv_fb->r_format);
621 } else {
622 evo_mthd(push, 0x0400, 5);
623 evo_data(push, nv_fb->nvbo->bo.offset >> 8);
624 evo_data(push, 0);
625 evo_data(push, (fb->height << 16) | fb->width);
626 evo_data(push, nv_fb->r_pitch);
627 evo_data(push, nv_fb->r_format);
628 }
Ben Skeggs3376ee32011-11-12 14:28:12 +1000629 evo_mthd(push, 0x0080, 1);
630 evo_data(push, 0x00000000);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000631 evo_kick(push, sync);
Ben Skeggs8dda53f2013-07-09 12:35:55 +1000632
633 nouveau_bo_ref(nv_fb->nvbo, &head->image);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000634 return 0;
635}
636
Ben Skeggs26f6d882011-07-04 16:25:18 +1000637/******************************************************************************
Ben Skeggs438d99e2011-07-05 16:48:06 +1000638 * CRTC
639 *****************************************************************************/
640static int
Ben Skeggse225f442012-11-21 14:40:21 +1000641nv50_crtc_set_dither(struct nouveau_crtc *nv_crtc, bool update)
Ben Skeggs438d99e2011-07-05 16:48:06 +1000642{
Ben Skeggse225f442012-11-21 14:40:21 +1000643 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
Ben Skeggsde691852011-10-17 12:23:41 +1000644 struct nouveau_connector *nv_connector;
645 struct drm_connector *connector;
646 u32 *push, mode = 0x00;
Ben Skeggs438d99e2011-07-05 16:48:06 +1000647
Ben Skeggs488ff202011-10-17 10:38:10 +1000648 nv_connector = nouveau_crtc_connector_get(nv_crtc);
Ben Skeggsde691852011-10-17 12:23:41 +1000649 connector = &nv_connector->base;
650 if (nv_connector->dithering_mode == DITHERING_MODE_AUTO) {
Matt Roperf4510a22014-04-01 15:22:40 -0700651 if (nv_crtc->base.primary->fb->depth > connector->display_info.bpc * 3)
Ben Skeggsde691852011-10-17 12:23:41 +1000652 mode = DITHERING_MODE_DYNAMIC2X2;
653 } else {
654 mode = nv_connector->dithering_mode;
655 }
656
657 if (nv_connector->dithering_depth == DITHERING_DEPTH_AUTO) {
658 if (connector->display_info.bpc >= 8)
659 mode |= DITHERING_DEPTH_8BPC;
660 } else {
661 mode |= nv_connector->dithering_depth;
Ben Skeggs438d99e2011-07-05 16:48:06 +1000662 }
663
Ben Skeggsde8268c2012-11-16 10:24:31 +1000664 push = evo_wait(mast, 4);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000665 if (push) {
Ben Skeggs648d4df2014-08-10 04:10:27 +1000666 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000667 evo_mthd(push, 0x08a0 + (nv_crtc->index * 0x0400), 1);
668 evo_data(push, mode);
669 } else
Ben Skeggs648d4df2014-08-10 04:10:27 +1000670 if (nv50_vers(mast) < GK104_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000671 evo_mthd(push, 0x0490 + (nv_crtc->index * 0x0300), 1);
672 evo_data(push, mode);
673 } else {
674 evo_mthd(push, 0x04a0 + (nv_crtc->index * 0x0300), 1);
675 evo_data(push, mode);
676 }
677
Ben Skeggs438d99e2011-07-05 16:48:06 +1000678 if (update) {
679 evo_mthd(push, 0x0080, 1);
680 evo_data(push, 0x00000000);
681 }
Ben Skeggsde8268c2012-11-16 10:24:31 +1000682 evo_kick(push, mast);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000683 }
684
685 return 0;
686}
687
688static int
Ben Skeggse225f442012-11-21 14:40:21 +1000689nv50_crtc_set_scale(struct nouveau_crtc *nv_crtc, bool update)
Ben Skeggs438d99e2011-07-05 16:48:06 +1000690{
Ben Skeggse225f442012-11-21 14:40:21 +1000691 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
Ben Skeggs92854622011-11-11 23:49:06 +1000692 struct drm_display_mode *omode, *umode = &nv_crtc->base.mode;
Ben Skeggs3376ee32011-11-12 14:28:12 +1000693 struct drm_crtc *crtc = &nv_crtc->base;
Ben Skeggsf3fdc522011-07-07 16:01:57 +1000694 struct nouveau_connector *nv_connector;
Ben Skeggs92854622011-11-11 23:49:06 +1000695 int mode = DRM_MODE_SCALE_NONE;
696 u32 oX, oY, *push;
Ben Skeggs438d99e2011-07-05 16:48:06 +1000697
Ben Skeggs92854622011-11-11 23:49:06 +1000698 /* start off at the resolution we programmed the crtc for, this
699 * effectively handles NONE/FULL scaling
700 */
Ben Skeggsf3fdc522011-07-07 16:01:57 +1000701 nv_connector = nouveau_crtc_connector_get(nv_crtc);
Ben Skeggs92854622011-11-11 23:49:06 +1000702 if (nv_connector && nv_connector->native_mode)
703 mode = nv_connector->scaling_mode;
Ben Skeggsf3fdc522011-07-07 16:01:57 +1000704
Ben Skeggs92854622011-11-11 23:49:06 +1000705 if (mode != DRM_MODE_SCALE_NONE)
706 omode = nv_connector->native_mode;
707 else
708 omode = umode;
709
710 oX = omode->hdisplay;
711 oY = omode->vdisplay;
712 if (omode->flags & DRM_MODE_FLAG_DBLSCAN)
713 oY *= 2;
714
715 /* add overscan compensation if necessary, will keep the aspect
716 * ratio the same as the backend mode unless overridden by the
717 * user setting both hborder and vborder properties.
718 */
719 if (nv_connector && ( nv_connector->underscan == UNDERSCAN_ON ||
720 (nv_connector->underscan == UNDERSCAN_AUTO &&
721 nv_connector->edid &&
722 drm_detect_hdmi_monitor(nv_connector->edid)))) {
723 u32 bX = nv_connector->underscan_hborder;
724 u32 bY = nv_connector->underscan_vborder;
725 u32 aspect = (oY << 19) / oX;
726
727 if (bX) {
728 oX -= (bX * 2);
729 if (bY) oY -= (bY * 2);
730 else oY = ((oX * aspect) + (aspect / 2)) >> 19;
731 } else {
732 oX -= (oX >> 4) + 32;
733 if (bY) oY -= (bY * 2);
734 else oY = ((oX * aspect) + (aspect / 2)) >> 19;
Ben Skeggsf3fdc522011-07-07 16:01:57 +1000735 }
736 }
Ben Skeggs438d99e2011-07-05 16:48:06 +1000737
Ben Skeggs92854622011-11-11 23:49:06 +1000738 /* handle CENTER/ASPECT scaling, taking into account the areas
739 * removed already for overscan compensation
740 */
741 switch (mode) {
742 case DRM_MODE_SCALE_CENTER:
743 oX = min((u32)umode->hdisplay, oX);
744 oY = min((u32)umode->vdisplay, oY);
745 /* fall-through */
746 case DRM_MODE_SCALE_ASPECT:
747 if (oY < oX) {
748 u32 aspect = (umode->hdisplay << 19) / umode->vdisplay;
749 oX = ((oY * aspect) + (aspect / 2)) >> 19;
750 } else {
751 u32 aspect = (umode->vdisplay << 19) / umode->hdisplay;
752 oY = ((oX * aspect) + (aspect / 2)) >> 19;
753 }
754 break;
755 default:
756 break;
757 }
758
Ben Skeggsde8268c2012-11-16 10:24:31 +1000759 push = evo_wait(mast, 8);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000760 if (push) {
Ben Skeggs648d4df2014-08-10 04:10:27 +1000761 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000762 /*XXX: SCALE_CTRL_ACTIVE??? */
763 evo_mthd(push, 0x08d8 + (nv_crtc->index * 0x400), 2);
764 evo_data(push, (oY << 16) | oX);
765 evo_data(push, (oY << 16) | oX);
766 evo_mthd(push, 0x08a4 + (nv_crtc->index * 0x400), 1);
767 evo_data(push, 0x00000000);
768 evo_mthd(push, 0x08c8 + (nv_crtc->index * 0x400), 1);
769 evo_data(push, umode->vdisplay << 16 | umode->hdisplay);
770 } else {
771 evo_mthd(push, 0x04c0 + (nv_crtc->index * 0x300), 3);
772 evo_data(push, (oY << 16) | oX);
773 evo_data(push, (oY << 16) | oX);
774 evo_data(push, (oY << 16) | oX);
775 evo_mthd(push, 0x0494 + (nv_crtc->index * 0x300), 1);
776 evo_data(push, 0x00000000);
777 evo_mthd(push, 0x04b8 + (nv_crtc->index * 0x300), 1);
778 evo_data(push, umode->vdisplay << 16 | umode->hdisplay);
779 }
780
781 evo_kick(push, mast);
782
Ben Skeggs3376ee32011-11-12 14:28:12 +1000783 if (update) {
Ben Skeggse225f442012-11-21 14:40:21 +1000784 nv50_display_flip_stop(crtc);
Matt Roperf4510a22014-04-01 15:22:40 -0700785 nv50_display_flip_next(crtc, crtc->primary->fb,
786 NULL, 1);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000787 }
Ben Skeggs438d99e2011-07-05 16:48:06 +1000788 }
789
790 return 0;
791}
792
793static int
Roy Splieteae73822014-10-30 22:57:45 +0100794nv50_crtc_set_raster_vblank_dmi(struct nouveau_crtc *nv_crtc, u32 usec)
795{
796 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
797 u32 *push;
798
799 push = evo_wait(mast, 8);
800 if (!push)
801 return -ENOMEM;
802
803 evo_mthd(push, 0x0828 + (nv_crtc->index * 0x400), 1);
804 evo_data(push, usec);
805 evo_kick(push, mast);
806 return 0;
807}
808
809static int
Ben Skeggse225f442012-11-21 14:40:21 +1000810nv50_crtc_set_color_vibrance(struct nouveau_crtc *nv_crtc, bool update)
Ben Skeggsf9887d02012-11-21 13:03:42 +1000811{
Ben Skeggse225f442012-11-21 14:40:21 +1000812 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
Ben Skeggsf9887d02012-11-21 13:03:42 +1000813 u32 *push, hue, vib;
814 int adj;
815
816 adj = (nv_crtc->color_vibrance > 0) ? 50 : 0;
817 vib = ((nv_crtc->color_vibrance * 2047 + adj) / 100) & 0xfff;
818 hue = ((nv_crtc->vibrant_hue * 2047) / 100) & 0xfff;
819
820 push = evo_wait(mast, 16);
821 if (push) {
Ben Skeggs648d4df2014-08-10 04:10:27 +1000822 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsf9887d02012-11-21 13:03:42 +1000823 evo_mthd(push, 0x08a8 + (nv_crtc->index * 0x400), 1);
824 evo_data(push, (hue << 20) | (vib << 8));
825 } else {
826 evo_mthd(push, 0x0498 + (nv_crtc->index * 0x300), 1);
827 evo_data(push, (hue << 20) | (vib << 8));
828 }
829
830 if (update) {
831 evo_mthd(push, 0x0080, 1);
832 evo_data(push, 0x00000000);
833 }
834 evo_kick(push, mast);
835 }
836
837 return 0;
838}
839
840static int
Ben Skeggse225f442012-11-21 14:40:21 +1000841nv50_crtc_set_image(struct nouveau_crtc *nv_crtc, struct drm_framebuffer *fb,
Ben Skeggs438d99e2011-07-05 16:48:06 +1000842 int x, int y, bool update)
843{
844 struct nouveau_framebuffer *nvfb = nouveau_framebuffer(fb);
Ben Skeggse225f442012-11-21 14:40:21 +1000845 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000846 u32 *push;
847
Ben Skeggsde8268c2012-11-16 10:24:31 +1000848 push = evo_wait(mast, 16);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000849 if (push) {
Ben Skeggs648d4df2014-08-10 04:10:27 +1000850 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000851 evo_mthd(push, 0x0860 + (nv_crtc->index * 0x400), 1);
852 evo_data(push, nvfb->nvbo->bo.offset >> 8);
853 evo_mthd(push, 0x0868 + (nv_crtc->index * 0x400), 3);
854 evo_data(push, (fb->height << 16) | fb->width);
855 evo_data(push, nvfb->r_pitch);
856 evo_data(push, nvfb->r_format);
857 evo_mthd(push, 0x08c0 + (nv_crtc->index * 0x400), 1);
858 evo_data(push, (y << 16) | x);
Ben Skeggs648d4df2014-08-10 04:10:27 +1000859 if (nv50_vers(mast) > NV50_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000860 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
Ben Skeggs8a423642014-08-10 04:10:19 +1000861 evo_data(push, nvfb->r_handle);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000862 }
863 } else {
864 evo_mthd(push, 0x0460 + (nv_crtc->index * 0x300), 1);
865 evo_data(push, nvfb->nvbo->bo.offset >> 8);
866 evo_mthd(push, 0x0468 + (nv_crtc->index * 0x300), 4);
867 evo_data(push, (fb->height << 16) | fb->width);
868 evo_data(push, nvfb->r_pitch);
869 evo_data(push, nvfb->r_format);
Ben Skeggs8a423642014-08-10 04:10:19 +1000870 evo_data(push, nvfb->r_handle);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000871 evo_mthd(push, 0x04b0 + (nv_crtc->index * 0x300), 1);
872 evo_data(push, (y << 16) | x);
873 }
874
Ben Skeggsa46232e2011-07-07 15:23:48 +1000875 if (update) {
876 evo_mthd(push, 0x0080, 1);
877 evo_data(push, 0x00000000);
878 }
Ben Skeggsde8268c2012-11-16 10:24:31 +1000879 evo_kick(push, mast);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000880 }
881
Ben Skeggs8a423642014-08-10 04:10:19 +1000882 nv_crtc->fb.handle = nvfb->r_handle;
Ben Skeggs438d99e2011-07-05 16:48:06 +1000883 return 0;
884}
885
886static void
Ben Skeggse225f442012-11-21 14:40:21 +1000887nv50_crtc_cursor_show(struct nouveau_crtc *nv_crtc)
Ben Skeggs438d99e2011-07-05 16:48:06 +1000888{
Ben Skeggse225f442012-11-21 14:40:21 +1000889 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000890 u32 *push = evo_wait(mast, 16);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000891 if (push) {
Ben Skeggs648d4df2014-08-10 04:10:27 +1000892 if (nv50_vers(mast) < G82_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000893 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 2);
894 evo_data(push, 0x85000000);
895 evo_data(push, nv_crtc->cursor.nvbo->bo.offset >> 8);
896 } else
Ben Skeggs648d4df2014-08-10 04:10:27 +1000897 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000898 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 2);
899 evo_data(push, 0x85000000);
900 evo_data(push, nv_crtc->cursor.nvbo->bo.offset >> 8);
901 evo_mthd(push, 0x089c + (nv_crtc->index * 0x400), 1);
Ben Skeggsf45f55c2014-08-10 04:10:23 +1000902 evo_data(push, mast->base.vram.handle);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000903 } else {
Ben Skeggs438d99e2011-07-05 16:48:06 +1000904 evo_mthd(push, 0x0480 + (nv_crtc->index * 0x300), 2);
905 evo_data(push, 0x85000000);
906 evo_data(push, nv_crtc->cursor.nvbo->bo.offset >> 8);
907 evo_mthd(push, 0x048c + (nv_crtc->index * 0x300), 1);
Ben Skeggsf45f55c2014-08-10 04:10:23 +1000908 evo_data(push, mast->base.vram.handle);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000909 }
910 evo_kick(push, mast);
911 }
912}
913
914static void
Ben Skeggse225f442012-11-21 14:40:21 +1000915nv50_crtc_cursor_hide(struct nouveau_crtc *nv_crtc)
Ben Skeggsde8268c2012-11-16 10:24:31 +1000916{
Ben Skeggse225f442012-11-21 14:40:21 +1000917 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000918 u32 *push = evo_wait(mast, 16);
919 if (push) {
Ben Skeggs648d4df2014-08-10 04:10:27 +1000920 if (nv50_vers(mast) < G82_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000921 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 1);
922 evo_data(push, 0x05000000);
923 } else
Ben Skeggs648d4df2014-08-10 04:10:27 +1000924 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000925 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 1);
926 evo_data(push, 0x05000000);
927 evo_mthd(push, 0x089c + (nv_crtc->index * 0x400), 1);
928 evo_data(push, 0x00000000);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000929 } else {
930 evo_mthd(push, 0x0480 + (nv_crtc->index * 0x300), 1);
931 evo_data(push, 0x05000000);
932 evo_mthd(push, 0x048c + (nv_crtc->index * 0x300), 1);
933 evo_data(push, 0x00000000);
934 }
Ben Skeggsde8268c2012-11-16 10:24:31 +1000935 evo_kick(push, mast);
936 }
937}
Ben Skeggs438d99e2011-07-05 16:48:06 +1000938
Ben Skeggsde8268c2012-11-16 10:24:31 +1000939static void
Ben Skeggse225f442012-11-21 14:40:21 +1000940nv50_crtc_cursor_show_hide(struct nouveau_crtc *nv_crtc, bool show, bool update)
Ben Skeggsde8268c2012-11-16 10:24:31 +1000941{
Ben Skeggse225f442012-11-21 14:40:21 +1000942 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000943
944 if (show)
Ben Skeggse225f442012-11-21 14:40:21 +1000945 nv50_crtc_cursor_show(nv_crtc);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000946 else
Ben Skeggse225f442012-11-21 14:40:21 +1000947 nv50_crtc_cursor_hide(nv_crtc);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000948
949 if (update) {
950 u32 *push = evo_wait(mast, 2);
951 if (push) {
Ben Skeggs438d99e2011-07-05 16:48:06 +1000952 evo_mthd(push, 0x0080, 1);
953 evo_data(push, 0x00000000);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000954 evo_kick(push, mast);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000955 }
Ben Skeggs438d99e2011-07-05 16:48:06 +1000956 }
957}
958
959static void
Ben Skeggse225f442012-11-21 14:40:21 +1000960nv50_crtc_dpms(struct drm_crtc *crtc, int mode)
Ben Skeggs438d99e2011-07-05 16:48:06 +1000961{
962}
963
964static void
Ben Skeggse225f442012-11-21 14:40:21 +1000965nv50_crtc_prepare(struct drm_crtc *crtc)
Ben Skeggs438d99e2011-07-05 16:48:06 +1000966{
967 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggse225f442012-11-21 14:40:21 +1000968 struct nv50_mast *mast = nv50_mast(crtc->dev);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000969 u32 *push;
970
Ben Skeggse225f442012-11-21 14:40:21 +1000971 nv50_display_flip_stop(crtc);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000972
Ben Skeggs56d237d2014-05-19 14:54:33 +1000973 push = evo_wait(mast, 6);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000974 if (push) {
Ben Skeggs648d4df2014-08-10 04:10:27 +1000975 if (nv50_vers(mast) < G82_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000976 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
977 evo_data(push, 0x00000000);
978 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 1);
979 evo_data(push, 0x40000000);
980 } else
Ben Skeggs648d4df2014-08-10 04:10:27 +1000981 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000982 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
983 evo_data(push, 0x00000000);
984 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 1);
985 evo_data(push, 0x40000000);
986 evo_mthd(push, 0x085c + (nv_crtc->index * 0x400), 1);
987 evo_data(push, 0x00000000);
988 } else {
989 evo_mthd(push, 0x0474 + (nv_crtc->index * 0x300), 1);
990 evo_data(push, 0x00000000);
991 evo_mthd(push, 0x0440 + (nv_crtc->index * 0x300), 1);
992 evo_data(push, 0x03000000);
993 evo_mthd(push, 0x045c + (nv_crtc->index * 0x300), 1);
994 evo_data(push, 0x00000000);
995 }
996
997 evo_kick(push, mast);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000998 }
999
Ben Skeggse225f442012-11-21 14:40:21 +10001000 nv50_crtc_cursor_show_hide(nv_crtc, false, false);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001001}
1002
1003static void
Ben Skeggse225f442012-11-21 14:40:21 +10001004nv50_crtc_commit(struct drm_crtc *crtc)
Ben Skeggs438d99e2011-07-05 16:48:06 +10001005{
1006 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggse225f442012-11-21 14:40:21 +10001007 struct nv50_mast *mast = nv50_mast(crtc->dev);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001008 u32 *push;
1009
Ben Skeggsde8268c2012-11-16 10:24:31 +10001010 push = evo_wait(mast, 32);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001011 if (push) {
Ben Skeggs648d4df2014-08-10 04:10:27 +10001012 if (nv50_vers(mast) < G82_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsde8268c2012-11-16 10:24:31 +10001013 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
Ben Skeggs8a423642014-08-10 04:10:19 +10001014 evo_data(push, nv_crtc->fb.handle);
Ben Skeggsde8268c2012-11-16 10:24:31 +10001015 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 2);
1016 evo_data(push, 0xc0000000);
1017 evo_data(push, nv_crtc->lut.nvbo->bo.offset >> 8);
1018 } else
Ben Skeggs648d4df2014-08-10 04:10:27 +10001019 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsde8268c2012-11-16 10:24:31 +10001020 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
Ben Skeggs8a423642014-08-10 04:10:19 +10001021 evo_data(push, nv_crtc->fb.handle);
Ben Skeggsde8268c2012-11-16 10:24:31 +10001022 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 2);
1023 evo_data(push, 0xc0000000);
1024 evo_data(push, nv_crtc->lut.nvbo->bo.offset >> 8);
1025 evo_mthd(push, 0x085c + (nv_crtc->index * 0x400), 1);
Ben Skeggsf45f55c2014-08-10 04:10:23 +10001026 evo_data(push, mast->base.vram.handle);
Ben Skeggsde8268c2012-11-16 10:24:31 +10001027 } else {
1028 evo_mthd(push, 0x0474 + (nv_crtc->index * 0x300), 1);
Ben Skeggs8a423642014-08-10 04:10:19 +10001029 evo_data(push, nv_crtc->fb.handle);
Ben Skeggsde8268c2012-11-16 10:24:31 +10001030 evo_mthd(push, 0x0440 + (nv_crtc->index * 0x300), 4);
1031 evo_data(push, 0x83000000);
1032 evo_data(push, nv_crtc->lut.nvbo->bo.offset >> 8);
1033 evo_data(push, 0x00000000);
1034 evo_data(push, 0x00000000);
1035 evo_mthd(push, 0x045c + (nv_crtc->index * 0x300), 1);
Ben Skeggsf45f55c2014-08-10 04:10:23 +10001036 evo_data(push, mast->base.vram.handle);
Ben Skeggsde8268c2012-11-16 10:24:31 +10001037 evo_mthd(push, 0x0430 + (nv_crtc->index * 0x300), 1);
1038 evo_data(push, 0xffffff00);
1039 }
1040
1041 evo_kick(push, mast);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001042 }
1043
Ben Skeggse225f442012-11-21 14:40:21 +10001044 nv50_crtc_cursor_show_hide(nv_crtc, nv_crtc->cursor.visible, true);
Matt Roperf4510a22014-04-01 15:22:40 -07001045 nv50_display_flip_next(crtc, crtc->primary->fb, NULL, 1);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001046}
1047
1048static bool
Ben Skeggse225f442012-11-21 14:40:21 +10001049nv50_crtc_mode_fixup(struct drm_crtc *crtc, const struct drm_display_mode *mode,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001050 struct drm_display_mode *adjusted_mode)
1051{
Ben Skeggseb2e9682014-01-24 10:13:23 +10001052 drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001053 return true;
1054}
1055
1056static int
Ben Skeggse225f442012-11-21 14:40:21 +10001057nv50_crtc_swap_fbs(struct drm_crtc *crtc, struct drm_framebuffer *old_fb)
Ben Skeggs438d99e2011-07-05 16:48:06 +10001058{
Matt Roperf4510a22014-04-01 15:22:40 -07001059 struct nouveau_framebuffer *nvfb = nouveau_framebuffer(crtc->primary->fb);
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001060 struct nv50_head *head = nv50_head(crtc);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001061 int ret;
1062
1063 ret = nouveau_bo_pin(nvfb->nvbo, TTM_PL_FLAG_VRAM);
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001064 if (ret == 0) {
1065 if (head->image)
1066 nouveau_bo_unpin(head->image);
1067 nouveau_bo_ref(nvfb->nvbo, &head->image);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001068 }
1069
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001070 return ret;
Ben Skeggs438d99e2011-07-05 16:48:06 +10001071}
1072
1073static int
Ben Skeggse225f442012-11-21 14:40:21 +10001074nv50_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *umode,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001075 struct drm_display_mode *mode, int x, int y,
1076 struct drm_framebuffer *old_fb)
1077{
Ben Skeggse225f442012-11-21 14:40:21 +10001078 struct nv50_mast *mast = nv50_mast(crtc->dev);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001079 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1080 struct nouveau_connector *nv_connector;
Ben Skeggs2d1d8982011-11-11 23:39:22 +10001081 u32 ilace = (mode->flags & DRM_MODE_FLAG_INTERLACE) ? 2 : 1;
1082 u32 vscan = (mode->flags & DRM_MODE_FLAG_DBLSCAN) ? 2 : 1;
1083 u32 hactive, hsynce, hbackp, hfrontp, hblanke, hblanks;
1084 u32 vactive, vsynce, vbackp, vfrontp, vblanke, vblanks;
Roy Spliet1dce6262014-09-12 18:00:13 +02001085 u32 vblan2e = 0, vblan2s = 1, vblankus = 0;
Ben Skeggs3488c572012-03-12 11:42:20 +10001086 u32 *push;
Ben Skeggs438d99e2011-07-05 16:48:06 +10001087 int ret;
1088
Ben Skeggs2d1d8982011-11-11 23:39:22 +10001089 hactive = mode->htotal;
1090 hsynce = mode->hsync_end - mode->hsync_start - 1;
1091 hbackp = mode->htotal - mode->hsync_end;
1092 hblanke = hsynce + hbackp;
1093 hfrontp = mode->hsync_start - mode->hdisplay;
1094 hblanks = mode->htotal - hfrontp - 1;
1095
1096 vactive = mode->vtotal * vscan / ilace;
1097 vsynce = ((mode->vsync_end - mode->vsync_start) * vscan / ilace) - 1;
1098 vbackp = (mode->vtotal - mode->vsync_end) * vscan / ilace;
1099 vblanke = vsynce + vbackp;
1100 vfrontp = (mode->vsync_start - mode->vdisplay) * vscan / ilace;
1101 vblanks = vactive - vfrontp - 1;
Roy Spliet1dce6262014-09-12 18:00:13 +02001102 /* XXX: Safe underestimate, even "0" works */
1103 vblankus = (vactive - mode->vdisplay - 2) * hactive;
1104 vblankus *= 1000;
1105 vblankus /= mode->clock;
1106
Ben Skeggs2d1d8982011-11-11 23:39:22 +10001107 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
1108 vblan2e = vactive + vsynce + vbackp;
1109 vblan2s = vblan2e + (mode->vdisplay * vscan / ilace);
1110 vactive = (vactive * 2) + 1;
Ben Skeggs2d1d8982011-11-11 23:39:22 +10001111 }
1112
Ben Skeggse225f442012-11-21 14:40:21 +10001113 ret = nv50_crtc_swap_fbs(crtc, old_fb);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001114 if (ret)
1115 return ret;
1116
Ben Skeggsde8268c2012-11-16 10:24:31 +10001117 push = evo_wait(mast, 64);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001118 if (push) {
Ben Skeggs648d4df2014-08-10 04:10:27 +10001119 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
Ben Skeggsde8268c2012-11-16 10:24:31 +10001120 evo_mthd(push, 0x0804 + (nv_crtc->index * 0x400), 2);
1121 evo_data(push, 0x00800000 | mode->clock);
1122 evo_data(push, (ilace == 2) ? 2 : 0);
Roy Splieteae73822014-10-30 22:57:45 +01001123 evo_mthd(push, 0x0810 + (nv_crtc->index * 0x400), 6);
Ben Skeggsde8268c2012-11-16 10:24:31 +10001124 evo_data(push, 0x00000000);
1125 evo_data(push, (vactive << 16) | hactive);
1126 evo_data(push, ( vsynce << 16) | hsynce);
1127 evo_data(push, (vblanke << 16) | hblanke);
1128 evo_data(push, (vblanks << 16) | hblanks);
1129 evo_data(push, (vblan2e << 16) | vblan2s);
Roy Splieteae73822014-10-30 22:57:45 +01001130 evo_mthd(push, 0x082c + (nv_crtc->index * 0x400), 1);
Ben Skeggsde8268c2012-11-16 10:24:31 +10001131 evo_data(push, 0x00000000);
1132 evo_mthd(push, 0x0900 + (nv_crtc->index * 0x400), 2);
1133 evo_data(push, 0x00000311);
1134 evo_data(push, 0x00000100);
1135 } else {
1136 evo_mthd(push, 0x0410 + (nv_crtc->index * 0x300), 6);
1137 evo_data(push, 0x00000000);
1138 evo_data(push, (vactive << 16) | hactive);
1139 evo_data(push, ( vsynce << 16) | hsynce);
1140 evo_data(push, (vblanke << 16) | hblanke);
1141 evo_data(push, (vblanks << 16) | hblanks);
1142 evo_data(push, (vblan2e << 16) | vblan2s);
1143 evo_mthd(push, 0x042c + (nv_crtc->index * 0x300), 1);
1144 evo_data(push, 0x00000000); /* ??? */
1145 evo_mthd(push, 0x0450 + (nv_crtc->index * 0x300), 3);
1146 evo_data(push, mode->clock * 1000);
1147 evo_data(push, 0x00200000); /* ??? */
1148 evo_data(push, mode->clock * 1000);
1149 evo_mthd(push, 0x04d0 + (nv_crtc->index * 0x300), 2);
1150 evo_data(push, 0x00000311);
1151 evo_data(push, 0x00000100);
1152 }
1153
1154 evo_kick(push, mast);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001155 }
1156
1157 nv_connector = nouveau_crtc_connector_get(nv_crtc);
Ben Skeggse225f442012-11-21 14:40:21 +10001158 nv50_crtc_set_dither(nv_crtc, false);
1159 nv50_crtc_set_scale(nv_crtc, false);
Roy Splieteae73822014-10-30 22:57:45 +01001160
1161 /* G94 only accepts this after setting scale */
1162 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA)
1163 nv50_crtc_set_raster_vblank_dmi(nv_crtc, vblankus);
1164
Ben Skeggse225f442012-11-21 14:40:21 +10001165 nv50_crtc_set_color_vibrance(nv_crtc, false);
Matt Roperf4510a22014-04-01 15:22:40 -07001166 nv50_crtc_set_image(nv_crtc, crtc->primary->fb, x, y, false);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001167 return 0;
1168}
1169
1170static int
Ben Skeggse225f442012-11-21 14:40:21 +10001171nv50_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001172 struct drm_framebuffer *old_fb)
1173{
Ben Skeggs77145f12012-07-31 16:16:21 +10001174 struct nouveau_drm *drm = nouveau_drm(crtc->dev);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001175 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1176 int ret;
1177
Matt Roperf4510a22014-04-01 15:22:40 -07001178 if (!crtc->primary->fb) {
Ben Skeggs77145f12012-07-31 16:16:21 +10001179 NV_DEBUG(drm, "No FB bound\n");
Ben Skeggs84e2ad82011-08-26 09:40:39 +10001180 return 0;
1181 }
1182
Ben Skeggse225f442012-11-21 14:40:21 +10001183 ret = nv50_crtc_swap_fbs(crtc, old_fb);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001184 if (ret)
1185 return ret;
1186
Ben Skeggse225f442012-11-21 14:40:21 +10001187 nv50_display_flip_stop(crtc);
Matt Roperf4510a22014-04-01 15:22:40 -07001188 nv50_crtc_set_image(nv_crtc, crtc->primary->fb, x, y, true);
1189 nv50_display_flip_next(crtc, crtc->primary->fb, NULL, 1);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001190 return 0;
1191}
1192
1193static int
Ben Skeggse225f442012-11-21 14:40:21 +10001194nv50_crtc_mode_set_base_atomic(struct drm_crtc *crtc,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001195 struct drm_framebuffer *fb, int x, int y,
1196 enum mode_set_atomic state)
1197{
1198 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggse225f442012-11-21 14:40:21 +10001199 nv50_display_flip_stop(crtc);
1200 nv50_crtc_set_image(nv_crtc, fb, x, y, true);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001201 return 0;
1202}
1203
1204static void
Ben Skeggse225f442012-11-21 14:40:21 +10001205nv50_crtc_lut_load(struct drm_crtc *crtc)
Ben Skeggs438d99e2011-07-05 16:48:06 +10001206{
Ben Skeggse225f442012-11-21 14:40:21 +10001207 struct nv50_disp *disp = nv50_disp(crtc->dev);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001208 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1209 void __iomem *lut = nvbo_kmap_obj_iovirtual(nv_crtc->lut.nvbo);
1210 int i;
1211
1212 for (i = 0; i < 256; i++) {
Ben Skeggsde8268c2012-11-16 10:24:31 +10001213 u16 r = nv_crtc->lut.r[i] >> 2;
1214 u16 g = nv_crtc->lut.g[i] >> 2;
1215 u16 b = nv_crtc->lut.b[i] >> 2;
1216
Ben Skeggs648d4df2014-08-10 04:10:27 +10001217 if (disp->disp->oclass < GF110_DISP) {
Ben Skeggsde8268c2012-11-16 10:24:31 +10001218 writew(r + 0x0000, lut + (i * 0x08) + 0);
1219 writew(g + 0x0000, lut + (i * 0x08) + 2);
1220 writew(b + 0x0000, lut + (i * 0x08) + 4);
1221 } else {
1222 writew(r + 0x6000, lut + (i * 0x20) + 0);
1223 writew(g + 0x6000, lut + (i * 0x20) + 2);
1224 writew(b + 0x6000, lut + (i * 0x20) + 4);
1225 }
Ben Skeggs438d99e2011-07-05 16:48:06 +10001226 }
1227}
1228
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001229static void
1230nv50_crtc_disable(struct drm_crtc *crtc)
1231{
1232 struct nv50_head *head = nv50_head(crtc);
Ben Skeggsefa366f2014-06-05 12:56:35 +10001233 evo_sync(crtc->dev);
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001234 if (head->image)
1235 nouveau_bo_unpin(head->image);
1236 nouveau_bo_ref(NULL, &head->image);
1237}
1238
Ben Skeggs438d99e2011-07-05 16:48:06 +10001239static int
Ben Skeggse225f442012-11-21 14:40:21 +10001240nv50_crtc_cursor_set(struct drm_crtc *crtc, struct drm_file *file_priv,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001241 uint32_t handle, uint32_t width, uint32_t height)
1242{
1243 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1244 struct drm_device *dev = crtc->dev;
1245 struct drm_gem_object *gem;
1246 struct nouveau_bo *nvbo;
1247 bool visible = (handle != 0);
1248 int i, ret = 0;
1249
1250 if (visible) {
1251 if (width != 64 || height != 64)
1252 return -EINVAL;
1253
1254 gem = drm_gem_object_lookup(dev, file_priv, handle);
1255 if (unlikely(!gem))
1256 return -ENOENT;
1257 nvbo = nouveau_gem_object(gem);
1258
1259 ret = nouveau_bo_map(nvbo);
1260 if (ret == 0) {
1261 for (i = 0; i < 64 * 64; i++) {
1262 u32 v = nouveau_bo_rd32(nvbo, i);
1263 nouveau_bo_wr32(nv_crtc->cursor.nvbo, i, v);
1264 }
1265 nouveau_bo_unmap(nvbo);
1266 }
1267
1268 drm_gem_object_unreference_unlocked(gem);
1269 }
1270
1271 if (visible != nv_crtc->cursor.visible) {
Ben Skeggse225f442012-11-21 14:40:21 +10001272 nv50_crtc_cursor_show_hide(nv_crtc, visible, true);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001273 nv_crtc->cursor.visible = visible;
1274 }
1275
1276 return ret;
1277}
1278
1279static int
Ben Skeggse225f442012-11-21 14:40:21 +10001280nv50_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
Ben Skeggs438d99e2011-07-05 16:48:06 +10001281{
Ben Skeggse225f442012-11-21 14:40:21 +10001282 struct nv50_curs *curs = nv50_curs(crtc);
1283 struct nv50_chan *chan = nv50_chan(curs);
Ben Skeggs0ad72862014-08-10 04:10:22 +10001284 nvif_wr32(&chan->user, 0x0084, (y << 16) | (x & 0xffff));
1285 nvif_wr32(&chan->user, 0x0080, 0x00000000);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001286 return 0;
1287}
1288
1289static void
Ben Skeggse225f442012-11-21 14:40:21 +10001290nv50_crtc_gamma_set(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001291 uint32_t start, uint32_t size)
1292{
1293 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Dan Carpenterbdefc8c2013-11-28 01:18:47 +03001294 u32 end = min_t(u32, start + size, 256);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001295 u32 i;
1296
1297 for (i = start; i < end; i++) {
1298 nv_crtc->lut.r[i] = r[i];
1299 nv_crtc->lut.g[i] = g[i];
1300 nv_crtc->lut.b[i] = b[i];
1301 }
1302
Ben Skeggse225f442012-11-21 14:40:21 +10001303 nv50_crtc_lut_load(crtc);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001304}
1305
1306static void
Ben Skeggse225f442012-11-21 14:40:21 +10001307nv50_crtc_destroy(struct drm_crtc *crtc)
Ben Skeggs438d99e2011-07-05 16:48:06 +10001308{
1309 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggse225f442012-11-21 14:40:21 +10001310 struct nv50_disp *disp = nv50_disp(crtc->dev);
1311 struct nv50_head *head = nv50_head(crtc);
Ben Skeggs0ad72862014-08-10 04:10:22 +10001312 struct nv50_fbdma *fbdma;
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001313
Ben Skeggs0ad72862014-08-10 04:10:22 +10001314 list_for_each_entry(fbdma, &disp->fbdma, head) {
1315 nvif_object_fini(&fbdma->base[nv_crtc->index]);
1316 }
1317
1318 nv50_dmac_destroy(&head->ovly.base, disp->disp);
1319 nv50_pioc_destroy(&head->oimm.base);
1320 nv50_dmac_destroy(&head->sync.base, disp->disp);
1321 nv50_pioc_destroy(&head->curs.base);
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001322
1323 /*XXX: this shouldn't be necessary, but the core doesn't call
1324 * disconnect() during the cleanup paths
1325 */
1326 if (head->image)
1327 nouveau_bo_unpin(head->image);
1328 nouveau_bo_ref(NULL, &head->image);
1329
Ben Skeggs438d99e2011-07-05 16:48:06 +10001330 nouveau_bo_unmap(nv_crtc->cursor.nvbo);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01001331 if (nv_crtc->cursor.nvbo)
1332 nouveau_bo_unpin(nv_crtc->cursor.nvbo);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001333 nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo);
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001334
Ben Skeggs438d99e2011-07-05 16:48:06 +10001335 nouveau_bo_unmap(nv_crtc->lut.nvbo);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01001336 if (nv_crtc->lut.nvbo)
1337 nouveau_bo_unpin(nv_crtc->lut.nvbo);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001338 nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo);
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001339
Ben Skeggs438d99e2011-07-05 16:48:06 +10001340 drm_crtc_cleanup(crtc);
1341 kfree(crtc);
1342}
1343
Ben Skeggse225f442012-11-21 14:40:21 +10001344static const struct drm_crtc_helper_funcs nv50_crtc_hfunc = {
1345 .dpms = nv50_crtc_dpms,
1346 .prepare = nv50_crtc_prepare,
1347 .commit = nv50_crtc_commit,
1348 .mode_fixup = nv50_crtc_mode_fixup,
1349 .mode_set = nv50_crtc_mode_set,
1350 .mode_set_base = nv50_crtc_mode_set_base,
1351 .mode_set_base_atomic = nv50_crtc_mode_set_base_atomic,
1352 .load_lut = nv50_crtc_lut_load,
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001353 .disable = nv50_crtc_disable,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001354};
1355
Ben Skeggse225f442012-11-21 14:40:21 +10001356static const struct drm_crtc_funcs nv50_crtc_func = {
1357 .cursor_set = nv50_crtc_cursor_set,
1358 .cursor_move = nv50_crtc_cursor_move,
1359 .gamma_set = nv50_crtc_gamma_set,
Dave Airlie5addcf02012-09-10 14:20:51 +10001360 .set_config = nouveau_crtc_set_config,
Ben Skeggse225f442012-11-21 14:40:21 +10001361 .destroy = nv50_crtc_destroy,
Ben Skeggs3376ee32011-11-12 14:28:12 +10001362 .page_flip = nouveau_crtc_page_flip,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001363};
1364
Ben Skeggsc20ab3e2011-08-25 14:09:43 +10001365static void
Ben Skeggse225f442012-11-21 14:40:21 +10001366nv50_cursor_set_pos(struct nouveau_crtc *nv_crtc, int x, int y)
Ben Skeggsc20ab3e2011-08-25 14:09:43 +10001367{
1368}
1369
1370static void
Ben Skeggse225f442012-11-21 14:40:21 +10001371nv50_cursor_set_offset(struct nouveau_crtc *nv_crtc, uint32_t offset)
Ben Skeggsc20ab3e2011-08-25 14:09:43 +10001372{
1373}
1374
Ben Skeggs438d99e2011-07-05 16:48:06 +10001375static int
Ben Skeggs0ad72862014-08-10 04:10:22 +10001376nv50_crtc_create(struct drm_device *dev, int index)
Ben Skeggs438d99e2011-07-05 16:48:06 +10001377{
Ben Skeggse225f442012-11-21 14:40:21 +10001378 struct nv50_disp *disp = nv50_disp(dev);
1379 struct nv50_head *head;
Ben Skeggs438d99e2011-07-05 16:48:06 +10001380 struct drm_crtc *crtc;
1381 int ret, i;
1382
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001383 head = kzalloc(sizeof(*head), GFP_KERNEL);
1384 if (!head)
Ben Skeggs438d99e2011-07-05 16:48:06 +10001385 return -ENOMEM;
1386
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001387 head->base.index = index;
Ben Skeggse225f442012-11-21 14:40:21 +10001388 head->base.set_dither = nv50_crtc_set_dither;
1389 head->base.set_scale = nv50_crtc_set_scale;
1390 head->base.set_color_vibrance = nv50_crtc_set_color_vibrance;
Ben Skeggsf9887d02012-11-21 13:03:42 +10001391 head->base.color_vibrance = 50;
1392 head->base.vibrant_hue = 0;
Ben Skeggse225f442012-11-21 14:40:21 +10001393 head->base.cursor.set_offset = nv50_cursor_set_offset;
1394 head->base.cursor.set_pos = nv50_cursor_set_pos;
Ben Skeggs438d99e2011-07-05 16:48:06 +10001395 for (i = 0; i < 256; i++) {
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001396 head->base.lut.r[i] = i << 8;
1397 head->base.lut.g[i] = i << 8;
1398 head->base.lut.b[i] = i << 8;
Ben Skeggs438d99e2011-07-05 16:48:06 +10001399 }
1400
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001401 crtc = &head->base.base;
Ben Skeggse225f442012-11-21 14:40:21 +10001402 drm_crtc_init(dev, crtc, &nv50_crtc_func);
1403 drm_crtc_helper_add(crtc, &nv50_crtc_hfunc);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001404 drm_mode_crtc_set_gamma_size(crtc, 256);
1405
Ben Skeggs8ea0d4a2011-07-07 14:49:24 +10001406 ret = nouveau_bo_new(dev, 8192, 0x100, TTM_PL_FLAG_VRAM,
Maarten Lankhorstbb6178b2014-01-09 11:03:15 +01001407 0, 0x0000, NULL, NULL, &head->base.lut.nvbo);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001408 if (!ret) {
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001409 ret = nouveau_bo_pin(head->base.lut.nvbo, TTM_PL_FLAG_VRAM);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01001410 if (!ret) {
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001411 ret = nouveau_bo_map(head->base.lut.nvbo);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01001412 if (ret)
1413 nouveau_bo_unpin(head->base.lut.nvbo);
1414 }
Ben Skeggs438d99e2011-07-05 16:48:06 +10001415 if (ret)
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001416 nouveau_bo_ref(NULL, &head->base.lut.nvbo);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001417 }
1418
1419 if (ret)
1420 goto out;
1421
Ben Skeggse225f442012-11-21 14:40:21 +10001422 nv50_crtc_lut_load(crtc);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001423
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001424 /* allocate cursor resources */
Ben Skeggs410f3ec2014-08-10 04:10:25 +10001425 ret = nv50_curs_create(disp->disp, index, &head->curs);
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001426 if (ret)
1427 goto out;
1428
1429 ret = nouveau_bo_new(dev, 64 * 64 * 4, 0x100, TTM_PL_FLAG_VRAM,
Maarten Lankhorstbb6178b2014-01-09 11:03:15 +01001430 0, 0x0000, NULL, NULL, &head->base.cursor.nvbo);
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001431 if (!ret) {
1432 ret = nouveau_bo_pin(head->base.cursor.nvbo, TTM_PL_FLAG_VRAM);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01001433 if (!ret) {
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001434 ret = nouveau_bo_map(head->base.cursor.nvbo);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01001435 if (ret)
1436 nouveau_bo_unpin(head->base.lut.nvbo);
1437 }
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001438 if (ret)
1439 nouveau_bo_ref(NULL, &head->base.cursor.nvbo);
1440 }
1441
1442 if (ret)
1443 goto out;
1444
1445 /* allocate page flip / sync resources */
Ben Skeggs410f3ec2014-08-10 04:10:25 +10001446 ret = nv50_base_create(disp->disp, index, disp->sync->bo.offset,
1447 &head->sync);
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001448 if (ret)
1449 goto out;
1450
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +10001451 head->sync.addr = EVO_FLIP_SEM0(index);
1452 head->sync.data = 0x00000000;
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001453
1454 /* allocate overlay resources */
Ben Skeggs410f3ec2014-08-10 04:10:25 +10001455 ret = nv50_oimm_create(disp->disp, index, &head->oimm);
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001456 if (ret)
1457 goto out;
1458
Ben Skeggs410f3ec2014-08-10 04:10:25 +10001459 ret = nv50_ovly_create(disp->disp, index, disp->sync->bo.offset,
1460 &head->ovly);
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001461 if (ret)
1462 goto out;
1463
Ben Skeggs438d99e2011-07-05 16:48:06 +10001464out:
1465 if (ret)
Ben Skeggse225f442012-11-21 14:40:21 +10001466 nv50_crtc_destroy(crtc);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001467 return ret;
1468}
1469
1470/******************************************************************************
Ben Skeggs26f6d882011-07-04 16:25:18 +10001471 * DAC
1472 *****************************************************************************/
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001473static void
Ben Skeggse225f442012-11-21 14:40:21 +10001474nv50_dac_dpms(struct drm_encoder *encoder, int mode)
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001475{
1476 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
Ben Skeggse225f442012-11-21 14:40:21 +10001477 struct nv50_disp *disp = nv50_disp(encoder->dev);
Ben Skeggsbf0eb892014-08-10 04:10:26 +10001478 struct {
1479 struct nv50_disp_mthd_v1 base;
1480 struct nv50_disp_dac_pwr_v0 pwr;
1481 } args = {
1482 .base.version = 1,
1483 .base.method = NV50_DISP_MTHD_V1_DAC_PWR,
1484 .base.hasht = nv_encoder->dcb->hasht,
1485 .base.hashm = nv_encoder->dcb->hashm,
1486 .pwr.state = 1,
1487 .pwr.data = 1,
1488 .pwr.vsync = (mode != DRM_MODE_DPMS_SUSPEND &&
1489 mode != DRM_MODE_DPMS_OFF),
1490 .pwr.hsync = (mode != DRM_MODE_DPMS_STANDBY &&
1491 mode != DRM_MODE_DPMS_OFF),
1492 };
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001493
Ben Skeggsbf0eb892014-08-10 04:10:26 +10001494 nvif_mthd(disp->disp, 0, &args, sizeof(args));
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001495}
1496
1497static bool
Ben Skeggse225f442012-11-21 14:40:21 +10001498nv50_dac_mode_fixup(struct drm_encoder *encoder,
Laurent Pincharte811f5a2012-07-17 17:56:50 +02001499 const struct drm_display_mode *mode,
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001500 struct drm_display_mode *adjusted_mode)
1501{
1502 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1503 struct nouveau_connector *nv_connector;
1504
1505 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1506 if (nv_connector && nv_connector->native_mode) {
1507 if (nv_connector->scaling_mode != DRM_MODE_SCALE_NONE) {
1508 int id = adjusted_mode->base.id;
1509 *adjusted_mode = *nv_connector->native_mode;
1510 adjusted_mode->base.id = id;
1511 }
1512 }
1513
1514 return true;
1515}
1516
1517static void
Ben Skeggse225f442012-11-21 14:40:21 +10001518nv50_dac_commit(struct drm_encoder *encoder)
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001519{
1520}
1521
1522static void
Ben Skeggse225f442012-11-21 14:40:21 +10001523nv50_dac_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001524 struct drm_display_mode *adjusted_mode)
1525{
Ben Skeggse225f442012-11-21 14:40:21 +10001526 struct nv50_mast *mast = nv50_mast(encoder->dev);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001527 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1528 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
Ben Skeggs97b19b52012-11-16 11:21:37 +10001529 u32 *push;
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001530
Ben Skeggse225f442012-11-21 14:40:21 +10001531 nv50_dac_dpms(encoder, DRM_MODE_DPMS_ON);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001532
Ben Skeggs97b19b52012-11-16 11:21:37 +10001533 push = evo_wait(mast, 8);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001534 if (push) {
Ben Skeggs648d4df2014-08-10 04:10:27 +10001535 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
Ben Skeggs97b19b52012-11-16 11:21:37 +10001536 u32 syncs = 0x00000000;
1537
1538 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1539 syncs |= 0x00000001;
1540 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1541 syncs |= 0x00000002;
1542
1543 evo_mthd(push, 0x0400 + (nv_encoder->or * 0x080), 2);
1544 evo_data(push, 1 << nv_crtc->index);
1545 evo_data(push, syncs);
1546 } else {
1547 u32 magic = 0x31ec6000 | (nv_crtc->index << 25);
1548 u32 syncs = 0x00000001;
1549
1550 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1551 syncs |= 0x00000008;
1552 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1553 syncs |= 0x00000010;
1554
1555 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1556 magic |= 0x00000001;
1557
1558 evo_mthd(push, 0x0404 + (nv_crtc->index * 0x300), 2);
1559 evo_data(push, syncs);
1560 evo_data(push, magic);
1561 evo_mthd(push, 0x0180 + (nv_encoder->or * 0x020), 1);
1562 evo_data(push, 1 << nv_crtc->index);
1563 }
1564
1565 evo_kick(push, mast);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001566 }
1567
1568 nv_encoder->crtc = encoder->crtc;
1569}
1570
1571static void
Ben Skeggse225f442012-11-21 14:40:21 +10001572nv50_dac_disconnect(struct drm_encoder *encoder)
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001573{
1574 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
Ben Skeggse225f442012-11-21 14:40:21 +10001575 struct nv50_mast *mast = nv50_mast(encoder->dev);
Ben Skeggs97b19b52012-11-16 11:21:37 +10001576 const int or = nv_encoder->or;
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001577 u32 *push;
1578
1579 if (nv_encoder->crtc) {
Ben Skeggse225f442012-11-21 14:40:21 +10001580 nv50_crtc_prepare(nv_encoder->crtc);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001581
Ben Skeggs97b19b52012-11-16 11:21:37 +10001582 push = evo_wait(mast, 4);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001583 if (push) {
Ben Skeggs648d4df2014-08-10 04:10:27 +10001584 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
Ben Skeggs97b19b52012-11-16 11:21:37 +10001585 evo_mthd(push, 0x0400 + (or * 0x080), 1);
1586 evo_data(push, 0x00000000);
1587 } else {
1588 evo_mthd(push, 0x0180 + (or * 0x020), 1);
1589 evo_data(push, 0x00000000);
1590 }
Ben Skeggs97b19b52012-11-16 11:21:37 +10001591 evo_kick(push, mast);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001592 }
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001593 }
Ben Skeggs97b19b52012-11-16 11:21:37 +10001594
1595 nv_encoder->crtc = NULL;
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001596}
1597
Ben Skeggsb6d8e7e2011-07-07 09:51:29 +10001598static enum drm_connector_status
Ben Skeggse225f442012-11-21 14:40:21 +10001599nv50_dac_detect(struct drm_encoder *encoder, struct drm_connector *connector)
Ben Skeggsb6d8e7e2011-07-07 09:51:29 +10001600{
Ben Skeggsc4abd312014-08-10 04:10:26 +10001601 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
Ben Skeggse225f442012-11-21 14:40:21 +10001602 struct nv50_disp *disp = nv50_disp(encoder->dev);
Ben Skeggsc4abd312014-08-10 04:10:26 +10001603 struct {
1604 struct nv50_disp_mthd_v1 base;
1605 struct nv50_disp_dac_load_v0 load;
1606 } args = {
1607 .base.version = 1,
1608 .base.method = NV50_DISP_MTHD_V1_DAC_LOAD,
1609 .base.hasht = nv_encoder->dcb->hasht,
1610 .base.hashm = nv_encoder->dcb->hashm,
1611 };
1612 int ret;
Ben Skeggsb6819932011-07-08 11:14:50 +10001613
Ben Skeggsc4abd312014-08-10 04:10:26 +10001614 args.load.data = nouveau_drm(encoder->dev)->vbios.dactestval;
1615 if (args.load.data == 0)
1616 args.load.data = 340;
1617
1618 ret = nvif_mthd(disp->disp, 0, &args, sizeof(args));
1619 if (ret || !args.load.load)
Ben Skeggs35b21d32012-11-08 12:08:55 +10001620 return connector_status_disconnected;
Ben Skeggsb6819932011-07-08 11:14:50 +10001621
Ben Skeggs35b21d32012-11-08 12:08:55 +10001622 return connector_status_connected;
Ben Skeggsb6d8e7e2011-07-07 09:51:29 +10001623}
1624
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001625static void
Ben Skeggse225f442012-11-21 14:40:21 +10001626nv50_dac_destroy(struct drm_encoder *encoder)
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001627{
1628 drm_encoder_cleanup(encoder);
1629 kfree(encoder);
1630}
1631
Ben Skeggse225f442012-11-21 14:40:21 +10001632static const struct drm_encoder_helper_funcs nv50_dac_hfunc = {
1633 .dpms = nv50_dac_dpms,
1634 .mode_fixup = nv50_dac_mode_fixup,
1635 .prepare = nv50_dac_disconnect,
1636 .commit = nv50_dac_commit,
1637 .mode_set = nv50_dac_mode_set,
1638 .disable = nv50_dac_disconnect,
1639 .get_crtc = nv50_display_crtc_get,
1640 .detect = nv50_dac_detect
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001641};
1642
Ben Skeggse225f442012-11-21 14:40:21 +10001643static const struct drm_encoder_funcs nv50_dac_func = {
1644 .destroy = nv50_dac_destroy,
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001645};
1646
1647static int
Ben Skeggse225f442012-11-21 14:40:21 +10001648nv50_dac_create(struct drm_connector *connector, struct dcb_output *dcbe)
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001649{
Ben Skeggs5ed50202013-02-11 20:15:03 +10001650 struct nouveau_drm *drm = nouveau_drm(connector->dev);
Ben Skeggs967e7bd2014-08-10 04:10:22 +10001651 struct nouveau_i2c *i2c = nvkm_i2c(&drm->device);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001652 struct nouveau_encoder *nv_encoder;
1653 struct drm_encoder *encoder;
Ben Skeggs5ed50202013-02-11 20:15:03 +10001654 int type = DRM_MODE_ENCODER_DAC;
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001655
1656 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
1657 if (!nv_encoder)
1658 return -ENOMEM;
1659 nv_encoder->dcb = dcbe;
1660 nv_encoder->or = ffs(dcbe->or) - 1;
Ben Skeggs5ed50202013-02-11 20:15:03 +10001661 nv_encoder->i2c = i2c->find(i2c, dcbe->i2c_index);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001662
1663 encoder = to_drm_encoder(nv_encoder);
1664 encoder->possible_crtcs = dcbe->heads;
1665 encoder->possible_clones = 0;
Ben Skeggs5ed50202013-02-11 20:15:03 +10001666 drm_encoder_init(connector->dev, encoder, &nv50_dac_func, type);
Ben Skeggse225f442012-11-21 14:40:21 +10001667 drm_encoder_helper_add(encoder, &nv50_dac_hfunc);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001668
1669 drm_mode_connector_attach_encoder(connector, encoder);
1670 return 0;
1671}
Ben Skeggs26f6d882011-07-04 16:25:18 +10001672
1673/******************************************************************************
Ben Skeggs78951d22011-11-11 18:13:13 +10001674 * Audio
1675 *****************************************************************************/
1676static void
Ben Skeggse225f442012-11-21 14:40:21 +10001677nv50_audio_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode)
Ben Skeggs78951d22011-11-11 18:13:13 +10001678{
1679 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
Ben Skeggscc2a9072014-09-15 21:29:05 +10001680 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
Ben Skeggs78951d22011-11-11 18:13:13 +10001681 struct nouveau_connector *nv_connector;
Ben Skeggse225f442012-11-21 14:40:21 +10001682 struct nv50_disp *disp = nv50_disp(encoder->dev);
Ben Skeggsd889c522014-09-15 21:11:51 +10001683 struct __packed {
1684 struct {
1685 struct nv50_disp_mthd_v1 mthd;
1686 struct nv50_disp_sor_hda_eld_v0 eld;
1687 } base;
Ben Skeggs120b0c32014-08-10 04:10:26 +10001688 u8 data[sizeof(nv_connector->base.eld)];
1689 } args = {
Ben Skeggsd889c522014-09-15 21:11:51 +10001690 .base.mthd.version = 1,
1691 .base.mthd.method = NV50_DISP_MTHD_V1_SOR_HDA_ELD,
1692 .base.mthd.hasht = nv_encoder->dcb->hasht,
Ben Skeggscc2a9072014-09-15 21:29:05 +10001693 .base.mthd.hashm = (0xf0ff & nv_encoder->dcb->hashm) |
1694 (0x0100 << nv_crtc->index),
Ben Skeggs120b0c32014-08-10 04:10:26 +10001695 };
Ben Skeggs78951d22011-11-11 18:13:13 +10001696
1697 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1698 if (!drm_detect_monitor_audio(nv_connector->edid))
1699 return;
1700
Ben Skeggs78951d22011-11-11 18:13:13 +10001701 drm_edid_to_eld(&nv_connector->base, nv_connector->edid);
Ben Skeggs120b0c32014-08-10 04:10:26 +10001702 memcpy(args.data, nv_connector->base.eld, sizeof(args.data));
Ben Skeggs78951d22011-11-11 18:13:13 +10001703
Ben Skeggsd889c522014-09-15 21:11:51 +10001704 nvif_mthd(disp->disp, 0, &args, sizeof(args.base) + args.data[2] * 4);
Ben Skeggs78951d22011-11-11 18:13:13 +10001705}
1706
1707static void
Ben Skeggscc2a9072014-09-15 21:29:05 +10001708nv50_audio_disconnect(struct drm_encoder *encoder, struct nouveau_crtc *nv_crtc)
Ben Skeggs78951d22011-11-11 18:13:13 +10001709{
1710 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
Ben Skeggse225f442012-11-21 14:40:21 +10001711 struct nv50_disp *disp = nv50_disp(encoder->dev);
Ben Skeggs120b0c32014-08-10 04:10:26 +10001712 struct {
1713 struct nv50_disp_mthd_v1 base;
1714 struct nv50_disp_sor_hda_eld_v0 eld;
1715 } args = {
1716 .base.version = 1,
1717 .base.method = NV50_DISP_MTHD_V1_SOR_HDA_ELD,
1718 .base.hasht = nv_encoder->dcb->hasht,
Ben Skeggscc2a9072014-09-15 21:29:05 +10001719 .base.hashm = (0xf0ff & nv_encoder->dcb->hashm) |
1720 (0x0100 << nv_crtc->index),
Ben Skeggs120b0c32014-08-10 04:10:26 +10001721 };
Ben Skeggs78951d22011-11-11 18:13:13 +10001722
Ben Skeggs120b0c32014-08-10 04:10:26 +10001723 nvif_mthd(disp->disp, 0, &args, sizeof(args));
Ben Skeggs78951d22011-11-11 18:13:13 +10001724}
1725
1726/******************************************************************************
1727 * HDMI
1728 *****************************************************************************/
1729static void
Ben Skeggse225f442012-11-21 14:40:21 +10001730nv50_hdmi_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode)
Ben Skeggs78951d22011-11-11 18:13:13 +10001731{
Ben Skeggs64d9cc02011-11-11 19:51:20 +10001732 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1733 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
Ben Skeggse225f442012-11-21 14:40:21 +10001734 struct nv50_disp *disp = nv50_disp(encoder->dev);
Ben Skeggse00f2232014-08-10 04:10:26 +10001735 struct {
1736 struct nv50_disp_mthd_v1 base;
1737 struct nv50_disp_sor_hdmi_pwr_v0 pwr;
1738 } args = {
1739 .base.version = 1,
1740 .base.method = NV50_DISP_MTHD_V1_SOR_HDMI_PWR,
1741 .base.hasht = nv_encoder->dcb->hasht,
1742 .base.hashm = (0xf0ff & nv_encoder->dcb->hashm) |
1743 (0x0100 << nv_crtc->index),
1744 .pwr.state = 1,
1745 .pwr.rekey = 56, /* binary driver, and tegra, constant */
1746 };
1747 struct nouveau_connector *nv_connector;
Ben Skeggs64d9cc02011-11-11 19:51:20 +10001748 u32 max_ac_packet;
1749
1750 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1751 if (!drm_detect_hdmi_monitor(nv_connector->edid))
1752 return;
1753
1754 max_ac_packet = mode->htotal - mode->hdisplay;
Ben Skeggse00f2232014-08-10 04:10:26 +10001755 max_ac_packet -= args.pwr.rekey;
Ben Skeggs64d9cc02011-11-11 19:51:20 +10001756 max_ac_packet -= 18; /* constant from tegra */
Ben Skeggse00f2232014-08-10 04:10:26 +10001757 args.pwr.max_ac_packet = max_ac_packet / 32;
Ben Skeggs64d9cc02011-11-11 19:51:20 +10001758
Ben Skeggse00f2232014-08-10 04:10:26 +10001759 nvif_mthd(disp->disp, 0, &args, sizeof(args));
Ben Skeggse225f442012-11-21 14:40:21 +10001760 nv50_audio_mode_set(encoder, mode);
Ben Skeggs78951d22011-11-11 18:13:13 +10001761}
1762
1763static void
Ben Skeggse84a35a2014-06-05 10:59:55 +10001764nv50_hdmi_disconnect(struct drm_encoder *encoder, struct nouveau_crtc *nv_crtc)
Ben Skeggs78951d22011-11-11 18:13:13 +10001765{
Ben Skeggs64d9cc02011-11-11 19:51:20 +10001766 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
Ben Skeggse225f442012-11-21 14:40:21 +10001767 struct nv50_disp *disp = nv50_disp(encoder->dev);
Ben Skeggse00f2232014-08-10 04:10:26 +10001768 struct {
1769 struct nv50_disp_mthd_v1 base;
1770 struct nv50_disp_sor_hdmi_pwr_v0 pwr;
1771 } args = {
1772 .base.version = 1,
1773 .base.method = NV50_DISP_MTHD_V1_SOR_HDMI_PWR,
1774 .base.hasht = nv_encoder->dcb->hasht,
1775 .base.hashm = (0xf0ff & nv_encoder->dcb->hashm) |
1776 (0x0100 << nv_crtc->index),
1777 };
Ben Skeggs64d9cc02011-11-11 19:51:20 +10001778
Ben Skeggse00f2232014-08-10 04:10:26 +10001779 nvif_mthd(disp->disp, 0, &args, sizeof(args));
Ben Skeggs78951d22011-11-11 18:13:13 +10001780}
1781
1782/******************************************************************************
Ben Skeggs26f6d882011-07-04 16:25:18 +10001783 * SOR
1784 *****************************************************************************/
Ben Skeggs6e83fda2012-03-11 01:28:48 +10001785static void
Ben Skeggse225f442012-11-21 14:40:21 +10001786nv50_sor_dpms(struct drm_encoder *encoder, int mode)
Ben Skeggs83fc0832011-07-05 13:08:40 +10001787{
1788 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
Ben Skeggsd55b4af2014-08-10 04:10:26 +10001789 struct nv50_disp *disp = nv50_disp(encoder->dev);
1790 struct {
1791 struct nv50_disp_mthd_v1 base;
1792 struct nv50_disp_sor_pwr_v0 pwr;
1793 } args = {
1794 .base.version = 1,
1795 .base.method = NV50_DISP_MTHD_V1_SOR_PWR,
1796 .base.hasht = nv_encoder->dcb->hasht,
1797 .base.hashm = nv_encoder->dcb->hashm,
1798 .pwr.state = mode == DRM_MODE_DPMS_ON,
1799 };
Ben Skeggsc02ed2b2014-08-10 04:10:27 +10001800 struct {
1801 struct nv50_disp_mthd_v1 base;
1802 struct nv50_disp_sor_dp_pwr_v0 pwr;
1803 } link = {
1804 .base.version = 1,
1805 .base.method = NV50_DISP_MTHD_V1_SOR_DP_PWR,
1806 .base.hasht = nv_encoder->dcb->hasht,
1807 .base.hashm = nv_encoder->dcb->hashm,
1808 .pwr.state = mode == DRM_MODE_DPMS_ON,
1809 };
Ben Skeggs83fc0832011-07-05 13:08:40 +10001810 struct drm_device *dev = encoder->dev;
1811 struct drm_encoder *partner;
Ben Skeggs83fc0832011-07-05 13:08:40 +10001812
1813 nv_encoder->last_dpms = mode;
1814
1815 list_for_each_entry(partner, &dev->mode_config.encoder_list, head) {
1816 struct nouveau_encoder *nv_partner = nouveau_encoder(partner);
1817
1818 if (partner->encoder_type != DRM_MODE_ENCODER_TMDS)
1819 continue;
1820
1821 if (nv_partner != nv_encoder &&
Ben Skeggs26cfa812011-11-17 09:10:02 +10001822 nv_partner->dcb->or == nv_encoder->dcb->or) {
Ben Skeggs83fc0832011-07-05 13:08:40 +10001823 if (nv_partner->last_dpms == DRM_MODE_DPMS_ON)
1824 return;
1825 break;
1826 }
1827 }
1828
Ben Skeggs48743222014-05-31 01:48:06 +10001829 if (nv_encoder->dcb->type == DCB_OUTPUT_DP) {
Ben Skeggsd55b4af2014-08-10 04:10:26 +10001830 args.pwr.state = 1;
1831 nvif_mthd(disp->disp, 0, &args, sizeof(args));
Ben Skeggsc02ed2b2014-08-10 04:10:27 +10001832 nvif_mthd(disp->disp, 0, &link, sizeof(link));
Ben Skeggs48743222014-05-31 01:48:06 +10001833 } else {
Ben Skeggsd55b4af2014-08-10 04:10:26 +10001834 nvif_mthd(disp->disp, 0, &args, sizeof(args));
Ben Skeggs48743222014-05-31 01:48:06 +10001835 }
Ben Skeggs83fc0832011-07-05 13:08:40 +10001836}
1837
1838static bool
Ben Skeggse225f442012-11-21 14:40:21 +10001839nv50_sor_mode_fixup(struct drm_encoder *encoder,
Laurent Pincharte811f5a2012-07-17 17:56:50 +02001840 const struct drm_display_mode *mode,
Ben Skeggs83fc0832011-07-05 13:08:40 +10001841 struct drm_display_mode *adjusted_mode)
1842{
1843 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1844 struct nouveau_connector *nv_connector;
1845
1846 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1847 if (nv_connector && nv_connector->native_mode) {
1848 if (nv_connector->scaling_mode != DRM_MODE_SCALE_NONE) {
1849 int id = adjusted_mode->base.id;
1850 *adjusted_mode = *nv_connector->native_mode;
1851 adjusted_mode->base.id = id;
1852 }
1853 }
1854
1855 return true;
1856}
1857
1858static void
Ben Skeggse84a35a2014-06-05 10:59:55 +10001859nv50_sor_ctrl(struct nouveau_encoder *nv_encoder, u32 mask, u32 data)
1860{
1861 struct nv50_mast *mast = nv50_mast(nv_encoder->base.base.dev);
1862 u32 temp = (nv_encoder->ctrl & ~mask) | (data & mask), *push;
1863 if (temp != nv_encoder->ctrl && (push = evo_wait(mast, 2))) {
Ben Skeggs648d4df2014-08-10 04:10:27 +10001864 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
Ben Skeggse84a35a2014-06-05 10:59:55 +10001865 evo_mthd(push, 0x0600 + (nv_encoder->or * 0x40), 1);
1866 evo_data(push, (nv_encoder->ctrl = temp));
1867 } else {
1868 evo_mthd(push, 0x0200 + (nv_encoder->or * 0x20), 1);
1869 evo_data(push, (nv_encoder->ctrl = temp));
1870 }
1871 evo_kick(push, mast);
1872 }
1873}
1874
1875static void
Ben Skeggse225f442012-11-21 14:40:21 +10001876nv50_sor_disconnect(struct drm_encoder *encoder)
Ben Skeggs4cbb0f82012-03-12 15:23:44 +10001877{
1878 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
Ben Skeggse84a35a2014-06-05 10:59:55 +10001879 struct nouveau_crtc *nv_crtc = nouveau_crtc(nv_encoder->crtc);
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001880
1881 nv_encoder->last_dpms = DRM_MODE_DPMS_OFF;
1882 nv_encoder->crtc = NULL;
Ben Skeggse84a35a2014-06-05 10:59:55 +10001883
1884 if (nv_crtc) {
1885 nv50_crtc_prepare(&nv_crtc->base);
1886 nv50_sor_ctrl(nv_encoder, 1 << nv_crtc->index, 0);
Ben Skeggscc2a9072014-09-15 21:29:05 +10001887 nv50_audio_disconnect(encoder, nv_crtc);
Ben Skeggse84a35a2014-06-05 10:59:55 +10001888 nv50_hdmi_disconnect(&nv_encoder->base.base, nv_crtc);
1889 }
Ben Skeggs4cbb0f82012-03-12 15:23:44 +10001890}
1891
1892static void
Ben Skeggse225f442012-11-21 14:40:21 +10001893nv50_sor_commit(struct drm_encoder *encoder)
Ben Skeggs83fc0832011-07-05 13:08:40 +10001894{
1895}
1896
1897static void
Ben Skeggse225f442012-11-21 14:40:21 +10001898nv50_sor_mode_set(struct drm_encoder *encoder, struct drm_display_mode *umode,
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001899 struct drm_display_mode *mode)
Ben Skeggs83fc0832011-07-05 13:08:40 +10001900{
Ben Skeggsa3761fa2014-08-10 04:10:27 +10001901 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1902 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
1903 struct {
1904 struct nv50_disp_mthd_v1 base;
1905 struct nv50_disp_sor_lvds_script_v0 lvds;
1906 } lvds = {
1907 .base.version = 1,
1908 .base.method = NV50_DISP_MTHD_V1_SOR_LVDS_SCRIPT,
1909 .base.hasht = nv_encoder->dcb->hasht,
1910 .base.hashm = nv_encoder->dcb->hashm,
1911 };
Ben Skeggse225f442012-11-21 14:40:21 +10001912 struct nv50_disp *disp = nv50_disp(encoder->dev);
1913 struct nv50_mast *mast = nv50_mast(encoder->dev);
Ben Skeggs78951d22011-11-11 18:13:13 +10001914 struct drm_device *dev = encoder->dev;
Ben Skeggs77145f12012-07-31 16:16:21 +10001915 struct nouveau_drm *drm = nouveau_drm(dev);
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001916 struct nouveau_connector *nv_connector;
Ben Skeggs77145f12012-07-31 16:16:21 +10001917 struct nvbios *bios = &drm->vbios;
Ben Skeggsa3761fa2014-08-10 04:10:27 +10001918 u32 mask, ctrl;
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001919 u8 owner = 1 << nv_crtc->index;
1920 u8 proto = 0xf;
1921 u8 depth = 0x0;
Ben Skeggs83fc0832011-07-05 13:08:40 +10001922
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001923 nv_connector = nouveau_encoder_connector_get(nv_encoder);
Ben Skeggse84a35a2014-06-05 10:59:55 +10001924 nv_encoder->crtc = encoder->crtc;
1925
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001926 switch (nv_encoder->dcb->type) {
Ben Skeggscb75d972012-07-11 10:44:20 +10001927 case DCB_OUTPUT_TMDS:
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001928 if (nv_encoder->dcb->sorconf.link & 1) {
1929 if (mode->clock < 165000)
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001930 proto = 0x1;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001931 else
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001932 proto = 0x5;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001933 } else {
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001934 proto = 0x2;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001935 }
Ben Skeggs83fc0832011-07-05 13:08:40 +10001936
Ben Skeggse84a35a2014-06-05 10:59:55 +10001937 nv50_hdmi_mode_set(&nv_encoder->base.base, mode);
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001938 break;
Ben Skeggscb75d972012-07-11 10:44:20 +10001939 case DCB_OUTPUT_LVDS:
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001940 proto = 0x0;
1941
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001942 if (bios->fp_no_ddc) {
1943 if (bios->fp.dual_link)
Ben Skeggsa3761fa2014-08-10 04:10:27 +10001944 lvds.lvds.script |= 0x0100;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001945 if (bios->fp.if_is_24bit)
Ben Skeggsa3761fa2014-08-10 04:10:27 +10001946 lvds.lvds.script |= 0x0200;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001947 } else {
Ben Skeggsbefb51e2011-11-18 10:23:59 +10001948 if (nv_connector->type == DCB_CONNECTOR_LVDS_SPWG) {
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001949 if (((u8 *)nv_connector->edid)[121] == 2)
Ben Skeggsa3761fa2014-08-10 04:10:27 +10001950 lvds.lvds.script |= 0x0100;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001951 } else
1952 if (mode->clock >= bios->fp.duallink_transition_clk) {
Ben Skeggsa3761fa2014-08-10 04:10:27 +10001953 lvds.lvds.script |= 0x0100;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001954 }
1955
Ben Skeggsa3761fa2014-08-10 04:10:27 +10001956 if (lvds.lvds.script & 0x0100) {
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001957 if (bios->fp.strapless_is_24bit & 2)
Ben Skeggsa3761fa2014-08-10 04:10:27 +10001958 lvds.lvds.script |= 0x0200;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001959 } else {
1960 if (bios->fp.strapless_is_24bit & 1)
Ben Skeggsa3761fa2014-08-10 04:10:27 +10001961 lvds.lvds.script |= 0x0200;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001962 }
1963
1964 if (nv_connector->base.display_info.bpc == 8)
Ben Skeggsa3761fa2014-08-10 04:10:27 +10001965 lvds.lvds.script |= 0x0200;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001966 }
Ben Skeggs4a230fa2012-11-09 11:25:37 +10001967
Ben Skeggsa3761fa2014-08-10 04:10:27 +10001968 nvif_mthd(disp->disp, 0, &lvds, sizeof(lvds));
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001969 break;
Ben Skeggscb75d972012-07-11 10:44:20 +10001970 case DCB_OUTPUT_DP:
Ben Skeggs3488c572012-03-12 11:42:20 +10001971 if (nv_connector->base.display_info.bpc == 6) {
Ben Skeggs6e83fda2012-03-11 01:28:48 +10001972 nv_encoder->dp.datarate = mode->clock * 18 / 8;
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001973 depth = 0x2;
Ben Skeggsbf2c8862012-11-21 14:49:54 +10001974 } else
1975 if (nv_connector->base.display_info.bpc == 8) {
Ben Skeggs6e83fda2012-03-11 01:28:48 +10001976 nv_encoder->dp.datarate = mode->clock * 24 / 8;
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001977 depth = 0x5;
Ben Skeggsbf2c8862012-11-21 14:49:54 +10001978 } else {
1979 nv_encoder->dp.datarate = mode->clock * 30 / 8;
1980 depth = 0x6;
Ben Skeggs3488c572012-03-12 11:42:20 +10001981 }
Ben Skeggs6e83fda2012-03-11 01:28:48 +10001982
1983 if (nv_encoder->dcb->sorconf.link & 1)
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001984 proto = 0x8;
Ben Skeggs6e83fda2012-03-11 01:28:48 +10001985 else
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001986 proto = 0x9;
Ben Skeggs3eee8642014-09-15 15:20:47 +10001987 nv50_audio_mode_set(encoder, mode);
Ben Skeggs6e83fda2012-03-11 01:28:48 +10001988 break;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001989 default:
1990 BUG_ON(1);
1991 break;
1992 }
Ben Skeggsff8ff502011-07-08 11:53:37 +10001993
Ben Skeggse84a35a2014-06-05 10:59:55 +10001994 nv50_sor_dpms(&nv_encoder->base.base, DRM_MODE_DPMS_ON);
Ben Skeggs83fc0832011-07-05 13:08:40 +10001995
Ben Skeggs648d4df2014-08-10 04:10:27 +10001996 if (nv50_vers(mast) >= GF110_DISP) {
Ben Skeggse84a35a2014-06-05 10:59:55 +10001997 u32 *push = evo_wait(mast, 3);
1998 if (push) {
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001999 u32 magic = 0x31ec6000 | (nv_crtc->index << 25);
2000 u32 syncs = 0x00000001;
2001
2002 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
2003 syncs |= 0x00000008;
2004 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
2005 syncs |= 0x00000010;
2006
2007 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
2008 magic |= 0x00000001;
2009
2010 evo_mthd(push, 0x0404 + (nv_crtc->index * 0x300), 2);
2011 evo_data(push, syncs | (depth << 6));
2012 evo_data(push, magic);
Ben Skeggse84a35a2014-06-05 10:59:55 +10002013 evo_kick(push, mast);
Ben Skeggs419e8dc2012-11-16 11:40:34 +10002014 }
2015
Ben Skeggse84a35a2014-06-05 10:59:55 +10002016 ctrl = proto << 8;
2017 mask = 0x00000f00;
2018 } else {
2019 ctrl = (depth << 16) | (proto << 8);
2020 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
2021 ctrl |= 0x00001000;
2022 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
2023 ctrl |= 0x00002000;
2024 mask = 0x000f3f00;
Ben Skeggs83fc0832011-07-05 13:08:40 +10002025 }
2026
Ben Skeggse84a35a2014-06-05 10:59:55 +10002027 nv50_sor_ctrl(nv_encoder, mask | owner, ctrl | owner);
Ben Skeggs83fc0832011-07-05 13:08:40 +10002028}
2029
2030static void
Ben Skeggse225f442012-11-21 14:40:21 +10002031nv50_sor_destroy(struct drm_encoder *encoder)
Ben Skeggs83fc0832011-07-05 13:08:40 +10002032{
2033 drm_encoder_cleanup(encoder);
2034 kfree(encoder);
2035}
2036
Ben Skeggse225f442012-11-21 14:40:21 +10002037static const struct drm_encoder_helper_funcs nv50_sor_hfunc = {
2038 .dpms = nv50_sor_dpms,
2039 .mode_fixup = nv50_sor_mode_fixup,
Ben Skeggs5a885f02013-02-20 14:34:18 +10002040 .prepare = nv50_sor_disconnect,
Ben Skeggse225f442012-11-21 14:40:21 +10002041 .commit = nv50_sor_commit,
2042 .mode_set = nv50_sor_mode_set,
2043 .disable = nv50_sor_disconnect,
2044 .get_crtc = nv50_display_crtc_get,
Ben Skeggs83fc0832011-07-05 13:08:40 +10002045};
2046
Ben Skeggse225f442012-11-21 14:40:21 +10002047static const struct drm_encoder_funcs nv50_sor_func = {
2048 .destroy = nv50_sor_destroy,
Ben Skeggs83fc0832011-07-05 13:08:40 +10002049};
2050
2051static int
Ben Skeggse225f442012-11-21 14:40:21 +10002052nv50_sor_create(struct drm_connector *connector, struct dcb_output *dcbe)
Ben Skeggs83fc0832011-07-05 13:08:40 +10002053{
Ben Skeggs5ed50202013-02-11 20:15:03 +10002054 struct nouveau_drm *drm = nouveau_drm(connector->dev);
Ben Skeggs967e7bd2014-08-10 04:10:22 +10002055 struct nouveau_i2c *i2c = nvkm_i2c(&drm->device);
Ben Skeggs83fc0832011-07-05 13:08:40 +10002056 struct nouveau_encoder *nv_encoder;
2057 struct drm_encoder *encoder;
Ben Skeggs5ed50202013-02-11 20:15:03 +10002058 int type;
2059
2060 switch (dcbe->type) {
2061 case DCB_OUTPUT_LVDS: type = DRM_MODE_ENCODER_LVDS; break;
2062 case DCB_OUTPUT_TMDS:
2063 case DCB_OUTPUT_DP:
2064 default:
2065 type = DRM_MODE_ENCODER_TMDS;
2066 break;
2067 }
Ben Skeggs83fc0832011-07-05 13:08:40 +10002068
2069 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
2070 if (!nv_encoder)
2071 return -ENOMEM;
2072 nv_encoder->dcb = dcbe;
2073 nv_encoder->or = ffs(dcbe->or) - 1;
Ben Skeggs5ed50202013-02-11 20:15:03 +10002074 nv_encoder->i2c = i2c->find(i2c, dcbe->i2c_index);
Ben Skeggs83fc0832011-07-05 13:08:40 +10002075 nv_encoder->last_dpms = DRM_MODE_DPMS_OFF;
2076
2077 encoder = to_drm_encoder(nv_encoder);
2078 encoder->possible_crtcs = dcbe->heads;
2079 encoder->possible_clones = 0;
Ben Skeggs5ed50202013-02-11 20:15:03 +10002080 drm_encoder_init(connector->dev, encoder, &nv50_sor_func, type);
Ben Skeggse225f442012-11-21 14:40:21 +10002081 drm_encoder_helper_add(encoder, &nv50_sor_hfunc);
Ben Skeggs83fc0832011-07-05 13:08:40 +10002082
2083 drm_mode_connector_attach_encoder(connector, encoder);
2084 return 0;
2085}
Ben Skeggs26f6d882011-07-04 16:25:18 +10002086
2087/******************************************************************************
Ben Skeggseb6313a2013-02-11 09:52:58 +10002088 * PIOR
2089 *****************************************************************************/
2090
2091static void
2092nv50_pior_dpms(struct drm_encoder *encoder, int mode)
2093{
2094 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
2095 struct nv50_disp *disp = nv50_disp(encoder->dev);
Ben Skeggs67cb49c2014-08-10 04:10:27 +10002096 struct {
2097 struct nv50_disp_mthd_v1 base;
2098 struct nv50_disp_pior_pwr_v0 pwr;
2099 } args = {
2100 .base.version = 1,
2101 .base.method = NV50_DISP_MTHD_V1_PIOR_PWR,
2102 .base.hasht = nv_encoder->dcb->hasht,
2103 .base.hashm = nv_encoder->dcb->hashm,
2104 .pwr.state = mode == DRM_MODE_DPMS_ON,
2105 .pwr.type = nv_encoder->dcb->type,
2106 };
2107
2108 nvif_mthd(disp->disp, 0, &args, sizeof(args));
Ben Skeggseb6313a2013-02-11 09:52:58 +10002109}
2110
2111static bool
2112nv50_pior_mode_fixup(struct drm_encoder *encoder,
2113 const struct drm_display_mode *mode,
2114 struct drm_display_mode *adjusted_mode)
2115{
2116 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
2117 struct nouveau_connector *nv_connector;
2118
2119 nv_connector = nouveau_encoder_connector_get(nv_encoder);
2120 if (nv_connector && nv_connector->native_mode) {
2121 if (nv_connector->scaling_mode != DRM_MODE_SCALE_NONE) {
2122 int id = adjusted_mode->base.id;
2123 *adjusted_mode = *nv_connector->native_mode;
2124 adjusted_mode->base.id = id;
2125 }
2126 }
2127
2128 adjusted_mode->clock *= 2;
2129 return true;
2130}
2131
2132static void
2133nv50_pior_commit(struct drm_encoder *encoder)
2134{
2135}
2136
2137static void
2138nv50_pior_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
2139 struct drm_display_mode *adjusted_mode)
2140{
2141 struct nv50_mast *mast = nv50_mast(encoder->dev);
2142 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
2143 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
2144 struct nouveau_connector *nv_connector;
2145 u8 owner = 1 << nv_crtc->index;
2146 u8 proto, depth;
2147 u32 *push;
2148
2149 nv_connector = nouveau_encoder_connector_get(nv_encoder);
2150 switch (nv_connector->base.display_info.bpc) {
2151 case 10: depth = 0x6; break;
2152 case 8: depth = 0x5; break;
2153 case 6: depth = 0x2; break;
2154 default: depth = 0x0; break;
2155 }
2156
2157 switch (nv_encoder->dcb->type) {
2158 case DCB_OUTPUT_TMDS:
2159 case DCB_OUTPUT_DP:
2160 proto = 0x0;
2161 break;
2162 default:
2163 BUG_ON(1);
2164 break;
2165 }
2166
2167 nv50_pior_dpms(encoder, DRM_MODE_DPMS_ON);
2168
2169 push = evo_wait(mast, 8);
2170 if (push) {
Ben Skeggs648d4df2014-08-10 04:10:27 +10002171 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
Ben Skeggseb6313a2013-02-11 09:52:58 +10002172 u32 ctrl = (depth << 16) | (proto << 8) | owner;
2173 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
2174 ctrl |= 0x00001000;
2175 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
2176 ctrl |= 0x00002000;
2177 evo_mthd(push, 0x0700 + (nv_encoder->or * 0x040), 1);
2178 evo_data(push, ctrl);
2179 }
2180
2181 evo_kick(push, mast);
2182 }
2183
2184 nv_encoder->crtc = encoder->crtc;
2185}
2186
2187static void
2188nv50_pior_disconnect(struct drm_encoder *encoder)
2189{
2190 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
2191 struct nv50_mast *mast = nv50_mast(encoder->dev);
2192 const int or = nv_encoder->or;
2193 u32 *push;
2194
2195 if (nv_encoder->crtc) {
2196 nv50_crtc_prepare(nv_encoder->crtc);
2197
2198 push = evo_wait(mast, 4);
2199 if (push) {
Ben Skeggs648d4df2014-08-10 04:10:27 +10002200 if (nv50_vers(mast) < GF110_DISP_CORE_CHANNEL_DMA) {
Ben Skeggseb6313a2013-02-11 09:52:58 +10002201 evo_mthd(push, 0x0700 + (or * 0x040), 1);
2202 evo_data(push, 0x00000000);
2203 }
Ben Skeggseb6313a2013-02-11 09:52:58 +10002204 evo_kick(push, mast);
2205 }
2206 }
2207
2208 nv_encoder->crtc = NULL;
2209}
2210
2211static void
2212nv50_pior_destroy(struct drm_encoder *encoder)
2213{
2214 drm_encoder_cleanup(encoder);
2215 kfree(encoder);
2216}
2217
2218static const struct drm_encoder_helper_funcs nv50_pior_hfunc = {
2219 .dpms = nv50_pior_dpms,
2220 .mode_fixup = nv50_pior_mode_fixup,
2221 .prepare = nv50_pior_disconnect,
2222 .commit = nv50_pior_commit,
2223 .mode_set = nv50_pior_mode_set,
2224 .disable = nv50_pior_disconnect,
2225 .get_crtc = nv50_display_crtc_get,
2226};
2227
2228static const struct drm_encoder_funcs nv50_pior_func = {
2229 .destroy = nv50_pior_destroy,
2230};
2231
2232static int
2233nv50_pior_create(struct drm_connector *connector, struct dcb_output *dcbe)
2234{
2235 struct nouveau_drm *drm = nouveau_drm(connector->dev);
Ben Skeggs967e7bd2014-08-10 04:10:22 +10002236 struct nouveau_i2c *i2c = nvkm_i2c(&drm->device);
Ben Skeggseb6313a2013-02-11 09:52:58 +10002237 struct nouveau_i2c_port *ddc = NULL;
2238 struct nouveau_encoder *nv_encoder;
2239 struct drm_encoder *encoder;
2240 int type;
2241
2242 switch (dcbe->type) {
2243 case DCB_OUTPUT_TMDS:
2244 ddc = i2c->find_type(i2c, NV_I2C_TYPE_EXTDDC(dcbe->extdev));
2245 type = DRM_MODE_ENCODER_TMDS;
2246 break;
2247 case DCB_OUTPUT_DP:
2248 ddc = i2c->find_type(i2c, NV_I2C_TYPE_EXTAUX(dcbe->extdev));
2249 type = DRM_MODE_ENCODER_TMDS;
2250 break;
2251 default:
2252 return -ENODEV;
2253 }
2254
2255 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
2256 if (!nv_encoder)
2257 return -ENOMEM;
2258 nv_encoder->dcb = dcbe;
2259 nv_encoder->or = ffs(dcbe->or) - 1;
2260 nv_encoder->i2c = ddc;
2261
2262 encoder = to_drm_encoder(nv_encoder);
2263 encoder->possible_crtcs = dcbe->heads;
2264 encoder->possible_clones = 0;
2265 drm_encoder_init(connector->dev, encoder, &nv50_pior_func, type);
2266 drm_encoder_helper_add(encoder, &nv50_pior_hfunc);
2267
2268 drm_mode_connector_attach_encoder(connector, encoder);
2269 return 0;
2270}
2271
2272/******************************************************************************
Ben Skeggsab0af552014-08-10 04:10:19 +10002273 * Framebuffer
2274 *****************************************************************************/
2275
Ben Skeggs8a423642014-08-10 04:10:19 +10002276static void
Ben Skeggs0ad72862014-08-10 04:10:22 +10002277nv50_fbdma_fini(struct nv50_fbdma *fbdma)
Ben Skeggs8a423642014-08-10 04:10:19 +10002278{
Ben Skeggs0ad72862014-08-10 04:10:22 +10002279 int i;
2280 for (i = 0; i < ARRAY_SIZE(fbdma->base); i++)
2281 nvif_object_fini(&fbdma->base[i]);
2282 nvif_object_fini(&fbdma->core);
Ben Skeggs8a423642014-08-10 04:10:19 +10002283 list_del(&fbdma->head);
2284 kfree(fbdma);
2285}
2286
2287static int
2288nv50_fbdma_init(struct drm_device *dev, u32 name, u64 offset, u64 length, u8 kind)
2289{
2290 struct nouveau_drm *drm = nouveau_drm(dev);
2291 struct nv50_disp *disp = nv50_disp(dev);
2292 struct nv50_mast *mast = nv50_mast(dev);
Ben Skeggs4acfd702014-08-10 04:10:24 +10002293 struct __attribute__ ((packed)) {
2294 struct nv_dma_v0 base;
2295 union {
2296 struct nv50_dma_v0 nv50;
2297 struct gf100_dma_v0 gf100;
2298 struct gf110_dma_v0 gf110;
2299 };
2300 } args = {};
Ben Skeggs8a423642014-08-10 04:10:19 +10002301 struct nv50_fbdma *fbdma;
2302 struct drm_crtc *crtc;
Ben Skeggs4acfd702014-08-10 04:10:24 +10002303 u32 size = sizeof(args.base);
Ben Skeggs8a423642014-08-10 04:10:19 +10002304 int ret;
2305
2306 list_for_each_entry(fbdma, &disp->fbdma, head) {
Ben Skeggs0ad72862014-08-10 04:10:22 +10002307 if (fbdma->core.handle == name)
Ben Skeggs8a423642014-08-10 04:10:19 +10002308 return 0;
2309 }
2310
2311 fbdma = kzalloc(sizeof(*fbdma), GFP_KERNEL);
2312 if (!fbdma)
2313 return -ENOMEM;
2314 list_add(&fbdma->head, &disp->fbdma);
Ben Skeggs8a423642014-08-10 04:10:19 +10002315
Ben Skeggs4acfd702014-08-10 04:10:24 +10002316 args.base.target = NV_DMA_V0_TARGET_VRAM;
2317 args.base.access = NV_DMA_V0_ACCESS_RDWR;
2318 args.base.start = offset;
2319 args.base.limit = offset + length - 1;
Ben Skeggs8a423642014-08-10 04:10:19 +10002320
Ben Skeggs967e7bd2014-08-10 04:10:22 +10002321 if (drm->device.info.chipset < 0x80) {
Ben Skeggs4acfd702014-08-10 04:10:24 +10002322 args.nv50.part = NV50_DMA_V0_PART_256;
2323 size += sizeof(args.nv50);
Ben Skeggs8a423642014-08-10 04:10:19 +10002324 } else
Ben Skeggs967e7bd2014-08-10 04:10:22 +10002325 if (drm->device.info.chipset < 0xc0) {
Ben Skeggs4acfd702014-08-10 04:10:24 +10002326 args.nv50.part = NV50_DMA_V0_PART_256;
2327 args.nv50.kind = kind;
2328 size += sizeof(args.nv50);
Ben Skeggs8a423642014-08-10 04:10:19 +10002329 } else
Ben Skeggs967e7bd2014-08-10 04:10:22 +10002330 if (drm->device.info.chipset < 0xd0) {
Ben Skeggs4acfd702014-08-10 04:10:24 +10002331 args.gf100.kind = kind;
2332 size += sizeof(args.gf100);
Ben Skeggs8a423642014-08-10 04:10:19 +10002333 } else {
Ben Skeggs4acfd702014-08-10 04:10:24 +10002334 args.gf110.page = GF110_DMA_V0_PAGE_LP;
2335 args.gf110.kind = kind;
2336 size += sizeof(args.gf110);
Ben Skeggs8a423642014-08-10 04:10:19 +10002337 }
2338
2339 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Ben Skeggs0ad72862014-08-10 04:10:22 +10002340 struct nv50_head *head = nv50_head(crtc);
2341 int ret = nvif_object_init(&head->sync.base.base.user, NULL,
Ben Skeggs4acfd702014-08-10 04:10:24 +10002342 name, NV_DMA_IN_MEMORY, &args, size,
Ben Skeggs0ad72862014-08-10 04:10:22 +10002343 &fbdma->base[head->base.index]);
Ben Skeggs8a423642014-08-10 04:10:19 +10002344 if (ret) {
Ben Skeggs0ad72862014-08-10 04:10:22 +10002345 nv50_fbdma_fini(fbdma);
Ben Skeggs8a423642014-08-10 04:10:19 +10002346 return ret;
2347 }
2348 }
2349
Ben Skeggs0ad72862014-08-10 04:10:22 +10002350 ret = nvif_object_init(&mast->base.base.user, NULL, name,
Ben Skeggs4acfd702014-08-10 04:10:24 +10002351 NV_DMA_IN_MEMORY, &args, size,
Ben Skeggs0ad72862014-08-10 04:10:22 +10002352 &fbdma->core);
Ben Skeggs8a423642014-08-10 04:10:19 +10002353 if (ret) {
Ben Skeggs0ad72862014-08-10 04:10:22 +10002354 nv50_fbdma_fini(fbdma);
Ben Skeggs8a423642014-08-10 04:10:19 +10002355 return ret;
2356 }
2357
2358 return 0;
2359}
2360
Ben Skeggsab0af552014-08-10 04:10:19 +10002361static void
2362nv50_fb_dtor(struct drm_framebuffer *fb)
2363{
2364}
2365
2366static int
2367nv50_fb_ctor(struct drm_framebuffer *fb)
2368{
2369 struct nouveau_framebuffer *nv_fb = nouveau_framebuffer(fb);
2370 struct nouveau_drm *drm = nouveau_drm(fb->dev);
2371 struct nouveau_bo *nvbo = nv_fb->nvbo;
Ben Skeggs8a423642014-08-10 04:10:19 +10002372 struct nv50_disp *disp = nv50_disp(fb->dev);
Ben Skeggs8a423642014-08-10 04:10:19 +10002373 u8 kind = nouveau_bo_tile_layout(nvbo) >> 8;
2374 u8 tile = nvbo->tile_mode;
Ben Skeggsab0af552014-08-10 04:10:19 +10002375
2376 if (nvbo->tile_flags & NOUVEAU_GEM_TILE_NONCONTIG) {
2377 NV_ERROR(drm, "framebuffer requires contiguous bo\n");
2378 return -EINVAL;
2379 }
2380
Ben Skeggs967e7bd2014-08-10 04:10:22 +10002381 if (drm->device.info.chipset >= 0xc0)
Ben Skeggs8a423642014-08-10 04:10:19 +10002382 tile >>= 4; /* yep.. */
2383
Ben Skeggsab0af552014-08-10 04:10:19 +10002384 switch (fb->depth) {
2385 case 8: nv_fb->r_format = 0x1e00; break;
2386 case 15: nv_fb->r_format = 0xe900; break;
2387 case 16: nv_fb->r_format = 0xe800; break;
2388 case 24:
2389 case 32: nv_fb->r_format = 0xcf00; break;
2390 case 30: nv_fb->r_format = 0xd100; break;
2391 default:
2392 NV_ERROR(drm, "unknown depth %d\n", fb->depth);
2393 return -EINVAL;
2394 }
2395
Ben Skeggs648d4df2014-08-10 04:10:27 +10002396 if (disp->disp->oclass < G82_DISP) {
Ben Skeggs8a423642014-08-10 04:10:19 +10002397 nv_fb->r_pitch = kind ? (((fb->pitches[0] / 4) << 4) | tile) :
2398 (fb->pitches[0] | 0x00100000);
2399 nv_fb->r_format |= kind << 16;
2400 } else
Ben Skeggs648d4df2014-08-10 04:10:27 +10002401 if (disp->disp->oclass < GF110_DISP) {
Ben Skeggs8a423642014-08-10 04:10:19 +10002402 nv_fb->r_pitch = kind ? (((fb->pitches[0] / 4) << 4) | tile) :
2403 (fb->pitches[0] | 0x00100000);
Ben Skeggsab0af552014-08-10 04:10:19 +10002404 } else {
Ben Skeggs8a423642014-08-10 04:10:19 +10002405 nv_fb->r_pitch = kind ? (((fb->pitches[0] / 4) << 4) | tile) :
2406 (fb->pitches[0] | 0x01000000);
Ben Skeggsab0af552014-08-10 04:10:19 +10002407 }
Ben Skeggs8a423642014-08-10 04:10:19 +10002408 nv_fb->r_handle = 0xffff0000 | kind;
Ben Skeggsab0af552014-08-10 04:10:19 +10002409
Ben Skeggsf392ec42014-08-10 04:10:28 +10002410 return nv50_fbdma_init(fb->dev, nv_fb->r_handle, 0,
2411 drm->device.info.ram_user, kind);
Ben Skeggsab0af552014-08-10 04:10:19 +10002412}
2413
2414/******************************************************************************
Ben Skeggs26f6d882011-07-04 16:25:18 +10002415 * Init
2416 *****************************************************************************/
Ben Skeggsab0af552014-08-10 04:10:19 +10002417
Ben Skeggs2a44e492011-11-09 11:36:33 +10002418void
Ben Skeggse225f442012-11-21 14:40:21 +10002419nv50_display_fini(struct drm_device *dev)
Ben Skeggs26f6d882011-07-04 16:25:18 +10002420{
Ben Skeggs26f6d882011-07-04 16:25:18 +10002421}
2422
2423int
Ben Skeggse225f442012-11-21 14:40:21 +10002424nv50_display_init(struct drm_device *dev)
Ben Skeggs26f6d882011-07-04 16:25:18 +10002425{
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +10002426 struct nv50_disp *disp = nv50_disp(dev);
2427 struct drm_crtc *crtc;
2428 u32 *push;
2429
2430 push = evo_wait(nv50_mast(dev), 32);
2431 if (!push)
2432 return -EBUSY;
2433
2434 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2435 struct nv50_sync *sync = nv50_sync(crtc);
2436 nouveau_bo_wr32(disp->sync, sync->addr / 4, sync->data);
Ben Skeggs26f6d882011-07-04 16:25:18 +10002437 }
2438
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +10002439 evo_mthd(push, 0x0088, 1);
Ben Skeggsf45f55c2014-08-10 04:10:23 +10002440 evo_data(push, nv50_mast(dev)->base.sync.handle);
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +10002441 evo_kick(push, nv50_mast(dev));
2442 return 0;
Ben Skeggs26f6d882011-07-04 16:25:18 +10002443}
2444
2445void
Ben Skeggse225f442012-11-21 14:40:21 +10002446nv50_display_destroy(struct drm_device *dev)
Ben Skeggs26f6d882011-07-04 16:25:18 +10002447{
Ben Skeggse225f442012-11-21 14:40:21 +10002448 struct nv50_disp *disp = nv50_disp(dev);
Ben Skeggs8a423642014-08-10 04:10:19 +10002449 struct nv50_fbdma *fbdma, *fbtmp;
2450
2451 list_for_each_entry_safe(fbdma, fbtmp, &disp->fbdma, head) {
Ben Skeggs0ad72862014-08-10 04:10:22 +10002452 nv50_fbdma_fini(fbdma);
Ben Skeggs8a423642014-08-10 04:10:19 +10002453 }
Ben Skeggs26f6d882011-07-04 16:25:18 +10002454
Ben Skeggs0ad72862014-08-10 04:10:22 +10002455 nv50_dmac_destroy(&disp->mast.base, disp->disp);
Ben Skeggsbdb8c212011-11-12 01:30:24 +10002456
Ben Skeggs816af2f2011-11-16 15:48:48 +10002457 nouveau_bo_unmap(disp->sync);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01002458 if (disp->sync)
2459 nouveau_bo_unpin(disp->sync);
Ben Skeggs816af2f2011-11-16 15:48:48 +10002460 nouveau_bo_ref(NULL, &disp->sync);
Ben Skeggs51beb422011-07-05 10:33:08 +10002461
Ben Skeggs77145f12012-07-31 16:16:21 +10002462 nouveau_display(dev)->priv = NULL;
Ben Skeggs26f6d882011-07-04 16:25:18 +10002463 kfree(disp);
2464}
2465
2466int
Ben Skeggse225f442012-11-21 14:40:21 +10002467nv50_display_create(struct drm_device *dev)
Ben Skeggs26f6d882011-07-04 16:25:18 +10002468{
Ben Skeggs967e7bd2014-08-10 04:10:22 +10002469 struct nvif_device *device = &nouveau_drm(dev)->device;
Ben Skeggs77145f12012-07-31 16:16:21 +10002470 struct nouveau_drm *drm = nouveau_drm(dev);
Ben Skeggs77145f12012-07-31 16:16:21 +10002471 struct dcb_table *dcb = &drm->vbios.dcb;
Ben Skeggs83fc0832011-07-05 13:08:40 +10002472 struct drm_connector *connector, *tmp;
Ben Skeggse225f442012-11-21 14:40:21 +10002473 struct nv50_disp *disp;
Ben Skeggscb75d972012-07-11 10:44:20 +10002474 struct dcb_output *dcbe;
Ben Skeggs7c5f6a82012-03-04 16:25:59 +10002475 int crtcs, ret, i;
Ben Skeggs26f6d882011-07-04 16:25:18 +10002476
2477 disp = kzalloc(sizeof(*disp), GFP_KERNEL);
2478 if (!disp)
2479 return -ENOMEM;
Ben Skeggs8a423642014-08-10 04:10:19 +10002480 INIT_LIST_HEAD(&disp->fbdma);
Ben Skeggs77145f12012-07-31 16:16:21 +10002481
2482 nouveau_display(dev)->priv = disp;
Ben Skeggse225f442012-11-21 14:40:21 +10002483 nouveau_display(dev)->dtor = nv50_display_destroy;
2484 nouveau_display(dev)->init = nv50_display_init;
2485 nouveau_display(dev)->fini = nv50_display_fini;
Ben Skeggsab0af552014-08-10 04:10:19 +10002486 nouveau_display(dev)->fb_ctor = nv50_fb_ctor;
2487 nouveau_display(dev)->fb_dtor = nv50_fb_dtor;
Ben Skeggs0ad72862014-08-10 04:10:22 +10002488 disp->disp = &nouveau_display(dev)->disp;
Ben Skeggs26f6d882011-07-04 16:25:18 +10002489
Ben Skeggsb5a794b2012-10-16 14:18:32 +10002490 /* small shared memory area we use for notifiers and semaphores */
2491 ret = nouveau_bo_new(dev, 4096, 0x1000, TTM_PL_FLAG_VRAM,
Maarten Lankhorstbb6178b2014-01-09 11:03:15 +01002492 0, 0x0000, NULL, NULL, &disp->sync);
Ben Skeggsb5a794b2012-10-16 14:18:32 +10002493 if (!ret) {
2494 ret = nouveau_bo_pin(disp->sync, TTM_PL_FLAG_VRAM);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01002495 if (!ret) {
Ben Skeggsb5a794b2012-10-16 14:18:32 +10002496 ret = nouveau_bo_map(disp->sync);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01002497 if (ret)
2498 nouveau_bo_unpin(disp->sync);
2499 }
Ben Skeggsb5a794b2012-10-16 14:18:32 +10002500 if (ret)
2501 nouveau_bo_ref(NULL, &disp->sync);
2502 }
2503
2504 if (ret)
2505 goto out;
2506
Ben Skeggsb5a794b2012-10-16 14:18:32 +10002507 /* allocate master evo channel */
Ben Skeggs410f3ec2014-08-10 04:10:25 +10002508 ret = nv50_core_create(disp->disp, disp->sync->bo.offset,
2509 &disp->mast);
Ben Skeggsb5a794b2012-10-16 14:18:32 +10002510 if (ret)
2511 goto out;
2512
Ben Skeggs438d99e2011-07-05 16:48:06 +10002513 /* create crtc objects to represent the hw heads */
Ben Skeggs648d4df2014-08-10 04:10:27 +10002514 if (disp->disp->oclass >= GF110_DISP)
Ben Skeggsdb2bec12014-08-10 04:10:22 +10002515 crtcs = nvif_rd32(device, 0x022448);
Ben Skeggs63718a02012-11-16 11:44:14 +10002516 else
2517 crtcs = 2;
2518
Ben Skeggs7c5f6a82012-03-04 16:25:59 +10002519 for (i = 0; i < crtcs; i++) {
Ben Skeggs0ad72862014-08-10 04:10:22 +10002520 ret = nv50_crtc_create(dev, i);
Ben Skeggs438d99e2011-07-05 16:48:06 +10002521 if (ret)
2522 goto out;
2523 }
2524
Ben Skeggs83fc0832011-07-05 13:08:40 +10002525 /* create encoder/connector objects based on VBIOS DCB table */
2526 for (i = 0, dcbe = &dcb->entry[0]; i < dcb->entries; i++, dcbe++) {
2527 connector = nouveau_connector_create(dev, dcbe->connector);
2528 if (IS_ERR(connector))
2529 continue;
2530
Ben Skeggseb6313a2013-02-11 09:52:58 +10002531 if (dcbe->location == DCB_LOC_ON_CHIP) {
2532 switch (dcbe->type) {
2533 case DCB_OUTPUT_TMDS:
2534 case DCB_OUTPUT_LVDS:
2535 case DCB_OUTPUT_DP:
2536 ret = nv50_sor_create(connector, dcbe);
2537 break;
2538 case DCB_OUTPUT_ANALOG:
2539 ret = nv50_dac_create(connector, dcbe);
2540 break;
2541 default:
2542 ret = -ENODEV;
2543 break;
2544 }
2545 } else {
2546 ret = nv50_pior_create(connector, dcbe);
Ben Skeggs83fc0832011-07-05 13:08:40 +10002547 }
2548
Ben Skeggseb6313a2013-02-11 09:52:58 +10002549 if (ret) {
2550 NV_WARN(drm, "failed to create encoder %d/%d/%d: %d\n",
2551 dcbe->location, dcbe->type,
2552 ffs(dcbe->or) - 1, ret);
Ben Skeggs94f54f52013-03-05 22:26:06 +10002553 ret = 0;
Ben Skeggs83fc0832011-07-05 13:08:40 +10002554 }
2555 }
2556
2557 /* cull any connectors we created that don't have an encoder */
2558 list_for_each_entry_safe(connector, tmp, &dev->mode_config.connector_list, head) {
2559 if (connector->encoder_ids[0])
2560 continue;
2561
Ben Skeggs77145f12012-07-31 16:16:21 +10002562 NV_WARN(drm, "%s has no encoders, removing\n",
Jani Nikula8c6c3612014-06-03 14:56:18 +03002563 connector->name);
Ben Skeggs83fc0832011-07-05 13:08:40 +10002564 connector->funcs->destroy(connector);
2565 }
2566
Ben Skeggs26f6d882011-07-04 16:25:18 +10002567out:
2568 if (ret)
Ben Skeggse225f442012-11-21 14:40:21 +10002569 nv50_display_destroy(dev);
Ben Skeggs26f6d882011-07-04 16:25:18 +10002570 return ret;
2571}