Home
last modified time | relevance | path

Searched refs:destination (Results 1 – 25 of 35) sorted by relevance

12

/u-boot/arch/arm/mach-stm32mp/cmd_stm32prog/
A Dstm32prog_usb.c76 u32 destination = DEFAULT_ADDRESS; /* destination address */ in stm32prog_cmd_read() local
93 destination = CONFIG_SYS_LOAD_ADDR; in stm32prog_cmd_read()
98 *pt_buf++ = (u8)(destination); in stm32prog_cmd_read()
99 *pt_buf++ = (u8)(destination >> 8); in stm32prog_cmd_read()
100 *pt_buf++ = (u8)(destination >> 16); in stm32prog_cmd_read()
101 *pt_buf++ = (u8)(destination >> 24); in stm32prog_cmd_read()
A Dstm32prog_serial.c457 u32 destination = DEFAULT_ADDRESS; /* destination address */ in get_phase_command() local
465 destination = CONFIG_SYS_LOAD_ADDR; in get_phase_command()
469 stm32prog_serial_putc(destination); /* byte 1 of address */ in get_phase_command()
470 stm32prog_serial_putc(destination >> 8); /* byte 2 of address */ in get_phase_command()
471 stm32prog_serial_putc(destination >> 16); /* byte 3 of address */ in get_phase_command()
472 stm32prog_serial_putc(destination >> 24); /* byte 4 of address */ in get_phase_command()
/u-boot/doc/usage/cmd/
A Dloadm.rst17 to destination address and, if efi is enabled, will setup a "Mem" efi
26 destination address of the byte stream to be loaded
A Dtftpput.rst18 By default the destination port is 69 and the source port is pseudo-random.
21 the destination port.
76 be used to set the source and the destination ports.
A Dseama.rst29 destination address of the byte stream to be loaded
/u-boot/drivers/dma/
A Ddma-uclass.c238 dma_addr_t destination; in dma_memcpy() local
251 destination = dma_map_single(dst, len, DMA_FROM_DEVICE); in dma_memcpy()
254 ret = ops->transfer(dev, DMA_MEM_TO_MEM, destination, source, len); in dma_memcpy()
257 dma_unmap_single(destination, len, DMA_FROM_DEVICE); in dma_memcpy()
A Dti-edma3.c517 dma_addr_t destination = dma_map_single(dst, len, DMA_FROM_DEVICE); in edma3_transfer() local
520 __edma3_transfer(edma3_base_addr, edma_slot_num, destination, source, len, len); in edma3_transfer()
523 dma_unmap_single(destination, len, DMA_FROM_DEVICE); in edma3_transfer()
531 dma_addr_t destination = dma_map_single(dst, len, DMA_FROM_DEVICE); in edma3_fill() local
533 __edma3_fill(edma3_base_addr, edma_slot_num, destination, val, len); in edma3_fill()
536 dma_unmap_single(destination, len, DMA_FROM_DEVICE); in edma3_fill()
/u-boot/include/fsl-mc/
A Dfsl_dpni.h229 MC_RSP_OP(cmd, 1, 0, 32, uint32_t, (queue)->destination.id); \
230 MC_RSP_OP(cmd, 1, 56, 4, enum dpni_dest, (queue)->destination.type); \
231 MC_RSP_OP(cmd, 1, 62, 1, char, (queue)->destination.stash_ctrl); \
232 MC_RSP_OP(cmd, 1, 63, 1, char, (queue)->destination.hold_active); \
245 MC_CMD_OP(cmd, 1, 0, 32, uint32_t, (queue)->destination.id); \
246 MC_CMD_OP(cmd, 1, 56, 4, enum dpni_dest, (queue)->destination.type); \
247 MC_CMD_OP(cmd, 1, 62, 1, char, (queue)->destination.stash_ctrl); \
248 MC_CMD_OP(cmd, 1, 63, 1, char, (queue)->destination.hold_active); \
249 MC_CMD_OP(cmd, 1, 0, 32, uint32_t, (queue)->destination.id); \
1197 } destination; member
/u-boot/doc/mvebu/cmd/
A Dbubt.txt5 The bubt command gets the following parameters: ATF file name, destination device and source device.
6 bubt [file-name] [destination [source]]
8 - destination Flash to burn to [spi, nand, mmc, sata]. default = active flash
/u-boot/board/xilinx/zynq/
A DKconfig19 and places the decrypted image at destination address.
/u-boot/doc/device-tree-bindings/misc/
A Desm-k3.txt8 destination, which can be system reset, interrupt controller, etc. In
/u-boot/arch/arm/include/asm/arch-tegra/
A Dwarmboot.h44 u32 destination; /* destination address to put the wb code */ member
/u-boot/arch/xtensa/cpu/
A Dstart.S155 l32i a4, a2, 0 # start destination (in RAM)
156 l32i a5, a2, 4 # end destination (in RAM)
160 beq a4, a6, 1b # skip, source and destination are the same
/u-boot/doc/usage/
A Dnetconsole.rst15 port of the destination. The format is <ip_addr>:<port>. If <port> is
20 the 'ncinport' environment variable and the destination port can be
/u-boot/drivers/net/
A Daltera_tse.h65 u32 destination; /* the address to write data */ member
A Daltera_tse.c49 desc->destination = virt_to_phys(write_addr); in alt_sgdma_construct_descriptor()
/u-boot/doc/arch/
A Darm64.rst27 the U-Boot will be relocated to destination again.
/u-boot/arch/arm/mach-tegra/tegra20/
A Dwarmboot.c346 dst_header->destination = NV_WB_RUN_ADDRESS; in warmboot_prepare_code()
/u-boot/net/
A DKconfig96 bool "Set TFTP UDP source/destination ports via the environment"
103 UDP destination port value. If tftpdstp isn't defined, the normal
/u-boot/doc/
A DREADME.omap3120 Config source, destination and size of a transfer
A DREADME.unaligned-memory-access.txt231 where the source or destination (or both) are of type u8* or unsigned char*.
/u-boot/drivers/mtd/
A DKconfig170 If enabled, the content of the flash (destination) is compared
/u-boot/doc/device-tree-bindings/fsp/fsp2/apollolake/
A Dfsp-m.txt187 - fspm,fw-trace-destination: FW Trace Destination
/u-boot/lib/efi_loader/
A Defi_boottime.c2903 static void EFIAPI efi_copy_mem(void *destination, const void *source, in efi_copy_mem() argument
2906 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length); in efi_copy_mem()
2907 memmove(destination, source, length); in efi_copy_mem()
/u-boot/scripts/
A Dspelling.txt464 desination||destination
465 destionation||destination

Completed in 69 milliseconds

12