Home
last modified time | relevance | path

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

/trusted-firmware-a-latest/include/lib/
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))
145 #define is_aligned(value, boundary) \ argument
146 (round_up((uintptr_t) value, boundary) == \
147 round_down((uintptr_t) value, boundary))
/trusted-firmware-a-latest/plat/rockchip/common/drivers/parameter/
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()
Dddr_parameter.h31 uint64_t boundary; member
/trusted-firmware-a-latest/docs/resources/diagrams/plantuml/
Dtfa_dfd.puml24 # Nodes outside of the trust boundary
31 # Trust boundary cluster
Del3_spm_dfd.puml23 # Nodes outside of the trust boundary
28 # Trust boundary cluster
Dspm_dfd.puml21 # Nodes outside of the trust boundary
25 # Trust boundary cluster
Dtfa_rss_dfd.puml24 # Nodes outside of the trust boundary
32 # Trust boundary cluster
Dtfa_arm_cca_dfd.puml24 # Nodes outside of the trust boundary
32 # Trust boundary cluster
/trusted-firmware-a-latest/drivers/brcm/emmc/
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()
/trusted-firmware-a-latest/plat/nvidia/tegra/scat/
Dbl31.scat20 /* BL31_BASE address must be aligned on a page boundary. */
219 * CACHE_WRITEBACK_GRANULE boundary
/trusted-firmware-a-latest/include/drivers/brcm/emmc/
Demmc_chal_sd.h172 uint32_t retry, uint32_t boundary,
/trusted-firmware-a-latest/docs/threat_model/
Dthreat_model_fvp_r.rst80 - ID 08: Memory corruption due to memory overflows and lack of boundary
Dthreat_model.rst413 | | lack of boundary checking when accessing resources |
423 | | buffer overflow, incorrect array boundary checks, |
846 attestation. However, these are outside the |TF-A| security boundary and
/trusted-firmware-a-latest/docs/design/
Dfirmware-design.rst1632 boundary. Refer to the value of ``__<SECTION>_UNALIGNED_END__`` to know the
1645 …right boundary. In other words, ``__<SECTION>_SIZE__ = __<SECTION>_END__ - _<SECTION>_START__``. R…
1679 - ``__COHERENT_RAM_START__`` Must be aligned on a page-size boundary.
1680 - ``__COHERENT_RAM_END__`` Must be aligned on a page-size boundary.
1704 aligned on a 16-byte boundary.
1706 copied over. Must be aligned on a 16-byte boundary.
2379 +-------------------+ Page boundary
2383 +-------------------+ 2 KB boundary
2399 However, the read-only data are not aligned on a page boundary. They are
2424 +-------------------+ Page boundary
[all …]
/trusted-firmware-a-latest/docs/
Dporting-guide.rst82 page boundary (4K) for each BL stage. All sections which allocate coherent
198 aligned on a page-size boundary.
208 at runtime. Must be aligned on a page-size boundary.
218 Must be aligned on a page-size boundary. This constant is not applicable
229 lives. Must be aligned on a page-size boundary. This constant is only needed
241 at runtime. Must be aligned on a page-size boundary. This constant is only
253 image. Must be aligned on a page-size boundary.
328 image. Must be aligned on a page-size boundary.
356 Must be aligned on a page-size boundary.
372 Must be aligned on a page-size boundary.
[all …]
Dchange-log.md1294 …- change the FIP offset to 8 KiB boundary ([d07b8aa](https://review.trustedfirmware.org/plugins/gi…
/trusted-firmware-a-latest/docs/process/
Dcoding-style.rst70 except in the case where a term is being indented to a boundary that cannot be
Dcoding-guidelines.rst362 member crosses a 32-bit boundary.