[go: nahoru, domu]

Searched refs:rop (Results 1 - 25 of 60) sorted by relevance

123

/drivers/video/fbdev/sis/
H A Dsis_accel.c95 int rop, int trans_color)
106 SiS300SetupROP(sisALUConv[rop])
149 SiS300SetupForSolidFill(struct sis_video_info *ivideo, u32 color, int rop) argument
154 SiS300SetupROP(sisPatALUConv[rop])
185 SiS310SetupForScreenToScreenCopy(struct sis_video_info *ivideo, int rop, int trans_color) argument
195 SiS310SetupROP(sisALUConv[rop])
251 SiS310SetupForSolidFill(struct sis_video_info *ivideo, u32 color, int rop) argument
256 SiS310SetupROP(sisPatALUConv[rop])
353 SiS300SetupForSolidFill(ivideo, col, myrops[rect->rop]);
360 SiS310SetupForSolidFill(ivideo, col, myrops[rect->rop]);
94 SiS300SetupForScreenToScreenCopy(struct sis_video_info *ivideo, int xdir, int ydir, int rop, int trans_color) argument
[all...]
H A Dsis_accel.h256 #define SiS300SetupROP(rop) \
257 ivideo->CommandReg = (rop) << 8;
381 #define SiS310SetupROP(rop) \
382 ivideo->CommandReg = (rop) << 8;
/drivers/video/fbdev/i810/
H A Di810_accel.c152 * @rop: raster operation
162 int xdir, int src, int dest, int rop,
170 PUT_RING(xdir | rop << 16 | dpitch | DYN_COLOR_EN | blit_bpp);
186 * @rop: raster operation
196 int rop, int what, int blit_bpp,
204 PUT_RING(rop << 16 | pitch | SOLIDPATTERN | DYN_COLOR_EN | blit_bpp);
220 * @rop: raster operation
236 int dsize, int blit_bpp, int rop,
245 PUT_RING(DYN_COLOR_EN | blit_bpp | rop << 16 | dpitch);
301 u32 dx, dy, width, height, dest, rop local
161 source_copy_blit(int dwidth, int dheight, int dpitch, int xdir, int src, int dest, int rop, int blit_bpp, struct fb_info *info) argument
195 color_blit(int width, int height, int pitch, int dest, int rop, int what, int blit_bpp, struct fb_info *info) argument
235 mono_src_copy_imm_blit(int dwidth, int dheight, int dpitch, int dsize, int blit_bpp, int rop, int dest, const u32 *src, int bg, int fg, struct fb_info *info) argument
[all...]
/drivers/video/fbdev/nvidia/
H A Dnv_accel.c167 static void NVSetRopSolid(struct fb_info *info, u32 rop, u32 planemask) argument
173 if (par->currentRop != (rop + 32)) {
175 NVDmaNext(par, NVCopyROP_PM[rop]);
176 par->currentRop = rop + 32;
178 } else if (par->currentRop != rop) {
182 NVDmaNext(par, NVCopyROP[rop]);
183 par->currentRop = rop;
334 if (rect->rop != ROP_COPY)
335 NVSetRopSolid(info, rect->rop, ~0);
346 if (rect->rop !
[all...]
/drivers/gpu/drm/nouveau/core/engine/graph/
H A Dnve4.c203 int gpc, tpc, rop; local
291 for (rop = 0; rop < priv->rop_nr; rop++) {
292 nv_wr32(priv, ROP_UNIT(rop, 0x144), 0xc0000000);
293 nv_wr32(priv, ROP_UNIT(rop, 0x070), 0xc0000000);
294 nv_wr32(priv, ROP_UNIT(rop, 0x204), 0xffffffff);
295 nv_wr32(priv, ROP_UNIT(rop, 0x208), 0xffffffff);
H A Dgm107.c329 int gpc, tpc, ppc, rop; local
413 for (rop = 0; rop < priv->rop_nr; rop++) {
414 nv_wr32(priv, ROP_UNIT(rop, 0x144), 0x40000000);
415 nv_wr32(priv, ROP_UNIT(rop, 0x070), 0x40000000);
416 nv_wr32(priv, ROP_UNIT(rop, 0x204), 0xffffffff);
417 nv_wr32(priv, ROP_UNIT(rop, 0x208), 0xffffffff);
H A Dnvc0.c910 int rop, gpc, i; local
993 for (rop = 0; rop < priv->rop_nr; rop++) {
994 u32 statz = nv_rd32(priv, ROP_UNIT(rop, 0x070));
995 u32 statc = nv_rd32(priv, ROP_UNIT(rop, 0x144));
997 rop, statz, statc);
998 nv_wr32(priv, ROP_UNIT(rop, 0x070), 0xc0000000);
999 nv_wr32(priv, ROP_UNIT(rop, 0x144), 0xc0000000);
1374 int gpc, tpc, rop; local
[all...]
/drivers/media/platform/vsp1/
H A Dvsp1_regs.h515 #define VI6_BRU_CTRL_CROP(rop) ((rop) << 4)
517 #define VI6_BRU_CTRL_AROP(rop) ((rop) << 0)
557 #define VI6_BRU_ROP_CROP(rop) ((rop) << 4)
559 #define VI6_BRU_ROP_AROP(rop) ((rop) << 0)
/drivers/gpu/drm/nouveau/
H A Dnouveau_fbcon.h43 struct nvif_object rop; member in struct:nouveau_fbdev
H A Dnv04_fbcon.c62 OUT_RING(chan, (rect->rop != ROP_COPY) ? 1 : 3);
186 &nfbdev->rop);
223 OUT_RING(chan, nfbdev->rop.handle);
268 OUT_RING(chan, nfbdev->rop.handle);
H A Dnv50_fbcon.c37 ret = RING_SPACE(chan, rect->rop == ROP_COPY ? 7 : 11);
41 if (rect->rop != ROP_COPY) {
56 if (rect->rop != ROP_COPY) {
H A Dnvc0_fbcon.c37 ret = RING_SPACE(chan, rect->rop == ROP_COPY ? 7 : 11);
41 if (rect->rop != ROP_COPY) {
56 if (rect->rop != ROP_COPY) {
/drivers/media/platform/s5p-g2d/
H A Dg2d.h65 u32 rop; member in struct:g2d_ctx
/drivers/video/console/
H A Dsoftcursor.c58 switch (cursor->rop) {
H A Dbitblit.c72 region.rop = ROP_COPY;
217 region.rop = ROP_COPY;
380 cursor.rop = ROP_XOR;
H A Dfbcon_ccw.c93 region.rop = ROP_COPY;
202 region.rop = ROP_COPY;
383 cursor.rop = ROP_XOR;
H A Dfbcon_cw.c78 region.rop = ROP_COPY;
185 region.rop = ROP_COPY;
366 cursor.rop = ROP_XOR;
H A Dfbcon_ud.c80 region.rop = ROP_COPY;
232 region.rop = ROP_COPY;
407 cursor.rop = ROP_XOR;
/drivers/gpu/drm/qxl/
H A Dqxl_fb.c256 uint16_t rop; local
268 switch (fb_rect->rop) {
270 rop = SPICE_ROPD_OP_XOR;
273 rop = SPICE_ROPD_OP_PUT;
276 pr_err("qxl_fb_fillrect(): unknown rop, "
278 rop = SPICE_ROPD_OP_PUT;
283 qxl_draw_fill_rec.rop = rop;
H A Dqxl_draw.c450 uint16_t rop = qxl_draw_fill_rec->rop; local
473 drawable->u.fill.rop_descriptor = rop;
/drivers/video/fbdev/
H A Dffb.c242 u32 rop; member in struct:ffb_fbc
414 static __inline__ void ffb_rop(struct ffb_par *par, u32 rop) argument
416 if (par->rop_cache != rop) {
418 upa_writel(rop, &par->fbc->rop);
419 par->rop_cache = rop;
437 upa_writel(par->rop_cache, &fbc->rop);
482 BUG_ON(rect->rop != ROP_COPY && rect->rop != ROP_XOR);
494 ffb_rop(par, rect->rop
[all...]
H A Dhitfb.c76 u16 dy, u16 width, u16 height, u16 rop,
84 fb_writew(rop, HD64461_BBTROPR);
127 if (rect->rop != ROP_COPY)
75 hitfb_accel_bitblt(int truecolor, u16 sx, u16 sy, u16 dx, u16 dy, u16 width, u16 height, u16 rop, u32 mask_addr) argument
H A Dleo.c155 u32 rop; member in struct:leo_ld_ss0
227 sbus_writel(0x310850, &ss->rop);
241 sbus_writel(0x310b90, &ss->rop);
/drivers/video/fbdev/savage/
H A Dsavagefb_accel.c83 BCI_CMD_SET_ROP(cmd, savagefb_rop[rect->rop]);
/drivers/video/fbdev/core/
H A Dsysfillrect.c275 switch (rect->rop) {
283 printk( KERN_ERR "cfb_fillrect(): unknown rop, "
305 switch (rect->rop) {
313 printk(KERN_ERR "sys_fillrect(): unknown rop, "

Completed in 306 milliseconds

123