Searched refs:update (Results 1 - 25 of 48) sorted by relevance

12

/u-boot/arch/x86/cpu/intel_common/
H A Dmicrocode.c6 * Microcode update for Intel PIII and later CPUs
27 * whether the update is applicable or not. We also use the same structure
43 struct microcode_update *update)
45 update->data = fdt_getprop(blob, node, "data", &update->size);
46 if (!update->data)
49 update->header_version = fdtdec_get_int(blob, node,
51 update->update_revision = fdtdec_get_int(blob, node,
52 "intel,update-revision", 0);
53 update
42 microcode_decode_node(const void *blob, int node, struct microcode_update *update) argument
126 struct microcode_update cpu, update; local
[all...]
/u-boot/dts/upstream/scripts/
H A Dindex-filter.sh6 ${SCRIPTS}/rewrite-index.pl | GIT_INDEX_FILE=$GIT_INDEX_FILE.new git update-index --index-info
H A Dcronjob112 git update-ref refs/tests/${DATE} ${TESTBRANCH}
/u-boot/include/
H A Deeprom_layout.h23 int (*update)(struct eeprom_layout *eeprom_layout, char *field_name, member in struct:eeprom_layout
H A Deeprom_field.h20 int (*update)(struct eeprom_field *eeprom_field, char *value); member in struct:eeprom_field
H A Dmembuff.h53 * @update is true, the caller must then write the data immediately, since
58 * membuff. However, by calling this function twice (with @update == true),
63 * @update: true to update the membuff as if the write happened, false to not
67 int membuff_putraw(struct membuff *mb, int maxlen, bool update, char **data);
75 * if you call this function twice (with @update == true) you are guaranteed
80 * @update: true to update the membuff as if the bytes have been read (use
85 int membuff_getraw(struct membuff *mb, int maxlen, bool update, char **data);
/u-boot/drivers/crypto/hash/
H A Dhash_sw.c138 void (*update)(void *ctx, const void *ibuf, uint32_t ilen); member in struct:sw_hash_impl
146 .update = hash_update_crc16_ccitt,
153 .update = hash_update_crc32,
160 .update = hash_update_md5,
167 .update = hash_update_sha1,
174 .update = hash_update_sha256,
181 .update = hash_update_sha384,
188 .update = hash_update_sha512,
217 hash_impl->update(hash_ctx->algo_ctx, ibuf, ilen);
/u-boot/doc/sphinx/
H A Dload_config.py55 namespace.update(config)
59 namespace.update(config)
/u-boot/lib/
H A Dmembuff.c21 static int membuff_putrawflex(struct membuff *mb, int maxlen, bool update, argument
45 /* update the head pointer to mark these bytes as written */
46 if (update)
55 if (update)
66 /* update the head pointer to mark these bytes as written */
67 if (update)
75 int membuff_putraw(struct membuff *mb, int maxlen, bool update, char **data) argument
81 size = membuff_putrawflex(mb, maxlen, update, &datap, &offset);
98 int membuff_getraw(struct membuff *mb, int maxlen, bool update, char **data) argument
119 if (update)
[all...]
/u-boot/common/eeprom/
H A Deeprom_layout.c60 * eeprom_layout_update_field() - update a single field in the layout data.
62 * @field_name: The name of the field to update.
84 err = fields[i].update(&fields[i], new_data);
123 layout->update = eeprom_layout_update_field;
/u-boot/post/lib_powerpc/
H A Dload.c25 * register (it must change for "load with update" instructions).
40 int update; member in struct:cpu_post_load_s
198 if (test->update)
H A Dstore.c25 * with update" instructions).
40 int update; member in struct:cpu_post_store_s
182 if (test->update)
/u-boot/tools/binman/etype/
H A Dpre_load.py110 hash_image.update(self.image)
128 hash_sig.update(sig)
144 hash_first_header.update(first_header)
/u-boot/arch/mips/mach-octeon/
H A Dcvmx-helper-jtag.c141 jtgd.s.update = 1;
146 } while (jtgd.s.update);
/u-boot/arch/arm/mach-sunxi/
H A Dcpu_info.c108 #warning Please update cpu_info.c with correct CPU information
/u-boot/drivers/ddr/altera/
H A Dsequencer.c388 * @update: If non-zero, trigger SCC Manager update for all ranks
391 * and optionally triggers the SCC update for all ranks.
395 const int update)
403 if (update || (r == 0)) {
405 writel(0, &sdr_scc_mgr->update);
418 * for efficiency, the scan chain update should occur only
433 * for efficiency, the scan chain update should occur only
547 writel(0, &sdr_scc_mgr->update);
551 * scc_set_bypass_mode() - Set bypass mode and trigger SCC update
393 scc_mgr_set_all_ranks(struct socfpga_sdrseq *seq, const u32 off, const u32 grp, const u32 val, const int update) argument
[all...]
/u-boot/tools/patman/
H A Dsettings.py156 item_dict.update(project_items)
234 If it's found we'll update the option parser default.
236 The idea here is that the .patman file should be able to update
258 defaults.update(vars(pdefs))
347 parser: The parser to update.
H A Dstatus.py281 seq (int): Position in new_rtag_list to update
297 rtags[response].update(people)
309 rtags[response].update(people)
358 branch (str): Existing branch to update
423 branch (str): Existing branch to update, or None
/u-boot/board/synopsys/axs10x/
H A Dheaderize-axs.py60 uboot_scrypt_file = "u-boot-update.txt"
123 # calc u-boot headerised image CRC32 (will be used by uboot update
165 update_uboot_cmd = sf_load_image_cmd + " && echo \"u-boot update: OK\""
/u-boot/board/synopsys/hsdk/
H A Dheaderize-hsdk.py55 uboot_scrypt_file = "u-boot-update.txt"
105 # calc u-boot headerized image CRC32 (will be used by uboot update
138 update_uboot_cmd = sf_load_image_cmd + " && echo \"u-boot update: OK\""
/u-boot/scripts/
H A Dmailmapper7 A tool to create/update the mailmap file
18 This tool helps to create/update the mailmap file.
116 # by the mailmap.file configuration option, update it.
117 # [2] If the file .mailmap exists at the toplevel of the repository, update it.
/u-boot/test/py/
H A Dmultiplexed_log.py328 _nonprint.update(c for c in range(0, 32) if c not in (9, 10))
329 _nonprint.update(range(127, 256))
H A Dconftest.py158 ubconfig.buildconfig.update(parser.items('root'))
221 dict_to_fill.update(module.__dict__)
/u-boot/tools/dtoc/
H A Dsrc_scan.py315 self._structs.update(structs)
410 self._uclass.update(uc_drivers)
594 self._of_match.update(of_match)
/u-boot/common/
H A DMakefile42 obj-$(CONFIG_UPDATE_COMMON) += update.o

Completed in 198 milliseconds

12