Home
last modified time | relevance | path

Searched refs:extp (Results 1 – 9 of 9) sorted by relevance

/Linux-v5.10/drivers/mtd/chips/
Dcfi_cmdset_0001.c119 static void cfi_tell_features(struct cfi_pri_intelext *extp) in cfi_tell_features() argument
122 printk(" Extended Query version %c.%c\n", extp->MajorVersion, extp->MinorVersion); in cfi_tell_features()
123 printk(" Feature/Command Support: %4.4X\n", extp->FeatureSupport); in cfi_tell_features()
124 printk(" - Chip Erase: %s\n", extp->FeatureSupport&1?"supported":"unsupported"); in cfi_tell_features()
125 printk(" - Suspend Erase: %s\n", extp->FeatureSupport&2?"supported":"unsupported"); in cfi_tell_features()
126 printk(" - Suspend Program: %s\n", extp->FeatureSupport&4?"supported":"unsupported"); in cfi_tell_features()
127 printk(" - Legacy Lock/Unlock: %s\n", extp->FeatureSupport&8?"supported":"unsupported"); in cfi_tell_features()
128 printk(" - Queued Erase: %s\n", extp->FeatureSupport&16?"supported":"unsupported"); in cfi_tell_features()
129 printk(" - Instant block lock: %s\n", extp->FeatureSupport&32?"supported":"unsupported"); in cfi_tell_features()
130 printk(" - Protection Bits: %s\n", extp->FeatureSupport&64?"supported":"unsupported"); in cfi_tell_features()
[all …]
Dcfi_cmdset_0020.c65 static void cfi_tell_features(struct cfi_pri_intelext *extp) in cfi_tell_features() argument
68 printk(" Feature/Command Support: %4.4X\n", extp->FeatureSupport); in cfi_tell_features()
69 printk(" - Chip Erase: %s\n", extp->FeatureSupport&1?"supported":"unsupported"); in cfi_tell_features()
70 printk(" - Suspend Erase: %s\n", extp->FeatureSupport&2?"supported":"unsupported"); in cfi_tell_features()
71 printk(" - Suspend Program: %s\n", extp->FeatureSupport&4?"supported":"unsupported"); in cfi_tell_features()
72 printk(" - Legacy Lock/Unlock: %s\n", extp->FeatureSupport&8?"supported":"unsupported"); in cfi_tell_features()
73 printk(" - Queued Erase: %s\n", extp->FeatureSupport&16?"supported":"unsupported"); in cfi_tell_features()
74 printk(" - Instant block lock: %s\n", extp->FeatureSupport&32?"supported":"unsupported"); in cfi_tell_features()
75 printk(" - Protection Bits: %s\n", extp->FeatureSupport&64?"supported":"unsupported"); in cfi_tell_features()
76 printk(" - Page-mode read: %s\n", extp->FeatureSupport&128?"supported":"unsupported"); in cfi_tell_features()
[all …]
Dcfi_cmdset_0002.c119 struct cfi_pri_amdstd *extp = cfi->cmdset_priv; in cfi_use_status_reg() local
122 return extp->MinorVersion >= '5' && in cfi_use_status_reg()
123 (extp->SoftwareFeatures & poll_mask) == CFI_POLL_STATUS_REG; in cfi_use_status_reg()
170 static void cfi_tell_features(struct cfi_pri_amdstd *extp) in cfi_tell_features() argument
181 printk(" Silicon revision: %d\n", extp->SiliconRevision >> 1); in cfi_tell_features()
183 (extp->SiliconRevision & 1) ? "Not required" : "Required"); in cfi_tell_features()
185 if (extp->EraseSuspend < ARRAY_SIZE(erase_suspend)) in cfi_tell_features()
186 printk(" Erase Suspend: %s\n", erase_suspend[extp->EraseSuspend]); in cfi_tell_features()
188 printk(" Erase Suspend: Unknown value %d\n", extp->EraseSuspend); in cfi_tell_features()
190 if (extp->BlkProt == 0) in cfi_tell_features()
[all …]
Dcfi_util.c305 struct cfi_extquery *extp = NULL; in cfi_read_pri() local
312 extp = kmalloc(size, GFP_KERNEL); in cfi_read_pri()
313 if (!extp) in cfi_read_pri()
324 ((unsigned char *)extp)[i] = in cfi_read_pri()
337 out: return extp; in cfi_read_pri()
/Linux-v5.10/fs/xfs/
Dxfs_extfree_item.c365 struct xfs_extent *extp; in xfs_trans_free_extent() local
388 extp = &(efdp->efd_format.efd_extents[next_extent]); in xfs_trans_free_extent()
389 extp->ext_start = start_block; in xfs_trans_free_extent()
390 extp->ext_len = ext_len; in xfs_trans_free_extent()
421 struct xfs_extent *extp; in xfs_extent_free_log_item() local
433 extp = &efip->efi_format.efi_extents[next_extent]; in xfs_extent_free_log_item()
434 extp->ext_start = free->xefi_startblock; in xfs_extent_free_log_item()
435 extp->ext_len = free->xefi_blockcount; in xfs_extent_free_log_item()
531 struct xfs_extent *extp; in xfs_agfl_free_finish_item() local
562 extp = &(efdp->efd_format.efd_extents[next_extent]); in xfs_agfl_free_finish_item()
[all …]
Dxfs_bmap_item.c553 struct xfs_map_extent *extp; in xfs_bui_item_relog() local
557 extp = BUI_ITEM(intent)->bui_format.bui_extents; in xfs_bui_item_relog()
564 memcpy(buip->bui_format.bui_extents, extp, count * sizeof(*extp)); in xfs_bui_item_relog()
Dxfs_refcount_item.c571 struct xfs_phys_extent *extp; in xfs_cui_item_relog() local
575 extp = CUI_ITEM(intent)->cui_format.cui_extents; in xfs_cui_item_relog()
582 memcpy(cuip->cui_format.cui_extents, extp, count * sizeof(*extp)); in xfs_cui_item_relog()
Dxfs_rmap_item.c594 struct xfs_map_extent *extp; in xfs_rui_item_relog() local
598 extp = RUI_ITEM(intent)->rui_format.rui_extents; in xfs_rui_item_relog()
605 memcpy(ruip->rui_format.rui_extents, extp, count * sizeof(*extp)); in xfs_rui_item_relog()
/Linux-v5.10/arch/arm64/boot/dts/qcom/
Dmsm8996.dtsi580 "extp";