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