/trusted-firmware-a/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))
|
/trusted-firmware-a/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
|
/trusted-firmware-a/docs/resources/diagrams/plantuml/ |
A D | tfa_dfd.puml | 24 # Nodes outside of the trust boundary 31 # Trust boundary cluster
|
A D | spm_dfd.puml | 21 # Nodes outside of the trust boundary 25 # Trust boundary cluster
|
/trusted-firmware-a/tools/sptool/ |
A D | sptool.c | 42 static unsigned int align_to(unsigned int address, unsigned int boundary) in align_to() argument 44 unsigned int mask = boundary - 1U; in align_to() 47 return (address + boundary) & ~mask; in align_to()
|
/trusted-firmware-a/build/qemu/release/bl1/ |
A D | bl1.ld | 12 "BL1_RO_BASE address is not aligned on a page boundary.") 38 "BL1_RW_BASE address is not aligned on a page boundary.")
|
A D | bl1.map | 576 … ASSERT ((. == ALIGN (0x1000)), BL1_RO_BASE address is not aligned on a page boundary.) 1161 … ASSERT ((0xe04e000 == ALIGN (0x1000)), BL1_RW_BASE address is not aligned on a page boundary.)
|
/trusted-firmware-a/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()
|
/trusted-firmware-a/plat/nvidia/tegra/scat/ |
A D | bl31.scat | 20 /* BL31_BASE address must be aligned on a page boundary. */ 219 * CACHE_WRITEBACK_GRANULE boundary
|
/trusted-firmware-a/build/qemu/release/bl2/ |
A D | bl2.ld | 11 "BL2_BASE address is not aligned on a page boundary.")
|
A D | bl2.map | 588 … ASSERT ((. == ALIGN (0x1000)), BL2_BASE address is not aligned on a page boundary.)
|
/trusted-firmware-a/build/qemu/release/bl31/ |
A D | bl31.ld | 11 "BL31_BASE address is not aligned on a page boundary.")
|
/trusted-firmware-a/include/drivers/brcm/emmc/ |
A D | emmc_chal_sd.h | 172 uint32_t retry, uint32_t boundary,
|
/trusted-firmware-a/docs/build/TF-A_2.5/_sources/getting_started/ |
A D | porting-guide.rst.txt | 68 page boundary (4K) for each BL stage. All sections which allocate coherent 182 aligned on a page-size boundary. 192 at runtime. Must be aligned on a page-size boundary. 202 Must be aligned on a page-size boundary. This constant is not applicable 225 at runtime. Must be aligned on a page-size boundary. This constant is only 237 image. Must be aligned on a page-size boundary. 314 image. Must be aligned on a page-size boundary. 342 Must be aligned on a page-size boundary. 358 Must be aligned on a page-size boundary. 414 image. Must be aligned on a page-size boundary. [all …]
|
/trusted-firmware-a/docs/getting_started/ |
A D | porting-guide.rst | 68 page boundary (4K) for each BL stage. All sections which allocate coherent 182 aligned on a page-size boundary. 192 at runtime. Must be aligned on a page-size boundary. 202 Must be aligned on a page-size boundary. This constant is not applicable 225 at runtime. Must be aligned on a page-size boundary. This constant is only 237 image. Must be aligned on a page-size boundary. 314 image. Must be aligned on a page-size boundary. 342 Must be aligned on a page-size boundary. 358 Must be aligned on a page-size boundary. 414 image. Must be aligned on a page-size boundary. [all …]
|
/trusted-firmware-a/docs/design/ |
A D | firmware-design.rst | 1563 boundary. Refer to the value of ``__<SECTION>_UNALIGNED_END__`` to know the 1610 - ``__COHERENT_RAM_START__`` Must be aligned on a page-size boundary. 1611 - ``__COHERENT_RAM_END__`` Must be aligned on a page-size boundary. 1633 aligned on a 16-byte boundary. 1635 copied over. Must be aligned on a 16-byte boundary. 2259 +-------------------+ Page boundary 2263 +-------------------+ 2 KB boundary 2279 However, the read-only data are not aligned on a page boundary. They are 2304 +-------------------+ Page boundary 2308 +-------------------+ Page boundary [all …]
|
/trusted-firmware-a/docs/build/TF-A_2.5/_sources/design/ |
A D | firmware-design.rst.txt | 1563 boundary. Refer to the value of ``__<SECTION>_UNALIGNED_END__`` to know the 1610 - ``__COHERENT_RAM_START__`` Must be aligned on a page-size boundary. 1611 - ``__COHERENT_RAM_END__`` Must be aligned on a page-size boundary. 1633 aligned on a 16-byte boundary. 1635 copied over. Must be aligned on a 16-byte boundary. 2259 +-------------------+ Page boundary 2263 +-------------------+ 2 KB boundary 2279 However, the read-only data are not aligned on a page boundary. They are 2304 +-------------------+ Page boundary 2308 +-------------------+ Page boundary [all …]
|
/trusted-firmware-a/docs/build/TF-A_2.5/_sources/threat_model/ |
A D | threat_model.rst.txt | 540 | | lack of boundary checking when accessing resources | 555 | | buffer overflow, incorrect array boundary checks, |
|
/trusted-firmware-a/docs/threat_model/ |
A D | threat_model.rst | 540 | | lack of boundary checking when accessing resources | 555 | | buffer overflow, incorrect array boundary checks, |
|
/trusted-firmware-a/docs/build/TF-A_2.5/_sources/process/ |
A D | coding-style.rst.txt | 70 except in the case where a term is being indented to a boundary that cannot be
|
A D | coding-guidelines.rst.txt | 362 member crosses a 32-bit boundary.
|
/trusted-firmware-a/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.
|
/trusted-firmware-a/docs/build/latex/ |
A D | trustedfirmware-a.tex | 5545 aligned on a page\sphinxhyphen{}size boundary. 5630 image. Must be aligned on a page\sphinxhyphen{}size boundary. 5755 image. Must be aligned on a page\sphinxhyphen{}size boundary. 5803 Must be aligned on a page\sphinxhyphen{}size boundary. 5830 Must be aligned on a page\sphinxhyphen{}size boundary. 5924 image. Must be aligned on a page\sphinxhyphen{}size boundary. 8011 line boundary. 11966 member crosses a 32\sphinxhyphen{}bit boundary. 29421 aligned on a 16\sphinxhyphen{}byte boundary. 48427 lack of boundary checking when accessing resources [all …]
|