Searched refs:target (Results 1 - 25 of 106) sorted by relevance

12345

/u-boot/include/dm/
H A Dsimple_bus.h12 fdt_addr_t target; member in struct:simple_bus_plat
/u-boot/drivers/power/
H A Daxp152.c24 u8 current, target; local
26 target = axp152_mvolt_to_target(mvolt, 700, 2275, 25);
30 current != target) {
31 if (current < target)
44 u8 target = axp152_mvolt_to_target(mvolt, 700, 3500, 50); local
46 return pmic_bus_write(AXP152_DCDC3_VOLTAGE, target);
51 u8 target = axp152_mvolt_to_target(mvolt, 700, 3500, 25); local
53 return pmic_bus_write(AXP152_DCDC4_VOLTAGE, target);
58 u8 target = axp152_mvolt_to_target(mvolt, 700, 3500, 100); local
60 return pmic_bus_write(AXP152_LDO2_VOLTAGE, target);
[all...]
/u-boot/tools/buildman/
H A Dboard.py9 def __init__(self, status, arch, cpu, soc, vendor, board_name, target, cfg_name):
19 target: Target name (use make <target>_defconfig to configure)
22 self.target = target
29 self.props = [self.target, self.arch, self.cpu, self.board_name,
H A Dbuilder.py135 def __init__(self, config_filename, target):
136 self.target = target
154 def __init__(self, target):
155 self.target = target
531 target = result.brd.target
542 boards_selected = {target : result.brd}
547 target
[all...]
H A Dboards.py194 # 'target' is added later
233 'target': <target_name>,
259 target = None
263 if target:
265 f'WARNING: {leaf}: Duplicate TARGET_xxx: {target} and {tname}')
267 target = tname
269 if not target:
273 params['target'] = expect_target
299 key: Board-target name (e.g. 'snow')
311 def get_status(self, target)
[all...]
/u-boot/arch/arm/mach-mvebu/
H A Dmbus.c23 * specific device. Devices are identified by a tuple (target,
59 /* DDR target is the same on all platforms */
114 u32 *size, u8 *target, u8 *attr,
132 if (target)
133 *target = (ctrlreg & WIN_CTRL_TGT_MASK) >> WIN_CTRL_TGT_SHIFT;
177 u8 target, u8 attr)
205 * Check if target/attribute conflicts
207 if (target == wtarget && attr == wattr)
238 phys_addr_t remap, u8 target,
247 (target << WIN_CTRL_TGT_SHIF
113 mvebu_mbus_read_window(int win, int *enabled, u64 *base, u32 *size, u8 *target, u8 *attr, u64 *remap) argument
176 mvebu_mbus_window_conflicts(phys_addr_t base, size_t size, u8 target, u8 attr) argument
237 mvebu_mbus_setup_window(int win, phys_addr_t base, size_t size, phys_addr_t remap, u8 target, u8 attr) argument
264 mvebu_mbus_alloc_window(phys_addr_t base, size_t size, phys_addr_t remap, u8 target, u8 attr) argument
361 mvebu_mbus_add_window_remap_by_id(unsigned int target, unsigned int attribute, phys_addr_t base, size_t size, phys_addr_t remap) argument
375 mvebu_mbus_add_window_by_id(unsigned int target, unsigned int attribute, phys_addr_t base, size_t size) argument
442 mbus_dt_setup_win(u32 base, u32 size, u8 target, u8 attr) argument
486 u8 target, attr; local
[all...]
/u-boot/include/linux/
H A Dmbus.h18 * The 4-bit MBUS target ID of the DRAM controller.
53 int mvebu_mbus_add_window_remap_by_id(unsigned int target,
57 int mvebu_mbus_add_window_by_id(unsigned int target, unsigned int attribute,
60 int mbus_dt_setup_win(u32 base, u32 size, u8 target, u8 attr);
/u-boot/arch/arm/mach-imx/mx7/
H A Dclock.c82 u32 target; local
89 target = CLK_ROOT_ON |
93 clock_set_target_val(USB_HSIC_CLK_ROOT, target);
530 u32 target; local
540 target = CLK_ROOT_ON |
544 clock_set_target_val(I2C1_CLK_ROOT + i2c_num, target);
557 u32 target; local
565 target = CLK_ROOT_ON | USDHC1_CLK_ROOT_FROM_PLL_SYS_PFD0_392M_CLK |
568 clock_set_target_val(USDHC1_CLK_ROOT, target);
570 target
588 u32 target; local
647 u32 target; local
664 u32 target; local
702 u32 target; local
726 u32 target; local
858 u32 target; local
877 u32 target; local
903 u32 target; local
963 u32 target; local
[all...]
/u-boot/fs/btrfs/
H A Dbtrfs.h21 int btrfs_readlink(struct btrfs_root *root, u64 ino, char *target);
H A Dbtrfs.c35 char *target = NULL; local
79 target = malloc(fs_info->sectorsize);
80 if (!target) {
85 ret = btrfs_readlink(root, key.objectid, target);
90 target[ret] = '\0';
112 printf(" -> %s", target ? target : "?");
115 free(target);
/u-boot/scripts/basic/
H A Dfixdep.c65 * fixdep <depfile> <target> <cmdline>
73 * cmd_<target> = <cmdline>
75 * and then basically copies the .<target>.d file to stdout, in the
106 fprintf(stderr, "Usage: fixdep <depfile> <target> <cmdline>\n");
327 static void parse_dep_file(char *m, const char *target) argument
348 /* Is the token we found a target name? */
350 /* Don't write any target names into the dependency file */
367 * target name, which will be the original
368 * source name, and ignore any other target
375 target,
409 const char *depfile, *target, *cmdline; local
[all...]
/u-boot/drivers/core/
H A Dsimple-bus.c21 addr = (addr - plat->base) + plat->target;
42 plat->target = paddr;
52 plat->target = cell[1];
/u-boot/doc/sphinx/
H A Dautomarkup.py145 for target in possible_targets:
146 if target not in Skipfuncs:
152 reftarget = target, modname = None,
160 reftype_s, target, pxref,
204 for target in possible_targets:
205 if not (match.re == RE_function and target in Skipfuncs):
210 reftarget = target, modname = None,
218 reftype_str[match.re], target, pxref,
237 target = match.group(1)
240 reftarget = target, modnam
[all...]
/u-boot/include/
H A Dvsc9953.h191 #define VSC9953_ENC_BITFIELD(target, offset, width) \
192 (((target) & VSC9953_BITMASK(width)) << (offset))
194 #define VSC9953_IO_ADDR(target, offset) ((target) + (offset << 2))
196 #define VSC9953_IO_REG(target, offset) (VSC9953_IO_ADDR(target, offset))
197 #define VSC9953_VCAP_CACHE_ENTRY_DAT(target, ri) \
198 VSC9953_IO_REG(target, (0x2 + (ri)))
200 #define VSC9953_VCAP_CACHE_MASK_DAT(target, ri) \
201 VSC9953_IO_REG(target, (
[all...]
/u-boot/drivers/ddr/marvell/a38x/
H A Dxor_regs.h225 #define XEXAOCR_OVR_EN_OFFS(target) (3 * target)
226 #define XEXAOCR_OVR_EN_MASK(target) (1 << (XEXAOCR_OVR_EN_OFFS(target)))
227 #define XEXAOCR_OVR_PTR_OFFS(target) ((3 * target) + 1)
228 #define XEXAOCR_OVR_PTR_MASK(target) (3 << (XEXAOCR_OVR_PTR_OFFS(target)))
229 #define XEXAOCR_OVR_BAR(win_num, target) (win_num << \
230 (XEXAOCR_OVR_PTR_OFFS(target)))
[all...]
/u-boot/scripts/dtc/
H A Ddtc-parser.y183 struct node *target = get_node_by_ref($1, $3);
185 if (target) {
186 add_label(&target->labels, $2);
187 merge_nodes(target, $4);
202 struct node *target = get_node_by_ref($1, $2);
204 if (target)
205 merge_nodes(target, $3);
213 struct node *target = get_node_by_ref($1, $3);
215 if (target)
216 delete_node(target);
[all...]
/u-boot/scripts/dtc/libfdt/
H A Dfdt_overlay.c15 * overlay_get_target_phandle - retrieves the target phandle of a fragment
19 * overlay_get_target_phandle() retrieves the target phandle of an
20 * overlay fragment when that fragment uses a phandle (target
21 * property) instead of a path (target-path property).
24 * the phandle pointed by the target property
33 val = fdt_getprop(fdto, fragment, "target", &len);
44 * overlay_get_target - retrieves the offset of a fragment's target
48 * @pathp: pointer which receives the path of the target (or NULL)
50 * overlay_get_target() retrieves the target offset in the base
73 path = fdt_getprop(fdto, fragment, "target
557 overlay_apply_node(void *fdt, int target, void *fdto, int node) argument
625 int target; local
697 int root_sym, ov_sym, prop, path_len, fragment, target; local
883 fdt_overlay_apply_node(void *fdt, int target, void *fdto, int node) argument
[all...]
/u-boot/arch/x86/include/asm/
H A Dcpu.h237 * at @target.
244 * @target: Pointer to the start of the kernel image
246 void cpu_call64(ulong pgtable, ulong setup_base, ulong target);
252 * @target: Pointer to the start of the 32-bit U-Boot image/entry point
255 void cpu_call32(ulong code_seg32, ulong target, ulong table);
261 * at @target.
264 * @target: Pointer to the start of the kernel image
267 int cpu_jump_to_64bit(ulong setup_base, ulong target);
274 * @target: Address of U-Boot in RAM
276 int cpu_jump_to_64bit_uboot(ulong target);
[all...]
/u-boot/scripts/
H A DMakefile.build78 lib-target := $(obj)/lib.a
81 ifneq ($(strip $(obj-y) $(obj-m) $(obj-) $(subdir-m) $(lib-target)),)
82 builtin-target := $(obj)/built-in.o
85 modorder-target := $(obj)/modules.order
89 __build: $(if $(KBUILD_BUILTIN),$(builtin-target) $(lib-target) $(extra-y)) \
90 $(if $(KBUILD_MODULES),$(obj-m) $(modorder-target)) \
217 # the target endianness and word size. It is made before all other C
249 $(dot-target).tmp; \
251 mv -f $(dot-target)
[all...]
/u-boot/test/py/tests/test_efi_capsule/
H A Dcapsule_common.py32 def init_content(u_boot_console, target, filename, expected):
37 target -- Target address to place the content.
44 f'sf write 4000000 {target} 10',
54 filenames -- File name array of the target capsule files.
71 filenames -- File name array of the target capsule files.
95 filenames -- File name array of the target capsule files.
109 filenames -- File name array of the target capsule files.
117 def verify_content(u_boot_console, target, expected):
122 target -- Target address to verify.
127 f'sf read 4000000 {target} 1
[all...]
/u-boot/fs/erofs/
H A Dfs.c63 char *target; local
66 target = malloc(len + 1);
67 if (!target)
69 target[len] = '\0';
71 err = erofs_pread(vi, target, len, 0);
75 err = erofs_ilookup(target, vi);
80 free(target);
/u-boot/arch/arm/cpu/armv7/ls102xa/
H A Dpsci.S84 @ r1: input target CPU ID in MPIDR format, original value in r1 may be dropped
113 @ r1 = target CPU
114 @ r2 = target PC
135 @ Detect target CPU state
142 @ Reset target CPU
158 @ Do reset on target CPU
164 @ Wait target CPU up
172 @ Release on target CPU
224 @ Detect target CPU state
/u-boot/drivers/pci/
H A Dpci_rom.c164 void *target; local
184 target = (void *)PCI_VGA_RAM_IMAGE_START;
186 target = (void *)malloc(rom_size);
187 if (!target)
191 if (target != rom_header) {
195 rom_header, target, rom_size);
196 memcpy(target, rom_header, rom_size);
197 if (memcmp(target, rom_header, rom_size)) {
203 *ram_headerp = target;
/u-boot/net/
H A Dndisc.c132 /* Set the target address and llsaddr option */
133 net_copy_ip6(&msg->target, neigh_addr);
220 struct in6_addr *target)
228 target, neigh_addr, eth_dst_addr);
246 /* Set the target address and lltargetaddr option */
247 net_copy_ip6(&msg->target, target);
444 &ndisc->target, &ip6->saddr);
445 if (ip6_is_our_addr(&ndisc->target) &&
449 &ndisc->target);
219 ip6_send_na(uchar *eth_dst_addr, struct in6_addr *neigh_addr, struct in6_addr *target) argument
[all...]
/u-boot/arch/arm/mach-kirkwood/include/mach/
H A Dcpu.h15 #define KWCPU_WIN_CTRL_DATA(size, target, attr, en) (en | (target << 4) \
77 u8 target; member in struct:mbus_win

Completed in 115 milliseconds

12345