Home
last modified time | relevance | path

Searched refs:boundary (Results 1 – 15 of 15) sorted by relevance

/arm-trusted-firmware-2.8.0/include/lib/
A Dutils_def.h98 #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 Dddr_parameter.c68 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 Dddr_parameter.h31 uint64_t boundary; member
/arm-trusted-firmware-2.8.0/docs/resources/diagrams/plantuml/
A Dtfa_dfd.puml24 # Nodes outside of the trust boundary
31 # Trust boundary cluster
A Del3_spm_dfd.puml23 # Nodes outside of the trust boundary
28 # Trust boundary cluster
A Dspm_dfd.puml21 # Nodes outside of the trust boundary
25 # Trust boundary cluster
/arm-trusted-firmware-2.8.0/drivers/brcm/emmc/
A Demmc_chal_sd.c69 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 Dbl31.scat20 /* 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 Demmc_chal_sd.h172 uint32_t retry, uint32_t boundary,
/arm-trusted-firmware-2.8.0/docs/threat_model/
A Dthreat_model_fvp_r.rst80 - ID 08: Memory corruption due to memory overflows and lack of boundary
A Dthreat_model.rst625 | | lack of boundary checking when accessing resources |
635 | | buffer overflow, incorrect array boundary checks, |
/arm-trusted-firmware-2.8.0/docs/getting_started/
A Dporting-guide.rst68 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 Dfirmware-design.rst1567 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 Dcoding-style.rst70 except in the case where a term is being indented to a boundary that cannot be
A Dcoding-guidelines.rst362 member crosses a 32-bit boundary.

Completed in 41 milliseconds