/kernel/linux/linux-6.6/arch/m68k/fpsp040/ |
H A D | gen_except.S | 58 cmpib #IDLE_SIZE-4,1(%a7) |test for idle frame 59 beq do_check |go handle idle frame 124 | Frame is idle, so check for exceptions reported through 127 | idle fsave vector to the unimp vector. 427 tstb 1(%sp) | check to see if idle 442 tstb 1(%sp) | check to see if idle
|
/kernel/linux/linux-5.10/drivers/input/touchscreen/ |
H A D | zforce_ts.c | 239 static int zforce_scan_frequency(struct zforce_ts *ts, u16 idle, u16 finger, in zforce_scan_frequency() argument 244 (idle & 0xff), ((idle >> 8) & 0xff), in zforce_scan_frequency() 249 "set scan frequency to (idle: %d, finger: %d, stylus: %d)\n", in zforce_scan_frequency() 250 idle, finger, stylus); in zforce_scan_frequency()
|
/kernel/linux/linux-5.10/drivers/misc/sgi-xp/ |
H A D | xpc_main.c | 613 int idle = atomic_read(&ch->kthreads_idle); in xpc_activate_kthreads() local 619 if (idle > 0) { in xpc_activate_kthreads() 620 wakeup = (needed > idle) ? idle : needed; in xpc_activate_kthreads() 623 dev_dbg(xpc_chan, "wakeup %d idle kthreads, partid=%d, " in xpc_activate_kthreads() 664 /* too many idle kthreads on this channel */ in xpc_kthread_waitmsgs() 669 dev_dbg(xpc_chan, "idle kthread calling " in xpc_kthread_waitmsgs()
|
/kernel/linux/linux-6.6/drivers/misc/sgi-xp/ |
H A D | xpc_main.c | 604 int idle = atomic_read(&ch->kthreads_idle); in xpc_activate_kthreads() local 610 if (idle > 0) { in xpc_activate_kthreads() 611 wakeup = (needed > idle) ? idle : needed; in xpc_activate_kthreads() 614 dev_dbg(xpc_chan, "wakeup %d idle kthreads, partid=%d, " in xpc_activate_kthreads() 655 /* too many idle kthreads on this channel */ in xpc_kthread_waitmsgs() 660 dev_dbg(xpc_chan, "idle kthread calling " in xpc_kthread_waitmsgs()
|
/kernel/linux/linux-6.6/block/ |
H A D | bfq-wf2q.c | 345 * bfq_idle_extract - extract an entity from the idle tree. 365 bfq_extract(&st->idle, entity); in bfq_idle_extract() 376 * This is used for the idle and the active tree, since they are both 588 * bfq_idle_insert - insert an entity into the idle tree. 604 bfq_insert(&st->idle, entity); in bfq_idle_insert() 638 * bfq_put_idle_entity - release the idle tree ref of an entity. 650 * bfq_forget_idle - update the idle tree if necessary. 654 * as the idle tree will not grow indefinitely this can be done safely. 664 * Forget the whole idle tree, increasing the vtime past in bfq_forget_idle() 665 * the last finish time of idle entitie in bfq_forget_idle() [all...] |
/kernel/linux/linux-6.6/drivers/input/touchscreen/ |
H A D | zforce_ts.c | 239 static int zforce_scan_frequency(struct zforce_ts *ts, u16 idle, u16 finger, in zforce_scan_frequency() argument 244 (idle & 0xff), ((idle >> 8) & 0xff), in zforce_scan_frequency() 249 "set scan frequency to (idle: %d, finger: %d, stylus: %d)\n", in zforce_scan_frequency() 250 idle, finger, stylus); in zforce_scan_frequency()
|
/kernel/linux/linux-6.6/kernel/time/ |
H A D | tick-sched.c | 7 * No idle tick implementation for low and high resolution timers 105 /* Slow path for long idle sleep times */ in tick_do_update_jiffies64() 235 * When we are idle and the tick is stopped, we have to touch in tick_sched_handle() 237 * time. This happens on complete idle SMP systems while in tick_sched_handle() 239 * idle" jiffy stamp so the idle accounting adjustment we do in tick_sched_handle() 639 * tick_nohz_update_jiffies - update jiffies when idle was interrupted 641 * Called from interrupt entry when the CPU was idle 696 ktime_t now, idle; in get_cpu_sleep_time_us() local 712 idle in get_cpu_sleep_time_us() [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/mediatek/ |
H A D | mtk_ppe_offload.c | 505 u32 idle; in mtk_flow_offload_stats() local 512 idle = mtk_foe_entry_idle_time(eth->ppe[entry->ppe_index], entry); in mtk_flow_offload_stats() 513 f->stats.lastused = jiffies - idle * HZ; in mtk_flow_offload_stats()
|
/kernel/linux/linux-6.6/net/rxrpc/ |
H A D | sendmsg.c | 544 if (p->call.nr_timeouts >= 2 && p->call.timeouts.idle > 60 * 60 * 1000) in rxrpc_sendmsg_cmsg() 699 j = msecs_to_jiffies(p.call.timeouts.idle); 700 if (p.call.timeouts.idle > 0 && j == 0)
|
/kernel/linux/linux-5.10/drivers/mfd/ |
H A D | db8500-prcmu.c | 1135 * @idle: Configuration for ApIdle. 1138 struct prcmu_auto_pm_config *idle) in prcmu_configure_auto_pm() 1144 BUG_ON((sleep == NULL) || (idle == NULL)); in prcmu_configure_auto_pm() 1153 idle_cfg = (idle->sva_auto_pm_enable & 0xF); in prcmu_configure_auto_pm() 1154 idle_cfg = ((idle_cfg << 4) | (idle->sia_auto_pm_enable & 0xF)); in prcmu_configure_auto_pm() 1155 idle_cfg = ((idle_cfg << 8) | (idle->sva_power_on & 0xFF)); in prcmu_configure_auto_pm() 1156 idle_cfg = ((idle_cfg << 8) | (idle->sia_power_on & 0xFF)); in prcmu_configure_auto_pm() 1157 idle_cfg = ((idle_cfg << 4) | (idle->sva_policy & 0xF)); in prcmu_configure_auto_pm() 1158 idle_cfg = ((idle_cfg << 4) | (idle->sia_policy & 0xF)); in prcmu_configure_auto_pm() 1173 (idle in prcmu_configure_auto_pm() 1137 prcmu_configure_auto_pm(struct prcmu_auto_pm_config *sleep, struct prcmu_auto_pm_config *idle) prcmu_configure_auto_pm() argument [all...] |
/kernel/linux/linux-6.6/drivers/mfd/ |
H A D | db8500-prcmu.c | 1134 * @idle: Configuration for ApIdle. 1137 struct prcmu_auto_pm_config *idle) in prcmu_configure_auto_pm() 1143 BUG_ON((sleep == NULL) || (idle == NULL)); in prcmu_configure_auto_pm() 1152 idle_cfg = (idle->sva_auto_pm_enable & 0xF); in prcmu_configure_auto_pm() 1153 idle_cfg = ((idle_cfg << 4) | (idle->sia_auto_pm_enable & 0xF)); in prcmu_configure_auto_pm() 1154 idle_cfg = ((idle_cfg << 8) | (idle->sva_power_on & 0xFF)); in prcmu_configure_auto_pm() 1155 idle_cfg = ((idle_cfg << 8) | (idle->sia_power_on & 0xFF)); in prcmu_configure_auto_pm() 1156 idle_cfg = ((idle_cfg << 4) | (idle->sva_policy & 0xF)); in prcmu_configure_auto_pm() 1157 idle_cfg = ((idle_cfg << 4) | (idle->sia_policy & 0xF)); in prcmu_configure_auto_pm() 1172 (idle in prcmu_configure_auto_pm() 1136 prcmu_configure_auto_pm(struct prcmu_auto_pm_config *sleep, struct prcmu_auto_pm_config *idle) prcmu_configure_auto_pm() argument [all...] |
/kernel/linux/linux-6.6/arch/powerpc/kernel/ |
H A D | smp.c | 1256 static void cpu_idle_thread_init(unsigned int cpu, struct task_struct *idle) in cpu_idle_thread_init() argument 1259 paca_ptrs[cpu]->__current = idle; in cpu_idle_thread_init() 1260 paca_ptrs[cpu]->kstack = (unsigned long)task_stack_page(idle) + in cpu_idle_thread_init() 1263 task_thread_info(idle)->cpu = cpu; in cpu_idle_thread_init() 1264 secondary_current = current_set[cpu] = idle; in cpu_idle_thread_init()
|
/kernel/linux/linux-5.10/arch/mips/alchemy/ |
H A D | board-gpr.c | 22 #include <asm/idle.h>
|
/kernel/linux/linux-5.10/arch/mips/ath79/ |
H A D | setup.c | 23 #include <asm/idle.h>
|
/kernel/linux/linux-5.10/arch/mips/bcm47xx/ |
H A D | setup.c | 41 #include <asm/idle.h>
|
/kernel/linux/linux-5.10/arch/mips/netlogic/xlr/ |
H A D | setup.c | 40 #include <asm/idle.h>
|
/kernel/linux/linux-5.10/arch/s390/kernel/ |
H A D | Makefile | 36 obj-y := traps.o time.o process.o base.o early.o setup.o idle.o vtime.o
|
/kernel/linux/linux-5.10/drivers/cpuidle/ |
H A D | driver.c | 14 #include <linux/sched/idle.h> 199 * * -EINVAL if the driver pointer is NULL or no idle states are available 348 * cpuidle_driver_state_disabled - Disable or enable an idle state
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/inc/hw/ |
H A D | mpc.h | 156 uint32_t idle; member
|
/kernel/linux/linux-6.6/arch/mips/alchemy/ |
H A D | board-gpr.c | 22 #include <asm/idle.h>
|
/kernel/linux/linux-6.6/arch/mips/ath79/ |
H A D | setup.c | 23 #include <asm/idle.h>
|
/kernel/linux/linux-6.6/arch/mips/bcm47xx/ |
H A D | setup.c | 41 #include <asm/idle.h>
|
/kernel/linux/linux-6.6/arch/arm64/kernel/ |
H A D | Makefile | 36 syscall.o proton-pack.o idreg-override.o idle.o \
|
/kernel/linux/linux-6.6/arch/arm/mach-shmobile/ |
H A D | platsmp-apmu.c | 256 struct task_struct *idle) in shmobile_smp_apmu_boot_secondary() 255 shmobile_smp_apmu_boot_secondary(unsigned int cpu, struct task_struct *idle) shmobile_smp_apmu_boot_secondary() argument
|
/kernel/linux/linux-6.6/arch/s390/kernel/ |
H A D | Makefile | 37 obj-y := head64.o traps.o time.o process.o earlypgm.o early.o setup.o idle.o vtime.o
|