• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/

Lines Matching refs:tdfx_outl

278 static inline void tdfx_outl(struct tdfx_par *par, unsigned int reg, u32 val)
296 tdfx_outl(par, COMMAND_3D, COMMAND_3D_NOP);
311 tdfx_outl(par, DACADDR, regno);
312 tdfx_outl(par, DACDATA, c);
370 tdfx_outl(par, MISCINIT1, tdfx_inl(par, MISCINIT1) | 0x01);
375 tdfx_outl(par, VGAINIT1, reg->vgainit1 & 0x001FFFFF);
376 tdfx_outl(par, VIDPROCCFG, reg->vidcfg & ~0x00000001);
377 tdfx_outl(par, PLLCTRL0, reg->vidpll);
400 tdfx_outl(par, VGAINIT0, reg->vgainit0);
401 tdfx_outl(par, DACMODE, reg->dacmode);
402 tdfx_outl(par, VIDDESKSTRIDE, reg->stride);
403 tdfx_outl(par, HWCURPATADDR, 0);
405 tdfx_outl(par, VIDSCREENSIZE,reg->screensize);
406 tdfx_outl(par, VIDDESKSTART, reg->startaddr);
407 tdfx_outl(par, VIDPROCCFG, reg->vidcfg);
408 tdfx_outl(par, VGAINIT1, reg->vgainit1);
409 tdfx_outl(par, MISCINIT0, reg->miscinit0);
412 tdfx_outl(par, SRCBASE, reg->srcbase);
413 tdfx_outl(par, DSTBASE, reg->dstbase);
414 tdfx_outl(par, COMMANDEXTRA_2D, 0);
415 tdfx_outl(par, CLIP0MIN, 0);
416 tdfx_outl(par, CLIP0MAX, 0x0fff0fff);
417 tdfx_outl(par, CLIP1MIN, 0);
418 tdfx_outl(par, CLIP1MAX, 0x0fff0fff);
419 tdfx_outl(par, SRCXY, 0);
458 tdfx_outl(par, MISCINIT1, miscinit1);
842 tdfx_outl(par, DACMODE, dacmode);
866 tdfx_outl(par, VIDDESKSTART, addr);
891 tdfx_outl(par, DSTFORMAT, fmt);
893 tdfx_outl(par, COLORFORE, rect->color);
895 tdfx_outl(par, COLORFORE, par->palette[rect->color]);
897 tdfx_outl(par, COMMAND_2D, COMMAND_2D_FILLRECT | (tdfx_rop << 24));
898 tdfx_outl(par, DSTSIZE, rect->width | (rect->height << 16));
899 tdfx_outl(par, LAUNCH_2D, rect->dx | (rect->dy << 16));
929 tdfx_outl(par, SRCFORMAT, fmt);
930 tdfx_outl(par, DSTFORMAT, fmt);
931 tdfx_outl(par, COMMAND_2D, blitcmd);
932 tdfx_outl(par, DSTSIZE, area->width | (area->height << 16));
933 tdfx_outl(par, DSTXY, dx | (dy << 16));
934 tdfx_outl(par, LAUNCH_2D, sx | (sy << 16));
957 tdfx_outl(par, COLORFORE, image->fg_color);
958 tdfx_outl(par, COLORBACK, image->bg_color);
962 tdfx_outl(par, COLORFORE,
964 tdfx_outl(par, COLORBACK,
974 tdfx_outl(par, SRCXY, 0);
975 tdfx_outl(par, DSTXY, image->dx | (image->dy << 16));
976 tdfx_outl(par, COMMAND_2D, COMMAND_2D_H2S_BITBLT | (TDFX_ROP_COPY << 24));
977 tdfx_outl(par, SRCFORMAT, srcfmt);
978 tdfx_outl(par, DSTFORMAT, dstfmt);
979 tdfx_outl(par, DSTSIZE, image->width | (image->height << 16));
991 tdfx_outl(par, LAUNCH_2D,*(u32*)chardata);
1000 case 1: tdfx_outl(par, LAUNCH_2D,*chardata); break;
1001 case 2: tdfx_outl(par, LAUNCH_2D,*(u16*)chardata); break;
1002 case 3: tdfx_outl(par, LAUNCH_2D,*(u16*)chardata | ((chardata[3]) << 24)); break;
1032 tdfx_outl(par, VIDPROCCFG, par->hwcursor.disable);
1055 tdfx_outl(par, HWCURC0, bg_color);
1056 tdfx_outl(par, HWCURC1, fg_color);
1072 tdfx_outl(par, HWCURLOC, (y << 16) + x);
1140 tdfx_outl(par, VIDPROCCFG, par->hwcursor.enable);