blob: 58af547b0b930e2ea64e74b0966c7a81e11fba54 [file] [log] [blame]
Ben Skeggse225f442012-11-21 14:40:21 +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 Skeggs26f6d882011-07-04 16:25:18 +100029
Ben Skeggs77145f12012-07-31 16:16:21 +100030#include "nouveau_drm.h"
31#include "nouveau_dma.h"
32#include "nouveau_gem.h"
Ben Skeggs26f6d882011-07-04 16:25:18 +100033#include "nouveau_connector.h"
34#include "nouveau_encoder.h"
35#include "nouveau_crtc.h"
Ben Skeggsf589be82012-07-22 11:55:54 +100036#include "nouveau_fence.h"
Ben Skeggs3a89cd02011-07-07 10:47:10 +100037#include "nv50_display.h"
Ben Skeggs26f6d882011-07-04 16:25:18 +100038
Ben Skeggsb5a794b2012-10-16 14:18:32 +100039#include <core/client.h>
Ben Skeggs77145f12012-07-31 16:16:21 +100040#include <core/gpuobj.h>
Ben Skeggsb5a794b2012-10-16 14:18:32 +100041#include <core/class.h>
Ben Skeggs77145f12012-07-31 16:16:21 +100042
43#include <subdev/timer.h>
44#include <subdev/bar.h>
45#include <subdev/fb.h>
Ben Skeggs5ed50202013-02-11 20:15:03 +100046#include <subdev/i2c.h>
Ben Skeggs77145f12012-07-31 16:16:21 +100047
Ben Skeggs8a464382011-11-12 23:52:07 +100048#define EVO_DMA_NR 9
49
Ben Skeggsbdb8c212011-11-12 01:30:24 +100050#define EVO_MASTER (0x00)
Ben Skeggsa63a97e2011-11-16 15:22:34 +100051#define EVO_FLIP(c) (0x01 + (c))
Ben Skeggs8a464382011-11-12 23:52:07 +100052#define EVO_OVLY(c) (0x05 + (c))
53#define EVO_OIMM(c) (0x09 + (c))
Ben Skeggsbdb8c212011-11-12 01:30:24 +100054#define EVO_CURS(c) (0x0d + (c))
55
Ben Skeggs816af2f2011-11-16 15:48:48 +100056/* offsets in shared sync bo of various structures */
57#define EVO_SYNC(c, o) ((c) * 0x0100 + (o))
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +100058#define EVO_MAST_NTFY EVO_SYNC( 0, 0x00)
59#define EVO_FLIP_SEM0(c) EVO_SYNC((c) + 1, 0x00)
60#define EVO_FLIP_SEM1(c) EVO_SYNC((c) + 1, 0x10)
Ben Skeggs816af2f2011-11-16 15:48:48 +100061
Ben Skeggsb5a794b2012-10-16 14:18:32 +100062#define EVO_CORE_HANDLE (0xd1500000)
63#define EVO_CHAN_HANDLE(t,i) (0xd15c0000 | (((t) & 0x00ff) << 8) | (i))
64#define EVO_CHAN_OCLASS(t,c) ((nv_hclass(c) & 0xff00) | ((t) & 0x00ff))
65#define EVO_PUSH_HANDLE(t,i) (0xd15b0000 | (i) | \
66 (((NV50_DISP_##t##_CLASS) & 0x00ff) << 8))
67
68/******************************************************************************
69 * EVO channel
70 *****************************************************************************/
71
Ben Skeggse225f442012-11-21 14:40:21 +100072struct nv50_chan {
Ben Skeggsb5a794b2012-10-16 14:18:32 +100073 struct nouveau_object *user;
74 u32 handle;
75};
76
77static int
Ben Skeggse225f442012-11-21 14:40:21 +100078nv50_chan_create(struct nouveau_object *core, u32 bclass, u8 head,
79 void *data, u32 size, struct nv50_chan *chan)
Ben Skeggsb5a794b2012-10-16 14:18:32 +100080{
81 struct nouveau_object *client = nv_pclass(core, NV_CLIENT_CLASS);
82 const u32 oclass = EVO_CHAN_OCLASS(bclass, core);
83 const u32 handle = EVO_CHAN_HANDLE(bclass, head);
84 int ret;
85
86 ret = nouveau_object_new(client, EVO_CORE_HANDLE, handle,
87 oclass, data, size, &chan->user);
88 if (ret)
89 return ret;
90
91 chan->handle = handle;
92 return 0;
93}
94
95static void
Ben Skeggse225f442012-11-21 14:40:21 +100096nv50_chan_destroy(struct nouveau_object *core, struct nv50_chan *chan)
Ben Skeggsb5a794b2012-10-16 14:18:32 +100097{
98 struct nouveau_object *client = nv_pclass(core, NV_CLIENT_CLASS);
99 if (chan->handle)
100 nouveau_object_del(client, EVO_CORE_HANDLE, chan->handle);
101}
102
103/******************************************************************************
104 * PIO EVO channel
105 *****************************************************************************/
106
Ben Skeggse225f442012-11-21 14:40:21 +1000107struct nv50_pioc {
108 struct nv50_chan base;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000109};
110
111static void
Ben Skeggse225f442012-11-21 14:40:21 +1000112nv50_pioc_destroy(struct nouveau_object *core, struct nv50_pioc *pioc)
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000113{
Ben Skeggse225f442012-11-21 14:40:21 +1000114 nv50_chan_destroy(core, &pioc->base);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000115}
116
117static int
Ben Skeggse225f442012-11-21 14:40:21 +1000118nv50_pioc_create(struct nouveau_object *core, u32 bclass, u8 head,
119 void *data, u32 size, struct nv50_pioc *pioc)
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000120{
Ben Skeggse225f442012-11-21 14:40:21 +1000121 return nv50_chan_create(core, bclass, head, data, size, &pioc->base);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000122}
123
124/******************************************************************************
125 * DMA EVO channel
126 *****************************************************************************/
127
Ben Skeggse225f442012-11-21 14:40:21 +1000128struct nv50_dmac {
129 struct nv50_chan base;
Ben Skeggs3376ee32011-11-12 14:28:12 +1000130 dma_addr_t handle;
131 u32 *ptr;
Daniel Vetter59ad1462012-12-02 14:49:44 +0100132
133 /* Protects against concurrent pushbuf access to this channel, lock is
134 * grabbed by evo_wait (if the pushbuf reservation is successful) and
135 * dropped again by evo_kick. */
136 struct mutex lock;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000137};
138
139static void
Ben Skeggse225f442012-11-21 14:40:21 +1000140nv50_dmac_destroy(struct nouveau_object *core, struct nv50_dmac *dmac)
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000141{
142 if (dmac->ptr) {
143 struct pci_dev *pdev = nv_device(core)->pdev;
144 pci_free_consistent(pdev, PAGE_SIZE, dmac->ptr, dmac->handle);
145 }
146
Ben Skeggse225f442012-11-21 14:40:21 +1000147 nv50_chan_destroy(core, &dmac->base);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000148}
149
150static int
Ben Skeggs47057302012-11-16 13:58:48 +1000151nv50_dmac_create_fbdma(struct nouveau_object *core, u32 parent)
152{
153 struct nouveau_fb *pfb = nouveau_fb(core);
154 struct nouveau_object *client = nv_pclass(core, NV_CLIENT_CLASS);
155 struct nouveau_object *object;
156 int ret = nouveau_object_new(client, parent, NvEvoVRAM_LP,
157 NV_DMA_IN_MEMORY_CLASS,
158 &(struct nv_dma_class) {
159 .flags = NV_DMA_TARGET_VRAM |
160 NV_DMA_ACCESS_RDWR,
161 .start = 0,
Ben Skeggsdceef5d2013-03-04 13:01:21 +1000162 .limit = pfb->ram->size - 1,
Ben Skeggs47057302012-11-16 13:58:48 +1000163 .conf0 = NV50_DMA_CONF0_ENABLE |
164 NV50_DMA_CONF0_PART_256,
165 }, sizeof(struct nv_dma_class), &object);
166 if (ret)
167 return ret;
168
169 ret = nouveau_object_new(client, parent, NvEvoFB16,
170 NV_DMA_IN_MEMORY_CLASS,
171 &(struct nv_dma_class) {
172 .flags = NV_DMA_TARGET_VRAM |
173 NV_DMA_ACCESS_RDWR,
174 .start = 0,
Ben Skeggsdceef5d2013-03-04 13:01:21 +1000175 .limit = pfb->ram->size - 1,
Ben Skeggs47057302012-11-16 13:58:48 +1000176 .conf0 = NV50_DMA_CONF0_ENABLE | 0x70 |
177 NV50_DMA_CONF0_PART_256,
178 }, sizeof(struct nv_dma_class), &object);
179 if (ret)
180 return ret;
181
182 ret = nouveau_object_new(client, parent, NvEvoFB32,
183 NV_DMA_IN_MEMORY_CLASS,
184 &(struct nv_dma_class) {
185 .flags = NV_DMA_TARGET_VRAM |
186 NV_DMA_ACCESS_RDWR,
187 .start = 0,
Ben Skeggsdceef5d2013-03-04 13:01:21 +1000188 .limit = pfb->ram->size - 1,
Ben Skeggs47057302012-11-16 13:58:48 +1000189 .conf0 = NV50_DMA_CONF0_ENABLE | 0x7a |
190 NV50_DMA_CONF0_PART_256,
191 }, sizeof(struct nv_dma_class), &object);
192 return ret;
193}
194
195static int
196nvc0_dmac_create_fbdma(struct nouveau_object *core, u32 parent)
197{
198 struct nouveau_fb *pfb = nouveau_fb(core);
199 struct nouveau_object *client = nv_pclass(core, NV_CLIENT_CLASS);
200 struct nouveau_object *object;
201 int ret = nouveau_object_new(client, parent, NvEvoVRAM_LP,
202 NV_DMA_IN_MEMORY_CLASS,
203 &(struct nv_dma_class) {
204 .flags = NV_DMA_TARGET_VRAM |
205 NV_DMA_ACCESS_RDWR,
206 .start = 0,
Ben Skeggsdceef5d2013-03-04 13:01:21 +1000207 .limit = pfb->ram->size - 1,
Ben Skeggs47057302012-11-16 13:58:48 +1000208 .conf0 = NVC0_DMA_CONF0_ENABLE,
209 }, sizeof(struct nv_dma_class), &object);
210 if (ret)
211 return ret;
212
213 ret = nouveau_object_new(client, parent, NvEvoFB16,
214 NV_DMA_IN_MEMORY_CLASS,
215 &(struct nv_dma_class) {
216 .flags = NV_DMA_TARGET_VRAM |
217 NV_DMA_ACCESS_RDWR,
218 .start = 0,
Ben Skeggsdceef5d2013-03-04 13:01:21 +1000219 .limit = pfb->ram->size - 1,
Ben Skeggs47057302012-11-16 13:58:48 +1000220 .conf0 = NVC0_DMA_CONF0_ENABLE | 0xfe,
221 }, sizeof(struct nv_dma_class), &object);
222 if (ret)
223 return ret;
224
225 ret = nouveau_object_new(client, parent, NvEvoFB32,
226 NV_DMA_IN_MEMORY_CLASS,
227 &(struct nv_dma_class) {
228 .flags = NV_DMA_TARGET_VRAM |
229 NV_DMA_ACCESS_RDWR,
230 .start = 0,
Ben Skeggsdceef5d2013-03-04 13:01:21 +1000231 .limit = pfb->ram->size - 1,
Ben Skeggs47057302012-11-16 13:58:48 +1000232 .conf0 = NVC0_DMA_CONF0_ENABLE | 0xfe,
233 }, sizeof(struct nv_dma_class), &object);
234 return ret;
235}
236
237static int
238nvd0_dmac_create_fbdma(struct nouveau_object *core, u32 parent)
239{
240 struct nouveau_fb *pfb = nouveau_fb(core);
241 struct nouveau_object *client = nv_pclass(core, NV_CLIENT_CLASS);
242 struct nouveau_object *object;
243 int ret = nouveau_object_new(client, parent, NvEvoVRAM_LP,
244 NV_DMA_IN_MEMORY_CLASS,
245 &(struct nv_dma_class) {
246 .flags = NV_DMA_TARGET_VRAM |
247 NV_DMA_ACCESS_RDWR,
248 .start = 0,
Ben Skeggsdceef5d2013-03-04 13:01:21 +1000249 .limit = pfb->ram->size - 1,
Ben Skeggs47057302012-11-16 13:58:48 +1000250 .conf0 = NVD0_DMA_CONF0_ENABLE |
251 NVD0_DMA_CONF0_PAGE_LP,
252 }, sizeof(struct nv_dma_class), &object);
253 if (ret)
254 return ret;
255
256 ret = nouveau_object_new(client, parent, NvEvoFB32,
257 NV_DMA_IN_MEMORY_CLASS,
258 &(struct nv_dma_class) {
259 .flags = NV_DMA_TARGET_VRAM |
260 NV_DMA_ACCESS_RDWR,
261 .start = 0,
Ben Skeggsdceef5d2013-03-04 13:01:21 +1000262 .limit = pfb->ram->size - 1,
Ben Skeggs47057302012-11-16 13:58:48 +1000263 .conf0 = NVD0_DMA_CONF0_ENABLE | 0xfe |
264 NVD0_DMA_CONF0_PAGE_LP,
265 }, sizeof(struct nv_dma_class), &object);
266 return ret;
267}
268
269static int
Ben Skeggse225f442012-11-21 14:40:21 +1000270nv50_dmac_create(struct nouveau_object *core, u32 bclass, u8 head,
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000271 void *data, u32 size, u64 syncbuf,
Ben Skeggse225f442012-11-21 14:40:21 +1000272 struct nv50_dmac *dmac)
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000273{
274 struct nouveau_fb *pfb = nouveau_fb(core);
275 struct nouveau_object *client = nv_pclass(core, NV_CLIENT_CLASS);
276 struct nouveau_object *object;
277 u32 pushbuf = *(u32 *)data;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000278 int ret;
279
Daniel Vetter59ad1462012-12-02 14:49:44 +0100280 mutex_init(&dmac->lock);
281
Ben Skeggs47057302012-11-16 13:58:48 +1000282 dmac->ptr = pci_alloc_consistent(nv_device(core)->pdev, PAGE_SIZE,
283 &dmac->handle);
284 if (!dmac->ptr)
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000285 return -ENOMEM;
286
287 ret = nouveau_object_new(client, NVDRM_DEVICE, pushbuf,
288 NV_DMA_FROM_MEMORY_CLASS,
289 &(struct nv_dma_class) {
290 .flags = NV_DMA_TARGET_PCI_US |
291 NV_DMA_ACCESS_RD,
Ben Skeggs47057302012-11-16 13:58:48 +1000292 .start = dmac->handle + 0x0000,
293 .limit = dmac->handle + 0x0fff,
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000294 }, sizeof(struct nv_dma_class), &object);
295 if (ret)
296 return ret;
297
Ben Skeggse225f442012-11-21 14:40:21 +1000298 ret = nv50_chan_create(core, bclass, head, data, size, &dmac->base);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000299 if (ret)
300 return ret;
301
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000302 ret = nouveau_object_new(client, dmac->base.handle, NvEvoSync,
303 NV_DMA_IN_MEMORY_CLASS,
304 &(struct nv_dma_class) {
305 .flags = NV_DMA_TARGET_VRAM |
306 NV_DMA_ACCESS_RDWR,
307 .start = syncbuf + 0x0000,
308 .limit = syncbuf + 0x0fff,
309 }, sizeof(struct nv_dma_class), &object);
310 if (ret)
Ben Skeggs47057302012-11-16 13:58:48 +1000311 return ret;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000312
313 ret = nouveau_object_new(client, dmac->base.handle, NvEvoVRAM,
314 NV_DMA_IN_MEMORY_CLASS,
315 &(struct nv_dma_class) {
316 .flags = NV_DMA_TARGET_VRAM |
317 NV_DMA_ACCESS_RDWR,
318 .start = 0,
Ben Skeggsdceef5d2013-03-04 13:01:21 +1000319 .limit = pfb->ram->size - 1,
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000320 }, sizeof(struct nv_dma_class), &object);
321 if (ret)
Ben Skeggs47057302012-11-16 13:58:48 +1000322 return ret;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000323
Ben Skeggs47057302012-11-16 13:58:48 +1000324 if (nv_device(core)->card_type < NV_C0)
325 ret = nv50_dmac_create_fbdma(core, dmac->base.handle);
326 else
327 if (nv_device(core)->card_type < NV_D0)
328 ret = nvc0_dmac_create_fbdma(core, dmac->base.handle);
329 else
330 ret = nvd0_dmac_create_fbdma(core, dmac->base.handle);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000331 return ret;
332}
333
Ben Skeggse225f442012-11-21 14:40:21 +1000334struct nv50_mast {
335 struct nv50_dmac base;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000336};
337
Ben Skeggse225f442012-11-21 14:40:21 +1000338struct nv50_curs {
339 struct nv50_pioc base;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000340};
341
Ben Skeggse225f442012-11-21 14:40:21 +1000342struct nv50_sync {
343 struct nv50_dmac base;
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000344 u32 addr;
345 u32 data;
Ben Skeggs3376ee32011-11-12 14:28:12 +1000346};
347
Ben Skeggse225f442012-11-21 14:40:21 +1000348struct nv50_ovly {
349 struct nv50_dmac base;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000350};
Ben Skeggsf20ce962011-07-08 13:17:01 +1000351
Ben Skeggse225f442012-11-21 14:40:21 +1000352struct nv50_oimm {
353 struct nv50_pioc base;
Ben Skeggs26f6d882011-07-04 16:25:18 +1000354};
355
Ben Skeggse225f442012-11-21 14:40:21 +1000356struct nv50_head {
Ben Skeggsdd0e3d52012-10-16 14:00:31 +1000357 struct nouveau_crtc base;
Ben Skeggs8dda53f2013-07-09 12:35:55 +1000358 struct nouveau_bo *image;
Ben Skeggse225f442012-11-21 14:40:21 +1000359 struct nv50_curs curs;
360 struct nv50_sync sync;
361 struct nv50_ovly ovly;
362 struct nv50_oimm oimm;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000363};
364
Ben Skeggse225f442012-11-21 14:40:21 +1000365#define nv50_head(c) ((struct nv50_head *)nouveau_crtc(c))
366#define nv50_curs(c) (&nv50_head(c)->curs)
367#define nv50_sync(c) (&nv50_head(c)->sync)
368#define nv50_ovly(c) (&nv50_head(c)->ovly)
369#define nv50_oimm(c) (&nv50_head(c)->oimm)
370#define nv50_chan(c) (&(c)->base.base)
371#define nv50_vers(c) nv_mclass(nv50_chan(c)->user)
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000372
Ben Skeggse225f442012-11-21 14:40:21 +1000373struct nv50_disp {
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000374 struct nouveau_object *core;
Ben Skeggse225f442012-11-21 14:40:21 +1000375 struct nv50_mast mast;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000376
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000377 u32 modeset;
378
379 struct nouveau_bo *sync;
Ben Skeggsdd0e3d52012-10-16 14:00:31 +1000380};
381
Ben Skeggse225f442012-11-21 14:40:21 +1000382static struct nv50_disp *
383nv50_disp(struct drm_device *dev)
Ben Skeggs26f6d882011-07-04 16:25:18 +1000384{
Ben Skeggs77145f12012-07-31 16:16:21 +1000385 return nouveau_display(dev)->priv;
Ben Skeggs26f6d882011-07-04 16:25:18 +1000386}
387
Ben Skeggse225f442012-11-21 14:40:21 +1000388#define nv50_mast(d) (&nv50_disp(d)->mast)
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000389
Ben Skeggsbdb8c212011-11-12 01:30:24 +1000390static struct drm_crtc *
Ben Skeggse225f442012-11-21 14:40:21 +1000391nv50_display_crtc_get(struct drm_encoder *encoder)
Ben Skeggsbdb8c212011-11-12 01:30:24 +1000392{
393 return nouveau_encoder(encoder)->crtc;
394}
395
396/******************************************************************************
397 * EVO channel helpers
398 *****************************************************************************/
Ben Skeggs51beb422011-07-05 10:33:08 +1000399static u32 *
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000400evo_wait(void *evoc, int nr)
Ben Skeggs51beb422011-07-05 10:33:08 +1000401{
Ben Skeggse225f442012-11-21 14:40:21 +1000402 struct nv50_dmac *dmac = evoc;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000403 u32 put = nv_ro32(dmac->base.user, 0x0000) / 4;
Ben Skeggs51beb422011-07-05 10:33:08 +1000404
Daniel Vetter59ad1462012-12-02 14:49:44 +0100405 mutex_lock(&dmac->lock);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000406 if (put + nr >= (PAGE_SIZE / 4) - 8) {
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000407 dmac->ptr[put] = 0x20000000;
Ben Skeggs51beb422011-07-05 10:33:08 +1000408
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000409 nv_wo32(dmac->base.user, 0x0000, 0x00000000);
410 if (!nv_wait(dmac->base.user, 0x0004, ~0, 0x00000000)) {
Daniel Vetter59ad1462012-12-02 14:49:44 +0100411 mutex_unlock(&dmac->lock);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000412 NV_ERROR(dmac->base.user, "channel stalled\n");
Ben Skeggs51beb422011-07-05 10:33:08 +1000413 return NULL;
414 }
415
416 put = 0;
417 }
418
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000419 return dmac->ptr + put;
Ben Skeggs51beb422011-07-05 10:33:08 +1000420}
421
422static void
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000423evo_kick(u32 *push, void *evoc)
Ben Skeggs51beb422011-07-05 10:33:08 +1000424{
Ben Skeggse225f442012-11-21 14:40:21 +1000425 struct nv50_dmac *dmac = evoc;
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000426 nv_wo32(dmac->base.user, 0x0000, (push - dmac->ptr) << 2);
Daniel Vetter59ad1462012-12-02 14:49:44 +0100427 mutex_unlock(&dmac->lock);
Ben Skeggs51beb422011-07-05 10:33:08 +1000428}
429
430#define evo_mthd(p,m,s) *((p)++) = (((s) << 18) | (m))
431#define evo_data(p,d) *((p)++) = (d)
432
Ben Skeggs3376ee32011-11-12 14:28:12 +1000433static bool
434evo_sync_wait(void *data)
435{
Ben Skeggs5cc027f2013-02-18 17:50:51 -0500436 if (nouveau_bo_rd32(data, EVO_MAST_NTFY) != 0x00000000)
437 return true;
438 usleep_range(1, 2);
439 return false;
Ben Skeggs3376ee32011-11-12 14:28:12 +1000440}
441
442static int
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000443evo_sync(struct drm_device *dev)
Ben Skeggs3376ee32011-11-12 14:28:12 +1000444{
Ben Skeggs77145f12012-07-31 16:16:21 +1000445 struct nouveau_device *device = nouveau_dev(dev);
Ben Skeggse225f442012-11-21 14:40:21 +1000446 struct nv50_disp *disp = nv50_disp(dev);
447 struct nv50_mast *mast = nv50_mast(dev);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000448 u32 *push = evo_wait(mast, 8);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000449 if (push) {
Ben Skeggs816af2f2011-11-16 15:48:48 +1000450 nouveau_bo_wr32(disp->sync, EVO_MAST_NTFY, 0x00000000);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000451 evo_mthd(push, 0x0084, 1);
Ben Skeggs816af2f2011-11-16 15:48:48 +1000452 evo_data(push, 0x80000000 | EVO_MAST_NTFY);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000453 evo_mthd(push, 0x0080, 2);
454 evo_data(push, 0x00000000);
455 evo_data(push, 0x00000000);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000456 evo_kick(push, mast);
Ben Skeggs77145f12012-07-31 16:16:21 +1000457 if (nv_wait_cb(device, evo_sync_wait, disp->sync))
Ben Skeggs3376ee32011-11-12 14:28:12 +1000458 return 0;
459 }
460
461 return -EBUSY;
462}
463
464/******************************************************************************
Ben Skeggsa63a97e2011-11-16 15:22:34 +1000465 * Page flipping channel
Ben Skeggs3376ee32011-11-12 14:28:12 +1000466 *****************************************************************************/
467struct nouveau_bo *
Ben Skeggse225f442012-11-21 14:40:21 +1000468nv50_display_crtc_sema(struct drm_device *dev, int crtc)
Ben Skeggs3376ee32011-11-12 14:28:12 +1000469{
Ben Skeggse225f442012-11-21 14:40:21 +1000470 return nv50_disp(dev)->sync;
Ben Skeggs3376ee32011-11-12 14:28:12 +1000471}
472
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000473struct nv50_display_flip {
474 struct nv50_disp *disp;
475 struct nv50_sync *chan;
476};
477
478static bool
479nv50_display_flip_wait(void *data)
480{
481 struct nv50_display_flip *flip = data;
482 if (nouveau_bo_rd32(flip->disp->sync, flip->chan->addr / 4) ==
Calvin Owensb1ea3e62013-04-07 21:01:19 -0500483 flip->chan->data)
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000484 return true;
485 usleep_range(1, 2);
486 return false;
487}
488
Ben Skeggs3376ee32011-11-12 14:28:12 +1000489void
Ben Skeggse225f442012-11-21 14:40:21 +1000490nv50_display_flip_stop(struct drm_crtc *crtc)
Ben Skeggs3376ee32011-11-12 14:28:12 +1000491{
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000492 struct nouveau_device *device = nouveau_dev(crtc->dev);
493 struct nv50_display_flip flip = {
494 .disp = nv50_disp(crtc->dev),
495 .chan = nv50_sync(crtc),
496 };
Ben Skeggs3376ee32011-11-12 14:28:12 +1000497 u32 *push;
498
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000499 push = evo_wait(flip.chan, 8);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000500 if (push) {
501 evo_mthd(push, 0x0084, 1);
502 evo_data(push, 0x00000000);
503 evo_mthd(push, 0x0094, 1);
504 evo_data(push, 0x00000000);
505 evo_mthd(push, 0x00c0, 1);
506 evo_data(push, 0x00000000);
507 evo_mthd(push, 0x0080, 1);
508 evo_data(push, 0x00000000);
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000509 evo_kick(push, flip.chan);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000510 }
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000511
512 nv_wait_cb(device, nv50_display_flip_wait, &flip);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000513}
514
515int
Ben Skeggse225f442012-11-21 14:40:21 +1000516nv50_display_flip_next(struct drm_crtc *crtc, struct drm_framebuffer *fb,
Ben Skeggs3376ee32011-11-12 14:28:12 +1000517 struct nouveau_channel *chan, u32 swap_interval)
518{
519 struct nouveau_framebuffer *nv_fb = nouveau_framebuffer(fb);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000520 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggs8dda53f2013-07-09 12:35:55 +1000521 struct nv50_head *head = nv50_head(crtc);
Ben Skeggse225f442012-11-21 14:40:21 +1000522 struct nv50_sync *sync = nv50_sync(crtc);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000523 u32 *push;
Ben Skeggs8dda53f2013-07-09 12:35:55 +1000524 int ret;
Ben Skeggs3376ee32011-11-12 14:28:12 +1000525
526 swap_interval <<= 4;
527 if (swap_interval == 0)
528 swap_interval |= 0x100;
Ben Skeggsf60b6e72013-03-19 15:20:00 +1000529 if (chan == NULL)
530 evo_sync(crtc->dev);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000531
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000532 push = evo_wait(sync, 128);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000533 if (unlikely(push == NULL))
534 return -EBUSY;
535
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000536 if (chan && nv_mclass(chan->object) < NV84_CHANNEL_IND_CLASS) {
537 ret = RING_SPACE(chan, 8);
538 if (ret)
539 return ret;
Ben Skeggs67f97182013-02-26 12:02:54 +1000540
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000541 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 2);
Ben Skeggs8dda53f2013-07-09 12:35:55 +1000542 OUT_RING (chan, NvEvoSema0 + nv_crtc->index);
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000543 OUT_RING (chan, sync->addr ^ 0x10);
544 BEGIN_NV04(chan, 0, NV11_SUBCHAN_SEMAPHORE_RELEASE, 1);
545 OUT_RING (chan, sync->data + 1);
546 BEGIN_NV04(chan, 0, NV11_SUBCHAN_SEMAPHORE_OFFSET, 2);
547 OUT_RING (chan, sync->addr);
548 OUT_RING (chan, sync->data);
549 } else
550 if (chan && nv_mclass(chan->object) < NVC0_CHANNEL_IND_CLASS) {
Ben Skeggs8dda53f2013-07-09 12:35:55 +1000551 u64 addr = nv84_fence_crtc(chan, nv_crtc->index) + sync->addr;
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000552 ret = RING_SPACE(chan, 12);
553 if (ret)
554 return ret;
Ben Skeggsa34caf72013-02-14 09:28:37 +1000555
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000556 BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1);
557 OUT_RING (chan, chan->vram);
558 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
559 OUT_RING (chan, upper_32_bits(addr ^ 0x10));
560 OUT_RING (chan, lower_32_bits(addr ^ 0x10));
561 OUT_RING (chan, sync->data + 1);
562 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG);
563 BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
564 OUT_RING (chan, upper_32_bits(addr));
565 OUT_RING (chan, lower_32_bits(addr));
566 OUT_RING (chan, sync->data);
567 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_EQUAL);
568 } else
569 if (chan) {
Ben Skeggs8dda53f2013-07-09 12:35:55 +1000570 u64 addr = nv84_fence_crtc(chan, nv_crtc->index) + sync->addr;
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000571 ret = RING_SPACE(chan, 10);
572 if (ret)
573 return ret;
Ben Skeggs67f97182013-02-26 12:02:54 +1000574
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000575 BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
576 OUT_RING (chan, upper_32_bits(addr ^ 0x10));
577 OUT_RING (chan, lower_32_bits(addr ^ 0x10));
578 OUT_RING (chan, sync->data + 1);
579 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG |
580 NVC0_SUBCHAN_SEMAPHORE_TRIGGER_YIELD);
581 BEGIN_NVC0(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4);
582 OUT_RING (chan, upper_32_bits(addr));
583 OUT_RING (chan, lower_32_bits(addr));
584 OUT_RING (chan, sync->data);
585 OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_EQUAL |
586 NVC0_SUBCHAN_SEMAPHORE_TRIGGER_YIELD);
587 }
Ben Skeggs35bcf5d2012-04-30 11:34:10 -0500588
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000589 if (chan) {
590 sync->addr ^= 0x10;
591 sync->data++;
Ben Skeggs3376ee32011-11-12 14:28:12 +1000592 FIRE_RING (chan);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000593 }
594
595 /* queue the flip */
596 evo_mthd(push, 0x0100, 1);
597 evo_data(push, 0xfffe0000);
598 evo_mthd(push, 0x0084, 1);
599 evo_data(push, swap_interval);
600 if (!(swap_interval & 0x00000100)) {
601 evo_mthd(push, 0x00e0, 1);
602 evo_data(push, 0x40000000);
603 }
604 evo_mthd(push, 0x0088, 4);
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +1000605 evo_data(push, sync->addr);
606 evo_data(push, sync->data++);
607 evo_data(push, sync->data);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000608 evo_data(push, NvEvoSync);
609 evo_mthd(push, 0x00a0, 2);
610 evo_data(push, 0x00000000);
611 evo_data(push, 0x00000000);
612 evo_mthd(push, 0x00c0, 1);
613 evo_data(push, nv_fb->r_dma);
614 evo_mthd(push, 0x0110, 2);
615 evo_data(push, 0x00000000);
616 evo_data(push, 0x00000000);
Ben Skeggse225f442012-11-21 14:40:21 +1000617 if (nv50_vers(sync) < NVD0_DISP_SYNC_CLASS) {
Ben Skeggsed5085a52012-11-16 13:16:51 +1000618 evo_mthd(push, 0x0800, 5);
619 evo_data(push, nv_fb->nvbo->bo.offset >> 8);
620 evo_data(push, 0);
621 evo_data(push, (fb->height << 16) | fb->width);
622 evo_data(push, nv_fb->r_pitch);
623 evo_data(push, nv_fb->r_format);
624 } else {
625 evo_mthd(push, 0x0400, 5);
626 evo_data(push, nv_fb->nvbo->bo.offset >> 8);
627 evo_data(push, 0);
628 evo_data(push, (fb->height << 16) | fb->width);
629 evo_data(push, nv_fb->r_pitch);
630 evo_data(push, nv_fb->r_format);
631 }
Ben Skeggs3376ee32011-11-12 14:28:12 +1000632 evo_mthd(push, 0x0080, 1);
633 evo_data(push, 0x00000000);
Ben Skeggsb5a794b2012-10-16 14:18:32 +1000634 evo_kick(push, sync);
Ben Skeggs8dda53f2013-07-09 12:35:55 +1000635
636 nouveau_bo_ref(nv_fb->nvbo, &head->image);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000637 return 0;
638}
639
Ben Skeggs26f6d882011-07-04 16:25:18 +1000640/******************************************************************************
Ben Skeggs438d99e2011-07-05 16:48:06 +1000641 * CRTC
642 *****************************************************************************/
643static int
Ben Skeggse225f442012-11-21 14:40:21 +1000644nv50_crtc_set_dither(struct nouveau_crtc *nv_crtc, bool update)
Ben Skeggs438d99e2011-07-05 16:48:06 +1000645{
Ben Skeggse225f442012-11-21 14:40:21 +1000646 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
Ben Skeggsde691852011-10-17 12:23:41 +1000647 struct nouveau_connector *nv_connector;
648 struct drm_connector *connector;
649 u32 *push, mode = 0x00;
Ben Skeggs438d99e2011-07-05 16:48:06 +1000650
Ben Skeggs488ff202011-10-17 10:38:10 +1000651 nv_connector = nouveau_crtc_connector_get(nv_crtc);
Ben Skeggsde691852011-10-17 12:23:41 +1000652 connector = &nv_connector->base;
653 if (nv_connector->dithering_mode == DITHERING_MODE_AUTO) {
Matt Roperf4510a22014-04-01 15:22:40 -0700654 if (nv_crtc->base.primary->fb->depth > connector->display_info.bpc * 3)
Ben Skeggsde691852011-10-17 12:23:41 +1000655 mode = DITHERING_MODE_DYNAMIC2X2;
656 } else {
657 mode = nv_connector->dithering_mode;
658 }
659
660 if (nv_connector->dithering_depth == DITHERING_DEPTH_AUTO) {
661 if (connector->display_info.bpc >= 8)
662 mode |= DITHERING_DEPTH_8BPC;
663 } else {
664 mode |= nv_connector->dithering_depth;
Ben Skeggs438d99e2011-07-05 16:48:06 +1000665 }
666
Ben Skeggsde8268c2012-11-16 10:24:31 +1000667 push = evo_wait(mast, 4);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000668 if (push) {
Ben Skeggse225f442012-11-21 14:40:21 +1000669 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000670 evo_mthd(push, 0x08a0 + (nv_crtc->index * 0x0400), 1);
671 evo_data(push, mode);
672 } else
Ben Skeggse225f442012-11-21 14:40:21 +1000673 if (nv50_vers(mast) < NVE0_DISP_MAST_CLASS) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000674 evo_mthd(push, 0x0490 + (nv_crtc->index * 0x0300), 1);
675 evo_data(push, mode);
676 } else {
677 evo_mthd(push, 0x04a0 + (nv_crtc->index * 0x0300), 1);
678 evo_data(push, mode);
679 }
680
Ben Skeggs438d99e2011-07-05 16:48:06 +1000681 if (update) {
682 evo_mthd(push, 0x0080, 1);
683 evo_data(push, 0x00000000);
684 }
Ben Skeggsde8268c2012-11-16 10:24:31 +1000685 evo_kick(push, mast);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000686 }
687
688 return 0;
689}
690
691static int
Ben Skeggse225f442012-11-21 14:40:21 +1000692nv50_crtc_set_scale(struct nouveau_crtc *nv_crtc, bool update)
Ben Skeggs438d99e2011-07-05 16:48:06 +1000693{
Ben Skeggse225f442012-11-21 14:40:21 +1000694 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
Ben Skeggs92854622011-11-11 23:49:06 +1000695 struct drm_display_mode *omode, *umode = &nv_crtc->base.mode;
Ben Skeggs3376ee32011-11-12 14:28:12 +1000696 struct drm_crtc *crtc = &nv_crtc->base;
Ben Skeggsf3fdc522011-07-07 16:01:57 +1000697 struct nouveau_connector *nv_connector;
Ben Skeggs92854622011-11-11 23:49:06 +1000698 int mode = DRM_MODE_SCALE_NONE;
699 u32 oX, oY, *push;
Ben Skeggs438d99e2011-07-05 16:48:06 +1000700
Ben Skeggs92854622011-11-11 23:49:06 +1000701 /* start off at the resolution we programmed the crtc for, this
702 * effectively handles NONE/FULL scaling
703 */
Ben Skeggsf3fdc522011-07-07 16:01:57 +1000704 nv_connector = nouveau_crtc_connector_get(nv_crtc);
Ben Skeggs92854622011-11-11 23:49:06 +1000705 if (nv_connector && nv_connector->native_mode)
706 mode = nv_connector->scaling_mode;
Ben Skeggsf3fdc522011-07-07 16:01:57 +1000707
Ben Skeggs92854622011-11-11 23:49:06 +1000708 if (mode != DRM_MODE_SCALE_NONE)
709 omode = nv_connector->native_mode;
710 else
711 omode = umode;
712
713 oX = omode->hdisplay;
714 oY = omode->vdisplay;
715 if (omode->flags & DRM_MODE_FLAG_DBLSCAN)
716 oY *= 2;
717
718 /* add overscan compensation if necessary, will keep the aspect
719 * ratio the same as the backend mode unless overridden by the
720 * user setting both hborder and vborder properties.
721 */
722 if (nv_connector && ( nv_connector->underscan == UNDERSCAN_ON ||
723 (nv_connector->underscan == UNDERSCAN_AUTO &&
724 nv_connector->edid &&
725 drm_detect_hdmi_monitor(nv_connector->edid)))) {
726 u32 bX = nv_connector->underscan_hborder;
727 u32 bY = nv_connector->underscan_vborder;
728 u32 aspect = (oY << 19) / oX;
729
730 if (bX) {
731 oX -= (bX * 2);
732 if (bY) oY -= (bY * 2);
733 else oY = ((oX * aspect) + (aspect / 2)) >> 19;
734 } else {
735 oX -= (oX >> 4) + 32;
736 if (bY) oY -= (bY * 2);
737 else oY = ((oX * aspect) + (aspect / 2)) >> 19;
Ben Skeggsf3fdc522011-07-07 16:01:57 +1000738 }
739 }
Ben Skeggs438d99e2011-07-05 16:48:06 +1000740
Ben Skeggs92854622011-11-11 23:49:06 +1000741 /* handle CENTER/ASPECT scaling, taking into account the areas
742 * removed already for overscan compensation
743 */
744 switch (mode) {
745 case DRM_MODE_SCALE_CENTER:
746 oX = min((u32)umode->hdisplay, oX);
747 oY = min((u32)umode->vdisplay, oY);
748 /* fall-through */
749 case DRM_MODE_SCALE_ASPECT:
750 if (oY < oX) {
751 u32 aspect = (umode->hdisplay << 19) / umode->vdisplay;
752 oX = ((oY * aspect) + (aspect / 2)) >> 19;
753 } else {
754 u32 aspect = (umode->vdisplay << 19) / umode->hdisplay;
755 oY = ((oX * aspect) + (aspect / 2)) >> 19;
756 }
757 break;
758 default:
759 break;
760 }
761
Ben Skeggsde8268c2012-11-16 10:24:31 +1000762 push = evo_wait(mast, 8);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000763 if (push) {
Ben Skeggse225f442012-11-21 14:40:21 +1000764 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000765 /*XXX: SCALE_CTRL_ACTIVE??? */
766 evo_mthd(push, 0x08d8 + (nv_crtc->index * 0x400), 2);
767 evo_data(push, (oY << 16) | oX);
768 evo_data(push, (oY << 16) | oX);
769 evo_mthd(push, 0x08a4 + (nv_crtc->index * 0x400), 1);
770 evo_data(push, 0x00000000);
771 evo_mthd(push, 0x08c8 + (nv_crtc->index * 0x400), 1);
772 evo_data(push, umode->vdisplay << 16 | umode->hdisplay);
773 } else {
774 evo_mthd(push, 0x04c0 + (nv_crtc->index * 0x300), 3);
775 evo_data(push, (oY << 16) | oX);
776 evo_data(push, (oY << 16) | oX);
777 evo_data(push, (oY << 16) | oX);
778 evo_mthd(push, 0x0494 + (nv_crtc->index * 0x300), 1);
779 evo_data(push, 0x00000000);
780 evo_mthd(push, 0x04b8 + (nv_crtc->index * 0x300), 1);
781 evo_data(push, umode->vdisplay << 16 | umode->hdisplay);
782 }
783
784 evo_kick(push, mast);
785
Ben Skeggs3376ee32011-11-12 14:28:12 +1000786 if (update) {
Ben Skeggse225f442012-11-21 14:40:21 +1000787 nv50_display_flip_stop(crtc);
Matt Roperf4510a22014-04-01 15:22:40 -0700788 nv50_display_flip_next(crtc, crtc->primary->fb,
789 NULL, 1);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000790 }
Ben Skeggs438d99e2011-07-05 16:48:06 +1000791 }
792
793 return 0;
794}
795
796static int
Ben Skeggse225f442012-11-21 14:40:21 +1000797nv50_crtc_set_color_vibrance(struct nouveau_crtc *nv_crtc, bool update)
Ben Skeggsf9887d02012-11-21 13:03:42 +1000798{
Ben Skeggse225f442012-11-21 14:40:21 +1000799 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
Ben Skeggsf9887d02012-11-21 13:03:42 +1000800 u32 *push, hue, vib;
801 int adj;
802
803 adj = (nv_crtc->color_vibrance > 0) ? 50 : 0;
804 vib = ((nv_crtc->color_vibrance * 2047 + adj) / 100) & 0xfff;
805 hue = ((nv_crtc->vibrant_hue * 2047) / 100) & 0xfff;
806
807 push = evo_wait(mast, 16);
808 if (push) {
Ben Skeggse225f442012-11-21 14:40:21 +1000809 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
Ben Skeggsf9887d02012-11-21 13:03:42 +1000810 evo_mthd(push, 0x08a8 + (nv_crtc->index * 0x400), 1);
811 evo_data(push, (hue << 20) | (vib << 8));
812 } else {
813 evo_mthd(push, 0x0498 + (nv_crtc->index * 0x300), 1);
814 evo_data(push, (hue << 20) | (vib << 8));
815 }
816
817 if (update) {
818 evo_mthd(push, 0x0080, 1);
819 evo_data(push, 0x00000000);
820 }
821 evo_kick(push, mast);
822 }
823
824 return 0;
825}
826
827static int
Ben Skeggse225f442012-11-21 14:40:21 +1000828nv50_crtc_set_image(struct nouveau_crtc *nv_crtc, struct drm_framebuffer *fb,
Ben Skeggs438d99e2011-07-05 16:48:06 +1000829 int x, int y, bool update)
830{
831 struct nouveau_framebuffer *nvfb = nouveau_framebuffer(fb);
Ben Skeggse225f442012-11-21 14:40:21 +1000832 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000833 u32 *push;
834
Ben Skeggsde8268c2012-11-16 10:24:31 +1000835 push = evo_wait(mast, 16);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000836 if (push) {
Ben Skeggse225f442012-11-21 14:40:21 +1000837 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000838 evo_mthd(push, 0x0860 + (nv_crtc->index * 0x400), 1);
839 evo_data(push, nvfb->nvbo->bo.offset >> 8);
840 evo_mthd(push, 0x0868 + (nv_crtc->index * 0x400), 3);
841 evo_data(push, (fb->height << 16) | fb->width);
842 evo_data(push, nvfb->r_pitch);
843 evo_data(push, nvfb->r_format);
844 evo_mthd(push, 0x08c0 + (nv_crtc->index * 0x400), 1);
845 evo_data(push, (y << 16) | x);
Ben Skeggse225f442012-11-21 14:40:21 +1000846 if (nv50_vers(mast) > NV50_DISP_MAST_CLASS) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000847 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
848 evo_data(push, nvfb->r_dma);
849 }
850 } else {
851 evo_mthd(push, 0x0460 + (nv_crtc->index * 0x300), 1);
852 evo_data(push, nvfb->nvbo->bo.offset >> 8);
853 evo_mthd(push, 0x0468 + (nv_crtc->index * 0x300), 4);
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_data(push, nvfb->r_dma);
858 evo_mthd(push, 0x04b0 + (nv_crtc->index * 0x300), 1);
859 evo_data(push, (y << 16) | x);
860 }
861
Ben Skeggsa46232e2011-07-07 15:23:48 +1000862 if (update) {
863 evo_mthd(push, 0x0080, 1);
864 evo_data(push, 0x00000000);
865 }
Ben Skeggsde8268c2012-11-16 10:24:31 +1000866 evo_kick(push, mast);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000867 }
868
Ben Skeggsc0cc92a2011-07-06 11:40:45 +1000869 nv_crtc->fb.tile_flags = nvfb->r_dma;
Ben Skeggs438d99e2011-07-05 16:48:06 +1000870 return 0;
871}
872
873static void
Ben Skeggse225f442012-11-21 14:40:21 +1000874nv50_crtc_cursor_show(struct nouveau_crtc *nv_crtc)
Ben Skeggs438d99e2011-07-05 16:48:06 +1000875{
Ben Skeggse225f442012-11-21 14:40:21 +1000876 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000877 u32 *push = evo_wait(mast, 16);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000878 if (push) {
Ben Skeggse225f442012-11-21 14:40:21 +1000879 if (nv50_vers(mast) < NV84_DISP_MAST_CLASS) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000880 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 2);
881 evo_data(push, 0x85000000);
882 evo_data(push, nv_crtc->cursor.nvbo->bo.offset >> 8);
883 } else
Ben Skeggse225f442012-11-21 14:40:21 +1000884 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000885 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 2);
886 evo_data(push, 0x85000000);
887 evo_data(push, nv_crtc->cursor.nvbo->bo.offset >> 8);
888 evo_mthd(push, 0x089c + (nv_crtc->index * 0x400), 1);
889 evo_data(push, NvEvoVRAM);
890 } else {
Ben Skeggs438d99e2011-07-05 16:48:06 +1000891 evo_mthd(push, 0x0480 + (nv_crtc->index * 0x300), 2);
892 evo_data(push, 0x85000000);
893 evo_data(push, nv_crtc->cursor.nvbo->bo.offset >> 8);
894 evo_mthd(push, 0x048c + (nv_crtc->index * 0x300), 1);
Ben Skeggs37b034a2011-07-08 14:43:19 +1000895 evo_data(push, NvEvoVRAM);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000896 }
897 evo_kick(push, mast);
898 }
899}
900
901static void
Ben Skeggse225f442012-11-21 14:40:21 +1000902nv50_crtc_cursor_hide(struct nouveau_crtc *nv_crtc)
Ben Skeggsde8268c2012-11-16 10:24:31 +1000903{
Ben Skeggse225f442012-11-21 14:40:21 +1000904 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000905 u32 *push = evo_wait(mast, 16);
906 if (push) {
Ben Skeggse225f442012-11-21 14:40:21 +1000907 if (nv50_vers(mast) < NV84_DISP_MAST_CLASS) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000908 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 1);
909 evo_data(push, 0x05000000);
910 } else
Ben Skeggse225f442012-11-21 14:40:21 +1000911 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000912 evo_mthd(push, 0x0880 + (nv_crtc->index * 0x400), 1);
913 evo_data(push, 0x05000000);
914 evo_mthd(push, 0x089c + (nv_crtc->index * 0x400), 1);
915 evo_data(push, 0x00000000);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000916 } else {
917 evo_mthd(push, 0x0480 + (nv_crtc->index * 0x300), 1);
918 evo_data(push, 0x05000000);
919 evo_mthd(push, 0x048c + (nv_crtc->index * 0x300), 1);
920 evo_data(push, 0x00000000);
921 }
Ben Skeggsde8268c2012-11-16 10:24:31 +1000922 evo_kick(push, mast);
923 }
924}
Ben Skeggs438d99e2011-07-05 16:48:06 +1000925
Ben Skeggsde8268c2012-11-16 10:24:31 +1000926static void
Ben Skeggse225f442012-11-21 14:40:21 +1000927nv50_crtc_cursor_show_hide(struct nouveau_crtc *nv_crtc, bool show, bool update)
Ben Skeggsde8268c2012-11-16 10:24:31 +1000928{
Ben Skeggse225f442012-11-21 14:40:21 +1000929 struct nv50_mast *mast = nv50_mast(nv_crtc->base.dev);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000930
931 if (show)
Ben Skeggse225f442012-11-21 14:40:21 +1000932 nv50_crtc_cursor_show(nv_crtc);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000933 else
Ben Skeggse225f442012-11-21 14:40:21 +1000934 nv50_crtc_cursor_hide(nv_crtc);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000935
936 if (update) {
937 u32 *push = evo_wait(mast, 2);
938 if (push) {
Ben Skeggs438d99e2011-07-05 16:48:06 +1000939 evo_mthd(push, 0x0080, 1);
940 evo_data(push, 0x00000000);
Ben Skeggsde8268c2012-11-16 10:24:31 +1000941 evo_kick(push, mast);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000942 }
Ben Skeggs438d99e2011-07-05 16:48:06 +1000943 }
944}
945
946static void
Ben Skeggse225f442012-11-21 14:40:21 +1000947nv50_crtc_dpms(struct drm_crtc *crtc, int mode)
Ben Skeggs438d99e2011-07-05 16:48:06 +1000948{
949}
950
951static void
Ben Skeggse225f442012-11-21 14:40:21 +1000952nv50_crtc_prepare(struct drm_crtc *crtc)
Ben Skeggs438d99e2011-07-05 16:48:06 +1000953{
954 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggse225f442012-11-21 14:40:21 +1000955 struct nv50_mast *mast = nv50_mast(crtc->dev);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000956 u32 *push;
957
Ben Skeggse225f442012-11-21 14:40:21 +1000958 nv50_display_flip_stop(crtc);
Ben Skeggs3376ee32011-11-12 14:28:12 +1000959
Ben Skeggsde8268c2012-11-16 10:24:31 +1000960 push = evo_wait(mast, 2);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000961 if (push) {
Ben Skeggse225f442012-11-21 14:40:21 +1000962 if (nv50_vers(mast) < NV84_DISP_MAST_CLASS) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000963 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
964 evo_data(push, 0x00000000);
965 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 1);
966 evo_data(push, 0x40000000);
967 } else
Ben Skeggse225f442012-11-21 14:40:21 +1000968 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
Ben Skeggsde8268c2012-11-16 10:24:31 +1000969 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
970 evo_data(push, 0x00000000);
971 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 1);
972 evo_data(push, 0x40000000);
973 evo_mthd(push, 0x085c + (nv_crtc->index * 0x400), 1);
974 evo_data(push, 0x00000000);
975 } else {
976 evo_mthd(push, 0x0474 + (nv_crtc->index * 0x300), 1);
977 evo_data(push, 0x00000000);
978 evo_mthd(push, 0x0440 + (nv_crtc->index * 0x300), 1);
979 evo_data(push, 0x03000000);
980 evo_mthd(push, 0x045c + (nv_crtc->index * 0x300), 1);
981 evo_data(push, 0x00000000);
982 }
983
984 evo_kick(push, mast);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000985 }
986
Ben Skeggse225f442012-11-21 14:40:21 +1000987 nv50_crtc_cursor_show_hide(nv_crtc, false, false);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000988}
989
990static void
Ben Skeggse225f442012-11-21 14:40:21 +1000991nv50_crtc_commit(struct drm_crtc *crtc)
Ben Skeggs438d99e2011-07-05 16:48:06 +1000992{
993 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggse225f442012-11-21 14:40:21 +1000994 struct nv50_mast *mast = nv50_mast(crtc->dev);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000995 u32 *push;
996
Ben Skeggsde8268c2012-11-16 10:24:31 +1000997 push = evo_wait(mast, 32);
Ben Skeggs438d99e2011-07-05 16:48:06 +1000998 if (push) {
Ben Skeggse225f442012-11-21 14:40:21 +1000999 if (nv50_vers(mast) < NV84_DISP_MAST_CLASS) {
Ben Skeggsde8268c2012-11-16 10:24:31 +10001000 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
1001 evo_data(push, NvEvoVRAM_LP);
1002 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 2);
1003 evo_data(push, 0xc0000000);
1004 evo_data(push, nv_crtc->lut.nvbo->bo.offset >> 8);
1005 } else
Ben Skeggse225f442012-11-21 14:40:21 +10001006 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
Ben Skeggsde8268c2012-11-16 10:24:31 +10001007 evo_mthd(push, 0x0874 + (nv_crtc->index * 0x400), 1);
1008 evo_data(push, nv_crtc->fb.tile_flags);
1009 evo_mthd(push, 0x0840 + (nv_crtc->index * 0x400), 2);
1010 evo_data(push, 0xc0000000);
1011 evo_data(push, nv_crtc->lut.nvbo->bo.offset >> 8);
1012 evo_mthd(push, 0x085c + (nv_crtc->index * 0x400), 1);
1013 evo_data(push, NvEvoVRAM);
1014 } else {
1015 evo_mthd(push, 0x0474 + (nv_crtc->index * 0x300), 1);
1016 evo_data(push, nv_crtc->fb.tile_flags);
1017 evo_mthd(push, 0x0440 + (nv_crtc->index * 0x300), 4);
1018 evo_data(push, 0x83000000);
1019 evo_data(push, nv_crtc->lut.nvbo->bo.offset >> 8);
1020 evo_data(push, 0x00000000);
1021 evo_data(push, 0x00000000);
1022 evo_mthd(push, 0x045c + (nv_crtc->index * 0x300), 1);
1023 evo_data(push, NvEvoVRAM);
1024 evo_mthd(push, 0x0430 + (nv_crtc->index * 0x300), 1);
1025 evo_data(push, 0xffffff00);
1026 }
1027
1028 evo_kick(push, mast);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001029 }
1030
Ben Skeggse225f442012-11-21 14:40:21 +10001031 nv50_crtc_cursor_show_hide(nv_crtc, nv_crtc->cursor.visible, true);
Matt Roperf4510a22014-04-01 15:22:40 -07001032 nv50_display_flip_next(crtc, crtc->primary->fb, NULL, 1);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001033}
1034
1035static bool
Ben Skeggse225f442012-11-21 14:40:21 +10001036nv50_crtc_mode_fixup(struct drm_crtc *crtc, const struct drm_display_mode *mode,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001037 struct drm_display_mode *adjusted_mode)
1038{
Ben Skeggseb2e9682014-01-24 10:13:23 +10001039 drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001040 return true;
1041}
1042
1043static int
Ben Skeggse225f442012-11-21 14:40:21 +10001044nv50_crtc_swap_fbs(struct drm_crtc *crtc, struct drm_framebuffer *old_fb)
Ben Skeggs438d99e2011-07-05 16:48:06 +10001045{
Matt Roperf4510a22014-04-01 15:22:40 -07001046 struct nouveau_framebuffer *nvfb = nouveau_framebuffer(crtc->primary->fb);
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001047 struct nv50_head *head = nv50_head(crtc);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001048 int ret;
1049
1050 ret = nouveau_bo_pin(nvfb->nvbo, TTM_PL_FLAG_VRAM);
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001051 if (ret == 0) {
1052 if (head->image)
1053 nouveau_bo_unpin(head->image);
1054 nouveau_bo_ref(nvfb->nvbo, &head->image);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001055 }
1056
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001057 return ret;
Ben Skeggs438d99e2011-07-05 16:48:06 +10001058}
1059
1060static int
Ben Skeggse225f442012-11-21 14:40:21 +10001061nv50_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *umode,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001062 struct drm_display_mode *mode, int x, int y,
1063 struct drm_framebuffer *old_fb)
1064{
Ben Skeggse225f442012-11-21 14:40:21 +10001065 struct nv50_mast *mast = nv50_mast(crtc->dev);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001066 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1067 struct nouveau_connector *nv_connector;
Ben Skeggs2d1d8982011-11-11 23:39:22 +10001068 u32 ilace = (mode->flags & DRM_MODE_FLAG_INTERLACE) ? 2 : 1;
1069 u32 vscan = (mode->flags & DRM_MODE_FLAG_DBLSCAN) ? 2 : 1;
1070 u32 hactive, hsynce, hbackp, hfrontp, hblanke, hblanks;
1071 u32 vactive, vsynce, vbackp, vfrontp, vblanke, vblanks;
1072 u32 vblan2e = 0, vblan2s = 1;
Ben Skeggs3488c572012-03-12 11:42:20 +10001073 u32 *push;
Ben Skeggs438d99e2011-07-05 16:48:06 +10001074 int ret;
1075
Ben Skeggs2d1d8982011-11-11 23:39:22 +10001076 hactive = mode->htotal;
1077 hsynce = mode->hsync_end - mode->hsync_start - 1;
1078 hbackp = mode->htotal - mode->hsync_end;
1079 hblanke = hsynce + hbackp;
1080 hfrontp = mode->hsync_start - mode->hdisplay;
1081 hblanks = mode->htotal - hfrontp - 1;
1082
1083 vactive = mode->vtotal * vscan / ilace;
1084 vsynce = ((mode->vsync_end - mode->vsync_start) * vscan / ilace) - 1;
1085 vbackp = (mode->vtotal - mode->vsync_end) * vscan / ilace;
1086 vblanke = vsynce + vbackp;
1087 vfrontp = (mode->vsync_start - mode->vdisplay) * vscan / ilace;
1088 vblanks = vactive - vfrontp - 1;
1089 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
1090 vblan2e = vactive + vsynce + vbackp;
1091 vblan2s = vblan2e + (mode->vdisplay * vscan / ilace);
1092 vactive = (vactive * 2) + 1;
Ben Skeggs2d1d8982011-11-11 23:39:22 +10001093 }
1094
Ben Skeggse225f442012-11-21 14:40:21 +10001095 ret = nv50_crtc_swap_fbs(crtc, old_fb);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001096 if (ret)
1097 return ret;
1098
Ben Skeggsde8268c2012-11-16 10:24:31 +10001099 push = evo_wait(mast, 64);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001100 if (push) {
Ben Skeggse225f442012-11-21 14:40:21 +10001101 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
Ben Skeggsde8268c2012-11-16 10:24:31 +10001102 evo_mthd(push, 0x0804 + (nv_crtc->index * 0x400), 2);
1103 evo_data(push, 0x00800000 | mode->clock);
1104 evo_data(push, (ilace == 2) ? 2 : 0);
1105 evo_mthd(push, 0x0810 + (nv_crtc->index * 0x400), 6);
1106 evo_data(push, 0x00000000);
1107 evo_data(push, (vactive << 16) | hactive);
1108 evo_data(push, ( vsynce << 16) | hsynce);
1109 evo_data(push, (vblanke << 16) | hblanke);
1110 evo_data(push, (vblanks << 16) | hblanks);
1111 evo_data(push, (vblan2e << 16) | vblan2s);
1112 evo_mthd(push, 0x082c + (nv_crtc->index * 0x400), 1);
1113 evo_data(push, 0x00000000);
1114 evo_mthd(push, 0x0900 + (nv_crtc->index * 0x400), 2);
1115 evo_data(push, 0x00000311);
1116 evo_data(push, 0x00000100);
1117 } else {
1118 evo_mthd(push, 0x0410 + (nv_crtc->index * 0x300), 6);
1119 evo_data(push, 0x00000000);
1120 evo_data(push, (vactive << 16) | hactive);
1121 evo_data(push, ( vsynce << 16) | hsynce);
1122 evo_data(push, (vblanke << 16) | hblanke);
1123 evo_data(push, (vblanks << 16) | hblanks);
1124 evo_data(push, (vblan2e << 16) | vblan2s);
1125 evo_mthd(push, 0x042c + (nv_crtc->index * 0x300), 1);
1126 evo_data(push, 0x00000000); /* ??? */
1127 evo_mthd(push, 0x0450 + (nv_crtc->index * 0x300), 3);
1128 evo_data(push, mode->clock * 1000);
1129 evo_data(push, 0x00200000); /* ??? */
1130 evo_data(push, mode->clock * 1000);
1131 evo_mthd(push, 0x04d0 + (nv_crtc->index * 0x300), 2);
1132 evo_data(push, 0x00000311);
1133 evo_data(push, 0x00000100);
1134 }
1135
1136 evo_kick(push, mast);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001137 }
1138
1139 nv_connector = nouveau_crtc_connector_get(nv_crtc);
Ben Skeggse225f442012-11-21 14:40:21 +10001140 nv50_crtc_set_dither(nv_crtc, false);
1141 nv50_crtc_set_scale(nv_crtc, false);
1142 nv50_crtc_set_color_vibrance(nv_crtc, false);
Matt Roperf4510a22014-04-01 15:22:40 -07001143 nv50_crtc_set_image(nv_crtc, crtc->primary->fb, x, y, false);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001144 return 0;
1145}
1146
1147static int
Ben Skeggse225f442012-11-21 14:40:21 +10001148nv50_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001149 struct drm_framebuffer *old_fb)
1150{
Ben Skeggs77145f12012-07-31 16:16:21 +10001151 struct nouveau_drm *drm = nouveau_drm(crtc->dev);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001152 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1153 int ret;
1154
Matt Roperf4510a22014-04-01 15:22:40 -07001155 if (!crtc->primary->fb) {
Ben Skeggs77145f12012-07-31 16:16:21 +10001156 NV_DEBUG(drm, "No FB bound\n");
Ben Skeggs84e2ad82011-08-26 09:40:39 +10001157 return 0;
1158 }
1159
Ben Skeggse225f442012-11-21 14:40:21 +10001160 ret = nv50_crtc_swap_fbs(crtc, old_fb);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001161 if (ret)
1162 return ret;
1163
Ben Skeggse225f442012-11-21 14:40:21 +10001164 nv50_display_flip_stop(crtc);
Matt Roperf4510a22014-04-01 15:22:40 -07001165 nv50_crtc_set_image(nv_crtc, crtc->primary->fb, x, y, true);
1166 nv50_display_flip_next(crtc, crtc->primary->fb, NULL, 1);
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_atomic(struct drm_crtc *crtc,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001172 struct drm_framebuffer *fb, int x, int y,
1173 enum mode_set_atomic state)
1174{
1175 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggse225f442012-11-21 14:40:21 +10001176 nv50_display_flip_stop(crtc);
1177 nv50_crtc_set_image(nv_crtc, fb, x, y, true);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001178 return 0;
1179}
1180
1181static void
Ben Skeggse225f442012-11-21 14:40:21 +10001182nv50_crtc_lut_load(struct drm_crtc *crtc)
Ben Skeggs438d99e2011-07-05 16:48:06 +10001183{
Ben Skeggse225f442012-11-21 14:40:21 +10001184 struct nv50_disp *disp = nv50_disp(crtc->dev);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001185 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1186 void __iomem *lut = nvbo_kmap_obj_iovirtual(nv_crtc->lut.nvbo);
1187 int i;
1188
1189 for (i = 0; i < 256; i++) {
Ben Skeggsde8268c2012-11-16 10:24:31 +10001190 u16 r = nv_crtc->lut.r[i] >> 2;
1191 u16 g = nv_crtc->lut.g[i] >> 2;
1192 u16 b = nv_crtc->lut.b[i] >> 2;
1193
1194 if (nv_mclass(disp->core) < NVD0_DISP_CLASS) {
1195 writew(r + 0x0000, lut + (i * 0x08) + 0);
1196 writew(g + 0x0000, lut + (i * 0x08) + 2);
1197 writew(b + 0x0000, lut + (i * 0x08) + 4);
1198 } else {
1199 writew(r + 0x6000, lut + (i * 0x20) + 0);
1200 writew(g + 0x6000, lut + (i * 0x20) + 2);
1201 writew(b + 0x6000, lut + (i * 0x20) + 4);
1202 }
Ben Skeggs438d99e2011-07-05 16:48:06 +10001203 }
1204}
1205
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001206static void
1207nv50_crtc_disable(struct drm_crtc *crtc)
1208{
1209 struct nv50_head *head = nv50_head(crtc);
1210 if (head->image)
1211 nouveau_bo_unpin(head->image);
1212 nouveau_bo_ref(NULL, &head->image);
1213}
1214
Ben Skeggs438d99e2011-07-05 16:48:06 +10001215static int
Ben Skeggse225f442012-11-21 14:40:21 +10001216nv50_crtc_cursor_set(struct drm_crtc *crtc, struct drm_file *file_priv,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001217 uint32_t handle, uint32_t width, uint32_t height)
1218{
1219 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
1220 struct drm_device *dev = crtc->dev;
1221 struct drm_gem_object *gem;
1222 struct nouveau_bo *nvbo;
1223 bool visible = (handle != 0);
1224 int i, ret = 0;
1225
1226 if (visible) {
1227 if (width != 64 || height != 64)
1228 return -EINVAL;
1229
1230 gem = drm_gem_object_lookup(dev, file_priv, handle);
1231 if (unlikely(!gem))
1232 return -ENOENT;
1233 nvbo = nouveau_gem_object(gem);
1234
1235 ret = nouveau_bo_map(nvbo);
1236 if (ret == 0) {
1237 for (i = 0; i < 64 * 64; i++) {
1238 u32 v = nouveau_bo_rd32(nvbo, i);
1239 nouveau_bo_wr32(nv_crtc->cursor.nvbo, i, v);
1240 }
1241 nouveau_bo_unmap(nvbo);
1242 }
1243
1244 drm_gem_object_unreference_unlocked(gem);
1245 }
1246
1247 if (visible != nv_crtc->cursor.visible) {
Ben Skeggse225f442012-11-21 14:40:21 +10001248 nv50_crtc_cursor_show_hide(nv_crtc, visible, true);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001249 nv_crtc->cursor.visible = visible;
1250 }
1251
1252 return ret;
1253}
1254
1255static int
Ben Skeggse225f442012-11-21 14:40:21 +10001256nv50_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
Ben Skeggs438d99e2011-07-05 16:48:06 +10001257{
Ben Skeggse225f442012-11-21 14:40:21 +10001258 struct nv50_curs *curs = nv50_curs(crtc);
1259 struct nv50_chan *chan = nv50_chan(curs);
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001260 nv_wo32(chan->user, 0x0084, (y << 16) | (x & 0xffff));
1261 nv_wo32(chan->user, 0x0080, 0x00000000);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001262 return 0;
1263}
1264
1265static void
Ben Skeggse225f442012-11-21 14:40:21 +10001266nv50_crtc_gamma_set(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001267 uint32_t start, uint32_t size)
1268{
1269 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Dan Carpenterbdefc8c2013-11-28 01:18:47 +03001270 u32 end = min_t(u32, start + size, 256);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001271 u32 i;
1272
1273 for (i = start; i < end; i++) {
1274 nv_crtc->lut.r[i] = r[i];
1275 nv_crtc->lut.g[i] = g[i];
1276 nv_crtc->lut.b[i] = b[i];
1277 }
1278
Ben Skeggse225f442012-11-21 14:40:21 +10001279 nv50_crtc_lut_load(crtc);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001280}
1281
1282static void
Ben Skeggse225f442012-11-21 14:40:21 +10001283nv50_crtc_destroy(struct drm_crtc *crtc)
Ben Skeggs438d99e2011-07-05 16:48:06 +10001284{
1285 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
Ben Skeggse225f442012-11-21 14:40:21 +10001286 struct nv50_disp *disp = nv50_disp(crtc->dev);
1287 struct nv50_head *head = nv50_head(crtc);
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001288
Ben Skeggse225f442012-11-21 14:40:21 +10001289 nv50_dmac_destroy(disp->core, &head->ovly.base);
1290 nv50_pioc_destroy(disp->core, &head->oimm.base);
1291 nv50_dmac_destroy(disp->core, &head->sync.base);
1292 nv50_pioc_destroy(disp->core, &head->curs.base);
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001293
1294 /*XXX: this shouldn't be necessary, but the core doesn't call
1295 * disconnect() during the cleanup paths
1296 */
1297 if (head->image)
1298 nouveau_bo_unpin(head->image);
1299 nouveau_bo_ref(NULL, &head->image);
1300
Ben Skeggs438d99e2011-07-05 16:48:06 +10001301 nouveau_bo_unmap(nv_crtc->cursor.nvbo);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01001302 if (nv_crtc->cursor.nvbo)
1303 nouveau_bo_unpin(nv_crtc->cursor.nvbo);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001304 nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo);
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001305
Ben Skeggs438d99e2011-07-05 16:48:06 +10001306 nouveau_bo_unmap(nv_crtc->lut.nvbo);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01001307 if (nv_crtc->lut.nvbo)
1308 nouveau_bo_unpin(nv_crtc->lut.nvbo);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001309 nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo);
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001310
Ben Skeggs438d99e2011-07-05 16:48:06 +10001311 drm_crtc_cleanup(crtc);
1312 kfree(crtc);
1313}
1314
Ben Skeggse225f442012-11-21 14:40:21 +10001315static const struct drm_crtc_helper_funcs nv50_crtc_hfunc = {
1316 .dpms = nv50_crtc_dpms,
1317 .prepare = nv50_crtc_prepare,
1318 .commit = nv50_crtc_commit,
1319 .mode_fixup = nv50_crtc_mode_fixup,
1320 .mode_set = nv50_crtc_mode_set,
1321 .mode_set_base = nv50_crtc_mode_set_base,
1322 .mode_set_base_atomic = nv50_crtc_mode_set_base_atomic,
1323 .load_lut = nv50_crtc_lut_load,
Ben Skeggs8dda53f2013-07-09 12:35:55 +10001324 .disable = nv50_crtc_disable,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001325};
1326
Ben Skeggse225f442012-11-21 14:40:21 +10001327static const struct drm_crtc_funcs nv50_crtc_func = {
1328 .cursor_set = nv50_crtc_cursor_set,
1329 .cursor_move = nv50_crtc_cursor_move,
1330 .gamma_set = nv50_crtc_gamma_set,
Dave Airlie5addcf02012-09-10 14:20:51 +10001331 .set_config = nouveau_crtc_set_config,
Ben Skeggse225f442012-11-21 14:40:21 +10001332 .destroy = nv50_crtc_destroy,
Ben Skeggs3376ee32011-11-12 14:28:12 +10001333 .page_flip = nouveau_crtc_page_flip,
Ben Skeggs438d99e2011-07-05 16:48:06 +10001334};
1335
Ben Skeggsc20ab3e2011-08-25 14:09:43 +10001336static void
Ben Skeggse225f442012-11-21 14:40:21 +10001337nv50_cursor_set_pos(struct nouveau_crtc *nv_crtc, int x, int y)
Ben Skeggsc20ab3e2011-08-25 14:09:43 +10001338{
1339}
1340
1341static void
Ben Skeggse225f442012-11-21 14:40:21 +10001342nv50_cursor_set_offset(struct nouveau_crtc *nv_crtc, uint32_t offset)
Ben Skeggsc20ab3e2011-08-25 14:09:43 +10001343{
1344}
1345
Ben Skeggs438d99e2011-07-05 16:48:06 +10001346static int
Ben Skeggse225f442012-11-21 14:40:21 +10001347nv50_crtc_create(struct drm_device *dev, struct nouveau_object *core, int index)
Ben Skeggs438d99e2011-07-05 16:48:06 +10001348{
Ben Skeggse225f442012-11-21 14:40:21 +10001349 struct nv50_disp *disp = nv50_disp(dev);
1350 struct nv50_head *head;
Ben Skeggs438d99e2011-07-05 16:48:06 +10001351 struct drm_crtc *crtc;
1352 int ret, i;
1353
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001354 head = kzalloc(sizeof(*head), GFP_KERNEL);
1355 if (!head)
Ben Skeggs438d99e2011-07-05 16:48:06 +10001356 return -ENOMEM;
1357
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001358 head->base.index = index;
Ben Skeggse225f442012-11-21 14:40:21 +10001359 head->base.set_dither = nv50_crtc_set_dither;
1360 head->base.set_scale = nv50_crtc_set_scale;
1361 head->base.set_color_vibrance = nv50_crtc_set_color_vibrance;
Ben Skeggsf9887d02012-11-21 13:03:42 +10001362 head->base.color_vibrance = 50;
1363 head->base.vibrant_hue = 0;
Ben Skeggse225f442012-11-21 14:40:21 +10001364 head->base.cursor.set_offset = nv50_cursor_set_offset;
1365 head->base.cursor.set_pos = nv50_cursor_set_pos;
Ben Skeggs438d99e2011-07-05 16:48:06 +10001366 for (i = 0; i < 256; i++) {
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001367 head->base.lut.r[i] = i << 8;
1368 head->base.lut.g[i] = i << 8;
1369 head->base.lut.b[i] = i << 8;
Ben Skeggs438d99e2011-07-05 16:48:06 +10001370 }
1371
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001372 crtc = &head->base.base;
Ben Skeggse225f442012-11-21 14:40:21 +10001373 drm_crtc_init(dev, crtc, &nv50_crtc_func);
1374 drm_crtc_helper_add(crtc, &nv50_crtc_hfunc);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001375 drm_mode_crtc_set_gamma_size(crtc, 256);
1376
Ben Skeggs8ea0d4a2011-07-07 14:49:24 +10001377 ret = nouveau_bo_new(dev, 8192, 0x100, TTM_PL_FLAG_VRAM,
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001378 0, 0x0000, NULL, &head->base.lut.nvbo);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001379 if (!ret) {
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001380 ret = nouveau_bo_pin(head->base.lut.nvbo, TTM_PL_FLAG_VRAM);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01001381 if (!ret) {
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001382 ret = nouveau_bo_map(head->base.lut.nvbo);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01001383 if (ret)
1384 nouveau_bo_unpin(head->base.lut.nvbo);
1385 }
Ben Skeggs438d99e2011-07-05 16:48:06 +10001386 if (ret)
Ben Skeggsdd0e3d52012-10-16 14:00:31 +10001387 nouveau_bo_ref(NULL, &head->base.lut.nvbo);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001388 }
1389
1390 if (ret)
1391 goto out;
1392
Ben Skeggse225f442012-11-21 14:40:21 +10001393 nv50_crtc_lut_load(crtc);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001394
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001395 /* allocate cursor resources */
Ben Skeggse225f442012-11-21 14:40:21 +10001396 ret = nv50_pioc_create(disp->core, NV50_DISP_CURS_CLASS, index,
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001397 &(struct nv50_display_curs_class) {
1398 .head = index,
1399 }, sizeof(struct nv50_display_curs_class),
1400 &head->curs.base);
1401 if (ret)
1402 goto out;
1403
1404 ret = nouveau_bo_new(dev, 64 * 64 * 4, 0x100, TTM_PL_FLAG_VRAM,
1405 0, 0x0000, NULL, &head->base.cursor.nvbo);
1406 if (!ret) {
1407 ret = nouveau_bo_pin(head->base.cursor.nvbo, TTM_PL_FLAG_VRAM);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01001408 if (!ret) {
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001409 ret = nouveau_bo_map(head->base.cursor.nvbo);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01001410 if (ret)
1411 nouveau_bo_unpin(head->base.lut.nvbo);
1412 }
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001413 if (ret)
1414 nouveau_bo_ref(NULL, &head->base.cursor.nvbo);
1415 }
1416
1417 if (ret)
1418 goto out;
1419
1420 /* allocate page flip / sync resources */
Ben Skeggse225f442012-11-21 14:40:21 +10001421 ret = nv50_dmac_create(disp->core, NV50_DISP_SYNC_CLASS, index,
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001422 &(struct nv50_display_sync_class) {
1423 .pushbuf = EVO_PUSH_HANDLE(SYNC, index),
1424 .head = index,
1425 }, sizeof(struct nv50_display_sync_class),
1426 disp->sync->bo.offset, &head->sync.base);
1427 if (ret)
1428 goto out;
1429
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +10001430 head->sync.addr = EVO_FLIP_SEM0(index);
1431 head->sync.data = 0x00000000;
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001432
1433 /* allocate overlay resources */
Ben Skeggse225f442012-11-21 14:40:21 +10001434 ret = nv50_pioc_create(disp->core, NV50_DISP_OIMM_CLASS, index,
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001435 &(struct nv50_display_oimm_class) {
1436 .head = index,
1437 }, sizeof(struct nv50_display_oimm_class),
1438 &head->oimm.base);
1439 if (ret)
1440 goto out;
1441
Ben Skeggse225f442012-11-21 14:40:21 +10001442 ret = nv50_dmac_create(disp->core, NV50_DISP_OVLY_CLASS, index,
Ben Skeggsb5a794b2012-10-16 14:18:32 +10001443 &(struct nv50_display_ovly_class) {
1444 .pushbuf = EVO_PUSH_HANDLE(OVLY, index),
1445 .head = index,
1446 }, sizeof(struct nv50_display_ovly_class),
1447 disp->sync->bo.offset, &head->ovly.base);
1448 if (ret)
1449 goto out;
1450
Ben Skeggs438d99e2011-07-05 16:48:06 +10001451out:
1452 if (ret)
Ben Skeggse225f442012-11-21 14:40:21 +10001453 nv50_crtc_destroy(crtc);
Ben Skeggs438d99e2011-07-05 16:48:06 +10001454 return ret;
1455}
1456
1457/******************************************************************************
Ben Skeggs26f6d882011-07-04 16:25:18 +10001458 * DAC
1459 *****************************************************************************/
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001460static void
Ben Skeggse225f442012-11-21 14:40:21 +10001461nv50_dac_dpms(struct drm_encoder *encoder, int mode)
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001462{
1463 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
Ben Skeggse225f442012-11-21 14:40:21 +10001464 struct nv50_disp *disp = nv50_disp(encoder->dev);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001465 int or = nv_encoder->or;
1466 u32 dpms_ctrl;
1467
Ben Skeggs35b21d32012-11-08 12:08:55 +10001468 dpms_ctrl = 0x00000000;
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001469 if (mode == DRM_MODE_DPMS_STANDBY || mode == DRM_MODE_DPMS_OFF)
1470 dpms_ctrl |= 0x00000001;
1471 if (mode == DRM_MODE_DPMS_SUSPEND || mode == DRM_MODE_DPMS_OFF)
1472 dpms_ctrl |= 0x00000004;
1473
Ben Skeggs35b21d32012-11-08 12:08:55 +10001474 nv_call(disp->core, NV50_DISP_DAC_PWR + or, dpms_ctrl);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001475}
1476
1477static bool
Ben Skeggse225f442012-11-21 14:40:21 +10001478nv50_dac_mode_fixup(struct drm_encoder *encoder,
Laurent Pincharte811f5a2012-07-17 17:56:50 +02001479 const struct drm_display_mode *mode,
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001480 struct drm_display_mode *adjusted_mode)
1481{
1482 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1483 struct nouveau_connector *nv_connector;
1484
1485 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1486 if (nv_connector && nv_connector->native_mode) {
1487 if (nv_connector->scaling_mode != DRM_MODE_SCALE_NONE) {
1488 int id = adjusted_mode->base.id;
1489 *adjusted_mode = *nv_connector->native_mode;
1490 adjusted_mode->base.id = id;
1491 }
1492 }
1493
1494 return true;
1495}
1496
1497static void
Ben Skeggse225f442012-11-21 14:40:21 +10001498nv50_dac_commit(struct drm_encoder *encoder)
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001499{
1500}
1501
1502static void
Ben Skeggse225f442012-11-21 14:40:21 +10001503nv50_dac_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001504 struct drm_display_mode *adjusted_mode)
1505{
Ben Skeggse225f442012-11-21 14:40:21 +10001506 struct nv50_mast *mast = nv50_mast(encoder->dev);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001507 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1508 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
Ben Skeggs97b19b52012-11-16 11:21:37 +10001509 u32 *push;
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001510
Ben Skeggse225f442012-11-21 14:40:21 +10001511 nv50_dac_dpms(encoder, DRM_MODE_DPMS_ON);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001512
Ben Skeggs97b19b52012-11-16 11:21:37 +10001513 push = evo_wait(mast, 8);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001514 if (push) {
Ben Skeggse225f442012-11-21 14:40:21 +10001515 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
Ben Skeggs97b19b52012-11-16 11:21:37 +10001516 u32 syncs = 0x00000000;
1517
1518 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1519 syncs |= 0x00000001;
1520 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1521 syncs |= 0x00000002;
1522
1523 evo_mthd(push, 0x0400 + (nv_encoder->or * 0x080), 2);
1524 evo_data(push, 1 << nv_crtc->index);
1525 evo_data(push, syncs);
1526 } else {
1527 u32 magic = 0x31ec6000 | (nv_crtc->index << 25);
1528 u32 syncs = 0x00000001;
1529
1530 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1531 syncs |= 0x00000008;
1532 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1533 syncs |= 0x00000010;
1534
1535 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1536 magic |= 0x00000001;
1537
1538 evo_mthd(push, 0x0404 + (nv_crtc->index * 0x300), 2);
1539 evo_data(push, syncs);
1540 evo_data(push, magic);
1541 evo_mthd(push, 0x0180 + (nv_encoder->or * 0x020), 1);
1542 evo_data(push, 1 << nv_crtc->index);
1543 }
1544
1545 evo_kick(push, mast);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001546 }
1547
1548 nv_encoder->crtc = encoder->crtc;
1549}
1550
1551static void
Ben Skeggse225f442012-11-21 14:40:21 +10001552nv50_dac_disconnect(struct drm_encoder *encoder)
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001553{
1554 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
Ben Skeggse225f442012-11-21 14:40:21 +10001555 struct nv50_mast *mast = nv50_mast(encoder->dev);
Ben Skeggs97b19b52012-11-16 11:21:37 +10001556 const int or = nv_encoder->or;
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001557 u32 *push;
1558
1559 if (nv_encoder->crtc) {
Ben Skeggse225f442012-11-21 14:40:21 +10001560 nv50_crtc_prepare(nv_encoder->crtc);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001561
Ben Skeggs97b19b52012-11-16 11:21:37 +10001562 push = evo_wait(mast, 4);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001563 if (push) {
Ben Skeggse225f442012-11-21 14:40:21 +10001564 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
Ben Skeggs97b19b52012-11-16 11:21:37 +10001565 evo_mthd(push, 0x0400 + (or * 0x080), 1);
1566 evo_data(push, 0x00000000);
1567 } else {
1568 evo_mthd(push, 0x0180 + (or * 0x020), 1);
1569 evo_data(push, 0x00000000);
1570 }
Ben Skeggs97b19b52012-11-16 11:21:37 +10001571 evo_kick(push, mast);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001572 }
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001573 }
Ben Skeggs97b19b52012-11-16 11:21:37 +10001574
1575 nv_encoder->crtc = NULL;
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001576}
1577
Ben Skeggsb6d8e7e2011-07-07 09:51:29 +10001578static enum drm_connector_status
Ben Skeggse225f442012-11-21 14:40:21 +10001579nv50_dac_detect(struct drm_encoder *encoder, struct drm_connector *connector)
Ben Skeggsb6d8e7e2011-07-07 09:51:29 +10001580{
Ben Skeggse225f442012-11-21 14:40:21 +10001581 struct nv50_disp *disp = nv50_disp(encoder->dev);
Ben Skeggs35b21d32012-11-08 12:08:55 +10001582 int ret, or = nouveau_encoder(encoder)->or;
Ben Skeggsd40ee482013-06-03 16:40:14 +10001583 u32 load = nouveau_drm(encoder->dev)->vbios.dactestval;
1584 if (load == 0)
1585 load = 340;
Ben Skeggsb6819932011-07-08 11:14:50 +10001586
Ben Skeggs35b21d32012-11-08 12:08:55 +10001587 ret = nv_exec(disp->core, NV50_DISP_DAC_LOAD + or, &load, sizeof(load));
Ben Skeggs4b31ebc2013-09-04 11:01:42 +10001588 if (ret || !load)
Ben Skeggs35b21d32012-11-08 12:08:55 +10001589 return connector_status_disconnected;
Ben Skeggsb6819932011-07-08 11:14:50 +10001590
Ben Skeggs35b21d32012-11-08 12:08:55 +10001591 return connector_status_connected;
Ben Skeggsb6d8e7e2011-07-07 09:51:29 +10001592}
1593
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001594static void
Ben Skeggse225f442012-11-21 14:40:21 +10001595nv50_dac_destroy(struct drm_encoder *encoder)
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001596{
1597 drm_encoder_cleanup(encoder);
1598 kfree(encoder);
1599}
1600
Ben Skeggse225f442012-11-21 14:40:21 +10001601static const struct drm_encoder_helper_funcs nv50_dac_hfunc = {
1602 .dpms = nv50_dac_dpms,
1603 .mode_fixup = nv50_dac_mode_fixup,
1604 .prepare = nv50_dac_disconnect,
1605 .commit = nv50_dac_commit,
1606 .mode_set = nv50_dac_mode_set,
1607 .disable = nv50_dac_disconnect,
1608 .get_crtc = nv50_display_crtc_get,
1609 .detect = nv50_dac_detect
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001610};
1611
Ben Skeggse225f442012-11-21 14:40:21 +10001612static const struct drm_encoder_funcs nv50_dac_func = {
1613 .destroy = nv50_dac_destroy,
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001614};
1615
1616static int
Ben Skeggse225f442012-11-21 14:40:21 +10001617nv50_dac_create(struct drm_connector *connector, struct dcb_output *dcbe)
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001618{
Ben Skeggs5ed50202013-02-11 20:15:03 +10001619 struct nouveau_drm *drm = nouveau_drm(connector->dev);
1620 struct nouveau_i2c *i2c = nouveau_i2c(drm->device);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001621 struct nouveau_encoder *nv_encoder;
1622 struct drm_encoder *encoder;
Ben Skeggs5ed50202013-02-11 20:15:03 +10001623 int type = DRM_MODE_ENCODER_DAC;
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001624
1625 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
1626 if (!nv_encoder)
1627 return -ENOMEM;
1628 nv_encoder->dcb = dcbe;
1629 nv_encoder->or = ffs(dcbe->or) - 1;
Ben Skeggs5ed50202013-02-11 20:15:03 +10001630 nv_encoder->i2c = i2c->find(i2c, dcbe->i2c_index);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001631
1632 encoder = to_drm_encoder(nv_encoder);
1633 encoder->possible_crtcs = dcbe->heads;
1634 encoder->possible_clones = 0;
Ben Skeggs5ed50202013-02-11 20:15:03 +10001635 drm_encoder_init(connector->dev, encoder, &nv50_dac_func, type);
Ben Skeggse225f442012-11-21 14:40:21 +10001636 drm_encoder_helper_add(encoder, &nv50_dac_hfunc);
Ben Skeggs8eaa9662011-07-06 15:25:47 +10001637
1638 drm_mode_connector_attach_encoder(connector, encoder);
1639 return 0;
1640}
Ben Skeggs26f6d882011-07-04 16:25:18 +10001641
1642/******************************************************************************
Ben Skeggs78951d22011-11-11 18:13:13 +10001643 * Audio
1644 *****************************************************************************/
1645static void
Ben Skeggse225f442012-11-21 14:40:21 +10001646nv50_audio_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode)
Ben Skeggs78951d22011-11-11 18:13:13 +10001647{
1648 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1649 struct nouveau_connector *nv_connector;
Ben Skeggse225f442012-11-21 14:40:21 +10001650 struct nv50_disp *disp = nv50_disp(encoder->dev);
Ben Skeggs78951d22011-11-11 18:13:13 +10001651
1652 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1653 if (!drm_detect_monitor_audio(nv_connector->edid))
1654 return;
1655
Ben Skeggs78951d22011-11-11 18:13:13 +10001656 drm_edid_to_eld(&nv_connector->base, nv_connector->edid);
Ben Skeggs78951d22011-11-11 18:13:13 +10001657
Ben Skeggs0a9e2b952012-11-08 14:03:56 +10001658 nv_exec(disp->core, NVA3_DISP_SOR_HDA_ELD + nv_encoder->or,
1659 nv_connector->base.eld,
1660 nv_connector->base.eld[2] * 4);
Ben Skeggs78951d22011-11-11 18:13:13 +10001661}
1662
1663static void
Ben Skeggse225f442012-11-21 14:40:21 +10001664nv50_audio_disconnect(struct drm_encoder *encoder)
Ben Skeggs78951d22011-11-11 18:13:13 +10001665{
1666 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
Ben Skeggse225f442012-11-21 14:40:21 +10001667 struct nv50_disp *disp = nv50_disp(encoder->dev);
Ben Skeggs78951d22011-11-11 18:13:13 +10001668
Ben Skeggs0a9e2b952012-11-08 14:03:56 +10001669 nv_exec(disp->core, NVA3_DISP_SOR_HDA_ELD + nv_encoder->or, NULL, 0);
Ben Skeggs78951d22011-11-11 18:13:13 +10001670}
1671
1672/******************************************************************************
1673 * HDMI
1674 *****************************************************************************/
1675static void
Ben Skeggse225f442012-11-21 14:40:21 +10001676nv50_hdmi_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode)
Ben Skeggs78951d22011-11-11 18:13:13 +10001677{
Ben Skeggs64d9cc02011-11-11 19:51:20 +10001678 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1679 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
1680 struct nouveau_connector *nv_connector;
Ben Skeggse225f442012-11-21 14:40:21 +10001681 struct nv50_disp *disp = nv50_disp(encoder->dev);
Ben Skeggs1c30cd02012-11-08 14:22:28 +10001682 const u32 moff = (nv_crtc->index << 3) | nv_encoder->or;
Ben Skeggs64d9cc02011-11-11 19:51:20 +10001683 u32 rekey = 56; /* binary driver, and tegra constant */
1684 u32 max_ac_packet;
1685
1686 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1687 if (!drm_detect_hdmi_monitor(nv_connector->edid))
1688 return;
1689
1690 max_ac_packet = mode->htotal - mode->hdisplay;
1691 max_ac_packet -= rekey;
1692 max_ac_packet -= 18; /* constant from tegra */
1693 max_ac_packet /= 32;
1694
Ben Skeggs1c30cd02012-11-08 14:22:28 +10001695 nv_call(disp->core, NV84_DISP_SOR_HDMI_PWR + moff,
1696 NV84_DISP_SOR_HDMI_PWR_STATE_ON |
1697 (max_ac_packet << 16) | rekey);
Ben Skeggs091e40c2011-11-11 20:46:00 +10001698
Ben Skeggse225f442012-11-21 14:40:21 +10001699 nv50_audio_mode_set(encoder, mode);
Ben Skeggs78951d22011-11-11 18:13:13 +10001700}
1701
1702static void
Ben Skeggse225f442012-11-21 14:40:21 +10001703nv50_hdmi_disconnect(struct drm_encoder *encoder)
Ben Skeggs78951d22011-11-11 18:13:13 +10001704{
Ben Skeggs64d9cc02011-11-11 19:51:20 +10001705 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1706 struct nouveau_crtc *nv_crtc = nouveau_crtc(nv_encoder->crtc);
Ben Skeggse225f442012-11-21 14:40:21 +10001707 struct nv50_disp *disp = nv50_disp(encoder->dev);
Ben Skeggs1c30cd02012-11-08 14:22:28 +10001708 const u32 moff = (nv_crtc->index << 3) | nv_encoder->or;
Ben Skeggs64d9cc02011-11-11 19:51:20 +10001709
Ben Skeggse225f442012-11-21 14:40:21 +10001710 nv50_audio_disconnect(encoder);
Ben Skeggs64d9cc02011-11-11 19:51:20 +10001711
Ben Skeggs1c30cd02012-11-08 14:22:28 +10001712 nv_call(disp->core, NV84_DISP_SOR_HDMI_PWR + moff, 0x00000000);
Ben Skeggs78951d22011-11-11 18:13:13 +10001713}
1714
1715/******************************************************************************
Ben Skeggs26f6d882011-07-04 16:25:18 +10001716 * SOR
1717 *****************************************************************************/
Ben Skeggs6e83fda2012-03-11 01:28:48 +10001718static void
Ben Skeggse225f442012-11-21 14:40:21 +10001719nv50_sor_dpms(struct drm_encoder *encoder, int mode)
Ben Skeggs83fc0832011-07-05 13:08:40 +10001720{
1721 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1722 struct drm_device *dev = encoder->dev;
Ben Skeggse225f442012-11-21 14:40:21 +10001723 struct nv50_disp *disp = nv50_disp(dev);
Ben Skeggs83fc0832011-07-05 13:08:40 +10001724 struct drm_encoder *partner;
1725 int or = nv_encoder->or;
Ben Skeggs83fc0832011-07-05 13:08:40 +10001726
1727 nv_encoder->last_dpms = mode;
1728
1729 list_for_each_entry(partner, &dev->mode_config.encoder_list, head) {
1730 struct nouveau_encoder *nv_partner = nouveau_encoder(partner);
1731
1732 if (partner->encoder_type != DRM_MODE_ENCODER_TMDS)
1733 continue;
1734
1735 if (nv_partner != nv_encoder &&
Ben Skeggs26cfa812011-11-17 09:10:02 +10001736 nv_partner->dcb->or == nv_encoder->dcb->or) {
Ben Skeggs83fc0832011-07-05 13:08:40 +10001737 if (nv_partner->last_dpms == DRM_MODE_DPMS_ON)
1738 return;
1739 break;
1740 }
1741 }
1742
Ben Skeggs74b66852012-11-08 12:01:39 +10001743 nv_call(disp->core, NV50_DISP_SOR_PWR + or, (mode == DRM_MODE_DPMS_ON));
Ben Skeggs83fc0832011-07-05 13:08:40 +10001744}
1745
1746static bool
Ben Skeggse225f442012-11-21 14:40:21 +10001747nv50_sor_mode_fixup(struct drm_encoder *encoder,
Laurent Pincharte811f5a2012-07-17 17:56:50 +02001748 const struct drm_display_mode *mode,
Ben Skeggs83fc0832011-07-05 13:08:40 +10001749 struct drm_display_mode *adjusted_mode)
1750{
1751 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1752 struct nouveau_connector *nv_connector;
1753
1754 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1755 if (nv_connector && nv_connector->native_mode) {
1756 if (nv_connector->scaling_mode != DRM_MODE_SCALE_NONE) {
1757 int id = adjusted_mode->base.id;
1758 *adjusted_mode = *nv_connector->native_mode;
1759 adjusted_mode->base.id = id;
1760 }
1761 }
1762
1763 return true;
1764}
1765
1766static void
Ben Skeggse225f442012-11-21 14:40:21 +10001767nv50_sor_disconnect(struct drm_encoder *encoder)
Ben Skeggs4cbb0f82012-03-12 15:23:44 +10001768{
1769 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
Ben Skeggse225f442012-11-21 14:40:21 +10001770 struct nv50_mast *mast = nv50_mast(encoder->dev);
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001771 const int or = nv_encoder->or;
Ben Skeggs4cbb0f82012-03-12 15:23:44 +10001772 u32 *push;
1773
1774 if (nv_encoder->crtc) {
Ben Skeggse225f442012-11-21 14:40:21 +10001775 nv50_crtc_prepare(nv_encoder->crtc);
Ben Skeggs4cbb0f82012-03-12 15:23:44 +10001776
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001777 push = evo_wait(mast, 4);
Ben Skeggs4cbb0f82012-03-12 15:23:44 +10001778 if (push) {
Ben Skeggse225f442012-11-21 14:40:21 +10001779 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001780 evo_mthd(push, 0x0600 + (or * 0x40), 1);
1781 evo_data(push, 0x00000000);
1782 } else {
1783 evo_mthd(push, 0x0200 + (or * 0x20), 1);
1784 evo_data(push, 0x00000000);
1785 }
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001786 evo_kick(push, mast);
Ben Skeggs4cbb0f82012-03-12 15:23:44 +10001787 }
1788
Ben Skeggse225f442012-11-21 14:40:21 +10001789 nv50_hdmi_disconnect(encoder);
Ben Skeggs4cbb0f82012-03-12 15:23:44 +10001790 }
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001791
1792 nv_encoder->last_dpms = DRM_MODE_DPMS_OFF;
1793 nv_encoder->crtc = NULL;
Ben Skeggs4cbb0f82012-03-12 15:23:44 +10001794}
1795
1796static void
Ben Skeggse225f442012-11-21 14:40:21 +10001797nv50_sor_commit(struct drm_encoder *encoder)
Ben Skeggs83fc0832011-07-05 13:08:40 +10001798{
1799}
1800
1801static void
Ben Skeggse225f442012-11-21 14:40:21 +10001802nv50_sor_mode_set(struct drm_encoder *encoder, struct drm_display_mode *umode,
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001803 struct drm_display_mode *mode)
Ben Skeggs83fc0832011-07-05 13:08:40 +10001804{
Ben Skeggse225f442012-11-21 14:40:21 +10001805 struct nv50_disp *disp = nv50_disp(encoder->dev);
1806 struct nv50_mast *mast = nv50_mast(encoder->dev);
Ben Skeggs78951d22011-11-11 18:13:13 +10001807 struct drm_device *dev = encoder->dev;
Ben Skeggs77145f12012-07-31 16:16:21 +10001808 struct nouveau_drm *drm = nouveau_drm(dev);
Ben Skeggs83fc0832011-07-05 13:08:40 +10001809 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1810 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001811 struct nouveau_connector *nv_connector;
Ben Skeggs77145f12012-07-31 16:16:21 +10001812 struct nvbios *bios = &drm->vbios;
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001813 u32 *push, lvds = 0;
1814 u8 owner = 1 << nv_crtc->index;
1815 u8 proto = 0xf;
1816 u8 depth = 0x0;
Ben Skeggs83fc0832011-07-05 13:08:40 +10001817
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001818 nv_connector = nouveau_encoder_connector_get(nv_encoder);
1819 switch (nv_encoder->dcb->type) {
Ben Skeggscb75d972012-07-11 10:44:20 +10001820 case DCB_OUTPUT_TMDS:
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001821 if (nv_encoder->dcb->sorconf.link & 1) {
1822 if (mode->clock < 165000)
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001823 proto = 0x1;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001824 else
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001825 proto = 0x5;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001826 } else {
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001827 proto = 0x2;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001828 }
Ben Skeggs83fc0832011-07-05 13:08:40 +10001829
Ben Skeggse225f442012-11-21 14:40:21 +10001830 nv50_hdmi_mode_set(encoder, mode);
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001831 break;
Ben Skeggscb75d972012-07-11 10:44:20 +10001832 case DCB_OUTPUT_LVDS:
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001833 proto = 0x0;
1834
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001835 if (bios->fp_no_ddc) {
1836 if (bios->fp.dual_link)
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001837 lvds |= 0x0100;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001838 if (bios->fp.if_is_24bit)
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001839 lvds |= 0x0200;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001840 } else {
Ben Skeggsbefb51e2011-11-18 10:23:59 +10001841 if (nv_connector->type == DCB_CONNECTOR_LVDS_SPWG) {
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001842 if (((u8 *)nv_connector->edid)[121] == 2)
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001843 lvds |= 0x0100;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001844 } else
1845 if (mode->clock >= bios->fp.duallink_transition_clk) {
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001846 lvds |= 0x0100;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001847 }
1848
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001849 if (lvds & 0x0100) {
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001850 if (bios->fp.strapless_is_24bit & 2)
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001851 lvds |= 0x0200;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001852 } else {
1853 if (bios->fp.strapless_is_24bit & 1)
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001854 lvds |= 0x0200;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001855 }
1856
1857 if (nv_connector->base.display_info.bpc == 8)
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001858 lvds |= 0x0200;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001859 }
Ben Skeggs4a230fa2012-11-09 11:25:37 +10001860
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001861 nv_call(disp->core, NV50_DISP_SOR_LVDS_SCRIPT + nv_encoder->or, lvds);
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001862 break;
Ben Skeggscb75d972012-07-11 10:44:20 +10001863 case DCB_OUTPUT_DP:
Ben Skeggs3488c572012-03-12 11:42:20 +10001864 if (nv_connector->base.display_info.bpc == 6) {
Ben Skeggs6e83fda2012-03-11 01:28:48 +10001865 nv_encoder->dp.datarate = mode->clock * 18 / 8;
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001866 depth = 0x2;
Ben Skeggsbf2c8862012-11-21 14:49:54 +10001867 } else
1868 if (nv_connector->base.display_info.bpc == 8) {
Ben Skeggs6e83fda2012-03-11 01:28:48 +10001869 nv_encoder->dp.datarate = mode->clock * 24 / 8;
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001870 depth = 0x5;
Ben Skeggsbf2c8862012-11-21 14:49:54 +10001871 } else {
1872 nv_encoder->dp.datarate = mode->clock * 30 / 8;
1873 depth = 0x6;
Ben Skeggs3488c572012-03-12 11:42:20 +10001874 }
Ben Skeggs6e83fda2012-03-11 01:28:48 +10001875
1876 if (nv_encoder->dcb->sorconf.link & 1)
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001877 proto = 0x8;
Ben Skeggs6e83fda2012-03-11 01:28:48 +10001878 else
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001879 proto = 0x9;
Ben Skeggs6e83fda2012-03-11 01:28:48 +10001880 break;
Ben Skeggs3b6d83d12011-07-08 12:52:14 +10001881 default:
1882 BUG_ON(1);
1883 break;
1884 }
Ben Skeggsff8ff502011-07-08 11:53:37 +10001885
Ben Skeggse225f442012-11-21 14:40:21 +10001886 nv50_sor_dpms(encoder, DRM_MODE_DPMS_ON);
Ben Skeggs83fc0832011-07-05 13:08:40 +10001887
Ben Skeggse225f442012-11-21 14:40:21 +10001888 push = evo_wait(nv50_mast(dev), 8);
Ben Skeggs83fc0832011-07-05 13:08:40 +10001889 if (push) {
Ben Skeggse225f442012-11-21 14:40:21 +10001890 if (nv50_vers(mast) < NVD0_DISP_CLASS) {
Ben Skeggse2de1792013-02-11 13:56:31 +10001891 u32 ctrl = (depth << 16) | (proto << 8) | owner;
1892 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1893 ctrl |= 0x00001000;
1894 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1895 ctrl |= 0x00002000;
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001896 evo_mthd(push, 0x0600 + (nv_encoder->or * 0x040), 1);
Ben Skeggse2de1792013-02-11 13:56:31 +10001897 evo_data(push, ctrl);
Ben Skeggs419e8dc2012-11-16 11:40:34 +10001898 } else {
1899 u32 magic = 0x31ec6000 | (nv_crtc->index << 25);
1900 u32 syncs = 0x00000001;
1901
1902 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1903 syncs |= 0x00000008;
1904 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1905 syncs |= 0x00000010;
1906
1907 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1908 magic |= 0x00000001;
1909
1910 evo_mthd(push, 0x0404 + (nv_crtc->index * 0x300), 2);
1911 evo_data(push, syncs | (depth << 6));
1912 evo_data(push, magic);
1913 evo_mthd(push, 0x0200 + (nv_encoder->or * 0x020), 1);
1914 evo_data(push, owner | (proto << 8));
1915 }
1916
1917 evo_kick(push, mast);
Ben Skeggs83fc0832011-07-05 13:08:40 +10001918 }
1919
1920 nv_encoder->crtc = encoder->crtc;
1921}
1922
1923static void
Ben Skeggse225f442012-11-21 14:40:21 +10001924nv50_sor_destroy(struct drm_encoder *encoder)
Ben Skeggs83fc0832011-07-05 13:08:40 +10001925{
1926 drm_encoder_cleanup(encoder);
1927 kfree(encoder);
1928}
1929
Ben Skeggse225f442012-11-21 14:40:21 +10001930static const struct drm_encoder_helper_funcs nv50_sor_hfunc = {
1931 .dpms = nv50_sor_dpms,
1932 .mode_fixup = nv50_sor_mode_fixup,
Ben Skeggs5a885f02013-02-20 14:34:18 +10001933 .prepare = nv50_sor_disconnect,
Ben Skeggse225f442012-11-21 14:40:21 +10001934 .commit = nv50_sor_commit,
1935 .mode_set = nv50_sor_mode_set,
1936 .disable = nv50_sor_disconnect,
1937 .get_crtc = nv50_display_crtc_get,
Ben Skeggs83fc0832011-07-05 13:08:40 +10001938};
1939
Ben Skeggse225f442012-11-21 14:40:21 +10001940static const struct drm_encoder_funcs nv50_sor_func = {
1941 .destroy = nv50_sor_destroy,
Ben Skeggs83fc0832011-07-05 13:08:40 +10001942};
1943
1944static int
Ben Skeggse225f442012-11-21 14:40:21 +10001945nv50_sor_create(struct drm_connector *connector, struct dcb_output *dcbe)
Ben Skeggs83fc0832011-07-05 13:08:40 +10001946{
Ben Skeggs5ed50202013-02-11 20:15:03 +10001947 struct nouveau_drm *drm = nouveau_drm(connector->dev);
1948 struct nouveau_i2c *i2c = nouveau_i2c(drm->device);
Ben Skeggs83fc0832011-07-05 13:08:40 +10001949 struct nouveau_encoder *nv_encoder;
1950 struct drm_encoder *encoder;
Ben Skeggs5ed50202013-02-11 20:15:03 +10001951 int type;
1952
1953 switch (dcbe->type) {
1954 case DCB_OUTPUT_LVDS: type = DRM_MODE_ENCODER_LVDS; break;
1955 case DCB_OUTPUT_TMDS:
1956 case DCB_OUTPUT_DP:
1957 default:
1958 type = DRM_MODE_ENCODER_TMDS;
1959 break;
1960 }
Ben Skeggs83fc0832011-07-05 13:08:40 +10001961
1962 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
1963 if (!nv_encoder)
1964 return -ENOMEM;
1965 nv_encoder->dcb = dcbe;
1966 nv_encoder->or = ffs(dcbe->or) - 1;
Ben Skeggs5ed50202013-02-11 20:15:03 +10001967 nv_encoder->i2c = i2c->find(i2c, dcbe->i2c_index);
Ben Skeggs83fc0832011-07-05 13:08:40 +10001968 nv_encoder->last_dpms = DRM_MODE_DPMS_OFF;
1969
1970 encoder = to_drm_encoder(nv_encoder);
1971 encoder->possible_crtcs = dcbe->heads;
1972 encoder->possible_clones = 0;
Ben Skeggs5ed50202013-02-11 20:15:03 +10001973 drm_encoder_init(connector->dev, encoder, &nv50_sor_func, type);
Ben Skeggse225f442012-11-21 14:40:21 +10001974 drm_encoder_helper_add(encoder, &nv50_sor_hfunc);
Ben Skeggs83fc0832011-07-05 13:08:40 +10001975
1976 drm_mode_connector_attach_encoder(connector, encoder);
1977 return 0;
1978}
Ben Skeggs26f6d882011-07-04 16:25:18 +10001979
1980/******************************************************************************
Ben Skeggseb6313a2013-02-11 09:52:58 +10001981 * PIOR
1982 *****************************************************************************/
1983
1984static void
1985nv50_pior_dpms(struct drm_encoder *encoder, int mode)
1986{
1987 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
1988 struct nv50_disp *disp = nv50_disp(encoder->dev);
1989 u32 mthd = (nv_encoder->dcb->type << 12) | nv_encoder->or;
1990 u32 ctrl = (mode == DRM_MODE_DPMS_ON);
1991 nv_call(disp->core, NV50_DISP_PIOR_PWR + mthd, ctrl);
1992}
1993
1994static bool
1995nv50_pior_mode_fixup(struct drm_encoder *encoder,
1996 const struct drm_display_mode *mode,
1997 struct drm_display_mode *adjusted_mode)
1998{
1999 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
2000 struct nouveau_connector *nv_connector;
2001
2002 nv_connector = nouveau_encoder_connector_get(nv_encoder);
2003 if (nv_connector && nv_connector->native_mode) {
2004 if (nv_connector->scaling_mode != DRM_MODE_SCALE_NONE) {
2005 int id = adjusted_mode->base.id;
2006 *adjusted_mode = *nv_connector->native_mode;
2007 adjusted_mode->base.id = id;
2008 }
2009 }
2010
2011 adjusted_mode->clock *= 2;
2012 return true;
2013}
2014
2015static void
2016nv50_pior_commit(struct drm_encoder *encoder)
2017{
2018}
2019
2020static void
2021nv50_pior_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode,
2022 struct drm_display_mode *adjusted_mode)
2023{
2024 struct nv50_mast *mast = nv50_mast(encoder->dev);
2025 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
2026 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
2027 struct nouveau_connector *nv_connector;
2028 u8 owner = 1 << nv_crtc->index;
2029 u8 proto, depth;
2030 u32 *push;
2031
2032 nv_connector = nouveau_encoder_connector_get(nv_encoder);
2033 switch (nv_connector->base.display_info.bpc) {
2034 case 10: depth = 0x6; break;
2035 case 8: depth = 0x5; break;
2036 case 6: depth = 0x2; break;
2037 default: depth = 0x0; break;
2038 }
2039
2040 switch (nv_encoder->dcb->type) {
2041 case DCB_OUTPUT_TMDS:
2042 case DCB_OUTPUT_DP:
2043 proto = 0x0;
2044 break;
2045 default:
2046 BUG_ON(1);
2047 break;
2048 }
2049
2050 nv50_pior_dpms(encoder, DRM_MODE_DPMS_ON);
2051
2052 push = evo_wait(mast, 8);
2053 if (push) {
2054 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
2055 u32 ctrl = (depth << 16) | (proto << 8) | owner;
2056 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
2057 ctrl |= 0x00001000;
2058 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
2059 ctrl |= 0x00002000;
2060 evo_mthd(push, 0x0700 + (nv_encoder->or * 0x040), 1);
2061 evo_data(push, ctrl);
2062 }
2063
2064 evo_kick(push, mast);
2065 }
2066
2067 nv_encoder->crtc = encoder->crtc;
2068}
2069
2070static void
2071nv50_pior_disconnect(struct drm_encoder *encoder)
2072{
2073 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
2074 struct nv50_mast *mast = nv50_mast(encoder->dev);
2075 const int or = nv_encoder->or;
2076 u32 *push;
2077
2078 if (nv_encoder->crtc) {
2079 nv50_crtc_prepare(nv_encoder->crtc);
2080
2081 push = evo_wait(mast, 4);
2082 if (push) {
2083 if (nv50_vers(mast) < NVD0_DISP_MAST_CLASS) {
2084 evo_mthd(push, 0x0700 + (or * 0x040), 1);
2085 evo_data(push, 0x00000000);
2086 }
Ben Skeggseb6313a2013-02-11 09:52:58 +10002087 evo_kick(push, mast);
2088 }
2089 }
2090
2091 nv_encoder->crtc = NULL;
2092}
2093
2094static void
2095nv50_pior_destroy(struct drm_encoder *encoder)
2096{
2097 drm_encoder_cleanup(encoder);
2098 kfree(encoder);
2099}
2100
2101static const struct drm_encoder_helper_funcs nv50_pior_hfunc = {
2102 .dpms = nv50_pior_dpms,
2103 .mode_fixup = nv50_pior_mode_fixup,
2104 .prepare = nv50_pior_disconnect,
2105 .commit = nv50_pior_commit,
2106 .mode_set = nv50_pior_mode_set,
2107 .disable = nv50_pior_disconnect,
2108 .get_crtc = nv50_display_crtc_get,
2109};
2110
2111static const struct drm_encoder_funcs nv50_pior_func = {
2112 .destroy = nv50_pior_destroy,
2113};
2114
2115static int
2116nv50_pior_create(struct drm_connector *connector, struct dcb_output *dcbe)
2117{
2118 struct nouveau_drm *drm = nouveau_drm(connector->dev);
2119 struct nouveau_i2c *i2c = nouveau_i2c(drm->device);
2120 struct nouveau_i2c_port *ddc = NULL;
2121 struct nouveau_encoder *nv_encoder;
2122 struct drm_encoder *encoder;
2123 int type;
2124
2125 switch (dcbe->type) {
2126 case DCB_OUTPUT_TMDS:
2127 ddc = i2c->find_type(i2c, NV_I2C_TYPE_EXTDDC(dcbe->extdev));
2128 type = DRM_MODE_ENCODER_TMDS;
2129 break;
2130 case DCB_OUTPUT_DP:
2131 ddc = i2c->find_type(i2c, NV_I2C_TYPE_EXTAUX(dcbe->extdev));
2132 type = DRM_MODE_ENCODER_TMDS;
2133 break;
2134 default:
2135 return -ENODEV;
2136 }
2137
2138 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
2139 if (!nv_encoder)
2140 return -ENOMEM;
2141 nv_encoder->dcb = dcbe;
2142 nv_encoder->or = ffs(dcbe->or) - 1;
2143 nv_encoder->i2c = ddc;
2144
2145 encoder = to_drm_encoder(nv_encoder);
2146 encoder->possible_crtcs = dcbe->heads;
2147 encoder->possible_clones = 0;
2148 drm_encoder_init(connector->dev, encoder, &nv50_pior_func, type);
2149 drm_encoder_helper_add(encoder, &nv50_pior_hfunc);
2150
2151 drm_mode_connector_attach_encoder(connector, encoder);
2152 return 0;
2153}
2154
2155/******************************************************************************
Ben Skeggs26f6d882011-07-04 16:25:18 +10002156 * Init
2157 *****************************************************************************/
Ben Skeggs2a44e492011-11-09 11:36:33 +10002158void
Ben Skeggse225f442012-11-21 14:40:21 +10002159nv50_display_fini(struct drm_device *dev)
Ben Skeggs26f6d882011-07-04 16:25:18 +10002160{
Ben Skeggs26f6d882011-07-04 16:25:18 +10002161}
2162
2163int
Ben Skeggse225f442012-11-21 14:40:21 +10002164nv50_display_init(struct drm_device *dev)
Ben Skeggs26f6d882011-07-04 16:25:18 +10002165{
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +10002166 struct nv50_disp *disp = nv50_disp(dev);
2167 struct drm_crtc *crtc;
2168 u32 *push;
2169
2170 push = evo_wait(nv50_mast(dev), 32);
2171 if (!push)
2172 return -EBUSY;
2173
2174 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2175 struct nv50_sync *sync = nv50_sync(crtc);
2176 nouveau_bo_wr32(disp->sync, sync->addr / 4, sync->data);
Ben Skeggs26f6d882011-07-04 16:25:18 +10002177 }
2178
Ben Skeggs9f9bdaa2013-03-02 13:21:31 +10002179 evo_mthd(push, 0x0088, 1);
2180 evo_data(push, NvEvoSync);
2181 evo_kick(push, nv50_mast(dev));
2182 return 0;
Ben Skeggs26f6d882011-07-04 16:25:18 +10002183}
2184
2185void
Ben Skeggse225f442012-11-21 14:40:21 +10002186nv50_display_destroy(struct drm_device *dev)
Ben Skeggs26f6d882011-07-04 16:25:18 +10002187{
Ben Skeggse225f442012-11-21 14:40:21 +10002188 struct nv50_disp *disp = nv50_disp(dev);
Ben Skeggs26f6d882011-07-04 16:25:18 +10002189
Ben Skeggse225f442012-11-21 14:40:21 +10002190 nv50_dmac_destroy(disp->core, &disp->mast.base);
Ben Skeggsbdb8c212011-11-12 01:30:24 +10002191
Ben Skeggs816af2f2011-11-16 15:48:48 +10002192 nouveau_bo_unmap(disp->sync);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01002193 if (disp->sync)
2194 nouveau_bo_unpin(disp->sync);
Ben Skeggs816af2f2011-11-16 15:48:48 +10002195 nouveau_bo_ref(NULL, &disp->sync);
Ben Skeggs51beb422011-07-05 10:33:08 +10002196
Ben Skeggs77145f12012-07-31 16:16:21 +10002197 nouveau_display(dev)->priv = NULL;
Ben Skeggs26f6d882011-07-04 16:25:18 +10002198 kfree(disp);
2199}
2200
2201int
Ben Skeggse225f442012-11-21 14:40:21 +10002202nv50_display_create(struct drm_device *dev)
Ben Skeggs26f6d882011-07-04 16:25:18 +10002203{
Ben Skeggs77145f12012-07-31 16:16:21 +10002204 struct nouveau_device *device = nouveau_dev(dev);
2205 struct nouveau_drm *drm = nouveau_drm(dev);
Ben Skeggs77145f12012-07-31 16:16:21 +10002206 struct dcb_table *dcb = &drm->vbios.dcb;
Ben Skeggs83fc0832011-07-05 13:08:40 +10002207 struct drm_connector *connector, *tmp;
Ben Skeggse225f442012-11-21 14:40:21 +10002208 struct nv50_disp *disp;
Ben Skeggscb75d972012-07-11 10:44:20 +10002209 struct dcb_output *dcbe;
Ben Skeggs7c5f6a82012-03-04 16:25:59 +10002210 int crtcs, ret, i;
Ben Skeggs26f6d882011-07-04 16:25:18 +10002211
2212 disp = kzalloc(sizeof(*disp), GFP_KERNEL);
2213 if (!disp)
2214 return -ENOMEM;
Ben Skeggs77145f12012-07-31 16:16:21 +10002215
2216 nouveau_display(dev)->priv = disp;
Ben Skeggse225f442012-11-21 14:40:21 +10002217 nouveau_display(dev)->dtor = nv50_display_destroy;
2218 nouveau_display(dev)->init = nv50_display_init;
2219 nouveau_display(dev)->fini = nv50_display_fini;
Ben Skeggs2332b312014-01-22 12:58:12 +10002220 disp->core = nouveau_display(dev)->core;
Ben Skeggs26f6d882011-07-04 16:25:18 +10002221
Ben Skeggsb5a794b2012-10-16 14:18:32 +10002222 /* small shared memory area we use for notifiers and semaphores */
2223 ret = nouveau_bo_new(dev, 4096, 0x1000, TTM_PL_FLAG_VRAM,
2224 0, 0x0000, NULL, &disp->sync);
2225 if (!ret) {
2226 ret = nouveau_bo_pin(disp->sync, TTM_PL_FLAG_VRAM);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01002227 if (!ret) {
Ben Skeggsb5a794b2012-10-16 14:18:32 +10002228 ret = nouveau_bo_map(disp->sync);
Marcin Slusarz04c8c212012-11-25 23:04:23 +01002229 if (ret)
2230 nouveau_bo_unpin(disp->sync);
2231 }
Ben Skeggsb5a794b2012-10-16 14:18:32 +10002232 if (ret)
2233 nouveau_bo_ref(NULL, &disp->sync);
2234 }
2235
2236 if (ret)
2237 goto out;
2238
Ben Skeggsb5a794b2012-10-16 14:18:32 +10002239 /* allocate master evo channel */
Ben Skeggse225f442012-11-21 14:40:21 +10002240 ret = nv50_dmac_create(disp->core, NV50_DISP_MAST_CLASS, 0,
Ben Skeggsb5a794b2012-10-16 14:18:32 +10002241 &(struct nv50_display_mast_class) {
2242 .pushbuf = EVO_PUSH_HANDLE(MAST, 0),
2243 }, sizeof(struct nv50_display_mast_class),
2244 disp->sync->bo.offset, &disp->mast.base);
2245 if (ret)
2246 goto out;
2247
Ben Skeggs438d99e2011-07-05 16:48:06 +10002248 /* create crtc objects to represent the hw heads */
Ben Skeggs63718a02012-11-16 11:44:14 +10002249 if (nv_mclass(disp->core) >= NVD0_DISP_CLASS)
2250 crtcs = nv_rd32(device, 0x022448);
2251 else
2252 crtcs = 2;
2253
Ben Skeggs7c5f6a82012-03-04 16:25:59 +10002254 for (i = 0; i < crtcs; i++) {
Ben Skeggse225f442012-11-21 14:40:21 +10002255 ret = nv50_crtc_create(dev, disp->core, i);
Ben Skeggs438d99e2011-07-05 16:48:06 +10002256 if (ret)
2257 goto out;
2258 }
2259
Ben Skeggs83fc0832011-07-05 13:08:40 +10002260 /* create encoder/connector objects based on VBIOS DCB table */
2261 for (i = 0, dcbe = &dcb->entry[0]; i < dcb->entries; i++, dcbe++) {
2262 connector = nouveau_connector_create(dev, dcbe->connector);
2263 if (IS_ERR(connector))
2264 continue;
2265
Ben Skeggseb6313a2013-02-11 09:52:58 +10002266 if (dcbe->location == DCB_LOC_ON_CHIP) {
2267 switch (dcbe->type) {
2268 case DCB_OUTPUT_TMDS:
2269 case DCB_OUTPUT_LVDS:
2270 case DCB_OUTPUT_DP:
2271 ret = nv50_sor_create(connector, dcbe);
2272 break;
2273 case DCB_OUTPUT_ANALOG:
2274 ret = nv50_dac_create(connector, dcbe);
2275 break;
2276 default:
2277 ret = -ENODEV;
2278 break;
2279 }
2280 } else {
2281 ret = nv50_pior_create(connector, dcbe);
Ben Skeggs83fc0832011-07-05 13:08:40 +10002282 }
2283
Ben Skeggseb6313a2013-02-11 09:52:58 +10002284 if (ret) {
2285 NV_WARN(drm, "failed to create encoder %d/%d/%d: %d\n",
2286 dcbe->location, dcbe->type,
2287 ffs(dcbe->or) - 1, ret);
Ben Skeggs94f54f52013-03-05 22:26:06 +10002288 ret = 0;
Ben Skeggs83fc0832011-07-05 13:08:40 +10002289 }
2290 }
2291
2292 /* cull any connectors we created that don't have an encoder */
2293 list_for_each_entry_safe(connector, tmp, &dev->mode_config.connector_list, head) {
2294 if (connector->encoder_ids[0])
2295 continue;
2296
Ben Skeggs77145f12012-07-31 16:16:21 +10002297 NV_WARN(drm, "%s has no encoders, removing\n",
Ben Skeggs83fc0832011-07-05 13:08:40 +10002298 drm_get_connector_name(connector));
2299 connector->funcs->destroy(connector);
2300 }
2301
Ben Skeggs26f6d882011-07-04 16:25:18 +10002302out:
2303 if (ret)
Ben Skeggse225f442012-11-21 14:40:21 +10002304 nv50_display_destroy(dev);
Ben Skeggs26f6d882011-07-04 16:25:18 +10002305 return ret;
2306}