Searched refs:is_idle (Results 1 - 25 of 99) sorted by relevance

1234

/linux-master/include/trace/events/
H A Dtimer.h147 TP_PROTO(bool is_idle, unsigned int cpu),
149 TP_ARGS(is_idle, cpu),
152 __field( bool, is_idle )
157 __entry->is_idle = is_idle;
161 TP_printk("is_idle=%d cpu=%d",
162 __entry->is_idle, __entry->cpu)
/linux-master/drivers/mmc/host/
H A Dmmc_hsq.c262 bool is_idle; local
266 is_idle = (!hsq->mrq && !hsq->qcnt) ||
270 hsq->waiting_for_idle = !is_idle;
274 return is_idle;
H A Dcqhci-core.c872 bool is_idle; local
875 is_idle = !cq_host->qcnt || cq_host->recovery_halt;
877 cq_host->waiting_for_idle = !is_idle;
880 return is_idle;
/linux-master/kernel/time/
H A Dtimer.c237 * @is_idle: Is set, when timer_base is idle. It is triggered by NOHZ
262 bool is_idle; member in struct:timer_base
641 * on the way to idle then it can't set base->is_idle as we hold
644 if (base->is_idle) {
2162 * Returns value of local timer base is_idle value.
2166 return __this_cpu_read(timer_bases[BASE_LOCAL].is_idle);
2269 base_local->is_idle, &tevt);
2279 * Set base->is_idle only when caller is timer_base_try_to_set_idle()
2294 if (!base_local->is_idle && time_after(nextevt, basej + 1)) {
2295 base_local->is_idle
[all...]
/linux-master/drivers/accel/ivpu/
H A Divpu_hw.h17 bool (*is_idle)(struct ivpu_device *vdev); member in struct:ivpu_hw_ops
91 return vdev->hw->ops->is_idle(vdev);
/linux-master/drivers/gpu/drm/amd/include/
H A Damd_shared.h284 * @is_idle: returns current IP block idle status
313 bool (*is_idle)(void *handle); member in struct:amd_ip_funcs
/linux-master/drivers/nvdimm/
H A Dclaim.c77 static bool is_idle(struct device *dev, struct nd_namespace_common *ndns) function
118 if (is_idle(dev, *_ndns)) {
/linux-master/drivers/gpu/drm/amd/amdgpu/
H A Dsi_ih.c294 .is_idle = si_ih_is_idle,
H A Dcik_ih.c433 .is_idle = cik_ih_is_idle,
H A Djpeg_v2_5.c627 .is_idle = jpeg_v2_5_is_idle,
647 .is_idle = jpeg_v2_5_is_idle,
H A Dtonga_ih.c481 .is_idle = tonga_ih_is_idle,
H A Diceland_ih.c423 .is_idle = iceland_ih_is_idle,
H A Dcz_ih.c431 .is_idle = cz_ih_is_idle,
H A Djpeg_v3_0.c552 .is_idle = jpeg_v3_0_is_idle,
H A Dvce_v2_0.c624 .is_idle = vce_v2_0_is_idle,
H A Djpeg_v5_0_0.c508 .is_idle = jpeg_v5_0_0_is_idle,
H A Damdgpu_acp.c635 .is_idle = acp_is_idle,
H A Djpeg_v2_0.c754 .is_idle = jpeg_v2_0_is_idle,
H A Duvd_v3_1.c817 .is_idle = uvd_v3_1_is_idle,
H A Duvd_v5_0.c874 .is_idle = uvd_v5_0_is_idle,
H A Duvd_v4_2.c767 .is_idle = uvd_v4_2_is_idle,
/linux-master/drivers/accel/habanalabs/gaudi2/
H A Dgaudi2.c2193 bool *is_idle; member in struct:gaudi2_tpc_idle_data
7188 bool is_idle = true, is_eng_idle; local
7194 "\nCORE EDMA is_idle QM_GLBL_STS0 DMA_CORE_STS0 DMA_CORE_STS1\n"
7217 is_idle &= is_eng_idle;
7228 return is_idle;
7237 bool is_idle = true, is_eng_idle; local
7243 "\nPDMA is_idle QM_GLBL_STS0 DMA_CORE_STS0 DMA_CORE_STS1\n"
7258 is_idle &= is_eng_idle;
7268 return is_idle;
7277 bool is_idle local
7323 bool is_idle = true, is_eng_idle; local
7398 bool is_idle = true; local
7428 bool is_idle = true, is_eng_idle; local
7496 bool is_idle = true, is_eng_idle; local
7531 bool is_idle = true; local
[all...]
/linux-master/tools/perf/util/
H A Ddb-export.c530 struct comm **comm_ptr, bool *is_idle)
539 *is_idle = !thread__pid(thread) && !thread__tid(thread);
528 db_export__pid_tid(struct db_export *dbe, struct machine *machine, pid_t pid, pid_t tid, u64 *db_id, struct comm **comm_ptr, bool *is_idle) argument
/linux-master/include/linux/soc/ti/
H A Dti_sci_protocol.h59 * @is_idle: Reports back about device idle state
108 int (*is_idle)(const struct ti_sci_handle *handle, u32 id, member in struct:ti_sci_dev_ops
/linux-master/drivers/pmdomain/rockchip/
H A Dpm-domains.c311 bool is_idle; local
339 is_idle, is_idle == idle, 0, 10000);
343 genpd->name, is_idle);

Completed in 269 milliseconds

1234