Home
last modified time | relevance | path

Searched refs:payload (Results 1 – 25 of 86) sorted by relevance

1234

/u-boot/doc/board/samsung/
A Daxy17lte.rst61 What is a payload?
63 A payload file is a file to be used instead of linux kernel in android boot image.
65 and is therefore SBOOT's payload.
66 It may be pure u-boot (with loading u-boot's payload from flash in mind),
67 or u-boot + u-boot's payload.
69 Creating payload file
75 Once payload created, it's time for android image::
78 ramdisk=<path to FIT payload file>
/u-boot/drivers/net/phy/
A Dncsi.c581 payload = 12; in ncsi_handle_aen()
585 payload = 4; in ncsi_handle_aen()
654 payload = 4; in ncsi_receive()
658 payload = 4; in ncsi_receive()
662 payload = 4; in ncsi_receive()
666 payload = 16; in ncsi_receive()
678 payload = 4; in ncsi_receive()
682 payload = 4; in ncsi_receive()
686 payload = 4; in ncsi_receive()
690 payload = 4; in ncsi_receive()
[all …]
/u-boot/drivers/video/
A Dmipi_dsi.c208 packet->payload = msg->tx_buf; in mipi_dsi_create_packet()
304 .tx_buf = payload, in mipi_dsi_generic_write()
661 u8 payload[4] = { start >> 8, start & 0xff, end >> 8, end & 0xff }; in mipi_dsi_dcs_set_column_address() local
664 err = mipi_dsi_dcs_write(dsi, MIPI_DCS_SET_COLUMN_ADDRESS, payload, in mipi_dsi_dcs_set_column_address()
665 sizeof(payload)); in mipi_dsi_dcs_set_column_address()
688 err = mipi_dsi_dcs_write(dsi, MIPI_DCS_SET_PAGE_ADDRESS, payload, in mipi_dsi_dcs_set_page_address()
689 sizeof(payload)); in mipi_dsi_dcs_set_page_address()
770 u8 payload[3] = { MIPI_DCS_SET_TEAR_SCANLINE, scanline >> 8, in mipi_dsi_dcs_set_tear_scanline() local
774 err = mipi_dsi_generic_write(dsi, payload, sizeof(payload)); in mipi_dsi_dcs_set_tear_scanline()
793 u8 payload[2] = { brightness & 0xff, brightness >> 8 }; in mipi_dsi_dcs_set_display_brightness() local
[all …]
/u-boot/tools/
A Dmxsimage.c105 uint32_t *payload; member
330 shdr = &sctx->payload; in sb_encrypt_sb_sections_header()
551 dctx->payload = tmp; in sb_grow_dcd()
612 free(dctx->payload); in sb_build_dcd()
659 dcd = dctx->payload + dctx->size / sizeof(*dctx->payload) - 2; in sb_build_dcd_block()
748 shdr = &sctx->payload; in sb_build_section()
952 uint8_t *payload; in sb_build_command_load() local
977 if (!payload) { in sb_build_command_load()
982 memcpy(payload, dctx->payload, dctx->size); in sb_build_command_load()
1665 size = fread(&ictx->payload, 1, sizeof(ictx->payload), fp); in sb_verify_image_header()
[all …]
A Drenesas_spkgimage.c171 crc_buf = file->payload + payload_length - SPKG_CRC_SIZE; in spkgimage_verify_header()
172 crc = crc32(0, file->payload, payload_length - SPKG_CRC_SIZE); in spkgimage_verify_header()
286 uint8_t *payload = ptr + SPKG_HEADER_SIZE * SPKG_HEADER_COUNT; in spkgimage_set_header() local
287 uint8_t *file_end = payload + conf.blp_len + params->orig_file_size; in spkgimage_set_header()
292 memmove(payload + conf.blp_len, payload, params->orig_file_size); in spkgimage_set_header()
295 memset(payload, 0x88, conf.blp_len); in spkgimage_set_header()
308 crc = crc32(0, payload, crc_buf - payload); in spkgimage_set_header()
A Drenesas_spkgimage.h83 uint8_t payload[0]; member
/u-boot/drivers/video/exynos/
A Dexynos_mipi_dsi_common.c55 unsigned int data_cnt = 0, payload = 0; in exynos_mipi_dsi_long_data_wr() local
65 payload = data0[data_cnt] | in exynos_mipi_dsi_long_data_wr()
69 payload, data0[data_cnt], in exynos_mipi_dsi_long_data_wr()
73 payload = data0[data_cnt] | in exynos_mipi_dsi_long_data_wr()
78 payload = data0[data_cnt]; in exynos_mipi_dsi_long_data_wr()
82 payload = data0[data_cnt] | in exynos_mipi_dsi_long_data_wr()
88 payload, *(u8 *)(data0 + data_cnt), in exynos_mipi_dsi_long_data_wr()
93 exynos_mipi_dsi_wr_tx_data(dsim, payload); in exynos_mipi_dsi_long_data_wr()
184 unsigned int payload = 0; in exynos_mipi_dsi_wr_data() local
188 payload = data0[0] | in exynos_mipi_dsi_wr_data()
[all …]
/u-boot/arch/x86/dts/
A Dcoreboot.dts5 * Generic coreboot payload device tree for x86 targets
19 model = "coreboot x86 payload";
20 compatible = "coreboot,x86-payload";
A Dslimbootloader.dts13 model = "slimbootloader x86 payload";
14 compatible = "slimbootloader,x86-payload";
A Defi-x86_payload.dts5 * Generic EFI payload device tree for x86 targets
20 compatible = "efi,x86-payload";
/u-boot/include/crypto/
A Dpublic_key.h64 const union key_payload *payload,
69 const union key_payload *payload,
74 const union key_payload *payload,
/u-boot/lib/crypto/
A Dasymmetric_type.c437 struct asymmetric_key_ids *kids = prep->payload.data[asym_key_ids]; in asymmetric_key_free_preparse()
442 subtype->destroy(prep->payload.data[asym_crypto], in asymmetric_key_free_preparse()
443 prep->payload.data[asym_auth]); in asymmetric_key_free_preparse()
456 struct asymmetric_key_ids *kids = key->payload.data[asym_key_ids]; in asymmetric_key_destroy()
457 void *data = key->payload.data[asym_crypto]; in asymmetric_key_destroy()
458 void *auth = key->payload.data[asym_auth]; in asymmetric_key_destroy()
460 key->payload.data[asym_crypto] = NULL; in asymmetric_key_destroy()
461 key->payload.data[asym_subtype] = NULL; in asymmetric_key_destroy()
462 key->payload.data[asym_key_ids] = NULL; in asymmetric_key_destroy()
463 key->payload.data[asym_auth] = NULL; in asymmetric_key_destroy()
[all …]
A Dx509_public_key.c270 prep->payload.data[asym_subtype] = &public_key_subtype; in x509_key_preparse()
271 prep->payload.data[asym_key_ids] = kids; in x509_key_preparse()
272 prep->payload.data[asym_crypto] = cert->pub; in x509_key_preparse()
273 prep->payload.data[asym_auth] = cert->sig; in x509_key_preparse()
/u-boot/drivers/serial/
A Dserial_htif.c37 # define TOHOST_CMD(dev, cmd, payload) \ argument
40 (u64)(payload))
42 # define TOHOST_CMD(dev, cmd, payload) ({ \ argument
45 (payload); })
/u-boot/net/
A Dnet.c1022 thisfrag = payload + offset8; in __net_defragment()
1036 payload[0].last_byte = ~0; in __net_defragment()
1037 payload[0].next_hole = 0; in __net_defragment()
1038 payload[0].prev_hole = 0; in __net_defragment()
1051 h = payload + first_hole; in __net_defragment()
1057 h = payload + h->next_hole; in __net_defragment()
1110 payload[h->next_hole].prev_hole = (h - payload); in __net_defragment()
1112 payload[h->prev_hole].next_hole = (h - payload); in __net_defragment()
1114 first_hole = (h - payload); in __net_defragment()
1121 h->next_hole = (newh - payload); in __net_defragment()
[all …]
/u-boot/doc/develop/uefi/
A Du-boot_on_efi.rst69 * u-boot-payload.efi - U-Boot EFI payload application
75 QEMU version is 6.0.0 or above to test this. You can run the payload with
83 type 'fs0:u-boot-payload.efi' to run the payload or 'fs0:u-boot-app.efi' to
92 fs0:u-boot-payload.efi
96 This will start the payload, copy U-Boot into RAM and start U-Boot. Note
112 The application and payload approaches sound similar but are in fact
148 The payload approach is a different kettle of fish. It works by building
187 seems to cause problems. For this reason the U-Boot payload runs with
277 payload stub, application, support code. Mostly arch-neutral
280 x86 support code for running as an EFI application and payload
[all …]
A Dindex.rst8 can be run an UEFI payload.
/u-boot/doc/board/intel/
A Dslimbootloader.rst10 This target is to enable U-Boot_ as a payload of `Slim Bootloader`_ (a.k.a SBL)
25 payload in a HOB (Hand-Off Block) which has serial port, memory map, performance
27 payload light-weight, platform independent and more generic across different
29 payload.
31 Build Instruction for U-Boot as a Slim Bootloader payload
52 Slim Bootloader looks for a payload from the specific location.
62 detects its target payload by PayloadId in board configuration.
71 2. Update payload text base. PAYLOAD_EXE_BASE must be the same as U-Boot
123 2. Update payload text base.
/u-boot/board/efi/efi-x86_payload/
A DMakefile5 obj-y += payload.o
/u-boot/doc/board/coreboot/
A Dcoreboot.rst7 Build Instructions for U-Boot as coreboot payload
9 Building U-Boot as a coreboot payload is just like building U-Boot for targets
17 For testing U-Boot as the coreboot payload, there are things that need be paid
27 -f u-boot-dtb.bin -n fallback/payload -c lzma -l 0x1110000 -e 0x1110000
32 If you want to use ELF as the coreboot payload, change U-Boot configuration to
/u-boot/doc/board/microchip/
A Dmpfs_icicle.rst51 as HSS payload (Custom boot-flow)
88 Creating the HSS payload - Microchip boot-flow
91 1. You will be creating a payload from `u-boot-dtb.bin`.
93 2. Go to hss-payload-generator source directory.
106 4. Generate payload
110 ./hss-payload-generator -c test/uboot.yaml payload.bin
165 Creating the HSS payload - Custom boot-flow
170 2. Go to hss-payload-generator source directory.
183 4. Generate payload
187 ./hss-payload-generator -c test/uboot.yaml payload.bin
[all …]
/u-boot/arch/x86/cpu/efi/
A DMakefile12 obj-y += payload.o
/u-boot/board/efi/
A DKconfig27 bool "efi payload"
32 U-Boot is loaded as a payload from EFI.
/u-boot/include/keys/
A Dasymmetric-type.h75 return key->payload.data[asym_key_ids]; in asymmetric_key_ids()
/u-boot/board/intel/
A DKconfig80 boot firmware as a payload. Slim Bootloader does memory initialization
82 HOB (Hand Off Block) to a payload. The payload consumes HOB data
85 Before launching a payload. Instead, Slim Bootloader generates its

Completed in 73 milliseconds

1234