brintos

brintos / linux-shallow public Read only

0
0
Text · 2.0 KiB · ba17a25 Raw
55 lines · plain
1config DRM_XE_JOB_TIMEOUT_MAX2	int "Default max job timeout (ms)"3	default 10000 # milliseconds4	help5	  Configures the default max job timeout after which job will6	  be forcefully taken away from scheduler.7config DRM_XE_JOB_TIMEOUT_MIN8	int "Default min job timeout (ms)"9	default 1 # milliseconds10	help11	  Configures the default min job timeout after which job will12	  be forcefully taken away from scheduler.13config DRM_XE_TIMESLICE_MAX14	int "Default max timeslice duration (us)"15	default 10000000 # microseconds16	help17	  Configures the default max timeslice duration between multiple18	  contexts by guc scheduling.19config DRM_XE_TIMESLICE_MIN20	int "Default min timeslice duration (us)"21	default 1 # microseconds22	help23	  Configures the default min timeslice duration between multiple24	  contexts by guc scheduling.25config DRM_XE_PREEMPT_TIMEOUT26	int "Preempt timeout (us, jiffy granularity)"27	default 640000 # microseconds28	help29	  How long to wait (in microseconds) for a preemption event to occur30	  when submitting a new context. If the current context does not hit31	  an arbitration point and yield to HW before the timer expires, the32	  HW will be reset to allow the more important context to execute.33config DRM_XE_PREEMPT_TIMEOUT_MAX34	int "Default max preempt timeout (us)"35	default 10000000 # microseconds36	help37	  Configures the default max preempt timeout after which context38	  will be forcefully taken away and higher priority context will39	  run.40config DRM_XE_PREEMPT_TIMEOUT_MIN41	int "Default min preempt timeout (us)"42	default 1 # microseconds43	help44	  Configures the default min preempt timeout after which context45	  will be forcefully taken away and higher priority context will46	  run.47config DRM_XE_ENABLE_SCHEDTIMEOUT_LIMIT48	bool "Default configuration of limitation on scheduler timeout"49	default y50	help51	  Configures the enablement of limitation on scheduler timeout52	  to apply to applicable user. For elevated user, all above MIN53	  and MAX values will apply when this configuration is enable to54	  apply limitation. By default limitation is applied.55