Home
last modified time | relevance | path

Searched full:swap (Results 1 – 25 of 180) sorted by relevance

12345678

/Zephyr-Core-3.5.0/tests/boot/test_mcuboot/
DREADME.rst1 MCUBoot Swap Testing
4 Tests MCUBoot's image swap support. This application is built in three parts
6 application is the main sysbuild target, and will request an image swap
9 that MCUBoot swaps to when the image swap is requested.
Dtestcase.yaml9 - "Secondary application ready for swap, rebooting"
10 - "I: Starting swap using (.*)"
/Zephyr-Core-3.5.0/tests/arch/arm/arm_thread_swap/
Dtestcase.yaml8 arch.arm.swap.common:
10 arch.arm.swap.common.no_optimizations:
18 arch.arm.swap.common.fpu_sharing:
23 arch.arm.swap.common.fpu_sharing.no_optimizations:
DREADME.txt1 Title: Test suite to verify the thread-swap (context-switch) and system-calls
6 Thread-swap test:
11 at thread swap-out and swap-in, respectively
13 restored, properly, at thread swap-out and swap-in, respectively,
17 - the swap return value can be set and will be return, properly,
18 at thread swap-in
27 swap-out (by calling arch_swap(.)).
/Zephyr-Core-3.5.0/lib/libc/minimal/source/stdlib/
Dqsort.c56 int swap; in sift_down() local
58 for (swap = start, root = swap; left(root) < end; root = swap) { in sift_down()
62 if (compare(cmp, A(swap), A(child)) < 0) { in sift_down()
63 swap = child; in sift_down()
67 if (right(root) < end && compare(cmp, A(swap), A(right(root))) < 0) { in sift_down()
68 swap = right(root); in sift_down()
71 if (swap == root) { in sift_down()
75 byteswp(A(root), A(swap), size); in sift_down()
/Zephyr-Core-3.5.0/scripts/pylib/pytest-twister-harness/tests/helpers/
Dshell_mcuboot_command_parser_test.py13 swap type: revert
19 swap type: test
26 swap type: none
42 swap type: revert
48 swap type: test
/Zephyr-Core-3.5.0/tests/boot/with_mcumgr/pytest/
Dtest_upgrade.py75 'Swap type: test',
76 'Starting swap using move algorithm'
90 'Starting swap using move algorithm'
130 'Swap type: test',
131 'Starting swap using move algorithm'
144 'Swap type: revert',
145 'Starting swap using move algorithm'
167 5) Restart the device, verify that swap is not started
200 logger.info('Verify that swap is not started')
203 match_no_lines(output, ['Starting swap using move algorithm'])
Dtest_downgrade_prevention.py33 blocked the image swap
57 match_no_lines(output, ['Starting swap using move algorithm'])
/Zephyr-Core-3.5.0/include/zephyr/drivers/dma/
Ddma_mcux_smartdma.h19 /* Write RGB565 data to MIPI DSI via DMA. Swap data endianness, so that
23 /* Write RGB888 data to MIPI DSI via DMA. Swap data endianness, so that
28 * and swap data endianness
32 * and swap data endianness
/Zephyr-Core-3.5.0/tests/arch/arm/arm_thread_swap_tz/
Dtestcase.yaml9 arch.arm.swap.tz:
16 arch.arm.swap.tz_off:
/Zephyr-Core-3.5.0/boards/shields/g1120b0mipi/
DKconfig.defconfig15 # Enable color swap in driver
22 # Swap 16 bit color setting for LVGL, to send high byte first
/Zephyr-Core-3.5.0/include/zephyr/arch/riscv/
Dirq.h54 #define ARCH_ISR_DIRECT_FOOTER(swap) arch_isr_direct_footer(swap) argument
72 static inline void arch_isr_direct_footer(int swap) in arch_isr_direct_footer() argument
74 ARG_UNUSED(swap); in arch_isr_direct_footer()
/Zephyr-Core-3.5.0/tests/boot/test_mcuboot/src/
Dmain.c15 /* Perform a permanent swap of MCUBoot application */ in main()
17 printk("Secondary application ready for swap, rebooting\n"); in main()
/Zephyr-Core-3.5.0/drivers/mipi_dsi/
DKconfig.mcux30 bool "Swap 16 byte color"
32 Swap 16 byte color data from little to big endian format. When
/Zephyr-Core-3.5.0/dts/bindings/input/
Dzephyr,lvgl-pointer-input.yaml23 swap-xy:
26 Swap x-y axes to align input with the display.
/Zephyr-Core-3.5.0/samples/philosophers/
DREADME.rst129 …ilosopher 0 PENDING PRIO 3) arch_swap (key=0) at zephyr/mainline/zephyr/arch/arm/core/swap.c:53
130 …1 SUSPENDED PRIO 2) arch_swap (key=key@entry=0) at zephyr/mainline/zephyr/arch/arm/core/swap.c:53
131 …2 SUSPENDED PRIO 1) arch_swap (key=key@entry=0) at zephyr/mainline/zephyr/arch/arm/core/swap.c:53
132 …3 SUSPENDED PRIO 0) arch_swap (key=key@entry=0) at zephyr/mainline/zephyr/arch/arm/core/swap.c:53
133 …ilosopher 4 PENDING PRIO 255) arch_swap (key=0) at zephyr/mainline/zephyr/arch/arm/core/swap.c:53
134 …5 SUSPENDED PRIO 254) arch_swap (key=key@entry=0) at zephyr/mainline/zephyr/arch/arm/core/swap.c:53
/Zephyr-Core-3.5.0/modules/lvgl/
DKconfig.input22 bool "Swap keyboard scan X,Y axes"
24 Swap keyboard scan X,Y axes. This option can be used to align keyboard
/Zephyr-Core-3.5.0/tests/arch/arm/arm_thread_swap/src/
Darm_thread_arch.c241 "ztest thread basepri not preserved in swap-out\n"); in alt_thread_entry()
244 * for state variable thread.arch.basepri (set before swap). in alt_thread_entry()
247 "ztest thread basepri not preserved in swap-out\n"); in alt_thread_entry()
249 /* Verify original swap return value (set by arch_swap() */ in alt_thread_entry()
251 "ztest thread swap-return-value not preserved in swap-out\n"); in alt_thread_entry()
298 "ztest thread mode Ftype flag not updated at swap-out: 0x%0x\n", in alt_thread_entry()
324 * to verify later, that this value is properly returned by swap. in alt_thread_entry()
393 /* Manually trigger a context-switch, to swap-out in alt_thread_entry()
500 * The container will, later, be populated by the swap mechanism. in ZTEST()
508 /* Modify bit-0 of the FPSCR - will be checked again upon swap-in. */ in ZTEST()
[all …]
/Zephyr-Core-3.5.0/lib/os/
Dmulti_heap.c25 struct sys_multi_heap_rec swap; in sys_multi_heap_add_heap() local
37 swap = mheap->heaps[i]; in sys_multi_heap_add_heap()
39 mheap->heaps[lowest] = swap; in sys_multi_heap_add_heap()
/Zephyr-Core-3.5.0/dts/bindings/memory-controllers/
Dst,stm32h7-fmc.yaml35 st,mem-swap:
46 * sdram-sram - Swap the NOR/PSRAM bank with SDRAM.
/Zephyr-Core-3.5.0/samples/subsys/usb/dfu/
DREADME.rst77 Reset the SoC. MCUboot boot will swap the images and boot the new application,
87 I: Swap type: test
104 I: Swap type: revert
137 Note the ``Swap type: perm``.
149 I: Swap type: perm
/Zephyr-Core-3.5.0/subsys/bluetooth/controller/util/
Ddbuf.h54 * @brief Enqueue new element for buffer swap.
81 * @brief Returns pointer to the current element, the one after last swap operation.
90 * @return Pointer to element after last buffer swap.
/Zephyr-Core-3.5.0/tests/bluetooth/df/connectionless_cte_chains/src/
Dtest_remove_cte_from_chain.c189 /* Swap PDU double buffer and get new latest PDU data */ in remove_cte_from_chain_after_enqueue_to_lll()
192 "Unexpected value of new PDU pointer after PDU double buffer swap"); in remove_cte_from_chain_after_enqueue_to_lll()
196 "Unexpected value of previous PDU pointer after PDU double buffer swap"); in remove_cte_from_chain_after_enqueue_to_lll()
198 /* Free PDUs fifo should hold single PDU released during double buffer swap. The PDU in remove_cte_from_chain_after_enqueue_to_lll()
226 /* Swap PDU double buffer to check correctness of release former PDUs */ in remove_cte_from_chain_after_enqueue_to_lll()
229 "Unexpected value of PDU pointer after PDU double buffer swap"); in remove_cte_from_chain_after_enqueue_to_lll()
/Zephyr-Core-3.5.0/arch/mips/core/
DCMakeLists.txt12 swap.S
/Zephyr-Core-3.5.0/subsys/dfu/
DKconfig49 Enables usage swap type field which is required after
50 "Fix double swap on interrupted revert" mcuboot patch

12345678