Searched refs:BIT_VAL (Results 1 – 1 of 1) sorted by relevance
/linux-4.4.14/drivers/gpu/drm/exynos/ |
D | exynos5433_drm_decon.c | 255 #define BIT_VAL(x, e, s) (((x) & ((1 << ((e) - (s) + 1)) - 1)) << (s)) macro 256 #define COORDINATE_X(x) BIT_VAL((x), 23, 12) 257 #define COORDINATE_Y(x) BIT_VAL((x), 11, 0) 293 val = BIT_VAL(pitch - plane->crtc_w * bpp, 27, 14) in decon_update_plane() 294 | BIT_VAL(plane->crtc_w * bpp, 13, 0); in decon_update_plane() 296 val = BIT_VAL(pitch - plane->crtc_w * bpp, 29, 15) in decon_update_plane() 297 | BIT_VAL(plane->crtc_w * bpp, 14, 0); in decon_update_plane()
|