/openbmc/qemu/target/ppc/ |
H A D | dfp_helper.c | 32 static void get_dfp64(ppc_vsr_t *dst, ppc_fprp_t *dfp) in get_dfp64() argument 34 dst->VsrD(1) = dfp->VsrD(0); in get_dfp64() 37 static void get_dfp128(ppc_vsr_t *dst, ppc_fprp_t *dfp) in get_dfp128() argument 39 dst->VsrD(0) = dfp[0].VsrD(0); in get_dfp128() 40 dst->VsrD(1) = dfp[1].VsrD(0); in get_dfp128() 43 static void set_dfp64(ppc_fprp_t *dfp, ppc_vsr_t *src) in set_dfp64() argument 45 dfp[0].VsrD(0) = src->VsrD(1); in set_dfp64() 46 dfp[0].VsrD(1) = 0ULL; in set_dfp64() 49 static void set_dfp128(ppc_fprp_t *dfp, ppc_vsr_t *src) in set_dfp128() argument 51 dfp[0].VsrD(0) = src->VsrD(0); in set_dfp128() [all …]
|
H A D | internal.h | 202 /* DFP Z22-form */ 205 /* DFP Z23-form */
|
/openbmc/linux/fs/xfs/libxfs/ |
H A D | xfs_defer.c | 202 struct xfs_defer_pending *dfp, in xfs_defer_create_intent() argument 205 const struct xfs_defer_op_type *ops = defer_op_types[dfp->dfp_type]; in xfs_defer_create_intent() 208 if (dfp->dfp_intent) in xfs_defer_create_intent() 211 lip = ops->create_intent(tp, &dfp->dfp_work, dfp->dfp_count, sort); in xfs_defer_create_intent() 217 dfp->dfp_intent = lip; in xfs_defer_create_intent() 233 struct xfs_defer_pending *dfp; in xfs_defer_create_intents() local 236 list_for_each_entry(dfp, &tp->t_dfops, dfp_list) { in xfs_defer_create_intents() 239 trace_xfs_defer_create_intent(tp->t_mountp, dfp); in xfs_defer_create_intents() 240 ret2 = xfs_defer_create_intent(tp, dfp, true); in xfs_defer_create_intents() 251 struct xfs_defer_pending *dfp) in xfs_defer_pending_abort() argument [all …]
|
H A D | xfs_dir2_data.c | 107 xfs_dir2_data_free_t *dfp; /* bestfree entry */ in __xfs_dir3_data_check() local 208 fa = xfs_dir2_data_freefind_verify(hdr, bf, dup, &dfp); in __xfs_dir3_data_check() 211 if (dfp) { in __xfs_dir3_data_check() 212 i = (int)(dfp - bf); in __xfs_dir3_data_check() 485 struct xfs_dir2_data_free *dfp; in xfs_dir2_data_freefind_verify() local 498 for (dfp = &bf[0]; dfp < &bf[XFS_DIR2_DATA_FD_COUNT]; dfp++) { in xfs_dir2_data_freefind_verify() 499 if (!dfp->offset) { in xfs_dir2_data_freefind_verify() 500 if (dfp->length) in xfs_dir2_data_freefind_verify() 507 if (be16_to_cpu(dfp->offset) == off) { in xfs_dir2_data_freefind_verify() 509 if (dfp->length != dup->length) in xfs_dir2_data_freefind_verify() [all …]
|
H A D | xfs_inode_fork.c | 170 xfs_bmdr_block_t *dfp; in xfs_iformat_btree() local 178 dfp = (xfs_bmdr_block_t *)XFS_DFORK_PTR(dip, whichfork); in xfs_iformat_btree() 179 size = XFS_BMAP_BROOT_SPACE(mp, dfp); in xfs_iformat_btree() 180 nrecs = be16_to_cpu(dfp->bb_numrecs); in xfs_iformat_btree() 181 level = be16_to_cpu(dfp->bb_level); in xfs_iformat_btree() 199 "xfs_iformat_btree", dfp, size, in xfs_iformat_btree() 211 xfs_bmdr_to_bmbt(ip, dfp, XFS_DFORK_SIZE(dip, ip->i_mount, whichfork), in xfs_iformat_btree()
|
/openbmc/qemu/target/ppc/translate/ |
H A D | dfp-impl.c.inc | 14 REQUIRE_INSNS_FLAGS2(ctx, DFP); \ 30 REQUIRE_INSNS_FLAGS2(ctx, DFP); \ 43 REQUIRE_INSNS_FLAGS2(ctx, DFP); \ 55 REQUIRE_INSNS_FLAGS2(ctx, DFP); \ 67 REQUIRE_INSNS_FLAGS2(ctx, DFP); \ 84 REQUIRE_INSNS_FLAGS2(ctx, DFP); \ 101 REQUIRE_INSNS_FLAGS2(ctx, DFP); \ 116 REQUIRE_INSNS_FLAGS2(ctx, DFP); \ 185 REQUIRE_INSNS_FLAGS2(ctx, DFP); 200 REQUIRE_INSNS_FLAGS2(ctx, DFP);
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-driver-hid-logitech-lg4ff | 32 DF-EX --> DFP 36 DF-EX --> DFP --> G25 40 DF-EX <*> DFP <-> G25 <-> G27 46 DF-EX <*> DFP <-> G25 <-> G27 <-> G29 53 DF-EX <*> DFP <-> DFGT
|
H A D | sysfs-class-typec | 45 source (The port will behave as source only DFP port) 182 both UFP and DFP product types defined, but only one that 202 DFP / host role
|
/openbmc/linux/fs/xfs/scrub/ |
H A D | dir.c | 274 struct xfs_dir2_data_free *dfp; in xchk_directory_check_free_entry() local 283 for (dfp = &bf[XFS_DIR2_DATA_FD_COUNT - 1]; dfp >= bf; dfp--) in xchk_directory_check_free_entry() 284 if (dup_length == be16_to_cpu(dfp->length)) in xchk_directory_check_free_entry() 299 struct xfs_dir2_data_free *dfp; in xchk_directory_data_bestfree() local 333 for (dfp = &bf[0]; dfp < &bf[XFS_DIR2_DATA_FD_COUNT]; dfp++) { in xchk_directory_data_bestfree() 334 offset = be16_to_cpu(dfp->offset); in xchk_directory_data_bestfree() 346 be16_to_cpu(dup->length) != be16_to_cpu(dfp->length) || in xchk_directory_data_bestfree() 353 if (smallest_bestfree < be16_to_cpu(dfp->length)) { in xchk_directory_data_bestfree() 358 smallest_bestfree = be16_to_cpu(dfp->length); in xchk_directory_data_bestfree() 436 struct xfs_dir2_data_free *dfp; in xchk_directory_check_freesp() local [all …]
|
/openbmc/linux/drivers/net/ethernet/intel/ixgbe/ |
H A D | ixgbe_dcb_82598.h | 10 #define IXGBE_DPMCS_TDPAC 0x00000001 /* 0 Round Robin, 1 DFP - Deficit Fixed Priority */ 33 #define IXGBE_PDPMCS_TPPAC 0x00000020 /* 0 Round Robin, 1 for DFP - Deficit Fixed Priority */
|
H A D | ixgbe_dcb_82599.h | 42 /* Receive Arbitration Control: 0 Round Robin, 1 DFP */
|
/openbmc/linux/drivers/video/fbdev/nvidia/ |
H A D | nv_setup.c | 421 FlatPanel ? (Television ? "TV" : "DFP") : in NVCommonSetup() 430 "specified\n", par->FlatPanel ? "DFP" : "CRT"); in NVCommonSetup() 507 "DFP\n"); in NVCommonSetup() 512 "for DFP\n"); in NVCommonSetup() 550 "DFP\n"); in NVCommonSetup() 559 "specified\n", par->FlatPanel ? "DFP" : "CRT"); in NVCommonSetup() 617 par->FlatPanel ? (par->Television ? "TV" : "DFP") : "CRT", in NVCommonSetup()
|
H A D | nv_of.c | 34 "DFP,EDID", "LCD,EDID", "EDID", "EDID1", in nvidia_probe_of_connector()
|
/openbmc/linux/arch/powerpc/platforms/85xx/ |
H A D | t1042rdb_diu.c | 48 /* Enable the DVI(HDMI) port, disable the DFP and in t1042rdb_set_monitor_port() 58 /* Enable the DFP port, disable the DVI*/ in t1042rdb_set_monitor_port()
|
/openbmc/linux/drivers/gpu/drm/i915/display/ |
H A D | intel_dp.c | 901 return intel_dp->dfp.rgb_to_ycbcr; in dfp_can_convert_from_rgb() 904 return intel_dp->dfp.rgb_to_ycbcr && in dfp_can_convert_from_rgb() 905 intel_dp->dfp.ycbcr_444_to_420; in dfp_can_convert_from_rgb() 918 return intel_dp->dfp.ycbcr_444_to_420; in dfp_can_convert_from_ycbcr444() 1019 int max_tmds_clock = intel_dp->dfp.max_tmds_clock; in intel_dp_max_tmds_clock() 1021 /* Only consider the sink's max TMDS clock if we know this is a HDMI DFP */ in intel_dp_max_tmds_clock() 1041 min_tmds_clock = intel_dp->dfp.min_tmds_clock; in intel_dp_tmds_clock_valid() 1064 if (intel_dp->dfp.pcon_max_frl_bw) { in intel_dp_mode_valid_downstream() 1071 max_frl_bw = intel_dp->dfp.pcon_max_frl_bw; in intel_dp_mode_valid_downstream() 1082 if (intel_dp->dfp.max_dotclock && in intel_dp_mode_valid_downstream() [all …]
|
/openbmc/linux/Documentation/fb/ |
H A D | matroxfb.rst | 230 dfp enables digital flat panel interface. This option is incompatible 231 with secondary (TV) output - if DFP is active, TV output must be 232 inactive and vice versa. DFP always uses same timing as primary 234 dfp:X use settings X for digital flat panel interface. X is number from 246 Default setting is 100 for cards below G400 or G400 without DFP, 247 101 for G400 with DFP, and 111 for G450 and G550. You can set
|
/openbmc/linux/include/linux/usb/ |
H A D | pd_vdo.h | 111 * <25:23> :: product type (DFP) (SVDM version 2.0+ only; set to zero in version 1.0) 133 /* SOP Product Type (DFP) */ 143 #define VDO_IDH(usbh, usbd, ufp_cable, is_modal, dfp, conn, vid) \ argument 145 | (is_modal) << 26 | ((dfp) & 0x7) << 23 | ((conn) & 0x3) << 21 \ 235 * DFP VDO (PD Revision 3.0+ only) 237 * <31:29> :: DFP VDO version
|
/openbmc/linux/include/dt-bindings/usb/ |
H A D | pd.h | 104 * <25:23> :: product type (DFP) (SVDM version 2.0+ only; set to zero in version 1.0) 126 /* SOP Product Type (DFP) */ 132 #define VDO_IDH(usbh, usbd, ufp_cable, is_modal, dfp, conn, vid) \ argument 134 | (is_modal) << 26 | ((dfp) & 0x7) << 23 | ((conn) & 0x3) << 21 \ 214 * DFP VDO (PD Revision 3.0+ only) 216 * <31:29> :: DFP VDO version
|
/openbmc/linux/drivers/gpu/drm/nouveau/dispnv04/ |
H A D | Kbuild | 6 nouveau-y += dispnv04/dfp.o
|
/openbmc/linux/drivers/hid/ |
H A D | hid-lg4ff.c | 5 * Including G27, G25, DFP, DFGT, FFEX, Momo, Momo2 & 47 #define LG4FF_DFP_TAG "DFP" 237 0xf8, 0x09, 0x01, 0x01, 0x00, 0x00, 0x00} /* Switch mode to DFP with detach */ 264 /* EXT_CMD1 - Understood by DFP, G25, G27 and DFGT */ 696 /* DFP can only be switched to its native mode */ in lg4ff_get_mode_switch_command() 707 /* G25 can only be switched to DFP mode or its native mode */ in lg4ff_get_mode_switch_command() 722 /* G27 can only be switched to DF-EX, DFP, G25 or its native mode */ in lg4ff_get_mode_switch_command() 739 /* G29 can only be switched to DF-EX, DFP, DFGT, G25, G27 or its native mode */ in lg4ff_get_mode_switch_command() 752 /* DFGT can only be switched to DF-EX, DFP or its native mode */ in lg4ff_get_mode_switch_command()
|
/openbmc/qemu/hw/ppc/ |
H A D | spapr_caps.c | 217 /* TODO: We don't support disabling dfp yet */ in cap_dfp_apply() 221 error_setg(errp, "DFP support not available"); in cap_dfp_apply() 222 error_append_hint(errp, "Try appending -machine cap-dfp=off\n"); in cap_dfp_apply() 719 .name = "dfp", 720 .description = "Allow Decimal Floating Point (DFP)", 966 SPAPR_CAP_MIG_STATE(dfp, SPAPR_CAP_DFP);
|
/openbmc/linux/Documentation/devicetree/bindings/usb/ |
H A D | ti,hd3ss3220.yaml | 15 HD3SS3220 can be configured as a Downstream Facing Port (DFP), Upstream Facing Port (UFP) or a
|
/openbmc/linux/drivers/video/fbdev/matrox/ |
H A D | matroxfb_base.c | 88 * DFP testing 1272 static int dfp; /* "matroxfb:dfp */ variable 1273 static int dfp_type = -1; /* "matroxfb:dfp:xxx */ 1417 /* if you'll find how to drive DFP... */ 1609 } else if (dfp) { in setDefaultOutputs() 2397 else if (!strncmp(this_opt, "dfp:", 4)) { in matroxfb_setup() 2399 dfp = 1; in matroxfb_setup() 2463 else if (!strcmp(this_opt, "dfp")) in matroxfb_setup() 2464 dfp = value; in matroxfb_setup() 2568 module_param(dfp, int, 0); [all …]
|
/openbmc/qemu/target/xtensa/core-test_mmuhifi_c3/ |
H A D | core-isa.h | 103 #define XCHAL_HAVE_DFP_DIV 0 /* DFP with DIV instructions */ 104 #define XCHAL_HAVE_DFP_RECIP 0 /* DFP with RECIP instructions*/ 105 #define XCHAL_HAVE_DFP_SQRT 0 /* DFP with SQRT instructions */ 106 #define XCHAL_HAVE_DFP_RSQRT 0 /* DFP with RSQRT instructions*/
|
/openbmc/linux/fs/xfs/ |
H A D | xfs_log_recover.c | 1730 struct xfs_defer_pending *dfp, *n; in xlog_recover_release_intent() local 1732 list_for_each_entry_safe(dfp, n, &log->r_dfops, dfp_list) { in xlog_recover_release_intent() 1733 struct xfs_log_item *lip = dfp->dfp_intent; in xlog_recover_release_intent() 1742 xfs_defer_cancel_recovery(log->l_mp, dfp); in xlog_recover_release_intent() 2559 struct xfs_defer_pending *dfp, *n; in xlog_recover_process_intents() local 2567 list_for_each_entry_safe(dfp, n, &log->r_dfops, dfp_list) { in xlog_recover_process_intents() 2568 struct xfs_log_item *lip = dfp->dfp_intent; in xlog_recover_process_intents() 2589 error = ops->iop_recover(dfp, &capture_list); in xlog_recover_process_intents() 2596 xfs_defer_cancel_recovery(log->l_mp, dfp); in xlog_recover_process_intents() 2620 struct xfs_defer_pending *dfp, *n; in xlog_recover_cancel_intents() local [all …]
|