Searched refs:name (Results 1 - 25 of 3033) sorted by relevance

1234567891011>>

/u-boot/arch/arm/include/asm/mach-imx/
H A Dregs-common.h38 #define __mxs_reg_8(name) \
39 uint8_t name[4]; \
40 uint8_t name##_set[4]; \
41 uint8_t name##_clr[4]; \
42 uint8_t name##_tog[4]; \
44 #define __mxs_reg_32(name) \
45 uint32_t name; \
46 uint32_t name##_set; \
47 uint32_t name##_clr; \
48 uint32_t name##_to
[all...]
/u-boot/arch/sandbox/include/asm/
H A Dcpu.h9 void cpu_sandbox_set_current(const char *name);
/u-boot/include/linux/
H A Dlinkage.h49 #define LENTRY(name) \
51 SYMBOL_NAME_LABEL(name)
53 #define ENTRY(name) \
54 .globl SYMBOL_NAME(name) ASM_NL \
55 LENTRY(name)
57 #define WEAK(name) \
58 .weak SYMBOL_NAME(name) ASM_NL \
59 LENTRY(name)
62 #define END(name) \
63 .size name,
[all...]
/u-boot/board/xilinx/common/
H A Dcpu-info.c14 char name[SOC_MAX_STR_SIZE]; local
23 ret = soc_get_family(soc, name, SOC_MAX_STR_SIZE);
25 printf("CPU: %s\n", name);
27 ret = soc_get_revision(soc, name, SOC_MAX_STR_SIZE);
29 printf("Silicon: %s\n", name);
31 ret = soc_get_machine(soc, name, SOC_MAX_STR_SIZE);
33 printf("Chip: %s\n", name);
/u-boot/include/linux/mtd/
H A Dconcat.h16 const char *name); /* name for the new device */
18 char *name); /* name for the new device */
/u-boot/tools/binman/btool/
H A Dlzop.py29 def __init__(self, name):
30 super().__init__(name, 'lzo', compress_args=[])
H A Dxz.py29 def __init__(self, name):
30 super().__init__(name, fetch_package='xz-utils',
H A Dzstd.py29 def __init__(self, name):
30 super().__init__(name)
H A Dbzip2.py29 def __init__(self, name):
30 super().__init__(name, version_regex=r'bzip2.*Version ([0-9.]+)', version_args='--help')
H A Dbtool_gzip.py29 def __init__(self, name):
30 super().__init__(name, compress_args=[],
/u-boot/arch/arm/lib/
H A Dasmdefs.h50 #define ENTRY_ALIGN(name, alignment) \
51 .global name; \
52 .type name,%function; \
54 name: \
62 #define ENTRY_ALIGN(name, alignment) \
63 .global name; \
64 .type name,%function; \
66 name: \
71 #define ENTRY(name) ENTRY_ALIGN(name,
[all...]
/u-boot/include/
H A Dbinman.h29 * @name: Name of entry
35 int binman_entry_map(ofnode parent, const char *name, void **bufp, int *sizep);
56 * given name
58 * @name: Path to entry to examine (e.g. "/read-only/u-boot")
63 int binman_entry_find(const char *name, struct binman_entry *entry);
68 * @name: Name of node to look for
71 ofnode binman_section_find_node(const char *name);
79 * @name: Name of subnode, typically a section. This must be in the top-level
85 int binman_select_subnode(const char *name);
H A Dmemalign.h72 #define ALLOC_ALIGN_BUFFER_PAD(type, name, size, align, pad) \
73 char __##name[ROUND(PAD_SIZE((size) * sizeof(type), pad), align) \
76 type *name = (type *)ALIGN((uintptr_t)__##name, align)
77 #define ALLOC_ALIGN_BUFFER(type, name, size, align) \
78 ALLOC_ALIGN_BUFFER_PAD(type, name, size, align, 1)
79 #define ALLOC_CACHE_ALIGN_BUFFER_PAD(type, name, size, pad) \
80 ALLOC_ALIGN_BUFFER_PAD(type, name, size, ARCH_DMA_MINALIGN, pad)
81 #define ALLOC_CACHE_ALIGN_BUFFER(type, name, size) \
82 ALLOC_ALIGN_BUFFER(type, name, siz
[all...]
H A Denv_attr.h16 * entry = name[:attributes]
18 * It will call the "callback" function with the "name" and "attributes"
24 int (*callback)(const char *name, const char *attributes, void *priv),
29 * It also takes as input a "name" to look for.
30 * If the name is found in the list, it's value is copied into "attributes".
32 * It returns -1 if attributes is NULL, 1 if "name" is not found, 2 if
36 int env_attr_lookup(const char *attr_list, const char *name, char *attributes);
/u-boot/drivers/fpga/
H A Dfpga-uclass.c9 .name = "fpga",
/u-boot/board/beacon/beacon-rzg2m/
H A Dbeacon-rzg2m.c21 int board_fit_config_name_match(const char *name) argument
23 if (!strcmp(rzg_get_cpu_name(), "R8A774A1") && !strcmp(name, "r8a774a1-beacon-rzg2m-kit"))
26 if (!strcmp(rzg_get_cpu_name(), "R8A774B1") && !strcmp(name, "r8a774b1-beacon-rzg2n-kit"))
29 if (!strcmp(rzg_get_cpu_name(), "R8A774E1") && !strcmp(name, "r8a774e1-beacon-rzg2h-kit"))
/u-boot/env/
H A Dembedded.c39 # define __UBOOT_ENV_SECTION__(name) /*XXX DO_NOT_DEL_THIS_COMMENT*/
43 # define __UBOOT_ENV_SECTION__(name) __attribute__ ((section(".text."#name)))
50 # define GEN_SET_VALUE(name, value) \
51 asm(".set " GEN_SYMNAME(name) ", " GEN_VALUE(value))
53 # define GEN_SET_VALUE(name, value) \
54 asm(GEN_SYMNAME(name) " = " GEN_VALUE(value))
58 #define GEN_ABS(name, value) \
59 asm(".globl " GEN_SYMNAME(name)); \
60 GEN_SET_VALUE(name, valu
[all...]
/u-boot/boot/
H A Dimage-sig.c22 .name = "sha1",
31 .name = "sha256",
40 .name = "sha384",
49 .name = "sha512",
62 const char *name; local
65 name = checksum_algos[i].name;
67 if (!strncmp(name, full_name, strlen(name)) &&
68 full_name[strlen(name)]
78 const char *name; local
97 image_get_padding_algo(const char *name) argument
[all...]
/u-boot/tools/
H A Dimage-sig-host.c17 .name = "sha1",
25 .name = "sha256",
33 .name = "sha384",
41 .name = "sha512",
52 .name = "rsa2048",
59 .name = "rsa3072",
66 .name = "rsa4096",
73 .name = "ecdsa256",
83 .name = "pkcs-1.5",
87 .name
95 const char *name; local
111 const char *name; local
127 image_get_padding_algo(const char *name) argument
[all...]
/u-boot/board/LaCie/common/
H A Dcommon.c20 void mv_phy_88e1116_init(const char *name, u16 phyaddr) argument
24 if (miiphy_set_current_dev(name))
31 miiphy_write(name, phyaddr, MII_MARVELL_PHY_PAGE, 2);
32 miiphy_read(name, phyaddr, MV88E1116_MAC_CTRL_REG, &reg);
34 miiphy_write(name, phyaddr, MV88E1116_MAC_CTRL_REG, reg);
35 miiphy_write(name, phyaddr, MII_MARVELL_PHY_PAGE, 0);
37 if (miiphy_reset(name, phyaddr) == 0)
38 printf("88E1116 Initialized on %s\n", name);
41 void mv_phy_88e1318_init(const char *name, u16 phyaddr) argument
45 if (miiphy_set_current_dev(name))
[all...]
H A Dcommon.h10 void mv_phy_88e1116_init(const char *name, u16 phyaddr);
11 void mv_phy_88e1318_init(const char *name, u16 phyaddr);
/u-boot/cmd/
H A Dpinmux.c20 const char *name; local
25 name = argv[1];
26 ret = uclass_get_device_by_name(UCLASS_PINCTRL, name, &currdev);
28 printf("Can't get the pin-controller: %s!\n", name);
38 printf("dev: %s\n", currdev->name);
48 * @param name NULL to display all the pins
49 * or name of the pin to display
52 static int show_pinmux(struct udevice *dev, char *name) argument
64 printf("Ops get_pins_count not supported by %s\n", dev->name);
71 printf("Ops get_pin_name error (%d) by %s\n", ret, dev->name);
98 char *name; local
[all...]
/u-boot/drivers/memory/
H A Dmemory-uclass.c10 .name = "memory",
/u-boot/fs/yaffs2/
H A Dyaffs_nameval.h21 int nval_del(char *xb, int xb_size, const YCHAR * name);
22 int nval_set(char *xb, int xb_size, const YCHAR * name, const char *buf,
24 int nval_get(const char *xb, int xb_size, const YCHAR * name, char *buf,
/u-boot/drivers/demo/
H A Ddemo-pdata.c24 .name = "demo_shape_drv",
29 .name = "demo_simple_drv",
34 .name = "demo_shape_drv",
39 .name = "demo_simple_drv",
44 .name = "demo_shape_drv",

Completed in 226 milliseconds

1234567891011>>