Searched refs:dd (Results 1 - 18 of 18) sorted by relevance

/u-boot/api/
H A Dapi_storage.c91 struct blk_desc *dd; local
132 dd = (struct blk_desc *)di->cookie;
133 if (dd->type == DEV_TYPE_UNKNOWN) {
137 di->di_stor.block_count = dd->lba;
138 di->di_stor.block_size = dd->blksz;
150 static int dev_stor_type(struct blk_desc *dd) argument
156 if (dd == blk_get_dev(specs[i].name, j))
284 static int dev_stor_is_valid(int type, struct blk_desc *dd) argument
289 if (dd == blk_get_dev(specs[type].name, i))
290 if (dd
324 struct blk_desc *dd = (struct blk_desc *)cookie; local
347 struct blk_desc *dd = (struct blk_desc *)cookie; local
[all...]
/u-boot/drivers/phy/renesas/
H A Dr8a779f0-ether-serdes.c33 struct r8a779f0_eth_serdes_drv_data *dd; member in struct:r8a779f0_eth_serdes_channel
80 r8a779f0_eth_serdes_common_init_ram(struct r8a779f0_eth_serdes_drv_data *dd) argument
86 channel = &dd->channel[i];
92 r8a779f0_eth_serdes_write32(dd->addr, 0x026c, 0x180, 0x03);
100 struct r8a779f0_eth_serdes_drv_data *dd = channel->dd; local
104 r8a779f0_eth_serdes_write32(dd->addr, 0x0244, 0x180, 0x0097);
105 r8a779f0_eth_serdes_write32(dd->addr, 0x01d0, 0x180, 0x0060);
106 r8a779f0_eth_serdes_write32(dd->addr, 0x01d8, 0x180, 0x2200);
107 r8a779f0_eth_serdes_write32(dd
217 struct r8a779f0_eth_serdes_drv_data *dd = channel->dd; local
255 struct r8a779f0_eth_serdes_drv_data *dd = dev_get_priv(p->dev); local
287 struct r8a779f0_eth_serdes_drv_data *dd = dev_get_priv(p->dev); local
296 struct r8a779f0_eth_serdes_drv_data *dd = dev_get_priv(p->dev); local
315 struct r8a779f0_eth_serdes_drv_data *dd = dev_get_priv(p->dev); local
352 struct r8a779f0_eth_serdes_drv_data *dd = dev_get_priv(dev); local
[all...]
/u-boot/drivers/net/fsl-mc/dpio/
H A Dqbman_sys.h38 uint32_t *dd = d; local
42 *(dd++) = *(ss++);
53 uint32_t *dd = d; local
62 *(dd++) = ss[1];
63 *(dd++) = ss[0];
66 *(dd++) = *(ss++);
67 *(dd++) = *(ss++);
75 uint32_t *dd = (uint32_t *)d; local
79 dd[1] = *(ss++);
80 dd[
[all...]
/u-boot/arch/arc/
H A DMakefile17 $(Q)printf '\x02' | dd of=u-boot bs=1 seek=$(EXEC_TYPE_OFFSET) count=1 \
/u-boot/test/fs/
H A Dfat-noncontig-test.sh64 for prereq in fallocate mkfs.fat dd crc32; do
77 echo fallocate failed - using dd instead
78 dd if=/dev/zero of=${img} bs=1024 count=$((40 * 1024))
98 dd if=${fill} of=${fn} bs=512 count=${sects} >/dev/null 2>&1
100 dd if=${fill} of=${fn} bs=512 count=${sects} >/dev/null 2>&1
107 dd if=${fill} of=${mnttestfn} bs=511 >/dev/null 2>&1
H A Dfs-test.sh26 PREREQ_BINS="sha256sum mkfs mount umount dd fallocate mkdir"
133 echo fallocate failed - using dd instead
134 dd if=/dev/zero of=$1 bs=1024 count=$((3 * 1024 * 1024))
364 sudo dd if=/dev/urandom of="${GB2p5}" bs=1M count=1 \
366 sudo dd if=/dev/urandom of="${GB2p5}" bs=1M count=2 seek=2047 \
368 sudo dd if=/dev/urandom of="${GB2p5}" bs=1M count=1 seek=2499 \
374 sudo dd if=/dev/urandom of="${MB1}" bs=1M count=1 \
384 dd if="${MB1}" bs=1M skip=0 count=1 2> /dev/null | sha256sum > "$2"
388 dd if="${GB2p5}" bs=1M skip=0 count=1 \
392 dd i
[all...]
/u-boot/board/BuR/brsmarc1/
H A Dconfig.mk13 dd if=/dev/zero ibs=1M count=2 2>/dev/null | tr "\000" "\377" >$@ && \
14 dd conv=notrunc bs=1 if=MLO.byteswap of=$@ seek=0 2>/dev/null && \
15 dd bs=1 if=u-boot-dtb.img of=$@ seek=$(payload_off) 2>/dev/null
/u-boot/board/BuR/brppt2/
H A Dconfig.mk13 dd if=/dev/zero ibs=1M count=2 2>/dev/null | tr "\000" "\377" >$@ && \
14 dd conv=notrunc bs=1 if=SPL of=$@ seek=1024 2>/dev/null && \
15 dd bs=1 if=u-boot-dtb.img of=$@ seek=$(payload_off) 2>/dev/null
/u-boot/board/BuR/brppt1/
H A Dconfig.mk14 dd if=/dev/zero ibs=1M count=2 2>/dev/null | tr "\000" "\377" >$@ && \
15 dd conv=notrunc bs=1 if=MLO.byteswap of=$@ seek=0 2>/dev/null && \
16 dd bs=1 if=u-boot-dtb.img of=$@ seek=$(payload_off) 2>/dev/null
/u-boot/board/intel/edison/
H A Dconfig.mk10 dd if=$^ of=$@ bs=4k seek=1 2>/dev/null && \
/u-boot/doc/imx/habv4/csf_examples/mx8m/
H A Dcsf.sh56 dd if=csf_spl.bin of=flash.bin bs=1 seek=${spl_dd_offset} conv=notrunc
74 dd if=ivt.bin of=flash.bin bs=1 seek=${ivt_block_offset} conv=notrunc
84 # Note that in order for dd to actually extend the file, one must not
85 # pass conv=notrunc here. With a non-zero seek= argument, dd is
87 # particular, dd does not open the file with O_TRUNC.
89 dd if=/dev/null of=csf_fit.bin bs=1 seek=$((CSF_SIZE - 0x20)) count=0
92 dd if=csf_fit.bin of=flash.bin bs=1 seek=${csf_block_offset} conv=notrunc
/u-boot/tools/
H A Dimx8m_image.sh30 dd if=spl/u-boot-spl.bin of=spl/u-boot-spl-pad.bin bs=4 conv=sync
40 dd if=spl/u-boot-spl.bin of=spl/u-boot-spl-pad.bin bs=4 conv=sync
47 dd if=spl/u-boot-spl.bin of=spl/u-boot-spl-pad.bin bs=4 conv=sync
/u-boot/arch/arm/mach-keystone/
H A Dconfig.mk33 @dd if=/dev/zero bs=8 count=1 2>/dev/null >> $@
/u-boot/arch/nios2/lib/
H A Dlibgcc.c150 const DWunion dd = {.ll = d}; local
156 d0 = dd.s.low;
157 d1 = dd.s.high;
289 /* 0q = NN / dd */
/u-boot/arch/arm/cpu/arm926ejs/mxs/
H A DMakefile37 dd if=$^ of=$@ ibs=64 conv=sync 2>/dev/null && \
/u-boot/arch/arm/mach-imx/
H A DMakefile148 cmd_u-boot-nand_imx = (dd bs=1024 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@.zero-padded ; \
149 (dd bs=10k count=1 if=/dev/zero 2>/dev/null) | cat $@.zero-padded - > $@ ; \
211 dd if=u-boot.cnt of=flash.bin bs=1K seek=$$pad_cnt;
272 dd bs=1015 count=1 if=/dev/zero 2>/dev/null) | cat - $< > $@
/u-boot/scripts/
H A DMakefile.spl249 @dd if=$< of=$@ conv=block,sync bs=4 2>/dev/null;
338 dd if=/dev/zero of=$@ bs=1 count=$${bss_size_str} 2>/dev/null;
/u-boot/
H A DMakefile1612 cmd_gensplpadx4 = dd if=/dev/zero of=spl/u-boot-spl.pad bs=64 count=1024 ; \

Completed in 182 milliseconds