Home
last modified time | relevance | path

Searched refs:det_mon (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/external/xserver/hw/xfree86/ddc/
H A Dinterpret_edid.c47 struct detailed_monitor_section *det_mon);
49 struct detailed_monitor_section *det_mon);
106 handle_detailed_hvsize(struct detailed_monitor_section *det_mon, void *data) in handle_detailed_hvsize() argument
111 if (det_mon->type == DT) { in handle_detailed_hvsize()
114 timing = &det_mon->section.d_timings; in handle_detailed_hvsize()
188 get_dt_md_section(SECTION(DET_TIMING_SECTION, block), &m->ver, m->det_mon); in xf86InterpretEDID()
203 struct detailed_monitor_section *det_mon) in get_cea_detail_timing() argument
216 fetch_detailed_block(blk + dt_offset, &mon->ver, det_mon + dt_num); in get_cea_detail_timing()
228 struct detailed_monitor_section det_mon[CEA_EXT_DET_TIMING_NUM]; in handle_cea_detail_block() local
231 det_mon_num = get_cea_detail_timing(ext, mon, det_mon); in handle_cea_detail_block()
[all …]
H A Dprint_edid.c380 handle_detailed_print(struct detailed_monitor_section *det_mon, void *data) in handle_detailed_print() argument
387 xf86DetTimingApplyQuirks(det_mon, p->quirks, in handle_detailed_print()
390 switch (det_mon->type) { in handle_detailed_print()
392 print_detailed_timings(scrnIndex, &det_mon->section.d_timings); in handle_detailed_print()
396 det_mon->section.serial); in handle_detailed_print()
399 xf86DrvMsg(scrnIndex, X_INFO, " %s\n", det_mon->section.ascii_data); in handle_detailed_print()
403 det_mon->section.name); in handle_detailed_print()
407 struct monitor_ranges *r = &det_mon->section.ranges; in handle_detailed_print()
478 "vid: %i\n", p->index, det_mon->section.std_t[j].hsize, in handle_detailed_print()
479 det_mon->section.std_t[j].vsize, in handle_detailed_print()
[all …]
H A Dxf86DDC.h92 void xf86DetTimingApplyQuirks(struct detailed_monitor_section *det_mon,
H A Dedid.h567 struct detailed_monitor_section det_mon[4]; member
/OK3568_Linux_fs/external/xserver/hw/xfree86/modes/
H A Dxf86EdidModes.c45 handle_detailed_rblank(struct detailed_monitor_section *det_mon, void *data) in handle_detailed_rblank() argument
47 if (det_mon->type == DS_RANGES) in handle_detailed_rblank()
48 if (det_mon->section.ranges.supported_blanking & CVT_REDUCED) in handle_detailed_rblank()
841 xf86DetTimingApplyQuirks(struct detailed_monitor_section *det_mon, in xf86DetTimingApplyQuirks() argument
844 if (det_mon->type != DT) in xf86DetTimingApplyQuirks()
848 det_mon->section.d_timings.h_size *= 10; in xf86DetTimingApplyQuirks()
851 det_mon->section.d_timings.v_size *= 10; in xf86DetTimingApplyQuirks()
854 det_mon->section.d_timings.h_size = 10 * hsize; in xf86DetTimingApplyQuirks()
855 det_mon->section.d_timings.v_size = 10 * vsize; in xf86DetTimingApplyQuirks()
872 xf86DetTimingApplyQuirks(DDC->det_mon + i, quirks, in xf86DDCApplyQuirks()
[all …]
H A Dxf86Crtc.c1608 handle_detailed_monrec(struct detailed_monitor_section *det_mon, void *data) in handle_detailed_monrec() argument
1614 if (det_mon->type == DS_RANGES) { in handle_detailed_monrec()
1615 struct monitor_ranges *ranges = &det_mon->section.ranges; in handle_detailed_monrec()
3134 *det_mon, void *data) in handle_detailed_physical_size() argument
3143 xf86DetTimingApplyQuirks(det_mon, p->quirks, in handle_detailed_physical_size()
3146 if (det_mon->type == DT && in handle_detailed_physical_size()
3147 det_mon->section.d_timings.h_size != 0 && in handle_detailed_physical_size()
3148 det_mon->section.d_timings.v_size != 0) { in handle_detailed_physical_size()
3152 if (((det_mon->section.d_timings.h_size * 5) < in handle_detailed_physical_size()
3153 (det_mon->section.d_timings.v_size * 12)) && in handle_detailed_physical_size()
[all …]
/OK3568_Linux_fs/external/xserver/hw/xfree86/common/
H A Dxf86Configure.c450 handle_detailed_input(struct detailed_monitor_section *det_mon, void *data) in handle_detailed_input() argument
454 switch (det_mon->type) { in handle_detailed_input()
457 strlen((char *) (det_mon->section.name)) + in handle_detailed_input()
459 strcpy(ptr->mon_modelname, (char *) (det_mon->section.name)); in handle_detailed_input()
462 ptr->mon_hsync[ptr->mon_n_hsync].lo = det_mon->section.ranges.min_h; in handle_detailed_input()
463 ptr->mon_hsync[ptr->mon_n_hsync].hi = det_mon->section.ranges.max_h; in handle_detailed_input()
465 ptr->mon_vrefresh[ptr->mon_n_hsync].lo = det_mon->section.ranges.min_v; in handle_detailed_input()
466 ptr->mon_vrefresh[ptr->mon_n_hsync].hi = det_mon->section.ranges.max_v; in handle_detailed_input()