• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/msm/

Lines Matching refs:fb_info

63 	struct fb_info *fb;
92 static int msmfb_open(struct fb_info *info, int user)
97 static int msmfb_release(struct fb_info *info, int user)
195 static void msmfb_pan_update(struct fb_info *info, uint32_t left, uint32_t top,
295 static void msmfb_update(struct fb_info *info, uint32_t left, uint32_t top,
326 static int msmfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
339 int msmfb_pan_display(struct fb_var_screeninfo *var, struct fb_info *info)
358 static void msmfb_fillrect(struct fb_info *p, const struct fb_fillrect *rect)
365 static void msmfb_copyarea(struct fb_info *p, const struct fb_copyarea *area)
372 static void msmfb_imageblit(struct fb_info *p, const struct fb_image *image)
380 static int msmfb_blit(struct fb_info *info,
406 static int msmfb_ioctl(struct fb_info *p, unsigned int cmd, unsigned long arg)
447 struct fb_info *fb_info = msmfb->fb;
450 /* finish setting up the fb_info struct */
451 strncpy(fb_info->fix.id, "msmfb", 16);
452 fb_info->fix.ypanstep = 1;
454 fb_info->fbops = &msmfb_ops;
455 fb_info->flags = FBINFO_DEFAULT;
457 fb_info->fix.type = FB_TYPE_PACKED_PIXELS;
458 fb_info->fix.visual = FB_VISUAL_TRUECOLOR;
459 fb_info->fix.line_length = msmfb->xres * 2;
461 fb_info->var.xres = msmfb->xres;
462 fb_info->var.yres = msmfb->yres;
463 fb_info->var.width = msmfb->panel->fb_data->width;
464 fb_info->var.height = msmfb->panel->fb_data->height;
465 fb_info->var.xres_virtual = msmfb->xres;
466 fb_info->var.yres_virtual = msmfb->yres * 2;
467 fb_info->var.bits_per_pixel = BITS_PER_PIXEL;
468 fb_info->var.accel_flags = 0;
470 fb_info->var.yoffset = 0;
473 fb_info->var.reserved[0] = 0x54445055;
474 fb_info->var.reserved[1] = 0;
475 fb_info->var.reserved[2] = (uint16_t)msmfb->xres |
479 fb_info->var.red.offset = 11;
480 fb_info->var.red.length = 5;
481 fb_info->var.red.msb_right = 0;
482 fb_info->var.green.offset = 5;
483 fb_info->var.green.length = 6;
484 fb_info->var.green.msb_right = 0;
485 fb_info->var.blue.offset = 0;
486 fb_info->var.blue.length = 5;
487 fb_info->var.blue.msb_right = 0;
489 r = fb_alloc_cmap(&fb_info->cmap, 16, 0);
490 fb_info->pseudo_palette = PP;
499 struct fb_info *fb = msmfb->fb;
530 struct fb_info *fb;