1 /* 2 * Permedia2 framebuffer driver. 3 * 4 * 2.5/2.6 driver: 5 * Copyright (c) 2003 Jim Hague (jim.hague@acm.org) 6 * 7 * based on 2.4 driver: 8 * Copyright (c) 1998-2000 Ilario Nardinocchi (nardinoc@CS.UniBO.IT) 9 * Copyright (c) 1999 Jakub Jelinek (jakub@redhat.com) 10 * 11 * and additional input from James Simmon's port of Hannu Mallat's tdfx 12 * driver. 13 * 14 * I have a Creative Graphics Blaster Exxtreme card - pm2fb on x86. I 15 * have no access to other pm2fb implementations. Sparc (and thus 16 * hopefully other big-endian) devices now work, thanks to a lot of 17 * testing work by Ron Murray. I have no access to CVision hardware, 18 * and therefore for now I am omitting the CVision code. 19 * 20 * Multiple boards support has been on the TODO list for ages. 21 * Don't expect this to change. 22 * 23 * This file is subject to the terms and conditions of the GNU General Public 24 * License. See the file COPYING in the main directory of this archive for 25 * more details. 26 * 27 * 28 */ 29 30 #include <linux/aperture.h> 31 #include <linux/module.h> 32 #include <linux/moduleparam.h> 33 #include <linux/kernel.h> 34 #include <linux/errno.h> 35 #include <linux/string.h> 36 #include <linux/mm.h> 37 #include <linux/slab.h> 38 #include <linux/delay.h> 39 #include <linux/fb.h> 40 #include <linux/init.h> 41 #include <linux/pci.h> 42 #include <video/permedia2.h> 43 #include <video/cvisionppc.h> 44 45 #if !defined(__LITTLE_ENDIAN) && !defined(__BIG_ENDIAN) 46 #error "The endianness of the target host has not been defined." 47 #endif 48 49 #if !defined(CONFIG_PCI) 50 #error "Only generic PCI cards supported." 51 #endif 52 53 #undef PM2FB_MASTER_DEBUG 54 #ifdef PM2FB_MASTER_DEBUG 55 #define DPRINTK(a, b...) \ 56 printk(KERN_DEBUG "pm2fb: %s: " a, __func__ , ## b) 57 #else 58 #define DPRINTK(a, b...) no_printk(a, ##b) 59 #endif 60 61 #define PM2_PIXMAP_SIZE (1600 * 4) 62 63 /* 64 * Driver data 65 */ 66 static int hwcursor = 1; 67 static char *mode_option; 68 69 /* 70 * The XFree GLINT driver will (I think to implement hardware cursor 71 * support on TVP4010 and similar where there is no RAMDAC - see 72 * comment in set_video) always request +ve sync regardless of what 73 * the mode requires. This screws me because I have a Sun 74 * fixed-frequency monitor which absolutely has to have -ve sync. So 75 * these flags allow the user to specify that requests for +ve sync 76 * should be silently turned in -ve sync. 77 */ 78 static bool lowhsync; 79 static bool lowvsync; 80 static bool noaccel; 81 static bool nomtrr; 82 83 /* 84 * The hardware state of the graphics card that isn't part of the 85 * screeninfo. 86 */ 87 struct pm2fb_par 88 { 89 pm2type_t type; /* Board type */ 90 unsigned char __iomem *v_regs;/* virtual address of p_regs */ 91 u32 memclock; /* memclock */ 92 u32 video; /* video flags before blanking */ 93 u32 mem_config; /* MemConfig reg at probe */ 94 u32 mem_control; /* MemControl reg at probe */ 95 u32 boot_address; /* BootAddress reg at probe */ 96 u32 palette[16]; 97 int wc_cookie; 98 }; 99 100 /* 101 * Here we define the default structs fb_fix_screeninfo and fb_var_screeninfo 102 * if we don't use modedb. 103 */ 104 static struct fb_fix_screeninfo pm2fb_fix = { 105 .id = "", 106 .type = FB_TYPE_PACKED_PIXELS, 107 .visual = FB_VISUAL_PSEUDOCOLOR, 108 .xpanstep = 1, 109 .ypanstep = 1, 110 .ywrapstep = 0, 111 .accel = FB_ACCEL_3DLABS_PERMEDIA2, 112 }; 113 114 /* 115 * Default video mode. In case the modedb doesn't work. 116 */ 117 static const struct fb_var_screeninfo pm2fb_var = { 118 /* "640x480, 8 bpp @ 60 Hz */ 119 .xres = 640, 120 .yres = 480, 121 .xres_virtual = 640, 122 .yres_virtual = 480, 123 .bits_per_pixel = 8, 124 .red = {0, 8, 0}, 125 .blue = {0, 8, 0}, 126 .green = {0, 8, 0}, 127 .activate = FB_ACTIVATE_NOW, 128 .height = -1, 129 .width = -1, 130 .accel_flags = 0, 131 .pixclock = 39721, 132 .left_margin = 40, 133 .right_margin = 24, 134 .upper_margin = 32, 135 .lower_margin = 11, 136 .hsync_len = 96, 137 .vsync_len = 2, 138 .vmode = FB_VMODE_NONINTERLACED 139 }; 140 141 /* 142 * Utility functions 143 */ 144 145 static inline u32 pm2_RD(struct pm2fb_par *p, s32 off) 146 { 147 return fb_readl(p->v_regs + off); 148 } 149 150 static inline void pm2_WR(struct pm2fb_par *p, s32 off, u32 v) 151 { 152 fb_writel(v, p->v_regs + off); 153 } 154 155 static inline u32 pm2_RDAC_RD(struct pm2fb_par *p, s32 idx) 156 { 157 pm2_WR(p, PM2R_RD_PALETTE_WRITE_ADDRESS, idx); 158 mb(); 159 return pm2_RD(p, PM2R_RD_INDEXED_DATA); 160 } 161 162 static inline u32 pm2v_RDAC_RD(struct pm2fb_par *p, s32 idx) 163 { 164 pm2_WR(p, PM2VR_RD_INDEX_LOW, idx & 0xff); 165 mb(); 166 return pm2_RD(p, PM2VR_RD_INDEXED_DATA); 167 } 168 169 static inline void pm2_RDAC_WR(struct pm2fb_par *p, s32 idx, u32 v) 170 { 171 pm2_WR(p, PM2R_RD_PALETTE_WRITE_ADDRESS, idx); 172 wmb(); 173 pm2_WR(p, PM2R_RD_INDEXED_DATA, v); 174 wmb(); 175 } 176 177 static inline void pm2v_RDAC_WR(struct pm2fb_par *p, s32 idx, u32 v) 178 { 179 pm2_WR(p, PM2VR_RD_INDEX_LOW, idx & 0xff); 180 wmb(); 181 pm2_WR(p, PM2VR_RD_INDEXED_DATA, v); 182 wmb(); 183 } 184 185 #ifdef CONFIG_FB_PM2_FIFO_DISCONNECT 186 #define WAIT_FIFO(p, a) 187 #else 188 static inline void WAIT_FIFO(struct pm2fb_par *p, u32 a) 189 { 190 while (pm2_RD(p, PM2R_IN_FIFO_SPACE) < a) 191 cpu_relax(); 192 } 193 #endif 194 195 /* 196 * partial products for the supported horizontal resolutions. 197 */ 198 #define PACKPP(p0, p1, p2) (((p2) << 6) | ((p1) << 3) | (p0)) 199 static const struct { 200 u16 width; 201 u16 pp; 202 } pp_table[] = { 203 { 32, PACKPP(1, 0, 0) }, { 64, PACKPP(1, 1, 0) }, 204 { 96, PACKPP(1, 1, 1) }, { 128, PACKPP(2, 1, 1) }, 205 { 160, PACKPP(2, 2, 1) }, { 192, PACKPP(2, 2, 2) }, 206 { 224, PACKPP(3, 2, 1) }, { 256, PACKPP(3, 2, 2) }, 207 { 288, PACKPP(3, 3, 1) }, { 320, PACKPP(3, 3, 2) }, 208 { 384, PACKPP(3, 3, 3) }, { 416, PACKPP(4, 3, 1) }, 209 { 448, PACKPP(4, 3, 2) }, { 512, PACKPP(4, 3, 3) }, 210 { 544, PACKPP(4, 4, 1) }, { 576, PACKPP(4, 4, 2) }, 211 { 640, PACKPP(4, 4, 3) }, { 768, PACKPP(4, 4, 4) }, 212 { 800, PACKPP(5, 4, 1) }, { 832, PACKPP(5, 4, 2) }, 213 { 896, PACKPP(5, 4, 3) }, { 1024, PACKPP(5, 4, 4) }, 214 { 1056, PACKPP(5, 5, 1) }, { 1088, PACKPP(5, 5, 2) }, 215 { 1152, PACKPP(5, 5, 3) }, { 1280, PACKPP(5, 5, 4) }, 216 { 1536, PACKPP(5, 5, 5) }, { 1568, PACKPP(6, 5, 1) }, 217 { 1600, PACKPP(6, 5, 2) }, { 1664, PACKPP(6, 5, 3) }, 218 { 1792, PACKPP(6, 5, 4) }, { 2048, PACKPP(6, 5, 5) }, 219 { 0, 0 } }; 220 221 static u32 partprod(u32 xres) 222 { 223 int i; 224 225 for (i = 0; pp_table[i].width && pp_table[i].width != xres; i++) 226 ; 227 if (pp_table[i].width == 0) 228 DPRINTK("invalid width %u\n", xres); 229 return pp_table[i].pp; 230 } 231 232 static u32 to3264(u32 timing, int bpp, int is64) 233 { 234 switch (bpp) { 235 case 24: 236 timing *= 3; 237 fallthrough; 238 case 8: 239 timing >>= 1; 240 fallthrough; 241 case 16: 242 timing >>= 1; 243 fallthrough; 244 case 32: 245 break; 246 } 247 if (is64) 248 timing >>= 1; 249 return timing; 250 } 251 252 static void pm2_mnp(u32 clk, unsigned char *mm, unsigned char *nn, 253 unsigned char *pp) 254 { 255 unsigned char m; 256 unsigned char n; 257 unsigned char p; 258 u32 f; 259 s32 curr; 260 s32 delta = 100000; 261 262 *mm = *nn = *pp = 0; 263 for (n = 2; n < 15; n++) { 264 for (m = 2; m; m++) { 265 f = PM2_REFERENCE_CLOCK * m / n; 266 if (f >= 150000 && f <= 300000) { 267 for (p = 0; p < 5; p++, f >>= 1) { 268 curr = (clk > f) ? clk - f : f - clk; 269 if (curr < delta) { 270 delta = curr; 271 *mm = m; 272 *nn = n; 273 *pp = p; 274 } 275 } 276 } 277 } 278 } 279 } 280 281 static void pm2v_mnp(u32 clk, unsigned char *mm, unsigned char *nn, 282 unsigned char *pp) 283 { 284 unsigned char m; 285 unsigned char n; 286 unsigned char p; 287 u32 f; 288 s32 delta = 1000; 289 290 *mm = *nn = *pp = 0; 291 for (m = 1; m < 128; m++) { 292 for (n = 2 * m + 1; n; n++) { 293 for (p = 0; p < 2; p++) { 294 f = (PM2_REFERENCE_CLOCK >> (p + 1)) * n / m; 295 if (clk > f - delta && clk < f + delta) { 296 delta = (clk > f) ? clk - f : f - clk; 297 *mm = m; 298 *nn = n; 299 *pp = p; 300 } 301 } 302 } 303 } 304 } 305 306 static void clear_palette(struct pm2fb_par *p) 307 { 308 int i = 256; 309 310 WAIT_FIFO(p, 1); 311 pm2_WR(p, PM2R_RD_PALETTE_WRITE_ADDRESS, 0); 312 wmb(); 313 while (i--) { 314 WAIT_FIFO(p, 3); 315 pm2_WR(p, PM2R_RD_PALETTE_DATA, 0); 316 pm2_WR(p, PM2R_RD_PALETTE_DATA, 0); 317 pm2_WR(p, PM2R_RD_PALETTE_DATA, 0); 318 } 319 } 320 321 static void reset_card(struct pm2fb_par *p) 322 { 323 if (p->type == PM2_TYPE_PERMEDIA2V) 324 pm2_WR(p, PM2VR_RD_INDEX_HIGH, 0); 325 pm2_WR(p, PM2R_RESET_STATUS, 0); 326 mb(); 327 while (pm2_RD(p, PM2R_RESET_STATUS) & PM2F_BEING_RESET) 328 cpu_relax(); 329 mb(); 330 #ifdef CONFIG_FB_PM2_FIFO_DISCONNECT 331 DPRINTK("FIFO disconnect enabled\n"); 332 pm2_WR(p, PM2R_FIFO_DISCON, 1); 333 mb(); 334 #endif 335 336 /* Restore stashed memory config information from probe */ 337 WAIT_FIFO(p, 3); 338 pm2_WR(p, PM2R_MEM_CONTROL, p->mem_control); 339 pm2_WR(p, PM2R_BOOT_ADDRESS, p->boot_address); 340 wmb(); 341 pm2_WR(p, PM2R_MEM_CONFIG, p->mem_config); 342 } 343 344 static void reset_config(struct pm2fb_par *p) 345 { 346 WAIT_FIFO(p, 53); 347 pm2_WR(p, PM2R_CHIP_CONFIG, pm2_RD(p, PM2R_CHIP_CONFIG) & 348 ~(PM2F_VGA_ENABLE | PM2F_VGA_FIXED)); 349 pm2_WR(p, PM2R_BYPASS_WRITE_MASK, ~(0L)); 350 pm2_WR(p, PM2R_FRAMEBUFFER_WRITE_MASK, ~(0L)); 351 pm2_WR(p, PM2R_FIFO_CONTROL, 0); 352 pm2_WR(p, PM2R_APERTURE_ONE, 0); 353 pm2_WR(p, PM2R_APERTURE_TWO, 0); 354 pm2_WR(p, PM2R_RASTERIZER_MODE, 0); 355 pm2_WR(p, PM2R_DELTA_MODE, PM2F_DELTA_ORDER_RGB); 356 pm2_WR(p, PM2R_LB_READ_FORMAT, 0); 357 pm2_WR(p, PM2R_LB_WRITE_FORMAT, 0); 358 pm2_WR(p, PM2R_LB_READ_MODE, 0); 359 pm2_WR(p, PM2R_LB_SOURCE_OFFSET, 0); 360 pm2_WR(p, PM2R_FB_SOURCE_OFFSET, 0); 361 pm2_WR(p, PM2R_FB_PIXEL_OFFSET, 0); 362 pm2_WR(p, PM2R_FB_WINDOW_BASE, 0); 363 pm2_WR(p, PM2R_LB_WINDOW_BASE, 0); 364 pm2_WR(p, PM2R_FB_SOFT_WRITE_MASK, ~(0L)); 365 pm2_WR(p, PM2R_FB_HARD_WRITE_MASK, ~(0L)); 366 pm2_WR(p, PM2R_FB_READ_PIXEL, 0); 367 pm2_WR(p, PM2R_DITHER_MODE, 0); 368 pm2_WR(p, PM2R_AREA_STIPPLE_MODE, 0); 369 pm2_WR(p, PM2R_DEPTH_MODE, 0); 370 pm2_WR(p, PM2R_STENCIL_MODE, 0); 371 pm2_WR(p, PM2R_TEXTURE_ADDRESS_MODE, 0); 372 pm2_WR(p, PM2R_TEXTURE_READ_MODE, 0); 373 pm2_WR(p, PM2R_TEXEL_LUT_MODE, 0); 374 pm2_WR(p, PM2R_YUV_MODE, 0); 375 pm2_WR(p, PM2R_COLOR_DDA_MODE, 0); 376 pm2_WR(p, PM2R_TEXTURE_COLOR_MODE, 0); 377 pm2_WR(p, PM2R_FOG_MODE, 0); 378 pm2_WR(p, PM2R_ALPHA_BLEND_MODE, 0); 379 pm2_WR(p, PM2R_LOGICAL_OP_MODE, 0); 380 pm2_WR(p, PM2R_STATISTICS_MODE, 0); 381 pm2_WR(p, PM2R_SCISSOR_MODE, 0); 382 pm2_WR(p, PM2R_FILTER_MODE, PM2F_SYNCHRONIZATION); 383 pm2_WR(p, PM2R_RD_PIXEL_MASK, 0xff); 384 switch (p->type) { 385 case PM2_TYPE_PERMEDIA2: 386 pm2_RDAC_WR(p, PM2I_RD_MODE_CONTROL, 0); /* no overlay */ 387 pm2_RDAC_WR(p, PM2I_RD_CURSOR_CONTROL, 0); 388 pm2_RDAC_WR(p, PM2I_RD_MISC_CONTROL, PM2F_RD_PALETTE_WIDTH_8); 389 pm2_RDAC_WR(p, PM2I_RD_COLOR_KEY_CONTROL, 0); 390 pm2_RDAC_WR(p, PM2I_RD_OVERLAY_KEY, 0); 391 pm2_RDAC_WR(p, PM2I_RD_RED_KEY, 0); 392 pm2_RDAC_WR(p, PM2I_RD_GREEN_KEY, 0); 393 pm2_RDAC_WR(p, PM2I_RD_BLUE_KEY, 0); 394 break; 395 case PM2_TYPE_PERMEDIA2V: 396 pm2v_RDAC_WR(p, PM2VI_RD_MISC_CONTROL, 1); /* 8bit */ 397 break; 398 } 399 } 400 401 static void set_aperture(struct pm2fb_par *p, u32 depth) 402 { 403 /* 404 * The hardware is little-endian. When used in big-endian 405 * hosts, the on-chip aperture settings are used where 406 * possible to translate from host to card byte order. 407 */ 408 WAIT_FIFO(p, 2); 409 #ifdef __LITTLE_ENDIAN 410 pm2_WR(p, PM2R_APERTURE_ONE, PM2F_APERTURE_STANDARD); 411 #else 412 switch (depth) { 413 case 24: /* RGB->BGR */ 414 /* 415 * We can't use the aperture to translate host to 416 * card byte order here, so we switch to BGR mode 417 * in pm2fb_set_par(). 418 */ 419 case 8: /* B->B */ 420 pm2_WR(p, PM2R_APERTURE_ONE, PM2F_APERTURE_STANDARD); 421 break; 422 case 16: /* HL->LH */ 423 pm2_WR(p, PM2R_APERTURE_ONE, PM2F_APERTURE_HALFWORDSWAP); 424 break; 425 case 32: /* RGBA->ABGR */ 426 pm2_WR(p, PM2R_APERTURE_ONE, PM2F_APERTURE_BYTESWAP); 427 break; 428 } 429 #endif 430 431 /* We don't use aperture two, so this may be superflous */ 432 pm2_WR(p, PM2R_APERTURE_TWO, PM2F_APERTURE_STANDARD); 433 } 434 435 static void set_color(struct pm2fb_par *p, unsigned char regno, 436 unsigned char r, unsigned char g, unsigned char b) 437 { 438 WAIT_FIFO(p, 4); 439 pm2_WR(p, PM2R_RD_PALETTE_WRITE_ADDRESS, regno); 440 wmb(); 441 pm2_WR(p, PM2R_RD_PALETTE_DATA, r); 442 wmb(); 443 pm2_WR(p, PM2R_RD_PALETTE_DATA, g); 444 wmb(); 445 pm2_WR(p, PM2R_RD_PALETTE_DATA, b); 446 } 447 448 static void set_memclock(struct pm2fb_par *par, u32 clk) 449 { 450 int i; 451 unsigned char m, n, p; 452 453 switch (par->type) { 454 case PM2_TYPE_PERMEDIA2V: 455 pm2v_mnp(clk/2, &m, &n, &p); 456 WAIT_FIFO(par, 12); 457 pm2_WR(par, PM2VR_RD_INDEX_HIGH, PM2VI_RD_MCLK_CONTROL >> 8); 458 pm2v_RDAC_WR(par, PM2VI_RD_MCLK_CONTROL, 0); 459 pm2v_RDAC_WR(par, PM2VI_RD_MCLK_PRESCALE, m); 460 pm2v_RDAC_WR(par, PM2VI_RD_MCLK_FEEDBACK, n); 461 pm2v_RDAC_WR(par, PM2VI_RD_MCLK_POSTSCALE, p); 462 pm2v_RDAC_WR(par, PM2VI_RD_MCLK_CONTROL, 1); 463 rmb(); 464 for (i = 256; i; i--) 465 if (pm2v_RDAC_RD(par, PM2VI_RD_MCLK_CONTROL) & 2) 466 break; 467 pm2_WR(par, PM2VR_RD_INDEX_HIGH, 0); 468 break; 469 case PM2_TYPE_PERMEDIA2: 470 pm2_mnp(clk, &m, &n, &p); 471 WAIT_FIFO(par, 10); 472 pm2_RDAC_WR(par, PM2I_RD_MEMORY_CLOCK_3, 6); 473 pm2_RDAC_WR(par, PM2I_RD_MEMORY_CLOCK_1, m); 474 pm2_RDAC_WR(par, PM2I_RD_MEMORY_CLOCK_2, n); 475 pm2_RDAC_WR(par, PM2I_RD_MEMORY_CLOCK_3, 8|p); 476 pm2_RDAC_RD(par, PM2I_RD_MEMORY_CLOCK_STATUS); 477 rmb(); 478 for (i = 256; i; i--) 479 if (pm2_RD(par, PM2R_RD_INDEXED_DATA) & PM2F_PLL_LOCKED) 480 break; 481 break; 482 } 483 } 484 485 static void set_pixclock(struct pm2fb_par *par, u32 clk) 486 { 487 int i; 488 unsigned char m, n, p; 489 490 switch (par->type) { 491 case PM2_TYPE_PERMEDIA2: 492 pm2_mnp(clk, &m, &n, &p); 493 WAIT_FIFO(par, 10); 494 pm2_RDAC_WR(par, PM2I_RD_PIXEL_CLOCK_A3, 0); 495 pm2_RDAC_WR(par, PM2I_RD_PIXEL_CLOCK_A1, m); 496 pm2_RDAC_WR(par, PM2I_RD_PIXEL_CLOCK_A2, n); 497 pm2_RDAC_WR(par, PM2I_RD_PIXEL_CLOCK_A3, 8|p); 498 pm2_RDAC_RD(par, PM2I_RD_PIXEL_CLOCK_STATUS); 499 rmb(); 500 for (i = 256; i; i--) 501 if (pm2_RD(par, PM2R_RD_INDEXED_DATA) & PM2F_PLL_LOCKED) 502 break; 503 break; 504 case PM2_TYPE_PERMEDIA2V: 505 pm2v_mnp(clk/2, &m, &n, &p); 506 WAIT_FIFO(par, 8); 507 pm2_WR(par, PM2VR_RD_INDEX_HIGH, PM2VI_RD_CLK0_PRESCALE >> 8); 508 pm2v_RDAC_WR(par, PM2VI_RD_CLK0_PRESCALE, m); 509 pm2v_RDAC_WR(par, PM2VI_RD_CLK0_FEEDBACK, n); 510 pm2v_RDAC_WR(par, PM2VI_RD_CLK0_POSTSCALE, p); 511 pm2_WR(par, PM2VR_RD_INDEX_HIGH, 0); 512 break; 513 } 514 } 515 516 static void set_video(struct pm2fb_par *p, u32 video) 517 { 518 u32 tmp; 519 u32 vsync = video; 520 521 DPRINTK("video = 0x%x\n", video); 522 523 /* 524 * The hardware cursor needs +vsync to recognise vert retrace. 525 * We may not be using the hardware cursor, but the X Glint 526 * driver may well. So always set +hsync/+vsync and then set 527 * the RAMDAC to invert the sync if necessary. 528 */ 529 vsync &= ~(PM2F_HSYNC_MASK | PM2F_VSYNC_MASK); 530 vsync |= PM2F_HSYNC_ACT_HIGH | PM2F_VSYNC_ACT_HIGH; 531 532 WAIT_FIFO(p, 3); 533 pm2_WR(p, PM2R_VIDEO_CONTROL, vsync); 534 535 switch (p->type) { 536 case PM2_TYPE_PERMEDIA2: 537 tmp = PM2F_RD_PALETTE_WIDTH_8; 538 if ((video & PM2F_HSYNC_MASK) == PM2F_HSYNC_ACT_LOW) 539 tmp |= 4; /* invert hsync */ 540 if ((video & PM2F_VSYNC_MASK) == PM2F_VSYNC_ACT_LOW) 541 tmp |= 8; /* invert vsync */ 542 pm2_RDAC_WR(p, PM2I_RD_MISC_CONTROL, tmp); 543 break; 544 case PM2_TYPE_PERMEDIA2V: 545 tmp = 0; 546 if ((video & PM2F_HSYNC_MASK) == PM2F_HSYNC_ACT_LOW) 547 tmp |= 1; /* invert hsync */ 548 if ((video & PM2F_VSYNC_MASK) == PM2F_VSYNC_ACT_LOW) 549 tmp |= 4; /* invert vsync */ 550 pm2v_RDAC_WR(p, PM2VI_RD_SYNC_CONTROL, tmp); 551 break; 552 } 553 } 554 555 /* 556 * pm2fb_check_var - Optional function. Validates a var passed in. 557 * @var: frame buffer variable screen structure 558 * @info: frame buffer structure that represents a single frame buffer 559 * 560 * Checks to see if the hardware supports the state requested by 561 * var passed in. 562 * 563 * Returns negative errno on error, or zero on success. 564 */ 565 static int pm2fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info) 566 { 567 u32 lpitch; 568 569 if (var->bits_per_pixel != 8 && var->bits_per_pixel != 16 && 570 var->bits_per_pixel != 24 && var->bits_per_pixel != 32) { 571 DPRINTK("depth not supported: %u\n", var->bits_per_pixel); 572 return -EINVAL; 573 } 574 575 if (var->xres != var->xres_virtual) { 576 DPRINTK("virtual x resolution != " 577 "physical x resolution not supported\n"); 578 return -EINVAL; 579 } 580 581 if (var->yres > var->yres_virtual) { 582 DPRINTK("virtual y resolution < " 583 "physical y resolution not possible\n"); 584 return -EINVAL; 585 } 586 587 /* permedia cannot blit over 2048 */ 588 if (var->yres_virtual > 2047) { 589 var->yres_virtual = 2047; 590 } 591 592 if (var->xoffset) { 593 DPRINTK("xoffset not supported\n"); 594 return -EINVAL; 595 } 596 597 if ((var->vmode & FB_VMODE_MASK) == FB_VMODE_INTERLACED) { 598 DPRINTK("interlace not supported\n"); 599 return -EINVAL; 600 } 601 602 var->xres = (var->xres + 15) & ~15; /* could sometimes be 8 */ 603 lpitch = var->xres * ((var->bits_per_pixel + 7) >> 3); 604 605 if (var->xres < 320 || var->xres > 1600) { 606 DPRINTK("width not supported: %u\n", var->xres); 607 return -EINVAL; 608 } 609 610 if (var->yres < 200 || var->yres > 1200) { 611 DPRINTK("height not supported: %u\n", var->yres); 612 return -EINVAL; 613 } 614 615 if (lpitch * var->yres_virtual > info->fix.smem_len) { 616 DPRINTK("no memory for screen (%ux%ux%u)\n", 617 var->xres, var->yres_virtual, var->bits_per_pixel); 618 return -EINVAL; 619 } 620 621 if (PICOS2KHZ(var->pixclock) > PM2_MAX_PIXCLOCK) { 622 DPRINTK("pixclock too high (%ldKHz)\n", 623 PICOS2KHZ(var->pixclock)); 624 return -EINVAL; 625 } 626 627 var->transp.offset = 0; 628 var->transp.length = 0; 629 switch (var->bits_per_pixel) { 630 case 8: 631 var->red.length = 8; 632 var->green.length = 8; 633 var->blue.length = 8; 634 break; 635 case 16: 636 var->red.offset = 11; 637 var->red.length = 5; 638 var->green.offset = 5; 639 var->green.length = 6; 640 var->blue.offset = 0; 641 var->blue.length = 5; 642 break; 643 case 32: 644 var->transp.offset = 24; 645 var->transp.length = 8; 646 var->red.offset = 16; 647 var->green.offset = 8; 648 var->blue.offset = 0; 649 var->red.length = 8; 650 var->green.length = 8; 651 var->blue.length = 8; 652 break; 653 case 24: 654 #ifdef __BIG_ENDIAN 655 var->red.offset = 0; 656 var->blue.offset = 16; 657 #else 658 var->red.offset = 16; 659 var->blue.offset = 0; 660 #endif 661 var->green.offset = 8; 662 var->red.length = 8; 663 var->green.length = 8; 664 var->blue.length = 8; 665 break; 666 } 667 var->height = -1; 668 var->width = -1; 669 670 var->accel_flags = 0; /* Can't mmap if this is on */ 671 672 DPRINTK("Checking graphics mode at %dx%d depth %d\n", 673 var->xres, var->yres, var->bits_per_pixel); 674 return 0; 675 } 676 677 /** 678 * pm2fb_set_par - Alters the hardware state. 679 * @info: frame buffer structure that represents a single frame buffer 680 * 681 * Using the fb_var_screeninfo in fb_info we set the resolution of the 682 * this particular framebuffer. 683 */ 684 static int pm2fb_set_par(struct fb_info *info) 685 { 686 struct pm2fb_par *par = info->par; 687 u32 pixclock; 688 u32 width = (info->var.xres_virtual + 7) & ~7; 689 u32 height = info->var.yres_virtual; 690 u32 depth = (info->var.bits_per_pixel + 7) & ~7; 691 u32 hsstart, hsend, hbend, htotal; 692 u32 vsstart, vsend, vbend, vtotal; 693 u32 stride; 694 u32 base; 695 u32 video = 0; 696 u32 clrmode = PM2F_RD_COLOR_MODE_RGB | PM2F_RD_GUI_ACTIVE; 697 u32 txtmap = 0; 698 u32 pixsize = 0; 699 u32 clrformat = 0; 700 u32 misc = 1; /* 8-bit DAC */ 701 u32 xres = (info->var.xres + 31) & ~31; 702 int data64; 703 704 reset_card(par); 705 reset_config(par); 706 clear_palette(par); 707 if (par->memclock) 708 set_memclock(par, par->memclock); 709 710 depth = (depth > 32) ? 32 : depth; 711 data64 = depth > 8 || par->type == PM2_TYPE_PERMEDIA2V; 712 713 pixclock = PICOS2KHZ(info->var.pixclock); 714 if (pixclock > PM2_MAX_PIXCLOCK) { 715 DPRINTK("pixclock too high (%uKHz)\n", pixclock); 716 return -EINVAL; 717 } 718 719 hsstart = to3264(info->var.right_margin, depth, data64); 720 hsend = hsstart + to3264(info->var.hsync_len, depth, data64); 721 hbend = hsend + to3264(info->var.left_margin, depth, data64); 722 htotal = to3264(xres, depth, data64) + hbend - 1; 723 vsstart = (info->var.lower_margin) 724 ? info->var.lower_margin - 1 725 : 0; /* FIXME! */ 726 vsend = info->var.lower_margin + info->var.vsync_len - 1; 727 vbend = info->var.lower_margin + info->var.vsync_len + 728 info->var.upper_margin; 729 vtotal = info->var.yres + vbend - 1; 730 stride = to3264(width, depth, 1); 731 base = to3264(info->var.yoffset * xres + info->var.xoffset, depth, 1); 732 if (data64) 733 video |= PM2F_DATA_64_ENABLE; 734 735 if (info->var.sync & FB_SYNC_HOR_HIGH_ACT) { 736 if (lowhsync) { 737 DPRINTK("ignoring +hsync, using -hsync.\n"); 738 video |= PM2F_HSYNC_ACT_LOW; 739 } else 740 video |= PM2F_HSYNC_ACT_HIGH; 741 } else 742 video |= PM2F_HSYNC_ACT_LOW; 743 744 if (info->var.sync & FB_SYNC_VERT_HIGH_ACT) { 745 if (lowvsync) { 746 DPRINTK("ignoring +vsync, using -vsync.\n"); 747 video |= PM2F_VSYNC_ACT_LOW; 748 } else 749 video |= PM2F_VSYNC_ACT_HIGH; 750 } else 751 video |= PM2F_VSYNC_ACT_LOW; 752 753 if ((info->var.vmode & FB_VMODE_MASK) == FB_VMODE_INTERLACED) { 754 DPRINTK("interlaced not supported\n"); 755 return -EINVAL; 756 } 757 if ((info->var.vmode & FB_VMODE_MASK) == FB_VMODE_DOUBLE) 758 video |= PM2F_LINE_DOUBLE; 759 if ((info->var.activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) 760 video |= PM2F_VIDEO_ENABLE; 761 par->video = video; 762 763 info->fix.visual = 764 (depth == 8) ? FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR; 765 info->fix.line_length = info->var.xres * depth / 8; 766 info->cmap.len = 256; 767 768 /* 769 * Settings calculated. Now write them out. 770 */ 771 if (par->type == PM2_TYPE_PERMEDIA2V) { 772 WAIT_FIFO(par, 1); 773 pm2_WR(par, PM2VR_RD_INDEX_HIGH, 0); 774 } 775 776 set_aperture(par, depth); 777 778 mb(); 779 WAIT_FIFO(par, 19); 780 switch (depth) { 781 case 8: 782 pm2_WR(par, PM2R_FB_READ_PIXEL, 0); 783 clrformat = 0x2e; 784 break; 785 case 16: 786 pm2_WR(par, PM2R_FB_READ_PIXEL, 1); 787 clrmode |= PM2F_RD_TRUECOLOR | PM2F_RD_PIXELFORMAT_RGB565; 788 txtmap = PM2F_TEXTEL_SIZE_16; 789 pixsize = 1; 790 clrformat = 0x70; 791 misc |= 8; 792 break; 793 case 32: 794 pm2_WR(par, PM2R_FB_READ_PIXEL, 2); 795 clrmode |= PM2F_RD_TRUECOLOR | PM2F_RD_PIXELFORMAT_RGBA8888; 796 txtmap = PM2F_TEXTEL_SIZE_32; 797 pixsize = 2; 798 clrformat = 0x20; 799 misc |= 8; 800 break; 801 case 24: 802 pm2_WR(par, PM2R_FB_READ_PIXEL, 4); 803 clrmode |= PM2F_RD_TRUECOLOR | PM2F_RD_PIXELFORMAT_RGB888; 804 txtmap = PM2F_TEXTEL_SIZE_24; 805 pixsize = 4; 806 clrformat = 0x20; 807 misc |= 8; 808 break; 809 } 810 pm2_WR(par, PM2R_FB_WRITE_MODE, PM2F_FB_WRITE_ENABLE); 811 pm2_WR(par, PM2R_FB_READ_MODE, partprod(xres)); 812 pm2_WR(par, PM2R_LB_READ_MODE, partprod(xres)); 813 pm2_WR(par, PM2R_TEXTURE_MAP_FORMAT, txtmap | partprod(xres)); 814 pm2_WR(par, PM2R_H_TOTAL, htotal); 815 pm2_WR(par, PM2R_HS_START, hsstart); 816 pm2_WR(par, PM2R_HS_END, hsend); 817 pm2_WR(par, PM2R_HG_END, hbend); 818 pm2_WR(par, PM2R_HB_END, hbend); 819 pm2_WR(par, PM2R_V_TOTAL, vtotal); 820 pm2_WR(par, PM2R_VS_START, vsstart); 821 pm2_WR(par, PM2R_VS_END, vsend); 822 pm2_WR(par, PM2R_VB_END, vbend); 823 pm2_WR(par, PM2R_SCREEN_STRIDE, stride); 824 wmb(); 825 pm2_WR(par, PM2R_WINDOW_ORIGIN, 0); 826 pm2_WR(par, PM2R_SCREEN_SIZE, (height << 16) | width); 827 pm2_WR(par, PM2R_SCISSOR_MODE, PM2F_SCREEN_SCISSOR_ENABLE); 828 wmb(); 829 pm2_WR(par, PM2R_SCREEN_BASE, base); 830 wmb(); 831 set_video(par, video); 832 WAIT_FIFO(par, 10); 833 switch (par->type) { 834 case PM2_TYPE_PERMEDIA2: 835 pm2_RDAC_WR(par, PM2I_RD_COLOR_MODE, clrmode); 836 pm2_RDAC_WR(par, PM2I_RD_COLOR_KEY_CONTROL, 837 (depth == 8) ? 0 : PM2F_COLOR_KEY_TEST_OFF); 838 break; 839 case PM2_TYPE_PERMEDIA2V: 840 pm2v_RDAC_WR(par, PM2VI_RD_DAC_CONTROL, 0); 841 pm2v_RDAC_WR(par, PM2VI_RD_PIXEL_SIZE, pixsize); 842 pm2v_RDAC_WR(par, PM2VI_RD_COLOR_FORMAT, clrformat); 843 pm2v_RDAC_WR(par, PM2VI_RD_MISC_CONTROL, misc); 844 pm2v_RDAC_WR(par, PM2VI_RD_OVERLAY_KEY, 0); 845 break; 846 } 847 set_pixclock(par, pixclock); 848 DPRINTK("Setting graphics mode at %dx%d depth %d\n", 849 info->var.xres, info->var.yres, info->var.bits_per_pixel); 850 return 0; 851 } 852 853 /** 854 * pm2fb_setcolreg - Sets a color register. 855 * @regno: boolean, 0 copy local, 1 get_user() function 856 * @red: frame buffer colormap structure 857 * @green: The green value which can be up to 16 bits wide 858 * @blue: The blue value which can be up to 16 bits wide. 859 * @transp: If supported the alpha value which can be up to 16 bits wide. 860 * @info: frame buffer info structure 861 * 862 * Set a single color register. The values supplied have a 16 bit 863 * magnitude which needs to be scaled in this function for the hardware. 864 * Pretty much a direct lift from tdfxfb.c. 865 * 866 * Returns negative errno on error, or zero on success. 867 */ 868 static int pm2fb_setcolreg(unsigned regno, unsigned red, unsigned green, 869 unsigned blue, unsigned transp, 870 struct fb_info *info) 871 { 872 struct pm2fb_par *par = info->par; 873 874 if (regno >= info->cmap.len) /* no. of hw registers */ 875 return -EINVAL; 876 /* 877 * Program hardware... do anything you want with transp 878 */ 879 880 /* grayscale works only partially under directcolor */ 881 /* grayscale = 0.30*R + 0.59*G + 0.11*B */ 882 if (info->var.grayscale) 883 red = green = blue = (red * 77 + green * 151 + blue * 28) >> 8; 884 885 /* Directcolor: 886 * var->{color}.offset contains start of bitfield 887 * var->{color}.length contains length of bitfield 888 * {hardwarespecific} contains width of DAC 889 * cmap[X] is programmed to 890 * (X << red.offset) | (X << green.offset) | (X << blue.offset) 891 * RAMDAC[X] is programmed to (red, green, blue) 892 * 893 * Pseudocolor: 894 * uses offset = 0 && length = DAC register width. 895 * var->{color}.offset is 0 896 * var->{color}.length contains width of DAC 897 * cmap is not used 898 * DAC[X] is programmed to (red, green, blue) 899 * Truecolor: 900 * does not use RAMDAC (usually has 3 of them). 901 * var->{color}.offset contains start of bitfield 902 * var->{color}.length contains length of bitfield 903 * cmap is programmed to 904 * (red << red.offset) | (green << green.offset) | 905 * (blue << blue.offset) | (transp << transp.offset) 906 * RAMDAC does not exist 907 */ 908 #define CNVT_TOHW(val, width) ((((val) << (width)) + 0x7FFF -(val)) >> 16) 909 switch (info->fix.visual) { 910 case FB_VISUAL_TRUECOLOR: 911 case FB_VISUAL_PSEUDOCOLOR: 912 red = CNVT_TOHW(red, info->var.red.length); 913 green = CNVT_TOHW(green, info->var.green.length); 914 blue = CNVT_TOHW(blue, info->var.blue.length); 915 transp = CNVT_TOHW(transp, info->var.transp.length); 916 break; 917 case FB_VISUAL_DIRECTCOLOR: 918 /* example here assumes 8 bit DAC. Might be different 919 * for your hardware */ 920 red = CNVT_TOHW(red, 8); 921 green = CNVT_TOHW(green, 8); 922 blue = CNVT_TOHW(blue, 8); 923 /* hey, there is bug in transp handling... */ 924 transp = CNVT_TOHW(transp, 8); 925 break; 926 } 927 #undef CNVT_TOHW 928 /* Truecolor has hardware independent palette */ 929 if (info->fix.visual == FB_VISUAL_TRUECOLOR) { 930 u32 v; 931 932 if (regno >= 16) 933 return -EINVAL; 934 935 v = (red << info->var.red.offset) | 936 (green << info->var.green.offset) | 937 (blue << info->var.blue.offset) | 938 (transp << info->var.transp.offset); 939 940 switch (info->var.bits_per_pixel) { 941 case 8: 942 break; 943 case 16: 944 case 24: 945 case 32: 946 par->palette[regno] = v; 947 break; 948 } 949 return 0; 950 } else if (info->fix.visual == FB_VISUAL_PSEUDOCOLOR) 951 set_color(par, regno, red, green, blue); 952 953 return 0; 954 } 955 956 /** 957 * pm2fb_pan_display - Pans the display. 958 * @var: frame buffer variable screen structure 959 * @info: frame buffer structure that represents a single frame buffer 960 * 961 * Pan (or wrap, depending on the `vmode' field) the display using the 962 * `xoffset' and `yoffset' fields of the `var' structure. 963 * If the values don't fit, return -EINVAL. 964 * 965 * Returns negative errno on error, or zero on success. 966 * 967 */ 968 static int pm2fb_pan_display(struct fb_var_screeninfo *var, 969 struct fb_info *info) 970 { 971 struct pm2fb_par *p = info->par; 972 u32 base; 973 u32 depth = (info->var.bits_per_pixel + 7) & ~7; 974 u32 xres = (info->var.xres + 31) & ~31; 975 976 depth = (depth > 32) ? 32 : depth; 977 base = to3264(var->yoffset * xres + var->xoffset, depth, 1); 978 WAIT_FIFO(p, 1); 979 pm2_WR(p, PM2R_SCREEN_BASE, base); 980 return 0; 981 } 982 983 /** 984 * pm2fb_blank - Blanks the display. 985 * @blank_mode: the blank mode we want. 986 * @info: frame buffer structure that represents a single frame buffer 987 * 988 * Blank the screen if blank_mode != 0, else unblank. Return 0 if 989 * blanking succeeded, != 0 if un-/blanking failed due to e.g. a 990 * video mode which doesn't support it. Implements VESA suspend 991 * and powerdown modes on hardware that supports disabling hsync/vsync: 992 * blank_mode == 2: suspend vsync 993 * blank_mode == 3: suspend hsync 994 * blank_mode == 4: powerdown 995 * 996 * Returns negative errno on error, or zero on success. 997 * 998 */ 999 static int pm2fb_blank(int blank_mode, struct fb_info *info) 1000 { 1001 struct pm2fb_par *par = info->par; 1002 u32 video = par->video; 1003 1004 DPRINTK("blank_mode %d\n", blank_mode); 1005 1006 switch (blank_mode) { 1007 case FB_BLANK_UNBLANK: 1008 /* Screen: On */ 1009 video |= PM2F_VIDEO_ENABLE; 1010 break; 1011 case FB_BLANK_NORMAL: 1012 /* Screen: Off */ 1013 video &= ~PM2F_VIDEO_ENABLE; 1014 break; 1015 case FB_BLANK_VSYNC_SUSPEND: 1016 /* VSync: Off */ 1017 video &= ~(PM2F_VSYNC_MASK | PM2F_BLANK_LOW); 1018 break; 1019 case FB_BLANK_HSYNC_SUSPEND: 1020 /* HSync: Off */ 1021 video &= ~(PM2F_HSYNC_MASK | PM2F_BLANK_LOW); 1022 break; 1023 case FB_BLANK_POWERDOWN: 1024 /* HSync: Off, VSync: Off */ 1025 video &= ~(PM2F_VSYNC_MASK | PM2F_HSYNC_MASK | PM2F_BLANK_LOW); 1026 break; 1027 } 1028 set_video(par, video); 1029 return 0; 1030 } 1031 1032 static int pm2fb_sync(struct fb_info *info) 1033 { 1034 struct pm2fb_par *par = info->par; 1035 1036 WAIT_FIFO(par, 1); 1037 pm2_WR(par, PM2R_SYNC, 0); 1038 mb(); 1039 do { 1040 while (pm2_RD(par, PM2R_OUT_FIFO_WORDS) == 0) 1041 cpu_relax(); 1042 } while (pm2_RD(par, PM2R_OUT_FIFO) != PM2TAG(PM2R_SYNC)); 1043 1044 return 0; 1045 } 1046 1047 static void pm2fb_fillrect(struct fb_info *info, 1048 const struct fb_fillrect *region) 1049 { 1050 struct pm2fb_par *par = info->par; 1051 struct fb_fillrect modded; 1052 int vxres, vyres; 1053 u32 color = (info->fix.visual == FB_VISUAL_TRUECOLOR) ? 1054 ((u32 *)info->pseudo_palette)[region->color] : region->color; 1055 1056 if (info->state != FBINFO_STATE_RUNNING) 1057 return; 1058 if ((info->flags & FBINFO_HWACCEL_DISABLED) || 1059 region->rop != ROP_COPY ) { 1060 cfb_fillrect(info, region); 1061 return; 1062 } 1063 1064 vxres = info->var.xres_virtual; 1065 vyres = info->var.yres_virtual; 1066 1067 memcpy(&modded, region, sizeof(struct fb_fillrect)); 1068 1069 if (!modded.width || !modded.height || 1070 modded.dx >= vxres || modded.dy >= vyres) 1071 return; 1072 1073 if (modded.dx + modded.width > vxres) 1074 modded.width = vxres - modded.dx; 1075 if (modded.dy + modded.height > vyres) 1076 modded.height = vyres - modded.dy; 1077 1078 if (info->var.bits_per_pixel == 8) 1079 color |= color << 8; 1080 if (info->var.bits_per_pixel <= 16) 1081 color |= color << 16; 1082 1083 WAIT_FIFO(par, 3); 1084 pm2_WR(par, PM2R_CONFIG, PM2F_CONFIG_FB_WRITE_ENABLE); 1085 pm2_WR(par, PM2R_RECTANGLE_ORIGIN, (modded.dy << 16) | modded.dx); 1086 pm2_WR(par, PM2R_RECTANGLE_SIZE, (modded.height << 16) | modded.width); 1087 if (info->var.bits_per_pixel != 24) { 1088 WAIT_FIFO(par, 2); 1089 pm2_WR(par, PM2R_FB_BLOCK_COLOR, color); 1090 wmb(); 1091 pm2_WR(par, PM2R_RENDER, 1092 PM2F_RENDER_RECTANGLE | PM2F_RENDER_FASTFILL); 1093 } else { 1094 WAIT_FIFO(par, 4); 1095 pm2_WR(par, PM2R_COLOR_DDA_MODE, 1); 1096 pm2_WR(par, PM2R_CONSTANT_COLOR, color); 1097 wmb(); 1098 pm2_WR(par, PM2R_RENDER, 1099 PM2F_RENDER_RECTANGLE | 1100 PM2F_INCREASE_X | PM2F_INCREASE_Y ); 1101 pm2_WR(par, PM2R_COLOR_DDA_MODE, 0); 1102 } 1103 } 1104 1105 static void pm2fb_copyarea(struct fb_info *info, 1106 const struct fb_copyarea *area) 1107 { 1108 struct pm2fb_par *par = info->par; 1109 struct fb_copyarea modded; 1110 u32 vxres, vyres; 1111 1112 if (info->state != FBINFO_STATE_RUNNING) 1113 return; 1114 if (info->flags & FBINFO_HWACCEL_DISABLED) { 1115 cfb_copyarea(info, area); 1116 return; 1117 } 1118 1119 memcpy(&modded, area, sizeof(struct fb_copyarea)); 1120 1121 vxres = info->var.xres_virtual; 1122 vyres = info->var.yres_virtual; 1123 1124 if (!modded.width || !modded.height || 1125 modded.sx >= vxres || modded.sy >= vyres || 1126 modded.dx >= vxres || modded.dy >= vyres) 1127 return; 1128 1129 if (modded.sx + modded.width > vxres) 1130 modded.width = vxres - modded.sx; 1131 if (modded.dx + modded.width > vxres) 1132 modded.width = vxres - modded.dx; 1133 if (modded.sy + modded.height > vyres) 1134 modded.height = vyres - modded.sy; 1135 if (modded.dy + modded.height > vyres) 1136 modded.height = vyres - modded.dy; 1137 1138 WAIT_FIFO(par, 5); 1139 pm2_WR(par, PM2R_CONFIG, PM2F_CONFIG_FB_WRITE_ENABLE | 1140 PM2F_CONFIG_FB_READ_SOURCE_ENABLE); 1141 pm2_WR(par, PM2R_FB_SOURCE_DELTA, 1142 ((modded.sy - modded.dy) & 0xfff) << 16 | 1143 ((modded.sx - modded.dx) & 0xfff)); 1144 pm2_WR(par, PM2R_RECTANGLE_ORIGIN, (modded.dy << 16) | modded.dx); 1145 pm2_WR(par, PM2R_RECTANGLE_SIZE, (modded.height << 16) | modded.width); 1146 wmb(); 1147 pm2_WR(par, PM2R_RENDER, PM2F_RENDER_RECTANGLE | 1148 (modded.dx < modded.sx ? PM2F_INCREASE_X : 0) | 1149 (modded.dy < modded.sy ? PM2F_INCREASE_Y : 0)); 1150 } 1151 1152 static void pm2fb_imageblit(struct fb_info *info, const struct fb_image *image) 1153 { 1154 struct pm2fb_par *par = info->par; 1155 u32 height = image->height; 1156 u32 fgx, bgx; 1157 const u32 *src = (const u32 *)image->data; 1158 u32 xres = (info->var.xres + 31) & ~31; 1159 int raster_mode = 1; /* invert bits */ 1160 1161 #ifdef __LITTLE_ENDIAN 1162 raster_mode |= 3 << 7; /* reverse byte order */ 1163 #endif 1164 1165 if (info->state != FBINFO_STATE_RUNNING) 1166 return; 1167 if (info->flags & FBINFO_HWACCEL_DISABLED || image->depth != 1) { 1168 cfb_imageblit(info, image); 1169 return; 1170 } 1171 switch (info->fix.visual) { 1172 case FB_VISUAL_PSEUDOCOLOR: 1173 fgx = image->fg_color; 1174 bgx = image->bg_color; 1175 break; 1176 case FB_VISUAL_TRUECOLOR: 1177 default: 1178 fgx = par->palette[image->fg_color]; 1179 bgx = par->palette[image->bg_color]; 1180 break; 1181 } 1182 if (info->var.bits_per_pixel == 8) { 1183 fgx |= fgx << 8; 1184 bgx |= bgx << 8; 1185 } 1186 if (info->var.bits_per_pixel <= 16) { 1187 fgx |= fgx << 16; 1188 bgx |= bgx << 16; 1189 } 1190 1191 WAIT_FIFO(par, 13); 1192 pm2_WR(par, PM2R_FB_READ_MODE, partprod(xres)); 1193 pm2_WR(par, PM2R_SCISSOR_MIN_XY, 1194 ((image->dy & 0xfff) << 16) | (image->dx & 0x0fff)); 1195 pm2_WR(par, PM2R_SCISSOR_MAX_XY, 1196 (((image->dy + image->height) & 0x0fff) << 16) | 1197 ((image->dx + image->width) & 0x0fff)); 1198 pm2_WR(par, PM2R_SCISSOR_MODE, 1); 1199 /* GXcopy & UNIT_ENABLE */ 1200 pm2_WR(par, PM2R_LOGICAL_OP_MODE, (0x3 << 1) | 1); 1201 pm2_WR(par, PM2R_RECTANGLE_ORIGIN, 1202 ((image->dy & 0xfff) << 16) | (image->dx & 0x0fff)); 1203 pm2_WR(par, PM2R_RECTANGLE_SIZE, 1204 ((image->height & 0x0fff) << 16) | 1205 ((image->width) & 0x0fff)); 1206 if (info->var.bits_per_pixel == 24) { 1207 pm2_WR(par, PM2R_COLOR_DDA_MODE, 1); 1208 /* clear area */ 1209 pm2_WR(par, PM2R_CONSTANT_COLOR, bgx); 1210 pm2_WR(par, PM2R_RENDER, 1211 PM2F_RENDER_RECTANGLE | 1212 PM2F_INCREASE_X | PM2F_INCREASE_Y); 1213 /* BitMapPackEachScanline */ 1214 pm2_WR(par, PM2R_RASTERIZER_MODE, raster_mode | (1 << 9)); 1215 pm2_WR(par, PM2R_CONSTANT_COLOR, fgx); 1216 pm2_WR(par, PM2R_RENDER, 1217 PM2F_RENDER_RECTANGLE | 1218 PM2F_INCREASE_X | PM2F_INCREASE_Y | 1219 PM2F_RENDER_SYNC_ON_BIT_MASK); 1220 } else { 1221 pm2_WR(par, PM2R_COLOR_DDA_MODE, 0); 1222 /* clear area */ 1223 pm2_WR(par, PM2R_FB_BLOCK_COLOR, bgx); 1224 pm2_WR(par, PM2R_RENDER, 1225 PM2F_RENDER_RECTANGLE | 1226 PM2F_RENDER_FASTFILL | 1227 PM2F_INCREASE_X | PM2F_INCREASE_Y); 1228 pm2_WR(par, PM2R_RASTERIZER_MODE, raster_mode); 1229 pm2_WR(par, PM2R_FB_BLOCK_COLOR, fgx); 1230 pm2_WR(par, PM2R_RENDER, 1231 PM2F_RENDER_RECTANGLE | 1232 PM2F_INCREASE_X | PM2F_INCREASE_Y | 1233 PM2F_RENDER_FASTFILL | 1234 PM2F_RENDER_SYNC_ON_BIT_MASK); 1235 } 1236 1237 while (height--) { 1238 int width = ((image->width + 7) >> 3) 1239 + info->pixmap.scan_align - 1; 1240 width >>= 2; 1241 WAIT_FIFO(par, width); 1242 while (width--) { 1243 pm2_WR(par, PM2R_BIT_MASK_PATTERN, *src); 1244 src++; 1245 } 1246 } 1247 WAIT_FIFO(par, 3); 1248 pm2_WR(par, PM2R_RASTERIZER_MODE, 0); 1249 pm2_WR(par, PM2R_COLOR_DDA_MODE, 0); 1250 pm2_WR(par, PM2R_SCISSOR_MODE, 0); 1251 } 1252 1253 /* 1254 * Hardware cursor support. 1255 */ 1256 static const u8 cursor_bits_lookup[16] = { 1257 0x00, 0x40, 0x10, 0x50, 0x04, 0x44, 0x14, 0x54, 1258 0x01, 0x41, 0x11, 0x51, 0x05, 0x45, 0x15, 0x55 1259 }; 1260 1261 static int pm2vfb_cursor(struct fb_info *info, struct fb_cursor *cursor) 1262 { 1263 struct pm2fb_par *par = info->par; 1264 u8 mode = PM2F_CURSORMODE_TYPE_X; 1265 int x = cursor->image.dx - info->var.xoffset; 1266 int y = cursor->image.dy - info->var.yoffset; 1267 1268 if (cursor->enable) 1269 mode |= PM2F_CURSORMODE_CURSOR_ENABLE; 1270 1271 pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_MODE, mode); 1272 1273 if (!cursor->enable) 1274 x = 2047; /* push it outside display */ 1275 pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_X_LOW, x & 0xff); 1276 pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_X_HIGH, (x >> 8) & 0xf); 1277 pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_Y_LOW, y & 0xff); 1278 pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_Y_HIGH, (y >> 8) & 0xf); 1279 1280 /* 1281 * If the cursor is not be changed this means either we want the 1282 * current cursor state (if enable is set) or we want to query what 1283 * we can do with the cursor (if enable is not set) 1284 */ 1285 if (!cursor->set) 1286 return 0; 1287 1288 if (cursor->set & FB_CUR_SETHOT) { 1289 pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_X_HOT, 1290 cursor->hot.x & 0x3f); 1291 pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_Y_HOT, 1292 cursor->hot.y & 0x3f); 1293 } 1294 1295 if (cursor->set & FB_CUR_SETCMAP) { 1296 u32 fg_idx = cursor->image.fg_color; 1297 u32 bg_idx = cursor->image.bg_color; 1298 struct fb_cmap cmap = info->cmap; 1299 1300 /* the X11 driver says one should use these color registers */ 1301 pm2_WR(par, PM2VR_RD_INDEX_HIGH, PM2VI_RD_CURSOR_PALETTE >> 8); 1302 pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_PALETTE + 0, 1303 cmap.red[bg_idx] >> 8 ); 1304 pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_PALETTE + 1, 1305 cmap.green[bg_idx] >> 8 ); 1306 pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_PALETTE + 2, 1307 cmap.blue[bg_idx] >> 8 ); 1308 1309 pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_PALETTE + 3, 1310 cmap.red[fg_idx] >> 8 ); 1311 pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_PALETTE + 4, 1312 cmap.green[fg_idx] >> 8 ); 1313 pm2v_RDAC_WR(par, PM2VI_RD_CURSOR_PALETTE + 5, 1314 cmap.blue[fg_idx] >> 8 ); 1315 pm2_WR(par, PM2VR_RD_INDEX_HIGH, 0); 1316 } 1317 1318 if (cursor->set & (FB_CUR_SETSHAPE | FB_CUR_SETIMAGE)) { 1319 u8 *bitmap = (u8 *)cursor->image.data; 1320 u8 *mask = (u8 *)cursor->mask; 1321 int i; 1322 int pos = PM2VI_RD_CURSOR_PATTERN; 1323 1324 for (i = 0; i < cursor->image.height; i++) { 1325 int j = (cursor->image.width + 7) >> 3; 1326 int k = 8 - j; 1327 1328 pm2_WR(par, PM2VR_RD_INDEX_HIGH, pos >> 8); 1329 1330 for (; j > 0; j--) { 1331 u8 data = *bitmap ^ *mask; 1332 1333 if (cursor->rop == ROP_COPY) 1334 data = *mask & *bitmap; 1335 /* Upper 4 bits of bitmap data */ 1336 pm2v_RDAC_WR(par, pos++, 1337 cursor_bits_lookup[data >> 4] | 1338 (cursor_bits_lookup[*mask >> 4] << 1)); 1339 /* Lower 4 bits of bitmap */ 1340 pm2v_RDAC_WR(par, pos++, 1341 cursor_bits_lookup[data & 0xf] | 1342 (cursor_bits_lookup[*mask & 0xf] << 1)); 1343 bitmap++; 1344 mask++; 1345 } 1346 for (; k > 0; k--) { 1347 pm2v_RDAC_WR(par, pos++, 0); 1348 pm2v_RDAC_WR(par, pos++, 0); 1349 } 1350 } 1351 1352 while (pos < (1024 + PM2VI_RD_CURSOR_PATTERN)) { 1353 pm2_WR(par, PM2VR_RD_INDEX_HIGH, pos >> 8); 1354 pm2v_RDAC_WR(par, pos++, 0); 1355 } 1356 1357 pm2_WR(par, PM2VR_RD_INDEX_HIGH, 0); 1358 } 1359 return 0; 1360 } 1361 1362 static int pm2fb_cursor(struct fb_info *info, struct fb_cursor *cursor) 1363 { 1364 struct pm2fb_par *par = info->par; 1365 u8 mode; 1366 1367 if (!hwcursor) 1368 return -EINVAL; /* just to force soft_cursor() call */ 1369 1370 /* Too large of a cursor or wrong bpp :-( */ 1371 if (cursor->image.width > 64 || 1372 cursor->image.height > 64 || 1373 cursor->image.depth > 1) 1374 return -EINVAL; 1375 1376 if (par->type == PM2_TYPE_PERMEDIA2V) 1377 return pm2vfb_cursor(info, cursor); 1378 1379 mode = 0x40; 1380 if (cursor->enable) 1381 mode = 0x43; 1382 1383 pm2_RDAC_WR(par, PM2I_RD_CURSOR_CONTROL, mode); 1384 1385 /* 1386 * If the cursor is not be changed this means either we want the 1387 * current cursor state (if enable is set) or we want to query what 1388 * we can do with the cursor (if enable is not set) 1389 */ 1390 if (!cursor->set) 1391 return 0; 1392 1393 if (cursor->set & FB_CUR_SETPOS) { 1394 int x = cursor->image.dx - info->var.xoffset + 63; 1395 int y = cursor->image.dy - info->var.yoffset + 63; 1396 1397 WAIT_FIFO(par, 4); 1398 pm2_WR(par, PM2R_RD_CURSOR_X_LSB, x & 0xff); 1399 pm2_WR(par, PM2R_RD_CURSOR_X_MSB, (x >> 8) & 0x7); 1400 pm2_WR(par, PM2R_RD_CURSOR_Y_LSB, y & 0xff); 1401 pm2_WR(par, PM2R_RD_CURSOR_Y_MSB, (y >> 8) & 0x7); 1402 } 1403 1404 if (cursor->set & FB_CUR_SETCMAP) { 1405 u32 fg_idx = cursor->image.fg_color; 1406 u32 bg_idx = cursor->image.bg_color; 1407 1408 WAIT_FIFO(par, 7); 1409 pm2_WR(par, PM2R_RD_CURSOR_COLOR_ADDRESS, 1); 1410 pm2_WR(par, PM2R_RD_CURSOR_COLOR_DATA, 1411 info->cmap.red[bg_idx] >> 8); 1412 pm2_WR(par, PM2R_RD_CURSOR_COLOR_DATA, 1413 info->cmap.green[bg_idx] >> 8); 1414 pm2_WR(par, PM2R_RD_CURSOR_COLOR_DATA, 1415 info->cmap.blue[bg_idx] >> 8); 1416 1417 pm2_WR(par, PM2R_RD_CURSOR_COLOR_DATA, 1418 info->cmap.red[fg_idx] >> 8); 1419 pm2_WR(par, PM2R_RD_CURSOR_COLOR_DATA, 1420 info->cmap.green[fg_idx] >> 8); 1421 pm2_WR(par, PM2R_RD_CURSOR_COLOR_DATA, 1422 info->cmap.blue[fg_idx] >> 8); 1423 } 1424 1425 if (cursor->set & (FB_CUR_SETSHAPE | FB_CUR_SETIMAGE)) { 1426 u8 *bitmap = (u8 *)cursor->image.data; 1427 u8 *mask = (u8 *)cursor->mask; 1428 int i; 1429 1430 WAIT_FIFO(par, 1); 1431 pm2_WR(par, PM2R_RD_PALETTE_WRITE_ADDRESS, 0); 1432 1433 for (i = 0; i < cursor->image.height; i++) { 1434 int j = (cursor->image.width + 7) >> 3; 1435 int k = 8 - j; 1436 1437 WAIT_FIFO(par, 8); 1438 for (; j > 0; j--) { 1439 u8 data = *bitmap ^ *mask; 1440 1441 if (cursor->rop == ROP_COPY) 1442 data = *mask & *bitmap; 1443 /* bitmap data */ 1444 pm2_WR(par, PM2R_RD_CURSOR_DATA, data); 1445 bitmap++; 1446 mask++; 1447 } 1448 for (; k > 0; k--) 1449 pm2_WR(par, PM2R_RD_CURSOR_DATA, 0); 1450 } 1451 for (; i < 64; i++) { 1452 int j = 8; 1453 WAIT_FIFO(par, 8); 1454 while (j-- > 0) 1455 pm2_WR(par, PM2R_RD_CURSOR_DATA, 0); 1456 } 1457 1458 mask = (u8 *)cursor->mask; 1459 for (i = 0; i < cursor->image.height; i++) { 1460 int j = (cursor->image.width + 7) >> 3; 1461 int k = 8 - j; 1462 1463 WAIT_FIFO(par, 8); 1464 for (; j > 0; j--) { 1465 /* mask */ 1466 pm2_WR(par, PM2R_RD_CURSOR_DATA, *mask); 1467 mask++; 1468 } 1469 for (; k > 0; k--) 1470 pm2_WR(par, PM2R_RD_CURSOR_DATA, 0); 1471 } 1472 for (; i < 64; i++) { 1473 int j = 8; 1474 WAIT_FIFO(par, 8); 1475 while (j-- > 0) 1476 pm2_WR(par, PM2R_RD_CURSOR_DATA, 0); 1477 } 1478 } 1479 return 0; 1480 } 1481 1482 /* ------------ Hardware Independent Functions ------------ */ 1483 1484 /* 1485 * Frame buffer operations 1486 */ 1487 1488 static const struct fb_ops pm2fb_ops = { 1489 .owner = THIS_MODULE, 1490 .fb_check_var = pm2fb_check_var, 1491 .fb_set_par = pm2fb_set_par, 1492 .fb_setcolreg = pm2fb_setcolreg, 1493 .fb_blank = pm2fb_blank, 1494 .fb_pan_display = pm2fb_pan_display, 1495 .fb_fillrect = pm2fb_fillrect, 1496 .fb_copyarea = pm2fb_copyarea, 1497 .fb_imageblit = pm2fb_imageblit, 1498 .fb_sync = pm2fb_sync, 1499 .fb_cursor = pm2fb_cursor, 1500 }; 1501 1502 /* 1503 * PCI stuff 1504 */ 1505 1506 1507 /** 1508 * pm2fb_probe - Initialise and allocate resource for PCI device. 1509 * 1510 * @pdev: PCI device. 1511 * @id: PCI device ID. 1512 */ 1513 static int pm2fb_probe(struct pci_dev *pdev, const struct pci_device_id *id) 1514 { 1515 struct pm2fb_par *default_par; 1516 struct fb_info *info; 1517 int err; 1518 int retval = -ENXIO; 1519 1520 err = aperture_remove_conflicting_pci_devices(pdev, "pm2fb"); 1521 if (err) 1522 return err; 1523 1524 err = pci_enable_device(pdev); 1525 if (err) { 1526 printk(KERN_WARNING "pm2fb: Can't enable pdev: %d\n", err); 1527 return err; 1528 } 1529 1530 info = framebuffer_alloc(sizeof(struct pm2fb_par), &pdev->dev); 1531 if (!info) 1532 return -ENOMEM; 1533 default_par = info->par; 1534 1535 switch (pdev->device) { 1536 case PCI_DEVICE_ID_TI_TVP4020: 1537 strcpy(pm2fb_fix.id, "TVP4020"); 1538 default_par->type = PM2_TYPE_PERMEDIA2; 1539 break; 1540 case PCI_DEVICE_ID_3DLABS_PERMEDIA2: 1541 strcpy(pm2fb_fix.id, "Permedia2"); 1542 default_par->type = PM2_TYPE_PERMEDIA2; 1543 break; 1544 case PCI_DEVICE_ID_3DLABS_PERMEDIA2V: 1545 strcpy(pm2fb_fix.id, "Permedia2v"); 1546 default_par->type = PM2_TYPE_PERMEDIA2V; 1547 break; 1548 } 1549 1550 pm2fb_fix.mmio_start = pci_resource_start(pdev, 0); 1551 pm2fb_fix.mmio_len = PM2_REGS_SIZE; 1552 1553 #if defined(__BIG_ENDIAN) 1554 /* 1555 * PM2 has a 64k register file, mapped twice in 128k. Lower 1556 * map is little-endian, upper map is big-endian. 1557 */ 1558 pm2fb_fix.mmio_start += PM2_REGS_SIZE; 1559 DPRINTK("Adjusting register base for big-endian.\n"); 1560 #endif 1561 DPRINTK("Register base at 0x%lx\n", pm2fb_fix.mmio_start); 1562 1563 /* Registers - request region and map it. */ 1564 if (!request_mem_region(pm2fb_fix.mmio_start, pm2fb_fix.mmio_len, 1565 "pm2fb regbase")) { 1566 printk(KERN_WARNING "pm2fb: Can't reserve regbase.\n"); 1567 goto err_exit_neither; 1568 } 1569 default_par->v_regs = 1570 ioremap(pm2fb_fix.mmio_start, pm2fb_fix.mmio_len); 1571 if (!default_par->v_regs) { 1572 printk(KERN_WARNING "pm2fb: Can't remap %s register area.\n", 1573 pm2fb_fix.id); 1574 release_mem_region(pm2fb_fix.mmio_start, pm2fb_fix.mmio_len); 1575 goto err_exit_neither; 1576 } 1577 1578 /* Stash away memory register info for use when we reset the board */ 1579 default_par->mem_control = pm2_RD(default_par, PM2R_MEM_CONTROL); 1580 default_par->boot_address = pm2_RD(default_par, PM2R_BOOT_ADDRESS); 1581 default_par->mem_config = pm2_RD(default_par, PM2R_MEM_CONFIG); 1582 DPRINTK("MemControl 0x%x BootAddress 0x%x MemConfig 0x%x\n", 1583 default_par->mem_control, default_par->boot_address, 1584 default_par->mem_config); 1585 1586 if (default_par->mem_control == 0 && 1587 default_par->boot_address == 0x31 && 1588 default_par->mem_config == 0x259fffff) { 1589 default_par->memclock = CVPPC_MEMCLOCK; 1590 default_par->mem_control = 0; 1591 default_par->boot_address = 0x20; 1592 default_par->mem_config = 0xe6002021; 1593 if (pdev->subsystem_vendor == 0x1048 && 1594 pdev->subsystem_device == 0x0a31) { 1595 DPRINTK("subsystem_vendor: %04x, " 1596 "subsystem_device: %04x\n", 1597 pdev->subsystem_vendor, pdev->subsystem_device); 1598 DPRINTK("We have not been initialized by VGA BIOS and " 1599 "are running on an Elsa Winner 2000 Office\n"); 1600 DPRINTK("Initializing card timings manually...\n"); 1601 default_par->memclock = 100000; 1602 } 1603 if (pdev->subsystem_vendor == 0x3d3d && 1604 pdev->subsystem_device == 0x0100) { 1605 DPRINTK("subsystem_vendor: %04x, " 1606 "subsystem_device: %04x\n", 1607 pdev->subsystem_vendor, pdev->subsystem_device); 1608 DPRINTK("We have not been initialized by VGA BIOS and " 1609 "are running on an 3dlabs reference board\n"); 1610 DPRINTK("Initializing card timings manually...\n"); 1611 default_par->memclock = 74894; 1612 } 1613 } 1614 1615 /* Now work out how big lfb is going to be. */ 1616 switch (default_par->mem_config & PM2F_MEM_CONFIG_RAM_MASK) { 1617 case PM2F_MEM_BANKS_1: 1618 pm2fb_fix.smem_len = 0x200000; 1619 break; 1620 case PM2F_MEM_BANKS_2: 1621 pm2fb_fix.smem_len = 0x400000; 1622 break; 1623 case PM2F_MEM_BANKS_3: 1624 pm2fb_fix.smem_len = 0x600000; 1625 break; 1626 case PM2F_MEM_BANKS_4: 1627 pm2fb_fix.smem_len = 0x800000; 1628 break; 1629 } 1630 pm2fb_fix.smem_start = pci_resource_start(pdev, 1); 1631 1632 /* Linear frame buffer - request region and map it. */ 1633 if (!request_mem_region(pm2fb_fix.smem_start, pm2fb_fix.smem_len, 1634 "pm2fb smem")) { 1635 printk(KERN_WARNING "pm2fb: Can't reserve smem.\n"); 1636 goto err_exit_mmio; 1637 } 1638 info->screen_base = 1639 ioremap_wc(pm2fb_fix.smem_start, pm2fb_fix.smem_len); 1640 if (!info->screen_base) { 1641 printk(KERN_WARNING "pm2fb: Can't ioremap smem area.\n"); 1642 release_mem_region(pm2fb_fix.smem_start, pm2fb_fix.smem_len); 1643 goto err_exit_mmio; 1644 } 1645 1646 if (!nomtrr) 1647 default_par->wc_cookie = arch_phys_wc_add(pm2fb_fix.smem_start, 1648 pm2fb_fix.smem_len); 1649 1650 info->fbops = &pm2fb_ops; 1651 info->fix = pm2fb_fix; 1652 info->pseudo_palette = default_par->palette; 1653 info->flags = FBINFO_DEFAULT | 1654 FBINFO_HWACCEL_YPAN | 1655 FBINFO_HWACCEL_COPYAREA | 1656 FBINFO_HWACCEL_IMAGEBLIT | 1657 FBINFO_HWACCEL_FILLRECT; 1658 1659 info->pixmap.addr = kmalloc(PM2_PIXMAP_SIZE, GFP_KERNEL); 1660 if (!info->pixmap.addr) { 1661 retval = -ENOMEM; 1662 goto err_exit_pixmap; 1663 } 1664 info->pixmap.size = PM2_PIXMAP_SIZE; 1665 info->pixmap.buf_align = 4; 1666 info->pixmap.scan_align = 4; 1667 info->pixmap.access_align = 32; 1668 info->pixmap.flags = FB_PIXMAP_SYSTEM; 1669 1670 if (noaccel) { 1671 printk(KERN_DEBUG "disabling acceleration\n"); 1672 info->flags |= FBINFO_HWACCEL_DISABLED; 1673 info->pixmap.scan_align = 1; 1674 } 1675 1676 if (!mode_option) 1677 mode_option = "640x480@60"; 1678 1679 err = fb_find_mode(&info->var, info, mode_option, NULL, 0, NULL, 8); 1680 if (!err || err == 4) 1681 info->var = pm2fb_var; 1682 1683 retval = fb_alloc_cmap(&info->cmap, 256, 0); 1684 if (retval < 0) 1685 goto err_exit_both; 1686 1687 retval = register_framebuffer(info); 1688 if (retval < 0) 1689 goto err_exit_all; 1690 1691 fb_info(info, "%s frame buffer device, memory = %dK\n", 1692 info->fix.id, pm2fb_fix.smem_len / 1024); 1693 1694 /* 1695 * Our driver data 1696 */ 1697 pci_set_drvdata(pdev, info); 1698 1699 return 0; 1700 1701 err_exit_all: 1702 fb_dealloc_cmap(&info->cmap); 1703 err_exit_both: 1704 kfree(info->pixmap.addr); 1705 err_exit_pixmap: 1706 iounmap(info->screen_base); 1707 release_mem_region(pm2fb_fix.smem_start, pm2fb_fix.smem_len); 1708 err_exit_mmio: 1709 iounmap(default_par->v_regs); 1710 release_mem_region(pm2fb_fix.mmio_start, pm2fb_fix.mmio_len); 1711 err_exit_neither: 1712 framebuffer_release(info); 1713 return retval; 1714 } 1715 1716 /** 1717 * pm2fb_remove - Release all device resources. 1718 * 1719 * @pdev: PCI device to clean up. 1720 */ 1721 static void pm2fb_remove(struct pci_dev *pdev) 1722 { 1723 struct fb_info *info = pci_get_drvdata(pdev); 1724 struct fb_fix_screeninfo *fix = &info->fix; 1725 struct pm2fb_par *par = info->par; 1726 1727 unregister_framebuffer(info); 1728 arch_phys_wc_del(par->wc_cookie); 1729 iounmap(info->screen_base); 1730 release_mem_region(fix->smem_start, fix->smem_len); 1731 iounmap(par->v_regs); 1732 release_mem_region(fix->mmio_start, fix->mmio_len); 1733 1734 fb_dealloc_cmap(&info->cmap); 1735 kfree(info->pixmap.addr); 1736 framebuffer_release(info); 1737 } 1738 1739 static const struct pci_device_id pm2fb_id_table[] = { 1740 { PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TVP4020, 1741 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, 1742 { PCI_VENDOR_ID_3DLABS, PCI_DEVICE_ID_3DLABS_PERMEDIA2, 1743 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, 1744 { PCI_VENDOR_ID_3DLABS, PCI_DEVICE_ID_3DLABS_PERMEDIA2V, 1745 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, 1746 { 0, } 1747 }; 1748 1749 static struct pci_driver pm2fb_driver = { 1750 .name = "pm2fb", 1751 .id_table = pm2fb_id_table, 1752 .probe = pm2fb_probe, 1753 .remove = pm2fb_remove, 1754 }; 1755 1756 MODULE_DEVICE_TABLE(pci, pm2fb_id_table); 1757 1758 1759 #ifndef MODULE 1760 /* 1761 * Parse user specified options. 1762 * 1763 * This is, comma-separated options following `video=pm2fb:'. 1764 */ 1765 static int __init pm2fb_setup(char *options) 1766 { 1767 char *this_opt; 1768 1769 if (!options || !*options) 1770 return 0; 1771 1772 while ((this_opt = strsep(&options, ",")) != NULL) { 1773 if (!*this_opt) 1774 continue; 1775 if (!strcmp(this_opt, "lowhsync")) 1776 lowhsync = 1; 1777 else if (!strcmp(this_opt, "lowvsync")) 1778 lowvsync = 1; 1779 else if (!strncmp(this_opt, "hwcursor=", 9)) 1780 hwcursor = simple_strtoul(this_opt + 9, NULL, 0); 1781 else if (!strncmp(this_opt, "nomtrr", 6)) 1782 nomtrr = 1; 1783 else if (!strncmp(this_opt, "noaccel", 7)) 1784 noaccel = 1; 1785 else 1786 mode_option = this_opt; 1787 } 1788 return 0; 1789 } 1790 #endif 1791 1792 1793 static int __init pm2fb_init(void) 1794 { 1795 #ifndef MODULE 1796 char *option = NULL; 1797 1798 if (fb_get_options("pm2fb", &option)) 1799 return -ENODEV; 1800 pm2fb_setup(option); 1801 #endif 1802 1803 return pci_register_driver(&pm2fb_driver); 1804 } 1805 1806 module_init(pm2fb_init); 1807 1808 #ifdef MODULE 1809 /* 1810 * Cleanup 1811 */ 1812 1813 static void __exit pm2fb_exit(void) 1814 { 1815 pci_unregister_driver(&pm2fb_driver); 1816 } 1817 #endif 1818 1819 #ifdef MODULE 1820 module_exit(pm2fb_exit); 1821 1822 module_param(mode_option, charp, 0); 1823 MODULE_PARM_DESC(mode_option, "Initial video mode e.g. '648x480-8@60'"); 1824 module_param_named(mode, mode_option, charp, 0); 1825 MODULE_PARM_DESC(mode, "Initial video mode e.g. '648x480-8@60' (deprecated)"); 1826 module_param(lowhsync, bool, 0); 1827 MODULE_PARM_DESC(lowhsync, "Force horizontal sync low regardless of mode"); 1828 module_param(lowvsync, bool, 0); 1829 MODULE_PARM_DESC(lowvsync, "Force vertical sync low regardless of mode"); 1830 module_param(noaccel, bool, 0); 1831 MODULE_PARM_DESC(noaccel, "Disable acceleration"); 1832 module_param(hwcursor, int, 0644); 1833 MODULE_PARM_DESC(hwcursor, "Enable hardware cursor " 1834 "(1=enable, 0=disable, default=1)"); 1835 module_param(nomtrr, bool, 0); 1836 MODULE_PARM_DESC(nomtrr, "Disable MTRR support (0 or 1=disabled) (default=0)"); 1837 1838 MODULE_AUTHOR("Jim Hague <jim.hague@acm.org>"); 1839 MODULE_DESCRIPTION("Permedia2 framebuffer device driver"); 1840 MODULE_LICENSE("GPL"); 1841 #endif 1842