| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/power/reset/ |
| D | gpio-restart.txt | 7 will be driven in the inactive state. Otherwise its not driven until 13 inactive->active edge condition, triggering positive edge triggered 15 inactive, thus causing an active->inactive edge, triggering negative edge 16 triggered reset. After a delay specified by inactive-delay, the GPIO 30 specified, the GPIO is initialized as an output in its inactive state. 41 - inactive-delay: Delay (default 100) to wait after driving gpio inactive [ms] 52 inactive-delay = <100>;
|
| D | gpio-poweroff.txt | 6 'input' is not found, the GPIO line will be driven in the inactive 11 condition. This will also cause an inactive->active edge condition, so 13 the GPIO is set to inactive, thus causing an active->inactive edge, 29 inactive state. 31 - inactive-delay-ms: Delay (default 100) to wait after driving gpio inactive
|
| /kernel/linux/linux-6.6/Documentation/devicetree/bindings/power/reset/ |
| D | gpio-restart.yaml | 17 'open-source' is not found, the GPIO line will be driven in the inactive state. Otherwise its 22 This will also cause an inactive->active edge condition, triggering positive edge triggered 23 reset. After a delay specified by active-delay, the GPIO is set to inactive, thus causing an 24 active->inactive edge, triggering negative edge triggered reset. After a delay specified by 25 inactive-delay, the GPIO is driven active again. After a delay specified by wait-delay, the 44 in its inactive state. 54 inactive-delay: 56 description: Delay (default 100) to wait after driving gpio inactive [ms] 77 inactive-delay = <100>;
|
| D | gpio-poweroff.yaml | 15 from inactive to active. After a delay (active-delay-ms) it 16 is expected to be switched back to inactive. After another 17 delay (inactive-delay-ms) it is configured as active again. 33 property is not specified, the GPIO is initialized as an output in its inactive state. 39 inactive-delay-ms: 41 description: Delay to wait after driving gpio inactive
|
| /kernel/linux/linux-5.10/mm/ |
| D | workingset.c | 24 * inactive and the active list. Freshly faulted pages start out at 25 * the head of the inactive list and page reclaim scans pages from the 26 * tail. Pages that are accessed multiple times on the inactive list 28 * whereas active pages are demoted to the inactive list when the 34 * reclaim <- | inactive | <-+-- demotion | active | <--+ 43 * are evicted from the inactive list every time before another access 52 * inactive list, yet smaller than the size of memory. In this case, 58 * +-inactive------+-active----+ 64 * thrashing on the inactive list, after which refaulting pages can be 67 * Approximating inactive page access frequency - Observations: [all …]
|
| D | swap.c | 263 * inactive list. 403 * a page is marked PageActive just after it is added to the inactive in __lru_cache_activate_page() 421 * inactive,unreferenced -> inactive,referenced 422 * inactive,referenced -> active,unreferenced 489 * Place @page on the inactive or unevictable LRU list, depending on its 515 * inactive list to speed up its reclaim. It is moved to the 524 * 2. active, dirty/writeback page -> inactive, head, PG_reclaim 525 * 3. inactive, mapped page -> none 526 * 4. inactive, dirty/writeback page -> inactive, head, PG_reclaim 527 * 5. inactive, clean -> inactive, tail [all …]
|
| /kernel/linux/linux-6.6/mm/ |
| D | workingset.c | 24 * inactive and the active list. Freshly faulted pages start out at 25 * the head of the inactive list and page reclaim scans pages from the 26 * tail. Pages that are accessed multiple times on the inactive list 28 * whereas active pages are demoted to the inactive list when the 34 * reclaim <- | inactive | <-+-- demotion | active | <--+ 43 * are evicted from the inactive list every time before another access 52 * inactive list, yet smaller than the size of memory. In this case, 58 * +-inactive------+-active----+ 64 * thrashing on the inactive list, after which refaulting pages can be 67 * Approximating inactive page access frequency - Observations: [all …]
|
| D | swap.c | 242 * to the tail of the inactive list. 398 * a folio is marked active just after it is added to the inactive in __lru_cache_activate_folio() 450 * inactive,unreferenced -> inactive,referenced 451 * inactive,referenced -> active,unreferenced 541 * inactive list to speed up its reclaim. It is moved to the 550 * 2. active, dirty/writeback folio -> inactive, head, reclaim 551 * 3. inactive, mapped folio -> none 552 * 4. inactive, dirty/writeback folio -> inactive, head, reclaim 553 * 5. inactive, clean -> inactive, tail 556 * In 4, it moves to the head of the inactive list so the folio is [all …]
|
| /kernel/linux/linux-6.6/kernel/bpf/ |
| D | bpf_lru_list.c | 101 /* Move nodes between or within active and inactive list (like 102 * active to inactive, inactive to active or tail of active back to 141 * inactive list. 163 /* Rotate the inactive list. It starts from the next_inactive_rotation 174 struct list_head *inactive = &l->lists[BPF_LRU_LIST_T_INACTIVE]; in __bpf_lru_list_rotate_inactive() local 175 struct list_head *cur, *last, *next = inactive; in __bpf_lru_list_rotate_inactive() 179 if (list_empty(inactive)) in __bpf_lru_list_rotate_inactive() 183 if (last == inactive) in __bpf_lru_list_rotate_inactive() 188 if (cur == inactive) { in __bpf_lru_list_rotate_inactive() 206 /* Shrink the inactive list. It starts from the tail of the [all …]
|
| /kernel/linux/linux-5.10/kernel/bpf/ |
| D | bpf_lru_list.c | 101 /* Move nodes between or within active and inactive list (like 102 * active to inactive, inactive to active or tail of active back to 141 * inactive list. 163 /* Rotate the inactive list. It starts from the next_inactive_rotation 174 struct list_head *inactive = &l->lists[BPF_LRU_LIST_T_INACTIVE]; in __bpf_lru_list_rotate_inactive() local 175 struct list_head *cur, *last, *next = inactive; in __bpf_lru_list_rotate_inactive() 179 if (list_empty(inactive)) in __bpf_lru_list_rotate_inactive() 183 if (last == inactive) in __bpf_lru_list_rotate_inactive() 188 if (cur == inactive) { in __bpf_lru_list_rotate_inactive() 206 /* Shrink the inactive list. It starts from the tail of the [all …]
|
| /kernel/linux/linux-5.10/drivers/power/reset/ |
| D | gpio-poweroff.c | 32 /* drive it active, also inactive->active edge */ in gpio_poweroff_do_poweroff() 36 /* drive inactive, also active->inactive edge */ in gpio_poweroff_do_poweroff() 40 /* drive it active, also inactive->active edge */ in gpio_poweroff_do_poweroff() 69 device_property_read_u32(&pdev->dev, "inactive-delay-ms", in gpio_poweroff_probe()
|
| D | gpio-restart.c | 32 /* drive it active, also inactive->active edge */ in gpio_restart_notify() 36 /* drive inactive, also active->inactive edge */ in gpio_restart_notify() 40 /* drive it active, also inactive->active edge */ in gpio_restart_notify() 91 of_property_read_u32(pdev->dev.of_node, "inactive-delay", in gpio_restart_probe()
|
| /kernel/linux/linux-6.6/drivers/power/reset/ |
| D | gpio-poweroff.c | 33 /* drive it active, also inactive->active edge */ in gpio_poweroff_do_poweroff() 37 /* drive inactive, also active->inactive edge */ in gpio_poweroff_do_poweroff() 41 /* drive it active, also inactive->active edge */ in gpio_poweroff_do_poweroff() 70 device_property_read_u32(&pdev->dev, "inactive-delay-ms", in gpio_poweroff_probe()
|
| D | gpio-restart.c | 32 /* drive it active, also inactive->active edge */ in gpio_restart_notify() 36 /* drive inactive, also active->inactive edge */ in gpio_restart_notify() 40 /* drive it active, also inactive->active edge */ in gpio_restart_notify() 91 of_property_read_u32(pdev->dev.of_node, "inactive-delay", in gpio_restart_probe()
|
| /kernel/linux/linux-6.6/arch/arm/mach-omap2/ |
| D | cm.h | 15 * PRCM to request that a module exit the inactive state in the case of 18 * module to reach the functionnal state from an inactive state. 33 * the PRCM to request that a module enter the inactive state in the 35 * in microseconds for the module to reach the inactive state from
|
| /kernel/linux/linux-5.10/arch/arm/mach-omap2/ |
| D | cm.h | 15 * PRCM to request that a module exit the inactive state in the case of 18 * module to reach the functionnal state from an inactive state. 34 * the PRCM to request that a module enter the inactive state in the 36 * in microseconds for the module to reach the inactive state from
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/input/ |
| D | gpio-matrix-keypad.txt | 27 - drive-inactive-cols: drive inactive columns during scan, 28 default is to turn inactive columns into inputs.
|
| /kernel/linux/linux-6.6/Documentation/devicetree/bindings/input/ |
| D | gpio-matrix-keypad.txt | 27 - drive-inactive-cols: drive inactive columns during scan, 28 default is to turn inactive columns into inputs.
|
| /kernel/linux/linux-6.6/Documentation/devicetree/bindings/sound/ |
| D | davinci-mcasp-audio.yaml | 52 0 - Inactive, 1 - TX, 2 - RX 53 All AXR pins should be present in the array even if inactive 96 specify the drive on TX pin during inactive time slots 196 0 0 0 0 /* 0: INACTIVE, 1: TX, 2: RX */
|
| /kernel/liteos_a/kernel/base/vm/ |
| D | los_vm_scan.c | 96 /* move a page from inactive list to active list head */ 107 /* move a page from active list to inactive list head */ 126 /* move a page to the most active pos in lru list(inactive head) */ 135 ----------inactive----------|----------active------------ 164 /* move inactive to active */ in OsPageRefIncLocked() 179 ----------inactive----------|----------active------------
|
| /kernel/linux/linux-5.10/include/uapi/linux/ |
| D | dm-ioctl.h | 25 * through the device, and an 'inactive' one which is a table 39 * Create a new device, neither the 'active' or 'inactive' table 57 * unsuspended device. If a table is present in the 'inactive' 71 * Load a table into the 'inactive' slot for the device. The 75 * Destroy any table in the 'inactive' slot (ie. abort). 321 * If set, any table information returned will relate to the inactive
|
| /kernel/linux/linux-5.10/include/trace/events/ |
| D | vmscan.h | 459 unsigned long total_inactive, unsigned long inactive, 463 TP_ARGS(nid, reclaim_idx, total_inactive, inactive, total_active, active, ratio, file), 469 __field(unsigned long, inactive) 480 __entry->inactive = inactive; 488 …TP_printk("nid=%d reclaim_idx=%d total_inactive=%ld inactive=%ld total_active=%ld active=%ld ratio… 491 __entry->total_inactive, __entry->inactive,
|
| /kernel/linux/linux-5.10/fs/proc/ |
| D | meminfo.c | 82 show_val_kb(m, "Inactive: ", pages[LRU_INACTIVE_ANON] + in meminfo_proc_show() 86 show_val_kb(m, "Inactive(anon): ", pages[LRU_INACTIVE_ANON]); in meminfo_proc_show() 88 show_val_kb(m, "Inactive(file): ", pages[LRU_INACTIVE_FILE]); in meminfo_proc_show() 91 show_val_kb(m, "Inactive(purg): ", nr_purg_inactive); in meminfo_proc_show()
|
| /kernel/linux/linux-6.6/Documentation/admin-guide/pm/ |
| D | strategies.rst | 32 ``inactive`` (idle). If they are active, they have to be in power states 34 are inactive, ideally, they should be in low-power states in which they may not 39 draw (or maximum energy usage) of it. If all of them are inactive, the system
|
| /kernel/linux/linux-5.10/Documentation/admin-guide/pm/ |
| D | strategies.rst | 32 ``inactive`` (idle). If they are active, they have to be in power states 34 are inactive, ideally, they should be in low-power states in which they may not 39 draw (or maximum energy usage) of it. If all of them are inactive, the system
|