Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Thierry Reding | c4755fb | 2017-11-13 11:08:13 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2017 NVIDIA CORPORATION. All rights reserved. |
Thierry Reding | c4755fb | 2017-11-13 11:08:13 +0100 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef TEGRA_HUB_H |
| 7 | #define TEGRA_HUB_H 1 |
| 8 | |
| 9 | #include <drm/drmP.h> |
| 10 | #include <drm/drm_plane.h> |
| 11 | |
| 12 | #include "plane.h" |
| 13 | |
| 14 | struct tegra_dc; |
| 15 | |
| 16 | struct tegra_windowgroup { |
| 17 | unsigned int usecount; |
| 18 | struct mutex lock; |
| 19 | |
| 20 | unsigned int index; |
| 21 | struct device *parent; |
| 22 | struct reset_control *rst; |
| 23 | }; |
| 24 | |
| 25 | struct tegra_shared_plane { |
| 26 | struct tegra_plane base; |
| 27 | struct tegra_windowgroup *wgrp; |
Thierry Reding | c4755fb | 2017-11-13 11:08:13 +0100 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | static inline struct tegra_shared_plane * |
| 31 | to_tegra_shared_plane(struct drm_plane *plane) |
| 32 | { |
| 33 | return container_of(plane, struct tegra_shared_plane, base.base); |
| 34 | } |
| 35 | |
| 36 | struct tegra_display_hub_soc { |
| 37 | unsigned int num_wgrps; |
Thierry Reding | 5725daa | 2018-09-21 12:27:43 +0200 | [diff] [blame] | 38 | bool supports_dsc; |
Thierry Reding | c4755fb | 2017-11-13 11:08:13 +0100 | [diff] [blame] | 39 | }; |
| 40 | |
| 41 | struct tegra_display_hub { |
Thierry Reding | 0281c4149 | 2017-11-28 11:20:40 +0100 | [diff] [blame] | 42 | struct drm_private_obj base; |
Thierry Reding | c4755fb | 2017-11-13 11:08:13 +0100 | [diff] [blame] | 43 | struct host1x_client client; |
| 44 | struct clk *clk_disp; |
| 45 | struct clk *clk_dsc; |
| 46 | struct clk *clk_hub; |
| 47 | struct reset_control *rst; |
| 48 | |
Thierry Reding | 0cffbde | 2018-11-29 17:24:34 +0100 | [diff] [blame] | 49 | unsigned int num_heads; |
| 50 | struct clk **clk_heads; |
| 51 | |
Thierry Reding | c4755fb | 2017-11-13 11:08:13 +0100 | [diff] [blame] | 52 | const struct tegra_display_hub_soc *soc; |
| 53 | struct tegra_windowgroup *wgrps; |
| 54 | }; |
| 55 | |
| 56 | static inline struct tegra_display_hub * |
| 57 | to_tegra_display_hub(struct host1x_client *client) |
| 58 | { |
| 59 | return container_of(client, struct tegra_display_hub, client); |
| 60 | } |
| 61 | |
Thierry Reding | 0281c4149 | 2017-11-28 11:20:40 +0100 | [diff] [blame] | 62 | struct tegra_display_hub_state { |
| 63 | struct drm_private_state base; |
| 64 | |
| 65 | struct tegra_dc *dc; |
| 66 | unsigned long rate; |
| 67 | struct clk *clk; |
| 68 | }; |
| 69 | |
| 70 | static inline struct tegra_display_hub_state * |
| 71 | to_tegra_display_hub_state(struct drm_private_state *priv) |
| 72 | { |
| 73 | return container_of(priv, struct tegra_display_hub_state, base); |
| 74 | } |
| 75 | |
Thierry Reding | c4755fb | 2017-11-13 11:08:13 +0100 | [diff] [blame] | 76 | struct tegra_dc; |
| 77 | struct tegra_plane; |
| 78 | |
| 79 | int tegra_display_hub_prepare(struct tegra_display_hub *hub); |
| 80 | void tegra_display_hub_cleanup(struct tegra_display_hub *hub); |
| 81 | |
| 82 | struct drm_plane *tegra_shared_plane_create(struct drm_device *drm, |
| 83 | struct tegra_dc *dc, |
| 84 | unsigned int wgrp, |
| 85 | unsigned int index); |
| 86 | |
Thierry Reding | 0281c4149 | 2017-11-28 11:20:40 +0100 | [diff] [blame] | 87 | int tegra_display_hub_atomic_check(struct drm_device *drm, |
| 88 | struct drm_atomic_state *state); |
Thierry Reding | c4755fb | 2017-11-13 11:08:13 +0100 | [diff] [blame] | 89 | void tegra_display_hub_atomic_commit(struct drm_device *drm, |
| 90 | struct drm_atomic_state *state); |
| 91 | |
| 92 | #define DC_CMD_IHUB_COMMON_MISC_CTL 0x068 |
| 93 | #define LATENCY_EVENT (1 << 3) |
| 94 | |
| 95 | #define DC_DISP_IHUB_COMMON_DISPLAY_FETCH_METER 0x451 |
| 96 | #define CURS_SLOTS(x) (((x) & 0xff) << 8) |
| 97 | #define WGRP_SLOTS(x) (((x) & 0xff) << 0) |
| 98 | |
| 99 | #endif /* TEGRA_HUB_H */ |