Home
last modified time | relevance | path

Searched refs:ovl (Results 1 – 15 of 15) sorted by relevance

/linux-2.6.39/drivers/video/omap2/dss/
Doverlay.c43 static ssize_t overlay_name_show(struct omap_overlay *ovl, char *buf) in overlay_name_show() argument
45 return snprintf(buf, PAGE_SIZE, "%s\n", ovl->name); in overlay_name_show()
48 static ssize_t overlay_manager_show(struct omap_overlay *ovl, char *buf) in overlay_manager_show() argument
51 ovl->manager ? ovl->manager->name : "<none>"); in overlay_manager_show()
54 static ssize_t overlay_manager_store(struct omap_overlay *ovl, const char *buf, in overlay_manager_store() argument
82 if (mgr == ovl->manager) in overlay_manager_store()
85 old_mgr = ovl->manager; in overlay_manager_store()
89 r = ovl->unset_manager(ovl); in overlay_manager_store()
101 r = ovl->set_manager(ovl, mgr); in overlay_manager_store()
115 static ssize_t overlay_input_size_show(struct omap_overlay *ovl, char *buf) in overlay_input_size_show() argument
[all …]
Dmanager.c480 struct omap_overlay *ovl = mgr->overlays[i]; in omap_dss_set_device() local
482 if (ovl->manager != mgr || !ovl->info.enabled) in omap_dss_set_device()
485 r = dss_check_overlay(ovl, dssdev); in omap_dss_set_device()
602 int dss_mgr_wait_for_go_ovl(struct omap_overlay *ovl) in dss_mgr_wait_for_go_ovl() argument
611 if (!ovl->manager) in dss_mgr_wait_for_go_ovl()
614 dssdev = ovl->manager->device; in dss_mgr_wait_for_go_ovl()
639 oc = &dss_cache.overlay_cache[ovl->id]; in dss_mgr_wait_for_go_ovl()
662 ovl->id); in dss_mgr_wait_for_go_ovl()
672 DSSERR("ovl(%d)->wait_for_go() timeout\n", ovl->id); in dss_mgr_wait_for_go_ovl()
680 static int overlay_enabled(struct omap_overlay *ovl) in overlay_enabled() argument
[all …]
Ddispc.c3038 struct omap_overlay *ovl; in dispc_error_worker() local
3039 ovl = omap_dss_get_overlay(i); in dispc_error_worker()
3041 if (!(ovl->caps & OMAP_DSS_OVL_CAP_DISPC)) in dispc_error_worker()
3044 if (ovl->id == 0) { in dispc_error_worker()
3045 dispc_enable_plane(ovl->id, 0); in dispc_error_worker()
3046 dispc_go(ovl->manager->id); in dispc_error_worker()
3056 struct omap_overlay *ovl; in dispc_error_worker() local
3057 ovl = omap_dss_get_overlay(i); in dispc_error_worker()
3059 if (!(ovl->caps & OMAP_DSS_OVL_CAP_DISPC)) in dispc_error_worker()
3062 if (ovl->id == 1) { in dispc_error_worker()
[all …]
Drfbi.c903 struct omap_overlay *ovl; in omap_rfbi_update() local
907 ovl = dssdev->manager->overlays[0]; in omap_rfbi_update()
908 scr_width = ovl->info.screen_width; in omap_rfbi_update()
909 addr = ovl->info.vaddr; in omap_rfbi_update()
Ddss.h212 int dss_mgr_wait_for_go_ovl(struct omap_overlay *ovl);
221 int dss_check_overlay(struct omap_overlay *ovl, struct omap_dss_device *dssdev);
Ddsi.c2892 struct omap_overlay *ovl; in dsi_update_screen_l4() local
2899 ovl = dssdev->manager->overlays[0]; in dsi_update_screen_l4()
2901 if (ovl->info.color_mode != OMAP_DSS_COLOR_RGB24U) in dsi_update_screen_l4()
2907 scr_width = ovl->info.screen_width; in dsi_update_screen_l4()
2908 data = ovl->info.vaddr; in dsi_update_screen_l4()
/linux-2.6.39/drivers/media/video/omap/
Domap_vout.c509 struct omap_overlay *ovl; in omap_vout_calculate_offset() local
521 ovl = ovid->overlays[0]; in omap_vout_calculate_offset()
523 if (!ovl->manager || !ovl->manager->device) in omap_vout_calculate_offset()
526 cur_display = ovl->manager->device; in omap_vout_calculate_offset()
628 struct omap_overlay *ovl; in video_mode_to_dss_mode() local
634 ovl = ovid->overlays[0]; in video_mode_to_dss_mode()
652 mode = (ovl->id == OMAP_DSS_VIDEO1) ? in video_mode_to_dss_mode()
668 struct omap_overlay *ovl, int posx, int posy, int outw, in omapvid_setup_overlay() argument
675 if ((ovl->caps & OMAP_DSS_OVL_CAP_SCALE) == 0 && in omapvid_setup_overlay()
702 ovl->get_overlay_info(ovl, &info); in omapvid_setup_overlay()
[all …]
/linux-2.6.39/drivers/video/omap2/omapfb/
Domapfb-ioctl.c65 struct omap_overlay *ovl; in omapfb_setup_plane() local
78 ovl = ofbi->overlays[0]; in omapfb_setup_plane()
106 ovl->get_overlay_info(ovl, &old_info); in omapfb_setup_plane()
116 r = omapfb_setup_overlay(fbi, ovl, pi->pos_x, pi->pos_y, in omapfb_setup_plane()
121 ovl->get_overlay_info(ovl, &info); in omapfb_setup_plane()
125 r = ovl->set_overlay_info(ovl, &info); in omapfb_setup_plane()
132 ovl->get_overlay_info(ovl, &info); in omapfb_setup_plane()
140 r = ovl->set_overlay_info(ovl, &info); in omapfb_setup_plane()
145 if (ovl->manager) in omapfb_setup_plane()
146 ovl->manager->apply(ovl->manager); in omapfb_setup_plane()
[all …]
Domapfb.h126 int omapfb_setup_overlay(struct fb_info *fbi, struct omap_overlay *ovl,
154 static inline int omapfb_overlay_enable(struct omap_overlay *ovl, in omapfb_overlay_enable() argument
159 ovl->get_overlay_info(ovl, &info); in omapfb_overlay_enable()
163 return ovl->set_overlay_info(ovl, &info); in omapfb_overlay_enable()
Domapfb-sysfs.c156 struct omap_overlay *ovl = ofbi->overlays[t]; in show_overlays() local
160 if (ovl == fbdev->overlays[ovlnum]) in show_overlays()
176 struct omap_overlay *ovl) in get_overlay_fb() argument
184 if (ofbi->overlays[t] == ovl) in get_overlay_fb()
199 struct omap_overlay *ovl; in store_overlays() local
259 ovl = ofbi->overlays[i]; in store_overlays()
264 if (ovl == ovls[t]) { in store_overlays()
277 omapfb_overlay_enable(ovl, 0); in store_overlays()
279 if (ovl->manager) in store_overlays()
280 ovl->manager->apply(ovl->manager); in store_overlays()
[all …]
Domapfb-main.c861 int omapfb_setup_overlay(struct fb_info *fbi, struct omap_overlay *ovl, in omapfb_setup_overlay() argument
881 if (ovl != ofbi->overlays[i]) in omapfb_setup_overlay()
922 ovl->get_overlay_info(ovl, &info); in omapfb_setup_overlay()
944 r = ovl->set_overlay_info(ovl, &info); in omapfb_setup_overlay()
963 struct omap_overlay *ovl; in omapfb_apply_changes() local
976 ovl = ofbi->overlays[i]; in omapfb_apply_changes()
978 DBG("apply_changes, fb %d, ovl %d\n", ofbi->id, ovl->id); in omapfb_apply_changes()
982 omapfb_overlay_enable(ovl, 0); in omapfb_apply_changes()
983 if (!init && ovl->manager) in omapfb_apply_changes()
984 ovl->manager->apply(ovl->manager); in omapfb_apply_changes()
[all …]
/linux-2.6.39/arch/arm/plat-omap/include/plat/
Ddisplay.h316 int (*set_manager)(struct omap_overlay *ovl,
318 int (*unset_manager)(struct omap_overlay *ovl);
320 int (*set_overlay_info)(struct omap_overlay *ovl,
322 void (*get_overlay_info)(struct omap_overlay *ovl,
325 int (*wait_for_go)(struct omap_overlay *ovl);
/linux-2.6.39/Documentation/
Dcoccinelle.txt288 * TODO [[view:/home/user/linux/crypto/ctr.c::face=ovl-face1::linb=188::colb=9::cole=16][ERR_CAST ca…
289 * TODO [[view:/home/user/linux/crypto/authenc.c::face=ovl-face1::linb=619::colb=9::cole=16][ERR_CAS…
290 * TODO [[view:/home/user/linux/crypto/xts.c::face=ovl-face1::linb=227::colb=9::cole=16][ERR_CAST ca…
/linux-2.6.39/drivers/usb/atm/
Dueagle-atm.c172 u16 ovl; member
918 u16 ovl = sc->ovl; in uea_load_page_e1() local
928 if (ovl == 0 && pageno == 0 && sc->dsp_firm) { in uea_load_page_e1()
957 bi.wOvl = cpu_to_le16(ovl); in uea_load_page_e1()
958 bi.wOvlOffset = cpu_to_le16(ovl | 0x8000); in uea_load_page_e1()
1880 sc->ovl = 0; in uea_start_reset()
2092 sc->ovl = intr->e1_bOvl >> 4 | intr->e1_bOvl << 4; in uea_schedule_load_page_e1()
/linux-2.6.39/net/sched/
Dsch_cbq.c1299 static int cbq_set_overlimit(struct cbq_class *cl, struct tc_cbq_ovl *ovl) in cbq_set_overlimit() argument
1301 switch (ovl->strategy) { in cbq_set_overlimit()
1309 if (ovl->priority2 - 1 >= TC_CBQ_MAXPRIO || in cbq_set_overlimit()
1310 ovl->priority2 - 1 <= cl->priority) in cbq_set_overlimit()
1312 cl->priority2 = ovl->priority2 - 1; in cbq_set_overlimit()
1324 cl->penalty = ovl->penalty; in cbq_set_overlimit()