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 | 180cc30 | 2011-06-07 11:24:14 +1000 | [diff] [blame] | 107 | OUT_RING(evo, nv_crtc->lut.nvbo->bo.offset >> 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 |
Ben Skeggs | 488ff20 | 2011-10-17 10:38:10 +1000 | [diff] [blame] | 135 | nv50_crtc_set_dither(struct nouveau_crtc *nv_crtc, bool update) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 136 | { |
Ben Skeggs | de69185 | 2011-10-17 12:23:41 +1000 | [diff] [blame] | 137 | struct nouveau_channel *evo = nv50_display(nv_crtc->base.dev)->master; |
| 138 | struct nouveau_connector *nv_connector; |
| 139 | struct drm_connector *connector; |
| 140 | int head = nv_crtc->index, ret; |
| 141 | u32 mode = 0x00; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 142 | |
Ben Skeggs | de69185 | 2011-10-17 12:23:41 +1000 | [diff] [blame] | 143 | nv_connector = nouveau_crtc_connector_get(nv_crtc); |
| 144 | connector = &nv_connector->base; |
| 145 | if (nv_connector->dithering_mode == DITHERING_MODE_AUTO) { |
| 146 | if (nv_crtc->base.fb->depth > connector->display_info.bpc * 3) |
| 147 | mode = DITHERING_MODE_DYNAMIC2X2; |
| 148 | } else { |
| 149 | mode = nv_connector->dithering_mode; |
| 150 | } |
| 151 | |
| 152 | if (nv_connector->dithering_depth == DITHERING_DEPTH_AUTO) { |
| 153 | if (connector->display_info.bpc >= 8) |
| 154 | mode |= DITHERING_DEPTH_8BPC; |
| 155 | } else { |
| 156 | mode |= nv_connector->dithering_depth; |
| 157 | } |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 158 | |
| 159 | ret = RING_SPACE(evo, 2 + (update ? 2 : 0)); |
Ben Skeggs | de69185 | 2011-10-17 12:23:41 +1000 | [diff] [blame] | 160 | if (ret == 0) { |
| 161 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(head, DITHER_CTRL), 1); |
| 162 | OUT_RING (evo, mode); |
| 163 | if (update) { |
| 164 | BEGIN_RING(evo, 0, NV50_EVO_UPDATE, 1); |
| 165 | OUT_RING (evo, 0); |
| 166 | FIRE_RING (evo); |
| 167 | } |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 168 | } |
| 169 | |
Ben Skeggs | de69185 | 2011-10-17 12:23:41 +1000 | [diff] [blame] | 170 | return ret; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 171 | } |
| 172 | |
Christoph Bumiller | df26bc9 | 2012-01-21 23:13:26 +0100 | [diff] [blame] | 173 | static int |
| 174 | nv50_crtc_set_color_vibrance(struct nouveau_crtc *nv_crtc, bool update) |
| 175 | { |
| 176 | struct drm_device *dev = nv_crtc->base.dev; |
| 177 | struct nouveau_channel *evo = nv50_display(dev)->master; |
| 178 | int ret; |
| 179 | int adj; |
| 180 | u32 hue, vib; |
| 181 | |
| 182 | NV_DEBUG_KMS(dev, "vibrance = %i, hue = %i\n", |
| 183 | nv_crtc->color_vibrance, nv_crtc->vibrant_hue); |
| 184 | |
| 185 | ret = RING_SPACE(evo, 2 + (update ? 2 : 0)); |
| 186 | if (ret) { |
| 187 | NV_ERROR(dev, "no space while setting color vibrance\n"); |
| 188 | return ret; |
| 189 | } |
| 190 | |
| 191 | adj = (nv_crtc->color_vibrance > 0) ? 50 : 0; |
| 192 | vib = ((nv_crtc->color_vibrance * 2047 + adj) / 100) & 0xfff; |
| 193 | |
| 194 | hue = ((nv_crtc->vibrant_hue * 2047) / 100) & 0xfff; |
| 195 | |
| 196 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, COLOR_CTRL), 1); |
| 197 | OUT_RING (evo, (hue << 20) | (vib << 8)); |
| 198 | |
| 199 | if (update) { |
| 200 | BEGIN_RING(evo, 0, NV50_EVO_UPDATE, 1); |
| 201 | OUT_RING (evo, 0); |
| 202 | FIRE_RING (evo); |
| 203 | } |
| 204 | |
| 205 | return 0; |
| 206 | } |
| 207 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 208 | struct nouveau_connector * |
| 209 | nouveau_crtc_connector_get(struct nouveau_crtc *nv_crtc) |
| 210 | { |
| 211 | struct drm_device *dev = nv_crtc->base.dev; |
| 212 | struct drm_connector *connector; |
| 213 | struct drm_crtc *crtc = to_drm_crtc(nv_crtc); |
| 214 | |
| 215 | /* The safest approach is to find an encoder with the right crtc, that |
| 216 | * is also linked to a connector. */ |
| 217 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 218 | if (connector->encoder) |
| 219 | if (connector->encoder->crtc == crtc) |
| 220 | return nouveau_connector(connector); |
| 221 | } |
| 222 | |
| 223 | return NULL; |
| 224 | } |
| 225 | |
| 226 | static int |
Ben Skeggs | 488ff20 | 2011-10-17 10:38:10 +1000 | [diff] [blame] | 227 | nv50_crtc_set_scale(struct nouveau_crtc *nv_crtc, bool update) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 228 | { |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 229 | struct nouveau_connector *nv_connector; |
Ben Skeggs | 549cd87 | 2011-10-06 11:51:45 +1000 | [diff] [blame] | 230 | struct drm_crtc *crtc = &nv_crtc->base; |
| 231 | struct drm_device *dev = crtc->dev; |
Ben Skeggs | 59c0f57 | 2011-02-01 10:24:41 +1000 | [diff] [blame] | 232 | struct nouveau_channel *evo = nv50_display(dev)->master; |
Ben Skeggs | 1cb9469 | 2011-10-25 16:29:13 +1000 | [diff] [blame] | 233 | struct drm_display_mode *umode = &crtc->mode; |
| 234 | struct drm_display_mode *omode; |
Ben Skeggs | 488ff20 | 2011-10-17 10:38:10 +1000 | [diff] [blame] | 235 | int scaling_mode, ret; |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 236 | u32 ctrl = 0, oX, oY; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 237 | |
Maarten Maathuis | ef2bb50 | 2009-12-13 16:53:12 +0100 | [diff] [blame] | 238 | NV_DEBUG_KMS(dev, "\n"); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 239 | |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 240 | nv_connector = nouveau_crtc_connector_get(nv_crtc); |
| 241 | if (!nv_connector || !nv_connector->native_mode) { |
| 242 | NV_ERROR(dev, "no native mode, forcing panel scaling\n"); |
| 243 | scaling_mode = DRM_MODE_SCALE_NONE; |
Ben Skeggs | 488ff20 | 2011-10-17 10:38:10 +1000 | [diff] [blame] | 244 | } else { |
| 245 | scaling_mode = nv_connector->scaling_mode; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 246 | } |
| 247 | |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 248 | /* start off at the resolution we programmed the crtc for, this |
| 249 | * effectively handles NONE/FULL scaling |
| 250 | */ |
Ben Skeggs | 1cb9469 | 2011-10-25 16:29:13 +1000 | [diff] [blame] | 251 | if (scaling_mode != DRM_MODE_SCALE_NONE) |
| 252 | omode = nv_connector->native_mode; |
| 253 | else |
| 254 | omode = umode; |
| 255 | |
| 256 | oX = omode->hdisplay; |
| 257 | oY = omode->vdisplay; |
| 258 | if (omode->flags & DRM_MODE_FLAG_DBLSCAN) |
| 259 | oY *= 2; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 260 | |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 261 | /* add overscan compensation if necessary, will keep the aspect |
| 262 | * ratio the same as the backend mode unless overridden by the |
| 263 | * user setting both hborder and vborder properties. |
| 264 | */ |
| 265 | if (nv_connector && ( nv_connector->underscan == UNDERSCAN_ON || |
| 266 | (nv_connector->underscan == UNDERSCAN_AUTO && |
| 267 | nv_connector->edid && |
| 268 | drm_detect_hdmi_monitor(nv_connector->edid)))) { |
| 269 | u32 bX = nv_connector->underscan_hborder; |
| 270 | u32 bY = nv_connector->underscan_vborder; |
| 271 | u32 aspect = (oY << 19) / oX; |
| 272 | |
| 273 | if (bX) { |
| 274 | oX -= (bX * 2); |
| 275 | if (bY) oY -= (bY * 2); |
| 276 | else oY = ((oX * aspect) + (aspect / 2)) >> 19; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 277 | } else { |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 278 | oX -= (oX >> 4) + 32; |
| 279 | if (bY) oY -= (bY * 2); |
| 280 | else oY = ((oX * aspect) + (aspect / 2)) >> 19; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 281 | } |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | /* handle CENTER/ASPECT scaling, taking into account the areas |
| 285 | * removed already for overscan compensation |
| 286 | */ |
| 287 | switch (scaling_mode) { |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 288 | case DRM_MODE_SCALE_CENTER: |
Ben Skeggs | 1cb9469 | 2011-10-25 16:29:13 +1000 | [diff] [blame] | 289 | oX = min((u32)umode->hdisplay, oX); |
| 290 | oY = min((u32)umode->vdisplay, oY); |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 291 | /* fall-through */ |
| 292 | case DRM_MODE_SCALE_ASPECT: |
| 293 | if (oY < oX) { |
Ben Skeggs | 1cb9469 | 2011-10-25 16:29:13 +1000 | [diff] [blame] | 294 | u32 aspect = (umode->hdisplay << 19) / umode->vdisplay; |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 295 | oX = ((oY * aspect) + (aspect / 2)) >> 19; |
| 296 | } else { |
Ben Skeggs | 1cb9469 | 2011-10-25 16:29:13 +1000 | [diff] [blame] | 297 | u32 aspect = (umode->vdisplay << 19) / umode->hdisplay; |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 298 | oY = ((oX * aspect) + (aspect / 2)) >> 19; |
| 299 | } |
| 300 | break; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 301 | default: |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 302 | break; |
| 303 | } |
| 304 | |
Ben Skeggs | 1cb9469 | 2011-10-25 16:29:13 +1000 | [diff] [blame] | 305 | if (umode->hdisplay != oX || umode->vdisplay != oY || |
| 306 | umode->flags & DRM_MODE_FLAG_INTERLACE || |
| 307 | umode->flags & DRM_MODE_FLAG_DBLSCAN) |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 308 | ctrl |= NV50_EVO_CRTC_SCALE_CTRL_ACTIVE; |
| 309 | |
Ben Skeggs | 549cd87 | 2011-10-06 11:51:45 +1000 | [diff] [blame] | 310 | ret = RING_SPACE(evo, 5); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 311 | if (ret) |
| 312 | return ret; |
| 313 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 314 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, SCALE_CTRL), 1); |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 315 | OUT_RING (evo, ctrl); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 316 | BEGIN_RING(evo, 0, NV50_EVO_CRTC(nv_crtc->index, SCALE_RES1), 2); |
Ben Skeggs | b29caa5 | 2011-10-06 13:29:05 +1000 | [diff] [blame] | 317 | OUT_RING (evo, oY << 16 | oX); |
| 318 | OUT_RING (evo, oY << 16 | oX); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 319 | |
| 320 | if (update) { |
Ben Skeggs | 549cd87 | 2011-10-06 11:51:45 +1000 | [diff] [blame] | 321 | nv50_display_flip_stop(crtc); |
Ben Skeggs | e6e039d | 2011-10-14 14:35:19 +1000 | [diff] [blame] | 322 | nv50_display_sync(dev); |
Ben Skeggs | 549cd87 | 2011-10-06 11:51:45 +1000 | [diff] [blame] | 323 | nv50_display_flip_next(crtc, crtc->fb, NULL); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | return 0; |
| 327 | } |
| 328 | |
| 329 | int |
| 330 | nv50_crtc_set_clock(struct drm_device *dev, int head, int pclk) |
| 331 | { |
Ben Skeggs | 1ac7b52 | 2010-08-04 22:08:03 +1000 | [diff] [blame] | 332 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
Ben Skeggs | e9ebb68 | 2010-04-28 14:07:06 +1000 | [diff] [blame] | 333 | struct pll_lims pll; |
Ben Skeggs | 5b32165 | 2010-09-24 09:17:02 +1000 | [diff] [blame] | 334 | uint32_t reg1, reg2; |
Ben Skeggs | e9ebb68 | 2010-04-28 14:07:06 +1000 | [diff] [blame] | 335 | int ret, N1, M1, N2, M2, P; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 336 | |
Ben Skeggs | 5b32165 | 2010-09-24 09:17:02 +1000 | [diff] [blame] | 337 | ret = get_pll_limits(dev, PLL_VPLL0 + head, &pll); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 338 | if (ret) |
| 339 | return ret; |
| 340 | |
Ben Skeggs | e9ebb68 | 2010-04-28 14:07:06 +1000 | [diff] [blame] | 341 | if (pll.vco2.maxfreq) { |
| 342 | ret = nv50_calc_pll(dev, &pll, pclk, &N1, &M1, &N2, &M2, &P); |
| 343 | if (ret <= 0) |
| 344 | return 0; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 345 | |
Ben Skeggs | 17b96cc | 2010-04-23 03:53:42 +1000 | [diff] [blame] | 346 | 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] | 347 | pclk, ret, N1, M1, N2, M2, P); |
Ben Skeggs | 17b96cc | 2010-04-23 03:53:42 +1000 | [diff] [blame] | 348 | |
Ben Skeggs | 5b32165 | 2010-09-24 09:17:02 +1000 | [diff] [blame] | 349 | reg1 = nv_rd32(dev, pll.reg + 4) & 0xff00ff00; |
| 350 | reg2 = nv_rd32(dev, pll.reg + 8) & 0x8000ff00; |
| 351 | nv_wr32(dev, pll.reg + 0, 0x10000611); |
| 352 | nv_wr32(dev, pll.reg + 4, reg1 | (M1 << 16) | N1); |
| 353 | nv_wr32(dev, pll.reg + 8, reg2 | (P << 28) | (M2 << 16) | N2); |
Ben Skeggs | 1ac7b52 | 2010-08-04 22:08:03 +1000 | [diff] [blame] | 354 | } else |
| 355 | if (dev_priv->chipset < NV_C0) { |
Ben Skeggs | 52eba8d | 2011-04-28 02:34:21 +1000 | [diff] [blame] | 356 | ret = nva3_calc_pll(dev, &pll, pclk, &N1, &N2, &M1, &P); |
Ben Skeggs | e9ebb68 | 2010-04-28 14:07:06 +1000 | [diff] [blame] | 357 | if (ret <= 0) |
| 358 | return 0; |
Ben Skeggs | 17b96cc | 2010-04-23 03:53:42 +1000 | [diff] [blame] | 359 | |
Ben Skeggs | e9ebb68 | 2010-04-28 14:07:06 +1000 | [diff] [blame] | 360 | NV_DEBUG(dev, "pclk %d out %d N %d fN 0x%04x M %d P %d\n", |
| 361 | pclk, ret, N1, N2, M1, P); |
| 362 | |
Ben Skeggs | 5b32165 | 2010-09-24 09:17:02 +1000 | [diff] [blame] | 363 | reg1 = nv_rd32(dev, pll.reg + 4) & 0xffc00000; |
| 364 | nv_wr32(dev, pll.reg + 0, 0x50000610); |
| 365 | nv_wr32(dev, pll.reg + 4, reg1 | (P << 16) | (M1 << 8) | N1); |
| 366 | nv_wr32(dev, pll.reg + 8, N2); |
Ben Skeggs | 1ac7b52 | 2010-08-04 22:08:03 +1000 | [diff] [blame] | 367 | } else { |
Ben Skeggs | 52eba8d | 2011-04-28 02:34:21 +1000 | [diff] [blame] | 368 | ret = nva3_calc_pll(dev, &pll, pclk, &N1, &N2, &M1, &P); |
Ben Skeggs | 1ac7b52 | 2010-08-04 22:08:03 +1000 | [diff] [blame] | 369 | if (ret <= 0) |
| 370 | return 0; |
| 371 | |
| 372 | NV_DEBUG(dev, "pclk %d out %d N %d fN 0x%04x M %d P %d\n", |
| 373 | pclk, ret, N1, N2, M1, P); |
| 374 | |
Ben Skeggs | 5b32165 | 2010-09-24 09:17:02 +1000 | [diff] [blame] | 375 | nv_mask(dev, pll.reg + 0x0c, 0x00000000, 0x00000100); |
| 376 | nv_wr32(dev, pll.reg + 0x04, (P << 16) | (N1 << 8) | M1); |
| 377 | nv_wr32(dev, pll.reg + 0x10, N2 << 16); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | return 0; |
| 381 | } |
| 382 | |
| 383 | static void |
| 384 | nv50_crtc_destroy(struct drm_crtc *crtc) |
| 385 | { |
Marcin Slusarz | dd19e44 | 2010-01-30 15:41:00 +0100 | [diff] [blame] | 386 | struct drm_device *dev; |
| 387 | struct nouveau_crtc *nv_crtc; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 388 | |
| 389 | if (!crtc) |
| 390 | return; |
| 391 | |
Marcin Slusarz | dd19e44 | 2010-01-30 15:41:00 +0100 | [diff] [blame] | 392 | dev = crtc->dev; |
| 393 | nv_crtc = nouveau_crtc(crtc); |
| 394 | |
| 395 | NV_DEBUG_KMS(dev, "\n"); |
| 396 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 397 | drm_crtc_cleanup(&nv_crtc->base); |
| 398 | |
Ben Skeggs | 9d59e8a | 2010-08-27 13:04:41 +1000 | [diff] [blame] | 399 | nouveau_bo_unmap(nv_crtc->lut.nvbo); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 400 | nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo); |
Ben Skeggs | 9d59e8a | 2010-08-27 13:04:41 +1000 | [diff] [blame] | 401 | nouveau_bo_unmap(nv_crtc->cursor.nvbo); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 402 | nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 403 | kfree(nv_crtc); |
| 404 | } |
| 405 | |
| 406 | int |
| 407 | nv50_crtc_cursor_set(struct drm_crtc *crtc, struct drm_file *file_priv, |
| 408 | uint32_t buffer_handle, uint32_t width, uint32_t height) |
| 409 | { |
| 410 | struct drm_device *dev = crtc->dev; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 411 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 412 | struct nouveau_bo *cursor = NULL; |
| 413 | struct drm_gem_object *gem; |
| 414 | int ret = 0, i; |
| 415 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 416 | if (!buffer_handle) { |
| 417 | nv_crtc->cursor.hide(nv_crtc, true); |
| 418 | return 0; |
| 419 | } |
| 420 | |
Marcin Slusarz | b4fa9d0 | 2011-05-01 23:49:04 +0200 | [diff] [blame] | 421 | if (width != 64 || height != 64) |
| 422 | return -EINVAL; |
| 423 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 424 | gem = drm_gem_object_lookup(dev, file_priv, buffer_handle); |
| 425 | if (!gem) |
Chris Wilson | bf79cb9 | 2010-08-04 14:19:46 +0100 | [diff] [blame] | 426 | return -ENOENT; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 427 | cursor = nouveau_gem_object(gem); |
| 428 | |
| 429 | ret = nouveau_bo_map(cursor); |
| 430 | if (ret) |
| 431 | goto out; |
| 432 | |
| 433 | /* The simple will do for now. */ |
| 434 | for (i = 0; i < 64 * 64; i++) |
| 435 | nouveau_bo_wr32(nv_crtc->cursor.nvbo, i, nouveau_bo_rd32(cursor, i)); |
| 436 | |
| 437 | nouveau_bo_unmap(cursor); |
| 438 | |
Ben Skeggs | 180cc30 | 2011-06-07 11:24:14 +1000 | [diff] [blame] | 439 | nv_crtc->cursor.set_offset(nv_crtc, nv_crtc->cursor.nvbo->bo.offset); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 440 | nv_crtc->cursor.show(nv_crtc, true); |
| 441 | |
| 442 | out: |
Luca Barbieri | bc9025b | 2010-02-09 05:49:12 +0000 | [diff] [blame] | 443 | drm_gem_object_unreference_unlocked(gem); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 444 | return ret; |
| 445 | } |
| 446 | |
| 447 | int |
| 448 | nv50_crtc_cursor_move(struct drm_crtc *crtc, int x, int y) |
| 449 | { |
| 450 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 451 | |
| 452 | nv_crtc->cursor.set_pos(nv_crtc, x, y); |
| 453 | return 0; |
| 454 | } |
| 455 | |
| 456 | static void |
| 457 | 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] | 458 | uint32_t start, uint32_t size) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 459 | { |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 460 | int end = (start + size > 256) ? 256 : start + size, i; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 461 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 462 | |
James Simmons | 7203425 | 2010-08-03 01:33:19 +0100 | [diff] [blame] | 463 | for (i = start; i < end; i++) { |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 464 | nv_crtc->lut.r[i] = r[i]; |
| 465 | nv_crtc->lut.g[i] = g[i]; |
| 466 | nv_crtc->lut.b[i] = b[i]; |
| 467 | } |
| 468 | |
| 469 | /* We need to know the depth before we upload, but it's possible to |
| 470 | * get called before a framebuffer is bound. If this is the case, |
| 471 | * mark the lut values as dirty by setting depth==0, and it'll be |
| 472 | * uploaded on the first mode_set_base() |
| 473 | */ |
| 474 | if (!nv_crtc->base.fb) { |
| 475 | nv_crtc->lut.depth = 0; |
| 476 | return; |
| 477 | } |
| 478 | |
| 479 | nv50_crtc_lut_load(crtc); |
| 480 | } |
| 481 | |
| 482 | static void |
| 483 | nv50_crtc_save(struct drm_crtc *crtc) |
| 484 | { |
| 485 | NV_ERROR(crtc->dev, "!!\n"); |
| 486 | } |
| 487 | |
| 488 | static void |
| 489 | nv50_crtc_restore(struct drm_crtc *crtc) |
| 490 | { |
| 491 | NV_ERROR(crtc->dev, "!!\n"); |
| 492 | } |
| 493 | |
| 494 | static const struct drm_crtc_funcs nv50_crtc_funcs = { |
| 495 | .save = nv50_crtc_save, |
| 496 | .restore = nv50_crtc_restore, |
| 497 | .cursor_set = nv50_crtc_cursor_set, |
| 498 | .cursor_move = nv50_crtc_cursor_move, |
| 499 | .gamma_set = nv50_crtc_gamma_set, |
| 500 | .set_config = drm_crtc_helper_set_config, |
Francisco Jerez | 332b242 | 2010-10-20 23:35:40 +0200 | [diff] [blame] | 501 | .page_flip = nouveau_crtc_page_flip, |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 502 | .destroy = nv50_crtc_destroy, |
| 503 | }; |
| 504 | |
| 505 | static void |
| 506 | nv50_crtc_dpms(struct drm_crtc *crtc, int mode) |
| 507 | { |
| 508 | } |
| 509 | |
| 510 | static void |
| 511 | nv50_crtc_prepare(struct drm_crtc *crtc) |
| 512 | { |
| 513 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 514 | struct drm_device *dev = crtc->dev; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 515 | |
Maarten Maathuis | ef2bb50 | 2009-12-13 16:53:12 +0100 | [diff] [blame] | 516 | NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 517 | |
Ben Skeggs | 1d3fac0 | 2011-02-07 14:18:37 +1000 | [diff] [blame] | 518 | nv50_display_flip_stop(crtc); |
Francisco Jerez | 1c180fa | 2010-10-25 03:30:34 +0200 | [diff] [blame] | 519 | drm_vblank_pre_modeset(dev, nv_crtc->index); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 520 | nv50_crtc_blank(nv_crtc, true); |
| 521 | } |
| 522 | |
| 523 | static void |
| 524 | nv50_crtc_commit(struct drm_crtc *crtc) |
| 525 | { |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 526 | struct drm_device *dev = crtc->dev; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 527 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 528 | |
Maarten Maathuis | ef2bb50 | 2009-12-13 16:53:12 +0100 | [diff] [blame] | 529 | NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 530 | |
| 531 | nv50_crtc_blank(nv_crtc, false); |
Francisco Jerez | 1c180fa | 2010-10-25 03:30:34 +0200 | [diff] [blame] | 532 | drm_vblank_post_modeset(dev, nv_crtc->index); |
Ben Skeggs | e6e039d | 2011-10-14 14:35:19 +1000 | [diff] [blame] | 533 | nv50_display_sync(dev); |
Ben Skeggs | 1d3fac0 | 2011-02-07 14:18:37 +1000 | [diff] [blame] | 534 | nv50_display_flip_next(crtc, crtc->fb, NULL); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 535 | } |
| 536 | |
| 537 | static bool |
| 538 | nv50_crtc_mode_fixup(struct drm_crtc *crtc, struct drm_display_mode *mode, |
| 539 | struct drm_display_mode *adjusted_mode) |
| 540 | { |
| 541 | return true; |
| 542 | } |
| 543 | |
| 544 | static int |
Chris Ball | be64c2bb | 2010-09-26 06:47:24 -0500 | [diff] [blame] | 545 | nv50_crtc_do_mode_set_base(struct drm_crtc *crtc, |
| 546 | struct drm_framebuffer *passed_fb, |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 547 | int x, int y, bool atomic) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 548 | { |
| 549 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
| 550 | struct drm_device *dev = nv_crtc->base.dev; |
| 551 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
Ben Skeggs | 59c0f57 | 2011-02-01 10:24:41 +1000 | [diff] [blame] | 552 | struct nouveau_channel *evo = nv50_display(dev)->master; |
Emil Velikov | ffbc559 | 2011-08-21 22:48:12 +0100 | [diff] [blame] | 553 | struct drm_framebuffer *drm_fb; |
| 554 | struct nouveau_framebuffer *fb; |
Ben Skeggs | 45c4e0a | 2011-02-09 11:57:45 +1000 | [diff] [blame] | 555 | int ret; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 556 | |
Maarten Maathuis | ef2bb50 | 2009-12-13 16:53:12 +0100 | [diff] [blame] | 557 | NV_DEBUG_KMS(dev, "index %d\n", nv_crtc->index); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 558 | |
Emil Velikov | ffbc559 | 2011-08-21 22:48:12 +0100 | [diff] [blame] | 559 | /* no fb bound */ |
| 560 | if (!atomic && !crtc->fb) { |
| 561 | NV_DEBUG_KMS(dev, "No FB bound\n"); |
| 562 | return 0; |
| 563 | } |
| 564 | |
Chris Ball | be64c2bb | 2010-09-26 06:47:24 -0500 | [diff] [blame] | 565 | /* If atomic, we want to switch to the fb we were passed, so |
| 566 | * now we update pointers to do that. (We don't pin; just |
| 567 | * assume we're already pinned and update the base address.) |
| 568 | */ |
| 569 | if (atomic) { |
| 570 | drm_fb = passed_fb; |
| 571 | fb = nouveau_framebuffer(passed_fb); |
Emil Velikov | f9ec8f6 | 2011-03-19 23:31:53 +0000 | [diff] [blame] | 572 | } else { |
Emil Velikov | ffbc559 | 2011-08-21 22:48:12 +0100 | [diff] [blame] | 573 | drm_fb = crtc->fb; |
| 574 | fb = nouveau_framebuffer(crtc->fb); |
Chris Ball | be64c2bb | 2010-09-26 06:47:24 -0500 | [diff] [blame] | 575 | /* If not atomic, we can go ahead and pin, and unpin the |
| 576 | * old fb we were passed. |
| 577 | */ |
| 578 | ret = nouveau_bo_pin(fb->nvbo, TTM_PL_FLAG_VRAM); |
| 579 | if (ret) |
| 580 | return ret; |
| 581 | |
| 582 | if (passed_fb) { |
| 583 | struct nouveau_framebuffer *ofb = nouveau_framebuffer(passed_fb); |
| 584 | nouveau_bo_unpin(ofb->nvbo); |
| 585 | } |
| 586 | } |
| 587 | |
Ben Skeggs | 180cc30 | 2011-06-07 11:24:14 +1000 | [diff] [blame] | 588 | nv_crtc->fb.offset = fb->nvbo->bo.offset; |
Francisco Jerez | f13b326 | 2010-10-10 06:01:08 +0200 | [diff] [blame] | 589 | nv_crtc->fb.tile_flags = nouveau_bo_tile_layout(fb->nvbo); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 590 | nv_crtc->fb.cpp = drm_fb->bits_per_pixel / 8; |
| 591 | if (!nv_crtc->fb.blanked && dev_priv->chipset != 0x50) { |
| 592 | ret = RING_SPACE(evo, 2); |
| 593 | if (ret) |
| 594 | return ret; |
| 595 | |
| 596 | 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] | 597 | OUT_RING (evo, fb->r_dma); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | ret = RING_SPACE(evo, 12); |
| 601 | if (ret) |
| 602 | return ret; |
| 603 | |
| 604 | 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] | 605 | OUT_RING (evo, nv_crtc->fb.offset >> 8); |
| 606 | OUT_RING (evo, 0); |
| 607 | OUT_RING (evo, (drm_fb->height << 16) | drm_fb->width); |
| 608 | OUT_RING (evo, fb->r_pitch); |
| 609 | OUT_RING (evo, fb->r_format); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 610 | |
| 611 | 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] | 612 | OUT_RING (evo, fb->base.depth == 8 ? |
| 613 | NV50_EVO_CRTC_CLUT_MODE_OFF : NV50_EVO_CRTC_CLUT_MODE_ON); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 614 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 615 | 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] | 616 | OUT_RING (evo, (y << 16) | x); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 617 | |
| 618 | if (nv_crtc->lut.depth != fb->base.depth) { |
| 619 | nv_crtc->lut.depth = fb->base.depth; |
| 620 | nv50_crtc_lut_load(crtc); |
| 621 | } |
| 622 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 623 | return 0; |
| 624 | } |
| 625 | |
| 626 | static int |
Ben Skeggs | 616a5f5 | 2011-10-20 15:00:22 +1000 | [diff] [blame] | 627 | nv50_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *umode, |
| 628 | struct drm_display_mode *mode, int x, int y, |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 629 | struct drm_framebuffer *old_fb) |
| 630 | { |
| 631 | struct drm_device *dev = crtc->dev; |
Ben Skeggs | 59c0f57 | 2011-02-01 10:24:41 +1000 | [diff] [blame] | 632 | struct nouveau_channel *evo = nv50_display(dev)->master; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 633 | struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); |
Ben Skeggs | 616a5f5 | 2011-10-20 15:00:22 +1000 | [diff] [blame] | 634 | u32 head = nv_crtc->index * 0x400; |
| 635 | u32 ilace = (mode->flags & DRM_MODE_FLAG_INTERLACE) ? 2 : 1; |
| 636 | u32 vscan = (mode->flags & DRM_MODE_FLAG_DBLSCAN) ? 2 : 1; |
| 637 | u32 hactive, hsynce, hbackp, hfrontp, hblanke, hblanks; |
| 638 | u32 vactive, vsynce, vbackp, vfrontp, vblanke, vblanks; |
| 639 | u32 vblan2e = 0, vblan2s = 1; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 640 | int ret; |
| 641 | |
Ben Skeggs | 616a5f5 | 2011-10-20 15:00:22 +1000 | [diff] [blame] | 642 | /* hw timing description looks like this: |
| 643 | * |
| 644 | * <sync> <back porch> <---------display---------> <front porch> |
| 645 | * ______ |
| 646 | * |____________|---------------------------|____________| |
| 647 | * |
| 648 | * ^ synce ^ blanke ^ blanks ^ active |
| 649 | * |
| 650 | * interlaced modes also have 2 additional values pointing at the end |
| 651 | * and start of the next field's blanking period. |
| 652 | */ |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 653 | |
Ben Skeggs | 616a5f5 | 2011-10-20 15:00:22 +1000 | [diff] [blame] | 654 | hactive = mode->htotal; |
| 655 | hsynce = mode->hsync_end - mode->hsync_start - 1; |
| 656 | hbackp = mode->htotal - mode->hsync_end; |
| 657 | hblanke = hsynce + hbackp; |
| 658 | hfrontp = mode->hsync_start - mode->hdisplay; |
| 659 | hblanks = mode->htotal - hfrontp - 1; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 660 | |
Ben Skeggs | 616a5f5 | 2011-10-20 15:00:22 +1000 | [diff] [blame] | 661 | vactive = mode->vtotal * vscan / ilace; |
| 662 | vsynce = ((mode->vsync_end - mode->vsync_start) * vscan / ilace) - 1; |
| 663 | vbackp = (mode->vtotal - mode->vsync_end) * vscan / ilace; |
| 664 | vblanke = vsynce + vbackp; |
| 665 | vfrontp = (mode->vsync_start - mode->vdisplay) * vscan / ilace; |
| 666 | vblanks = vactive - vfrontp - 1; |
| 667 | if (mode->flags & DRM_MODE_FLAG_INTERLACE) { |
| 668 | vblan2e = vactive + vsynce + vbackp; |
| 669 | vblan2s = vblan2e + (mode->vdisplay * vscan / ilace); |
| 670 | vactive = (vactive * 2) + 1; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 671 | } |
| 672 | |
Ben Skeggs | 616a5f5 | 2011-10-20 15:00:22 +1000 | [diff] [blame] | 673 | ret = RING_SPACE(evo, 18); |
| 674 | if (ret == 0) { |
| 675 | BEGIN_RING(evo, 0, 0x0804 + head, 2); |
| 676 | OUT_RING (evo, 0x00800000 | mode->clock); |
| 677 | OUT_RING (evo, (ilace == 2) ? 2 : 0); |
| 678 | BEGIN_RING(evo, 0, 0x0810 + head, 6); |
| 679 | OUT_RING (evo, 0x00000000); /* border colour */ |
| 680 | OUT_RING (evo, (vactive << 16) | hactive); |
| 681 | OUT_RING (evo, ( vsynce << 16) | hsynce); |
| 682 | OUT_RING (evo, (vblanke << 16) | hblanke); |
| 683 | OUT_RING (evo, (vblanks << 16) | hblanks); |
| 684 | OUT_RING (evo, (vblan2e << 16) | vblan2s); |
| 685 | BEGIN_RING(evo, 0, 0x082c + head, 1); |
| 686 | OUT_RING (evo, 0x00000000); |
| 687 | BEGIN_RING(evo, 0, 0x0900 + head, 1); |
| 688 | OUT_RING (evo, 0x00000311); /* makes sync channel work */ |
| 689 | BEGIN_RING(evo, 0, 0x08c8 + head, 1); |
| 690 | OUT_RING (evo, (umode->vdisplay << 16) | umode->hdisplay); |
| 691 | BEGIN_RING(evo, 0, 0x08d4 + head, 1); |
| 692 | OUT_RING (evo, 0x00000000); /* screen position */ |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 693 | } |
| 694 | |
Ben Skeggs | 488ff20 | 2011-10-17 10:38:10 +1000 | [diff] [blame] | 695 | nv_crtc->set_dither(nv_crtc, false); |
| 696 | nv_crtc->set_scale(nv_crtc, false); |
Christoph Bumiller | df26bc9 | 2012-01-21 23:13:26 +0100 | [diff] [blame] | 697 | nv_crtc->set_color_vibrance(nv_crtc, false); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 698 | |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 699 | 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] | 700 | } |
| 701 | |
| 702 | static int |
| 703 | nv50_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y, |
| 704 | struct drm_framebuffer *old_fb) |
| 705 | { |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 706 | int ret; |
| 707 | |
Ben Skeggs | 1d3fac0 | 2011-02-07 14:18:37 +1000 | [diff] [blame] | 708 | nv50_display_flip_stop(crtc); |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 709 | ret = nv50_crtc_do_mode_set_base(crtc, old_fb, x, y, false); |
| 710 | if (ret) |
| 711 | return ret; |
| 712 | |
Ben Skeggs | e6e039d | 2011-10-14 14:35:19 +1000 | [diff] [blame] | 713 | ret = nv50_display_sync(crtc->dev); |
Ben Skeggs | 1d3fac0 | 2011-02-07 14:18:37 +1000 | [diff] [blame] | 714 | if (ret) |
| 715 | return ret; |
| 716 | |
| 717 | return nv50_display_flip_next(crtc, crtc->fb, NULL); |
Chris Ball | be64c2bb | 2010-09-26 06:47:24 -0500 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | static int |
| 721 | nv50_crtc_mode_set_base_atomic(struct drm_crtc *crtc, |
| 722 | struct drm_framebuffer *fb, |
Jason Wessel | 21c74a8 | 2010-10-13 14:09:44 -0500 | [diff] [blame] | 723 | int x, int y, enum mode_set_atomic state) |
Chris Ball | be64c2bb | 2010-09-26 06:47:24 -0500 | [diff] [blame] | 724 | { |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 725 | int ret; |
| 726 | |
Ben Skeggs | 1d3fac0 | 2011-02-07 14:18:37 +1000 | [diff] [blame] | 727 | nv50_display_flip_stop(crtc); |
Ben Skeggs | 60f60bf | 2011-02-03 15:46:14 +1000 | [diff] [blame] | 728 | ret = nv50_crtc_do_mode_set_base(crtc, fb, x, y, true); |
| 729 | if (ret) |
| 730 | return ret; |
| 731 | |
Ben Skeggs | e6e039d | 2011-10-14 14:35:19 +1000 | [diff] [blame] | 732 | return nv50_display_sync(crtc->dev); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 733 | } |
| 734 | |
| 735 | static const struct drm_crtc_helper_funcs nv50_crtc_helper_funcs = { |
| 736 | .dpms = nv50_crtc_dpms, |
| 737 | .prepare = nv50_crtc_prepare, |
| 738 | .commit = nv50_crtc_commit, |
| 739 | .mode_fixup = nv50_crtc_mode_fixup, |
| 740 | .mode_set = nv50_crtc_mode_set, |
| 741 | .mode_set_base = nv50_crtc_mode_set_base, |
Chris Ball | be64c2bb | 2010-09-26 06:47:24 -0500 | [diff] [blame] | 742 | .mode_set_base_atomic = nv50_crtc_mode_set_base_atomic, |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 743 | .load_lut = nv50_crtc_lut_load, |
| 744 | }; |
| 745 | |
| 746 | int |
| 747 | nv50_crtc_create(struct drm_device *dev, int index) |
| 748 | { |
| 749 | struct nouveau_crtc *nv_crtc = NULL; |
| 750 | int ret, i; |
| 751 | |
Maarten Maathuis | ef2bb50 | 2009-12-13 16:53:12 +0100 | [diff] [blame] | 752 | NV_DEBUG_KMS(dev, "\n"); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 753 | |
| 754 | nv_crtc = kzalloc(sizeof(*nv_crtc), GFP_KERNEL); |
| 755 | if (!nv_crtc) |
| 756 | return -ENOMEM; |
| 757 | |
Christoph Bumiller | df26bc9 | 2012-01-21 23:13:26 +0100 | [diff] [blame] | 758 | nv_crtc->color_vibrance = 50; |
| 759 | nv_crtc->vibrant_hue = 0; |
| 760 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 761 | /* Default CLUT parameters, will be activated on the hw upon |
| 762 | * first mode set. |
| 763 | */ |
| 764 | for (i = 0; i < 256; i++) { |
| 765 | nv_crtc->lut.r[i] = i << 8; |
| 766 | nv_crtc->lut.g[i] = i << 8; |
| 767 | nv_crtc->lut.b[i] = i << 8; |
| 768 | } |
| 769 | nv_crtc->lut.depth = 0; |
| 770 | |
Ben Skeggs | 7375c95 | 2011-06-07 14:21:29 +1000 | [diff] [blame] | 771 | ret = nouveau_bo_new(dev, 4096, 0x100, TTM_PL_FLAG_VRAM, |
Ben Skeggs | d550c41 | 2011-02-16 08:41:56 +1000 | [diff] [blame] | 772 | 0, 0x0000, &nv_crtc->lut.nvbo); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 773 | if (!ret) { |
| 774 | ret = nouveau_bo_pin(nv_crtc->lut.nvbo, TTM_PL_FLAG_VRAM); |
| 775 | if (!ret) |
| 776 | ret = nouveau_bo_map(nv_crtc->lut.nvbo); |
| 777 | if (ret) |
| 778 | nouveau_bo_ref(NULL, &nv_crtc->lut.nvbo); |
| 779 | } |
| 780 | |
| 781 | if (ret) { |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 782 | kfree(nv_crtc); |
| 783 | return ret; |
| 784 | } |
| 785 | |
| 786 | nv_crtc->index = index; |
| 787 | |
| 788 | /* set function pointers */ |
| 789 | nv_crtc->set_dither = nv50_crtc_set_dither; |
| 790 | nv_crtc->set_scale = nv50_crtc_set_scale; |
Christoph Bumiller | df26bc9 | 2012-01-21 23:13:26 +0100 | [diff] [blame] | 791 | nv_crtc->set_color_vibrance = nv50_crtc_set_color_vibrance; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 792 | |
| 793 | drm_crtc_init(dev, &nv_crtc->base, &nv50_crtc_funcs); |
| 794 | drm_crtc_helper_add(&nv_crtc->base, &nv50_crtc_helper_funcs); |
| 795 | drm_mode_crtc_set_gamma_size(&nv_crtc->base, 256); |
| 796 | |
Ben Skeggs | 7375c95 | 2011-06-07 14:21:29 +1000 | [diff] [blame] | 797 | ret = nouveau_bo_new(dev, 64*64*4, 0x100, TTM_PL_FLAG_VRAM, |
Ben Skeggs | d550c41 | 2011-02-16 08:41:56 +1000 | [diff] [blame] | 798 | 0, 0x0000, &nv_crtc->cursor.nvbo); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 799 | if (!ret) { |
| 800 | ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM); |
| 801 | if (!ret) |
| 802 | ret = nouveau_bo_map(nv_crtc->cursor.nvbo); |
| 803 | if (ret) |
| 804 | nouveau_bo_ref(NULL, &nv_crtc->cursor.nvbo); |
| 805 | } |
| 806 | |
| 807 | nv50_cursor_init(nv_crtc); |
| 808 | return 0; |
| 809 | } |