Searched refs:FLASH_SUBREGION_SIZE (Results 1 – 2 of 2) sorted by relevance
236 SPM_ASSERT((memory_regions.non_secure_partition_base % FLASH_SUBREGION_SIZE) == 0); in mpc_init_cfg()237 SPM_ASSERT(((memory_regions.non_secure_partition_limit+1) % FLASH_SUBREGION_SIZE) == 0); in mpc_init_cfg()246 ns_region_start_id = memory_regions.non_secure_partition_base/FLASH_SUBREGION_SIZE; in mpc_init_cfg()247 ns_region_end_id = (memory_regions.non_secure_partition_limit+1)/FLASH_SUBREGION_SIZE; in mpc_init_cfg()270 SPM_ASSERT((memory_regions.secondary_partition_base % FLASH_SUBREGION_SIZE) == 0); in mpc_init_cfg()271 SPM_ASSERT(((memory_regions.secondary_partition_limit+1) % FLASH_SUBREGION_SIZE) == 0); in mpc_init_cfg()274 ns_region_start_id = memory_regions.secondary_partition_base/FLASH_SUBREGION_SIZE; in mpc_init_cfg()275 ns_region_end_id = (memory_regions.secondary_partition_limit+1)/FLASH_SUBREGION_SIZE; in mpc_init_cfg()
127 #define FLASH_SUBREGION_SIZE (0x8000) /* 32 kB */ macro