/Zephyr-latest/dts/bindings/ethernet/ |
D | silabs,gecko-ethernet.yaml | 26 # RMII interface location 27 location-rmii: 30 description: location of RMII pins, configuration defined as <location> 32 # PHY management interface location 33 location-mdio: 36 description: location of MDC and MDIO pins, configuration defined as <location> 39 location-phy_mdc: 42 description: PHY MDC individual pin configuration defined as <location port pin> 44 location-phy_mdio: 47 description: PHY MDIO individual pin configuration defined as <location port pin> [all …]
|
/Zephyr-latest/dts/bindings/serial/ |
D | silabs,gecko-usart.yaml | 18 # Note: Not all SoC series support setting individual pin location. If this 19 # is a case all location-* properties need to have identical value. 21 location-rx: 23 description: RX pin configuration defined as <location port pin> 25 location-tx: 27 description: TX pin configuration defined as <location port pin> 29 location-rts: 31 description: RTS pin configuration defined as <location port pin> 33 location-cts: 35 description: CTS pin configuration defined as <location port pin>
|
D | silabs,gecko-leuart.yaml | 19 # Note: Not all SoC series support setting individual pin location. If this 20 # is a case all location-* properties need to have identical value. 22 location-rx: 25 description: RX pin configuration defined as <location port pin> 27 location-tx: 30 description: TX pin configuration defined as <location port pin>
|
D | silabs,gecko-uart.yaml | 19 # Note: Not all SoC series support setting individual pin location. If this 20 # is a case all location-* properties need to have identical value. 22 location-rx: 25 description: RX pin configuration defined as <location port pin> 27 location-tx: 30 description: TX pin configuration defined as <location port pin>
|
/Zephyr-latest/subsys/demand_paging/backing_store/ |
D | ram.c | 21 * address space. Implementation of these is very simple; the location 37 * k_mem_paging_backing_store_page_finalize() note the storage location of 41 * the previous clean page location instead of allocating 59 static void *location_to_slab(uintptr_t location) in location_to_slab() argument 61 __ASSERT(location % CONFIG_MMU_PAGE_SIZE == 0, in location_to_slab() 62 "unaligned location 0x%lx", location); in location_to_slab() 63 __ASSERT(location < in location_to_slab() 65 "bad location 0x%lx, past bounds of backing store", location); in location_to_slab() 67 return backing_store + location; in location_to_slab() 86 uintptr_t *location, in k_mem_paging_backing_store_location_get() argument [all …]
|
D | backing_store_qemu_x86_tiny.c | 25 void *location_to_flash(uintptr_t location) in location_to_flash() argument 27 uintptr_t ptr = location; in location_to_flash() 44 uintptr_t *location, in k_mem_paging_backing_store_location_get() argument 48 *location = POINTER_TO_UINT(k_mem_page_frame_to_virt(pf)); in k_mem_paging_backing_store_location_get() 53 void k_mem_paging_backing_store_location_free(uintptr_t location) in k_mem_paging_backing_store_location_free() argument 58 void k_mem_paging_backing_store_page_out(uintptr_t location) in k_mem_paging_backing_store_page_out() argument 60 (void)memcpy(location_to_flash(location), K_MEM_SCRATCH_PAGE, in k_mem_paging_backing_store_page_out() 64 void k_mem_paging_backing_store_page_in(uintptr_t location) in k_mem_paging_backing_store_page_in() argument 66 (void)memcpy(K_MEM_SCRATCH_PAGE, location_to_flash(location), in k_mem_paging_backing_store_page_in() 71 uintptr_t location) in k_mem_paging_backing_store_page_finalize() argument
|
D | backing_store_ondemand_semihost.c | 19 uintptr_t *location, in k_mem_paging_backing_store_location_get() argument 24 k_mem_page_frame_to_virt(pf), location); in k_mem_paging_backing_store_location_get() 31 void k_mem_paging_backing_store_location_free(uintptr_t location) in k_mem_paging_backing_store_location_free() argument 35 void k_mem_paging_backing_store_page_out(uintptr_t location) in k_mem_paging_backing_store_page_out() argument 41 void k_mem_paging_backing_store_page_in(uintptr_t location) in k_mem_paging_backing_store_page_in() argument 45 if (semihost_seek(semih_fd, (long)location) != 0 || in k_mem_paging_backing_store_page_in() 52 uintptr_t location) in k_mem_paging_backing_store_page_finalize() argument 57 int k_mem_paging_backing_store_location_query(void *addr, uintptr_t *location) in k_mem_paging_backing_store_location_query() argument 64 *location = file_offset; in k_mem_paging_backing_store_location_query()
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | Kconfig.pacs | 23 bool "Sink PAC Location Support" 26 This option enables support for Sink PAC Location Characteristic. 29 bool "Sink PAC Location Writable Support" 33 Location Characteristic. 36 bool "Sink Audio Location Notifiable Support" 40 Audio Location Characteristic changes. 58 bool "Source PAC Location Support" 61 This option enables support for Source PAC Location Characteristic. 64 bool "Source PAC Location Writable Support" 68 Location Characteristic. [all …]
|
/Zephyr-latest/dts/bindings/spi/ |
D | silabs,gecko-spi-usart.yaml | 18 # Note: Not all SoC series support setting individual pin location. If this 19 # is a case all location-* properties need to have identical value. 21 location-rx: 23 description: RX pin configuration defined as <location port pin> 25 location-tx: 27 description: TX pin configuration defined as <location port pin> 29 location-clk: 31 description: CLK pin configuration defined as <location port pin>
|
/Zephyr-latest/tests/application_development/code_relocation/ |
D | CMakeLists.txt | 18 zephyr_code_relocate(FILES src/test_file1.c ${SRAM2_PHDR} LOCATION SRAM2) 20 zephyr_code_relocate(FILES ${CMAKE_CURRENT_SOURCE_DIR}/src/test_file2.c ${RAM_PHDR} LOCATION RAM) 27 zephyr_code_relocate(LIBRARY test_lib LOCATION SRAM2) 33 zephyr_code_relocate(FILES ${genex_expr} LOCATION SRAM2) 35 zephyr_code_relocate(FILES src/test_file3.c LOCATION SRAM2_LITERAL) 36 zephyr_code_relocate(FILES src/test_file3.c LOCATION SRAM2_TEXT) 37 zephyr_code_relocate(FILES src/test_file3.c LOCATION RAM_DATA) 38 zephyr_code_relocate(FILES src/test_file3.c LOCATION SRAM2_BSS) 40 # Test NOKEEP support. Placing both KEEP and NOKEEP symbols in the same location 42 zephyr_code_relocate(FILES ${ZEPHYR_BASE}/kernel/sem.c ${RAM_PHDR} LOCATION RAM NOKEEP) [all …]
|
/Zephyr-latest/subsys/net/lib/lwm2m/ |
D | lwm2m_obj_location.c | 45 static struct lwm2m_engine_obj location; variable 65 LOG_ERR("Only 1 instance of Location object can exist."); in location_create() 86 LOG_DBG("Create Location instance: %d", obj_inst_id); in location_create() 96 location.obj_id = LWM2M_OBJECT_LOCATION_ID; in ipso_location_init() 97 location.version_major = LOCATION_VERSION_MAJOR; in ipso_location_init() 98 location.version_minor = LOCATION_VERSION_MINOR; in ipso_location_init() 99 location.is_core = true; in ipso_location_init() 100 location.fields = fields; in ipso_location_init() 101 location.field_count = ARRAY_SIZE(fields); in ipso_location_init() 102 location.max_instance_count = 1U; in ipso_location_init() [all …]
|
/Zephyr-latest/samples/boards/intel/adsp/code_relocation/ |
D | CMakeLists.txt | 10 zephyr_code_relocate(FILES src/reloc.c LOCATION SRAM2_LITERAL) 11 zephyr_code_relocate(FILES src/reloc.c LOCATION SRAM2_TEXT) 12 zephyr_code_relocate(FILES src/reloc.c LOCATION SRAM3_DATA) 13 zephyr_code_relocate(FILES src/reloc.c LOCATION SRAM3_RODATA) 14 zephyr_code_relocate(FILES src/reloc.c LOCATION SRAM4_BSS)
|
/Zephyr-latest/boards/silabs/starter_kits/slstk3701a/ |
D | slstk3701a.dts | 78 location-rx = <GECKO_LOCATION(18) GECKO_PORT_D GECKO_PIN(11)>; 79 location-tx = <GECKO_LOCATION(18) GECKO_PORT_D GECKO_PIN(10)>; 107 location-swo = <0>; 158 location-mdio = <GECKO_LOCATION(1)>; 159 location-phy_mdc = <GECKO_LOCATION(1) GECKO_PORT_D GECKO_PIN(14)>; 160 location-phy_mdio = <GECKO_LOCATION(1) GECKO_PORT_D GECKO_PIN(13)>; 163 location-rmii = <GECKO_LOCATION(1)>; 164 location-rmii_refclk = <GECKO_LOCATION(5) GECKO_PORT_D GECKO_PIN(10)>; 165 location-rmii_crs_dv = <GECKO_LOCATION(1) GECKO_PORT_D GECKO_PIN(11)>; 166 location-rmii_txd0 = <GECKO_LOCATION(1) GECKO_PORT_F GECKO_PIN(7)>; [all …]
|
/Zephyr-latest/include/zephyr/kernel/mm/ |
D | demand_paging.h | 323 * Reserve or fetch a storage location for a data page loaded into a page frame 325 * The returned location token must be unique to the mapped virtual address. 326 * This location will be used in the backing store to page out data page 327 * contents for later retrieval. The location value must be page-aligned. 331 * the previous backing store location for the data page containing a cached 335 * If the backing store is full, some other backing store location which caches 341 * entire address space may simply generate location tokens purely as a 345 * fault. A free backing store location must always be reserved in order for 347 * function should return -ENOMEM even if one location is available. 351 * @param pf Virtual address to obtain a storage location [all …]
|
/Zephyr-latest/boards/silabs/radio_boards/slwrb4321a/ |
D | slwrb4321a.dts | 94 location-swo = <0>; 127 location-mdio = <GECKO_LOCATION(3)>; 128 location-phy_mdc = <GECKO_LOCATION(3) GECKO_PORT_A GECKO_PIN(6)>; 129 location-phy_mdio = <GECKO_LOCATION(3) GECKO_PORT_A GECKO_PIN(15)>; 132 location-rmii = <GECKO_LOCATION(0)>; 133 location-rmii_refclk = <GECKO_LOCATION(0) GECKO_PORT_A GECKO_PIN(3)>; 134 location-rmii_crs_dv = <GECKO_LOCATION(0) GECKO_PORT_A GECKO_PIN(4)>; 135 location-rmii_txd0 = <GECKO_LOCATION(0) GECKO_PORT_E GECKO_PIN(15)>; 136 location-rmii_txd1 = <GECKO_LOCATION(0) GECKO_PORT_E GECKO_PIN(14)>; 137 location-rmii_tx_en = <GECKO_LOCATION(0) GECKO_PORT_A GECKO_PIN(0)>; [all …]
|
/Zephyr-latest/include/zephyr/bluetooth/audio/ |
D | bap_lc3_preset.h | 56 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 68 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 80 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 94 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 106 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 120 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 132 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 144 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 156 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 168 * @param _loc Audio channel location bitfield (@ref bt_audio_location) [all …]
|
D | gmap_lc3_preset.h | 39 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 51 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 63 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 77 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 89 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 103 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 115 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 127 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 139 * @param _loc Audio channel location bitfield (@ref bt_audio_location) 151 * @param _loc Audio channel location bitfield (@ref bt_audio_location) [all …]
|
/Zephyr-latest/samples/net/zperf/ |
D | CMakeLists.txt | 15 LOCATION "${CONFIG_NET_SAMPLE_CODE_RAM_NAME}_TEXT" NOKEEP) 17 LOCATION "${CONFIG_NET_SAMPLE_CODE_RAM_NAME}_TEXT" NOKEEP) 20 LOCATION "${CONFIG_NET_SAMPLE_CODE_RAM_NAME}_TEXT" NOKEEP) 22 LOCATION "${CONFIG_NET_SAMPLE_CODE_RAM_NAME}_TEXT" NOKEEP)
|
/Zephyr-latest/include/zephyr/sys/ |
D | byteorder.h | 313 * @brief Put a 16-bit integer as big-endian to arbitrary location. 316 * potentially unaligned memory location in big-endian format. 328 * @brief Put a 24-bit integer as big-endian to arbitrary location. 331 * potentially unaligned memory location in big-endian format. 343 * @brief Put a 32-bit integer as big-endian to arbitrary location. 346 * potentially unaligned memory location in big-endian format. 357 * @brief Put a 40-bit integer as big-endian to arbitrary location. 360 * potentially unaligned memory location in big-endian format. 372 * @brief Put a 48-bit integer as big-endian to arbitrary location. 375 * potentially unaligned memory location in big-endian format. [all …]
|
/Zephyr-latest/soc/nxp/imxrt/imxrt10xx/ |
D | CMakeLists.txt | 11 zephyr_code_relocate(FILES power.c LOCATION ITCM_TEXT) 14 zephyr_code_relocate(FILES lpm_rt1064 LOCATION ITCM_TEXT) 21 zephyr_code_relocate(FILES flexspi.c LOCATION ${CONFIG_FLASH_MCUX_FLEXSPI_XIP_MEM}_TEXT)
|
/Zephyr-latest/drivers/ipm/ |
D | Kconfig.intel_adsp | 26 Location of the host-writable inbox window within the 27 HP_SRAM_RESERVE region. This location must be synchronized 36 Location of the "outbox" region for SOF IPC3/4 message 39 location must be synchronized with host driver and SOF
|
/Zephyr-latest/doc/kernel/ |
D | code-relocation.rst | 57 ``zephyr_code_relocate(FILES src/*.c LOCATION SRAM2)`` 76 zephyr_code_relocate(FILES src/file1.c LOCATION SRAM2) 77 zephyr_code_relocate(FILES src/file2.c LOCATION SRAM) 85 zephyr_code_relocate(FILES src/file1.c LOCATION SRAM2_DATA) 86 zephyr_code_relocate(FILES src/file2.c LOCATION SRAM2_TEXT) 97 zephyr_code_relocate(FILES ${sources} LOCATION SRAM) 98 zephyr_code_relocate(FILES $<TARGET_PROPERTY:my_tgt,SOURCES> LOCATION SRAM) 111 zephyr_code_relocate(FILES src/file1.c LOCATION SRAM2_TEXT NOKEEP) 130 zephyr_code_relocate(FILES src/xip_external_flash.c LOCATION EXTFLASH_TEXT NOCOPY) 131 zephyr_code_relocate(FILES src/xip_external_flash.c LOCATION SRAM_DATA) [all …]
|
/Zephyr-latest/boards/silabs/dev_kits/sltb004a/ |
D | sltb004a.dts | 89 location-rx = <GECKO_LOCATION(30) GECKO_PORT_K GECKO_PIN(2)>; 90 location-tx = <GECKO_LOCATION(29) GECKO_PORT_K GECKO_PIN(0)>; 91 location-clk = <GECKO_LOCATION(18) GECKO_PORT_F GECKO_PIN(7)>; 114 location-rx = <GECKO_LOCATION(27) GECKO_PORT_F GECKO_PIN(4)>; 115 location-tx = <GECKO_LOCATION(27) GECKO_PORT_F GECKO_PIN(3)>; 161 location-sda = <GECKO_LOCATION(17) GECKO_PORT_C GECKO_PIN(4)>; 162 location-scl = <GECKO_LOCATION(17) GECKO_PORT_C GECKO_PIN(5)>; 167 location-sda = <GECKO_LOCATION(8) GECKO_PORT_B GECKO_PIN(8)>; 168 location-scl = <GECKO_LOCATION(8) GECKO_PORT_B GECKO_PIN(9)>; 182 pin-location = <GECKO_LOCATION(17) GECKO_PORT_D GECKO_PIN(9)>; [all …]
|
/Zephyr-latest/samples/application_development/code_relocation_nocopy/ |
D | CMakeLists.txt | 12 zephyr_code_relocate(FILES src/ext_code.c LOCATION EXTFLASH_TEXT NOCOPY) 15 zephyr_code_relocate(FILES src/ext_code.c LOCATION RAM_DATA) 18 zephyr_code_relocate(FILES src/sram_code.c LOCATION RAM)
|
/Zephyr-latest/tests/bsim/bluetooth/audio/src/ |
D | cap_initiator_broadcast_test.c | 54 #define LOCATION (BT_AUDIO_LOCATION_FRONT_LEFT | BT_AUDIO_LOCATION_FRONT_RIGHT) macro 69 BT_BAP_LC3_BROADCAST_PRESET_16_2_1(LOCATION, CONTEXT); 76 {"8_1_1", BT_BAP_LC3_BROADCAST_PRESET_8_1_1(LOCATION, CONTEXT)}, 77 {"8_2_1", BT_BAP_LC3_BROADCAST_PRESET_8_2_1(LOCATION, CONTEXT)}, 78 {"16_1_1", BT_BAP_LC3_BROADCAST_PRESET_16_1_1(LOCATION, CONTEXT)}, 79 {"16_2_1", BT_BAP_LC3_BROADCAST_PRESET_16_2_1(LOCATION, CONTEXT)}, 80 {"24_1_1", BT_BAP_LC3_BROADCAST_PRESET_24_1_1(LOCATION, CONTEXT)}, 81 {"24_2_1", BT_BAP_LC3_BROADCAST_PRESET_24_2_1(LOCATION, CONTEXT)}, 82 {"32_1_1", BT_BAP_LC3_BROADCAST_PRESET_32_1_1(LOCATION, CONTEXT)}, 83 {"32_2_1", BT_BAP_LC3_BROADCAST_PRESET_32_2_1(LOCATION, CONTEXT)}, [all …]
|