Home
last modified time | relevance | path

Searched refs:VC4_GET_FIELD (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/gpu/drm/vc4/
H A Dvc4_v3d.c108 uint32_t nslc = VC4_GET_FIELD(ident1, V3D_IDENT1_NSLC); in vc4_v3d_debugfs_ident()
109 uint32_t tups = VC4_GET_FIELD(ident1, V3D_IDENT1_TUPS); in vc4_v3d_debugfs_ident()
110 uint32_t qups = VC4_GET_FIELD(ident1, V3D_IDENT1_QUPS); in vc4_v3d_debugfs_ident()
113 VC4_GET_FIELD(ident1, V3D_IDENT1_REV)); in vc4_v3d_debugfs_ident()
118 VC4_GET_FIELD(ident1, V3D_IDENT1_NSEM)); in vc4_v3d_debugfs_ident()
H A Dvc4_crtc.c95 top = VC4_GET_FIELD(dispbase, SCALER6_DISPX_COB_TOP) & ~3; in vc4_crtc_get_cob_allocation()
96 base = VC4_GET_FIELD(dispbase, SCALER6_DISPX_COB_BASE) & ~3; in vc4_crtc_get_cob_allocation()
99 top = VC4_GET_FIELD(dispbase, SCALER_DISPBASEX_TOP) & ~3; in vc4_crtc_get_cob_allocation()
100 base = VC4_GET_FIELD(dispbase, SCALER_DISPBASEX_BASE) & ~3; in vc4_crtc_get_cob_allocation()
148 *vpos = VC4_GET_FIELD(val, SCALER6_DISPX_STATUS_YLINE); in vc4_crtc_get_scanout_position()
150 *vpos = VC4_GET_FIELD(val, SCALER_DISPSTATX_LINE); in vc4_crtc_get_scanout_position()
582 encoder_sel = VC4_GET_FIELD(CRTC_READ(PV_CONTROL), PV_CONTROL_CLK_SELECT); in vc4_crtc_disable_at_boot()
836 current_dlist = VC4_GET_FIELD(HVS_READ(SCALER6_DISPX_DL(chan)), in vc4_crtc_handle_page_flip()
H A Dvc4_regs.h20 #define VC4_GET_FIELD(word, field) FIELD_GET(field##_MASK, word) macro