Searched full:partition (Results 1 – 25 of 657) sorted by relevance
12345678910>>...27
/Zephyr-Core-3.5.0/dts/bindings/mtd/ |
D | fixed-partitions.yaml | 13 boot_partition: partition@0 { 17 slot0_partition: partition@c000 { 21 slot1_partition: partition@82000 { 32 * Storage partition will be used by FCB/LittleFS/NVS 35 storage_partition: partition@f8000 { 49 the partition begins at that offset from the parent flash 50 memory flash0's base address. That is, partition addresses 52 the start address of flash0 in memory to each partition's 63 represent the start offset of each partition. 70 represent the size of each partition in bytes. [all …]
|
D | zephyr,emu-eeprom.yaml | 17 partition: 20 description: Flash partition used to store the emulated EEPROM data 24 partition-erase: 27 Delay erase until complete partition is used. This enables a 28 ram buffer to allow data to be copied during the partition erase. If 29 power is lost during the partition erase the data will be lost.
|
/Zephyr-Core-3.5.0/include/zephyr/devicetree/ |
D | fixed-partitions.h | 20 * @defgroup devicetree-fixed-partition Devicetree Fixed Partition API 26 * @brief Get a node identifier for a fixed partition with 34 * boot_partition: partition@0 { 37 * slot0_partition: partition@c000 { 50 * @return a node identifier for the partition with that label property 56 * @brief Test if a fixed partition with a given label property exists 65 * @brief Test if fixed-partition compatible node exists 68 * @return 1 if node exists and is fixed-partition compatible, 0 otherwise. 74 * @brief Get a numeric identifier for a fixed partition 76 * @return the partition's ID, a unique zero-based index number [all …]
|
/Zephyr-Core-3.5.0/tests/kernel/mem_protect/mem_protect/src/ |
D | mem_domain.c | 28 /* Set of read-write buffers each in their own partition */ 33 /* A single read-only partition */ 37 /* A partition to test overlap that has same ro_buf as a partition ro_part */ 81 0, "cannot add memory partition"); in test_mem_domain_setup() 152 * Join a memory domain with a read-write memory partition and a read-only 153 * partition within it, and show that the data in the partition is accessible 177 * @brief Show that a read-only partition can't be written to 183 /* Show that trying to write to a read-only partition causes a fault */ in ZTEST() 190 * Show that removing a partition doesn't affect access to other partitions. 191 * Show that removing a partition generates a fault if its data is accessed. [all …]
|
/Zephyr-Core-3.5.0/samples/tfm_integration/tfm_secure_partition/ |
D | README.rst | 3 TF-M Secure Partition Sample 9 A Secure Partition is an isolated module that resides in TF-M. It exposes a number of functions or 14 This sample creates a dummy secure partition and secure service for TF-M and instructs the TF-M 18 This dummy partition has a single secure service, which can index one of 5 dummy secrets inside the 19 partition, and retrieve a hash of the secret. 21 The partition is located in the ``dummy_partition`` directory. It contains the partition sources, 22 build files and build configuration files. The partition is built by the TF-M build system, refer to 28 When adapting this partition for your own purposes, please change all occurrences of 29 "dummy_partition", "DUMMY_PARTITION", "dp", and "DP" to your own partition name. Also, look through 31 files inside "partition".
|
/Zephyr-Core-3.5.0/boards/arm/nrf5340_audio_dk_nrf5340/ |
D | Kconfig.defconfig | 11 # Code Partition: 14 # of the flash, or into the code-partition defined in DT if it is intended to 17 # be restricted to the size of its code partition. 20 # must be linked into the code-partition (non-secure) defined in DT, regardless. 24 # SRAM Partition: 28 # be restricted to the secure image SRAM partition (sram-secure-partition). 33 # always restricted to the allocated non-secure SRAM partition. 36 DT_CHOSEN_Z_CODE_PARTITION := zephyr,code-partition 37 DT_CHOSEN_Z_SRAM_PARTITION := zephyr,sram-secure-partition
|
/Zephyr-Core-3.5.0/boards/arm/nrf52840_mdk_usb_dongle/ |
D | fstab-debugger.dtsi | 7 /* Flash partition table without support for Nordic nRF5 bootloader */ 15 /* The size of this partition ensures that MCUBoot can be built 18 boot_partition: partition@0 { 23 slot0_partition: partition@12000 { 27 slot1_partition: partition@7b000 { 31 scratch_partition: partition@e4000 { 35 storage_partition: partition@fc000 {
|
D | fstab-stock.dtsi | 7 /* Flash partition table compatible with Nordic nRF5 bootloader */ 16 * The size of this partition ensures that MCUBoot 19 boot_partition: partition@1000 { 24 slot0_partition: partition@10000 { 28 slot1_partition: partition@6e000 { 32 storage_partition: partition@cc000 { 36 scratch_partition: partition@d0000 {
|
/Zephyr-Core-3.5.0/modules/trusted-firmware-m/ |
D | Kconfig.tfm.crypto_modules | 14 Enables the random number generator module within the crypto partition. 21 Enables the KEY crypto module within the crypto partition. 29 Enables the AEAD crypto module within the crypto partition. 37 Enables the MAC crypto module within the crypto partition. 45 Enables the HASH crypto module within the crypto partition. 53 Enables the CIPHER crypto module within the crypto partition. 61 Enables the ASYM ENCRYPT crypto module within the crypto partition. 69 Enables the ASYM SIGN crypto module within the crypto partition. 77 Enables the KEY_DERIVATION crypto module within the crypto partition.
|
/Zephyr-Core-3.5.0/include/zephyr/app_memory/ |
D | mem_domain.h | 31 * @brief Statically declare a memory partition 45 * @brief Memory Partition 47 * A memory partition is a region of memory in the linear address space 56 /** start address of memory partition */ 58 /** size of memory partition */ 60 /** attribute of memory partition */ 99 * This memory domain has the z_libc_partition partition for the C library 115 * partition constraints. 133 * @brief Add a memory partition into a memory domain. 135 * Add a memory partition into a memory domain. Partitions must conform to [all …]
|
D | app_memdomain.h | 23 * @brief Name of the data section for a particular partition 28 * @param id Partition name 33 * @brief Name of the bss section for a particular partition 38 * @param id Partition name 43 * @brief Place data in a partition's data section 46 * specified memory partition. This data should be initialized to some 49 * @param id Name of the memory partition to associate this data 54 * @brief Place data in a partition's bss section 57 * specified memory partition. This data will be zeroed at boot. 59 * @param id Name of the memory partition to associate this data [all …]
|
/Zephyr-Core-3.5.0/boards/arm/raytac_mdbt53v_db_40_nrf5340/ |
D | Kconfig.defconfig | 25 # Code Partition: 28 # of the flash, or into the code-partition defined in DT if it is intended to 31 # be restricted to the size of its code partition. 34 # must be linked into the code-partition (non-secure) defined in DT, regardless. 38 # SRAM Partition: 42 # be restricted to the secure image SRAM partition (sram-secure-partition). 47 # always restricted to the allocated non-secure SRAM partition. 50 DT_CHOSEN_Z_CODE_PARTITION := zephyr,code-partition 51 DT_CHOSEN_Z_SRAM_PARTITION := zephyr,sram-secure-partition
|
/Zephyr-Core-3.5.0/boards/arm/nrf5340dk_nrf5340/ |
D | Kconfig.defconfig | 26 # Code Partition: 29 # of the flash, or into the code-partition defined in DT if it is intended to 32 # be restricted to the size of its code partition. 35 # must be linked into the code-partition (non-secure) defined in DT, regardless. 39 # SRAM Partition: 43 # be restricted to the secure image SRAM partition (sram-secure-partition). 48 # always restricted to the allocated non-secure SRAM partition. 51 DT_CHOSEN_Z_CODE_PARTITION := zephyr,code-partition 52 DT_CHOSEN_Z_SRAM_PARTITION := zephyr,sram-secure-partition
|
/Zephyr-Core-3.5.0/boards/arm/raytac_mdbt53_db_40_nrf5340/ |
D | Kconfig.defconfig | 26 # Code Partition: 29 # of the flash, or into the code-partition defined in DT if it is intended to 32 # be restricted to the size of its code partition. 35 # must be linked into the code-partition (non-secure) defined in DT, regardless. 39 # SRAM Partition: 43 # be restricted to the secure image SRAM partition (sram-secure-partition). 48 # always restricted to the allocated non-secure SRAM partition. 51 DT_CHOSEN_Z_CODE_PARTITION := zephyr,code-partition 52 DT_CHOSEN_Z_SRAM_PARTITION := zephyr,sram-secure-partition
|
/Zephyr-Core-3.5.0/samples/tfm_integration/tfm_ipc/boards/ |
D | nucleo_l552ze_q_ns.overlay | 8 /* This partition table should be used along with TFM configuration: 13 * The partition sizes are compatible with the TF-M platform 19 zephyr,code-partition = &slot1_partition; 30 boot_partition: partition@0 { 36 slot0_partition: partition@14000 { 41 slot1_partition: partition@41000 { 49 storage_partition: partition@7f000 {
|
/Zephyr-Core-3.5.0/tests/arch/arm/arm_thread_swap_tz/boards/ |
D | nucleo_l552ze_q_ns.overlay | 8 /* This partition table should be used along with TFM configuration: 12 * The partition sizes are compatible with TF-M platform flash_layout.h. 17 zephyr,code-partition = &slot1_partition; 28 boot_partition: partition@0 { 34 slot0_partition: partition@00014000 { 39 slot1_partition: partition@41000 { 47 storage_partition: partition@7F000 {
|
/Zephyr-Core-3.5.0/tests/subsys/fs/littlefs/boards/ |
D | mimxrt1060_evk.overlay | 13 boot_partition: partition@0 { 17 slot0_partition: partition@10000 { 21 large_partition: partition@310000 { 25 scratch_partition: partition@610000 { 29 small_partition: partition@630000 { 33 medium_partition: partition@640000 {
|
/Zephyr-Core-3.5.0/boards/arm/nrf52840dongle_nrf52840/ |
D | fstab-debugger.dtsi | 7 /* Flash partition table without support for Nordic nRF5 bootloader */ 15 /* The size of this partition ensures that MCUBoot can be built 18 boot_partition: partition@0 { 23 slot0_partition: partition@12000 { 27 slot1_partition: partition@87000 { 31 storage_partition: partition@fc000 {
|
D | fstab-stock.dtsi | 7 /* Flash partition table compatible with Nordic nRF5 bootloader */ 17 * will be placed at 0x0. The size of this partition ensures that MCUBoot can 20 boot_partition: partition@0 { 25 slot0_partition: partition@10000 { 29 slot1_partition: partition@76000 { 33 storage_partition: partition@dc000 {
|
/Zephyr-Core-3.5.0/boards/arm/thingy53_nrf5340/ |
D | Kconfig.defconfig | 11 # Code Partition: 14 # of the flash, or into the code-partition defined in DT if it is intended to 17 # be restricted to the size of its code partition. 20 # must be linked into the code-partition (non-secure) defined in DT, regardless. 24 # SRAM Partition: 28 # be restricted to the secure image SRAM partition (sram-secure-partition). 33 # always restricted to the allocated non-secure SRAM partition. 36 DT_CHOSEN_Z_CODE_PARTITION := zephyr,code-partition 37 DT_CHOSEN_Z_SRAM_PARTITION := zephyr,sram-secure-partition
|
/Zephyr-Core-3.5.0/boards/arm/b_u585i_iot02a/ |
D | b_u585i_iot02a_ns.dts | 19 zephyr,code-partition = &slot0_ns_partition; 37 * Following flash partition is compatible with requirements 42 boot_partition: partition@0 { 48 slot0_partition: partition@38000 { 53 slot0_ns_partition: partition@98000 { 58 slot1_partition: partition@118000 { 63 slot1_ns_partition: partition@178000 { 68 storage_partition: partition@1f8000 {
|
D | b_u585i_iot02a.dts | 19 zephyr,code-partition = &slot0_partition; 36 * Following flash partition is dedicated to the use of b_u585i_iot02a 40 boot_partition: partition@0 { 44 slot0_partition: partition@10000 { 48 slot1_partition: partition@78000 { 52 scratch_partition: partition@e0000 { 56 storage_partition: partition@f0000 {
|
/Zephyr-Core-3.5.0/samples/tfm_integration/tfm_regression_test/boards/ |
D | nucleo_l552ze_q_ns.overlay | 8 /* This partition table could be used along with TFM configuration: 16 zephyr,code-partition = &slot1_partition; 27 boot_partition: partition@0 { 33 slot0_partition: partition@14000 { 38 slot1_partition: partition@4c000 { 46 storage_partition: partition@77000 {
|
/Zephyr-Core-3.5.0/boards/arm/bl5340_dvk/ |
D | Kconfig.defconfig | 31 # Code Partition: 34 # of the flash, or into the code-partition defined in DT if it is intended to 37 # be restricted to the size of its code partition. 40 # must be linked into the code-partition (non-secure) defined in DT, regardless. 44 # SRAM Partition: 48 # be restricted to the secure image SRAM partition (sram-secure-partition). 53 # always restricted to the allocated non-secure SRAM partition. 56 DT_CHOSEN_Z_CODE_PARTITION := zephyr,code-partition 57 DT_CHOSEN_Z_SRAM_PARTITION := zephyr,sram-secure-partition
|
/Zephyr-Core-3.5.0/samples/subsys/fs/fs_sample/boards/ |
D | nrf52840dk_nrf52840.overlay | 7 /* Because FAT FS needs at least 64kiB partition and default 11 * and removes the storage partition to add the additional 2*64kiB to 25 slot0_partition: partition@c000 { 28 slot1_partition: partition@72000 { 32 storage_partition: partition@d8000 { 43 partition = <&storage_partition>;
|
12345678910>>...27