Home
last modified time | relevance | path

Searched refs:vops (Results 1 – 20 of 20) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/scsi/ufs/
H A Dufshcd.h838 const struct ufs_hba_variant_ops *vops; member
1214 if (hba->vops) in ufshcd_get_var_name()
1215 return hba->vops->name; in ufshcd_get_var_name()
1221 if (hba->vops && hba->vops->init) in ufshcd_vops_init()
1222 return hba->vops->init(hba); in ufshcd_vops_init()
1229 if (hba->vops && hba->vops->exit) in ufshcd_vops_exit()
1230 return hba->vops->exit(hba); in ufshcd_vops_exit()
1235 if (hba->vops && hba->vops->get_ufs_hci_version) in ufshcd_vops_get_ufs_hci_version()
1236 return hba->vops->get_ufs_hci_version(hba); in ufshcd_vops_get_ufs_hci_version()
1249 if (hba->vops && hba->vops->clk_scale_notify) in ufshcd_vops_clk_scale_notify()
[all …]
H A Dcdns-pltfrm.c224 if (hba->vops && hba->vops->phy_initialization) in cdns_ufs_init()
225 status = hba->vops->phy_initialization(hba); in cdns_ufs_init()
289 struct ufs_hba_variant_ops *vops; in cdns_ufs_pltfrm_probe() local
293 vops = (struct ufs_hba_variant_ops *)of_id->data; in cdns_ufs_pltfrm_probe()
296 err = ufshcd_pltfrm_init(pdev, vops); in cdns_ufs_pltfrm_probe()
H A Dtc-dwc-g210-pltfrm.c57 struct ufs_hba_variant_ops *vops; in tc_dwc_g210_pltfm_probe() local
61 vops = (struct ufs_hba_variant_ops *)of_id->data; in tc_dwc_g210_pltfm_probe()
64 err = ufshcd_pltfrm_init(pdev, vops); in tc_dwc_g210_pltfm_probe()
H A Dufshcd-dwc.c123 if (hba->vops->phy_initialization) { in ufshcd_dwc_link_startup_notify()
124 err = hba->vops->phy_initialization(hba); in ufshcd_dwc_link_startup_notify()
H A Dufshcd-crypto.c32 if (hba->vops && hba->vops->program_key) { in ufshcd_program_key()
33 err = hba->vops->program_key(hba, cfg, slot); in ufshcd_program_key()
H A Dufshcd-pltfrm.c366 const struct ufs_hba_variant_ops *vops) in ufshcd_pltfrm_init() argument
391 hba->vops = vops; in ufshcd_pltfrm_init()
H A Dufshcd-pltfrm.h32 const struct ufs_hba_variant_ops *vops);
H A Dtc-dwc-g210-pci.c130 hba->vops = &tc_dwc_g210_pci_hba_vops; in tc_dwc_g210_pci_probe()
H A Dufshcd-pci.c350 hba->vops = (struct ufs_hba_variant_ops *)id->driver_data; in ufshcd_pci_probe()
H A Dufshcd.c2101 if (hba->vops && hba->vops->setup_xfer_req) in ufshcd_send_command()
2102 hba->vops->setup_xfer_req(hba, task_tag, !!lrbp->cmd); in ufshcd_send_command()
8353 if (!hba->vops) in ufshcd_variant_hba_init()
8372 if (!hba->vops) in ufshcd_variant_hba_exit()
/OK3568_Linux_fs/u-boot/drivers/mtd/nand/raw/
H A Dnand_util.c482 struct mtd_oob_ops vops; in nand_verify_page_oob() local
485 memcpy(&vops, ops, sizeof(vops)); in nand_verify_page_oob()
487 vops.datbuf = memalign(ARCH_DMA_MINALIGN, verlen); in nand_verify_page_oob()
489 if (!vops.datbuf) in nand_verify_page_oob()
492 vops.oobbuf = vops.datbuf + mtd->writesize; in nand_verify_page_oob()
494 rval = mtd_read_oob(mtd, ofs, &vops); in nand_verify_page_oob()
496 rval = memcmp(ops->datbuf, vops.datbuf, vops.len); in nand_verify_page_oob()
498 rval = memcmp(ops->oobbuf, vops.oobbuf, vops.ooblen); in nand_verify_page_oob()
500 free(vops.datbuf); in nand_verify_page_oob()
/OK3568_Linux_fs/kernel/fs/verity/
H A Denable.c51 const struct fsverity_operations *vops = inode->i_sb->s_vop; in build_merkle_tree_level() local
95 src_page = vops->read_merkle_tree_page(inode, in build_merkle_tree_level()
122 err = vops->write_merkle_tree_block(inode, in build_merkle_tree_level()
202 const struct fsverity_operations *vops = inode->i_sb->s_vop; in enable_verity() local
253 err = vops->begin_enable_verity(filp); in enable_verity()
299 err = vops->end_enable_verity(filp, desc, desc_size, params.tree_size); in enable_verity()
303 vops->end_enable_verity, err); in enable_verity()
325 (void)vops->end_enable_verity(filp, NULL, 0, params.tree_size); in enable_verity()
H A Dread_metadata.c19 const struct fsverity_operations *vops = inode->i_sb->s_vop; in fsverity_read_merkle_tree() local
47 page = vops->read_merkle_tree_page(inode, index, num_ra_pages); in fsverity_read_merkle_tree()
/OK3568_Linux_fs/kernel/drivers/media/platform/cadence/
H A Dcdns-csi2tx.c103 struct csi2tx_vops *vops; member
313 if (csi2tx->vops && csi2tx->vops->dphy_setup) { in csi2tx_start()
314 csi2tx->vops->dphy_setup(csi2tx); in csi2tx_start()
584 csi2tx->vops = (struct csi2tx_vops *)of_id->data; in csi2tx_probe()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dbuiltin-attrs.def111 DEF_ATTR_IDENT (ATTR_NOVOPS, "no vops")
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dbuiltin-attrs.def111 DEF_ATTR_IDENT (ATTR_NOVOPS, "no vops")
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/
H A Dgccint.info15305 dump with virtual operands, use the '-vops' option to '-fdump-tree':
H A Dgcc.info15140 'vops'
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/
H A Dgccint.info15305 dump with virtual operands, use the '-vops' option to '-fdump-tree':
H A Dgcc.info15140 'vops'