| /arm-trusted-firmware/plat/mediatek/mt8183/drivers/mcdi/ |
| H A D | mtk_mcdi.c | 57 uint32_t m; in mcdi_avail_cpu_mask_set() local 59 m = mcdi_mbox_read(MCDI_MBOX_AVAIL_CPU_MASK); in mcdi_avail_cpu_mask_set() 60 m |= mask; in mcdi_avail_cpu_mask_set() 61 mcdi_mbox_write(MCDI_MBOX_AVAIL_CPU_MASK, m); in mcdi_avail_cpu_mask_set() 63 return m; in mcdi_avail_cpu_mask_set() 68 uint32_t m; in mcdi_avail_cpu_mask_clr() local 70 m = mcdi_mbox_read(MCDI_MBOX_AVAIL_CPU_MASK); in mcdi_avail_cpu_mask_clr() 71 m &= ~mask; in mcdi_avail_cpu_mask_clr() 72 mcdi_mbox_write(MCDI_MBOX_AVAIL_CPU_MASK, m); in mcdi_avail_cpu_mask_clr() 74 return m; in mcdi_avail_cpu_mask_clr() 112 uint32_t m = mcdi_mbox_read(MCDI_MBOX_PAUSE_ACTION); mcdi_pause_clr() local 121 uint32_t m = mcdi_mbox_read(MCDI_MBOX_PAUSE_ACTION); mcdi_pause_set() local 139 uint32_t m = mcdi_mbox_read(MCDI_MBOX_PAUSE_ACTION) | BIT(PAUSE_BIT); mcdi_pause() local 150 uint32_t m = mcdi_mbox_read(MCDI_MBOX_PAUSE_ACTION) & ~BIT(PAUSE_BIT); mcdi_unpause() local 206 uint32_t m; check_mcdi_ctl_stat() local [all...] |
| /arm-trusted-firmware/plat/hisilicon/hikey960/drivers/ipc/ |
| H A D | hisi_ipc.c | 20 #define IPC_MBX_SOURCE_REG(m) (IPC_BASE + ((m) << 6)) argument 21 #define IPC_MBX_DSET_REG(m) (IPC_BASE + ((m) << 6) + 0x04) argument 22 #define IPC_MBX_DCLEAR_REG(m) (IPC_BASE + ((m) << 6) + 0x08) argument 23 #define IPC_MBX_DSTATUS_REG(m) (IPC_BASE + ((m) << 6) + 0x0C) argument 24 #define IPC_MBX_MODE_REG(m) (IPC_BASE + ((m) << argument 25 IPC_MBX_IMASK_REG(m) global() argument 26 IPC_MBX_ICLR_REG(m) global() argument 27 IPC_MBX_SEND_REG(m) global() argument 28 IPC_MBX_DATA_REG(m,d) global() argument 30 IPC_CPU_IMST_REG(m) global() argument [all...] |
| /arm-trusted-firmware/tools/cert_create/src/ |
| H A D | ext.c | 54 X509V3_EXT_METHOD *m; variable 97 m = &ext->method; 98 memset(m, 0x0, sizeof(X509V3_EXT_METHOD)); 101 m->it = ASN1_ITEM_ref(ASN1_INTEGER); 102 m->i2s = (X509V3_EXT_I2S)i2s_ASN1_INTEGER; 103 m->s2i = (X509V3_EXT_S2I)s2i_ASN1_INTEGER; 106 m->it = ASN1_ITEM_ref(ASN1_OCTET_STRING); 107 m->i2s = (X509V3_EXT_I2S)i2s_ASN1_OCTET_STRING; 108 m->s2i = (X509V3_EXT_S2I)s2i_ASN1_OCTET_STRING; 113 m [all...] |
| /arm-trusted-firmware/include/lib/libc/ |
| H A D | stddef.h | 25 #define offsetof(st, m) __builtin_offsetof(st, m) argument
|
| /arm-trusted-firmware/drivers/mentor/i2c/ |
| H A D | mi2cv.c | 245 unsigned int n, m, freq, margin, min_margin = 0xffffffff; in mentor_i2c_bus_speed_set() local 251 for (m = 0; m < 16; m++) { in mentor_i2c_bus_speed_set() 252 freq = CONFIG_SYS_TCLK / (10 * (m + 1) * (2 << n)); in mentor_i2c_bus_speed_set() 260 actual_m = m; in mentor_i2c_bus_speed_set()
|
| /arm-trusted-firmware/bl32/tsp/ |
| H A D | tsp_ffa_main.c | 109 struct ffa_mtd *m; in test_memory_send() local 133 if (!memory_retrieve(&mailbox, &m, handle, source, test_receivers, in test_memory_send() 140 ((uint8_t *) m + m->emad_offset); in test_memory_send() 180 composite = ffa_memory_region_get_composite(m, 0); in test_memory_send() 258 m->handle, tsp_id)) { in test_memory_send()
|
| H A D | ffa_helpers.c | 229 bool memory_relinquish(struct ffa_mem_relinquish_descriptor *m, uint64_t handle, in memory_relinquish() argument 232 ffa_mem_relinquish_init(m, handle, 0, id); in memory_relinquish()
|
| H A D | ffa_helpers.h | 92 bool memory_relinquish(struct ffa_mem_relinquish_descriptor *m, uint64_t handle,
|
| /arm-trusted-firmware/plat/imx/imx93/include/ |
| H A D | pwr_ctrl.h | 60 #define LPM_SETTING(d, m) ((m) << (((d) % 8) * 4)) argument
|
| /arm-trusted-firmware/include/drivers/nxp/trdc/ |
| H A D | imx_trdc.h | 23 #define MDAC_W_X(m, r) (0x800 + (m) * 0x20 + (r) * 0x4) argument
|
| /arm-trusted-firmware/lib/zlib/ |
| H A D | zutil.c | 122 void ZLIB_INTERNAL z_error(char *m) { in z_error() argument 123 fprintf(stderr, "%s\n", m); in z_error()
|
| H A D | crc32.c | 156 z_crc_t m, p; in multmodp() local 158 m = (z_crc_t)1 << 31; in multmodp() 161 if (a & m) { in multmodp() 163 if ((a & (m - 1)) == 0) in multmodp() 166 m >>= 1; in multmodp()
|
| H A D | zutil.h | 244 extern void ZLIB_INTERNAL z_error(char *m);
|
| /arm-trusted-firmware/include/plat/nuvoton/npcm845x/ |
| H A D | platform_def.h | 157 #define ARM_CPU_START_ADDRESS(m) UL(0xf0800e00 + 0x10 + m * 4) argument
|
| /arm-trusted-firmware/docs/plat/arm/arm_fpga/ |
| H A D | index.rst | 93 fpga-run ... -m bl31.axf -l auto -m Image -l 0x80080000 -m initrd.gz -l 0x84000000 -m cmdline.txt -l 0x1000
|
| /arm-trusted-firmware/include/lib/libc/sys/ |
| H A D | cdefs.h | 483 * Given the pointer x to the member m of the struct s, return 486 * compatible with member m. 489 #define __containerof(x, s, m) ({ \ argument 490 const volatile __typeof(((s *)0)->m) *__x = (x); \ 491 __DEQUALIFY(s *, (const volatile char *)__x - __offsetof(s, m));\ 494 #define __containerof(x, s, m) \ argument 495 __DEQUALIFY(s *, (const volatile char *)(x) - __offsetof(s, m))
|
| /arm-trusted-firmware/plat/brcm/board/common/ |
| H A D | board_common.mk | 257 KEY_FIND := $(shell m="${ROT_KEY}"; [ -f "$$m" ] && echo "$$m")
|
| /arm-trusted-firmware/docs/plat/ |
| H A D | qemu.rst | 88 -initrd rootfs.cpio.gz -smp 2 -m 1024 -bios bl1.bin \ 143 -initrd rootfs.cpio.gz -smp 2 -m 1024 -bios flash.bin \
|
| /arm-trusted-firmware/docs/design_documents/ |
| H A D | rss.rst | 680 .. [1] https://tf-m-user-guide.trustedfirmware.org/platform/arm/rss/readme.html 681 .. [2] https://tf-m-user-guide.trustedfirmware.org/platform/arm/rss/rss_comms.html 682 .. [3] https://git.trustedfirmware.org/TF-M/tf-m-extras.git/tree/partitions/measured_boot/measured_boot_integration_guide.rst 683 .. [4] https://git.trustedfirmware.org/TF-M/tf-m-extras.git/tree/partitions/delegated_attestation/delegated_attest_integration_guide.rst 684 .. [5] https://tf-m-user-guide.trustedfirmware.org/platform/arm/rss/rss_key_management.html
|
| H A D | measured_boot_poc.rst | 94 $ repo init -u https://github.com/OP-TEE/manifest.git -m fvp.xml
|
| /arm-trusted-firmware/make_helpers/ |
| H A D | build_macros.mk | 26 uppercase_table:=a,A b,B c,C d,D e,E f,F g,G h,H i,I j,J k,K l,L m,M n,N o,O p,P q,Q r,R s,S t,T u,U v,V w,W x,X y,Y z,Z
|
| /arm-trusted-firmware/docs/ |
| H A D | change-log.md | 2783 - align with original API in tf-m-extras ([471c989](https://review.trustedfirmware.org/plugins/gitiles/TF-A/trusted-firmware-a/+/471c9895a630560561717067113e4c4d7127bb9f))
|