Searched refs:boundary (Results 1 – 15 of 15) sorted by relevance
/arm-trusted-firmware-2.8.0/include/lib/ |
A D | utils_def.h | 98 #define round_boundary(value, boundary) \ argument 99 ((__typeof__(value))((boundary) - 1)) 101 #define round_up(value, boundary) \ argument 102 ((((value) - 1) | round_boundary(value, boundary)) + 1) 104 #define round_down(value, boundary) \ argument 105 ((value) & ~round_boundary(value, boundary)) 110 #define is_aligned(value, boundary) \ argument 111 (round_up((uintptr_t) value, boundary) == \ 112 round_down((uintptr_t) value, boundary))
|
/arm-trusted-firmware-2.8.0/plat/rockchip/common/drivers/parameter/ |
A D | ddr_parameter.c | 68 p.boundary = max_mb; in ddr_region_usage_parse() 120 if (p.ns_top[i] == p.boundary) in ddr_region_usage_parse() 130 p.s_top[p.s_nr] = p.boundary; in ddr_region_usage_parse()
|
A D | ddr_parameter.h | 31 uint64_t boundary; member
|
/arm-trusted-firmware-2.8.0/docs/resources/diagrams/plantuml/ |
A D | tfa_dfd.puml | 24 # Nodes outside of the trust boundary 31 # Trust boundary cluster
|
A D | el3_spm_dfd.puml | 23 # Nodes outside of the trust boundary 28 # Trust boundary cluster
|
A D | spm_dfd.puml | 21 # Nodes outside of the trust boundary 25 # Trust boundary cluster
|
/arm-trusted-firmware-2.8.0/drivers/brcm/emmc/ |
A D | emmc_chal_sd.c | 69 static void chal_sd_set_dma_boundary(struct sd_dev *handle, uint32_t boundary); 159 static void chal_sd_set_dma_boundary(struct sd_dev *handle, uint32_t boundary) in chal_sd_set_dma_boundary() argument 166 SD4_EMMC_TOP_BLOCK_HSBS_MASK, boundary); in chal_sd_set_dma_boundary() 953 uint32_t boundary, uint32_t blkSize, uint32_t dma) in chal_sd_config() argument 964 handle->cfg.dmaBoundary = boundary; in chal_sd_config() 969 chal_sd_set_dma_boundary(handle, boundary); in chal_sd_config()
|
/arm-trusted-firmware-2.8.0/plat/nvidia/tegra/scat/ |
A D | bl31.scat | 20 /* BL31_BASE address must be aligned on a page boundary. */ 219 * CACHE_WRITEBACK_GRANULE boundary
|
/arm-trusted-firmware-2.8.0/include/drivers/brcm/emmc/ |
A D | emmc_chal_sd.h | 172 uint32_t retry, uint32_t boundary,
|
/arm-trusted-firmware-2.8.0/docs/threat_model/ |
A D | threat_model_fvp_r.rst | 80 - ID 08: Memory corruption due to memory overflows and lack of boundary
|
A D | threat_model.rst | 625 | | lack of boundary checking when accessing resources | 635 | | buffer overflow, incorrect array boundary checks, |
|
/arm-trusted-firmware-2.8.0/docs/getting_started/ |
A D | porting-guide.rst | 68 page boundary (4K) for each BL stage. All sections which allocate coherent 184 aligned on a page-size boundary. 194 at runtime. Must be aligned on a page-size boundary. 204 Must be aligned on a page-size boundary. This constant is not applicable 227 at runtime. Must be aligned on a page-size boundary. This constant is only 239 image. Must be aligned on a page-size boundary. 321 image. Must be aligned on a page-size boundary. 349 Must be aligned on a page-size boundary. 365 Must be aligned on a page-size boundary. 421 image. Must be aligned on a page-size boundary. [all …]
|
/arm-trusted-firmware-2.8.0/docs/design/ |
A D | firmware-design.rst | 1567 boundary. Refer to the value of ``__<SECTION>_UNALIGNED_END__`` to know the 1614 - ``__COHERENT_RAM_START__`` Must be aligned on a page-size boundary. 1615 - ``__COHERENT_RAM_END__`` Must be aligned on a page-size boundary. 1637 aligned on a 16-byte boundary. 1639 copied over. Must be aligned on a 16-byte boundary. 2282 +-------------------+ Page boundary 2286 +-------------------+ 2 KB boundary 2302 However, the read-only data are not aligned on a page boundary. They are 2327 +-------------------+ Page boundary 2331 +-------------------+ Page boundary [all …]
|
/arm-trusted-firmware-2.8.0/docs/process/ |
A D | coding-style.rst | 70 except in the case where a term is being indented to a boundary that cannot be
|
A D | coding-guidelines.rst | 362 member crosses a 32-bit boundary.
|
Completed in 41 milliseconds