Lines Matching +full:f +full:- +full:tile
1 // SPDX-License-Identifier: GPL-2.0+
4 * Maxime Ripard <maxime.ripard@free-electrons.com>
42 * end line of the current tile and the start of the first line in the next
43 * vertical tile.
45 * Tiles are represented in row-major order, thus the end line of current tile
46 * starts at: 31 * 32 (31 lines of 32 cols), the next vertical tile starts at:
47 * 32-bit-aligned-width * 32 and the distance is:
48 * 32 * (32-bit-aligned-width - 31).
50 #define SUN4I_FRONTEND_LINESTRD_TILED(stride) (((stride) - 31) * 32)
79 #define SUN4I_FRONTEND_INSIZE(h, w) ((((h) - 1) << 16) | (((w) - 1)))
82 #define SUN4I_FRONTEND_OUTSIZE(h, w) ((((h) - 1) << 16) | (((w) - 1)))
85 #define SUN4I_FRONTEND_HORZFACT(i, f) (((i) << 16) | (f)) argument
88 #define SUN4I_FRONTEND_VERTFACT(i, f) (((i) << 16) | (f)) argument