Searched refs:vers (Results 1 - 13 of 13) sorted by relevance

/u-boot/cmd/riscv/
H A Dsbi.c79 long vers; local
82 ret = sbi_get_impl_version(&vers);
89 vers >> 16, vers & 0xffff);
94 vers >> 16,
95 (vers >> 8) & 0xff,
96 vers & 0xff);
99 printf("0x%lx", vers);
/u-boot/disk/
H A Dpart_iso.h16 unsigned char vers; /* Version */ member in struct:iso_boot_rec
26 unsigned char vers; /* Version */ member in struct:iso_pri_rec
64 unsigned char vers; /* Version */ member in struct:iso_sup_rec
102 unsigned char vers; /* Version */ member in struct:iso_part_rec
/u-boot/include/
H A Dtee.h209 * @vers: Pointer to version data
211 void (*get_version)(struct udevice *dev, struct tee_version_data *vers);
326 * @vers: if not NULL, version data of TEE device of the device returned
333 int (*match)(struct tee_version_data *vers,
336 struct tee_version_data *vers);
339 int (*match)(struct tee_version_data *vers,
342 struct tee_version_data *vers)
351 * @vers: Pointer to version data
353 void tee_get_version(struct udevice *dev, struct tee_version_data *vers);
338 tee_find_device(struct udevice *start, int (*match)(struct tee_version_data *vers, const void *data), const void *data, struct tee_version_data *vers) argument
/u-boot/net/
H A Dnfs.h66 uint32_t vers; member in struct:rpc_t::__anon857::__anon858
H A Dnfs.c203 rpc_pkt.u.call.vers = htonl(2);
207 rpc_pkt.u.call.vers = htonl(3);
218 rpc_pkt.u.call.vers = htonl(1);
222 rpc_pkt.u.call.vers = htonl(2);
226 rpc_pkt.u.call.vers = htonl(3);
236 rpc_pkt.u.call.vers = htonl(2); /* portmapper is version 2 */
/u-boot/drivers/tee/
H A Dtee-uclass.c32 void tee_get_version(struct udevice *dev, struct tee_version_data *vers) argument
34 tee_get_ops(dev)->get_version(dev, vers);
154 int (*match)(struct tee_version_data *vers,
157 struct tee_version_data *vers)
161 struct tee_version_data *v = vers ? vers : &lv;
153 tee_find_device(struct udevice *start, int (*match)(struct tee_version_data *vers, const void *data), const void *data, struct tee_version_data *vers) argument
H A Dsandbox.c426 struct tee_version_data *vers)
432 *vers = v;
425 sandbox_tee_get_version(struct udevice *dev, struct tee_version_data *vers) argument
/u-boot/test/dm/
H A Dtee.c93 static int match(struct tee_version_data *vers, const void *data) argument
95 return vers->gen_caps & TEE_GEN_CAP_GP;
105 struct tee_version_data vers; local
113 dev = tee_find_device(NULL, match, NULL, &vers);
154 struct tee_version_data vers; local
170 dev = tee_find_device(NULL, match, NULL, &vers);
/u-boot/drivers/tpm/
H A Dtpm2_ftpm_tee.c158 static int ftpm_tee_match(struct tee_version_data *vers, const void *data) argument
160 debug("%s:vers->gen_caps =0x%x\n", __func__, vers->gen_caps);
165 return vers->gen_caps & TEE_GEN_CAP_GP;
/u-boot/board/toradex/apalis-imx8/
H A Dapalis-imx8.c77 u16 vers; member in struct:tdx_user_fuses
123 tdxuserfuse->vers = (fuse_block >> 4) & GENMASK(13, 0);
/u-boot/drivers/ata/
H A Dahci.c301 u32 vers, cap, cap2, impl, speed; local
305 vers = readl(mmio + HOST_VERSION);
323 (vers >> 24) & 0xff,
324 (vers >> 16) & 0xff,
325 (vers >> 8) & 0xff,
326 vers & 0xff,
H A Ddwc_ahsata.c279 u32 vers, cap, impl, speed; local
283 vers = readl(&host_mmio->vs);
300 (vers >> 24) & 0xff,
301 (vers >> 16) & 0xff,
302 (vers >> 8) & 0xff,
303 vers & 0xff,
/u-boot/drivers/tee/optee/
H A Dcore.c304 struct tee_version_data *vers)
310 *vers = v;
303 optee_get_version(struct udevice *dev, struct tee_version_data *vers) argument

Completed in 245 milliseconds