]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h
Merge tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux
[linux.git] / drivers / gpu / drm / amd / display / amdgpu_dm / amdgpu_dm.h
1 /*
2  * Copyright 2015 Advanced Micro Devices, Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: AMD
23  *
24  */
25
26 #ifndef __AMDGPU_DM_H__
27 #define __AMDGPU_DM_H__
28
29 #include <drm/drm_atomic.h>
30 #include <drm/drm_connector.h>
31 #include <drm/drm_crtc.h>
32 #include <drm/drm_dp_mst_helper.h>
33 #include <drm/drm_plane.h>
34
35 /*
36  * This file contains the definition for amdgpu_display_manager
37  * and its API for amdgpu driver's use.
38  * This component provides all the display related functionality
39  * and this is the only component that calls DAL API.
40  * The API contained here intended for amdgpu driver use.
41  * The API that is called directly from KMS framework is located
42  * in amdgpu_dm_kms.h file
43  */
44
45 #define AMDGPU_DM_MAX_DISPLAY_INDEX 31
46 /*
47 #include "include/amdgpu_dal_power_if.h"
48 #include "amdgpu_dm_irq.h"
49 */
50
51 #include "irq_types.h"
52 #include "signal_types.h"
53
54 /* Forward declarations */
55 struct amdgpu_device;
56 struct drm_device;
57 struct amdgpu_dm_irq_handler_data;
58 struct dc;
59
60 struct common_irq_params {
61         struct amdgpu_device *adev;
62         enum dc_irq_source irq_src;
63 };
64
65 /**
66  * struct irq_list_head - Linked-list for low context IRQ handlers.
67  *
68  * @head: The list_head within &struct handler_data
69  * @work: A work_struct containing the deferred handler work
70  */
71 struct irq_list_head {
72         struct list_head head;
73         /* In case this interrupt needs post-processing, 'work' will be queued*/
74         struct work_struct work;
75 };
76
77 /**
78  * struct dm_compressor_info - Buffer info used by frame buffer compression
79  * @cpu_addr: MMIO cpu addr
80  * @bo_ptr: Pointer to the buffer object
81  * @gpu_addr: MMIO gpu addr
82  */
83 struct dm_comressor_info {
84         void *cpu_addr;
85         struct amdgpu_bo *bo_ptr;
86         uint64_t gpu_addr;
87 };
88
89 /**
90  * struct amdgpu_dm_backlight_caps - Usable range of backlight values from ACPI
91  * @min_input_signal: minimum possible input in range 0-255
92  * @max_input_signal: maximum possible input in range 0-255
93  * @caps_valid: true if these values are from the ACPI interface
94  */
95 struct amdgpu_dm_backlight_caps {
96         int min_input_signal;
97         int max_input_signal;
98         bool caps_valid;
99 };
100
101 /**
102  * struct amdgpu_display_manager - Central amdgpu display manager device
103  *
104  * @dc: Display Core control structure
105  * @adev: AMDGPU base driver structure
106  * @ddev: DRM base driver structure
107  * @display_indexes_num: Max number of display streams supported
108  * @irq_handler_list_table_lock: Synchronizes access to IRQ tables
109  * @backlight_dev: Backlight control device
110  * @cached_state: Caches device atomic state for suspend/resume
111  * @compressor: Frame buffer compression buffer. See &struct dm_comressor_info
112  */
113 struct amdgpu_display_manager {
114
115         struct dc *dc;
116
117         /**
118          * @cgs_device:
119          *
120          * The Common Graphics Services device. It provides an interface for
121          * accessing registers.
122          */
123         struct cgs_device *cgs_device;
124
125         struct amdgpu_device *adev;
126         struct drm_device *ddev;
127         u16 display_indexes_num;
128
129         /**
130          * @atomic_obj
131          *
132          * In combination with &dm_atomic_state it helps manage
133          * global atomic state that doesn't map cleanly into existing
134          * drm resources, like &dc_context.
135          */
136         struct drm_private_obj atomic_obj;
137
138         /**
139          * @dc_lock:
140          *
141          * Guards access to DC functions that can issue register write
142          * sequences.
143          */
144         struct mutex dc_lock;
145
146         /**
147          * @irq_handler_list_low_tab:
148          *
149          * Low priority IRQ handler table.
150          *
151          * It is a n*m table consisting of n IRQ sources, and m handlers per IRQ
152          * source. Low priority IRQ handlers are deferred to a workqueue to be
153          * processed. Hence, they can sleep.
154          *
155          * Note that handlers are called in the same order as they were
156          * registered (FIFO).
157          */
158         struct irq_list_head irq_handler_list_low_tab[DAL_IRQ_SOURCES_NUMBER];
159
160         /**
161          * @irq_handler_list_high_tab:
162          *
163          * High priority IRQ handler table.
164          *
165          * It is a n*m table, same as &irq_handler_list_low_tab. However,
166          * handlers in this table are not deferred and are called immediately.
167          */
168         struct list_head irq_handler_list_high_tab[DAL_IRQ_SOURCES_NUMBER];
169
170         /**
171          * @pflip_params:
172          *
173          * Page flip IRQ parameters, passed to registered handlers when
174          * triggered.
175          */
176         struct common_irq_params
177         pflip_params[DC_IRQ_SOURCE_PFLIP_LAST - DC_IRQ_SOURCE_PFLIP_FIRST + 1];
178
179         /**
180          * @vblank_params:
181          *
182          * Vertical blanking IRQ parameters, passed to registered handlers when
183          * triggered.
184          */
185         struct common_irq_params
186         vblank_params[DC_IRQ_SOURCE_VBLANK6 - DC_IRQ_SOURCE_VBLANK1 + 1];
187
188         /**
189          * @vupdate_params:
190          *
191          * Vertical update IRQ parameters, passed to registered handlers when
192          * triggered.
193          */
194         struct common_irq_params
195         vupdate_params[DC_IRQ_SOURCE_VUPDATE6 - DC_IRQ_SOURCE_VUPDATE1 + 1];
196
197         spinlock_t irq_handler_list_table_lock;
198
199         struct backlight_device *backlight_dev;
200
201         const struct dc_link *backlight_link;
202         struct amdgpu_dm_backlight_caps backlight_caps;
203
204         struct mod_freesync *freesync_module;
205
206         struct drm_atomic_state *cached_state;
207
208         struct dm_comressor_info compressor;
209
210         const struct firmware *fw_dmcu;
211         uint32_t dmcu_fw_version;
212 #ifdef CONFIG_DRM_AMD_DC_DCN2_0
213         /**
214          * gpu_info FW provided soc bounding box struct or 0 if not
215          * available in FW
216          */
217         const struct gpu_info_soc_bounding_box_v1_0 *soc_bounding_box;
218 #endif
219 };
220
221 struct amdgpu_dm_connector {
222
223         struct drm_connector base;
224         uint32_t connector_id;
225
226         /* we need to mind the EDID between detect
227            and get modes due to analog/digital/tvencoder */
228         struct edid *edid;
229
230         /* shared with amdgpu */
231         struct amdgpu_hpd hpd;
232
233         /* number of modes generated from EDID at 'dc_sink' */
234         int num_modes;
235
236         /* The 'old' sink - before an HPD.
237          * The 'current' sink is in dc_link->sink. */
238         struct dc_sink *dc_sink;
239         struct dc_link *dc_link;
240         struct dc_sink *dc_em_sink;
241
242         /* DM only */
243         struct drm_dp_mst_topology_mgr mst_mgr;
244         struct amdgpu_dm_dp_aux dm_dp_aux;
245         struct drm_dp_mst_port *port;
246         struct amdgpu_dm_connector *mst_port;
247         struct amdgpu_encoder *mst_encoder;
248
249         /* TODO see if we can merge with ddc_bus or make a dm_connector */
250         struct amdgpu_i2c_adapter *i2c;
251
252         /* Monitor range limits */
253         int min_vfreq ;
254         int max_vfreq ;
255         int pixel_clock_mhz;
256
257         struct mutex hpd_lock;
258
259         bool fake_enable;
260 #ifdef CONFIG_DEBUG_FS
261         uint32_t debugfs_dpcd_address;
262         uint32_t debugfs_dpcd_size;
263 #endif
264 };
265
266 #define to_amdgpu_dm_connector(x) container_of(x, struct amdgpu_dm_connector, base)
267
268 extern const struct amdgpu_ip_block_version dm_ip_block;
269
270 struct amdgpu_framebuffer;
271 struct amdgpu_display_manager;
272 struct dc_validation_set;
273 struct dc_plane_state;
274
275 struct dm_plane_state {
276         struct drm_plane_state base;
277         struct dc_plane_state *dc_state;
278 };
279
280 struct dm_crtc_state {
281         struct drm_crtc_state base;
282         struct dc_stream_state *stream;
283
284         bool cm_has_degamma;
285         bool cm_is_degamma_srgb;
286
287         int active_planes;
288         bool interrupts_enabled;
289
290         int crc_skip_count;
291         bool crc_enabled;
292
293         bool freesync_timing_changed;
294         bool freesync_vrr_info_changed;
295
296         bool vrr_supported;
297         struct mod_freesync_config freesync_config;
298         struct mod_vrr_params vrr_params;
299         struct dc_info_packet vrr_infopacket;
300
301         int abm_level;
302 };
303
304 #define to_dm_crtc_state(x) container_of(x, struct dm_crtc_state, base)
305
306 struct dm_atomic_state {
307         struct drm_private_state base;
308
309         struct dc_state *context;
310 };
311
312 #define to_dm_atomic_state(x) container_of(x, struct dm_atomic_state, base)
313
314 struct dm_connector_state {
315         struct drm_connector_state base;
316
317         enum amdgpu_rmx_type scaling;
318         uint8_t underscan_vborder;
319         uint8_t underscan_hborder;
320         bool underscan_enable;
321         bool freesync_capable;
322         uint8_t abm_level;
323 };
324
325 #define to_dm_connector_state(x)\
326         container_of((x), struct dm_connector_state, base)
327
328 void amdgpu_dm_connector_funcs_reset(struct drm_connector *connector);
329 struct drm_connector_state *
330 amdgpu_dm_connector_atomic_duplicate_state(struct drm_connector *connector);
331 int amdgpu_dm_connector_atomic_set_property(struct drm_connector *connector,
332                                             struct drm_connector_state *state,
333                                             struct drm_property *property,
334                                             uint64_t val);
335
336 int amdgpu_dm_connector_atomic_get_property(struct drm_connector *connector,
337                                             const struct drm_connector_state *state,
338                                             struct drm_property *property,
339                                             uint64_t *val);
340
341 int amdgpu_dm_get_encoder_crtc_mask(struct amdgpu_device *adev);
342
343 void amdgpu_dm_connector_init_helper(struct amdgpu_display_manager *dm,
344                                      struct amdgpu_dm_connector *aconnector,
345                                      int connector_type,
346                                      struct dc_link *link,
347                                      int link_index);
348
349 enum drm_mode_status amdgpu_dm_connector_mode_valid(struct drm_connector *connector,
350                                    struct drm_display_mode *mode);
351
352 void dm_restore_drm_connector_state(struct drm_device *dev,
353                                     struct drm_connector *connector);
354
355 void amdgpu_dm_update_freesync_caps(struct drm_connector *connector,
356                                         struct edid *edid);
357
358 /* amdgpu_dm_crc.c */
359 #ifdef CONFIG_DEBUG_FS
360 int amdgpu_dm_crtc_set_crc_source(struct drm_crtc *crtc, const char *src_name);
361 int amdgpu_dm_crtc_verify_crc_source(struct drm_crtc *crtc,
362                                      const char *src_name,
363                                      size_t *values_cnt);
364 void amdgpu_dm_crtc_handle_crc_irq(struct drm_crtc *crtc);
365 #else
366 #define amdgpu_dm_crtc_set_crc_source NULL
367 #define amdgpu_dm_crtc_verify_crc_source NULL
368 #define amdgpu_dm_crtc_handle_crc_irq(x)
369 #endif
370
371 #define MAX_COLOR_LUT_ENTRIES 4096
372 /* Legacy gamm LUT users such as X doesn't like large LUT sizes */
373 #define MAX_COLOR_LEGACY_LUT_ENTRIES 256
374
375 void amdgpu_dm_init_color_mod(void);
376 int amdgpu_dm_update_crtc_color_mgmt(struct dm_crtc_state *crtc);
377 int amdgpu_dm_update_plane_color_mgmt(struct dm_crtc_state *crtc,
378                                       struct dc_plane_state *dc_plane_state);
379
380 extern const struct drm_encoder_helper_funcs amdgpu_dm_encoder_helper_funcs;
381
382 #endif /* __AMDGPU_DM_H__ */