Home
last modified time | relevance | path

Searched full:stages (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/linux-6.12.1/drivers/gpu/drm/msm/
Dmsm_gem_shrinker.c109 } stages[] = { in msm_gem_shrinker_scan() local
110 /* Stages of progressively more aggressive/expensive reclaim: */ in msm_gem_shrinker_scan()
120 for (unsigned i = 0; (nr > 0) && (i < ARRAY_SIZE(stages)); i++) { in msm_gem_shrinker_scan()
121 if (!stages[i].cond) in msm_gem_shrinker_scan()
123 stages[i].freed = in msm_gem_shrinker_scan()
124 drm_gem_lru_scan(stages[i].lru, nr, in msm_gem_shrinker_scan()
125 &stages[i].remaining, in msm_gem_shrinker_scan()
126 stages[i].shrink); in msm_gem_shrinker_scan()
127 nr -= stages[i].freed; in msm_gem_shrinker_scan()
128 freed += stages[i].freed; in msm_gem_shrinker_scan()
[all …]
/linux-6.12.1/include/trace/
Dtrace_custom_events.h24 #include "stages/init.h"
38 #include "stages/stage1_struct_define.h"
59 #include "stages/stage2_data_offsets.h"
74 #include "stages/stage3_trace_output.h"
105 #include "stages/stage4_event_fields.h"
117 #include "stages/stage5_get_offsets.h"
137 #include "stages/stage6_event_callback.h"
185 #include "stages/stage7_class_define.h"
Dtrace_events.h27 #include "stages/init.h"
48 #include "stages/stage1_struct_define.h"
112 #include "stages/stage2_data_offsets.h"
184 #include "stages/stage3_trace_output.h"
239 #include "stages/stage4_event_fields.h"
252 #include "stages/stage5_get_offsets.h"
375 #include "stages/stage6_event_callback.h"
421 #include "stages/stage7_class_define.h"
Dperf.h7 #include "stages/stage6_event_callback.h"
/linux-6.12.1/tools/testing/selftests/tc-testing/
DREADME78 A test case has four stages:
85 The setup and teardown stages can run zero or more commands. The setup
88 can be run next. These two stages require any commands run to return
91 The execute and verify stages each run one command. The execute stage
156 adjust-command (runs in all stages and receives the stage name)
168 The stages are identified by the following strings:
/linux-6.12.1/drivers/staging/media/atomisp/pci/runtime/pipeline/src/
Dpipeline.c246 s = pipeline->stages; in ia_css_pipeline_clean()
282 last = pipeline->stages; in ia_css_pipeline_create_and_add_stage()
305 /* Do this only for ISP stages*/ in ia_css_pipeline_create_and_add_stage()
324 pipeline->stages = new_stage; in ia_css_pipeline_create_and_add_stage()
342 for (stage = pipeline->stages; stage; stage = stage->next) { in ia_css_pipeline_finalize_stages()
362 for (s = pipeline->stages; s; s = s->next) { in ia_css_pipeline_get_stage()
381 for (s = pipeline->stages; s; s = s->next) { in ia_css_pipeline_get_stage_from_fw()
401 for (s = pipeline->stages; s; s = s->next) { in ia_css_pipeline_get_fw_from_stage()
424 for (s = pipeline->stages; s; s = s->next) { in ia_css_pipeline_get_output_stage()
487 * we use a pipeline. A pipeline contains a number of stages, each with
[all …]
/linux-6.12.1/drivers/staging/media/atomisp/pci/runtime/pipeline/interface/
Dia_css_pipeline.h42 /* Pipeline of n stages to be executed on SP/ISP per stage */
47 struct ia_css_pipeline_stage *stages; member
141 /* @brief clean all the stages pipeline and make it as new
165 /* @brief Finalize the stages in a pipeline
170 * This API is expected to be called after adding all stages
/linux-6.12.1/drivers/watchdog/
Dsbsa_gwdt.c18 * or a two stages watchdog, it's set up by the module parameter "action".
21 * In the two stages mode, when the timeout is reached, the first signal (WS0)
29 * if action is 1 (the two stages mode):
37 * Note: Since this watchdog timer has two stages, and each stage is determined
39 * stages mode, the timeout is WOR. The maximum timeout in the two stages mode
/linux-6.12.1/Documentation/ABI/testing/
Dsysfs-bus-iio-health-afe440x6 Get measured values from the ADC for these stages. Y is the
30 stages. The values are expressed in 5-bit sign-magnitude.
/linux-6.12.1/Documentation/devicetree/bindings/sound/
Dti,tas5086.txt28 stages connected to the PWM output pins work. Not all
29 power stages are compatible to Mid-Z - please refer
/linux-6.12.1/drivers/spi/
Dspi-sh-msiof.c139 #define SIFCTR_TFWM_64 (0UL << 29) /* Transfer Request when 64 empty stages */
140 #define SIFCTR_TFWM_32 (1UL << 29) /* Transfer Request when 32 empty stages */
141 #define SIFCTR_TFWM_24 (2UL << 29) /* Transfer Request when 24 empty stages */
142 #define SIFCTR_TFWM_16 (3UL << 29) /* Transfer Request when 16 empty stages */
143 #define SIFCTR_TFWM_12 (4UL << 29) /* Transfer Request when 12 empty stages */
144 #define SIFCTR_TFWM_8 (5UL << 29) /* Transfer Request when 8 empty stages */
145 #define SIFCTR_TFWM_4 (6UL << 29) /* Transfer Request when 4 empty stages */
151 #define SIFCTR_RFWM_1 (0 << 13) /* Transfer Request when 1 valid stages */
152 #define SIFCTR_RFWM_4 (1 << 13) /* Transfer Request when 4 valid stages */
153 #define SIFCTR_RFWM_8 (2 << 13) /* Transfer Request when 8 valid stages */
[all …]
/linux-6.12.1/drivers/gpu/drm/msm/disp/dpu1/
Ddpu_hw_ctl.c68 int stages = -EINVAL; in _mixer_stages() local
72 stages = mixer[i].sblk->maxblendstages; in _mixer_stages()
77 return stages; in _mixer_stages()
487 int stages; in dpu_hw_ctl_setup_blendstage() local
490 stages = _mixer_stages(ctx->mixer_hw_caps, ctx->mixer_count, lm); in dpu_hw_ctl_setup_blendstage()
491 if (stages < 0) in dpu_hw_ctl_setup_blendstage()
505 for (i = 0; i <= stages; i++) { in dpu_hw_ctl_setup_blendstage()
/linux-6.12.1/sound/ppc/
Dsnd_ps3.h96 /* how many stages the fifo have */
98 /* fifo size 128 bytes * 8 stages * stereo (2ch) */
/linux-6.12.1/Documentation/devicetree/bindings/mmc/
Dmtk-sd.yaml105 This field has total 32 stages.
114 This field has total 32 stages.
130 pad macro, there are 32 stages from 0 to 31.
/linux-6.12.1/arch/sh/include/asm/
Dsh_bios.h10 * usually from within the early stages of kernel boot.
/linux-6.12.1/Documentation/arch/arm/sa1100/
Dlart.rst11 is under development, with plenty of others in different stages of
/linux-6.12.1/Documentation/devicetree/bindings/usb/
Daspeed,ast2600-udc.yaml18 Supports 32/256 stages descriptor mode for all generic endpoints.
/linux-6.12.1/Documentation/devicetree/bindings/firmware/
Dnvidia,tegra210-bpmp.txt4 in Tegra210 SoC. It is designed to handle the early stages of the boot
/linux-6.12.1/Documentation/devicetree/bindings/watchdog/
Darm,sbsa-gwdt.yaml14 two stages of timeout have elapsed. A detailed definition of the watchdog
/linux-6.12.1/Documentation/leds/
Dleds-sc27xx.rst11 LED controller, it only supports 4 stages to make a single
/linux-6.12.1/drivers/staging/media/atomisp/pci/
Dsh_css_sp.c1192 if (!me->stages) { in sh_css_sp_init_pipeline()
1193 dev_err(atomisp_dev, "%s called on a pipeline without stages\n", in sh_css_sp_init_pipeline()
1198 first_binary = me->stages->binary; in sh_css_sp_init_pipeline()
1215 /* Count stages */ in sh_css_sp_init_pipeline()
1216 for (stage = me->stages, num = 0; stage; stage = stage->next, num++) { in sh_css_sp_init_pipeline()
1230 me->stages->sp_func == IA_CSS_PIPELINE_ISYS_COPY) in sh_css_sp_init_pipeline()
1291 for (stage = me->stages, num = 0; stage; stage = stage->next, num++) { in sh_css_sp_init_pipeline()
1359 * a new pipeline by defining one or more stages with use of variable
/linux-6.12.1/drivers/gpu/drm/i915/gt/
Dintel_reset_types.h15 * flags: Control various stages of the GPU reset
/linux-6.12.1/sound/soc/codecs/
Dlm49453.h39 /* Analog Mixer Input Stages */
45 /* Analog Mixer Output Stages */
/linux-6.12.1/drivers/net/wwan/t7xx/
Dt7xx_modem_ops.h31 * enum hif_ex_stage - HIF exception handshake stages with the HW.
/linux-6.12.1/include/linux/
Dlibps2.h39 * @flags: various internal flags indicating stages of PS/2 command execution

12345678910>>...12