• 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/omap2/omapfb/

Lines Matching defs:fbi

61 static int omapfb_setup_plane(struct fb_info *fbi, struct omapfb_plane_info *pi)
63 struct omapfb_info *ofbi = FB2OFB(fbi);
109 set_fb_fix(fbi);
115 r = omapfb_setup_overlay(fbi, ovl, pi->pos_x, pi->pos_y,
162 set_fb_fix(fbi);
182 static int omapfb_query_plane(struct fb_info *fbi, struct omapfb_plane_info *pi)
184 struct omapfb_info *ofbi = FB2OFB(fbi);
208 static int omapfb_setup_mem(struct fb_info *fbi, struct omapfb_mem_info *mi)
210 struct omapfb_info *ofbi = FB2OFB(fbi);
247 r = omapfb_realloc_fbmem(fbi, size, mi->type);
261 static int omapfb_query_mem(struct fb_info *fbi, struct omapfb_mem_info *mi)
263 struct omapfb_info *ofbi = FB2OFB(fbi);
277 static int omapfb_update_window_nolock(struct fb_info *fbi,
280 struct omap_dss_device *display = fb2display(fbi);
298 int omapfb_update_window(struct fb_info *fbi,
301 struct omapfb_info *ofbi = FB2OFB(fbi);
305 if (!lock_fb_info(fbi))
309 r = omapfb_update_window_nolock(fbi, x, y, w, h);
312 unlock_fb_info(fbi);
318 static int omapfb_set_update_mode(struct fb_info *fbi,
321 struct omap_dss_device *display = fb2display(fbi);
350 static int omapfb_get_update_mode(struct fb_info *fbi,
353 struct omap_dss_device *display = fb2display(fbi);
434 static int omapfb_set_color_key(struct fb_info *fbi,
437 struct omapfb_info *ofbi = FB2OFB(fbi);
464 static int omapfb_get_color_key(struct fb_info *fbi,
467 struct omapfb_info *ofbi = FB2OFB(fbi);
494 static int omapfb_memory_read(struct fb_info *fbi,
497 struct omap_dss_device *display = fb2display(fbi);
575 static int omapfb_wait_for_go(struct fb_info *fbi)
577 struct omapfb_info *ofbi = FB2OFB(fbi);
591 int omapfb_ioctl(struct fb_info *fbi, unsigned int cmd, unsigned long arg)
593 struct omapfb_info *ofbi = FB2OFB(fbi);
595 struct omap_dss_device *display = fb2display(fbi);
642 r = omapfb_update_window_nolock(fbi, p.uwnd_o.x, p.uwnd_o.y,
659 r = omapfb_update_window_nolock(fbi, p.uwnd.x, p.uwnd.y,
669 r = omapfb_setup_plane(fbi, &p.plane_info);
674 r = omapfb_query_plane(fbi, &p.plane_info);
688 r = omapfb_setup_mem(fbi, &p.mem_info);
693 r = omapfb_query_mem(fbi, &p.mem_info);
738 r = omapfb_set_update_mode(fbi, p.update_mode);
743 r = omapfb_get_update_mode(fbi, &p.update_mode);
757 r = omapfb_set_color_key(fbi, &p.color_key);
762 r = omapfb_get_color_key(fbi, &p.color_key);
798 r = omapfb_wait_for_go(fbi);
842 r = omapfb_memory_read(fbi, &p.memory_read);