1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2017 NVIDIA CORPORATION. All rights reserved.
7 #define TEGRA_PLANE_H 1
9 #include <drm/drm_plane.h>
15 struct drm_plane base;
22 struct tegra_plane base;
29 static inline struct tegra_plane *to_tegra_plane(struct drm_plane *plane)
31 return container_of(plane, struct tegra_plane, base);
34 struct tegra_plane_legacy_blending_state {
39 struct tegra_plane_state {
40 struct drm_plane_state base;
42 struct sg_table *sgt[3];
45 struct tegra_bo_tiling tiling;
52 /* used for legacy blending support only */
53 struct tegra_plane_legacy_blending_state blending[2];
57 static inline struct tegra_plane_state *
58 to_tegra_plane_state(struct drm_plane_state *state)
61 return container_of(state, struct tegra_plane_state, base);
66 extern const struct drm_plane_funcs tegra_plane_funcs;
68 int tegra_plane_prepare_fb(struct drm_plane *plane,
69 struct drm_plane_state *state);
70 void tegra_plane_cleanup_fb(struct drm_plane *plane,
71 struct drm_plane_state *state);
73 int tegra_plane_state_add(struct tegra_plane *plane,
74 struct drm_plane_state *state);
76 int tegra_plane_format(u32 fourcc, u32 *format, u32 *swap);
77 bool tegra_plane_format_is_yuv(unsigned int format, bool *planar);
78 int tegra_plane_setup_legacy_state(struct tegra_plane *tegra,
79 struct tegra_plane_state *state);
81 #endif /* TEGRA_PLANE_H */