1 /* 2 * Copyright 2012 Red Hat Inc. 3 * Parts based on xf86-video-ast 4 * Copyright (c) 2005 ASPEED Technology Inc. 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the 8 * "Software"), to deal in the Software without restriction, including 9 * without limitation the rights to use, copy, modify, merge, publish, 10 * distribute, sub license, and/or sell copies of the Software, and to 11 * permit persons to whom the Software is furnished to do so, subject to 12 * the following conditions: 13 * 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 17 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, 18 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 19 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 20 * USE OR OTHER DEALINGS IN THE SOFTWARE. 21 * 22 * The above copyright notice and this permission notice (including the 23 * next paragraph) shall be included in all copies or substantial portions 24 * of the Software. 25 * 26 */ 27 /* 28 * Authors: Dave Airlie <airlied@redhat.com> 29 */ 30 #include <linux/export.h> 31 #include <drm/drmP.h> 32 #include <drm/drm_crtc.h> 33 #include <drm/drm_crtc_helper.h> 34 #include "ast_drv.h" 35 36 #include "ast_tables.h" 37 38 static struct ast_i2c_chan *ast_i2c_create(struct drm_device *dev); 39 static void ast_i2c_destroy(struct ast_i2c_chan *i2c); 40 static int ast_cursor_set(struct drm_crtc *crtc, 41 struct drm_file *file_priv, 42 uint32_t handle, 43 uint32_t width, 44 uint32_t height); 45 static int ast_cursor_move(struct drm_crtc *crtc, 46 int x, int y); 47 48 static inline void ast_load_palette_index(struct ast_private *ast, 49 u8 index, u8 red, u8 green, 50 u8 blue) 51 { 52 ast_io_write8(ast, AST_IO_DAC_INDEX_WRITE, index); 53 ast_io_read8(ast, AST_IO_SEQ_PORT); 54 ast_io_write8(ast, AST_IO_DAC_DATA, red); 55 ast_io_read8(ast, AST_IO_SEQ_PORT); 56 ast_io_write8(ast, AST_IO_DAC_DATA, green); 57 ast_io_read8(ast, AST_IO_SEQ_PORT); 58 ast_io_write8(ast, AST_IO_DAC_DATA, blue); 59 ast_io_read8(ast, AST_IO_SEQ_PORT); 60 } 61 62 static void ast_crtc_load_lut(struct drm_crtc *crtc) 63 { 64 struct ast_private *ast = crtc->dev->dev_private; 65 struct ast_crtc *ast_crtc = to_ast_crtc(crtc); 66 int i; 67 68 if (!crtc->enabled) 69 return; 70 71 for (i = 0; i < 256; i++) 72 ast_load_palette_index(ast, i, ast_crtc->lut_r[i], 73 ast_crtc->lut_g[i], ast_crtc->lut_b[i]); 74 } 75 76 static bool ast_get_vbios_mode_info(struct drm_crtc *crtc, struct drm_display_mode *mode, 77 struct drm_display_mode *adjusted_mode, 78 struct ast_vbios_mode_info *vbios_mode) 79 { 80 struct ast_private *ast = crtc->dev->dev_private; 81 u32 refresh_rate_index = 0, mode_id, color_index, refresh_rate; 82 u32 hborder, vborder; 83 84 switch (crtc->primary->fb->bits_per_pixel) { 85 case 8: 86 vbios_mode->std_table = &vbios_stdtable[VGAModeIndex]; 87 color_index = VGAModeIndex - 1; 88 break; 89 case 16: 90 vbios_mode->std_table = &vbios_stdtable[HiCModeIndex]; 91 color_index = HiCModeIndex; 92 break; 93 case 24: 94 case 32: 95 vbios_mode->std_table = &vbios_stdtable[TrueCModeIndex]; 96 color_index = TrueCModeIndex; 97 break; 98 default: 99 return false; 100 } 101 102 switch (crtc->mode.crtc_hdisplay) { 103 case 640: 104 vbios_mode->enh_table = &res_640x480[refresh_rate_index]; 105 break; 106 case 800: 107 vbios_mode->enh_table = &res_800x600[refresh_rate_index]; 108 break; 109 case 1024: 110 vbios_mode->enh_table = &res_1024x768[refresh_rate_index]; 111 break; 112 case 1280: 113 if (crtc->mode.crtc_vdisplay == 800) 114 vbios_mode->enh_table = &res_1280x800[refresh_rate_index]; 115 else 116 vbios_mode->enh_table = &res_1280x1024[refresh_rate_index]; 117 break; 118 case 1360: 119 vbios_mode->enh_table = &res_1360x768[refresh_rate_index]; 120 break; 121 case 1440: 122 vbios_mode->enh_table = &res_1440x900[refresh_rate_index]; 123 break; 124 case 1600: 125 if (crtc->mode.crtc_vdisplay == 900) 126 vbios_mode->enh_table = &res_1600x900[refresh_rate_index]; 127 else 128 vbios_mode->enh_table = &res_1600x1200[refresh_rate_index]; 129 break; 130 case 1680: 131 vbios_mode->enh_table = &res_1680x1050[refresh_rate_index]; 132 break; 133 case 1920: 134 if (crtc->mode.crtc_vdisplay == 1080) 135 vbios_mode->enh_table = &res_1920x1080[refresh_rate_index]; 136 else 137 vbios_mode->enh_table = &res_1920x1200[refresh_rate_index]; 138 break; 139 default: 140 return false; 141 } 142 143 refresh_rate = drm_mode_vrefresh(mode); 144 while (vbios_mode->enh_table->refresh_rate < refresh_rate) { 145 vbios_mode->enh_table++; 146 if ((vbios_mode->enh_table->refresh_rate > refresh_rate) || 147 (vbios_mode->enh_table->refresh_rate == 0xff)) { 148 vbios_mode->enh_table--; 149 break; 150 } 151 } 152 153 hborder = (vbios_mode->enh_table->flags & HBorder) ? 8 : 0; 154 vborder = (vbios_mode->enh_table->flags & VBorder) ? 8 : 0; 155 156 adjusted_mode->crtc_htotal = vbios_mode->enh_table->ht; 157 adjusted_mode->crtc_hblank_start = vbios_mode->enh_table->hde + hborder; 158 adjusted_mode->crtc_hblank_end = vbios_mode->enh_table->ht - hborder; 159 adjusted_mode->crtc_hsync_start = vbios_mode->enh_table->hde + hborder + 160 vbios_mode->enh_table->hfp; 161 adjusted_mode->crtc_hsync_end = (vbios_mode->enh_table->hde + hborder + 162 vbios_mode->enh_table->hfp + 163 vbios_mode->enh_table->hsync); 164 165 adjusted_mode->crtc_vtotal = vbios_mode->enh_table->vt; 166 adjusted_mode->crtc_vblank_start = vbios_mode->enh_table->vde + vborder; 167 adjusted_mode->crtc_vblank_end = vbios_mode->enh_table->vt - vborder; 168 adjusted_mode->crtc_vsync_start = vbios_mode->enh_table->vde + vborder + 169 vbios_mode->enh_table->vfp; 170 adjusted_mode->crtc_vsync_end = (vbios_mode->enh_table->vde + vborder + 171 vbios_mode->enh_table->vfp + 172 vbios_mode->enh_table->vsync); 173 174 refresh_rate_index = vbios_mode->enh_table->refresh_rate_index; 175 mode_id = vbios_mode->enh_table->mode_id; 176 177 if (ast->chip == AST1180) { 178 /* TODO 1180 */ 179 } else { 180 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x8c, (u8)((color_index & 0xf) << 4)); 181 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x8d, refresh_rate_index & 0xff); 182 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x8e, mode_id & 0xff); 183 184 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x91, 0x00); 185 if (vbios_mode->enh_table->flags & NewModeInfo) { 186 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x91, 0xa8); 187 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x92, crtc->primary->fb->bits_per_pixel); 188 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x93, adjusted_mode->clock / 1000); 189 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x94, adjusted_mode->crtc_hdisplay); 190 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x95, adjusted_mode->crtc_hdisplay >> 8); 191 192 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x96, adjusted_mode->crtc_vdisplay); 193 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x97, adjusted_mode->crtc_vdisplay >> 8); 194 } 195 } 196 197 return true; 198 199 200 } 201 static void ast_set_std_reg(struct drm_crtc *crtc, struct drm_display_mode *mode, 202 struct ast_vbios_mode_info *vbios_mode) 203 { 204 struct ast_private *ast = crtc->dev->dev_private; 205 struct ast_vbios_stdtable *stdtable; 206 u32 i; 207 u8 jreg; 208 209 stdtable = vbios_mode->std_table; 210 211 jreg = stdtable->misc; 212 ast_io_write8(ast, AST_IO_MISC_PORT_WRITE, jreg); 213 214 /* Set SEQ */ 215 ast_set_index_reg(ast, AST_IO_SEQ_PORT, 0x00, 0x03); 216 for (i = 0; i < 4; i++) { 217 jreg = stdtable->seq[i]; 218 if (!i) 219 jreg |= 0x20; 220 ast_set_index_reg(ast, AST_IO_SEQ_PORT, (i + 1) , jreg); 221 } 222 223 /* Set CRTC */ 224 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x11, 0x7f, 0x00); 225 for (i = 0; i < 25; i++) 226 ast_set_index_reg(ast, AST_IO_CRTC_PORT, i, stdtable->crtc[i]); 227 228 /* set AR */ 229 jreg = ast_io_read8(ast, AST_IO_INPUT_STATUS1_READ); 230 for (i = 0; i < 20; i++) { 231 jreg = stdtable->ar[i]; 232 ast_io_write8(ast, AST_IO_AR_PORT_WRITE, (u8)i); 233 ast_io_write8(ast, AST_IO_AR_PORT_WRITE, jreg); 234 } 235 ast_io_write8(ast, AST_IO_AR_PORT_WRITE, 0x14); 236 ast_io_write8(ast, AST_IO_AR_PORT_WRITE, 0x00); 237 238 jreg = ast_io_read8(ast, AST_IO_INPUT_STATUS1_READ); 239 ast_io_write8(ast, AST_IO_AR_PORT_WRITE, 0x20); 240 241 /* Set GR */ 242 for (i = 0; i < 9; i++) 243 ast_set_index_reg(ast, AST_IO_GR_PORT, i, stdtable->gr[i]); 244 } 245 246 static void ast_set_crtc_reg(struct drm_crtc *crtc, struct drm_display_mode *mode, 247 struct ast_vbios_mode_info *vbios_mode) 248 { 249 struct ast_private *ast = crtc->dev->dev_private; 250 u8 jreg05 = 0, jreg07 = 0, jreg09 = 0, jregAC = 0, jregAD = 0, jregAE = 0; 251 u16 temp; 252 253 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x11, 0x7f, 0x00); 254 255 temp = (mode->crtc_htotal >> 3) - 5; 256 if (temp & 0x100) 257 jregAC |= 0x01; /* HT D[8] */ 258 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x00, 0x00, temp); 259 260 temp = (mode->crtc_hdisplay >> 3) - 1; 261 if (temp & 0x100) 262 jregAC |= 0x04; /* HDE D[8] */ 263 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x01, 0x00, temp); 264 265 temp = (mode->crtc_hblank_start >> 3) - 1; 266 if (temp & 0x100) 267 jregAC |= 0x10; /* HBS D[8] */ 268 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x02, 0x00, temp); 269 270 temp = ((mode->crtc_hblank_end >> 3) - 1) & 0x7f; 271 if (temp & 0x20) 272 jreg05 |= 0x80; /* HBE D[5] */ 273 if (temp & 0x40) 274 jregAD |= 0x01; /* HBE D[5] */ 275 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x03, 0xE0, (temp & 0x1f)); 276 277 temp = (mode->crtc_hsync_start >> 3) - 1; 278 if (temp & 0x100) 279 jregAC |= 0x40; /* HRS D[5] */ 280 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x04, 0x00, temp); 281 282 temp = ((mode->crtc_hsync_end >> 3) - 1) & 0x3f; 283 if (temp & 0x20) 284 jregAD |= 0x04; /* HRE D[5] */ 285 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x05, 0x60, (u8)((temp & 0x1f) | jreg05)); 286 287 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xAC, 0x00, jregAC); 288 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xAD, 0x00, jregAD); 289 290 /* vert timings */ 291 temp = (mode->crtc_vtotal) - 2; 292 if (temp & 0x100) 293 jreg07 |= 0x01; 294 if (temp & 0x200) 295 jreg07 |= 0x20; 296 if (temp & 0x400) 297 jregAE |= 0x01; 298 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x06, 0x00, temp); 299 300 temp = (mode->crtc_vsync_start) - 1; 301 if (temp & 0x100) 302 jreg07 |= 0x04; 303 if (temp & 0x200) 304 jreg07 |= 0x80; 305 if (temp & 0x400) 306 jregAE |= 0x08; 307 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x10, 0x00, temp); 308 309 temp = (mode->crtc_vsync_end - 1) & 0x3f; 310 if (temp & 0x10) 311 jregAE |= 0x20; 312 if (temp & 0x20) 313 jregAE |= 0x40; 314 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x11, 0x70, temp & 0xf); 315 316 temp = mode->crtc_vdisplay - 1; 317 if (temp & 0x100) 318 jreg07 |= 0x02; 319 if (temp & 0x200) 320 jreg07 |= 0x40; 321 if (temp & 0x400) 322 jregAE |= 0x02; 323 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x12, 0x00, temp); 324 325 temp = mode->crtc_vblank_start - 1; 326 if (temp & 0x100) 327 jreg07 |= 0x08; 328 if (temp & 0x200) 329 jreg09 |= 0x20; 330 if (temp & 0x400) 331 jregAE |= 0x04; 332 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x15, 0x00, temp); 333 334 temp = mode->crtc_vblank_end - 1; 335 if (temp & 0x100) 336 jregAE |= 0x10; 337 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x16, 0x00, temp); 338 339 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x07, 0x00, jreg07); 340 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x09, 0xdf, jreg09); 341 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xAE, 0x00, (jregAE | 0x80)); 342 343 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x11, 0x7f, 0x80); 344 } 345 346 static void ast_set_offset_reg(struct drm_crtc *crtc) 347 { 348 struct ast_private *ast = crtc->dev->dev_private; 349 350 u16 offset; 351 352 offset = crtc->primary->fb->pitches[0] >> 3; 353 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x13, (offset & 0xff)); 354 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xb0, (offset >> 8) & 0x3f); 355 } 356 357 static void ast_set_dclk_reg(struct drm_device *dev, struct drm_display_mode *mode, 358 struct ast_vbios_mode_info *vbios_mode) 359 { 360 struct ast_private *ast = dev->dev_private; 361 struct ast_vbios_dclk_info *clk_info; 362 363 clk_info = &dclk_table[vbios_mode->enh_table->dclk_index]; 364 365 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xc0, 0x00, clk_info->param1); 366 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xc1, 0x00, clk_info->param2); 367 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xbb, 0x0f, 368 (clk_info->param3 & 0x80) | ((clk_info->param3 & 0x3) << 4)); 369 } 370 371 static void ast_set_ext_reg(struct drm_crtc *crtc, struct drm_display_mode *mode, 372 struct ast_vbios_mode_info *vbios_mode) 373 { 374 struct ast_private *ast = crtc->dev->dev_private; 375 u8 jregA0 = 0, jregA3 = 0, jregA8 = 0; 376 377 switch (crtc->primary->fb->bits_per_pixel) { 378 case 8: 379 jregA0 = 0x70; 380 jregA3 = 0x01; 381 jregA8 = 0x00; 382 break; 383 case 15: 384 case 16: 385 jregA0 = 0x70; 386 jregA3 = 0x04; 387 jregA8 = 0x02; 388 break; 389 case 32: 390 jregA0 = 0x70; 391 jregA3 = 0x08; 392 jregA8 = 0x02; 393 break; 394 } 395 396 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xa0, 0x8f, jregA0); 397 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xa3, 0xf0, jregA3); 398 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xa8, 0xfd, jregA8); 399 400 /* Set Threshold */ 401 if (ast->chip == AST2300 || ast->chip == AST2400) { 402 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xa7, 0x78); 403 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xa6, 0x60); 404 } else if (ast->chip == AST2100 || 405 ast->chip == AST1100 || 406 ast->chip == AST2200 || 407 ast->chip == AST2150) { 408 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xa7, 0x3f); 409 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xa6, 0x2f); 410 } else { 411 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xa7, 0x2f); 412 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xa6, 0x1f); 413 } 414 } 415 416 static void ast_set_sync_reg(struct drm_device *dev, struct drm_display_mode *mode, 417 struct ast_vbios_mode_info *vbios_mode) 418 { 419 struct ast_private *ast = dev->dev_private; 420 u8 jreg; 421 422 jreg = ast_io_read8(ast, AST_IO_MISC_PORT_READ); 423 jreg |= (vbios_mode->enh_table->flags & SyncNN); 424 ast_io_write8(ast, AST_IO_MISC_PORT_WRITE, jreg); 425 } 426 427 static bool ast_set_dac_reg(struct drm_crtc *crtc, struct drm_display_mode *mode, 428 struct ast_vbios_mode_info *vbios_mode) 429 { 430 switch (crtc->primary->fb->bits_per_pixel) { 431 case 8: 432 break; 433 default: 434 return false; 435 } 436 return true; 437 } 438 439 static void ast_set_start_address_crt1(struct drm_crtc *crtc, unsigned offset) 440 { 441 struct ast_private *ast = crtc->dev->dev_private; 442 u32 addr; 443 444 addr = offset >> 2; 445 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x0d, (u8)(addr & 0xff)); 446 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0x0c, (u8)((addr >> 8) & 0xff)); 447 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xaf, (u8)((addr >> 16) & 0xff)); 448 449 } 450 451 static void ast_crtc_dpms(struct drm_crtc *crtc, int mode) 452 { 453 struct ast_private *ast = crtc->dev->dev_private; 454 455 if (ast->chip == AST1180) 456 return; 457 458 switch (mode) { 459 case DRM_MODE_DPMS_ON: 460 case DRM_MODE_DPMS_STANDBY: 461 case DRM_MODE_DPMS_SUSPEND: 462 ast_set_index_reg_mask(ast, AST_IO_SEQ_PORT, 0x1, 0xdf, 0); 463 if (ast->tx_chip_type == AST_TX_DP501) 464 ast_set_dp501_video_output(crtc->dev, 1); 465 ast_crtc_load_lut(crtc); 466 break; 467 case DRM_MODE_DPMS_OFF: 468 if (ast->tx_chip_type == AST_TX_DP501) 469 ast_set_dp501_video_output(crtc->dev, 0); 470 ast_set_index_reg_mask(ast, AST_IO_SEQ_PORT, 0x1, 0xdf, 0x20); 471 break; 472 } 473 } 474 475 static bool ast_crtc_mode_fixup(struct drm_crtc *crtc, 476 const struct drm_display_mode *mode, 477 struct drm_display_mode *adjusted_mode) 478 { 479 return true; 480 } 481 482 /* ast is different - we will force move buffers out of VRAM */ 483 static int ast_crtc_do_set_base(struct drm_crtc *crtc, 484 struct drm_framebuffer *fb, 485 int x, int y, int atomic) 486 { 487 struct ast_private *ast = crtc->dev->dev_private; 488 struct drm_gem_object *obj; 489 struct ast_framebuffer *ast_fb; 490 struct ast_bo *bo; 491 int ret; 492 u64 gpu_addr; 493 494 /* push the previous fb to system ram */ 495 if (!atomic && fb) { 496 ast_fb = to_ast_framebuffer(fb); 497 obj = ast_fb->obj; 498 bo = gem_to_ast_bo(obj); 499 ret = ast_bo_reserve(bo, false); 500 if (ret) 501 return ret; 502 ast_bo_push_sysram(bo); 503 ast_bo_unreserve(bo); 504 } 505 506 ast_fb = to_ast_framebuffer(crtc->primary->fb); 507 obj = ast_fb->obj; 508 bo = gem_to_ast_bo(obj); 509 510 ret = ast_bo_reserve(bo, false); 511 if (ret) 512 return ret; 513 514 ret = ast_bo_pin(bo, TTM_PL_FLAG_VRAM, &gpu_addr); 515 if (ret) { 516 ast_bo_unreserve(bo); 517 return ret; 518 } 519 520 if (&ast->fbdev->afb == ast_fb) { 521 /* if pushing console in kmap it */ 522 ret = ttm_bo_kmap(&bo->bo, 0, bo->bo.num_pages, &bo->kmap); 523 if (ret) 524 DRM_ERROR("failed to kmap fbcon\n"); 525 } 526 ast_bo_unreserve(bo); 527 528 ast_set_start_address_crt1(crtc, (u32)gpu_addr); 529 530 return 0; 531 } 532 533 static int ast_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y, 534 struct drm_framebuffer *old_fb) 535 { 536 return ast_crtc_do_set_base(crtc, old_fb, x, y, 0); 537 } 538 539 static int ast_crtc_mode_set(struct drm_crtc *crtc, 540 struct drm_display_mode *mode, 541 struct drm_display_mode *adjusted_mode, 542 int x, int y, 543 struct drm_framebuffer *old_fb) 544 { 545 struct drm_device *dev = crtc->dev; 546 struct ast_private *ast = crtc->dev->dev_private; 547 struct ast_vbios_mode_info vbios_mode; 548 bool ret; 549 if (ast->chip == AST1180) { 550 DRM_ERROR("AST 1180 modesetting not supported\n"); 551 return -EINVAL; 552 } 553 554 ret = ast_get_vbios_mode_info(crtc, mode, adjusted_mode, &vbios_mode); 555 if (ret == false) 556 return -EINVAL; 557 ast_open_key(ast); 558 559 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xa1, 0xff, 0x04); 560 561 ast_set_std_reg(crtc, adjusted_mode, &vbios_mode); 562 ast_set_crtc_reg(crtc, adjusted_mode, &vbios_mode); 563 ast_set_offset_reg(crtc); 564 ast_set_dclk_reg(dev, adjusted_mode, &vbios_mode); 565 ast_set_ext_reg(crtc, adjusted_mode, &vbios_mode); 566 ast_set_sync_reg(dev, adjusted_mode, &vbios_mode); 567 ast_set_dac_reg(crtc, adjusted_mode, &vbios_mode); 568 569 ast_crtc_mode_set_base(crtc, x, y, old_fb); 570 571 return 0; 572 } 573 574 static void ast_crtc_disable(struct drm_crtc *crtc) 575 { 576 577 } 578 579 static void ast_crtc_prepare(struct drm_crtc *crtc) 580 { 581 582 } 583 584 static void ast_crtc_commit(struct drm_crtc *crtc) 585 { 586 struct ast_private *ast = crtc->dev->dev_private; 587 ast_set_index_reg_mask(ast, AST_IO_SEQ_PORT, 0x1, 0xdf, 0); 588 } 589 590 591 static const struct drm_crtc_helper_funcs ast_crtc_helper_funcs = { 592 .dpms = ast_crtc_dpms, 593 .mode_fixup = ast_crtc_mode_fixup, 594 .mode_set = ast_crtc_mode_set, 595 .mode_set_base = ast_crtc_mode_set_base, 596 .disable = ast_crtc_disable, 597 .load_lut = ast_crtc_load_lut, 598 .prepare = ast_crtc_prepare, 599 .commit = ast_crtc_commit, 600 601 }; 602 603 static void ast_crtc_reset(struct drm_crtc *crtc) 604 { 605 606 } 607 608 static void ast_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green, 609 u16 *blue, uint32_t start, uint32_t size) 610 { 611 struct ast_crtc *ast_crtc = to_ast_crtc(crtc); 612 int end = (start + size > 256) ? 256 : start + size, i; 613 614 /* userspace palettes are always correct as is */ 615 for (i = start; i < end; i++) { 616 ast_crtc->lut_r[i] = red[i] >> 8; 617 ast_crtc->lut_g[i] = green[i] >> 8; 618 ast_crtc->lut_b[i] = blue[i] >> 8; 619 } 620 ast_crtc_load_lut(crtc); 621 } 622 623 624 static void ast_crtc_destroy(struct drm_crtc *crtc) 625 { 626 drm_crtc_cleanup(crtc); 627 kfree(crtc); 628 } 629 630 static const struct drm_crtc_funcs ast_crtc_funcs = { 631 .cursor_set = ast_cursor_set, 632 .cursor_move = ast_cursor_move, 633 .reset = ast_crtc_reset, 634 .set_config = drm_crtc_helper_set_config, 635 .gamma_set = ast_crtc_gamma_set, 636 .destroy = ast_crtc_destroy, 637 }; 638 639 static int ast_crtc_init(struct drm_device *dev) 640 { 641 struct ast_crtc *crtc; 642 int i; 643 644 crtc = kzalloc(sizeof(struct ast_crtc), GFP_KERNEL); 645 if (!crtc) 646 return -ENOMEM; 647 648 drm_crtc_init(dev, &crtc->base, &ast_crtc_funcs); 649 drm_mode_crtc_set_gamma_size(&crtc->base, 256); 650 drm_crtc_helper_add(&crtc->base, &ast_crtc_helper_funcs); 651 652 for (i = 0; i < 256; i++) { 653 crtc->lut_r[i] = i; 654 crtc->lut_g[i] = i; 655 crtc->lut_b[i] = i; 656 } 657 return 0; 658 } 659 660 static void ast_encoder_destroy(struct drm_encoder *encoder) 661 { 662 drm_encoder_cleanup(encoder); 663 kfree(encoder); 664 } 665 666 667 static struct drm_encoder *ast_best_single_encoder(struct drm_connector *connector) 668 { 669 int enc_id = connector->encoder_ids[0]; 670 /* pick the encoder ids */ 671 if (enc_id) 672 return drm_encoder_find(connector->dev, enc_id); 673 return NULL; 674 } 675 676 677 static const struct drm_encoder_funcs ast_enc_funcs = { 678 .destroy = ast_encoder_destroy, 679 }; 680 681 static void ast_encoder_dpms(struct drm_encoder *encoder, int mode) 682 { 683 684 } 685 686 static bool ast_mode_fixup(struct drm_encoder *encoder, 687 const struct drm_display_mode *mode, 688 struct drm_display_mode *adjusted_mode) 689 { 690 return true; 691 } 692 693 static void ast_encoder_mode_set(struct drm_encoder *encoder, 694 struct drm_display_mode *mode, 695 struct drm_display_mode *adjusted_mode) 696 { 697 } 698 699 static void ast_encoder_prepare(struct drm_encoder *encoder) 700 { 701 702 } 703 704 static void ast_encoder_commit(struct drm_encoder *encoder) 705 { 706 707 } 708 709 710 static const struct drm_encoder_helper_funcs ast_enc_helper_funcs = { 711 .dpms = ast_encoder_dpms, 712 .mode_fixup = ast_mode_fixup, 713 .prepare = ast_encoder_prepare, 714 .commit = ast_encoder_commit, 715 .mode_set = ast_encoder_mode_set, 716 }; 717 718 static int ast_encoder_init(struct drm_device *dev) 719 { 720 struct ast_encoder *ast_encoder; 721 722 ast_encoder = kzalloc(sizeof(struct ast_encoder), GFP_KERNEL); 723 if (!ast_encoder) 724 return -ENOMEM; 725 726 drm_encoder_init(dev, &ast_encoder->base, &ast_enc_funcs, 727 DRM_MODE_ENCODER_DAC); 728 drm_encoder_helper_add(&ast_encoder->base, &ast_enc_helper_funcs); 729 730 ast_encoder->base.possible_crtcs = 1; 731 return 0; 732 } 733 734 static int ast_get_modes(struct drm_connector *connector) 735 { 736 struct ast_connector *ast_connector = to_ast_connector(connector); 737 struct ast_private *ast = connector->dev->dev_private; 738 struct edid *edid; 739 int ret; 740 bool flags = false; 741 if (ast->tx_chip_type == AST_TX_DP501) { 742 ast->dp501_maxclk = 0xff; 743 edid = kmalloc(128, GFP_KERNEL); 744 if (!edid) 745 return -ENOMEM; 746 747 flags = ast_dp501_read_edid(connector->dev, (u8 *)edid); 748 if (flags) 749 ast->dp501_maxclk = ast_get_dp501_max_clk(connector->dev); 750 else 751 kfree(edid); 752 } 753 if (!flags) 754 edid = drm_get_edid(connector, &ast_connector->i2c->adapter); 755 if (edid) { 756 drm_mode_connector_update_edid_property(&ast_connector->base, edid); 757 ret = drm_add_edid_modes(connector, edid); 758 kfree(edid); 759 return ret; 760 } else 761 drm_mode_connector_update_edid_property(&ast_connector->base, NULL); 762 return 0; 763 } 764 765 static int ast_mode_valid(struct drm_connector *connector, 766 struct drm_display_mode *mode) 767 { 768 struct ast_private *ast = connector->dev->dev_private; 769 int flags = MODE_NOMODE; 770 uint32_t jtemp; 771 772 if (ast->support_wide_screen) { 773 if ((mode->hdisplay == 1680) && (mode->vdisplay == 1050)) 774 return MODE_OK; 775 if ((mode->hdisplay == 1280) && (mode->vdisplay == 800)) 776 return MODE_OK; 777 if ((mode->hdisplay == 1440) && (mode->vdisplay == 900)) 778 return MODE_OK; 779 if ((mode->hdisplay == 1360) && (mode->vdisplay == 768)) 780 return MODE_OK; 781 if ((mode->hdisplay == 1600) && (mode->vdisplay == 900)) 782 return MODE_OK; 783 784 if ((ast->chip == AST2100) || (ast->chip == AST2200) || (ast->chip == AST2300) || (ast->chip == AST2400) || (ast->chip == AST1180)) { 785 if ((mode->hdisplay == 1920) && (mode->vdisplay == 1080)) 786 return MODE_OK; 787 788 if ((mode->hdisplay == 1920) && (mode->vdisplay == 1200)) { 789 jtemp = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xd1, 0xff); 790 if (jtemp & 0x01) 791 return MODE_NOMODE; 792 else 793 return MODE_OK; 794 } 795 } 796 } 797 switch (mode->hdisplay) { 798 case 640: 799 if (mode->vdisplay == 480) flags = MODE_OK; 800 break; 801 case 800: 802 if (mode->vdisplay == 600) flags = MODE_OK; 803 break; 804 case 1024: 805 if (mode->vdisplay == 768) flags = MODE_OK; 806 break; 807 case 1280: 808 if (mode->vdisplay == 1024) flags = MODE_OK; 809 break; 810 case 1600: 811 if (mode->vdisplay == 1200) flags = MODE_OK; 812 break; 813 default: 814 return flags; 815 } 816 817 return flags; 818 } 819 820 static void ast_connector_destroy(struct drm_connector *connector) 821 { 822 struct ast_connector *ast_connector = to_ast_connector(connector); 823 ast_i2c_destroy(ast_connector->i2c); 824 drm_connector_unregister(connector); 825 drm_connector_cleanup(connector); 826 kfree(connector); 827 } 828 829 static enum drm_connector_status 830 ast_connector_detect(struct drm_connector *connector, bool force) 831 { 832 return connector_status_connected; 833 } 834 835 static const struct drm_connector_helper_funcs ast_connector_helper_funcs = { 836 .mode_valid = ast_mode_valid, 837 .get_modes = ast_get_modes, 838 .best_encoder = ast_best_single_encoder, 839 }; 840 841 static const struct drm_connector_funcs ast_connector_funcs = { 842 .dpms = drm_helper_connector_dpms, 843 .detect = ast_connector_detect, 844 .fill_modes = drm_helper_probe_single_connector_modes, 845 .destroy = ast_connector_destroy, 846 }; 847 848 static int ast_connector_init(struct drm_device *dev) 849 { 850 struct ast_connector *ast_connector; 851 struct drm_connector *connector; 852 struct drm_encoder *encoder; 853 854 ast_connector = kzalloc(sizeof(struct ast_connector), GFP_KERNEL); 855 if (!ast_connector) 856 return -ENOMEM; 857 858 connector = &ast_connector->base; 859 drm_connector_init(dev, connector, &ast_connector_funcs, DRM_MODE_CONNECTOR_VGA); 860 861 drm_connector_helper_add(connector, &ast_connector_helper_funcs); 862 863 connector->interlace_allowed = 0; 864 connector->doublescan_allowed = 0; 865 866 drm_connector_register(connector); 867 868 connector->polled = DRM_CONNECTOR_POLL_CONNECT; 869 870 encoder = list_first_entry(&dev->mode_config.encoder_list, struct drm_encoder, head); 871 drm_mode_connector_attach_encoder(connector, encoder); 872 873 ast_connector->i2c = ast_i2c_create(dev); 874 if (!ast_connector->i2c) 875 DRM_ERROR("failed to add ddc bus for connector\n"); 876 877 return 0; 878 } 879 880 /* allocate cursor cache and pin at start of VRAM */ 881 static int ast_cursor_init(struct drm_device *dev) 882 { 883 struct ast_private *ast = dev->dev_private; 884 int size; 885 int ret; 886 struct drm_gem_object *obj; 887 struct ast_bo *bo; 888 uint64_t gpu_addr; 889 890 size = (AST_HWC_SIZE + AST_HWC_SIGNATURE_SIZE) * AST_DEFAULT_HWC_NUM; 891 892 ret = ast_gem_create(dev, size, true, &obj); 893 if (ret) 894 return ret; 895 bo = gem_to_ast_bo(obj); 896 ret = ast_bo_reserve(bo, false); 897 if (unlikely(ret != 0)) 898 goto fail; 899 900 ret = ast_bo_pin(bo, TTM_PL_FLAG_VRAM, &gpu_addr); 901 ast_bo_unreserve(bo); 902 if (ret) 903 goto fail; 904 905 /* kmap the object */ 906 ret = ttm_bo_kmap(&bo->bo, 0, bo->bo.num_pages, &ast->cache_kmap); 907 if (ret) 908 goto fail; 909 910 ast->cursor_cache = obj; 911 ast->cursor_cache_gpu_addr = gpu_addr; 912 DRM_DEBUG_KMS("pinned cursor cache at %llx\n", ast->cursor_cache_gpu_addr); 913 return 0; 914 fail: 915 return ret; 916 } 917 918 static void ast_cursor_fini(struct drm_device *dev) 919 { 920 struct ast_private *ast = dev->dev_private; 921 ttm_bo_kunmap(&ast->cache_kmap); 922 drm_gem_object_unreference_unlocked(ast->cursor_cache); 923 } 924 925 int ast_mode_init(struct drm_device *dev) 926 { 927 ast_cursor_init(dev); 928 ast_crtc_init(dev); 929 ast_encoder_init(dev); 930 ast_connector_init(dev); 931 return 0; 932 } 933 934 void ast_mode_fini(struct drm_device *dev) 935 { 936 ast_cursor_fini(dev); 937 } 938 939 static int get_clock(void *i2c_priv) 940 { 941 struct ast_i2c_chan *i2c = i2c_priv; 942 struct ast_private *ast = i2c->dev->dev_private; 943 uint32_t val; 944 945 val = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xb7, 0x10) >> 4; 946 return val & 1 ? 1 : 0; 947 } 948 949 static int get_data(void *i2c_priv) 950 { 951 struct ast_i2c_chan *i2c = i2c_priv; 952 struct ast_private *ast = i2c->dev->dev_private; 953 uint32_t val; 954 955 val = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xb7, 0x20) >> 5; 956 return val & 1 ? 1 : 0; 957 } 958 959 static void set_clock(void *i2c_priv, int clock) 960 { 961 struct ast_i2c_chan *i2c = i2c_priv; 962 struct ast_private *ast = i2c->dev->dev_private; 963 int i; 964 u8 ujcrb7, jtemp; 965 966 for (i = 0; i < 0x10000; i++) { 967 ujcrb7 = ((clock & 0x01) ? 0 : 1); 968 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xb7, 0xfe, ujcrb7); 969 jtemp = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xb7, 0x01); 970 if (ujcrb7 == jtemp) 971 break; 972 } 973 } 974 975 static void set_data(void *i2c_priv, int data) 976 { 977 struct ast_i2c_chan *i2c = i2c_priv; 978 struct ast_private *ast = i2c->dev->dev_private; 979 int i; 980 u8 ujcrb7, jtemp; 981 982 for (i = 0; i < 0x10000; i++) { 983 ujcrb7 = ((data & 0x01) ? 0 : 1) << 2; 984 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xb7, 0xfb, ujcrb7); 985 jtemp = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xb7, 0x04); 986 if (ujcrb7 == jtemp) 987 break; 988 } 989 } 990 991 static struct ast_i2c_chan *ast_i2c_create(struct drm_device *dev) 992 { 993 struct ast_i2c_chan *i2c; 994 int ret; 995 996 i2c = kzalloc(sizeof(struct ast_i2c_chan), GFP_KERNEL); 997 if (!i2c) 998 return NULL; 999 1000 i2c->adapter.owner = THIS_MODULE; 1001 i2c->adapter.class = I2C_CLASS_DDC; 1002 i2c->adapter.dev.parent = &dev->pdev->dev; 1003 i2c->dev = dev; 1004 i2c_set_adapdata(&i2c->adapter, i2c); 1005 snprintf(i2c->adapter.name, sizeof(i2c->adapter.name), 1006 "AST i2c bit bus"); 1007 i2c->adapter.algo_data = &i2c->bit; 1008 1009 i2c->bit.udelay = 20; 1010 i2c->bit.timeout = 2; 1011 i2c->bit.data = i2c; 1012 i2c->bit.setsda = set_data; 1013 i2c->bit.setscl = set_clock; 1014 i2c->bit.getsda = get_data; 1015 i2c->bit.getscl = get_clock; 1016 ret = i2c_bit_add_bus(&i2c->adapter); 1017 if (ret) { 1018 DRM_ERROR("Failed to register bit i2c\n"); 1019 goto out_free; 1020 } 1021 1022 return i2c; 1023 out_free: 1024 kfree(i2c); 1025 return NULL; 1026 } 1027 1028 static void ast_i2c_destroy(struct ast_i2c_chan *i2c) 1029 { 1030 if (!i2c) 1031 return; 1032 i2c_del_adapter(&i2c->adapter); 1033 kfree(i2c); 1034 } 1035 1036 static void ast_show_cursor(struct drm_crtc *crtc) 1037 { 1038 struct ast_private *ast = crtc->dev->dev_private; 1039 u8 jreg; 1040 1041 jreg = 0x2; 1042 /* enable ARGB cursor */ 1043 jreg |= 1; 1044 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xcb, 0xfc, jreg); 1045 } 1046 1047 static void ast_hide_cursor(struct drm_crtc *crtc) 1048 { 1049 struct ast_private *ast = crtc->dev->dev_private; 1050 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xcb, 0xfc, 0x00); 1051 } 1052 1053 static u32 copy_cursor_image(u8 *src, u8 *dst, int width, int height) 1054 { 1055 union { 1056 u32 ul; 1057 u8 b[4]; 1058 } srcdata32[2], data32; 1059 union { 1060 u16 us; 1061 u8 b[2]; 1062 } data16; 1063 u32 csum = 0; 1064 s32 alpha_dst_delta, last_alpha_dst_delta; 1065 u8 *srcxor, *dstxor; 1066 int i, j; 1067 u32 per_pixel_copy, two_pixel_copy; 1068 1069 alpha_dst_delta = AST_MAX_HWC_WIDTH << 1; 1070 last_alpha_dst_delta = alpha_dst_delta - (width << 1); 1071 1072 srcxor = src; 1073 dstxor = (u8 *)dst + last_alpha_dst_delta + (AST_MAX_HWC_HEIGHT - height) * alpha_dst_delta; 1074 per_pixel_copy = width & 1; 1075 two_pixel_copy = width >> 1; 1076 1077 for (j = 0; j < height; j++) { 1078 for (i = 0; i < two_pixel_copy; i++) { 1079 srcdata32[0].ul = *((u32 *)srcxor) & 0xf0f0f0f0; 1080 srcdata32[1].ul = *((u32 *)(srcxor + 4)) & 0xf0f0f0f0; 1081 data32.b[0] = srcdata32[0].b[1] | (srcdata32[0].b[0] >> 4); 1082 data32.b[1] = srcdata32[0].b[3] | (srcdata32[0].b[2] >> 4); 1083 data32.b[2] = srcdata32[0].b[1] | (srcdata32[1].b[0] >> 4); 1084 data32.b[3] = srcdata32[0].b[3] | (srcdata32[1].b[2] >> 4); 1085 1086 writel(data32.ul, dstxor); 1087 csum += data32.ul; 1088 1089 dstxor += 4; 1090 srcxor += 8; 1091 1092 } 1093 1094 for (i = 0; i < per_pixel_copy; i++) { 1095 srcdata32[0].ul = *((u32 *)srcxor) & 0xf0f0f0f0; 1096 data16.b[0] = srcdata32[0].b[1] | (srcdata32[0].b[0] >> 4); 1097 data16.b[1] = srcdata32[0].b[3] | (srcdata32[0].b[2] >> 4); 1098 writew(data16.us, dstxor); 1099 csum += (u32)data16.us; 1100 1101 dstxor += 2; 1102 srcxor += 4; 1103 } 1104 dstxor += last_alpha_dst_delta; 1105 } 1106 return csum; 1107 } 1108 1109 static int ast_cursor_set(struct drm_crtc *crtc, 1110 struct drm_file *file_priv, 1111 uint32_t handle, 1112 uint32_t width, 1113 uint32_t height) 1114 { 1115 struct ast_private *ast = crtc->dev->dev_private; 1116 struct ast_crtc *ast_crtc = to_ast_crtc(crtc); 1117 struct drm_gem_object *obj; 1118 struct ast_bo *bo; 1119 uint64_t gpu_addr; 1120 u32 csum; 1121 int ret; 1122 struct ttm_bo_kmap_obj uobj_map; 1123 u8 *src, *dst; 1124 bool src_isiomem, dst_isiomem; 1125 if (!handle) { 1126 ast_hide_cursor(crtc); 1127 return 0; 1128 } 1129 1130 if (width > AST_MAX_HWC_WIDTH || height > AST_MAX_HWC_HEIGHT) 1131 return -EINVAL; 1132 1133 obj = drm_gem_object_lookup(crtc->dev, file_priv, handle); 1134 if (!obj) { 1135 DRM_ERROR("Cannot find cursor object %x for crtc\n", handle); 1136 return -ENOENT; 1137 } 1138 bo = gem_to_ast_bo(obj); 1139 1140 ret = ast_bo_reserve(bo, false); 1141 if (ret) 1142 goto fail; 1143 1144 ret = ttm_bo_kmap(&bo->bo, 0, bo->bo.num_pages, &uobj_map); 1145 1146 src = ttm_kmap_obj_virtual(&uobj_map, &src_isiomem); 1147 dst = ttm_kmap_obj_virtual(&ast->cache_kmap, &dst_isiomem); 1148 1149 if (src_isiomem == true) 1150 DRM_ERROR("src cursor bo should be in main memory\n"); 1151 if (dst_isiomem == false) 1152 DRM_ERROR("dst bo should be in VRAM\n"); 1153 1154 dst += (AST_HWC_SIZE + AST_HWC_SIGNATURE_SIZE)*ast->next_cursor; 1155 1156 /* do data transfer to cursor cache */ 1157 csum = copy_cursor_image(src, dst, width, height); 1158 1159 /* write checksum + signature */ 1160 ttm_bo_kunmap(&uobj_map); 1161 ast_bo_unreserve(bo); 1162 { 1163 u8 *dst = (u8 *)ast->cache_kmap.virtual + (AST_HWC_SIZE + AST_HWC_SIGNATURE_SIZE)*ast->next_cursor + AST_HWC_SIZE; 1164 writel(csum, dst); 1165 writel(width, dst + AST_HWC_SIGNATURE_SizeX); 1166 writel(height, dst + AST_HWC_SIGNATURE_SizeY); 1167 writel(0, dst + AST_HWC_SIGNATURE_HOTSPOTX); 1168 writel(0, dst + AST_HWC_SIGNATURE_HOTSPOTY); 1169 1170 /* set pattern offset */ 1171 gpu_addr = ast->cursor_cache_gpu_addr; 1172 gpu_addr += (AST_HWC_SIZE + AST_HWC_SIGNATURE_SIZE)*ast->next_cursor; 1173 gpu_addr >>= 3; 1174 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xc8, gpu_addr & 0xff); 1175 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xc9, (gpu_addr >> 8) & 0xff); 1176 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xca, (gpu_addr >> 16) & 0xff); 1177 } 1178 ast_crtc->cursor_width = width; 1179 ast_crtc->cursor_height = height; 1180 ast_crtc->offset_x = AST_MAX_HWC_WIDTH - width; 1181 ast_crtc->offset_y = AST_MAX_HWC_WIDTH - height; 1182 1183 ast->next_cursor = (ast->next_cursor + 1) % AST_DEFAULT_HWC_NUM; 1184 1185 ast_show_cursor(crtc); 1186 1187 drm_gem_object_unreference_unlocked(obj); 1188 return 0; 1189 fail: 1190 drm_gem_object_unreference_unlocked(obj); 1191 return ret; 1192 } 1193 1194 static int ast_cursor_move(struct drm_crtc *crtc, 1195 int x, int y) 1196 { 1197 struct ast_crtc *ast_crtc = to_ast_crtc(crtc); 1198 struct ast_private *ast = crtc->dev->dev_private; 1199 int x_offset, y_offset; 1200 u8 *sig; 1201 1202 sig = (u8 *)ast->cache_kmap.virtual + (AST_HWC_SIZE + AST_HWC_SIGNATURE_SIZE)*ast->next_cursor + AST_HWC_SIZE; 1203 writel(x, sig + AST_HWC_SIGNATURE_X); 1204 writel(y, sig + AST_HWC_SIGNATURE_Y); 1205 1206 x_offset = ast_crtc->offset_x; 1207 y_offset = ast_crtc->offset_y; 1208 if (x < 0) { 1209 x_offset = (-x) + ast_crtc->offset_x; 1210 x = 0; 1211 } 1212 1213 if (y < 0) { 1214 y_offset = (-y) + ast_crtc->offset_y; 1215 y = 0; 1216 } 1217 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xc2, x_offset); 1218 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xc3, y_offset); 1219 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xc4, (x & 0xff)); 1220 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xc5, ((x >> 8) & 0x0f)); 1221 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xc6, (y & 0xff)); 1222 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xc7, ((y >> 8) & 0x07)); 1223 1224 /* dummy write to fire HWC */ 1225 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xCB, 0xFF, 0x00); 1226 1227 return 0; 1228 } 1229