Merge tag 'kvmarm-fixes-5.6-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmar...
[linux-2.6-microblaze.git] / drivers / gpu / drm / tegra / drm.h
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (C) 2012 Avionic Design GmbH
4  * Copyright (C) 2012-2013 NVIDIA CORPORATION.  All rights reserved.
5  */
6
7 #ifndef HOST1X_DRM_H
8 #define HOST1X_DRM_H 1
9
10 #include <linux/host1x.h>
11 #include <linux/iova.h>
12 #include <linux/of_gpio.h>
13
14 #include <drm/drm_atomic.h>
15 #include <drm/drm_edid.h>
16 #include <drm/drm_encoder.h>
17 #include <drm/drm_fb_helper.h>
18 #include <drm/drm_fixed.h>
19 #include <drm/drm_probe_helper.h>
20 #include <uapi/drm/tegra_drm.h>
21
22 #include "gem.h"
23 #include "hub.h"
24 #include "trace.h"
25
26 struct reset_control;
27
28 #ifdef CONFIG_DRM_FBDEV_EMULATION
29 struct tegra_fbdev {
30         struct drm_fb_helper base;
31         struct drm_framebuffer *fb;
32 };
33 #endif
34
35 struct tegra_drm {
36         struct drm_device *drm;
37
38         struct iommu_domain *domain;
39         bool use_explicit_iommu;
40         struct mutex mm_lock;
41         struct drm_mm mm;
42
43         struct {
44                 struct iova_domain domain;
45                 unsigned long shift;
46                 unsigned long limit;
47         } carveout;
48
49         struct mutex clients_lock;
50         struct list_head clients;
51
52 #ifdef CONFIG_DRM_FBDEV_EMULATION
53         struct tegra_fbdev *fbdev;
54 #endif
55
56         unsigned int pitch_align;
57
58         struct tegra_display_hub *hub;
59 };
60
61 struct tegra_drm_client;
62
63 struct tegra_drm_context {
64         struct tegra_drm_client *client;
65         struct host1x_channel *channel;
66         unsigned int id;
67 };
68
69 struct tegra_drm_client_ops {
70         int (*open_channel)(struct tegra_drm_client *client,
71                             struct tegra_drm_context *context);
72         void (*close_channel)(struct tegra_drm_context *context);
73         int (*is_addr_reg)(struct device *dev, u32 class, u32 offset);
74         int (*is_valid_class)(u32 class);
75         int (*submit)(struct tegra_drm_context *context,
76                       struct drm_tegra_submit *args, struct drm_device *drm,
77                       struct drm_file *file);
78 };
79
80 int tegra_drm_submit(struct tegra_drm_context *context,
81                      struct drm_tegra_submit *args, struct drm_device *drm,
82                      struct drm_file *file);
83
84 struct tegra_drm_client {
85         struct host1x_client base;
86         struct list_head list;
87         struct tegra_drm *drm;
88
89         unsigned int version;
90         const struct tegra_drm_client_ops *ops;
91 };
92
93 static inline struct tegra_drm_client *
94 host1x_to_drm_client(struct host1x_client *client)
95 {
96         return container_of(client, struct tegra_drm_client, base);
97 }
98
99 int tegra_drm_register_client(struct tegra_drm *tegra,
100                               struct tegra_drm_client *client);
101 int tegra_drm_unregister_client(struct tegra_drm *tegra,
102                                 struct tegra_drm_client *client);
103 int host1x_client_iommu_attach(struct host1x_client *client);
104 void host1x_client_iommu_detach(struct host1x_client *client);
105
106 int tegra_drm_init(struct tegra_drm *tegra, struct drm_device *drm);
107 int tegra_drm_exit(struct tegra_drm *tegra);
108
109 void *tegra_drm_alloc(struct tegra_drm *tegra, size_t size, dma_addr_t *iova);
110 void tegra_drm_free(struct tegra_drm *tegra, size_t size, void *virt,
111                     dma_addr_t iova);
112
113 struct cec_notifier;
114
115 struct tegra_output {
116         struct device_node *of_node;
117         struct device *dev;
118
119         struct drm_panel *panel;
120         struct i2c_adapter *ddc;
121         const struct edid *edid;
122         struct cec_notifier *cec;
123         unsigned int hpd_irq;
124         struct gpio_desc *hpd_gpio;
125
126         struct drm_encoder encoder;
127         struct drm_connector connector;
128 };
129
130 static inline struct tegra_output *encoder_to_output(struct drm_encoder *e)
131 {
132         return container_of(e, struct tegra_output, encoder);
133 }
134
135 static inline struct tegra_output *connector_to_output(struct drm_connector *c)
136 {
137         return container_of(c, struct tegra_output, connector);
138 }
139
140 /* from output.c */
141 int tegra_output_probe(struct tegra_output *output);
142 void tegra_output_remove(struct tegra_output *output);
143 int tegra_output_init(struct drm_device *drm, struct tegra_output *output);
144 void tegra_output_exit(struct tegra_output *output);
145 void tegra_output_find_possible_crtcs(struct tegra_output *output,
146                                       struct drm_device *drm);
147 int tegra_output_suspend(struct tegra_output *output);
148 int tegra_output_resume(struct tegra_output *output);
149
150 int tegra_output_connector_get_modes(struct drm_connector *connector);
151 enum drm_connector_status
152 tegra_output_connector_detect(struct drm_connector *connector, bool force);
153 void tegra_output_connector_destroy(struct drm_connector *connector);
154
155 void tegra_output_encoder_destroy(struct drm_encoder *encoder);
156
157 /* from dpaux.c */
158 struct drm_dp_aux *drm_dp_aux_find_by_of_node(struct device_node *np);
159 enum drm_connector_status drm_dp_aux_detect(struct drm_dp_aux *aux);
160 int drm_dp_aux_attach(struct drm_dp_aux *aux, struct tegra_output *output);
161 int drm_dp_aux_detach(struct drm_dp_aux *aux);
162 int drm_dp_aux_enable(struct drm_dp_aux *aux);
163 int drm_dp_aux_disable(struct drm_dp_aux *aux);
164
165 /* from fb.c */
166 struct tegra_bo *tegra_fb_get_plane(struct drm_framebuffer *framebuffer,
167                                     unsigned int index);
168 bool tegra_fb_is_bottom_up(struct drm_framebuffer *framebuffer);
169 int tegra_fb_get_tiling(struct drm_framebuffer *framebuffer,
170                         struct tegra_bo_tiling *tiling);
171 struct drm_framebuffer *tegra_fb_create(struct drm_device *drm,
172                                         struct drm_file *file,
173                                         const struct drm_mode_fb_cmd2 *cmd);
174 int tegra_drm_fb_prepare(struct drm_device *drm);
175 void tegra_drm_fb_free(struct drm_device *drm);
176 int tegra_drm_fb_init(struct drm_device *drm);
177 void tegra_drm_fb_exit(struct drm_device *drm);
178
179 extern struct platform_driver tegra_display_hub_driver;
180 extern struct platform_driver tegra_dc_driver;
181 extern struct platform_driver tegra_hdmi_driver;
182 extern struct platform_driver tegra_dsi_driver;
183 extern struct platform_driver tegra_dpaux_driver;
184 extern struct platform_driver tegra_sor_driver;
185 extern struct platform_driver tegra_gr2d_driver;
186 extern struct platform_driver tegra_gr3d_driver;
187 extern struct platform_driver tegra_vic_driver;
188
189 #endif /* HOST1X_DRM_H */