Searched refs:multi (Results 1 - 20 of 20) sorted by relevance

/u-boot/scripts/
H A DMakefile.lib51 multi-used-y := $(sort $(foreach m,$(obj-y), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
52 multi-used-m := $(sort $(foreach m,$(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
53 multi-used := $(multi-used-y) $(multi-used-m)
54 single-used-m := $(sort $(filter-out $(multi-used-m),$(obj-m)))
58 multi-objs-y := $(foreach m, $(multi-used-y), $($(m:.o=-objs)) $($(m:.o=-y)))
59 multi-objs-m := $(foreach m, $(multi
[all...]
H A DMakefile.build130 # Default for not multi-part modules
133 $(multi-objs-m) : modname = $(modname-multi)
134 $(multi-objs-m:.o=.i) : modname = $(modname-multi)
135 $(multi-objs-m:.o=.s) : modname = $(modname-multi)
136 $(multi-objs-m:.o=.lst) : modname = $(modname-multi)
137 $(multi
[all...]
/u-boot/post/lib_powerpc/
H A DMakefile9 obj-y += store.o load.o cr.o b.o multi.o string.o complex.o
/u-boot/arch/mips/mach-mtmips/mt7620/
H A Dinit.c87 u32 val, multi, div, fdiv, ffrac, dram_type, sys_div; local
109 multi = (val & PLL_MULT_RATIO_M) >> PLL_MULT_RATIO_S;
111 cpu_freq = (multi + 24) * 40000000 /
/u-boot/fs/btrfs/
H A Dvolumes.c968 struct btrfs_multi_bio *multi = NULL; local
976 kfree(multi);
981 kfree(multi);
987 multi = kzalloc(btrfs_multi_bio_size(stripes_allocated),
989 if (!multi)
1014 kfree(multi);
1020 /* if our multi bio struct is too small, back off and try again */
1023 kfree(multi);
1024 multi = NULL;
1056 multi
[all...]
H A Ddisk-io.c404 struct btrfs_multi_bio *multi = NULL; local
415 &read_len, &multi, mirror, NULL);
418 kfree(multi);
421 device = multi->stripes[0].dev;
424 kfree(multi);
432 multi->stripes[0].physical, eb,
434 kfree(multi);
435 multi = NULL;
546 struct btrfs_multi_bio *multi = NULL; local
553 ret = btrfs_map_block(fs_info, READ, cur, &cur_len, &multi,
[all...]
/u-boot/drivers/mmc/
H A Dmmc_spi.c241 * @multi: indicate a transfer by multiple block write command (CMD25)
245 u32 bcnt, u32 bsize, int multi)
253 tok[1] = multi ? SPI_TOKEN_MULTI_WRITE : SPI_TOKEN_SINGLE;
290 if (multi && bcnt == -1) { /* stop multi write */
322 int i, multi, ret = 0; local
431 multi = (cmd->cmdidx == MMC_CMD_WRITE_MULTIPLE_BLOCK);
438 multi);
244 mmc_spi_writedata(struct udevice *dev, const void *xbuf, u32 bcnt, u32 bsize, int multi) argument
H A Docteontx_hsmmc.c526 printf(" 48: multi: %s\n",
527 emm_dma.s.multi ? "yes" : "no");
971 emm_dma.s.multi = 1;
973 emm_dma.s.multi = 0;
979 debug("%s(%s): card address: 0x%x, size: %d, multi: %d\n",
980 __func__, mmc->dev->name, block, size, emm_dma.s.multi);
1163 /* use max timeout for multi-block transfers */
1299 pr_err("%s(%s): Error: multi-DMA timed out after %lums. rsp_sts: 0x%llx, emm_int: 0x%llx, emm_dma_int: 0x%llx, rsp_sts_lo: 0x%llx, emm_dma: 0x%llx\n",
/u-boot/test/image/
H A Dtest-imagetools.sh89 # Write files into an multi-file image
95 echo -e "\nBuilding multi-file image..."
96 do_cmd ${MKIMAGE} -A x86 -O linux -T multi -n \"${IMAGE_NAME}\" \
101 # Extract files from an multi-file image
104 echo -e "\nExtracting multi-file image contents..."
105 do_cmd ${DUMPIMAGE} -T multi -p 0 -o ${DATAFILE0} ${IMAGE_MULTI}
106 do_cmd ${DUMPIMAGE} -T multi -p 1 -o ${DATAFILE1} ${IMAGE_MULTI}
107 do_cmd ${DUMPIMAGE} -T multi -p 2 -o ${DATAFILE2} ${IMAGE_MULTI}
108 do_cmd ${DUMPIMAGE} -T multi -p 2 -o ${TEST_OUT} ${IMAGE_MULTI}
195 # Compress and extract multi
[all...]
/u-boot/cmd/
H A Dpci.c289 static void pciinfo(struct udevice *bus, bool short_listing, bool multi) argument
293 if (!multi)
296 if (!multi || dev_seq(bus) == 0)
/u-boot/arch/arm/include/asm/arch-octeontx/csrs/
H A Dcsrs-mio_emm.h258 u64 multi : 1; member in struct:mio_emm_dma::mio_emm_dma_s
272 u64 multi : 1; member in struct:mio_emm_dma::mio_emm_dma_cn8
286 u64 multi : 1; member in struct:mio_emm_dma::mio_emm_dma_cn9
/u-boot/arch/arm/include/asm/arch-octeontx2/csrs/
H A Dcsrs-mio_emm.h258 u64 multi : 1; member in struct:mio_emm_dma::mio_emm_dma_s
272 u64 multi : 1; member in struct:mio_emm_dma::mio_emm_dma_cn8
286 u64 multi : 1; member in struct:mio_emm_dma::mio_emm_dma_cn9
/u-boot/scripts/kconfig/
H A Dzconf.l217 "%s:%d:warning: multi-line strings not supported\n",
/u-boot/include/
H A Dusb_defs.h351 bool multi; /* true means one TT per port */ member in struct:usb_tt
/u-boot/arch/mips/mach-octeon/include/mach/
H A Dcvmx-mio-emm-defs.h219 uint64_t multi : 1; member in struct:mio_emm_dma::mio_emm_dma_s
/u-boot/common/
H A Dusb_hub.c722 hub->tt.multi = true;
/u-boot/drivers/usb/host/
H A Dxhci-mem.c831 if (hub->tt.multi)
H A Dxhci.c1394 if (hub->tt.multi)
/u-boot/drivers/usb/isp1760/
H A Disp1760-hcd.c373 * HC_MEMORY_REG (see isp176x datasheet). Unless you want to do fancy multi-
877 u32 multi; local
887 multi = 1 + ((maxpacket >> 11) & 0x3);
932 ptd->dw0 |= TO_DW0_MULTI(multi);
/u-boot/drivers/usb/musb-new/
H A Dmusb_host.c1203 * DMA has completed. But if we're using DMA mode 1 (multi
2070 if (urb->dev->tt->multi)

Completed in 227 milliseconds