Home
last modified time | relevance | path

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

/Linux-v6.6/drivers/gpu/drm/exynos/
Dexynos5433_drm_decon.c396 #define BIT_VAL(x, e, s) (((x) & ((1 << ((e) - (s) + 1)) - 1)) << (s)) macro
397 #define COORDINATE_X(x) BIT_VAL((x), 23, 12)
398 #define COORDINATE_Y(x) BIT_VAL((x), 11, 0)
444 val = BIT_VAL(pitch - state->crtc.w * cpp, 27, 14) in decon_update_plane()
445 | BIT_VAL(state->crtc.w * cpp, 13, 0); in decon_update_plane()
447 val = BIT_VAL(pitch - state->crtc.w * cpp, 29, 15) in decon_update_plane()
448 | BIT_VAL(state->crtc.w * cpp, 14, 0); in decon_update_plane()