blob: e7b3cffd466432e56f3e680aae5f4201a02762e6 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Wei Ni6555e692012-10-17 13:24:50 +00002/*
3 * (C) Copyright 2010
4 * NVIDIA Corporation <www.nvidia.com>
Wei Ni6555e692012-10-17 13:24:50 +00005 */
6
7#ifndef __ASM_ARCH_TEGRA_DISPLAY_H
8#define __ASM_ARCH_TEGRA_DISPLAY_H
9
Simon Glassa11a43a2015-04-14 21:03:35 -060010#include <asm/arch-tegra/dc.h>
Wei Ni6555e692012-10-17 13:24:50 +000011
12/* This holds information about a window which can be displayed */
13struct disp_ctl_win {
14 enum win_color_depth_id fmt; /* Color depth/format */
15 unsigned bpp; /* Bits per pixel */
16 phys_addr_t phys_addr; /* Physical address in memory */
17 unsigned x; /* Horizontal address offset (bytes) */
18 unsigned y; /* Veritical address offset (bytes) */
19 unsigned w; /* Width of source window */
20 unsigned h; /* Height of source window */
21 unsigned stride; /* Number of bytes per line */
22 unsigned out_x; /* Left edge of output window (col) */
23 unsigned out_y; /* Top edge of output window (row) */
24 unsigned out_w; /* Width of output window in pixels */
25 unsigned out_h; /* Height of output window in pixels */
26};
27
Wei Ni6555e692012-10-17 13:24:50 +000028#endif /*__ASM_ARCH_TEGRA_DISPLAY_H*/