| /linux/drivers/video/fbdev/sis/ |
| H A D | sis_accel.c | 82 int rop, int trans_color) in SiS300SetupForScreenToScreenCopy() argument 93 SiS300SetupROP(sisALUConv[rop]) in SiS300SetupForScreenToScreenCopy() 136 SiS300SetupForSolidFill(struct sis_video_info *ivideo, u32 color, int rop) in SiS300SetupForSolidFill() argument 141 SiS300SetupROP(sisPatALUConv[rop]) in SiS300SetupForSolidFill() 172 SiS310SetupForScreenToScreenCopy(struct sis_video_info *ivideo, int rop, int trans_color) in SiS310SetupForScreenToScreenCopy() argument 182 SiS310SetupROP(sisALUConv[rop]) in SiS310SetupForScreenToScreenCopy() 238 SiS310SetupForSolidFill(struct sis_video_info *ivideo, u32 color, int rop) in SiS310SetupForSolidFill() argument 243 SiS310SetupROP(sisPatALUConv[rop]) in SiS310SetupForSolidFill() 340 SiS300SetupForSolidFill(ivideo, col, myrops[rect->rop]); in fbcon_sis_fillrect() 347 SiS310SetupForSolidFill(ivideo, col, myrops[rect->rop]); in fbcon_sis_fillrect()
|
| H A D | sis_accel.h | 243 #define SiS300SetupROP(rop) \ argument 244 ivideo->CommandReg = (rop) << 8; 368 #define SiS310SetupROP(rop) \ argument 369 ivideo->CommandReg = (rop) << 8;
|
| /linux/drivers/video/fbdev/i810/ |
| H A D | i810_accel.c | 162 int xdir, int src, int dest, int rop, in source_copy_blit() argument 170 PUT_RING(xdir | rop << 16 | dpitch | DYN_COLOR_EN | blit_bpp); in source_copy_blit() 196 int rop, int what, int blit_bpp, in color_blit() argument 204 PUT_RING(rop << 16 | pitch | SOLIDPATTERN | DYN_COLOR_EN | blit_bpp); in color_blit() 236 int dsize, int blit_bpp, int rop, in mono_src_copy_imm_blit() argument 245 PUT_RING(DYN_COLOR_EN | blit_bpp | rop << 16 | dpitch); in mono_src_copy_imm_blit() 301 u32 dx, dy, width, height, dest, rop = 0, color = 0; in i810fb_fillrect() local 314 rop = i810fb_rop[rect->rop]; in i810fb_fillrect() 322 color_blit(width, height, info->fix.line_length, dest, rop, color, in i810fb_fillrect()
|
| /linux/drivers/video/fbdev/nvidia/ |
| H A D | nv_accel.c | 169 static void NVSetRopSolid(struct fb_info *info, u32 rop, u32 planemask) in NVSetRopSolid() argument 175 if (par->currentRop != (rop + 32)) { in NVSetRopSolid() 177 NVDmaNext(par, NVCopyROP_PM[rop]); in NVSetRopSolid() 178 par->currentRop = rop + 32; in NVSetRopSolid() 180 } else if (par->currentRop != rop) { in NVSetRopSolid() 184 NVDmaNext(par, NVCopyROP[rop]); in NVSetRopSolid() 185 par->currentRop = rop; in NVSetRopSolid() 336 if (rect->rop != ROP_COPY) in nvidiafb_fillrect() 337 NVSetRopSolid(info, rect->rop, ~0); in nvidiafb_fillrect() 348 if (rect->rop != ROP_COPY) in nvidiafb_fillrect()
|
| /linux/drivers/staging/sm750fb/ |
| H A D | sm750_cursor.h | 11 void sm750_hw_cursor_set_data(struct lynx_cursor *cursor, u16 rop, 13 void sm750_hw_cursor_set_data2(struct lynx_cursor *cursor, u16 rop,
|
| H A D | sm750_cursor.c | 84 void sm750_hw_cursor_set_data(struct lynx_cursor *cursor, u16 rop, in sm750_hw_cursor_set_data() argument 112 if (rop == ROP_XOR) in sm750_hw_cursor_set_data() 134 void sm750_hw_cursor_set_data2(struct lynx_cursor *cursor, u16 rop, in sm750_hw_cursor_set_data2() argument
|
| H A D | sm750_accel.c | 90 u32 color, u32 rop) in sm750_hw_fillrect() argument 126 (rop & DE_CONTROL_ROP_MASK); /* dpr0xc */ in sm750_hw_fillrect()
|
| H A D | sm750.c | 148 sm750_hw_cursor_set_data(cursor, fbcursor->rop, fbcursor->image.data, in lynxfb_ops_cursor() 163 unsigned int base, pitch, bpp, rop; in lynxfb_ops_fillrect() local 182 rop = (region->rop != ROP_COPY) ? HW_ROP2_XOR : HW_ROP2_COPY; in lynxfb_ops_fillrect() 196 color, rop); in lynxfb_ops_fillrect()
|
| H A D | sm750_accel.h | 195 u32 color, u32 rop);
|
| /linux/include/video/ |
| H A D | pm3fb.h | 944 #define PM3Config2D_ForegroundROP(rop) (((rop) & 0xf) << 7) argument 946 #define PM3Config2D_BackgroundROP(rop) (((rop) & 0xf) << 12) argument 1004 #define PM3FillConfig2D_ForegroundROP(rop) (((rop) & 0xf) << 7) argument 1006 #define PM3FillConfig2D_BackgroundROP(rop) (((rop) & 0xf) << 12) argument
|
| /linux/drivers/video/fbdev/ |
| H A D | ffb.c | 243 u32 rop; member 415 static __inline__ void ffb_rop(struct ffb_par *par, u32 rop) in ffb_rop() argument 417 if (par->rop_cache != rop) { in ffb_rop() 419 upa_writel(rop, &par->fbc->rop); in ffb_rop() 420 par->rop_cache = rop; in ffb_rop() 438 upa_writel(par->rop_cache, &fbc->rop); in ffb_switch_from_graph() 483 BUG_ON(rect->rop != ROP_COPY && rect->rop != ROP_XOR); in ffb_fillrect() 495 ffb_rop(par, rect->rop == ROP_COPY ? in ffb_fillrect()
|
| H A D | bt431.h | 204 u16 rop, u16 width, u16 height) in bt431_set_cursor() argument 218 if (rop == ROP_XOR) in bt431_set_cursor()
|
| H A D | hitfb.c | 91 u16 dy, u16 width, u16 height, u16 rop, in hitfb_accel_bitblt() argument 99 hitfb_writew(rop, HD64461_BBTROPR); in hitfb_accel_bitblt() 142 if (rect->rop != ROP_COPY) in hitfb_fillrect()
|
| H A D | hpfb.c | 162 out_8(fb_regs + WMRR, (region->rop == ROP_COPY ? RR_SET : RR_INVERT)); in hpfb_fillrect() 166 out_8(fb_regs + WMRR, (region->rop == ROP_COPY ? RR_CLEAR : RR_NOOP)); in hpfb_fillrect()
|
| H A D | pm3fb.c | 382 int rop; in pm3fb_fillrect() local 392 if (region->rop == ROP_COPY ) in pm3fb_fillrect() 393 rop = PM3Config2D_ForegroundROP(0x3); /* GXcopy */ in pm3fb_fillrect() 395 rop = PM3Config2D_ForegroundROP(0x6) | /* GXxor */ in pm3fb_fillrect() 422 rop | in pm3fb_fillrect() 692 if (cursor->rop == ROP_COPY) in pm3fb_cursor()
|
| H A D | leo.c | 150 u32 rop; member 222 sbus_writel(0x310850, &ss->rop); in leo_switch_from_graph() 236 sbus_writel(0x310b90, &ss->rop); in leo_switch_from_graph()
|
| H A D | tridentfb.c | 329 u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop) in blade_fill_rect() argument 332 writemmr(par, ROP, rop ? ROP_X : ROP_S); in blade_fill_rect() 431 u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop) in xp_fill_rect() argument 503 u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop) in image_fill_rect() argument 571 u32 x, u32 y, u32 w, u32 h, u32 c, u32 rop) in tgui_fill_rect() argument 635 fr->height, col, fr->rop); in tridentfb_fillrect()
|
| /linux/tools/testing/selftests/powerpc/dexcr/ |
| H A D | Makefile | 9 $(OUTPUT)/hashchk_test: CFLAGS += -fno-pie -no-pie $(call cc-option,-mno-rop-protect)
|
| /linux/include/uapi/linux/ |
| H A D | fb.h | 351 __u32 rop; member 385 __u16 rop; /* bitop operation */ member
|
| /linux/drivers/video/fbdev/core/ |
| H A D | fb_fillrect.h | 212 if (rect->rop == ROP_XOR) in fb_fillrect_static() 242 if (rect->rop == ROP_XOR) in fb_fillrect_rotating()
|
| H A D | bitblit.c | 71 region.rop = ROP_COPY; in bit_clear() 241 region.rop = ROP_COPY; in bit_clear_margins() 389 cursor.rop = ROP_XOR; in bit_cursor()
|
| /linux/drivers/media/platform/samsung/s5p-g2d/ |
| H A D | g2d.h | 59 u32 rop; member
|
| /linux/drivers/video/fbdev/savage/ |
| H A D | savagefb.h | 130 #define BCI_CMD_SET_ROP(cmd, rop) ((cmd) |= ((rop & 0xFF) << 16)) argument
|
| H A D | savagefb_accel.c | 83 BCI_CMD_SET_ROP(cmd, savagefb_rop[rect->rop]); in savagefb_fillrect()
|
| /linux/drivers/gpu/drm/vmwgfx/device_include/ |
| H A D | svga_reg.h | 693 uint32 rop; member 777 uint32 rop; member
|