Searched refs:BIT_VAL (Results 1 – 1 of 1) sorted by relevance
/Linux-v4.19/drivers/gpu/drm/exynos/ |
D | exynos5433_drm_decon.c | 325 #define BIT_VAL(x, e, s) (((x) & ((1 << ((e) - (s) + 1)) - 1)) << (s)) macro 326 #define COORDINATE_X(x) BIT_VAL((x), 23, 12) 327 #define COORDINATE_Y(x) BIT_VAL((x), 11, 0) 373 val = BIT_VAL(pitch - state->crtc.w * cpp, 27, 14) in decon_update_plane() 374 | BIT_VAL(state->crtc.w * cpp, 13, 0); in decon_update_plane() 376 val = BIT_VAL(pitch - state->crtc.w * cpp, 29, 15) in decon_update_plane() 377 | BIT_VAL(state->crtc.w * cpp, 14, 0); in decon_update_plane()
|