/u-boot/common/eeprom/ |
A D | eeprom_layout.c | 40 layout->fields = layout_unknown; in __eeprom_layout_assign() 53 struct eeprom_field *fields = layout->fields; in eeprom_layout_print() local 56 fields[i].print(&fields[i]); in eeprom_layout_print() 71 struct eeprom_field *fields = layout->fields; in eeprom_layout_update_field() local 80 if (fields[i].name == RESERVED_FIELDS || in eeprom_layout_update_field() 81 strcmp(fields[i].name, field_name)) in eeprom_layout_update_field() 84 err = fields[i].update(&fields[i], new_data); in eeprom_layout_update_field() 117 layout->fields[i].buf = buf; in eeprom_layout_setup() 118 buf += layout->fields[i].size; in eeprom_layout_setup()
|
/u-boot/tools/binman/ |
A D | fmap_util.py | 60 def ConvertName(field_names, fields): argument 73 fields[name_index] = tools.ToBytes(NameToFmap(fields[name_index])) 86 fields = list(struct.unpack(FMAP_HEADER_FORMAT, data[:FMAP_HEADER_LEN])) 87 ConvertName(FMAP_HEADER_NAMES, fields) 88 header = FmapHeader(*fields) 92 fields = list(struct.unpack(FMAP_AREA_FORMAT, data[:FMAP_AREA_LEN])) 93 ConvertName(FMAP_AREA_NAMES, fields) 94 areas.append(FmapArea(*fields))
|
/u-boot/drivers/mux/ |
A D | mmio.c | 24 struct regmap_field **fields = dev_get_priv(mux->dev); in mux_mmio_set() local 26 return regmap_field_write(fields[mux_control_get_index(mux)], state); in mux_mmio_set() 40 struct regmap_field **fields; in mmio_mux_probe() local 69 fields = devm_kmalloc(dev, num_fields * sizeof(*fields), __GFP_ZERO); in mmio_mux_probe() 70 if (!fields) in mmio_mux_probe() 72 dev_set_priv(dev, fields); in mmio_mux_probe() 111 fields[i] = devm_regmap_field_alloc(dev, regmap, field); in mmio_mux_probe() 112 if (IS_ERR(fields[i])) { in mmio_mux_probe() 113 ret = PTR_ERR(fields[i]); in mmio_mux_probe()
|
/u-boot/board/xilinx/zynq/ |
A D | bootimg.c | 26 u32 fields[16]; member 37 if (head->fields[ZYNQ_PART_HDR_CHKSUM_WORD_COUNT] != 0xFFFFFFFF) in zynq_islastpartition() 41 if (head->fields[index] != 0x0) in zynq_islastpartition() 101 if (hap->fields[index]) in zynq_validate_hdr() 109 checksum += hap->fields[index]; in zynq_validate_hdr() 113 if (hap->fields[ZYNQ_PART_HDR_CHKSUM_WORD_COUNT] != checksum) { in zynq_validate_hdr() 115 checksum, hap->fields[ZYNQ_PART_HDR_CHKSUM_WORD_COUNT]); in zynq_validate_hdr()
|
/u-boot/arch/arc/include/asm/ |
A D | arc-bcr.h | 25 } fields; member 36 } fields; member 47 } fields; member 58 } fields; member 72 } fields; member
|
/u-boot/tools/buildman/ |
A D | board.py | 128 fields = line.split() 129 if not fields: 131 for upto in range(len(fields)): 132 if fields[upto] == '-': 133 fields[upto] = '' 134 while len(fields) < 8: 135 fields.append('') 136 if len(fields) > 8: 137 fields = fields[:8] 139 board = Board(*fields)
|
A D | builderthread.py | 373 fields = line.split() 374 if len(fields) > 5 and fields[1] == '.rodata': 375 rodata_size = fields[2]
|
/u-boot/tools/ |
A D | rmboard.py | 90 fields = re.split('[ \t]', line, 1) 91 if len(fields) == 2: 92 if fields[0] == 'M:': 93 cc.append(fields[1]) 94 elif fields[0] == 'F:': 95 paths.append(fields[1].strip())
|
A D | rkmux.py | 118 fields = [] 123 fields.append(field) 163 for field in fields:
|
A D | proftool.c | 114 int fields = 0; in read_system_map() local 117 fields = sscanf(buff, "%lx %c %100s\n", &offset, in read_system_map() 119 if (fields == 2) { in read_system_map() 123 } else if (fields < 2) { in read_system_map()
|
/u-boot/arch/arc/lib/ |
A D | cache.c | 194 if (mmu4.fields.pae) in pae_exists() 206 return !!ibcr.fields.ver; in icache_exists() 222 return !!dbcr.fields.ver; in dcache_exists() 239 return !!sbcr.fields.ver; in slc_exists() 263 if (sbcr.fields.ver == 0) in slc_disable_supported() 265 else if (sbcr.fields.ver <= 2) in slc_disable_supported() 357 return cbcr.fields.c; in ioc_exists() 522 gd->arch.slc_line_sz = (slc_cfg.fields.lsz == 0) ? 128 : 64; in read_decode_cache_bcr_arcv2() 548 if (ibcr.fields.ver) { in read_decode_cache_bcr() 549 ic_line_sz = 8 << ibcr.fields.line_len; in read_decode_cache_bcr() [all …]
|
/u-boot/doc/ |
A D | README.displaying-bmps | 11 BMP images have a header that starts with 2 byte-size fields followed by mostly 12 32 bit fields. The packed struct that represents this header can be seen below: 24 the __u32 fields into unaligned addresses (in our example 0x80a00002, 25 0x80a00006, and so on...). When these fields are accessed by U-Boot, a 32 bit
|
A D | README.generic-board | 26 fields which are common to all architectures. Architecture-specific fields 96 people. Here is my basic reasoning: most fields are the same, all 98 #ifdefs to select fields for a particular SOC, so it is hard to 100 way to put architecture-specific fields into a separate header file, but
|
/u-boot/doc/sphinx/ |
A D | maintainers_include.py | 57 fields = dict() 98 if field_letter and not field_letter in fields: 101 fields[field_letter] = m.group(1) 142 field_content = ":%s:" % (fields.get(field, field))
|
/u-boot/doc/device-tree-bindings/spi/ |
A D | spi-mcf-dspi.txt | 14 of 8 integer fields for each register, where each register 31 ctar-fields = <7, 0, 0, 0, 0, 0, 1, 6>,
|
/u-boot/include/ |
A D | eeprom_layout.h | 17 struct eeprom_field *fields; member
|
A D | part_efi.h | 105 } fields; member
|
/u-boot/test/dm/ |
A D | regmap.c | 196 struct regmap_field **fields; member 257 priv->fields = devm_kzalloc(dev, sizeof(struct regmap_field *) * n, in remaptest_probe() 259 if (!priv->fields) in remaptest_probe() 267 priv->fields[i] = field; in remaptest_probe() 379 rc = test_one_field(uts, priv->fld_regmap, priv->fields[i], in dm_test_devm_regmap_field()
|
/u-boot/test/py/tests/ |
A D | vboot_forge.py | 29 fields = attributedict['__fields__'] 30 field_types = [_[0] for _ in fields] 31 field_names = [_[1] for _ in fields if _[1] is not None] 54 fields = cls.__struct__.unpack_from(buffer, offset) 56 for n, v in zip(cls.__names__, fields):
|
/u-boot/board/compulab/common/ |
A D | eeprom.c | 477 layout->fields = layout_legacy; in eeprom_layout_assign() 481 layout->fields = layout_v1; in eeprom_layout_assign() 485 layout->fields = layout_v2; in eeprom_layout_assign() 489 layout->fields = layout_v3; in eeprom_layout_assign()
|
/u-boot/common/ |
A D | bedbug.c | 247 for (field = 0; ctx->op->fields[field] != 0; ++field) { in print_operands() 248 if (ctx->op->fields[field] > n_operands) { in print_operands() 252 opr = &operands[ctx->op->fields[field] - 1]; in print_operands() 388 for (i = 0; op->fields[i] != 0; ++i) { in get_operand_value() 389 if (op->fields[i] != field) { in get_operand_value() 393 opr = &operands[op->fields[i] - 1]; in get_operand_value() 788 if (opc->fields[i] == 0) in asmppc() 802 oper[n_operands] = &operands[opc->fields[n_operands] - 1]; in asmppc()
|
/u-boot/drivers/usb/host/ |
A D | xhci-ring.c | 277 u32 fields[4]; in xhci_queue_command() local 285 fields[0] = lower_32_bits(val_64); in xhci_queue_command() 286 fields[1] = upper_32_bits(val_64); in xhci_queue_command() 287 fields[2] = 0; in xhci_queue_command() 288 fields[3] = TRB_TYPE(cmd) | SLOT_ID_FOR_TRB(slot_id) | in xhci_queue_command() 296 fields[3] |= EP_ID_FOR_TRB(ep_index); in xhci_queue_command() 298 queue_trb(ctrl, ctrl->cmd_ring, false, fields); in xhci_queue_command()
|
/u-boot/lib/efi_loader/ |
A D | efi_hii.c | 50 u32 fields; in efi_hii_package_type() local 52 fields = get_unaligned_le32(&header->fields); in efi_hii_package_type() 54 return (fields >> __EFI_HII_PACKAGE_TYPE_SHIFT) in efi_hii_package_type() 60 u32 fields; in efi_hii_package_len() local 62 fields = get_unaligned_le32(&header->fields); in efi_hii_package_len() 64 return (fields >> __EFI_HII_PACKAGE_LEN_SHIFT) in efi_hii_package_len()
|
/u-boot/tools/patman/ |
A D | checkpatch.py | 64 fields = ['ok', 'problems', 'errors', 'warnings', 'checks', 'lines', 66 result = collections.namedtuple('CheckPatchResult', fields)
|
/u-boot/doc/device-tree-bindings/mtd/ |
A D | altera_qspi.txt | 12 - flash device tree subnode, there must be a node with the following fields:
|