| /rk3399_rockchip-uboot/common/eeprom/ |
| H A D | eeprom_layout.c | 41 layout->fields = layout_unknown; in __eeprom_layout_assign() 54 struct eeprom_field *fields = layout->fields; in eeprom_layout_print() local 57 fields[i].print(&fields[i]); in eeprom_layout_print() 72 struct eeprom_field *fields = layout->fields; in eeprom_layout_update_field() local 81 if (fields[i].name == RESERVED_FIELDS || in eeprom_layout_update_field() 82 strcmp(fields[i].name, field_name)) in eeprom_layout_update_field() 85 err = fields[i].update(&fields[i], new_data); in eeprom_layout_update_field() 118 layout->fields[i].buf = buf; in eeprom_layout_setup() 119 buf += layout->fields[i].size; in eeprom_layout_setup()
|
| /rk3399_rockchip-uboot/tools/buildman/ |
| H A D | board.py | 129 fields = line.split() 130 if not fields: 132 for upto in range(len(fields)): 133 if fields[upto] == '-': 134 fields[upto] = '' 135 while len(fields) < 8: 136 fields.append('') 137 if len(fields) > 8: 138 fields = fields[:8] 140 board = Board(*fields)
|
| H A D | builderthread.py | 337 fields = line.split() 338 if len(fields) > 5 and fields[1] == '.rodata': 339 rodata_size = fields[2]
|
| /rk3399_rockchip-uboot/arch/arc/lib/ |
| H A D | cache.c | 137 } fields; in read_decode_cache_bcr_arcv2() member 148 } fields; in read_decode_cache_bcr_arcv2() member 153 if (sbcr.fields.ver) { in read_decode_cache_bcr_arcv2() 156 slc_line_sz = (slc_cfg.fields.lsz == 0) ? 128 : 64; in read_decode_cache_bcr_arcv2() 166 } fields; in read_decode_cache_bcr_arcv2() member 171 if (cbcr.fields.c) in read_decode_cache_bcr_arcv2() 187 } fields; in read_decode_cache_bcr() member 192 if (ibcr.fields.ver) { in read_decode_cache_bcr() 194 l1_line_sz = ic_line_sz = 8 << ibcr.fields.line_len; in read_decode_cache_bcr() 200 if (dbcr.fields.ver){ in read_decode_cache_bcr() [all …]
|
| /rk3399_rockchip-uboot/doc/ |
| H 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
|
| H A D | README.generic-board | 28 fields which are common to all architectures. Architecture-specific fields 98 people. Here is my basic reasoning: most fields are the same, all 100 #ifdefs to select fields for a particular SOC, so it is hard to 102 way to put architecture-specific fields into a separate header file, but
|
| H A D | README.unaligned-memory-access.txt | 97 to pad structures so that accesses to fields are suitably aligned (assuming 109 that you could reorder the fields in the structure in order to place fields 130 lead to unaligned accesses when accessing fields that do not satisfy
|
| H A D | README.bitbangMII | 30 The record (struct bb_miiphy_bus) has the following fields/callbacks (see
|
| H A D | README.gpt | 165 The fields 'name' and 'size' are mandatory for every partition. 171 The fields 'uuid' and 'uuid_disk' are optional if CONFIG_RANDOM_UUID is
|
| H A D | README.kconfig | 150 file with differences in the option fields. The corresponding defconfig
|
| /rk3399_rockchip-uboot/tools/ |
| H A D | rkmux.py | 118 fields = [] 123 fields.append(field) 163 for field in fields:
|
| H A D | proftool.c | 115 int fields = 0; in read_system_map() local 118 fields = sscanf(buff, "%lx %c %100s\n", &offset, in read_system_map() 120 if (fields == 2) { in read_system_map() 124 } else if (fields < 2) { in read_system_map()
|
| /rk3399_rockchip-uboot/include/ |
| H A D | eeprom_layout.h | 18 struct eeprom_field *fields; member
|
| H A D | part_efi.h | 100 } fields; member
|
| /rk3399_rockchip-uboot/common/ |
| H A D | bedbug.c | 246 for (field = 0; ctx->op->fields[field] != 0; ++field) { in print_operands() 247 if (ctx->op->fields[field] > n_operands) { in print_operands() 251 opr = &operands[ctx->op->fields[field] - 1]; in print_operands() 387 for (i = 0; op->fields[i] != 0; ++i) { in get_operand_value() 388 if (op->fields[i] != field) { in get_operand_value() 392 opr = &operands[op->fields[i] - 1]; in get_operand_value() 787 if (opc->fields[i] == 0) in asmppc() 801 oper[n_operands] = &operands[opc->fields[n_operands] - 1]; in asmppc()
|
| /rk3399_rockchip-uboot/board/compulab/common/ |
| H 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()
|
| /rk3399_rockchip-uboot/board/Barix/ipam390/ |
| H A D | ipam390-ais-uart.cfg | 59 ; See PLL1CONFIG section for the format of the PLL1CFG fields. 80 ; CS0 as an SDRAM interface. The fields required to do this 96 ; of the EMIFA (CS2-CS5). The fields required to do this 120 ; See PLL0CONFIG section for the format of the PLL0CFG fields.
|
| /rk3399_rockchip-uboot/drivers/usb/host/ |
| H A D | xhci-ring.c | 275 u32 fields[4]; in xhci_queue_command() local 280 fields[0] = lower_32_bits(val_64); in xhci_queue_command() 281 fields[1] = upper_32_bits(val_64); in xhci_queue_command() 282 fields[2] = 0; in xhci_queue_command() 283 fields[3] = TRB_TYPE(cmd) | SLOT_ID_FOR_TRB(slot_id) | in xhci_queue_command() 291 fields[3] |= EP_ID_FOR_TRB(ep_index); in xhci_queue_command() 293 queue_trb(ctrl, ctrl->cmd_ring, false, fields); in xhci_queue_command()
|
| /rk3399_rockchip-uboot/tools/patman/ |
| H A D | checkpatch.py | 57 fields = ['ok', 'problems', 'errors', 'warnings', 'checks', 'lines', 59 result = collections.namedtuple('CheckPatchResult', fields)
|
| /rk3399_rockchip-uboot/tools/dtoc/ |
| H A D | dtb_platdata.py | 350 fields = {} 355 fields[name] = copy.deepcopy(prop) 360 for name, prop in fields.items(): 369 structs[node_name] = fields
|
| /rk3399_rockchip-uboot/doc/device-tree-bindings/mtd/ |
| H A D | altera_qspi.txt | 12 - flash device tree subnode, there must be a node with the following fields:
|
| /rk3399_rockchip-uboot/include/bedbug/ |
| H A D | ppc.h | 313 enum OP_FIELD fields[MAX_OPERANDS]; member
|
| /rk3399_rockchip-uboot/Licenses/ |
| H A D | OFL.txt | 64 in the appropriate machine-readable metadata fields within text or 65 binary files as long as those fields can be easily viewed by the user.
|
| /rk3399_rockchip-uboot/doc/device-tree-bindings/net/ |
| H A D | altera_tse.txt | 42 fields:
|
| /rk3399_rockchip-uboot/drivers/net/ |
| H A D | e1000.h | 544 } fields; member 595 } fields; member 616 } fields; member
|