• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/video/omap/

Lines Matching refs:plane

121 	int	plane;
175 struct plane_info plane[OMAPFB_PLANE_NUM];
478 struct plane_info *p = &blizzard.plane[i];
529 static int do_partial_update(struct blizzard_request *req, int plane,
543 gx1 = x + blizzard.plane[plane].pos_x;
544 gy1 = y + blizzard.plane[plane].pos_y;
555 gx1_out = x_out + blizzard.plane[plane].pos_x;
556 gy1_out = y_out + blizzard.plane[plane].pos_y;
562 struct plane_info *p = &blizzard.plane[i];
570 (wnd_color_mode && i != plane)) {
575 if (i == plane) {
587 /* Check if this plane has an overlapping part */
598 * part in the plane's local coordinates.
619 /* Window embedded in the plane with a differing
621 * transfer elements in terms of the plane's bpp.
626 "plane %d offset %#08lx pposx %d pposy %d "
721 int plane = par->plane;
739 return do_partial_update(req, plane, par->x, par->y,
754 req->par.update.plane = plane_idx; \
803 /* Same as the plane color mode */
804 bpp = blizzard.plane[plane_idx].bpp;
834 struct omapfb_plane_struct *plane;
836 plane = blizzard.fbdev->fb_info[0]->par;
837 create_req_list(plane->idx,
854 struct omapfb_plane_struct *plane = fbi->par;
862 create_req_list(plane->idx, win, &req_list);
881 static int blizzard_setup_plane(int plane, int channel_out,
890 "plane %d ch_out %d offset %#08lx scr_width %d "
892 plane, channel_out, offset, screen_width,
895 if ((unsigned)plane > OMAPFB_PLANE_NUM)
897 p = &blizzard.plane[plane];
903 blizzard.vid_nonstd_color &= ~(1 << plane);
907 blizzard.vid_nonstd_color |= 1 << plane;
911 blizzard.vid_nonstd_color &= ~(1 << plane);
933 static int blizzard_set_scale(int plane, int orig_w, int orig_h,
936 struct plane_info *p = &blizzard.plane[plane];
940 "plane %d orig_w %d orig_h %d out_w %d out_h %d\n",
941 plane, orig_w, orig_h, out_w, out_h);
942 if ((unsigned)plane > OMAPFB_PLANE_NUM)
945 r = blizzard.int_ctrl->set_scale(plane, orig_w, orig_h, out_w, out_h);
954 blizzard.vid_scaled &= ~(1 << plane);
956 blizzard.vid_scaled |= 1 << plane;
990 static int blizzard_enable_plane(int plane, int enable)
993 blizzard.enabled_planes |= 1 << plane;
995 blizzard.enabled_planes &= ~(1 << plane);
1361 static void blizzard_get_caps(int plane, struct omapfb_caps *caps)
1363 blizzard.int_ctrl->get_caps(plane, caps);