Home
last modified time | relevance | path

Searched refs:FLASH_SUBREGION_SIZE (Results 1 – 2 of 2) sorted by relevance

/trusted-firmware-m-latest/platform/ext/target/nxp/lpcxpresso55s69/
Dtarget_cfg.c69 assert((memory_regions.non_secure_partition_base % FLASH_SUBREGION_SIZE) == 0); in mpc_init_cfg()
70 assert(((memory_regions.non_secure_partition_limit+1) % FLASH_SUBREGION_SIZE) == 0); in mpc_init_cfg()
79 ns_region_start_id = memory_regions.non_secure_partition_base/FLASH_SUBREGION_SIZE; in mpc_init_cfg()
80 ns_region_end_id = (memory_regions.non_secure_partition_limit+1)/FLASH_SUBREGION_SIZE; in mpc_init_cfg()
103 assert((memory_regions.secondary_partition_base % FLASH_SUBREGION_SIZE) == 0); in mpc_init_cfg()
104 assert(((memory_regions.secondary_partition_limit+1) % FLASH_SUBREGION_SIZE) == 0); in mpc_init_cfg()
107 ns_region_start_id = memory_regions.secondary_partition_base/FLASH_SUBREGION_SIZE; in mpc_init_cfg()
108 ns_region_end_id = (memory_regions.secondary_partition_limit+1)/FLASH_SUBREGION_SIZE; in mpc_init_cfg()
/trusted-firmware-m-latest/platform/ext/target/nxp/lpcxpresso55s69/partition/
Dregion_defs.h122 #define FLASH_SUBREGION_SIZE (0x8000) /* 32 kB */ macro