/optee_os/core/drivers/ |
A D | imx_wdog.c | 102 int off = 0; in imx_wdog_base() local 115 off = 0; in imx_wdog_base() 116 while (off >= 0) { in imx_wdog_base() 117 off = fdt_node_offset_by_compatible(fdt, off, match); in imx_wdog_base() 118 if (off > 0) { in imx_wdog_base() 119 st = _fdt_get_status(fdt, off); in imx_wdog_base() 121 DMSG("Wdog found at %u", off); in imx_wdog_base() 122 found_off = off; in imx_wdog_base()
|
A D | imx_rngb.c | 143 int off = -1; in map_controller() local 149 off = fdt_node_offset_by_compatible(fdt, 0, rng_match_table[i]); in map_controller() 150 if (off >= 0) in map_controller() 154 if (off < 0) in map_controller() 157 if (dt_enable_secure_status(fdt, off)) in map_controller() 160 if (dt_map_dev(fdt, off, &rngb.base.va, &rngb.size) < 0) in map_controller()
|
A D | imx_i2c.c | 465 int off = 0; in i2c_mapped() local 471 off = fdt_node_offset_by_compatible(fdt, off, i2c_match); in i2c_mapped() 472 if (off < 0) in i2c_mapped() 475 if (!(_fdt_get_status(fdt, off) & DT_STATUS_OK_SEC)) { in i2c_mapped() 480 if (dt_map_dev(fdt, off, &i2c_bus[i].va, &size) < 0) { in i2c_mapped()
|
/optee_os/core/arch/arm/plat-imx/ |
A D | mmdc.c | 20 uint32_t off = 0; in imx_get_ddr_type() local 25 off = DDRC_MSTR; in imx_get_ddr_type() 27 off = MMDC_MDMISC; in imx_get_ddr_type() 30 off + sizeof(uint32_t)); in imx_get_ddr_type() 31 val = io_read32(mmdc_base + off); in imx_get_ddr_type()
|
/optee_os/core/drivers/crypto/caam/utils/ |
A D | utils_sgt.c | 63 size_t off = offset; in caam_sgt_derive() local 74 for (; idx < from->number && off >= from->buf[idx].length; idx++) in caam_sgt_derive() 75 off -= from->buf[idx].length; in caam_sgt_derive() 79 rlength -= MIN(rlength, from->buf[idx].length - off); in caam_sgt_derive() 102 sgt_entry_offset(sgt->sgt, off); in caam_sgt_derive() 113 sgt->paddr = sgt->buf->paddr + off; in caam_sgt_derive()
|
A D | utils_dmaobj.c | 635 size_t off) in entry_sgtbuf() argument 642 sgtbuf->data += off; in entry_sgtbuf() 643 sgtbuf->paddr += off; in entry_sgtbuf() 644 sgtbuf->length -= off; in entry_sgtbuf() 893 size_t off = 0; in caam_dmaobj_copy_ltrim_to_orig() local 924 if (off < obj->orig.length) in caam_dmaobj_copy_ltrim_to_orig() 925 dst_rlen = obj->orig.length - off; in caam_dmaobj_copy_ltrim_to_orig() 1216 size_t *length, size_t off, in caam_dmaobj_sgtbuf_inout_build() argument 1269 size_t off, size_t align) in caam_dmaobj_sgtbuf_build() argument 1278 size_t offset = off; in caam_dmaobj_sgtbuf_build() [all …]
|
A D | utils_sgt_v2.c | 27 uint64_t off = 0; in sgt_entry_offset() local 35 off = SGT_V2_ENTRY_OFFSET(w2); in sgt_entry_offset() 36 off += offset; in sgt_entry_offset()
|
/optee_os/core/drivers/crypto/caam/include/ |
A D | caam_desc_helper.h | 153 #define LD_NOIMM_OFF(cla, dst, len, off) \ argument 154 (CMD_LOAD_TYPE | CMD_CLASS(cla) | LOAD_DST(dst) | LOAD_OFFSET(off) | \ 215 #define ST_NOIMM_OFF(cla, src, len, off) \ argument 217 STORE_OFFSET(off) | STORE_LENGTH(len)) 453 #define MOVE(src, dst, off, len) \ argument 454 (CMD_MOVE_TYPE | MOVE_SRC(src) | MOVE_DST(dst) | MOVE_OFFSET(off) | \ 460 #define MOVE_WAIT(src, dst, off, len) \ argument 462 MOVE_OFFSET(off) | MOVE_LENGTH(len))
|
A D | caam_desc_defines.h | 68 #define LOAD_OFFSET(off) SHIFT_U32((off) & 0xFF, 8) argument 83 #define STORE_OFFSET(off) SHIFT_U32((off) & 0xFF, 8) argument 281 #define MOVE_OFFSET(off) SHIFT_U32((off) & 0xFF, 8) argument 465 #define JMP_LOCAL_OFFSET(off) SHIFT_U32((off) & 0xFF, 0) argument
|
A D | caam_utils_dmaobj.h | 161 size_t *length, size_t off, 191 size_t off, size_t align);
|
/optee_os/core/arch/arm/plat-synquacer/ |
A D | rng_pta.c | 143 uint32_t off; in pool_get_entropy() local 148 off = entropy_size - size; in pool_get_entropy() 150 memcpy(buf, &entropy_pool[off], size); in pool_get_entropy()
|
/optee_os/core/lib/libfdt/ |
A D | fdt.c | 42 static int check_off_(uint32_t hdrsize, uint32_t totalsize, uint32_t off) in check_off_() argument 44 return (off >= hdrsize) && (off <= totalsize); in check_off_()
|
/optee_os/core/arch/arm/dts/ |
A D | at91-sama5d2_xplained.dts | 224 regulator-off-in-suspend; 238 regulator-off-in-suspend; 252 regulator-off-in-suspend; 266 regulator-off-in-suspend; 280 regulator-off-in-suspend; 294 regulator-off-in-suspend;
|
A D | stm32mp15xx-dkx.dtsi | 69 default-state = "off"; 355 power-off-time-sec = <10>;
|
A D | stm32mp157c-ed1.dts | 268 power-off-time-sec = <10>;
|
/optee_os/core/tee/ |
A D | tee_svc_storage.c | 788 size_t off = 0; in syscall_storage_obj_trunc() local 810 &off)) { in syscall_storage_obj_trunc() 814 if (ADD_OVERFLOW(len, off, &off)) { in syscall_storage_obj_trunc() 818 res = o->pobj->fops->truncate(o->fh, off); in syscall_storage_obj_trunc()
|
/optee_os/core/arch/arm/kernel/ |
A D | spmc_sp_handler.c | 442 size_t off = 0; in create_retrieve_response() local 461 off = sizeof(struct ffa_mem_transaction) + in create_retrieve_response() 467 d_ds->mem_access_array[0].region_offs = off; in create_retrieve_response() 472 dst_region = (struct ffa_mem_region *)((vaddr_t)d_ds + off); in create_retrieve_response()
|
/optee_os/lib/libmbedtls/mbedtls/ |
A D | dco.txt | 35 personal information I submit with it, including my sign-off) is
|
A D | CONTRIBUTING.md | 23 …east one `Signed-off-by:` line from the committer. If anyone else contributes to the commit, they …
|
A D | ChangeLog | 233 MBEDTLS_ECP_xxx_ALT accelerator hooks are in use can now be turned off 434 * Fix an off-by-one error in the additional data length check for 1242 is off. That means that checks which were previously present by default 2579 * Fix off-by-one error in parsing Supported Point Format extension that 2856 * Add config flag POLARSSL_DEPRECATED_WARNING (off by default) to produce 2858 * Add config flag POLARSSL_DEPRECATED_REMOVED (off by default) to produce 3101 * Fix off-by-one error in parsing Supported Point Format extension that 3293 * Split off curves from ecp.c into ecp_curves.c 3686 interoperability can be switched on/off with the flag 3926 trade-off [all …]
|
/optee_os/lib/libmbedtls/mbedtls/library/ |
A D | bignum.c | 516 size_t off = pos / biL; in mbedtls_mpi_set_bit() local 528 MBEDTLS_MPI_CHK( mbedtls_mpi_grow( X, off + 1 ) ); in mbedtls_mpi_set_bit() 531 X->p[off] &= ~( (mbedtls_mpi_uint) 0x01 << idx ); in mbedtls_mpi_set_bit() 532 X->p[off] |= (mbedtls_mpi_uint) val << idx; in mbedtls_mpi_set_bit()
|
/optee_os/lib/libutils/isoc/ |
A D | bget.doc | 39 <assert.h> mechanism; all these checks can be turned off by compiling 146 standard pool block can be managed "off the books" by BGET in this mode.
|
/optee_os/ |
A D | CHANGELOG.md | 615 * plat-imx: PSCI CPU off ([#1577])
|
/optee_os/out/arm/ldelf/ |
A D | ldelf.dmp | 9 LOAD off 0x0000000000001000 vaddr 0x0000000000000000 paddr 0x0000000000000000 align 2**12 11 LOAD off 0x0000000000009000 vaddr 0x0000000000008000 paddr 0x0000000000008000 align 2**12 13 DYNAMIC off 0x0000000000009000 vaddr 0x0000000000008000 paddr 0x0000000000008000 align 2**3 15 STACK off 0x0000000000000000 vaddr 0x0000000000000000 paddr 0x0000000000000000 align 2**4 34 Idx Name Size VMA LMA File off Algn
|
/optee_os/out/arm/ta/trusted_keys/ |
A D | f04a0fe7-1f5d-4b9b-abf7-619b85b4ce8c.dmp | 9 0x70000001 off 0x0000bd78 vaddr 0x0000ad78 paddr 0x0000ad78 align 2**2 11 LOAD off 0x00001000 vaddr 0x00000000 paddr 0x00000000 align 2**12 13 LOAD off 0x0000d000 vaddr 0x0000c000 paddr 0x0000c000 align 2**12 15 DYNAMIC off 0x0000d000 vaddr 0x0000c000 paddr 0x0000c000 align 2**2 17 STACK off 0x00000000 vaddr 0x00000000 paddr 0x00000000 align 2**4 36 Idx Name Size VMA LMA File off Algn
|