Searched refs:map (Results 76 - 91 of 91) sorted by relevance

1234

/u-boot/tools/binman/
H A Dcontrol.py354 write_map: True to write a map file
384 write_map: True to write a map file
412 write_map: True to write a map file
476 write_map (bool): True to write the map file
633 write_map: True to write a map file
670 print("Wrote map file '%s' to show errors" % fname)
771 allow_resize=not args.fix_size, write_map=args.map)
849 invalid |= ProcessImage(image, args.update_fdt, args.map,
H A Dftest.py371 def _DoTestFile(self, fname, debug=False, map=False, update_dtb=False,
382 map: True to output map files for the images
427 if map:
505 map=False, update_dtb=False, entry_args=None,
523 map: True to output map files for the images
557 retcode = self._DoTestFile(fname, map=map, update_dtb=update_dtb,
568 if map
[all...]
/u-boot/arch/arm/mach-imx/mx6/
H A Dsoc.c369 static const u32 map[] = {6, 1, 2, 3, 4, 5, 0, 7}; local
375 writel(map[val] << BM_ANADIG_ANA_MISC0_REFTOP_VBGADJ_SHIFT,
/u-boot/fs/btrfs/
H A Ddisk-io.c417 printk("Couldn't map the block %Lu\n", eb->start + offset);
556 error("Couldn't map the block %llu", cur);
896 struct map_lookup *map; local
898 map = container_of(ce, struct map_lookup, ce);
899 kfree(map);
/u-boot/drivers/ram/rockchip/
H A Dsdram_rk3399.c104 struct regmap *map; member in struct:rockchip_dmc_plat
3038 ret = regmap_init_mem(dev_ofnode(dev), &plat->map);
3053 ARRAY_SIZE(dtplat->reg) / 2, &plat->map);
3100 priv->chan[0].pctl = regmap_get_range(plat->map, 0);
3101 priv->chan[0].pi = regmap_get_range(plat->map, 1);
3102 priv->chan[0].publ = regmap_get_range(plat->map, 2);
3103 priv->chan[0].msch = regmap_get_range(plat->map, 3);
3104 priv->chan[1].pctl = regmap_get_range(plat->map, 4);
3105 priv->chan[1].pi = regmap_get_range(plat->map, 5);
3106 priv->chan[1].publ = regmap_get_range(plat->map,
[all...]
H A Ddmc-rk3368.c46 struct regmap *map; member in struct:rk3368_sdram_params
890 ret = regmap_init_mem(dev_ofnode(dev), &plat->map);
/u-boot/fs/yaffs2/
H A Dyaffs_guts.c737 u32 *map = (u32 *) tn; local
752 map[word_in_map] &= ~mask;
753 map[word_in_map] |= (mask & (val << bit_in_word));
760 map[word_in_map] &= ~mask;
761 map[word_in_map] |= (mask & (val >> bit_in_word));
768 u32 *map = (u32 *) tn; local
780 val = map[word_in_map] >> bit_in_word;
785 val |= (map[word_in_map] << bit_in_word);
1735 u32 *map = (u32 *) tn; local
1738 if (map[
[all...]
/u-boot/tools/patman/
H A Dstatus.py445 futures = executor.map(
/u-boot/scripts/
H A DMakefile.spl512 -Wl,-Map,$(SPL_BIN).map -o $(SPL_BIN) \
525 $(PLATFORM_LIBS) -Map $(SPL_BIN).map -o $(SPL_BIN) \
H A DMakefile.build269 System.map $(OBJDUMP) > $@
/u-boot/drivers/iommu/
H A Dapple_dart.c168 .map = apple_dart_map,
/u-boot/boot/
H A Dfdt_support.c1174 * @map: Map the address addr from the address space of this
1197 u64 (*map)(fdt32_t *addr, const fdt32_t *range, member in struct:of_bus
1229 debug("OF: default map, cp=%llx, s=%llx, da=%llx\n", cp, s, da);
1284 debug("OF: ISA map, cp=%llx, s=%llx, da=%llx\n", cp, s, da);
1307 .map = of_bus_isa_map,
1316 .map = of_bus_default_map,
1378 offset = bus->map(addr, ranges, na, ns, pna);
2058 /* reserved with no-map tag the video buffer */
/u-boot/drivers/phy/rockchip/
H A Dphy-rockchip-usbdp.c207 static int __regmap_multi_reg_write(struct regmap *map, argument
214 ret = regmap_write(map, regs[i].reg, regs[i].def);
/u-boot/common/
H A Dcli_hush.c72 * maybe change map[] to use 2-bit entries
290 static char map[256]; variable
2961 m = map[ch];
3148 for (s=set; *s; s++) map[*s] = code;
3153 /* char *ifs and char map[256] are both globals. */
3159 * The map[] array only really needs two bits each, and on most machines
3162 memset(map,0,sizeof(map)); /* most characters flow through always */
3387 /* map[] is taken care of with call to update_ifs_map() */
/u-boot/tools/
H A Defivar.py376 make = lambda f, *cs: join(group(list(map(f, data)), 8, 2), *cs)
/u-boot/include/
H A Defi_loader.h254 /* Key identifying current memory map */
299 /* event group memory map changed */
645 void efi_runtime_relocate(ulong offset, struct efi_mem_desc *map);
783 /* Allocate and retrieve EFI memory map */
786 /* Returns the EFI memory map */
792 /* Adds a range into the EFI memory map */
794 /* Adds a conventional range into the EFI memory map */
804 /* Called by board init to initialize the EFI memory map */
1182 * efi_add_known_memory() - add memory banks to EFI memory map

Completed in 211 milliseconds

1234