Home
last modified time | relevance | path

Searched full:pa (Results 1 – 25 of 162) sorted by relevance

1234567

/Zephyr-latest/tests/boards/intel_adsp/mm/src/
Dmain.c36 uintptr_t pa[N_PAGES]; local
44 pa[i] = POINTER_TO_UINT(&page_buf[i]);
48 ret = sys_mm_drv_map_region(va, pa[0], N_PAGES * PAGE_SZ, 0U);
66 * pa[i] is a cached address which means that the cached
71 sys_cache_data_invd_range(UINT_TO_POINTER(pa[i]), PAGE_SZ);
76 zassert_equal(vps[i].mem[0], *(uint32_t *)pa[i],
78 vps[i].mem[0], *(uint32_t *)pa[i]);
95 zassert_equal(vps2[i].mem[0], *(uint32_t *)pa[i],
121 zassert_equal(vps3[i].mem[0], *(uint32_t *)pa[i],
123 vps3[i].mem[0], *(uint32_t *)pa[i]);
[all …]
/Zephyr-latest/boards/panasonic/pan1783/doc/
Dindex.rst6 The PAN1783, PAN1783A and PAN1783A-PA Evaluation Boards (pan1783_evb,
8 PAN1783A and PAN1783A-PA Modules which are based on the nRF5340 chipset
11 More information about the PAN1783, PAN1783A, PAN1783A-PA Modules and
25 PAN1783A-PA EVB
28 The PAN1783A-PA EVB essentially resembles a PAN1783 EVB, with the addition
46 The schematics for the PAN1783/PAN1783A/PAN1783A-PA Evaluation Boards are
47 …in the `download section PAN1783`_ / `download section PAN1783A`_ / `download section PAN1783A-PA`_
66 .. _download section PAN1783A-PA: https://pideu.panasonic.de/development-hub/pan1783a_pa/downloads/
/Zephyr-latest/dts/bindings/sensor/
Dbosch,bmp388.yaml58 1 sample, 16-bit, 2.64 Pa
59 2 samples, 17-bit, 1.32 Pa
60 4 samples, 18-bit, 0.66 Pa (default; chip reset value)
61 8 samples, 19-bit, 0.33 Pa
62 16 samples, 20-bit, 0.17 Pa
63 32 Samples, 21-bit, 0.085 Pa
Dbosch,bmp390.yaml59 1 sample, 16-bit, 2.64 Pa
60 2 samples, 17-bit, 1.32 Pa
61 4 samples, 18-bit, 0.66 Pa (default; chip reset value)
62 8 samples, 19-bit, 0.33 Pa
63 16 samples, 20-bit, 0.17 Pa
64 32 Samples, 21-bit, 0.085 Pa
/Zephyr-latest/doc/connectivity/bluetooth/shell/audio/
Dbap_scan_delegator.rst28 sync_pa : Sync to PA <src_id>
29 term_pa : Terminate PA sync <src_id>
30 add_src : Add a PA as source <addr> <sid> <broadcast_id>
32 add_src_by_pa_sync : Add a PA as source <broadcast_id> <enc_state> [bis_sync
63 Adding a source from a PA sync
72 PA 0x2003e9b0 synced
/Zephyr-latest/tests/bsim/bluetooth/ll/bis/tests_scripts/
Dpast.sh7 # Basic PAST Test: Broadcaster is broadcasting Periodic Advertisements (PA).
8 # A central device syncronizes to the PA after it is synced,
11 # to the peripheral, which then synchronizes to the PA.
Dpast_default_past_params.sh7 # Basic PAST Test: Broadcaster is broadcasting Periodic Advertisements (PA).
8 # A central device syncronizes to the PA after it is synced,
12 # to the peripheral, which then synchronizes to the PA.
Dpast_send_from_broadcaster.sh8 # and it is Periodic Advertising (PA), the broadcaster send a Periodic Sync Transfer (PAST)
9 # to the peripheral, which then synchronizes to the PA.
/Zephyr-latest/tests/bsim/
Dsh_common.source53 local PA="$(cd -- "$(dirname "${BASH_SOURCE[2]}")" && pwd)"
54 PA="$(realpath --relative-to "${ZEPHYR_BASE}" "${PA}")"
55 echo $PA | sed -E 's/\/tests?_scripts//'
/Zephyr-latest/drivers/mm/
Dmm_drv_intel_adsp_mtl_tlb.c80 * @param pa physical address.
83 static uint32_t get_hpsram_bank_idx(uintptr_t pa) in get_hpsram_bank_idx() argument
85 uint32_t phys_offset = pa - L2_SRAM_BASE; in get_hpsram_bank_idx()
187 uintptr_t pa = POINTER_TO_UINT(sys_cache_cached_ptr_get(UINT_TO_POINTER(phys))); in sys_mm_drv_map_page() local
217 pa = POINTER_TO_UINT(sys_cache_cached_ptr_get(phys_block_ptr)); in sys_mm_drv_map_page()
221 CHECKIF((pa < L2_SRAM_BASE) || in sys_mm_drv_map_page()
222 (pa >= (L2_SRAM_BASE + L2_SRAM_SIZE))) { in sys_mm_drv_map_page()
227 /* Make sure PA is page-aligned */ in sys_mm_drv_map_page()
228 CHECKIF(!sys_mm_drv_is_addr_aligned(pa)) { in sys_mm_drv_map_page()
242 bank_idx = get_hpsram_bank_idx(pa); in sys_mm_drv_map_page()
[all …]
Dmm_drv_ti_rat.c103 uintptr_t pa = (uintptr_t) virt; in sys_mm_drv_page_phys_get() local
124 if (pa >= start_addr && pa <= end_addr) { in sys_mm_drv_page_phys_get()
132 pa - translate_config.region_config[regionId].system_addr; in sys_mm_drv_page_phys_get()
137 *va = pa; in sys_mm_drv_page_phys_get()
Dmm_drv_intel_adsp.h63 * @param pa Page-aligned virutal address.
66 static inline uint16_t pa_to_tlb_entry(uintptr_t pa) in pa_to_tlb_entry() argument
68 return (((pa) / CONFIG_MM_DRV_PAGE_SIZE) & TLB_PADDR_MASK); in pa_to_tlb_entry()
Dmm_drv_common.c134 uintptr_t pa = phys + offset; in sys_mm_drv_simple_map_region() local
136 ret = sys_mm_drv_map_page(va, pa, flags); in sys_mm_drv_simple_map_region()
139 __ASSERT(false, "cannot map 0x%lx to %p\n", pa, va); in sys_mm_drv_simple_map_region()
263 uintptr_t pa; in sys_mm_drv_simple_remap_region() local
270 ret = sys_mm_drv_page_phys_get(va_old, &pa); in sys_mm_drv_simple_remap_region()
302 ret = sys_mm_drv_map_page(va_new, pa, flags); in sys_mm_drv_simple_remap_region()
304 __ASSERT(false, "cannot map 0x%lx to %p\n", pa, va_new); in sys_mm_drv_simple_remap_region()
361 uintptr_t pa = phys_new + offset; in sys_mm_drv_simple_move_region() local
382 ret = sys_mm_drv_map_page(va_new, pa, flags); in sys_mm_drv_simple_move_region()
384 __ASSERT(false, "cannot map 0x%lx to %p\n", pa, va_new); in sys_mm_drv_simple_move_region()
/Zephyr-latest/dts/bindings/lora/
Dsemtech,sx127x-base.yaml29 'rfo-enable-gpios' nor 'pa-boost-enable-gpios' is specified. In other
33 - "pa-boost"
50 pa-boost-enable-gpios:
/Zephyr-latest/dts/bindings/net/wireless/
Dgeneric-fem-two-ctrl-pins.yaml8 The CTX control pin is used to enable the Power Amplifier (PA) in
10 the "PA pin" in other contexts.
50 TX gain of the PA of the FEM device, in dB.
/Zephyr-latest/boards/silabs/dev_kits/sltb004a/
Dsltb004a-pinctrl.dtsi13 /* configure PA.1 as UART_RX */
18 /* configure PA.0 as UART_TX */
/Zephyr-latest/dts/arm/silabs/
Defr32xg13p-pinctrl.dtsi13 /* configure PA.1 as UART_RX */
18 /* configure PA.0 as UART_TX */
Defr32xg1p-pinctrl.dtsi13 /* configure PA.1 as UART_RX */
18 /* configure PA.0 as UART_TX */
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/
Dradio_nrf5_fem_nrf21540.h18 * PA pin tx-en-gpios
19 * PA offset tx-en-settle-time-us
36 /* This FEM's PA and LNA offset properties have defaults set. */
Dradio_nrf5_fem_generic.h18 * PA pin ctx-gpios
19 * PA offset ctx-settle-time-us
/Zephyr-latest/tests/bsim/bluetooth/audio/src/
Dbap_scan_delegator_test.c131 FAIL("PA timeout\n"); in pa_timer_handler()
184 printk("PA sync pending for addr %s\n", addr_str); in pa_sync_no_past()
204 printk("Deleting PA sync\n"); in pa_sync_term()
250 printk("PA Sync request: past_avail %u, pa_interval 0x%04x\n: %p", in pa_sync_req_cb()
290 printk("PA Sync term request for %p\n", recv_state); in pa_sync_term_req_cb()
367 printk("PA %p synced\n", sync); in pa_synced_cb()
379 FAIL("Could not get sync state from PA sync %p\n", sync); in pa_synced_cb()
393 printk("PA %p sync terminated\n", sync); in pa_term_cb()
397 FAIL("Could not get sync state from PA sync %p\n", sync); in pa_term_cb()
457 FAIL("Could not create PA sync (err %d)\n", err); in broadcast_source_found()
[all …]
Dbap_broadcast_sink_test.c322 /* Store info for PA sync parameters */ in scan_check_and_sync_broadcast()
346 printk("PA sync %p synced for broadcast sink with broadcast ID 0x%06X\n", sync, in bap_pa_sync_synced_cb()
357 printk("PA sync %p lost with reason %u\n", sync, info->reason); in bap_pa_sync_terminated_cb()
704 printk("Scan stopped, attempting to PA sync to the broadcaster with id 0x%06X\n", in test_scan_and_pa_sync()
708 FAIL("Could not create Broadcast PA sync: %d\n", err); in test_scan_and_pa_sync()
712 printk("Waiting for PA sync\n"); in test_scan_and_pa_sync()
931 printk("Broadcast source PA synced, waiting for BASE\n"); in test_common()
966 /* The order of PA sync lost and BIG Sync lost is irrelevant in test_main()
967 * and depend on timeout parameters. We just wait for PA first, but in test_main()
970 printk("Waiting for PA disconnected\n"); in test_main()
[all …]
/Zephyr-latest/subsys/bluetooth/audio/
Dbap_internal.h103 return "Not synchronized to PA"; in bt_bap_pa_state_str()
107 return "Synchronized to PA"; in bt_bap_pa_state_str()
109 return "Failed to synchronize to PA"; in bt_bap_pa_state_str()
/Zephyr-latest/arch/arm/core/mmu/
Darm_mmu.c113 static void arm_mmu_l2_map_page(uint32_t va, uint32_t pa,
402 * @param pa 32-bit physical address to be mapped.
406 static void arm_mmu_l1_map_section(uint32_t va, uint32_t pa, in arm_mmu_l1_map_section() argument
413 "Unexpected non-zero L1 PTE ID %u for VA 0x%08X / PA 0x%08X", in arm_mmu_l1_map_section()
415 va, pa); in arm_mmu_l1_map_section()
434 (pa >> ARM_MMU_PTE_L1_INDEX_PA_SHIFT); in arm_mmu_l1_map_section()
551 * @param pa 32-bit physical address.
555 static void arm_mmu_l2_map_page(uint32_t va, uint32_t pa, in arm_mmu_l2_map_page() argument
572 l2_page_table = arm_mmu_assign_l2_table(pa); in arm_mmu_l2_map_page()
667 ((pa >> ARM_MMU_PTE_L2_SMALL_PAGE_ADDR_SHIFT) & in arm_mmu_l2_map_page()
[all …]
/Zephyr-latest/boards/ezurio/bl654_dvk/
Dboard.yml8 - name: pa

1234567