/linux-6.1.9/drivers/mtd/chips/ |
D | cfi_cmdset_0001.c | 120 static void cfi_tell_features(struct cfi_pri_intelext *extp) in cfi_tell_features() argument 123 printk(" Extended Query version %c.%c\n", extp->MajorVersion, extp->MinorVersion); in cfi_tell_features() 124 printk(" Feature/Command Support: %4.4X\n", extp->FeatureSupport); in cfi_tell_features() 125 printk(" - Chip Erase: %s\n", extp->FeatureSupport&1?"supported":"unsupported"); in cfi_tell_features() 126 printk(" - Suspend Erase: %s\n", extp->FeatureSupport&2?"supported":"unsupported"); in cfi_tell_features() 127 printk(" - Suspend Program: %s\n", extp->FeatureSupport&4?"supported":"unsupported"); in cfi_tell_features() 128 printk(" - Legacy Lock/Unlock: %s\n", extp->FeatureSupport&8?"supported":"unsupported"); in cfi_tell_features() 129 printk(" - Queued Erase: %s\n", extp->FeatureSupport&16?"supported":"unsupported"); in cfi_tell_features() 130 printk(" - Instant block lock: %s\n", extp->FeatureSupport&32?"supported":"unsupported"); in cfi_tell_features() 131 printk(" - Protection Bits: %s\n", extp->FeatureSupport&64?"supported":"unsupported"); in cfi_tell_features() [all …]
|
D | cfi_cmdset_0020.c | 65 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 …]
|
D | cfi_cmdset_0002.c | 124 struct cfi_pri_amdstd *extp = cfi->cmdset_priv; in cfi_use_status_reg() local 127 return extp && extp->MinorVersion >= '5' && in cfi_use_status_reg() 128 (extp->SoftwareFeatures & poll_mask) == CFI_POLL_STATUS_REG; in cfi_use_status_reg() 175 static void cfi_tell_features(struct cfi_pri_amdstd *extp) in cfi_tell_features() argument 186 printk(" Silicon revision: %d\n", extp->SiliconRevision >> 1); in cfi_tell_features() 188 (extp->SiliconRevision & 1) ? "Not required" : "Required"); in cfi_tell_features() 190 if (extp->EraseSuspend < ARRAY_SIZE(erase_suspend)) in cfi_tell_features() 191 printk(" Erase Suspend: %s\n", erase_suspend[extp->EraseSuspend]); in cfi_tell_features() 193 printk(" Erase Suspend: Unknown value %d\n", extp->EraseSuspend); in cfi_tell_features() 195 if (extp->BlkProt == 0) in cfi_tell_features() [all …]
|
D | cfi_util.c | 305 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-6.1.9/fs/xfs/ |
D | xfs_extfree_item.c | 354 struct xfs_extent *extp; in xfs_trans_free_extent() local 377 extp = &(efdp->efd_format.efd_extents[next_extent]); in xfs_trans_free_extent() 378 extp->ext_start = start_block; in xfs_trans_free_extent() 379 extp->ext_len = ext_len; in xfs_trans_free_extent() 410 struct xfs_extent *extp; in xfs_extent_free_log_item() local 422 extp = &efip->efi_format.efi_extents[next_extent]; in xfs_extent_free_log_item() 423 extp->ext_start = free->xefi_startblock; in xfs_extent_free_log_item() 424 extp->ext_len = free->xefi_blockcount; in xfs_extent_free_log_item() 527 struct xfs_extent *extp; in xfs_agfl_free_finish_item() local 561 extp = &(efdp->efd_format.efd_extents[next_extent]); in xfs_agfl_free_finish_item() [all …]
|
D | xfs_bmap_item.c | 582 struct xfs_map_extent *extp; in xfs_bui_item_relog() local 586 extp = BUI_ITEM(intent)->bui_format.bui_extents; in xfs_bui_item_relog() 593 memcpy(buip->bui_format.bui_extents, extp, count * sizeof(*extp)); in xfs_bui_item_relog()
|
D | xfs_refcount_item.c | 599 struct xfs_phys_extent *extp; in xfs_cui_item_relog() local 603 extp = CUI_ITEM(intent)->cui_format.cui_extents; in xfs_cui_item_relog() 610 memcpy(cuip->cui_format.cui_extents, extp, count * sizeof(*extp)); in xfs_cui_item_relog()
|
D | xfs_rmap_item.c | 603 struct xfs_map_extent *extp; in xfs_rui_item_relog() local 607 extp = RUI_ITEM(intent)->rui_format.rui_extents; in xfs_rui_item_relog() 614 memcpy(ruip->rui_format.rui_extents, extp, count * sizeof(*extp)); in xfs_rui_item_relog()
|
/linux-6.1.9/drivers/net/ethernet/stmicro/stmmac/ |
D | dwmac4_descs.c | 427 struct dma_extended_desc *extp = (struct dma_extended_desc *)head; in dwmac4_display_ring() local 430 dma_addr = dma_rx_phy + i * sizeof(*extp); in dwmac4_display_ring() 433 le32_to_cpu(extp->basic.des0), le32_to_cpu(extp->basic.des1), in dwmac4_display_ring() 434 le32_to_cpu(extp->basic.des2), le32_to_cpu(extp->basic.des3), in dwmac4_display_ring() 435 le32_to_cpu(extp->des4), le32_to_cpu(extp->des5), in dwmac4_display_ring() 436 le32_to_cpu(extp->des6), le32_to_cpu(extp->des7)); in dwmac4_display_ring() 437 extp++; in dwmac4_display_ring()
|
/linux-6.1.9/Documentation/devicetree/bindings/display/msm/ |
D | hdmi.yaml | 151 - const: extp 208 "extp";
|
/linux-6.1.9/arch/arm64/boot/dts/qcom/ |
D | msm8996.dtsi | 1148 "extp";
|