]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/gpu/drm/tegra/dc.h
drm/tegra: dc: Remove redundant spinlock
[mirror_ubuntu-hirsute-kernel.git] / drivers / gpu / drm / tegra / dc.h
CommitLineData
d8f4a9ed
TR
1/*
2 * Copyright (C) 2012 Avionic Design GmbH
3 * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#ifndef TEGRA_DC_H
11#define TEGRA_DC_H 1
12
2d1c18fb
TR
13#include <linux/host1x.h>
14
15#include <drm/drm_crtc.h>
16
17#include "drm.h"
18
19struct tegra_output;
20
b1415ff2
TR
21struct tegra_dc_state {
22 struct drm_crtc_state base;
23
24 struct clk *clk;
25 unsigned long pclk;
26 unsigned int div;
27
28 u32 planes;
29};
30
31static inline struct tegra_dc_state *to_dc_state(struct drm_crtc_state *state)
32{
33 if (state)
34 return container_of(state, struct tegra_dc_state, base);
35
36 return NULL;
37}
38
2d1c18fb
TR
39struct tegra_dc_stats {
40 unsigned long frames;
41 unsigned long vblank;
42 unsigned long underflow;
43 unsigned long overflow;
44};
45
47307954
TR
46struct tegra_windowgroup_soc {
47 unsigned int index;
48 unsigned int dc;
49 const unsigned int *windows;
50 unsigned int num_windows;
51};
52
2d1c18fb 53struct tegra_dc_soc_info {
7116e9a8 54 bool supports_background_color;
2d1c18fb
TR
55 bool supports_interlacing;
56 bool supports_cursor;
57 bool supports_block_linear;
58 unsigned int pitch_align;
59 bool has_powergate;
60 bool broken_reset;
47307954
TR
61 bool has_nvdisplay;
62 const struct tegra_windowgroup_soc *wgrps;
63 unsigned int num_wgrps;
511c7023
TR
64 const u32 *primary_formats;
65 unsigned int num_primary_formats;
66 const u32 *overlay_formats;
67 unsigned int num_overlay_formats;
2d1c18fb
TR
68};
69
70struct tegra_dc {
71 struct host1x_client client;
72 struct host1x_syncpt *syncpt;
73 struct device *dev;
2d1c18fb
TR
74
75 struct drm_crtc base;
76 unsigned int powergate;
77 int pipe;
78
79 struct clk *clk;
80 struct reset_control *rst;
81 void __iomem *regs;
82 int irq;
83
84 struct tegra_output *rgb;
85
86 struct tegra_dc_stats stats;
87 struct list_head list;
88
89 struct drm_info_list *debugfs_files;
2d1c18fb 90
2d1c18fb
TR
91 const struct tegra_dc_soc_info *soc;
92
93 struct iommu_domain *domain;
94};
95
96static inline struct tegra_dc *
97host1x_client_to_dc(struct host1x_client *client)
98{
99 return container_of(client, struct tegra_dc, client);
100}
101
102static inline struct tegra_dc *to_tegra_dc(struct drm_crtc *crtc)
103{
104 return crtc ? container_of(crtc, struct tegra_dc, base) : NULL;
105}
106
107static inline void tegra_dc_writel(struct tegra_dc *dc, u32 value,
108 unsigned int offset)
109{
110 trace_dc_writel(dc->dev, offset, value);
111 writel(value, dc->regs + (offset << 2));
112}
113
114static inline u32 tegra_dc_readl(struct tegra_dc *dc, unsigned int offset)
115{
116 u32 value = readl(dc->regs + (offset << 2));
117
118 trace_dc_readl(dc->dev, offset, value);
119
120 return value;
121}
122
123struct tegra_dc_window {
124 struct {
125 unsigned int x;
126 unsigned int y;
127 unsigned int w;
128 unsigned int h;
129 } src;
130 struct {
131 unsigned int x;
132 unsigned int y;
133 unsigned int w;
134 unsigned int h;
135 } dst;
136 unsigned int bits_per_pixel;
137 unsigned int stride[2];
138 unsigned long base[3];
139 bool bottom_up;
140
141 struct tegra_bo_tiling tiling;
142 u32 format;
143 u32 swap;
144};
145
146/* from dc.c */
c57997bc 147bool tegra_dc_has_output(struct tegra_dc *dc, struct device *dev);
2d1c18fb
TR
148void tegra_dc_commit(struct tegra_dc *dc);
149int tegra_dc_state_setup_clock(struct tegra_dc *dc,
150 struct drm_crtc_state *crtc_state,
151 struct clk *clk, unsigned long pclk,
152 unsigned int div);
153
154/* from rgb.c */
155int tegra_dc_rgb_probe(struct tegra_dc *dc);
156int tegra_dc_rgb_remove(struct tegra_dc *dc);
157int tegra_dc_rgb_init(struct drm_device *drm, struct tegra_dc *dc);
158int tegra_dc_rgb_exit(struct tegra_dc *dc);
159
d8f4a9ed
TR
160#define DC_CMD_GENERAL_INCR_SYNCPT 0x000
161#define DC_CMD_GENERAL_INCR_SYNCPT_CNTRL 0x001
42e9ce05
TR
162#define SYNCPT_CNTRL_NO_STALL (1 << 8)
163#define SYNCPT_CNTRL_SOFT_RESET (1 << 0)
d8f4a9ed
TR
164#define DC_CMD_GENERAL_INCR_SYNCPT_ERROR 0x002
165#define DC_CMD_WIN_A_INCR_SYNCPT 0x008
166#define DC_CMD_WIN_A_INCR_SYNCPT_CNTRL 0x009
167#define DC_CMD_WIN_A_INCR_SYNCPT_ERROR 0x00a
168#define DC_CMD_WIN_B_INCR_SYNCPT 0x010
169#define DC_CMD_WIN_B_INCR_SYNCPT_CNTRL 0x011
170#define DC_CMD_WIN_B_INCR_SYNCPT_ERROR 0x012
171#define DC_CMD_WIN_C_INCR_SYNCPT 0x018
172#define DC_CMD_WIN_C_INCR_SYNCPT_CNTRL 0x019
173#define DC_CMD_WIN_C_INCR_SYNCPT_ERROR 0x01a
174#define DC_CMD_CONT_SYNCPT_VSYNC 0x028
42e9ce05 175#define SYNCPT_VSYNC_ENABLE (1 << 8)
d8f4a9ed
TR
176#define DC_CMD_DISPLAY_COMMAND_OPTION0 0x031
177#define DC_CMD_DISPLAY_COMMAND 0x032
178#define DISP_CTRL_MODE_STOP (0 << 5)
179#define DISP_CTRL_MODE_C_DISPLAY (1 << 5)
180#define DISP_CTRL_MODE_NC_DISPLAY (2 << 5)
dec72739 181#define DISP_CTRL_MODE_MASK (3 << 5)
d8f4a9ed
TR
182#define DC_CMD_SIGNAL_RAISE 0x033
183#define DC_CMD_DISPLAY_POWER_CONTROL 0x036
184#define PW0_ENABLE (1 << 0)
185#define PW1_ENABLE (1 << 2)
186#define PW2_ENABLE (1 << 4)
187#define PW3_ENABLE (1 << 6)
188#define PW4_ENABLE (1 << 8)
189#define PM0_ENABLE (1 << 16)
190#define PM1_ENABLE (1 << 18)
191
192#define DC_CMD_INT_STATUS 0x037
193#define DC_CMD_INT_MASK 0x038
194#define DC_CMD_INT_ENABLE 0x039
195#define DC_CMD_INT_TYPE 0x03a
196#define DC_CMD_INT_POLARITY 0x03b
47307954
TR
197#define CTXSW_INT (1 << 0)
198#define FRAME_END_INT (1 << 1)
199#define VBLANK_INT (1 << 2)
200#define V_PULSE3_INT (1 << 4)
201#define V_PULSE2_INT (1 << 5)
202#define REGION_CRC_INT (1 << 6)
203#define REG_TMOUT_INT (1 << 7)
204#define WIN_A_UF_INT (1 << 8)
205#define WIN_B_UF_INT (1 << 9)
206#define WIN_C_UF_INT (1 << 10)
207#define MSF_INT (1 << 12)
208#define WIN_A_OF_INT (1 << 14)
209#define WIN_B_OF_INT (1 << 15)
210#define WIN_C_OF_INT (1 << 16)
211#define HEAD_UF_INT (1 << 23)
212#define SD3_BUCKET_WALK_DONE_INT (1 << 24)
213#define DSC_OBUF_UF_INT (1 << 26)
214#define DSC_RBUF_UF_INT (1 << 27)
215#define DSC_BBUF_UF_INT (1 << 28)
216#define DSC_TO_UF_INT (1 << 29)
d8f4a9ed
TR
217
218#define DC_CMD_SIGNAL_RAISE1 0x03c
219#define DC_CMD_SIGNAL_RAISE2 0x03d
220#define DC_CMD_SIGNAL_RAISE3 0x03e
221
222#define DC_CMD_STATE_ACCESS 0x040
3c03c46a
TR
223#define READ_MUX (1 << 0)
224#define WRITE_MUX (1 << 2)
d8f4a9ed
TR
225
226#define DC_CMD_STATE_CONTROL 0x041
227#define GENERAL_ACT_REQ (1 << 0)
228#define WIN_A_ACT_REQ (1 << 1)
229#define WIN_B_ACT_REQ (1 << 2)
230#define WIN_C_ACT_REQ (1 << 3)
e687651b 231#define CURSOR_ACT_REQ (1 << 7)
d8f4a9ed
TR
232#define GENERAL_UPDATE (1 << 8)
233#define WIN_A_UPDATE (1 << 9)
234#define WIN_B_UPDATE (1 << 10)
235#define WIN_C_UPDATE (1 << 11)
e687651b 236#define CURSOR_UPDATE (1 << 15)
c4755fb9
TR
237#define COMMON_ACTREQ (1 << 16)
238#define COMMON_UPDATE (1 << 17)
d8f4a9ed
TR
239#define NC_HOST_TRIG (1 << 24)
240
241#define DC_CMD_DISPLAY_WINDOW_HEADER 0x042
242#define WINDOW_A_SELECT (1 << 4)
243#define WINDOW_B_SELECT (1 << 5)
244#define WINDOW_C_SELECT (1 << 6)
245
246#define DC_CMD_REG_ACT_CONTROL 0x043
247
248#define DC_COM_CRC_CONTROL 0x300
6ca1f62f
TR
249#define DC_COM_CRC_CONTROL_ALWAYS (1 << 3)
250#define DC_COM_CRC_CONTROL_FULL_FRAME (0 << 2)
251#define DC_COM_CRC_CONTROL_ACTIVE_DATA (1 << 2)
252#define DC_COM_CRC_CONTROL_WAIT (1 << 1)
253#define DC_COM_CRC_CONTROL_ENABLE (1 << 0)
d8f4a9ed
TR
254#define DC_COM_CRC_CHECKSUM 0x301
255#define DC_COM_PIN_OUTPUT_ENABLE(x) (0x302 + (x))
256#define DC_COM_PIN_OUTPUT_POLARITY(x) (0x306 + (x))
257#define LVS_OUTPUT_POLARITY_LOW (1 << 28)
258#define LHS_OUTPUT_POLARITY_LOW (1 << 30)
259#define DC_COM_PIN_OUTPUT_DATA(x) (0x30a + (x))
260#define DC_COM_PIN_INPUT_ENABLE(x) (0x30e + (x))
261#define DC_COM_PIN_INPUT_DATA(x) (0x312 + (x))
262#define DC_COM_PIN_OUTPUT_SELECT(x) (0x314 + (x))
263
264#define DC_COM_PIN_MISC_CONTROL 0x31b
265#define DC_COM_PIN_PM0_CONTROL 0x31c
266#define DC_COM_PIN_PM0_DUTY_CYCLE 0x31d
267#define DC_COM_PIN_PM1_CONTROL 0x31e
268#define DC_COM_PIN_PM1_DUTY_CYCLE 0x31f
269
270#define DC_COM_SPI_CONTROL 0x320
271#define DC_COM_SPI_START_BYTE 0x321
272#define DC_COM_HSPI_WRITE_DATA_AB 0x322
273#define DC_COM_HSPI_WRITE_DATA_CD 0x323
274#define DC_COM_HSPI_CS_DC 0x324
275#define DC_COM_SCRATCH_REGISTER_A 0x325
276#define DC_COM_SCRATCH_REGISTER_B 0x326
277#define DC_COM_GPIO_CTRL 0x327
278#define DC_COM_GPIO_DEBOUNCE_COUNTER 0x328
279#define DC_COM_CRC_CHECKSUM_LATCHED 0x329
280
47307954
TR
281#define DC_COM_RG_UNDERFLOW 0x365
282#define UNDERFLOW_MODE_RED (1 << 8)
283#define UNDERFLOW_REPORT_ENABLE (1 << 0)
284
d8f4a9ed 285#define DC_DISP_DISP_SIGNAL_OPTIONS0 0x400
8fd3ffa9
TR
286#define H_PULSE0_ENABLE (1 << 8)
287#define H_PULSE1_ENABLE (1 << 10)
288#define H_PULSE2_ENABLE (1 << 12)
d8f4a9ed
TR
289
290#define DC_DISP_DISP_SIGNAL_OPTIONS1 0x401
291
292#define DC_DISP_DISP_WIN_OPTIONS 0x402
e687651b
TR
293#define HDMI_ENABLE (1 << 30)
294#define DSI_ENABLE (1 << 29)
459cc2c6 295#define SOR1_TIMING_CYA (1 << 27)
e687651b 296#define CURSOR_ENABLE (1 << 16)
d8f4a9ed 297
c57997bc
TR
298#define SOR_ENABLE(x) (1 << (25 + (x)))
299
d8f4a9ed
TR
300#define DC_DISP_DISP_MEM_HIGH_PRIORITY 0x403
301#define CURSOR_THRESHOLD(x) (((x) & 0x03) << 24)
302#define WINDOW_A_THRESHOLD(x) (((x) & 0x7f) << 16)
303#define WINDOW_B_THRESHOLD(x) (((x) & 0x7f) << 8)
304#define WINDOW_C_THRESHOLD(x) (((x) & 0xff) << 0)
305
306#define DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER 0x404
307#define CURSOR_DELAY(x) (((x) & 0x3f) << 24)
308#define WINDOW_A_DELAY(x) (((x) & 0x3f) << 16)
309#define WINDOW_B_DELAY(x) (((x) & 0x3f) << 8)
310#define WINDOW_C_DELAY(x) (((x) & 0x3f) << 0)
311
312#define DC_DISP_DISP_TIMING_OPTIONS 0x405
313#define VSYNC_H_POSITION(x) ((x) & 0xfff)
314
315#define DC_DISP_REF_TO_SYNC 0x406
316#define DC_DISP_SYNC_WIDTH 0x407
317#define DC_DISP_BACK_PORCH 0x408
318#define DC_DISP_ACTIVE 0x409
319#define DC_DISP_FRONT_PORCH 0x40a
320#define DC_DISP_H_PULSE0_CONTROL 0x40b
321#define DC_DISP_H_PULSE0_POSITION_A 0x40c
322#define DC_DISP_H_PULSE0_POSITION_B 0x40d
323#define DC_DISP_H_PULSE0_POSITION_C 0x40e
324#define DC_DISP_H_PULSE0_POSITION_D 0x40f
325#define DC_DISP_H_PULSE1_CONTROL 0x410
326#define DC_DISP_H_PULSE1_POSITION_A 0x411
327#define DC_DISP_H_PULSE1_POSITION_B 0x412
328#define DC_DISP_H_PULSE1_POSITION_C 0x413
329#define DC_DISP_H_PULSE1_POSITION_D 0x414
330#define DC_DISP_H_PULSE2_CONTROL 0x415
331#define DC_DISP_H_PULSE2_POSITION_A 0x416
332#define DC_DISP_H_PULSE2_POSITION_B 0x417
333#define DC_DISP_H_PULSE2_POSITION_C 0x418
334#define DC_DISP_H_PULSE2_POSITION_D 0x419
335#define DC_DISP_V_PULSE0_CONTROL 0x41a
336#define DC_DISP_V_PULSE0_POSITION_A 0x41b
337#define DC_DISP_V_PULSE0_POSITION_B 0x41c
338#define DC_DISP_V_PULSE0_POSITION_C 0x41d
339#define DC_DISP_V_PULSE1_CONTROL 0x41e
340#define DC_DISP_V_PULSE1_POSITION_A 0x41f
341#define DC_DISP_V_PULSE1_POSITION_B 0x420
342#define DC_DISP_V_PULSE1_POSITION_C 0x421
343#define DC_DISP_V_PULSE2_CONTROL 0x422
344#define DC_DISP_V_PULSE2_POSITION_A 0x423
345#define DC_DISP_V_PULSE3_CONTROL 0x424
346#define DC_DISP_V_PULSE3_POSITION_A 0x425
347#define DC_DISP_M0_CONTROL 0x426
348#define DC_DISP_M1_CONTROL 0x427
349#define DC_DISP_DI_CONTROL 0x428
350#define DC_DISP_PP_CONTROL 0x429
351#define DC_DISP_PP_SELECT_A 0x42a
352#define DC_DISP_PP_SELECT_B 0x42b
353#define DC_DISP_PP_SELECT_C 0x42c
354#define DC_DISP_PP_SELECT_D 0x42d
355
356#define PULSE_MODE_NORMAL (0 << 3)
357#define PULSE_MODE_ONE_CLOCK (1 << 3)
358#define PULSE_POLARITY_HIGH (0 << 4)
359#define PULSE_POLARITY_LOW (1 << 4)
360#define PULSE_QUAL_ALWAYS (0 << 6)
361#define PULSE_QUAL_VACTIVE (2 << 6)
362#define PULSE_QUAL_VACTIVE1 (3 << 6)
363#define PULSE_LAST_START_A (0 << 8)
364#define PULSE_LAST_END_A (1 << 8)
365#define PULSE_LAST_START_B (2 << 8)
366#define PULSE_LAST_END_B (3 << 8)
367#define PULSE_LAST_START_C (4 << 8)
368#define PULSE_LAST_END_C (5 << 8)
369#define PULSE_LAST_START_D (6 << 8)
370#define PULSE_LAST_END_D (7 << 8)
371
372#define PULSE_START(x) (((x) & 0xfff) << 0)
373#define PULSE_END(x) (((x) & 0xfff) << 16)
374
375#define DC_DISP_DISP_CLOCK_CONTROL 0x42e
376#define PIXEL_CLK_DIVIDER_PCD1 (0 << 8)
377#define PIXEL_CLK_DIVIDER_PCD1H (1 << 8)
378#define PIXEL_CLK_DIVIDER_PCD2 (2 << 8)
379#define PIXEL_CLK_DIVIDER_PCD3 (3 << 8)
380#define PIXEL_CLK_DIVIDER_PCD4 (4 << 8)
381#define PIXEL_CLK_DIVIDER_PCD6 (5 << 8)
382#define PIXEL_CLK_DIVIDER_PCD8 (6 << 8)
383#define PIXEL_CLK_DIVIDER_PCD9 (7 << 8)
384#define PIXEL_CLK_DIVIDER_PCD12 (8 << 8)
385#define PIXEL_CLK_DIVIDER_PCD16 (9 << 8)
386#define PIXEL_CLK_DIVIDER_PCD18 (10 << 8)
387#define PIXEL_CLK_DIVIDER_PCD24 (11 << 8)
388#define PIXEL_CLK_DIVIDER_PCD13 (12 << 8)
389#define SHIFT_CLK_DIVIDER(x) ((x) & 0xff)
390
391#define DC_DISP_DISP_INTERFACE_CONTROL 0x42f
392#define DISP_DATA_FORMAT_DF1P1C (0 << 0)
393#define DISP_DATA_FORMAT_DF1P2C24B (1 << 0)
394#define DISP_DATA_FORMAT_DF1P2C18B (2 << 0)
395#define DISP_DATA_FORMAT_DF1P2C16B (3 << 0)
396#define DISP_DATA_FORMAT_DF2S (4 << 0)
397#define DISP_DATA_FORMAT_DF3S (5 << 0)
398#define DISP_DATA_FORMAT_DFSPI (6 << 0)
399#define DISP_DATA_FORMAT_DF1P3C24B (7 << 0)
400#define DISP_DATA_FORMAT_DF1P3C18B (8 << 0)
401#define DISP_ALIGNMENT_MSB (0 << 8)
402#define DISP_ALIGNMENT_LSB (1 << 8)
403#define DISP_ORDER_RED_BLUE (0 << 9)
404#define DISP_ORDER_BLUE_RED (1 << 9)
405
406#define DC_DISP_DISP_COLOR_CONTROL 0x430
47307954
TR
407#define BASE_COLOR_SIZE666 ( 0 << 0)
408#define BASE_COLOR_SIZE111 ( 1 << 0)
409#define BASE_COLOR_SIZE222 ( 2 << 0)
410#define BASE_COLOR_SIZE333 ( 3 << 0)
411#define BASE_COLOR_SIZE444 ( 4 << 0)
412#define BASE_COLOR_SIZE555 ( 5 << 0)
413#define BASE_COLOR_SIZE565 ( 6 << 0)
414#define BASE_COLOR_SIZE332 ( 7 << 0)
415#define BASE_COLOR_SIZE888 ( 8 << 0)
416#define BASE_COLOR_SIZE101010 (10 << 0)
417#define BASE_COLOR_SIZE121212 (12 << 0)
459cc2c6 418#define DITHER_CONTROL_MASK (3 << 8)
d8f4a9ed
TR
419#define DITHER_CONTROL_DISABLE (0 << 8)
420#define DITHER_CONTROL_ORDERED (2 << 8)
421#define DITHER_CONTROL_ERRDIFF (3 << 8)
459cc2c6 422#define BASE_COLOR_SIZE_MASK (0xf << 0)
47307954
TR
423#define BASE_COLOR_SIZE_666 ( 0 << 0)
424#define BASE_COLOR_SIZE_111 ( 1 << 0)
425#define BASE_COLOR_SIZE_222 ( 2 << 0)
426#define BASE_COLOR_SIZE_333 ( 3 << 0)
427#define BASE_COLOR_SIZE_444 ( 4 << 0)
428#define BASE_COLOR_SIZE_555 ( 5 << 0)
429#define BASE_COLOR_SIZE_565 ( 6 << 0)
430#define BASE_COLOR_SIZE_332 ( 7 << 0)
431#define BASE_COLOR_SIZE_888 ( 8 << 0)
432#define BASE_COLOR_SIZE_101010 ( 10 << 0)
433#define BASE_COLOR_SIZE_121212 ( 12 << 0)
d8f4a9ed
TR
434
435#define DC_DISP_SHIFT_CLOCK_OPTIONS 0x431
72d30286
TR
436#define SC1_H_QUALIFIER_NONE (1 << 16)
437#define SC0_H_QUALIFIER_NONE (1 << 0)
d8f4a9ed
TR
438
439#define DC_DISP_DATA_ENABLE_OPTIONS 0x432
440#define DE_SELECT_ACTIVE_BLANK (0 << 0)
441#define DE_SELECT_ACTIVE (1 << 0)
442#define DE_SELECT_ACTIVE_IS (2 << 0)
443#define DE_CONTROL_ONECLK (0 << 2)
444#define DE_CONTROL_NORMAL (1 << 2)
445#define DE_CONTROL_EARLY_EXT (2 << 2)
446#define DE_CONTROL_EARLY (3 << 2)
447#define DE_CONTROL_ACTIVE_BLANK (4 << 2)
448
449#define DC_DISP_SERIAL_INTERFACE_OPTIONS 0x433
450#define DC_DISP_LCD_SPI_OPTIONS 0x434
451#define DC_DISP_BORDER_COLOR 0x435
452#define DC_DISP_COLOR_KEY0_LOWER 0x436
453#define DC_DISP_COLOR_KEY0_UPPER 0x437
454#define DC_DISP_COLOR_KEY1_LOWER 0x438
455#define DC_DISP_COLOR_KEY1_UPPER 0x439
456
457#define DC_DISP_CURSOR_FOREGROUND 0x43c
458#define DC_DISP_CURSOR_BACKGROUND 0x43d
459
460#define DC_DISP_CURSOR_START_ADDR 0x43e
e687651b
TR
461#define CURSOR_CLIP_DISPLAY (0 << 28)
462#define CURSOR_CLIP_WIN_A (1 << 28)
463#define CURSOR_CLIP_WIN_B (2 << 28)
464#define CURSOR_CLIP_WIN_C (3 << 28)
465#define CURSOR_SIZE_32x32 (0 << 24)
466#define CURSOR_SIZE_64x64 (1 << 24)
467#define CURSOR_SIZE_128x128 (2 << 24)
468#define CURSOR_SIZE_256x256 (3 << 24)
d8f4a9ed
TR
469#define DC_DISP_CURSOR_START_ADDR_NS 0x43f
470
471#define DC_DISP_CURSOR_POSITION 0x440
472#define DC_DISP_CURSOR_POSITION_NS 0x441
473
474#define DC_DISP_INIT_SEQ_CONTROL 0x442
475#define DC_DISP_SPI_INIT_SEQ_DATA_A 0x443
476#define DC_DISP_SPI_INIT_SEQ_DATA_B 0x444
477#define DC_DISP_SPI_INIT_SEQ_DATA_C 0x445
478#define DC_DISP_SPI_INIT_SEQ_DATA_D 0x446
479
480#define DC_DISP_DC_MCCIF_FIFOCTRL 0x480
481#define DC_DISP_MCCIF_DISPLAY0A_HYST 0x481
482#define DC_DISP_MCCIF_DISPLAY0B_HYST 0x482
483#define DC_DISP_MCCIF_DISPLAY1A_HYST 0x483
484#define DC_DISP_MCCIF_DISPLAY1B_HYST 0x484
485
486#define DC_DISP_DAC_CRT_CTRL 0x4c0
487#define DC_DISP_DISP_MISC_CONTROL 0x4c1
488#define DC_DISP_SD_CONTROL 0x4c2
489#define DC_DISP_SD_CSC_COEFF 0x4c3
490#define DC_DISP_SD_LUT(x) (0x4c4 + (x))
491#define DC_DISP_SD_FLICKER_CONTROL 0x4cd
492#define DC_DISP_DC_PIXEL_COUNT 0x4ce
493#define DC_DISP_SD_HISTOGRAM(x) (0x4cf + (x))
494#define DC_DISP_SD_BL_PARAMETERS 0x4d7
495#define DC_DISP_SD_BL_TF(x) (0x4d8 + (x))
496#define DC_DISP_SD_BL_CONTROL 0x4dc
497#define DC_DISP_SD_HW_K_VALUES 0x4dd
498#define DC_DISP_SD_MAN_K_VALUES 0x4de
499
7116e9a8
TR
500#define DC_DISP_BLEND_BACKGROUND_COLOR 0x4e4
501#define BACKGROUND_COLOR_ALPHA(x) (((x) & 0xff) << 24)
502#define BACKGROUND_COLOR_BLUE(x) (((x) & 0xff) << 16)
503#define BACKGROUND_COLOR_GREEN(x) (((x) & 0xff) << 8)
504#define BACKGROUND_COLOR_RED(x) (((x) & 0xff) << 0)
505
8620fc62
TR
506#define DC_DISP_INTERLACE_CONTROL 0x4e5
507#define INTERLACE_STATUS (1 << 2)
508#define INTERLACE_START (1 << 1)
509#define INTERLACE_ENABLE (1 << 0)
510
e687651b
TR
511#define DC_DISP_CURSOR_START_ADDR_HI 0x4ec
512#define DC_DISP_BLEND_CURSOR_CONTROL 0x4f1
513#define CURSOR_MODE_LEGACY (0 << 24)
514#define CURSOR_MODE_NORMAL (1 << 24)
515#define CURSOR_DST_BLEND_ZERO (0 << 16)
516#define CURSOR_DST_BLEND_K1 (1 << 16)
517#define CURSOR_DST_BLEND_NEG_K1_TIMES_SRC (2 << 16)
518#define CURSOR_DST_BLEND_MASK (3 << 16)
519#define CURSOR_SRC_BLEND_K1 (0 << 8)
520#define CURSOR_SRC_BLEND_K1_TIMES_SRC (1 << 8)
521#define CURSOR_SRC_BLEND_MASK (3 << 8)
522#define CURSOR_ALPHA 0xff
523
c4755fb9
TR
524#define DC_WIN_CORE_ACT_CONTROL 0x50e
525#define VCOUNTER (0 << 0)
526#define HCOUNTER (1 << 0)
527
528#define DC_WIN_CORE_IHUB_WGRP_LATENCY_CTLA 0x543
529#define LATENCY_CTL_MODE_ENABLE (1 << 2)
530
531#define DC_WIN_CORE_IHUB_WGRP_LATENCY_CTLB 0x544
532#define WATERMARK_MASK 0x1fffffff
533
534#define DC_WIN_CORE_PRECOMP_WGRP_PIPE_METER 0x560
535#define PIPE_METER_INT(x) (((x) & 0xff) << 8)
536#define PIPE_METER_FRAC(x) (((x) & 0xff) << 0)
537
538#define DC_WIN_CORE_IHUB_WGRP_POOL_CONFIG 0x561
539#define MEMPOOL_ENTRIES(x) (((x) & 0xffff) << 0)
540
541#define DC_WIN_CORE_IHUB_WGRP_FETCH_METER 0x562
542#define SLOTS(x) (((x) & 0xff) << 0)
543
544#define DC_WIN_CORE_IHUB_LINEBUF_CONFIG 0x563
545#define MODE_TWO_LINES (0 << 14)
546#define MODE_FOUR_LINES (1 << 14)
547
548#define DC_WIN_CORE_IHUB_THREAD_GROUP 0x568
549#define THREAD_NUM_MASK (0x1f << 1)
550#define THREAD_NUM(x) (((x) & 0x1f) << 1)
551#define THREAD_GROUP_ENABLE (1 << 0)
552
f34bc787
TR
553#define DC_WIN_CSC_YOF 0x611
554#define DC_WIN_CSC_KYRGB 0x612
555#define DC_WIN_CSC_KUR 0x613
556#define DC_WIN_CSC_KVR 0x614
557#define DC_WIN_CSC_KUG 0x615
558#define DC_WIN_CSC_KVG 0x616
559#define DC_WIN_CSC_KUB 0x617
560#define DC_WIN_CSC_KVB 0x618
561
d8f4a9ed 562#define DC_WIN_WIN_OPTIONS 0x700
eba66501
TR
563#define H_DIRECTION (1 << 0)
564#define V_DIRECTION (1 << 2)
d8f4a9ed 565#define COLOR_EXPAND (1 << 6)
f34bc787 566#define CSC_ENABLE (1 << 18)
d8f4a9ed
TR
567#define WIN_ENABLE (1 << 30)
568
569#define DC_WIN_BYTE_SWAP 0x701
570#define BYTE_SWAP_NOSWAP (0 << 0)
571#define BYTE_SWAP_SWAP2 (1 << 0)
572#define BYTE_SWAP_SWAP4 (2 << 0)
573#define BYTE_SWAP_SWAP4HW (3 << 0)
574
575#define DC_WIN_BUFFER_CONTROL 0x702
576#define BUFFER_CONTROL_HOST (0 << 0)
577#define BUFFER_CONTROL_VI (1 << 0)
578#define BUFFER_CONTROL_EPP (2 << 0)
579#define BUFFER_CONTROL_MPEGE (3 << 0)
580#define BUFFER_CONTROL_SB2D (4 << 0)
581
582#define DC_WIN_COLOR_DEPTH 0x703
583#define WIN_COLOR_DEPTH_P1 0
584#define WIN_COLOR_DEPTH_P2 1
585#define WIN_COLOR_DEPTH_P4 2
586#define WIN_COLOR_DEPTH_P8 3
587#define WIN_COLOR_DEPTH_B4G4R4A4 4
511c7023 588#define WIN_COLOR_DEPTH_B5G5R5A1 5
d8f4a9ed 589#define WIN_COLOR_DEPTH_B5G6R5 6
511c7023 590#define WIN_COLOR_DEPTH_A1B5G5R5 7
d8f4a9ed
TR
591#define WIN_COLOR_DEPTH_B8G8R8A8 12
592#define WIN_COLOR_DEPTH_R8G8B8A8 13
593#define WIN_COLOR_DEPTH_B6x2G6x2R6x2A8 14
594#define WIN_COLOR_DEPTH_R6x2G6x2B6x2A8 15
595#define WIN_COLOR_DEPTH_YCbCr422 16
596#define WIN_COLOR_DEPTH_YUV422 17
597#define WIN_COLOR_DEPTH_YCbCr420P 18
598#define WIN_COLOR_DEPTH_YUV420P 19
599#define WIN_COLOR_DEPTH_YCbCr422P 20
600#define WIN_COLOR_DEPTH_YUV422P 21
601#define WIN_COLOR_DEPTH_YCbCr422R 22
602#define WIN_COLOR_DEPTH_YUV422R 23
603#define WIN_COLOR_DEPTH_YCbCr422RA 24
604#define WIN_COLOR_DEPTH_YUV422RA 25
511c7023
TR
605#define WIN_COLOR_DEPTH_R4G4B4A4 27
606#define WIN_COLOR_DEPTH_R5G5B5A 28
607#define WIN_COLOR_DEPTH_AR5G5B5 29
608#define WIN_COLOR_DEPTH_B5G5R5X1 30
609#define WIN_COLOR_DEPTH_X1B5G5R5 31
610#define WIN_COLOR_DEPTH_R5G5B5X1 32
611#define WIN_COLOR_DEPTH_X1R5G5B5 33
612#define WIN_COLOR_DEPTH_R5G6B5 34
613#define WIN_COLOR_DEPTH_A8R8G8B8 35
614#define WIN_COLOR_DEPTH_A8B8G8R8 36
7772fdae
TR
615#define WIN_COLOR_DEPTH_B8G8R8X8 37
616#define WIN_COLOR_DEPTH_R8G8B8X8 38
511c7023
TR
617#define WIN_COLOR_DEPTH_X8B8G8R8 65
618#define WIN_COLOR_DEPTH_X8R8G8B8 66
d8f4a9ed
TR
619
620#define DC_WIN_POSITION 0x704
47307954
TR
621#define H_POSITION(x) (((x) & 0x1fff) << 0) /* XXX 0x7fff on Tegra186 */
622#define V_POSITION(x) (((x) & 0x1fff) << 16) /* XXX 0x7fff on Tegra186 */
d8f4a9ed
TR
623
624#define DC_WIN_SIZE 0x705
47307954
TR
625#define H_SIZE(x) (((x) & 0x1fff) << 0) /* XXX 0x7fff on Tegra186 */
626#define V_SIZE(x) (((x) & 0x1fff) << 16) /* XXX 0x7fff on Tegra186 */
d8f4a9ed
TR
627
628#define DC_WIN_PRESCALED_SIZE 0x706
629#define H_PRESCALED_SIZE(x) (((x) & 0x7fff) << 0)
47307954 630#define V_PRESCALED_SIZE(x) (((x) & 0x1fff) << 16) /* XXX 0x7fff on Tegra186 */
d8f4a9ed
TR
631
632#define DC_WIN_H_INITIAL_DDA 0x707
633#define DC_WIN_V_INITIAL_DDA 0x708
634#define DC_WIN_DDA_INC 0x709
635#define H_DDA_INC(x) (((x) & 0xffff) << 0)
636#define V_DDA_INC(x) (((x) & 0xffff) << 16)
637
638#define DC_WIN_LINE_STRIDE 0x70a
639#define DC_WIN_BUF_STRIDE 0x70b
640#define DC_WIN_UV_BUF_STRIDE 0x70c
641#define DC_WIN_BUFFER_ADDR_MODE 0x70d
773af77f
TR
642#define DC_WIN_BUFFER_ADDR_MODE_LINEAR (0 << 0)
643#define DC_WIN_BUFFER_ADDR_MODE_TILE (1 << 0)
644#define DC_WIN_BUFFER_ADDR_MODE_LINEAR_UV (0 << 16)
645#define DC_WIN_BUFFER_ADDR_MODE_TILE_UV (1 << 16)
47307954 646
d8f4a9ed
TR
647#define DC_WIN_DV_CONTROL 0x70e
648
649#define DC_WIN_BLEND_NOKEY 0x70f
650#define DC_WIN_BLEND_1WIN 0x710
651#define DC_WIN_BLEND_2WIN_X 0x711
652#define DC_WIN_BLEND_2WIN_Y 0x712
f34bc787 653#define DC_WIN_BLEND_3WIN_XY 0x713
d8f4a9ed
TR
654
655#define DC_WIN_HP_FETCH_CONTROL 0x714
656
657#define DC_WINBUF_START_ADDR 0x800
658#define DC_WINBUF_START_ADDR_NS 0x801
659#define DC_WINBUF_START_ADDR_U 0x802
660#define DC_WINBUF_START_ADDR_U_NS 0x803
661#define DC_WINBUF_START_ADDR_V 0x804
662#define DC_WINBUF_START_ADDR_V_NS 0x805
663
664#define DC_WINBUF_ADDR_H_OFFSET 0x806
665#define DC_WINBUF_ADDR_H_OFFSET_NS 0x807
666#define DC_WINBUF_ADDR_V_OFFSET 0x808
667#define DC_WINBUF_ADDR_V_OFFSET_NS 0x809
668
669#define DC_WINBUF_UFLOW_STATUS 0x80a
c134f019
TR
670#define DC_WINBUF_SURFACE_KIND 0x80b
671#define DC_WINBUF_SURFACE_KIND_PITCH (0 << 0)
672#define DC_WINBUF_SURFACE_KIND_TILED (1 << 0)
673#define DC_WINBUF_SURFACE_KIND_BLOCK (2 << 0)
674#define DC_WINBUF_SURFACE_KIND_BLOCK_HEIGHT(x) (((x) & 0x7) << 4)
d8f4a9ed 675
31b02cae
TR
676#define DC_WINBUF_START_ADDR_HI 0x80d
677
c4755fb9
TR
678#define DC_WINBUF_CDE_CONTROL 0x82f
679#define ENABLE_SURFACE (1 << 0)
680
d8f4a9ed
TR
681#define DC_WINBUF_AD_UFLOW_STATUS 0xbca
682#define DC_WINBUF_BD_UFLOW_STATUS 0xdca
683#define DC_WINBUF_CD_UFLOW_STATUS 0xfca
684
c4755fb9 685/* Tegra186 and later */
47307954
TR
686#define DC_DISP_CORE_SOR_SET_CONTROL(x) (0x403 + (x))
687#define PROTOCOL_MASK (0xf << 8)
688#define PROTOCOL_SINGLE_TMDS_A (0x1 << 8)
689
c4755fb9
TR
690#define DC_WIN_CORE_WINDOWGROUP_SET_CONTROL 0x702
691#define OWNER_MASK (0xf << 0)
692#define OWNER(x) (((x) & 0xf) << 0)
693
694#define DC_WIN_CROPPED_SIZE 0x706
695
696#define DC_WIN_PLANAR_STORAGE 0x709
697#define PITCH(x) (((x) >> 6) & 0x1fff)
698
699#define DC_WIN_SET_PARAMS 0x70d
700#define CLAMP_BEFORE_BLEND (1 << 15)
701#define DEGAMMA_NONE (0 << 13)
702#define DEGAMMA_SRGB (1 << 13)
703#define DEGAMMA_YUV8_10 (2 << 13)
704#define DEGAMMA_YUV12 (3 << 13)
705#define INPUT_RANGE_BYPASS (0 << 10)
706#define INPUT_RANGE_LIMITED (1 << 10)
707#define INPUT_RANGE_FULL (2 << 10)
708#define COLOR_SPACE_RGB (0 << 8)
709#define COLOR_SPACE_YUV_601 (1 << 8)
710#define COLOR_SPACE_YUV_709 (2 << 8)
711#define COLOR_SPACE_YUV_2020 (3 << 8)
712
713#define DC_WIN_WINDOWGROUP_SET_CONTROL_INPUT_SCALER 0x70e
714#define HORIZONTAL_TAPS_2 (1 << 3)
715#define HORIZONTAL_TAPS_5 (4 << 3)
716#define VERTICAL_TAPS_2 (1 << 0)
717#define VERTICAL_TAPS_5 (4 << 0)
718
719#define DC_WIN_WINDOWGROUP_SET_INPUT_SCALER_USAGE 0x711
720#define INPUT_SCALER_USE422 (1 << 2)
721#define INPUT_SCALER_VBYPASS (1 << 1)
722#define INPUT_SCALER_HBYPASS (1 << 0)
723
724#define DC_WIN_BLEND_LAYER_CONTROL 0x716
725#define COLOR_KEY_NONE (0 << 25)
726#define COLOR_KEY_SRC (1 << 25)
727#define COLOR_KEY_DST (2 << 25)
728#define BLEND_BYPASS (1 << 24)
729#define K2(x) (((x) & 0xff) << 16)
730#define K1(x) (((x) & 0xff) << 8)
731#define WINDOW_LAYER_DEPTH(x) (((x) & 0xff) << 0)
732
733#define DC_WIN_BLEND_MATCH_SELECT 0x717
734#define BLEND_FACTOR_DST_ALPHA_ZERO (0 << 12)
735#define BLEND_FACTOR_DST_ALPHA_ONE (1 << 12)
736#define BLEND_FACTOR_DST_ALPHA_NEG_K1_TIMES_SRC (2 << 12)
737#define BLEND_FACTOR_DST_ALPHA_K2 (3 << 12)
738#define BLEND_FACTOR_SRC_ALPHA_ZERO (0 << 8)
739#define BLEND_FACTOR_SRC_ALPHA_K1 (1 << 8)
740#define BLEND_FACTOR_SRC_ALPHA_K2 (2 << 8)
741#define BLEND_FACTOR_SRC_ALPHA_NEG_K1_TIMES_DST (3 << 8)
742#define BLEND_FACTOR_DST_COLOR_ZERO (0 << 4)
743#define BLEND_FACTOR_DST_COLOR_ONE (1 << 4)
744#define BLEND_FACTOR_DST_COLOR_K1 (2 << 4)
745#define BLEND_FACTOR_DST_COLOR_K2 (3 << 4)
746#define BLEND_FACTOR_DST_COLOR_K1_TIMES_DST (4 << 4)
747#define BLEND_FACTOR_DST_COLOR_NEG_K1_TIMES_DST (5 << 4)
748#define BLEND_FACTOR_DST_COLOR_NEG_K1_TIMES_SRC (6 << 4)
749#define BLEND_FACTOR_DST_COLOR_NEG_K1 (7 << 4)
750#define BLEND_FACTOR_SRC_COLOR_ZERO (0 << 0)
751#define BLEND_FACTOR_SRC_COLOR_ONE (1 << 0)
752#define BLEND_FACTOR_SRC_COLOR_K1 (2 << 0)
753#define BLEND_FACTOR_SRC_COLOR_K1_TIMES_DST (3 << 0)
754#define BLEND_FACTOR_SRC_COLOR_NEG_K1_TIMES_DST (4 << 0)
755#define BLEND_FACTOR_SRC_COLOR_K1_TIMES_SRC (5 << 0)
756
757#define DC_WIN_BLEND_NOMATCH_SELECT 0x718
758
759#define DC_WIN_PRECOMP_WGRP_PARAMS 0x724
760#define SWAP_UV (1 << 0)
761
762#define DC_WIN_WINDOW_SET_CONTROL 0x730
763#define CONTROL_CSC_ENABLE (1 << 5)
764
765#define DC_WINBUF_CROPPED_POINT 0x806
766#define OFFSET_Y(x) (((x) & 0xffff) << 16)
767#define OFFSET_X(x) (((x) & 0xffff) << 0)
768
d8f4a9ed 769#endif /* TEGRA_DC_H */