Home
last modified time | relevance | path

Searched refs:word (Results 1 – 25 of 34) sorted by relevance

12

/rk3399_ARM-atf/include/lib/cpus/aarch32/
H A Dcpu_macros.S32 .word \_this
66 .word \_midr
68 .word \_resetfunc
95 .word \_name\()_errata_list_start
96 .word \_name\()_errata_list_end
107 .word 0
117 .word \_name\()_cpu_str
121 .word \_name\()_errata_lock
122 .word \_name\()_errata_reported
176 .word check_errata_\_special
[all …]
/rk3399_ARM-atf/plat/rpi/common/aarch64/
H A Darmstub8_header.S23 .word 0x5afe570b
25 .word 0
27 .word 0x0
29 .word 0x0
/rk3399_ARM-atf/tools/nxp/create_pbl/
H A Dcreate_pbl.c172 #define BYTE_SWAP_32(word) ((((word) & 0xff000000) >> 24)| \ argument
173 (((word) & 0x00ff0000) >> 8) | \
174 (((word) & 0x0000ff00) << 8) | \
175 (((word) & 0x000000ff) << 24))
306 uint32_t word; in crypto_calculate_checksum() local
310 if ((fread(&word, sizeof(word), NUM_MEM_BLOCK, fp_rcw_pbi_op)) in crypto_calculate_checksum()
315 sum = sum + word; in crypto_calculate_checksum()
702 uint32_t word, word_1; in main() local
854 if (fread(&word, sizeof(word), NUM_MEM_BLOCK, fp_rcw_pbi_ip) in main()
860 while (BYTE_SWAP_32(word) != 0x08610040) { in main()
[all …]
H A Dbyte_swap.c23 #define BYTE_SWAP_32(word) ((((word) & 0xff000000) >> 24)| \ argument
24 (((word) & 0x00ff0000) >> 8) | \
25 (((word) & 0x0000ff00) << 8) | \
26 (((word) & 0x000000ff) << 24))
/rk3399_ARM-atf/lib/zlib/
H A Dcrc32.c113 local z_word_t byte_swap(z_word_t word) { in byte_swap() argument
116 (word & 0xff00000000000000) >> 56 | in byte_swap()
117 (word & 0xff000000000000) >> 40 | in byte_swap()
118 (word & 0xff0000000000) >> 24 | in byte_swap()
119 (word & 0xff00000000) >> 8 | in byte_swap()
120 (word & 0xff000000) << 8 | in byte_swap()
121 (word & 0xff0000) << 24 | in byte_swap()
122 (word & 0xff00) << 40 | in byte_swap()
123 (word & 0xff) << 56; in byte_swap()
126 (word & 0xff000000) >> 24 | in byte_swap()
[all …]
/rk3399_ARM-atf/plat/hisilicon/hikey/
H A Dhisi_pwrc_sram.S64 .word 0xE1A00000 // nop
65 .word 0xE3A02003 // mov r2, #3
66 .word 0xEE0C2F50 // mcr 15, 0, r2, cr12, cr0, {2}
67 .word 0xE320F003 // wfi
/rk3399_ARM-atf/plat/socionext/uniphier/
H A Duniphier_scp.c48 uint32_t word; in uniphier_scp_send_packet() local
53 word = 0; in uniphier_scp_send_packet()
56 word |= *packet++ << (8 * i); in uniphier_scp_send_packet()
58 mmio_write_32(reg, word); in uniphier_scp_send_packet()
/rk3399_ARM-atf/make_helpers/
H A Dutilities.mk274 $(or $(filter-out %:,$(word 2,$(subst :,: ,$(1)))),$\
278 with.bind.kind = $(word 1,$(subst :, ,$(call with.bind.norm,$(1))))
279 with.bind.name = $(word 2,$(subst :, ,$(call with.bind.norm,$(1))))
311 $(foreach bind.kind,$(word $(bind.i),$($(with.ns).bind.kinds)),$\
321 $(foreach bind.name,$(word $(bind.i),$($(with.ns).bind.names)),$\
322 $(foreach bind.kind,$(word $(bind.i),$($(with.ns).bind.kinds)),$\
425 # Parses the shell fragment given by `$(2)` using the shell's word-splitting and
446 shell-word = $(shell $(shell-word.sh))
448 define shell-word.sh =
/rk3399_ARM-atf/lib/compiler-rt/builtins/
H A Dassembly.h110 .word 4 SEPARATOR \
111 .word 16 SEPARATOR \
112 .word NT_GNU_PROPERTY_TYPE_0 SEPARATOR \
114 .word type SEPARATOR \
115 .word 4 SEPARATOR \
116 .word value SEPARATOR \
117 .word 0 SEPARATOR \
/rk3399_ARM-atf/plat/rockchip/rk3328/drivers/pmu/
H A Dplat_pmu_macros.S19 .word 0
/rk3399_ARM-atf/plat/rockchip/px30/drivers/pmu/
H A Dplat_pmu_macros.S19 .word 0
/rk3399_ARM-atf/plat/rockchip/rk3576/drivers/pmu/
H A Dplat_pmu_macros.S18 .word 0
/rk3399_ARM-atf/plat/rockchip/rk3588/drivers/pmu/
H A Dplat_pmu_macros.S19 .word 0
/rk3399_ARM-atf/bl32/tsp/aarch64/
H A Dtsp_request.S30 .word TSP_GET_ARGS
/rk3399_ARM-atf/plat/imx/common/include/sci/svc/misc/
H A Dsci_misc_api.h462 sc_err_t sc_misc_otp_fuse_read(sc_ipc_t ipc, uint32_t word, uint32_t *val);
478 sc_err_t sc_misc_otp_fuse_write(sc_ipc_t ipc, uint32_t word, uint32_t val);
/rk3399_ARM-atf/plat/rockchip/common/pmusram/
H A Dcpus_on_fixed_addr.S47 .word 0
/rk3399_ARM-atf/drivers/nxp/crypto/caam/src/
H A Djobdesc.c40 void desc_add_word(uint32_t *desc, uint32_t word) in desc_add_word() argument
48 *last = word; in desc_add_word()
/rk3399_ARM-atf/plat/qti/msm8916/aarch32/
H A Dmsm8916_helpers.S145 .word 0
/rk3399_ARM-atf/plat/mediatek/build_helpers/
H A Dmtk_build_helpers.mk9 $(patsubst %/,%,$(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))))
/rk3399_ARM-atf/plat/ti/common/
H A Dk3_helpers.S47 .word K3_BOOT_REASON_COLD_RESET
/rk3399_ARM-atf/plat/imx/common/sci/svc/misc/
H A Dmisc_rpc_clnt.c391 sc_err_t sc_misc_otp_fuse_read(sc_ipc_t ipc, uint32_t word, uint32_t *val) in sc_misc_otp_fuse_read() argument
399 RPC_U32(&msg, 0U) = (uint32_t)word; in sc_misc_otp_fuse_read()
411 sc_err_t sc_misc_otp_fuse_write(sc_ipc_t ipc, uint32_t word, uint32_t val) in sc_misc_otp_fuse_write() argument
419 RPC_U32(&msg, 0U) = (uint32_t)word; in sc_misc_otp_fuse_write()
/rk3399_ARM-atf/plat/rockchip/rk3399/drivers/pmu/
H A Dplat_pmu_macros.S62 .word 0
/rk3399_ARM-atf/plat/rockchip/common/aarch32/
H A Dplat_helpers.S162 .word 0
/rk3399_ARM-atf/plat/rockchip/common/aarch64/
H A Dplat_helpers.S177 .word 0
/rk3399_ARM-atf/lib/cpus/aarch64/
H A Dwa_cve_2017_5715_bpiall.S114 .word EMIT_BPIALL
115 .word EMIT_SMC

12