Home
last modified time | relevance | path

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

/linux-5.19.10/drivers/gpu/drm/exynos/
Dexynos5433_drm_decon.c394 #define BIT_VAL(x, e, s) (((x) & ((1 << ((e) - (s) + 1)) - 1)) << (s)) macro
395 #define COORDINATE_X(x) BIT_VAL((x), 23, 12)
396 #define COORDINATE_Y(x) BIT_VAL((x), 11, 0)
442 val = BIT_VAL(pitch - state->crtc.w * cpp, 27, 14) in decon_update_plane()
443 | BIT_VAL(state->crtc.w * cpp, 13, 0); in decon_update_plane()
445 val = BIT_VAL(pitch - state->crtc.w * cpp, 29, 15) in decon_update_plane()
446 | BIT_VAL(state->crtc.w * cpp, 14, 0); in decon_update_plane()