Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 Maarten Maathuis. |
| 3 | * All Rights Reserved. |
| 4 | * |
| 5 | * Permission is hereby granted, free of charge, to any person obtaining |
| 6 | * a copy of this software and associated documentation files (the |
| 7 | * "Software"), to deal in the Software without restriction, including |
| 8 | * without limitation the rights to use, copy, modify, merge, publish, |
| 9 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 10 | * permit persons to whom the Software is furnished to do so, subject to |
| 11 | * the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice (including the |
| 14 | * next paragraph) shall be included in all copies or substantial |
| 15 | * portions of the Software. |
| 16 | * |
| 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 18 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 19 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
| 20 | * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE |
| 21 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 22 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 23 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 24 | * |
| 25 | */ |
| 26 | |
| 27 | #include "drmP.h" |
| 28 | #include "drm_mode.h" |
| 29 | #include "drm_crtc_helper.h" |
| 30 | |
| 31 | #define NOUVEAU_DMA_DEBUG (nouveau_reg_debug & NOUVEAU_REG_DEBUG_EVO) |
| 32 | #include "nouveau_reg.h" |
| 33 | #include "nouveau_drv.h" |
| 34 | #include "nouveau_hw.h" |
| 35 | #include "nouveau_encoder.h" |
| 36 | #include "nouveau_crtc.h" |
| 37 | #include "nouveau_fb.h" |
| 38 | #include "nouveau_connector.h" |
| 39 | #include "nv50_display.h" |
| 40 | |
| 41 | static void |
| 42 | nv50_crtc_lut_load(struct drm_crtc *crtc) |
| 43 | { |
| 44 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 45 | void __iomem *lut = nvbo_kmap_obj_iovirtual(nv_crtc->lut.nvbo); |
| 46 | int i; |
| 47 | |
Maarten Maathuis | ef2bb50 | 2009-12-13 16:53:12 +0100 | [diff] [blame] | 48 | NV_DEBUG_KMS(crtc->dev, "\n"); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 49 | |
| 50 | for (i = 0; i < 256; i++) { |
| 51 | writew(nv_crtc->lut.r[i] >> 2, lut + 8*i + 0); |
| 52 | writew(nv_crtc->lut.g[i] >> 2, lut + 8*i + 2); |
| 53 | writew(nv_crtc->lut.b[i] >> 2, lut + 8*i + 4); |
| 54 | } |
| 55 | |
| 56 | if (nv_crtc->lut.depth == 30) { |
| 57 | writew(nv_crtc->lut.r[i - 1] >> 2, lut + 8*i + 0); |
| 58 | writew(nv_crtc->lut.g[i - 1] >> 2, lut + 8*i + 2); |
| 59 | writew(nv_crtc->lut.b[i - 1] >> 2, lut + 8*i + 4); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | int |
| 64 | nv50_crtc_blank(struct nouveau_crtc *nv_crtc, bool blanked) |
| 65 | { |
| 66 | struct drm_device *dev = nv_crtc->base.dev; |
| 67 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
Ben Skeggs | 59c0f57 | 2011-02-01 10:24:41 +1000 | [diff] [blame] | 68 | struct nouveau_channel *evo = nv50_display(dev)->master; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 69 | int index = nv_crtc->index, ret; |
| 70 | |
Maarten Maathuis | ef2bb50 | 2009-12-13 16:53:12 +0100 | [diff] [blame] | 71 | NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index); |
| 72 | NV_DEBUG_KMS(dev, "%s\n", blanked ? "blanked" : "unblanked"); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 73 | |
| 74 | if (blanked) { |
| 75 | nv_crtc->cursor.hide(nv_crtc, false); |
| 76 | |
| 77 | ret = RING_SPACE(evo, dev_priv->chipset != 0x50 ? 7 : 5); |
| 78 | if (ret) { |
| 79 | NV_ERROR(dev, "no space while blanking crtc\n"); |
| 80 | return ret; |
| 81 | } |
| 82 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(index, CLUT_MODE), 2); |
| 83 | OUT_RING(evo, NV50_EVO_CRTC_CLUT_MODE_BLANK); |
| 84 | OUT_RING(evo, 0); |
| 85 | if (dev_priv->chipset != 0x50) { |
| 86 | BEGIN_RING(evo, 0, NV84_EVO_CRTC(index, CLUT_DMA), 1); |
| 87 | OUT_RING(evo, NV84_EVO_CRTC_CLUT_DMA_HANDLE_NONE); |
| 88 | } |
| 89 | |
| 90 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(index, FB_DMA), 1); |
| 91 | OUT_RING(evo, NV50_EVO_CRTC_FB_DMA_HANDLE_NONE); |
| 92 | } else { |
| 93 | if (nv_crtc->cursor.visible) |
| 94 | nv_crtc->cursor.show(nv_crtc, false); |
| 95 | else |
| 96 | nv_crtc->cursor.hide(nv_crtc, false); |
| 97 | |
| 98 | ret = RING_SPACE(evo, dev_priv->chipset != 0x50 ? 10 : 8); |
| 99 | if (ret) { |
| 100 | NV_ERROR(dev, "no space while unblanking crtc\n"); |
| 101 | return ret; |
| 102 | } |
| 103 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(index, CLUT_MODE), 2); |
| 104 | OUT_RING(evo, nv_crtc->lut.depth == 8 ? |
| 105 | NV50_EVO_CRTC_CLUT_MODE_OFF : |
| 106 | NV50_EVO_CRTC_CLUT_MODE_ON); |
Ben Skeggs | d961db7 | 2010-08-05 10:48:18 +1000 | [diff] [blame] | 107 | OUT_RING(evo, (nv_crtc->lut.nvbo->bo.mem.start << PAGE_SHIFT) >> 8); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 108 | if (dev_priv->chipset != 0x50) { |
| 109 | BEGIN_RING(evo, 0, NV84_EVO_CRTC(index, CLUT_DMA), 1); |
| 110 | OUT_RING(evo, NvEvoVRAM); |
| 111 | } |
| 112 | |
| 113 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(index, FB_OFFSET), 2); |
| 114 | OUT_RING(evo, nv_crtc->fb.offset >> 8); |
| 115 | OUT_RING(evo, 0); |
| 116 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(index, FB_DMA), 1); |
| 117 | if (dev_priv->chipset != 0x50) |
Ben Skeggs | 6d86951 | 2010-12-08 11:19:30 +1000 | [diff] [blame] | 118 | if (nv_crtc->fb.tile_flags == 0x7a00 || |
| 119 | nv_crtc->fb.tile_flags == 0xfe00) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 120 | OUT_RING(evo, NvEvoFB32); |
| 121 | else |
| 122 | if (nv_crtc->fb.tile_flags == 0x7000) |
| 123 | OUT_RING(evo, NvEvoFB16); |
| 124 | else |
Ben Skeggs | 6d86951 | 2010-12-08 11:19:30 +1000 | [diff] [blame] | 125 | OUT_RING(evo, NvEvoVRAM_LP); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 126 | else |
Ben Skeggs | 6d86951 | 2010-12-08 11:19:30 +1000 | [diff] [blame] | 127 | OUT_RING(evo, NvEvoVRAM_LP); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | nv_crtc->fb.blanked = blanked; |
| 131 | return 0; |
| 132 | } |
| 133 | |
| 134 | static int |
| 135 | nv50_crtc_set_dither(struct nouveau_crtc *nv_crtc, bool on, bool update) |
| 136 | { |
| 137 | struct drm_device *dev = nv_crtc->base.dev; |
Ben Skeggs | 59c0f57 | 2011-02-01 10:24:41 +1000 | [diff] [blame] | 138 | struct nouveau_channel *evo = nv50_display(dev)->master; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 139 | int ret; |
| 140 | |
Maarten Maathuis | ef2bb50 | 2009-12-13 16:53:12 +0100 | [diff] [blame] | 141 | NV_DEBUG_KMS(dev, "\n"); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 142 | |
| 143 | ret = RING_SPACE(evo, 2 + (update ? 2 : 0)); |
| 144 | if (ret) { |
| 145 | NV_ERROR(dev, "no space while setting dither\n"); |
| 146 | return ret; |
| 147 | } |
| 148 | |
| 149 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, DITHER_CTRL), 1); |
| 150 | if (on) |
| 151 | OUT_RING(evo, NV50_EVO_CRTC_DITHER_CTRL_ON); |
| 152 | else |
| 153 | OUT_RING(evo, NV50_EVO_CRTC_DITHER_CTRL_OFF); |
| 154 | |
| 155 | if (update) { |
| 156 | BEGIN_RING(evo, 0, NV50_EVO_UPDATE, 1); |
| 157 | OUT_RING(evo, 0); |
| 158 | FIRE_RING(evo); |
| 159 | } |
| 160 | |
| 161 | return 0; |
| 162 | } |
| 163 | |
| 164 | struct nouveau_connector * |
| 165 | nouveau_crtc_connector_get(struct nouveau_crtc *nv_crtc) |
| 166 | { |
| 167 | struct drm_device *dev = nv_crtc->base.dev; |
| 168 | struct drm_connector *connector; |
| 169 | struct drm_crtc *crtc = to_drm_crtc(nv_crtc); |
| 170 | |
| 171 | /* The safest approach is to find an encoder with the right crtc, that |
| 172 | * is also linked to a connector. */ |
| 173 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 174 | if (connector->encoder) |
| 175 | if (connector->encoder->crtc == crtc) |
| 176 | return nouveau_connector(connector); |
| 177 | } |
| 178 | |
| 179 | return NULL; |
| 180 | } |
| 181 | |
| 182 | static int |
| 183 | nv50_crtc_set_scale(struct nouveau_crtc *nv_crtc, int scaling_mode, bool update) |
| 184 | { |
| 185 | struct nouveau_connector *nv_connector = |
| 186 | nouveau_crtc_connector_get(nv_crtc); |
| 187 | struct drm_device *dev = nv_crtc->base.dev; |
Ben Skeggs | 59c0f57 | 2011-02-01 10:24:41 +1000 | [diff] [blame] | 188 | struct nouveau_channel *evo = nv50_display(dev)->master; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 189 | struct drm_display_mode *native_mode = NULL; |
| 190 | struct drm_display_mode *mode = &nv_crtc->base.mode; |
| 191 | uint32_t outX, outY, horiz, vert; |
| 192 | int ret; |
| 193 | |
Maarten Maathuis | ef2bb50 | 2009-12-13 16:53:12 +0100 | [diff] [blame] | 194 | NV_DEBUG_KMS(dev, "\n"); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 195 | |
| 196 | switch (scaling_mode) { |
| 197 | case DRM_MODE_SCALE_NONE: |
| 198 | break; |
| 199 | default: |
| 200 | if (!nv_connector || !nv_connector->native_mode) { |
| 201 | NV_ERROR(dev, "No native mode, forcing panel scaling\n"); |
| 202 | scaling_mode = DRM_MODE_SCALE_NONE; |
| 203 | } else { |
| 204 | native_mode = nv_connector->native_mode; |
| 205 | } |
| 206 | break; |
| 207 | } |
| 208 | |
| 209 | switch (scaling_mode) { |
| 210 | case DRM_MODE_SCALE_ASPECT: |
| 211 | horiz = (native_mode->hdisplay << 19) / mode->hdisplay; |
| 212 | vert = (native_mode->vdisplay << 19) / mode->vdisplay; |
| 213 | |
| 214 | if (vert > horiz) { |
| 215 | outX = (mode->hdisplay * horiz) >> 19; |
| 216 | outY = (mode->vdisplay * horiz) >> 19; |
| 217 | } else { |
| 218 | outX = (mode->hdisplay * vert) >> 19; |
| 219 | outY = (mode->vdisplay * vert) >> 19; |
| 220 | } |
| 221 | break; |
| 222 | case DRM_MODE_SCALE_FULLSCREEN: |
| 223 | outX = native_mode->hdisplay; |
| 224 | outY = native_mode->vdisplay; |
| 225 | break; |
| 226 | case DRM_MODE_SCALE_CENTER: |
| 227 | case DRM_MODE_SCALE_NONE: |
| 228 | default: |
| 229 | outX = mode->hdisplay; |
| 230 | outY = mode->vdisplay; |
| 231 | break; |
| 232 | } |
| 233 | |
| 234 | ret = RING_SPACE(evo, update ? 7 : 5); |
| 235 | if (ret) |
| 236 | return ret; |
| 237 | |
| 238 | /* Got a better name for SCALER_ACTIVE? */ |
| 239 | /* One day i've got to really figure out why this is needed. */ |
| 240 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, SCALE_CTRL), 1); |
| 241 | if ((mode->flags & DRM_MODE_FLAG_DBLSCAN) || |
| 242 | (mode->flags & DRM_MODE_FLAG_INTERLACE) || |
| 243 | mode->hdisplay != outX || mode->vdisplay != outY) { |
| 244 | OUT_RING(evo, NV50_EVO_CRTC_SCALE_CTRL_ACTIVE); |
| 245 | } else { |
| 246 | OUT_RING(evo, NV50_EVO_CRTC_SCALE_CTRL_INACTIVE); |
| 247 | } |
| 248 | |
| 249 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, SCALE_RES1), 2); |
| 250 | OUT_RING(evo, outY << 16 | outX); |
| 251 | OUT_RING(evo, outY << 16 | outX); |
| 252 | |
| 253 | if (update) { |
| 254 | BEGIN_RING(evo, 0, NV50_EVO_UPDATE, 1); |
| 255 | OUT_RING(evo, 0); |
| 256 | FIRE_RING(evo); |
| 257 | } |
| 258 | |
| 259 | return 0; |
| 260 | } |
| 261 | |
| 262 | int |
| 263 | nv50_crtc_set_clock(struct drm_device *dev, int head, int pclk) |
| 264 | { |
Ben Skeggs | 1ac7b52 | 2010-08-04 22:08:03 +1000 | [diff] [blame] | 265 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
Ben Skeggs | e9ebb68 | 2010-04-28 14:07:06 +1000 | [diff] [blame] | 266 | struct pll_lims pll; |
Ben Skeggs | 5b32165 | 2010-09-24 09:17:02 +1000 | [diff] [blame] | 267 | uint32_t reg1, reg2; |
Ben Skeggs | e9ebb68 | 2010-04-28 14:07:06 +1000 | [diff] [blame] | 268 | int ret, N1, M1, N2, M2, P; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 269 | |
Ben Skeggs | 5b32165 | 2010-09-24 09:17:02 +1000 | [diff] [blame] | 270 | ret = get_pll_limits(dev, PLL_VPLL0 + head, &pll); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 271 | if (ret) |
| 272 | return ret; |
| 273 | |
Ben Skeggs | e9ebb68 | 2010-04-28 14:07:06 +1000 | [diff] [blame] | 274 | if (pll.vco2.maxfreq) { |
| 275 | ret = nv50_calc_pll(dev, &pll, pclk, &N1, &M1, &N2, &M2, &P); |
| 276 | if (ret <= 0) |
| 277 | return 0; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 278 | |
Ben Skeggs | 17b96cc | 2010-04-23 03:53:42 +1000 | [diff] [blame] | 279 | NV_DEBUG(dev, "pclk %d out %d NM1 %d %d NM2 %d %d P %d\n", |
Ben Skeggs | e9ebb68 | 2010-04-28 14:07:06 +1000 | [diff] [blame] | 280 | pclk, ret, N1, M1, N2, M2, P); |
Ben Skeggs | 17b96cc | 2010-04-23 03:53:42 +1000 | [diff] [blame] | 281 | |
Ben Skeggs | 5b32165 | 2010-09-24 09:17:02 +1000 | [diff] [blame] | 282 | reg1 = nv_rd32(dev, pll.reg + 4) & 0xff00ff00; |
| 283 | reg2 = nv_rd32(dev, pll.reg + 8) & 0x8000ff00; |
| 284 | nv_wr32(dev, pll.reg + 0, 0x10000611); |
| 285 | nv_wr32(dev, pll.reg + 4, reg1 | (M1 << 16) | N1); |
| 286 | nv_wr32(dev, pll.reg + 8, reg2 | (P << 28) | (M2 << 16) | N2); |
Ben Skeggs | 1ac7b52 | 2010-08-04 22:08:03 +1000 | [diff] [blame] | 287 | } else |
| 288 | if (dev_priv->chipset < NV_C0) { |
Ben Skeggs | e9ebb68 | 2010-04-28 14:07:06 +1000 | [diff] [blame] | 289 | ret = nv50_calc_pll2(dev, &pll, pclk, &N1, &N2, &M1, &P); |
| 290 | if (ret <= 0) |
| 291 | return 0; |
Ben Skeggs | 17b96cc | 2010-04-23 03:53:42 +1000 | [diff] [blame] | 292 | |
Ben Skeggs | e9ebb68 | 2010-04-28 14:07:06 +1000 | [diff] [blame] | 293 | NV_DEBUG(dev, "pclk %d out %d N %d fN 0x%04x M %d P %d\n", |
| 294 | pclk, ret, N1, N2, M1, P); |
| 295 | |
Ben Skeggs | 5b32165 | 2010-09-24 09:17:02 +1000 | [diff] [blame] | 296 | reg1 = nv_rd32(dev, pll.reg + 4) & 0xffc00000; |
| 297 | nv_wr32(dev, pll.reg + 0, 0x50000610); |
| 298 | nv_wr32(dev, pll.reg + 4, reg1 | (P << 16) | (M1 << 8) | N1); |
| 299 | nv_wr32(dev, pll.reg + 8, N2); |
Ben Skeggs | 1ac7b52 | 2010-08-04 22:08:03 +1000 | [diff] [blame] | 300 | } else { |
| 301 | ret = nv50_calc_pll2(dev, &pll, pclk, &N1, &N2, &M1, &P); |
| 302 | if (ret <= 0) |
| 303 | return 0; |
| 304 | |
| 305 | NV_DEBUG(dev, "pclk %d out %d N %d fN 0x%04x M %d P %d\n", |
| 306 | pclk, ret, N1, N2, M1, P); |
| 307 | |
Ben Skeggs | 5b32165 | 2010-09-24 09:17:02 +1000 | [diff] [blame] | 308 | nv_mask(dev, pll.reg + 0x0c, 0x00000000, 0x00000100); |
| 309 | nv_wr32(dev, pll.reg + 0x04, (P << 16) | (N1 << 8) | M1); |
| 310 | nv_wr32(dev, pll.reg + 0x10, N2 << 16); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | return 0; |
| 314 | } |
| 315 | |
| 316 | static void |
| 317 | nv50_crtc_destroy(struct drm_crtc *crtc) |
| 318 | { |
Marcin Slusarz | dd19e44 | 2010-01-30 15:41:00 +0100 | [diff] [blame] | 319 | struct drm_device *dev; |
| 320 | struct nouveau_crtc *nv_crtc; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 321 | |
| 322 | if (!crtc) |
| 323 | return; |
| 324 | |
Marcin Slusarz | dd19e44 | 2010-01-30 15:41:00 +0100 | [diff] [blame] | 325 | dev = crtc->dev; |
| 326 | nv_crtc = nouveau_crtc(crtc); |
| 327 | |
| 328 | NV_DEBUG_KMS(dev, "\n"); |
| 329 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 330 | drm_crtc_cleanup(&nv_crtc->base); |
| 331 | |
| 332 | nv50_cursor_fini(nv_crtc); |
| 333 | |
Ben Skeggs | 9d59e8a | 2010-08-27 13:04:41 +1000 | [diff] [blame] | 334 | nouveau_bo_unmap(nv_crtc->lut.nvbo); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 335 | nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo); |
Ben Skeggs | 9d59e8a | 2010-08-27 13:04:41 +1000 | [diff] [blame] | 336 | nouveau_bo_unmap(nv_crtc->cursor.nvbo); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 337 | nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo); |
| 338 | kfree(nv_crtc->mode); |
| 339 | kfree(nv_crtc); |
| 340 | } |
| 341 | |
| 342 | int |
| 343 | nv50_crtc_cursor_set(struct drm_crtc *crtc, struct drm_file *file_priv, |
| 344 | uint32_t buffer_handle, uint32_t width, uint32_t height) |
| 345 | { |
| 346 | struct drm_device *dev = crtc->dev; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 347 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 348 | struct nouveau_bo *cursor = NULL; |
| 349 | struct drm_gem_object *gem; |
| 350 | int ret = 0, i; |
| 351 | |
| 352 | if (width != 64 || height != 64) |
| 353 | return -EINVAL; |
| 354 | |
| 355 | if (!buffer_handle) { |
| 356 | nv_crtc->cursor.hide(nv_crtc, true); |
| 357 | return 0; |
| 358 | } |
| 359 | |
| 360 | gem = drm_gem_object_lookup(dev, file_priv, buffer_handle); |
| 361 | if (!gem) |
Chris Wilson | bf79cb9 | 2010-08-04 14:19:46 +0100 | [diff] [blame] | 362 | return -ENOENT; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 363 | cursor = nouveau_gem_object(gem); |
| 364 | |
| 365 | ret = nouveau_bo_map(cursor); |
| 366 | if (ret) |
| 367 | goto out; |
| 368 | |
| 369 | /* The simple will do for now. */ |
| 370 | for (i = 0; i < 64 * 64; i++) |
| 371 | nouveau_bo_wr32(nv_crtc->cursor.nvbo, i, nouveau_bo_rd32(cursor, i)); |
| 372 | |
| 373 | nouveau_bo_unmap(cursor); |
| 374 | |
Ben Skeggs | 4c136142 | 2010-11-15 11:54:21 +1000 | [diff] [blame] | 375 | nv_crtc->cursor.set_offset(nv_crtc, nv_crtc->cursor.nvbo->bo.mem.start << PAGE_SHIFT); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 376 | nv_crtc->cursor.show(nv_crtc, true); |
| 377 | |
| 378 | out: |
Luca Barbieri | bc9025b | 2010-02-09 05:49:12 +0000 | [diff] [blame] | 379 | drm_gem_object_unreference_unlocked(gem); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 380 | return ret; |
| 381 | } |
| 382 | |
| 383 | int |
| 384 | nv50_crtc_cursor_move(struct drm_crtc *crtc, int x, int y) |
| 385 | { |
| 386 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 387 | |
| 388 | nv_crtc->cursor.set_pos(nv_crtc, x, y); |
| 389 | return 0; |
| 390 | } |
| 391 | |
| 392 | static void |
| 393 | nv50_crtc_gamma_set(struct drm_crtc *crtc, u16 *r, u16 *g, u16 *b, |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 394 | uint32_t start, uint32_t size) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 395 | { |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 396 | int end = (start + size > 256) ? 256 : start + size, i; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 397 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 398 | |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 399 | for (i = start; i < end; i++) { |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 400 | nv_crtc->lut.r[i] = r[i]; |
| 401 | nv_crtc->lut.g[i] = g[i]; |
| 402 | nv_crtc->lut.b[i] = b[i]; |
| 403 | } |
| 404 | |
| 405 | /* We need to know the depth before we upload, but it's possible to |
| 406 | * get called before a framebuffer is bound. If this is the case, |
| 407 | * mark the lut values as dirty by setting depth==0, and it'll be |
| 408 | * uploaded on the first mode_set_base() |
| 409 | */ |
| 410 | if (!nv_crtc->base.fb) { |
| 411 | nv_crtc->lut.depth = 0; |
| 412 | return; |
| 413 | } |
| 414 | |
| 415 | nv50_crtc_lut_load(crtc); |
| 416 | } |
| 417 | |
| 418 | static void |
| 419 | nv50_crtc_save(struct drm_crtc *crtc) |
| 420 | { |
| 421 | NV_ERROR(crtc->dev, "!!\n"); |
| 422 | } |
| 423 | |
| 424 | static void |
| 425 | nv50_crtc_restore(struct drm_crtc *crtc) |
| 426 | { |
| 427 | NV_ERROR(crtc->dev, "!!\n"); |
| 428 | } |
| 429 | |
| 430 | static const struct drm_crtc_funcs nv50_crtc_funcs = { |
| 431 | .save = nv50_crtc_save, |
| 432 | .restore = nv50_crtc_restore, |
| 433 | .cursor_set = nv50_crtc_cursor_set, |
| 434 | .cursor_move = nv50_crtc_cursor_move, |
| 435 | .gamma_set = nv50_crtc_gamma_set, |
| 436 | .set_config = drm_crtc_helper_set_config, |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 437 | .page_flip = nouveau_crtc_page_flip, |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 438 | .destroy = nv50_crtc_destroy, |
| 439 | }; |
| 440 | |
| 441 | static void |
| 442 | nv50_crtc_dpms(struct drm_crtc *crtc, int mode) |
| 443 | { |
| 444 | } |
| 445 | |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 446 | static int |
| 447 | nv50_crtc_wait_complete(struct drm_crtc *crtc) |
| 448 | { |
| 449 | struct drm_device *dev = crtc->dev; |
| 450 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 451 | struct nouveau_timer_engine *ptimer = &dev_priv->engine.timer; |
| 452 | struct nv50_display *disp = nv50_display(dev); |
| 453 | struct nouveau_channel *evo = disp->master; |
| 454 | u64 start; |
| 455 | int ret; |
| 456 | |
| 457 | ret = RING_SPACE(evo, 6); |
| 458 | if (ret) |
| 459 | return ret; |
| 460 | BEGIN_RING(evo, 0, 0x0084, 1); |
| 461 | OUT_RING (evo, 0x80000000); |
| 462 | BEGIN_RING(evo, 0, 0x0080, 1); |
| 463 | OUT_RING (evo, 0); |
| 464 | BEGIN_RING(evo, 0, 0x0084, 1); |
| 465 | OUT_RING (evo, 0x00000000); |
| 466 | |
| 467 | nv_wo32(disp->ntfy, 0x000, 0x00000000); |
| 468 | FIRE_RING (evo); |
| 469 | |
| 470 | start = ptimer->read(dev); |
| 471 | do { |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 472 | if (nv_ro32(disp->ntfy, 0x000)) |
| 473 | return 0; |
| 474 | } while (ptimer->read(dev) - start < 2000000000ULL); |
| 475 | |
| 476 | return -EBUSY; |
| 477 | } |
| 478 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 479 | static void |
| 480 | nv50_crtc_prepare(struct drm_crtc *crtc) |
| 481 | { |
| 482 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 483 | struct drm_device *dev = crtc->dev; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 484 | |
Maarten Maathuis | ef2bb50 | 2009-12-13 16:53:12 +0100 | [diff] [blame] | 485 | NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 486 | |
Ben Skeggs | 1d3fac0 | 2011-02-07 14:18:37 +1000 | [diff] [blame] | 487 | nv50_display_flip_stop(crtc); |
Francisco Jerez | 1c180fa | 2010-10-25 03:30:34 +0200 | [diff] [blame] | 488 | drm_vblank_pre_modeset(dev, nv_crtc->index); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 489 | nv50_crtc_blank(nv_crtc, true); |
| 490 | } |
| 491 | |
| 492 | static void |
| 493 | nv50_crtc_commit(struct drm_crtc *crtc) |
| 494 | { |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 495 | struct drm_device *dev = crtc->dev; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 496 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 497 | |
Maarten Maathuis | ef2bb50 | 2009-12-13 16:53:12 +0100 | [diff] [blame] | 498 | NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 499 | |
| 500 | nv50_crtc_blank(nv_crtc, false); |
Francisco Jerez | 1c180fa | 2010-10-25 03:30:34 +0200 | [diff] [blame] | 501 | drm_vblank_post_modeset(dev, nv_crtc->index); |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 502 | nv50_crtc_wait_complete(crtc); |
Ben Skeggs | 1d3fac0 | 2011-02-07 14:18:37 +1000 | [diff] [blame] | 503 | nv50_display_flip_next(crtc, crtc->fb, NULL); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 504 | } |
| 505 | |
| 506 | static bool |
| 507 | nv50_crtc_mode_fixup(struct drm_crtc *crtc, struct drm_display_mode *mode, |
| 508 | struct drm_display_mode *adjusted_mode) |
| 509 | { |
| 510 | return true; |
| 511 | } |
| 512 | |
| 513 | static int |
Chris Ball | be64c2bb | 2010-09-26 06:47:24 -0500 | [diff] [blame] | 514 | nv50_crtc_do_mode_set_base(struct drm_crtc *crtc, |
| 515 | struct drm_framebuffer *passed_fb, |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 516 | int x, int y, bool atomic) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 517 | { |
| 518 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 519 | struct drm_device *dev = nv_crtc->base.dev; |
| 520 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
Ben Skeggs | 59c0f57 | 2011-02-01 10:24:41 +1000 | [diff] [blame] | 521 | struct nouveau_channel *evo = nv50_display(dev)->master; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 522 | struct drm_framebuffer *drm_fb = nv_crtc->base.fb; |
| 523 | struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb); |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 524 | int ret; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 525 | |
Maarten Maathuis | ef2bb50 | 2009-12-13 16:53:12 +0100 | [diff] [blame] | 526 | NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 527 | |
Chris Ball | be64c2bb | 2010-09-26 06:47:24 -0500 | [diff] [blame] | 528 | /* If atomic, we want to switch to the fb we were passed, so |
| 529 | * now we update pointers to do that. (We don't pin; just |
| 530 | * assume we're already pinned and update the base address.) |
| 531 | */ |
| 532 | if (atomic) { |
| 533 | drm_fb = passed_fb; |
| 534 | fb = nouveau_framebuffer(passed_fb); |
| 535 | } |
| 536 | else { |
| 537 | /* If not atomic, we can go ahead and pin, and unpin the |
| 538 | * old fb we were passed. |
| 539 | */ |
| 540 | ret = nouveau_bo_pin(fb->nvbo, TTM_PL_FLAG_VRAM); |
| 541 | if (ret) |
| 542 | return ret; |
| 543 | |
| 544 | if (passed_fb) { |
| 545 | struct nouveau_framebuffer *ofb = nouveau_framebuffer(passed_fb); |
| 546 | nouveau_bo_unpin(ofb->nvbo); |
| 547 | } |
| 548 | } |
| 549 | |
Ben Skeggs | 4c136142 | 2010-11-15 11:54:21 +1000 | [diff] [blame] | 550 | nv_crtc->fb.offset = fb->nvbo->bo.mem.start << PAGE_SHIFT; |
Francisco Jerez | f13b326 | 2010-10-10 06:01:08 +0200 | [diff] [blame] | 551 | nv_crtc->fb.tile_flags = nouveau_bo_tile_layout(fb->nvbo); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 552 | nv_crtc->fb.cpp = drm_fb->bits_per_pixel / 8; |
| 553 | if (!nv_crtc->fb.blanked && dev_priv->chipset != 0x50) { |
| 554 | ret = RING_SPACE(evo, 2); |
| 555 | if (ret) |
| 556 | return ret; |
| 557 | |
| 558 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, FB_DMA), 1); |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 559 | OUT_RING (evo, fb->r_dma); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 560 | } |
| 561 | |
| 562 | ret = RING_SPACE(evo, 12); |
| 563 | if (ret) |
| 564 | return ret; |
| 565 | |
| 566 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, FB_OFFSET), 5); |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 567 | OUT_RING (evo, nv_crtc->fb.offset >> 8); |
| 568 | OUT_RING (evo, 0); |
| 569 | OUT_RING (evo, (drm_fb->height << 16) | drm_fb->width); |
| 570 | OUT_RING (evo, fb->r_pitch); |
| 571 | OUT_RING (evo, fb->r_format); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 572 | |
| 573 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, CLUT_MODE), 1); |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 574 | OUT_RING (evo, fb->base.depth == 8 ? |
| 575 | NV50_EVO_CRTC_CLUT_MODE_OFF : NV50_EVO_CRTC_CLUT_MODE_ON); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 576 | |
| 577 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, COLOR_CTRL), 1); |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 578 | OUT_RING (evo, NV50_EVO_CRTC_COLOR_CTRL_COLOR); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 579 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, FB_POS), 1); |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 580 | OUT_RING (evo, (y << 16) | x); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 581 | |
| 582 | if (nv_crtc->lut.depth != fb->base.depth) { |
| 583 | nv_crtc->lut.depth = fb->base.depth; |
| 584 | nv50_crtc_lut_load(crtc); |
| 585 | } |
| 586 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 587 | return 0; |
| 588 | } |
| 589 | |
| 590 | static int |
| 591 | nv50_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *mode, |
| 592 | struct drm_display_mode *adjusted_mode, int x, int y, |
| 593 | struct drm_framebuffer *old_fb) |
| 594 | { |
| 595 | struct drm_device *dev = crtc->dev; |
Ben Skeggs | 59c0f57 | 2011-02-01 10:24:41 +1000 | [diff] [blame] | 596 | struct nouveau_channel *evo = nv50_display(dev)->master; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 597 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 598 | struct nouveau_connector *nv_connector = NULL; |
| 599 | uint32_t hsync_dur, vsync_dur, hsync_start_to_end, vsync_start_to_end; |
| 600 | uint32_t hunk1, vunk1, vunk2a, vunk2b; |
| 601 | int ret; |
| 602 | |
| 603 | /* Find the connector attached to this CRTC */ |
| 604 | nv_connector = nouveau_crtc_connector_get(nv_crtc); |
| 605 | |
| 606 | *nv_crtc->mode = *adjusted_mode; |
| 607 | |
Maarten Maathuis | ef2bb50 | 2009-12-13 16:53:12 +0100 | [diff] [blame] | 608 | NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 609 | |
| 610 | hsync_dur = adjusted_mode->hsync_end - adjusted_mode->hsync_start; |
| 611 | vsync_dur = adjusted_mode->vsync_end - adjusted_mode->vsync_start; |
| 612 | hsync_start_to_end = adjusted_mode->htotal - adjusted_mode->hsync_start; |
| 613 | vsync_start_to_end = adjusted_mode->vtotal - adjusted_mode->vsync_start; |
| 614 | /* I can't give this a proper name, anyone else can? */ |
| 615 | hunk1 = adjusted_mode->htotal - |
| 616 | adjusted_mode->hsync_start + adjusted_mode->hdisplay; |
| 617 | vunk1 = adjusted_mode->vtotal - |
| 618 | adjusted_mode->vsync_start + adjusted_mode->vdisplay; |
| 619 | /* Another strange value, this time only for interlaced adjusted_modes. */ |
| 620 | vunk2a = 2 * adjusted_mode->vtotal - |
| 621 | adjusted_mode->vsync_start + adjusted_mode->vdisplay; |
| 622 | vunk2b = adjusted_mode->vtotal - |
| 623 | adjusted_mode->vsync_start + adjusted_mode->vtotal; |
| 624 | |
| 625 | if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) { |
| 626 | vsync_dur /= 2; |
| 627 | vsync_start_to_end /= 2; |
| 628 | vunk1 /= 2; |
| 629 | vunk2a /= 2; |
| 630 | vunk2b /= 2; |
| 631 | /* magic */ |
| 632 | if (adjusted_mode->flags & DRM_MODE_FLAG_DBLSCAN) { |
| 633 | vsync_start_to_end -= 1; |
| 634 | vunk1 -= 1; |
| 635 | vunk2a -= 1; |
| 636 | vunk2b -= 1; |
| 637 | } |
| 638 | } |
| 639 | |
| 640 | ret = RING_SPACE(evo, 17); |
| 641 | if (ret) |
| 642 | return ret; |
| 643 | |
| 644 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, CLOCK), 2); |
| 645 | OUT_RING(evo, adjusted_mode->clock | 0x800000); |
| 646 | OUT_RING(evo, (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) ? 2 : 0); |
| 647 | |
| 648 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, DISPLAY_START), 5); |
| 649 | OUT_RING(evo, 0); |
| 650 | OUT_RING(evo, (adjusted_mode->vtotal << 16) | adjusted_mode->htotal); |
| 651 | OUT_RING(evo, (vsync_dur - 1) << 16 | (hsync_dur - 1)); |
| 652 | OUT_RING(evo, (vsync_start_to_end - 1) << 16 | |
| 653 | (hsync_start_to_end - 1)); |
| 654 | OUT_RING(evo, (vunk1 - 1) << 16 | (hunk1 - 1)); |
| 655 | |
| 656 | if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) { |
| 657 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, UNK0824), 1); |
| 658 | OUT_RING(evo, (vunk2b - 1) << 16 | (vunk2a - 1)); |
| 659 | } else { |
| 660 | OUT_RING(evo, 0); |
| 661 | OUT_RING(evo, 0); |
| 662 | } |
| 663 | |
| 664 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, UNK082C), 1); |
| 665 | OUT_RING(evo, 0); |
| 666 | |
| 667 | /* This is the actual resolution of the mode. */ |
| 668 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, REAL_RES), 1); |
| 669 | OUT_RING(evo, (mode->vdisplay << 16) | mode->hdisplay); |
| 670 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, SCALE_CENTER_OFFSET), 1); |
| 671 | OUT_RING(evo, NV50_EVO_CRTC_SCALE_CENTER_OFFSET_VAL(0, 0)); |
| 672 | |
| 673 | nv_crtc->set_dither(nv_crtc, nv_connector->use_dithering, false); |
| 674 | nv_crtc->set_scale(nv_crtc, nv_connector->scaling_mode, false); |
| 675 | |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 676 | return nv50_crtc_do_mode_set_base(crtc, old_fb, x, y, false); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 677 | } |
| 678 | |
| 679 | static int |
| 680 | nv50_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y, |
| 681 | struct drm_framebuffer *old_fb) |
| 682 | { |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 683 | int ret; |
| 684 | |
Ben Skeggs | 1d3fac0 | 2011-02-07 14:18:37 +1000 | [diff] [blame] | 685 | nv50_display_flip_stop(crtc); |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 686 | ret = nv50_crtc_do_mode_set_base(crtc, old_fb, x, y, false); |
| 687 | if (ret) |
| 688 | return ret; |
| 689 | |
Ben Skeggs | 1d3fac0 | 2011-02-07 14:18:37 +1000 | [diff] [blame] | 690 | ret = nv50_crtc_wait_complete(crtc); |
| 691 | if (ret) |
| 692 | return ret; |
| 693 | |
| 694 | return nv50_display_flip_next(crtc, crtc->fb, NULL); |
Chris Ball | be64c2bb | 2010-09-26 06:47:24 -0500 | [diff] [blame] | 695 | } |
| 696 | |
| 697 | static int |
| 698 | nv50_crtc_mode_set_base_atomic(struct drm_crtc *crtc, |
| 699 | struct drm_framebuffer *fb, |
Jason Wessel | 21c74a8 | 2010-10-13 14:09:44 -0500 | [diff] [blame] | 700 | int x, int y, enum mode_set_atomic state) |
Chris Ball | be64c2bb | 2010-09-26 06:47:24 -0500 | [diff] [blame] | 701 | { |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 702 | int ret; |
| 703 | |
Ben Skeggs | 1d3fac0 | 2011-02-07 14:18:37 +1000 | [diff] [blame] | 704 | nv50_display_flip_stop(crtc); |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 705 | ret = nv50_crtc_do_mode_set_base(crtc, fb, x, y, true); |
| 706 | if (ret) |
| 707 | return ret; |
| 708 | |
| 709 | return nv50_crtc_wait_complete(crtc); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 710 | } |
| 711 | |
| 712 | static const struct drm_crtc_helper_funcs nv50_crtc_helper_funcs = { |
| 713 | .dpms = nv50_crtc_dpms, |
| 714 | .prepare = nv50_crtc_prepare, |
| 715 | .commit = nv50_crtc_commit, |
| 716 | .mode_fixup = nv50_crtc_mode_fixup, |
| 717 | .mode_set = nv50_crtc_mode_set, |
| 718 | .mode_set_base = nv50_crtc_mode_set_base, |
Chris Ball | be64c2bb | 2010-09-26 06:47:24 -0500 | [diff] [blame] | 719 | .mode_set_base_atomic = nv50_crtc_mode_set_base_atomic, |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 720 | .load_lut = nv50_crtc_lut_load, |
| 721 | }; |
| 722 | |
| 723 | int |
| 724 | nv50_crtc_create(struct drm_device *dev, int index) |
| 725 | { |
| 726 | struct nouveau_crtc *nv_crtc = NULL; |
| 727 | int ret, i; |
| 728 | |
Maarten Maathuis | ef2bb50 | 2009-12-13 16:53:12 +0100 | [diff] [blame] | 729 | NV_DEBUG_KMS(dev, "\n"); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 730 | |
| 731 | nv_crtc = kzalloc(sizeof(*nv_crtc), GFP_KERNEL); |
| 732 | if (!nv_crtc) |
| 733 | return -ENOMEM; |
| 734 | |
| 735 | nv_crtc->mode = kzalloc(sizeof(*nv_crtc->mode), GFP_KERNEL); |
| 736 | if (!nv_crtc->mode) { |
| 737 | kfree(nv_crtc); |
| 738 | return -ENOMEM; |
| 739 | } |
| 740 | |
| 741 | /* Default CLUT parameters, will be activated on the hw upon |
| 742 | * first mode set. |
| 743 | */ |
| 744 | for (i = 0; i < 256; i++) { |
| 745 | nv_crtc->lut.r[i] = i << 8; |
| 746 | nv_crtc->lut.g[i] = i << 8; |
| 747 | nv_crtc->lut.b[i] = i << 8; |
| 748 | } |
| 749 | nv_crtc->lut.depth = 0; |
| 750 | |
| 751 | ret = nouveau_bo_new(dev, NULL, 4096, 0x100, TTM_PL_FLAG_VRAM, |
Ben Skeggs | d550c41 | 2011-02-16 08:41:56 +1000 | [diff] [blame] | 752 | 0, 0x0000, &nv_crtc->lut.nvbo); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 753 | if (!ret) { |
| 754 | ret = nouveau_bo_pin(nv_crtc->lut.nvbo, TTM_PL_FLAG_VRAM); |
| 755 | if (!ret) |
| 756 | ret = nouveau_bo_map(nv_crtc->lut.nvbo); |
| 757 | if (ret) |
| 758 | nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo); |
| 759 | } |
| 760 | |
| 761 | if (ret) { |
| 762 | kfree(nv_crtc->mode); |
| 763 | kfree(nv_crtc); |
| 764 | return ret; |
| 765 | } |
| 766 | |
| 767 | nv_crtc->index = index; |
| 768 | |
| 769 | /* set function pointers */ |
| 770 | nv_crtc->set_dither = nv50_crtc_set_dither; |
| 771 | nv_crtc->set_scale = nv50_crtc_set_scale; |
| 772 | |
| 773 | drm_crtc_init(dev, &nv_crtc->base, &nv50_crtc_funcs); |
| 774 | drm_crtc_helper_add(&nv_crtc->base, &nv50_crtc_helper_funcs); |
| 775 | drm_mode_crtc_set_gamma_size(&nv_crtc->base, 256); |
| 776 | |
| 777 | ret = nouveau_bo_new(dev, NULL, 64*64*4, 0x100, TTM_PL_FLAG_VRAM, |
Ben Skeggs | d550c41 | 2011-02-16 08:41:56 +1000 | [diff] [blame] | 778 | 0, 0x0000, &nv_crtc->cursor.nvbo); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 779 | if (!ret) { |
| 780 | ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM); |
| 781 | if (!ret) |
| 782 | ret = nouveau_bo_map(nv_crtc->cursor.nvbo); |
| 783 | if (ret) |
| 784 | nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo); |
| 785 | } |
| 786 | |
| 787 | nv50_cursor_init(nv_crtc); |
| 788 | return 0; |
| 789 | } |