| /rk3399_rockchip-uboot/include/rockchip/ |
| H A D | crypto_v2_pka.h | 225 u32 tag); 251 u8 res_discard, s8 res, u8 tag); 261 #define RK_PKA_Add(len_id, op_a, op_b, res, tag) \ argument 263 0, (op_b), 0, (res), (tag)) 266 #define RK_PKA_AddIm(len_id, op_a, op_b_im, res, tag) \ argument 268 1, (op_b_im), 0, (res), (tag)) 271 #define RK_PKA_Sub(len_id, op_a, op_b, res, tag) \ argument 273 0, (op_b), 0, (res), (tag)) 276 #define RK_PKA_SubIm(len_id, op_a, op_b_im, res, tag) \ argument 278 1, (op_b_im), 0, (res), (tag)) [all …]
|
| /rk3399_rockchip-uboot/arch/x86/include/asm/ |
| H A D | coreboot_tables.h | 27 u32 tag; member 49 u32 tag; member 57 u32 tag; member 65 u32 tag; member 84 u32 tag; member 92 u32 tag; member 104 u32 tag; member 119 u32 tag; member 127 u32 tag; member 155 u32 tag; member [all …]
|
| /rk3399_rockchip-uboot/arch/arm/mach-bcm283x/ |
| H A D | mbox.c | 106 struct bcm2835_mbox_tag_hdr *tag; in bcm2835_mbox_call_prop() local 147 tag = (void *)(buffer + 1); in bcm2835_mbox_call_prop() 149 while (tag->tag) { in bcm2835_mbox_call_prop() 150 if (!(tag->val_len & BCM2835_MBOX_TAG_VAL_LEN_RESPONSE)) { in bcm2835_mbox_call_prop() 159 tag->val_len &= ~BCM2835_MBOX_TAG_VAL_LEN_RESPONSE; in bcm2835_mbox_call_prop() 160 tag = (void *)(((u8 *)tag) + sizeof(*tag) + tag->val_buf_size); in bcm2835_mbox_call_prop()
|
| /rk3399_rockchip-uboot/arch/nds32/include/asm/ |
| H A D | setup.h | 24 u32 tag; member 127 struct tag { struct 143 u32 tag; member 144 int (*parse)(const struct tag *); 147 #define tag_member_present(tag, member) \ argument 148 ((unsigned long)(&((struct tag *)0L)->member + 1) \ 149 <= (tag)->hdr.size * 4) 151 #define tag_next(t) ((struct tag *)((u32 *)(t) + (t)->hdr.size)) 160 #define __tagtable(tag, fn) \ argument 161 static struct tagtable __tagtable_##fn __tag = { tag, fn }
|
| /rk3399_rockchip-uboot/arch/arm/include/asm/ |
| H A D | setup.h | 88 u32 tag; member 208 struct tag { struct 234 u32 tag; member 235 int (*parse)(const struct tag *); 239 #define __tagtable(tag, fn) \ argument 240 static struct tagtable __tagtable_##fn __tag = { tag, fn } 242 #define tag_member_present(tag,member) \ argument 243 ((unsigned long)(&((struct tag *)0L)->member + 1) \ 244 <= (tag)->hdr.size * 4) 246 #define tag_next(t) ((struct tag *)((u32 *)(t) + (t)->hdr.size)) [all …]
|
| /rk3399_rockchip-uboot/board/toradex/common/ |
| H A D | tdx-cfg-block.c | 194 struct toradex_tag *tag; in read_tdx_cfg_block() local 220 tag = (struct toradex_tag *)config_block; in read_tdx_cfg_block() 221 if (tag->flags != TAG_FLAG_VALID || tag->id != TAG_VALID) { in read_tdx_cfg_block() 230 tag = (struct toradex_tag *)(config_block + offset); in read_tdx_cfg_block() 232 if (tag->id == TAG_INVALID) in read_tdx_cfg_block() 235 if (tag->flags == TAG_FLAG_VALID) { in read_tdx_cfg_block() 236 switch (tag->id) { in read_tdx_cfg_block() 251 offset += tag->len * 4; in read_tdx_cfg_block() 407 struct toradex_tag *tag; in do_cfgblock_create() local 470 tag = (struct toradex_tag *)config_block; in do_cfgblock_create() [all …]
|
| /rk3399_rockchip-uboot/arch/nds32/lib/ |
| H A D | bootm.c | 36 static struct tag *params; 133 params = (struct tag *)bd->bi_boot_params; in setup_start_tag() 135 params->hdr.tag = ATAG_CORE; in setup_start_tag() 151 params->hdr.tag = ATAG_MEM; in setup_memory_tags() 179 params->hdr.tag = ATAG_CMDLINE; in setup_commandline_tag() 195 params->hdr.tag = ATAG_INITRD2; in setup_initrd_tag() 206 void setup_serial_tag(struct tag **tmp) in setup_serial_tag() 208 struct tag *params = *tmp; in setup_serial_tag() 213 params->hdr.tag = ATAG_SERIAL; in setup_serial_tag() 223 void setup_revision_tag(struct tag **in_params) in setup_revision_tag() [all …]
|
| /rk3399_rockchip-uboot/board/nokia/rx51/ |
| H A D | rx51.c | 106 while (omap[i].hdr.tag) { in init_omap_tags() 107 switch (omap[i].hdr.tag) { in init_omap_tags() 132 while (t->hdr.tag) { in reuse_omap_atags() 133 switch (t->hdr.tag) { in reuse_omap_atags() 166 struct tag *t = (struct tag *)gd->bd->bi_boot_params; in reuse_atags() 169 if (t->hdr.tag != ATAG_CORE) in reuse_atags() 176 while (t->hdr.tag != ATAG_NONE) { in reuse_atags() 177 switch (t->hdr.tag) { in reuse_atags() 218 void setup_board_tags(struct tag **in_params) in setup_board_tags() 227 struct tag *params; in setup_board_tags() [all …]
|
| /rk3399_rockchip-uboot/tools/libfdt/ |
| H A D | fdt_rw.c | 13 int tag = FDT_PROP; in fdt_remove_unused_strings() local 20 for (offset = 0; tag != FDT_END; offset = next_offset) { in fdt_remove_unused_strings() 21 tag = fdt_next_tag(old, offset, &next_offset); in fdt_remove_unused_strings() 22 if (tag != FDT_PROP) in fdt_remove_unused_strings()
|
| /rk3399_rockchip-uboot/scripts/dtc/libfdt/ |
| H A D | fdt.c | 97 uint32_t tag; in fdt_next_tag() local 105 tag = fdt32_to_cpu(*tagp); in fdt_next_tag() 109 switch (tag) { in fdt_next_tag() 141 return tag; in fdt_next_tag() 165 uint32_t tag; in fdt_next_node() local 173 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_next_node() 175 switch (tag) { in fdt_next_node() 197 } while (tag != FDT_BEGIN_NODE); in fdt_next_node()
|
| H A D | fdt.h | 82 fdt32_t tag; member 87 fdt32_t tag; member
|
| H A D | fdt_sw.c | 181 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE); in fdt_begin_node() 238 prop->tag = cpu_to_fdt32(FDT_PROP); in fdt_property_placeholder() 262 uint32_t tag; in fdt_finish() local 281 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) { in fdt_finish() 282 if (tag == FDT_PROP) { in fdt_finish()
|
| /rk3399_rockchip-uboot/arch/arm/mach-rockchip/ |
| H A D | rk_atags.c | 153 static int inline atags_size_overflow(struct tag *t, u32 tag_size) in atags_size_overflow() 158 int atags_overflow(struct tag *t) in atags_overflow() 177 struct tag *t = (struct tag *)ATAGS_PHYS_BASE; in atags_is_available() 184 struct tag *t = (struct tag *)ATAGS_PHYS_BASE; in atags_set_tag() 214 for_each_tag(t, (struct tag *)ATAGS_PHYS_BASE) { in atags_set_tag() 299 struct tag *t; in atags_set_shared_fwver() 318 struct tag *atags_get_tag(u32 magic) in atags_get_tag() 321 struct tag *t; in atags_get_tag() 326 for_each_tag(t, (struct tag *)ATAGS_PHYS_BASE) { in atags_get_tag() 357 struct tag *atags_get_tag(u32 magic) { return NULL; } in atags_get_tag() [all …]
|
| /rk3399_rockchip-uboot/arch/xtensa/include/asm/ |
| H A D | bootparam.h | 36 #define bp_tag_next(tag) \ argument 37 ((struct bp_tag *)((unsigned long)((tag) + 1) + (tag)->size))
|
| /rk3399_rockchip-uboot/arch/arm/lib/ |
| H A D | bootm.c | 41 static struct tag *params; 125 params = (struct tag *)bd->bi_boot_params; in setup_start_tag() 127 params->hdr.tag = ATAG_CORE; in setup_start_tag() 142 params->hdr.tag = ATAG_MEM; in setup_memory_tags() 168 params->hdr.tag = ATAG_CMDLINE; in setup_commandline_tag() 182 params->hdr.tag = ATAG_INITRD2; in setup_initrd_tag() 191 static void setup_serial_tag(struct tag **tmp) in setup_serial_tag() 193 struct tag *params = *tmp; in setup_serial_tag() 197 params->hdr.tag = ATAG_SERIAL; in setup_serial_tag() 205 static void setup_revision_tag(struct tag **in_params) in setup_revision_tag() [all …]
|
| /rk3399_rockchip-uboot/drivers/misc/ |
| H A D | rockchip_pm_config.c | 25 u32 tag; member 102 config->core.hdr.tag = RK_ATAG_MCU_SLP_CORE; in parse_mcu_sleep_config() 118 &slp_tag->hdr.tag, 1); in parse_mcu_sleep_config() 120 slp_tag->hdr.tag <= RK_ATAG_MCU_SLP_CORE || in parse_mcu_sleep_config() 121 slp_tag->hdr.tag >= RK_ATAG_MCU_SLP_MAX) { in parse_mcu_sleep_config()
|
| /rk3399_rockchip-uboot/fs/ext4/ |
| H A D | ext4_journal.c | 341 struct ext3_journal_block_tag *tag; in recover_transaction() local 358 tag = (struct ext3_journal_block_tag *)(p_jdb + ofs); in recover_transaction() 364 flags = be32_to_cpu(tag->flags); in recover_transaction() 369 debug("\t\ttag %u\n", be32_to_cpu(tag->block)); in recover_transaction() 371 if (check_blknr_for_revoke(be32_to_cpu(tag->block), in recover_transaction() 378 put_ext4((uint64_t)((uint64_t)be32_to_cpu(tag->block) * (uint64_t)fs->blksz), in recover_transaction() 407 struct ext3_journal_block_tag *tag = NULL; in ext4fs_check_journal_state() local 468 tag = (struct ext3_journal_block_tag *) in ext4fs_check_journal_state() 473 flags = be32_to_cpu(tag->flags); in ext4fs_check_journal_state() 477 debug("\t\ttag %u\n", be32_to_cpu(tag->block)); in ext4fs_check_journal_state() [all …]
|
| /rk3399_rockchip-uboot/drivers/ata/ |
| H A D | fsl_sata.c | 295 int is_ncq, int tag, u8 *buffer, u32 len) in fsl_ata_exec_ata_cmd() argument 315 cmd_desc = sata->cmd_desc + tag; in fsl_ata_exec_ata_cmd() 342 h2d->sector_count = (u8)(tag << 3); in fsl_ata_exec_ata_cmd() 379 cmd_hdr = (cmd_hdr_entry_t *)&sata->cmd_hdr->cmd_slot[tag]; in fsl_ata_exec_ata_cmd() 395 tag &= CMD_HDR_ATTR_TAG; in fsl_ata_exec_ata_cmd() 396 val32 |= tag; in fsl_ata_exec_ata_cmd() 409 if (ata_wait_register(®->car, (1 << tag), 0, 10000)) in fsl_ata_exec_ata_cmd() 413 if (!(in_le32(®->cqr) & (1 << tag))) { in fsl_ata_exec_ata_cmd() 414 val32 = 1 << tag; in fsl_ata_exec_ata_cmd() 419 if (ata_wait_register(®->ccr, (1 << tag), (1 << tag), 10000)) { in fsl_ata_exec_ata_cmd() [all …]
|
| /rk3399_rockchip-uboot/scripts/ |
| H A D | setlocalversion | 98 tag=`printf '%s' "$hgid" | cut -d' ' -f2` 99 if [ -z "$tag" -o "$tag" = tip ]; then
|
| /rk3399_rockchip-uboot/tools/buildman/ |
| H A D | bsettings.py | 51 def SetItem(section, tag, value): argument 56 settings.set(section, tag, value)
|
| /rk3399_rockchip-uboot/scripts/kconfig/lxdialog/ |
| H A D | dialog.h | 126 struct dialog_color tag; member 151 void item_set_tag(char tag); 162 char tag; member 182 int item_is_tag(char tag);
|
| /rk3399_rockchip-uboot/tools/patman/ |
| H A D | commit.py | 64 tag = m.group(1) 65 self.tags.append(tag)
|
| /rk3399_rockchip-uboot/board/Synology/ds109/ |
| H A D | ds109.c | 114 void setup_board_tags(struct tag **in_params) in setup_board_tags() 117 struct tag *params; in setup_board_tags() 139 params->hdr.tag = ATAG_MV_UBOOT; in setup_board_tags()
|
| /rk3399_rockchip-uboot/tools/ |
| H A D | mxsimage.h | 141 uint8_t tag; member 157 } tag; member 225 uint8_t tag; member
|
| /rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/ |
| H A D | rk_atags.h | 221 struct tag { struct 239 #define tag_next(t) ((struct tag *)((u32 *)(t) + (t)->hdr.size)) argument 269 struct tag *atags_get_tag(u32 magic); 284 int atags_overflow(struct tag *t);
|