Home
last modified time | relevance | path

Searched refs:start (Results 1 – 23 of 23) sorted by relevance

/mcuboot-latest/boot/mynewt/flash_map_backend/src/
Dflash_map_extended.c56 uint32_t start; in flash_area_sector_from_off() local
69 hf->hf_itf->hff_sector_info(hf, i, &start, &size); in flash_area_sector_from_off()
70 if (start < fa->fa_off) { in flash_area_sector_from_off()
73 if (off >= start - fa->fa_off && off <= (start - fa->fa_off) + size) { in flash_area_sector_from_off()
74 sector->fs_off = start - fa->fa_off; in flash_area_sector_from_off()
/mcuboot-latest/boot/zephyr/
Dmain.c309 void *start; in do_boot() local
325 start = (void *)(SRAM_BASE_ADDRESS + rsp->br_hdr->ih_hdr_size); in do_boot()
326 ((void (*)(void))start)(); in do_boot()
337 void *start; in do_boot() local
340 start = (void *)(rsp->br_hdr->ih_load_addr + rsp->br_hdr->ih_hdr_size); in do_boot()
348 start = (void *)(flash_base + rsp->br_image_off + in do_boot()
354 ((void (*)(void))start)(); in do_boot()
522 uint32_t start = k_uptime_get_32(); local
544 timeout_in_ms -= (k_uptime_get_32() - start);
DKconfig277 start-up code which can cause a module fault and potentially make the
467 hex "Boot image executable ram start"
/mcuboot-latest/boot/bootutil/src/
Dbootutil_priv.h486 uint32_t start; member
494 #define IMAGE_EXECUTABLE_RAM_START IMAGE_GET_FIELD(start)
501 #define LOAD_IMAGE_DATA(hdr, fap, start, output, size) \ argument
502 (memcpy((output),(void*)(IMAGE_RAM_BASE + (hdr)->ih_load_addr + (start)), \
509 #define LOAD_IMAGE_DATA(hdr, fap, start, output, size) \ argument
510 (flash_area_read((fap), (start), (output), (size)))
/mcuboot-latest/sim/mcuboot-sys/src/
Dlib.rs44 start: self.offset, in invoke()
Dapi.rs142 pub start: u32, field
/mcuboot-latest/boot/boot_serial/src/
Dboot_serial.c837 static off_t erase_range(const struct flash_area *fap, off_t start, off_t end) in erase_range() argument
847 if (end < start) { in erase_range()
848 return start; in erase_range()
855 size = flash_sector_get_off(&sect) + flash_sector_get_size(&sect) - start; in erase_range()
856 BOOT_LOG_DBG("Erasing range 0x%jx:0x%jx", (intmax_t)start, in erase_range()
857 (intmax_t)(start + size - 1)); in erase_range()
859 rc = flash_area_erase(fap, start, size); in erase_range()
865 return start + size; in erase_range()
1154 off_t start = flash_sector_get_off(&status_sector); in bs_upload() local
1156 if (erase_range(fap, start, start) < 0) { in bs_upload()
[all …]
/mcuboot-latest/boot/cypress/MCUBootApp/
DExternalMemory.md20 * The address for secondary slot should start from 0x18000000.
55 **Note 2**: make sure secondary slot start address is aligned (or smaller) to erase size (0x40000 -…
66 2. Navigate to `cy_flash_map.c` and check if secondary slot start address and size meet the applica…
76 …al boot image address. This one in line above suggests secondary slot will start from `0x18000000`.
/mcuboot-latest/ext/mbedtls-asn1/src/
Dasn1parse.c254 unsigned char *start, size_t len ), in mbedtls_asn1_traverse_sequence_of() argument
337 unsigned char *start, in asn1_get_sequence_of_cb() argument
356 cur->buf.p = start; in asn1_get_sequence_of_cb()
/mcuboot-latest/boot/cypress/BlinkyApp/
DReadme.md30 Pre-build action is implemented for defining start address and size of flash, as well as RAM start
74 * first image BOOT (PRIMARY) slot start `0x10018000`
76 * second image BOOT (PRIMARY) slot start `0x10038000`
92 …al boot image address. This one in line above suggests secondary slot will start from `0x18000000`.
/mcuboot-latest/ci/fih_test_docker/
Dfi_tester_gdb.sh105 … arm-none-eabi-objdump -d $AXF_FILE --start-address=$SKIP_ADDRESS -S | tail -n +7 | head -n 14 1>&2
/mcuboot-latest/ext/mbedtls-asn1/include/mbedtls/
Dasn1.h502 unsigned char* start, size_t len ),
Dpk.h848 int mbedtls_pk_write_pubkey( unsigned char **p, unsigned char *start,
/mcuboot-latest/boot/espressif/port/esp32c2/ld/
Dbootloader.ld46 /* The app may use RAM for static allocations up to the start of iram_loader_seg.
48 * 1. Check what the new value of bootloader_iram_loader_seg start is.
/mcuboot-latest/boot/espressif/port/esp32c6/ld/
Dbootloader.ld43 /* The app may use RAM for static allocations up to the start of iram_loader_seg.
45 * 1. Check what the new value of bootloader_iram_loader_seg start is.
/mcuboot-latest/boot/espressif/port/esp32h2/ld/
Dbootloader.ld44 /* The app may use RAM for static allocations up to the start of iram_loader_seg.
46 * 1. Check what the new value of bootloader_iram_loader_seg start is.
/mcuboot-latest/boot/zcbor/src/
Dzcbor_encode.c415 const uint8_t *start = state->payload + max_header_len - header_len; local
416 size_t body_size = (size_t)payload - (size_t)start;
418 memmove(state->payload_mut, start, body_size);
/mcuboot-latest/ptest/src/
Dmain.rs78 state.lock().unwrap().start(&env); in main()
144 fn start(&mut self, fs: &FeatureSet) { in start() method
/mcuboot-latest/docs/
Dreadme-mbed.md41 … slots (instead of the beginning of the whole flash), you need to set the start address (`"target.…
/mcuboot-latest/boot/cypress/
DREADME.md7 …ModusToolbox® Software Environment** are a recommended reference point to start development of MCU…
/mcuboot-latest/boot/mbed/
Dmcuboot_imgtool.cmake141 # We need to be slightly creative here -- Mbed thinks that the application start address
/mcuboot-latest/boot/cypress/BlinkyApp/linker/
DBlinkyApp_template.ld47 /* The size of the MCU boot header area at the start of FLASH */
/mcuboot-latest/boot/cypress/platforms/PSOC_062_2M/CM4/GCC_ARM/
Dcy8c6xxa_cm4_dual.ld46 /* The size of the Cortex-M0+ application image at the start of FLASH */