1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2017 NVIDIA CORPORATION. All rights reserved.
9 #include <drm/drm_plane.h>
15 struct tegra_windowgroup
{
16 unsigned int usecount
;
20 struct host1x_client
*parent
;
21 struct reset_control
*rst
;
24 struct tegra_shared_plane
{
25 struct tegra_plane base
;
26 struct tegra_windowgroup
*wgrp
;
29 static inline struct tegra_shared_plane
*
30 to_tegra_shared_plane(struct drm_plane
*plane
)
32 return container_of(plane
, struct tegra_shared_plane
, base
.base
);
35 struct tegra_display_hub_soc
{
36 unsigned int num_wgrps
;
40 struct tegra_display_hub
{
41 struct drm_private_obj base
;
42 struct host1x_client client
;
46 struct reset_control
*rst
;
48 unsigned int num_heads
;
49 struct clk
**clk_heads
;
51 const struct tegra_display_hub_soc
*soc
;
52 struct tegra_windowgroup
*wgrps
;
55 static inline struct tegra_display_hub
*
56 to_tegra_display_hub(struct host1x_client
*client
)
58 return container_of(client
, struct tegra_display_hub
, client
);
61 struct tegra_display_hub_state
{
62 struct drm_private_state base
;
69 static inline struct tegra_display_hub_state
*
70 to_tegra_display_hub_state(struct drm_private_state
*priv
)
72 return container_of(priv
, struct tegra_display_hub_state
, base
);
78 int tegra_display_hub_prepare(struct tegra_display_hub
*hub
);
79 void tegra_display_hub_cleanup(struct tegra_display_hub
*hub
);
81 struct drm_plane
*tegra_shared_plane_create(struct drm_device
*drm
,
86 int tegra_display_hub_atomic_check(struct drm_device
*drm
,
87 struct drm_atomic_state
*state
);
88 void tegra_display_hub_atomic_commit(struct drm_device
*drm
,
89 struct drm_atomic_state
*state
);
91 #define DC_CMD_IHUB_COMMON_MISC_CTL 0x068
92 #define LATENCY_EVENT (1 << 3)
94 #define DC_DISP_IHUB_COMMON_DISPLAY_FETCH_METER 0x451
95 #define CURS_SLOTS(x) (((x) & 0xff) << 8)
96 #define WGRP_SLOTS(x) (((x) & 0xff) << 0)
98 #endif /* TEGRA_HUB_H */