| /u-boot/lib/libavb/ |
| A D | avb_vbmeta_image.c | 19 AvbVBMetaImageHeader h; in avb_vbmeta_image_verify() local 97 if (!avb_safe_add(&hash_end, h.hash_offset, h.hash_size) || in avb_vbmeta_image_verify() 103 if (!avb_safe_add(&signature_end, h.signature_offset, h.signature_size) || in avb_vbmeta_image_verify() 111 if (!avb_safe_add(&pubkey_end, h.public_key_offset, h.public_key_size) || in avb_vbmeta_image_verify() 119 if (h.public_key_metadata_size > 0) { in avb_vbmeta_image_verify() 157 switch (h.algorithm_type) { in avb_vbmeta_image_verify() 187 h.hash_size) != 0) { in avb_vbmeta_image_verify() 195 h.public_key_size, in avb_vbmeta_image_verify() 197 h.signature_size, in avb_vbmeta_image_verify() 199 h.hash_size, in avb_vbmeta_image_verify() [all …]
|
| A D | avb_sha256.c | 135 wv[j] = ctx->h[j]; in SHA256_transform() 222 wv[0] = ctx->h[0]; in SHA256_transform() 223 wv[1] = ctx->h[1]; in SHA256_transform() 224 wv[2] = ctx->h[2]; in SHA256_transform() 225 wv[3] = ctx->h[3]; in SHA256_transform() 226 wv[4] = ctx->h[4]; in SHA256_transform() 227 wv[5] = ctx->h[5]; in SHA256_transform() 228 wv[6] = ctx->h[6]; in SHA256_transform() 229 wv[7] = ctx->h[7]; in SHA256_transform() 296 ctx->h[0] += wv[0]; in SHA256_transform() [all …]
|
| A D | avb_sha512.c | 223 wv[0] = ctx->h[0]; in SHA512_transform() 224 wv[1] = ctx->h[1]; in SHA512_transform() 225 wv[2] = ctx->h[2]; in SHA512_transform() 226 wv[3] = ctx->h[3]; in SHA512_transform() 227 wv[4] = ctx->h[4]; in SHA512_transform() 228 wv[5] = ctx->h[5]; in SHA512_transform() 229 wv[6] = ctx->h[6]; in SHA512_transform() 230 wv[7] = ctx->h[7]; in SHA512_transform() 253 ctx->h[0] += wv[0]; in SHA512_transform() 254 ctx->h[1] += wv[1]; in SHA512_transform() [all …]
|
| /u-boot/doc/api/ |
| A D | dm.rst | 9 .. kernel-doc:: include/dm/uclass.h 10 .. kernel-doc:: include/dm/root.h 11 .. kernel-doc:: include/dm/lists.h 12 .. kernel-doc:: include/dm/platdata.h 17 .. kernel-doc:: include/dm/device.h 18 .. kernel-doc:: include/dm/devres.h 19 .. kernel-doc:: include/dm/read.h 24 .. kernel-doc:: include/dm/of.h 25 .. kernel-doc:: include/dm/ofnode.h 28 .. kernel-doc:: include/dm/of_addr.h [all …]
|
| A D | clk.rst | 6 .. kernel-doc:: include/clk.h 12 .. kernel-doc:: include/clk.h 18 .. kernel-doc:: include/clk-uclass.h
|
| /u-boot/lib/efi_selftest/ |
| A D | Makefile | 78 efi_miniapp_file_image_exception.h \ 79 efi_miniapp_file_image_exit.h \ 80 efi_miniapp_file_image_return.h \ 87 $(obj)/efi_miniapp_file_image_exception.h 89 $(obj)/efi_miniapp_file_image_exit.h: $(obj)/efi_selftest_miniapp_exit.efi 91 $(obj)/efi_miniapp_file_image_exit.h 95 $(obj)/efi_miniapp_file_image_return.h 97 $(obj)/efi_selftest_exception.o: $(obj)/efi_miniapp_file_image_exception.h 99 $(obj)/efi_selftest_load_file.o: $(obj)/efi_miniapp_file_image_exit.h 101 $(obj)/efi_selftest_loadimage.o: $(obj)/efi_miniapp_file_image_exit.h [all …]
|
| /u-boot/lib/crypto/ |
| A D | Makefile | 20 $(obj)/rsapubkey.asn1.o: $(obj)/rsapubkey.asn1.c $(obj)/rsapubkey.asn1.h 25 $(obj)/rsa_helper.o: $(obj)/rsapubkey.asn1.h 41 $(obj)/x509.asn1.h \ 42 $(obj)/x509_akid.asn1.h 44 $(obj)/x509.asn1.o: $(obj)/x509.asn1.c $(obj)/x509.asn1.h 45 $(obj)/x509_akid.asn1.o: $(obj)/x509_akid.asn1.c $(obj)/x509_akid.asn1.h 56 $(obj)/pkcs7_parser.o: $(obj)/pkcs7.asn1.h 57 $(obj)/pkcs7.asn1.o: $(obj)/pkcs7.asn1.c $(obj)/pkcs7.asn1.h 68 $(obj)/mscode_parser.o: $(obj)/mscode.asn1.h $(obj)/mscode.asn1.h 69 $(obj)/mscode.asn1.o: $(obj)/mscode.asn1.c $(obj)/mscode.asn1.h
|
| /u-boot/arch/sandbox/include/asm/ |
| A D | getopt.h | 38 #define _SANDBOX_CMDLINE_OPT(f, s, ha, h) \ argument 42 .help = h, \ 65 #define SANDBOX_CMDLINE_OPT(f, ha, h) _SANDBOX_CMDLINE_OPT(f, 0, ha, h) argument 70 #define SANDBOX_CMDLINE_OPT_SHORT(f, s, ha, h) _SANDBOX_CMDLINE_OPT(f, s, ha, h) argument
|
| /u-boot/drivers/video/ |
| A D | bcm2835.c | 19 int w, h, pitch; in bcm2835_video_probe() local 23 ret = bcm2835_get_video_size(&w, &h); in bcm2835_video_probe() 24 if (ret || w == 0 || h == 0) in bcm2835_video_probe() 27 debug("bcm2835: Setting up display for %d x %d\n", w, h); in bcm2835_video_probe() 28 ret = bcm2835_set_video_params(&w, &h, 32, BCM2835_MBOX_PIXEL_ORDER_RGB, in bcm2835_video_probe() 34 debug("bcm2835: Final resolution is %d x %d\n", w, h); in bcm2835_video_probe() 45 uc_priv->ysize = h; in bcm2835_video_probe()
|
| /u-boot/cmd/ |
| A D | .gitignore | 2 config_data_gz.h 3 config_data_size.h 5 license_data_gz.h 6 license_data_size.h
|
| /u-boot/include/ |
| A D | atf_common.h | 30 (_p)->h.type = (uint8_t)(_type); \ 31 (_p)->h.version = (uint8_t)(_ver); \ 32 (_p)->h.size = (uint16_t)sizeof(*_p); \ 33 (_p)->h.attr = (uint32_t)(_attr) ; \ 113 struct param_header h; member 127 struct param_header h; member 166 struct param_header h; member 187 struct param_header h; member
|
| A D | .gitignore | 2 /bmp_logo.h 3 /bmp_logo_data.h 4 /config.h
|
| /u-boot/arch/powerpc/cpu/mpc85xx/ |
| A D | release.S | 92 lis r3,BUCSR_ENABLE@h 110 lis r3,(L1CSR1_CPE|L1CSR1_ICE)@h 128 lis r3,(L1CSR0_CPE|L1CSR0_DCE)@h 216 lis r5,SVR_P4080@h 233 oris r3,r3,(L1CSR2_DCWS)@h 245 andis. r3,r3,(L1CSR2_DCWS)@h 258 lis r3,SVR_P2040@h 279 lis r3,CFG_SYS_INIT_L2CSR0@h 285 andis. r1,r3,L2CSR0_L2E@h 301 oris r11,r13,(MAS2_M|MAS2_G)@h [all …]
|
| A D | start.S | 228 lis r2, L2CSR0_L2E@h 248 lis r2, L2CSR0_L2E@h 426 lis r0,BUCSR_ENABLE@h 473 lis r3, MAS2_EPN@h 690 lis r2, CCSRAR_C@h 791 lis r4, (L2CSR0_L2PE)@h 906 lis r3, DCSRBAR_LAWAR@h 950 lis r4, \value@h 958 lis r4, \value@h 1185 lis r7,switch_as@h [all …]
|
| /u-boot/tools/ |
| A D | ifwitool.c | 105 struct bpdt_header h; member 112 return (sizeof(*h) + BPDT_ENTRY_SIZE * h->descriptor_count); in get_bpdt_size() 159 struct subpart_dir_header h; member 166 return (sizeof(*h) + SUBPART_DIR_ENTRY_SIZE * h->num_entries); in subpart_dir_size() 838 offset = read_member(data, offset, sizeof(h->signature), &h->signature); in bpdt_read_header() 842 &h->bpdt_version); in bpdt_read_header() 846 &h->ifwi_version); in bpdt_read_header() 1062 s->h.checksum = 0; in calc_checksum() 1437 struct bpdt_header *h = &s->h; in bpdt_fixup_write_buffer() local 1651 struct subpart_dir_header *h = &s->h; in subpart_dir_fixup_write_buffer() local [all …]
|
| A D | renesas_spkgimage.c | 187 const struct spkg_hdr *h = ptr; in spkgimage_print_header() local 188 uint32_t offset = le32_to_cpu(h->execution_offset); in spkgimage_print_header() 192 h->marker[0], h->marker[1], h->marker[2], h->marker[3]); in spkgimage_print_header() 193 printf("Version\t\t: %d\n", h->version); in spkgimage_print_header() 195 if (h->ecc & 0x20) in spkgimage_print_header() 197 h->ecc_scheme, (h->ecc >> 1) & 3, h->ecc_bytes); in spkgimage_print_header() 200 printf("Payload length\t: %d\n", le32_to_cpu(h->payload_length) >> 8); in spkgimage_print_header() 201 printf("Load address\t: 0x%08x\n", le32_to_cpu(h->load_address)); in spkgimage_print_header() 204 printf("Header checksum\t: 0x%08x\n", le32_to_cpu(h->crc)); in spkgimage_print_header()
|
| /u-boot/board/siemens/capricorn/ |
| A D | MAINTAINERS | 5 F: include/configs/capricorn-common.h 6 F: include/configs/deneb.h 7 F: include/configs/giedi.h 8 F: include/configs/siemens-env-common.h
|
| /u-boot/arch/nios2/cpu/ |
| A D | start.S | 109 movhi r2, %hi(debug_uart_init@h) 110 ori r2, r2, %lo(debug_uart_init@h) 116 movhi r2, %hi(board_init_f_alloc_reserve@h) 117 ori r2, r2, %lo(board_init_f_alloc_reserve@h) 121 movhi r2, %hi(board_init_f_init_reserve@h) 122 ori r2, r2, %lo(board_init_f_init_reserve@h) 130 movhi r2, %hi(board_init_f@h) 131 ori r2, r2, %lo(board_init_f@h) 175 movhi r8, %hi(board_init_r@h) 176 ori r8, r8, %lo(board_init_r@h)
|
| /u-boot/board/ti/ks2_evm/ |
| A D | MAINTAINERS | 5 F: include/configs/k2hk_evm.h 7 F: include/configs/k2e_evm.h 9 F: include/configs/k2l_evm.h 11 F: include/configs/k2g_evm.h
|
| /u-boot/arch/powerpc/cpu/mpc83xx/ |
| A D | start.S | 145 lis r4, CONFIG_DEFAULT_IMMR@h 154 lis r3, CONFIG_SYS_IMMR@h 233 lis r3, SYS_INIT_SP_ADDR@h 277 lis r3, CONFIG_SYS_IMMR@h 413 lis r22,MSR_POW@h 485 lis r3, CONFIG_SYS_IMMR@h 530 lis r3, CFG_SYS_HID0_INIT@h 535 lis r3, CFG_SYS_HID0_FINAL@h 540 lis r3, CFG_SYS_HID2@h 1132 lis r4, (0x80000012)@h [all …]
|
| /u-boot/board/sandbox/ |
| A D | MAINTAINERS | 5 F: include/configs/sandbox.h 13 F: include/configs/sandbox.h 20 F: include/configs/sandbox_spl.h 27 F: include/configs/sandbox_spl.h 34 F: include/configs/sandbox.h 41 F: include/configs/sandbox_spl.h
|
| /u-boot/board/broadcom/bcmstb/ |
| A D | MAINTAINERS | 5 F: include/configs/bcmstb.h 6 F: include/configs/bcm7445.h 13 F: include/configs/bcmstb.h 14 F: include/configs/bcm7260.h
|
| /u-boot/board/freescale/m53017evb/ |
| A D | README | 34 - include/asm-m68k/byteorder.h Byte order functions 35 - include/asm-m68k/fec.h FEC structure and definition 37 - include/asm-m68k/global_data.h Global data structure 40 - include/asm-m68k/io.h io functions 42 - include/asm-m68k/posix_types.h Posix 43 - include/asm-m68k/processor.h header file 44 - include/asm-m68k/ptrace.h Exception structure 45 - include/asm-m68k/rtc.h Realtime clock header file 46 - include/asm-m68k/string.h String function export 48 - include/asm-m68k/types.h Data types definition [all …]
|
| /u-boot/board/samsung/smdk5420/ |
| A D | MAINTAINERS | 5 F: include/configs/peach-pit.h 7 F: include/configs/smdk5420.h 9 F: include/configs/peach-pi.h 17 F: include/configs/odroid_xu3.h
|
| /u-boot/include/asm-generic/bitops/ |
| A D | fls64.h | 20 __u32 h = x >> 32; in fls64() local 21 if (h) in fls64() 22 return fls(h) + 32; in fls64()
|