Home
last modified time | relevance | path

Searched full:eclass (Results 1 – 4 of 4) sorted by relevance

/linux/drivers/gpu/drm/xe/
H A Dxe_hw_engine_class_sysfs.c92 struct xe_hw_engine_class_intf *eclass = kobj_to_eclass(kobj); in job_timeout_max_store() local
100 if (timeout < eclass->sched_props.job_timeout_min) in job_timeout_max_store()
108 WRITE_ONCE(eclass->sched_props.job_timeout_max, timeout); in job_timeout_max_store()
116 struct xe_hw_engine_class_intf *eclass = kobj_to_eclass(kobj); in job_timeout_max_show() local
118 return sysfs_emit(buf, "%u\n", eclass->sched_props.job_timeout_max); in job_timeout_max_show()
128 struct xe_hw_engine_class_intf *eclass = kobj_to_eclass(kobj); in job_timeout_min_store() local
136 if (timeout > eclass->sched_props.job_timeout_max) in job_timeout_min_store()
144 WRITE_ONCE(eclass->sched_props.job_timeout_min, timeout); in job_timeout_min_store()
152 struct xe_hw_engine_class_intf *eclass = kobj_to_eclass(kobj); in job_timeout_min_show() local
154 return sysfs_emit(buf, "%u\n", eclass->sched_props.job_timeout_min); in job_timeout_min_show()
[all …]
H A Dxe_hw_engine.c536 hwe->eclass = &gt->eclass[hwe->class]; in hw_engine_init_early()
537 if (!hwe->eclass->sched_props.job_timeout_ms) { in hw_engine_init_early()
538 hwe->eclass->sched_props.job_timeout_ms = 5 * 1000; in hw_engine_init_early()
539 hwe->eclass->sched_props.job_timeout_min = XE_HW_ENGINE_JOB_TIMEOUT_MIN; in hw_engine_init_early()
540 hwe->eclass->sched_props.job_timeout_max = XE_HW_ENGINE_JOB_TIMEOUT_MAX; in hw_engine_init_early()
541 hwe->eclass->sched_props.timeslice_us = 1 * 1000; in hw_engine_init_early()
542 hwe->eclass->sched_props.timeslice_min = XE_HW_ENGINE_TIMESLICE_MIN; in hw_engine_init_early()
543 hwe->eclass->sched_props.timeslice_max = XE_HW_ENGINE_TIMESLICE_MAX; in hw_engine_init_early()
544 hwe->eclass->sched_props.preempt_timeout_us = XE_HW_ENGINE_PREEMPT_TIMEOUT; in hw_engine_init_early()
545 hwe->eclass->sched_props.preempt_timeout_min = XE_HW_ENGINE_PREEMPT_TIMEOUT_MIN; in hw_engine_init_early()
[all …]
H A Dxe_hw_engine_types.h162 /** @eclass: pointer to per hw engine class interface */
163 struct xe_hw_engine_class_intf *eclass; member
/linux/tools/perf/scripts/python/
H A Dexported-sql-viewer.py4769 eclass = ord(header[4])
4773 eclass = header[4]
4776 …if magic == chr(127) + "ELF" and eclass > 0 and eclass < 3 and encoding > 0 and encoding < 3 and v…
4777 result = True if eclass == 2 else False