Searched refs:src (Results 201 - 225 of 399) sorted by relevance

1234567891011>>

/u-boot/drivers/clk/qcom/
H A Dclock-qcm2290.c97 freq->pre_div, freq->m, freq->n, freq->src,
104 WARN(freq->src != CFG_CLK_SRC_GPLL7,
108 freq->pre_div, freq->m, freq->n, freq->src,
H A Dclock-sm6115.c109 freq->pre_div, freq->m, freq->n, freq->src,
116 WARN(freq->src != CFG_CLK_SRC_GPLL0,
120 freq->pre_div, freq->m, freq->n, freq->src,
/u-boot/drivers/clk/aspeed/
H A Dclk_ast2600.c689 uint32_t src; /* 0=external PAD, 1=internal PLL */ member in struct:ast2600_mac_clk_div
696 .src = ASPEED_CLK_EPLL,
703 .src = ASPEED_CLK_EPLL,
720 ast2600_configure_pll(p_scu, &pll.cfg, p_cfg->src);
733 if (p_cfg->src == ASPEED_CLK_EPLL || p_cfg->src == ASPEED_CLK_HPLL) {
738 if (p_cfg->fin != ast2600_get_pll_rate(p_scu, p_cfg->src))
750 if (p_cfg->src == ASPEED_CLK_HPLL)
774 if (p_cfg->src == ASPEED_CLK_EPLL || p_cfg->src
[all...]
/u-boot/board/freescale/ls1028a/
H A Dls1028a.c239 enum boot_src src = get_boot_src(); local
276 if (src == BOOT_SOURCE_SD_MMC) {
278 } else if (src == BOOT_SOURCE_SD_MMC2) {
/u-boot/arch/arm/mach-at91/arm926ejs/
H A Deflash.c221 int write_buff(flash_info_t *info, uchar *src, ulong addr, ulong cnt) argument
227 debug("write src=%08lx addr=%08lx cnt=%lx\n",
228 (ulong)src, addr, cnt);
239 src32 = (u32 *) src;
/u-boot/examples/api/
H A Dglue.c416 __weak void *memcpy(void *dest, const void *src, size_t size) argument
419 const unsigned char *ptr = src;
420 const unsigned char *end = src + size;
/u-boot/drivers/usb/isp1760/
H A Disp1760-hcd.c385 __u32 __iomem *src; local
390 src = src_base + (bank_addr | src_offset);
394 *dst = readl_relaxed(src);
396 src++;
401 *dst = __raw_readl(src);
403 src++;
415 val = readl_relaxed(src);
417 val = __raw_readl(src);
481 __u32 const *src, u32 bytes)
489 writel_relaxed(*src, ds
480 isp1760_mem_write(void __iomem *dst_base, u32 dst_offset, __u32 const *src, u32 bytes) argument
515 isp1763_mem_write(struct usb_hcd *hcd, u16 dstaddr, u16 *src, u32 bytes) argument
542 mem_write(struct usb_hcd *hcd, u32 dst_offset, __u32 *src, u32 bytes) argument
2065 void *src = NULL; local
[all...]
/u-boot/cmd/mvebu/
H A Dbubt.c1123 static int bubt_read_file(struct bubt_dev *src) argument
1127 if (!src->read) {
1129 src->name);
1133 image_size = src->read(net_boot_file_name);
1136 net_boot_file_name, src->name);
1189 struct bubt_dev *src, *dst; local
1227 src = find_bubt_dev(src_dev_name);
1228 if (!src) {
1233 if (!bubt_is_dev_active(src))
1237 net_boot_file_name, src
[all...]
/u-boot/drivers/qe/
H A Dqe.c179 enum boot_src src = get_boot_src(); local
184 if (src == BOOT_SOURCE_IFC_NOR) {
231 enum boot_src src = get_boot_src(); local
237 if (src == BOOT_SOURCE_IFC_NOR)
241 if (src == BOOT_SOURCE_QSPI_NOR)
245 if (src == BOOT_SOURCE_SD_MMC) {
270 if (src == BOOT_SOURCE_SD_MMC)
/u-boot/drivers/mtd/nand/raw/
H A Dsand_nand.c361 const u8 *src = NULL; local
368 src = chip->tmp;
372 src = chip->id;
376 src = "ONFI";
380 src = chip->onfi;
384 src = &chip->status;
396 memcpy(buf, src + chip->column, to_copy);
/u-boot/tools/dtoc/
H A Dfdt.py715 def merge_props(self, src, copy_phandles):
719 src (Node): Node containing properties to copy
722 Adds properties which are present in src but not in this node. Any
726 tout.debug(f'copy to {self.path}: {src.path}')
727 for name, src_prop in src.props.items():
735 def copy_node(self, src, copy_phandles=False):
739 src (Node): Node to copy
753 dst = self.FindNode(src.name)
757 dst = self.insert_subnode(src.name)
758 dst.merge_props(src, copy_phandle
[all...]
/u-boot/arch/arm/cpu/armv8/fsl-layerscape/
H A Dsoc.c653 enum boot_src src; local
665 src = get_boot_src();
666 if (src != BOOT_SOURCE_QSPI_NOR)
811 enum boot_src src = get_boot_src(); local
816 switch (src) {
878 enum boot_src src = get_boot_src(); local
880 switch (src) {
/u-boot/drivers/block/
H A Dide.c118 * copy src to dest, skipping leading and trailing blanks and null
122 static void ident_cpy(u8 *dst, u8 *src, uint len) argument
127 end = src + len - 1;
134 while ((*src) && (src < end) && (*src == ' '))
135 ++src;
138 while ((*src) && (src < end)) {
139 *dst++ = *src;
[all...]
/u-boot/lib/rsa/
H A Drsa-keyprop.c20 * @src: Pointer to data
23 static unsigned br_dec16be(const void *src) argument
25 return get_unaligned_be16(src);
30 * @src: Pointer to data
33 static uint32_t br_dec32be(const void *src) argument
35 return get_unaligned_be32(src);
51 /* from BearSSL's src/inner.h */
180 /* from BearSSL's src/int/i32_bitlen.c */
206 /* from BearSSL's src/int/i32_decode.c */
215 static void br_i32_decode(uint32_t *x, const void *src, size_ argument
[all...]
/u-boot/arch/arm/mach-imx/imx8ulp/
H A Dpcc.c317 int pcc_clock_sel(int pcc_controller, int pcc_clk_slot, enum cgc_clk src) argument
348 if (cgc_clk_array[i] == src) {
349 /* Find the clock src, then set it to PCS */
355 printf("No parent in PCS of PCC %d, invalid scg_clk %d\n", clk, src);
442 int pcc_clock_get_clksrc(int pcc_controller, int pcc_clk_slot, enum cgc_clk *src) argument
488 *src = cgc_clk_array[val];
490 debug("%s: parent cgc1 clk %d\n", __func__, *src);
/u-boot/arch/arm/mach-imx/imx9/
H A Dsoc.c573 struct src_general_regs *src = (struct src_general_regs *)SRC_GLOBAL_RBASE; local
574 u32 srsr = readl(&src->srsr);
577 writel(srsr, &src->srsr);
580 writel(srsr, &src->gpr[0]);
847 struct src_general_regs *src = (struct src_general_regs *)SRC_GLOBAL_RBASE; local
852 srsr = readl(&src->gpr[0]);
/u-boot/drivers/mmc/
H A Dtmio-common.c250 const char *src = data->src; local
259 ret = tmio_sd_pio_write_one_block(dev, cmd, src,
267 src += data->blocksize;
351 buf = (void *)data->src;
376 uintptr_t addr = (uintptr_t)data->src;
/u-boot/drivers/ram/sifive/
H A Dsifive_ddr.c110 volatile u32 *src, u32 n)
115 writel(*src, dest);
116 src++;
109 sdram_copy_to_reg(volatile u32 *dest, volatile u32 *src, u32 n) argument
/u-boot/board/raspberrypi/rpi/
H A Drpi.c522 int copy_property(void *dst, void *src, char *path, char *property) argument
528 src_offset = fdt_path_offset(src, path);
534 prop = fdt_getprop(src, src_offset, property, &len);
/u-boot/drivers/video/exynos/
H A Dexynos_mipi_dsi_lowlevel.h57 unsigned int src);
/u-boot/drivers/dma/ti/
H A Dk3-psil-j721s2.c163 .src = j721s2_src_ep_map,
H A Dk3-psil-am64.c152 .src = am64_src_ep_map,
/u-boot/include/
H A D_exports.h76 EXPORT_FUNC(strcpy, char *, strcpy, char *dest, const char *src)
/u-boot/lib/zstd/common/
H A Dfse.h57 Compress content of buffer 'src', of size 'srcSize', into destination buffer 'dst'.
65 const void* src, size_t srcSize);
102 FSE_PUBLIC_API size_t FSE_compress2 (void* dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog);
173 Compress `src` using `ct` into `dst` which must be already allocated.
177 FSE_PUBLIC_API size_t FSE_compress_usingCTable (void* dst, size_t dstCapacity, const void* src, size_t srcSize, const FSE_CTable* ct);
184 'src' is a table of bytes of size 'srcSize'. All values within 'src' MUST be <= maxSymbolValuePtr[0]
187 This can be used to know if there is a single symbol within 'src', and to quickly evaluate its compressibility.
215 'CTable' can then be used to compress 'src', with FSE_compress_usingCTable().
216 Similar to FSE_count(), the convention is that 'src' i
[all...]
/u-boot/lib/efi_loader/
H A Defi_file.c97 char *src = p + 1; local
98 memmove(p, src, strlen(src) + 1);
116 char *src = p + 2; local
117 memmove(p, src, strlen(src) + 1);
123 char *src = p + 3; local
136 memmove(p, src, strlen(src) + 1);

Completed in 176 milliseconds

1234567891011>>