dc.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582
  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. #ifndef TEGRA_DC_H
  10. #define TEGRA_DC_H 1
  11. #include <linux/host1x.h>
  12. #include <drm/drm_crtc.h>
  13. #include "drm.h"
  14. struct tegra_output;
  15. struct tegra_dc_stats {
  16. unsigned long frames;
  17. unsigned long vblank;
  18. unsigned long underflow;
  19. unsigned long overflow;
  20. };
  21. struct tegra_dc_soc_info {
  22. bool supports_border_color;
  23. bool supports_interlacing;
  24. bool supports_cursor;
  25. bool supports_block_linear;
  26. unsigned int pitch_align;
  27. bool has_powergate;
  28. bool broken_reset;
  29. };
  30. struct tegra_dc {
  31. struct host1x_client client;
  32. struct host1x_syncpt *syncpt;
  33. struct device *dev;
  34. spinlock_t lock;
  35. struct drm_crtc base;
  36. unsigned int powergate;
  37. int pipe;
  38. struct clk *clk;
  39. struct reset_control *rst;
  40. void __iomem *regs;
  41. int irq;
  42. struct tegra_output *rgb;
  43. struct tegra_dc_stats stats;
  44. struct list_head list;
  45. struct drm_info_list *debugfs_files;
  46. struct drm_minor *minor;
  47. struct dentry *debugfs;
  48. /* page-flip handling */
  49. struct drm_pending_vblank_event *event;
  50. const struct tegra_dc_soc_info *soc;
  51. struct iommu_domain *domain;
  52. };
  53. static inline struct tegra_dc *
  54. host1x_client_to_dc(struct host1x_client *client)
  55. {
  56. return container_of(client, struct tegra_dc, client);
  57. }
  58. static inline struct tegra_dc *to_tegra_dc(struct drm_crtc *crtc)
  59. {
  60. return crtc ? container_of(crtc, struct tegra_dc, base) : NULL;
  61. }
  62. static inline void tegra_dc_writel(struct tegra_dc *dc, u32 value,
  63. unsigned int offset)
  64. {
  65. trace_dc_writel(dc->dev, offset, value);
  66. writel(value, dc->regs + (offset << 2));
  67. }
  68. static inline u32 tegra_dc_readl(struct tegra_dc *dc, unsigned int offset)
  69. {
  70. u32 value = readl(dc->regs + (offset << 2));
  71. trace_dc_readl(dc->dev, offset, value);
  72. return value;
  73. }
  74. struct tegra_dc_window {
  75. struct {
  76. unsigned int x;
  77. unsigned int y;
  78. unsigned int w;
  79. unsigned int h;
  80. } src;
  81. struct {
  82. unsigned int x;
  83. unsigned int y;
  84. unsigned int w;
  85. unsigned int h;
  86. } dst;
  87. unsigned int bits_per_pixel;
  88. unsigned int stride[2];
  89. unsigned long base[3];
  90. bool bottom_up;
  91. struct tegra_bo_tiling tiling;
  92. u32 format;
  93. u32 swap;
  94. };
  95. /* from dc.c */
  96. void tegra_dc_commit(struct tegra_dc *dc);
  97. int tegra_dc_state_setup_clock(struct tegra_dc *dc,
  98. struct drm_crtc_state *crtc_state,
  99. struct clk *clk, unsigned long pclk,
  100. unsigned int div);
  101. /* from rgb.c */
  102. int tegra_dc_rgb_probe(struct tegra_dc *dc);
  103. int tegra_dc_rgb_remove(struct tegra_dc *dc);
  104. int tegra_dc_rgb_init(struct drm_device *drm, struct tegra_dc *dc);
  105. int tegra_dc_rgb_exit(struct tegra_dc *dc);
  106. #define DC_CMD_GENERAL_INCR_SYNCPT 0x000
  107. #define DC_CMD_GENERAL_INCR_SYNCPT_CNTRL 0x001
  108. #define SYNCPT_CNTRL_NO_STALL (1 << 8)
  109. #define SYNCPT_CNTRL_SOFT_RESET (1 << 0)
  110. #define DC_CMD_GENERAL_INCR_SYNCPT_ERROR 0x002
  111. #define DC_CMD_WIN_A_INCR_SYNCPT 0x008
  112. #define DC_CMD_WIN_A_INCR_SYNCPT_CNTRL 0x009
  113. #define DC_CMD_WIN_A_INCR_SYNCPT_ERROR 0x00a
  114. #define DC_CMD_WIN_B_INCR_SYNCPT 0x010
  115. #define DC_CMD_WIN_B_INCR_SYNCPT_CNTRL 0x011
  116. #define DC_CMD_WIN_B_INCR_SYNCPT_ERROR 0x012
  117. #define DC_CMD_WIN_C_INCR_SYNCPT 0x018
  118. #define DC_CMD_WIN_C_INCR_SYNCPT_CNTRL 0x019
  119. #define DC_CMD_WIN_C_INCR_SYNCPT_ERROR 0x01a
  120. #define DC_CMD_CONT_SYNCPT_VSYNC 0x028
  121. #define SYNCPT_VSYNC_ENABLE (1 << 8)
  122. #define DC_CMD_DISPLAY_COMMAND_OPTION0 0x031
  123. #define DC_CMD_DISPLAY_COMMAND 0x032
  124. #define DISP_CTRL_MODE_STOP (0 << 5)
  125. #define DISP_CTRL_MODE_C_DISPLAY (1 << 5)
  126. #define DISP_CTRL_MODE_NC_DISPLAY (2 << 5)
  127. #define DISP_CTRL_MODE_MASK (3 << 5)
  128. #define DC_CMD_SIGNAL_RAISE 0x033
  129. #define DC_CMD_DISPLAY_POWER_CONTROL 0x036
  130. #define PW0_ENABLE (1 << 0)
  131. #define PW1_ENABLE (1 << 2)
  132. #define PW2_ENABLE (1 << 4)
  133. #define PW3_ENABLE (1 << 6)
  134. #define PW4_ENABLE (1 << 8)
  135. #define PM0_ENABLE (1 << 16)
  136. #define PM1_ENABLE (1 << 18)
  137. #define DC_CMD_INT_STATUS 0x037
  138. #define DC_CMD_INT_MASK 0x038
  139. #define DC_CMD_INT_ENABLE 0x039
  140. #define DC_CMD_INT_TYPE 0x03a
  141. #define DC_CMD_INT_POLARITY 0x03b
  142. #define CTXSW_INT (1 << 0)
  143. #define FRAME_END_INT (1 << 1)
  144. #define VBLANK_INT (1 << 2)
  145. #define WIN_A_UF_INT (1 << 8)
  146. #define WIN_B_UF_INT (1 << 9)
  147. #define WIN_C_UF_INT (1 << 10)
  148. #define WIN_A_OF_INT (1 << 14)
  149. #define WIN_B_OF_INT (1 << 15)
  150. #define WIN_C_OF_INT (1 << 16)
  151. #define DC_CMD_SIGNAL_RAISE1 0x03c
  152. #define DC_CMD_SIGNAL_RAISE2 0x03d
  153. #define DC_CMD_SIGNAL_RAISE3 0x03e
  154. #define DC_CMD_STATE_ACCESS 0x040
  155. #define READ_MUX (1 << 0)
  156. #define WRITE_MUX (1 << 2)
  157. #define DC_CMD_STATE_CONTROL 0x041
  158. #define GENERAL_ACT_REQ (1 << 0)
  159. #define WIN_A_ACT_REQ (1 << 1)
  160. #define WIN_B_ACT_REQ (1 << 2)
  161. #define WIN_C_ACT_REQ (1 << 3)
  162. #define CURSOR_ACT_REQ (1 << 7)
  163. #define GENERAL_UPDATE (1 << 8)
  164. #define WIN_A_UPDATE (1 << 9)
  165. #define WIN_B_UPDATE (1 << 10)
  166. #define WIN_C_UPDATE (1 << 11)
  167. #define CURSOR_UPDATE (1 << 15)
  168. #define NC_HOST_TRIG (1 << 24)
  169. #define DC_CMD_DISPLAY_WINDOW_HEADER 0x042
  170. #define WINDOW_A_SELECT (1 << 4)
  171. #define WINDOW_B_SELECT (1 << 5)
  172. #define WINDOW_C_SELECT (1 << 6)
  173. #define DC_CMD_REG_ACT_CONTROL 0x043
  174. #define DC_COM_CRC_CONTROL 0x300
  175. #define DC_COM_CRC_CONTROL_ALWAYS (1 << 3)
  176. #define DC_COM_CRC_CONTROL_FULL_FRAME (0 << 2)
  177. #define DC_COM_CRC_CONTROL_ACTIVE_DATA (1 << 2)
  178. #define DC_COM_CRC_CONTROL_WAIT (1 << 1)
  179. #define DC_COM_CRC_CONTROL_ENABLE (1 << 0)
  180. #define DC_COM_CRC_CHECKSUM 0x301
  181. #define DC_COM_PIN_OUTPUT_ENABLE(x) (0x302 + (x))
  182. #define DC_COM_PIN_OUTPUT_POLARITY(x) (0x306 + (x))
  183. #define LVS_OUTPUT_POLARITY_LOW (1 << 28)
  184. #define LHS_OUTPUT_POLARITY_LOW (1 << 30)
  185. #define DC_COM_PIN_OUTPUT_DATA(x) (0x30a + (x))
  186. #define DC_COM_PIN_INPUT_ENABLE(x) (0x30e + (x))
  187. #define DC_COM_PIN_INPUT_DATA(x) (0x312 + (x))
  188. #define DC_COM_PIN_OUTPUT_SELECT(x) (0x314 + (x))
  189. #define DC_COM_PIN_MISC_CONTROL 0x31b
  190. #define DC_COM_PIN_PM0_CONTROL 0x31c
  191. #define DC_COM_PIN_PM0_DUTY_CYCLE 0x31d
  192. #define DC_COM_PIN_PM1_CONTROL 0x31e
  193. #define DC_COM_PIN_PM1_DUTY_CYCLE 0x31f
  194. #define DC_COM_SPI_CONTROL 0x320
  195. #define DC_COM_SPI_START_BYTE 0x321
  196. #define DC_COM_HSPI_WRITE_DATA_AB 0x322
  197. #define DC_COM_HSPI_WRITE_DATA_CD 0x323
  198. #define DC_COM_HSPI_CS_DC 0x324
  199. #define DC_COM_SCRATCH_REGISTER_A 0x325
  200. #define DC_COM_SCRATCH_REGISTER_B 0x326
  201. #define DC_COM_GPIO_CTRL 0x327
  202. #define DC_COM_GPIO_DEBOUNCE_COUNTER 0x328
  203. #define DC_COM_CRC_CHECKSUM_LATCHED 0x329
  204. #define DC_DISP_DISP_SIGNAL_OPTIONS0 0x400
  205. #define H_PULSE0_ENABLE (1 << 8)
  206. #define H_PULSE1_ENABLE (1 << 10)
  207. #define H_PULSE2_ENABLE (1 << 12)
  208. #define DC_DISP_DISP_SIGNAL_OPTIONS1 0x401
  209. #define DC_DISP_DISP_WIN_OPTIONS 0x402
  210. #define HDMI_ENABLE (1 << 30)
  211. #define DSI_ENABLE (1 << 29)
  212. #define SOR1_TIMING_CYA (1 << 27)
  213. #define SOR1_ENABLE (1 << 26)
  214. #define SOR_ENABLE (1 << 25)
  215. #define CURSOR_ENABLE (1 << 16)
  216. #define DC_DISP_DISP_MEM_HIGH_PRIORITY 0x403
  217. #define CURSOR_THRESHOLD(x) (((x) & 0x03) << 24)
  218. #define WINDOW_A_THRESHOLD(x) (((x) & 0x7f) << 16)
  219. #define WINDOW_B_THRESHOLD(x) (((x) & 0x7f) << 8)
  220. #define WINDOW_C_THRESHOLD(x) (((x) & 0xff) << 0)
  221. #define DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER 0x404
  222. #define CURSOR_DELAY(x) (((x) & 0x3f) << 24)
  223. #define WINDOW_A_DELAY(x) (((x) & 0x3f) << 16)
  224. #define WINDOW_B_DELAY(x) (((x) & 0x3f) << 8)
  225. #define WINDOW_C_DELAY(x) (((x) & 0x3f) << 0)
  226. #define DC_DISP_DISP_TIMING_OPTIONS 0x405
  227. #define VSYNC_H_POSITION(x) ((x) & 0xfff)
  228. #define DC_DISP_REF_TO_SYNC 0x406
  229. #define DC_DISP_SYNC_WIDTH 0x407
  230. #define DC_DISP_BACK_PORCH 0x408
  231. #define DC_DISP_ACTIVE 0x409
  232. #define DC_DISP_FRONT_PORCH 0x40a
  233. #define DC_DISP_H_PULSE0_CONTROL 0x40b
  234. #define DC_DISP_H_PULSE0_POSITION_A 0x40c
  235. #define DC_DISP_H_PULSE0_POSITION_B 0x40d
  236. #define DC_DISP_H_PULSE0_POSITION_C 0x40e
  237. #define DC_DISP_H_PULSE0_POSITION_D 0x40f
  238. #define DC_DISP_H_PULSE1_CONTROL 0x410
  239. #define DC_DISP_H_PULSE1_POSITION_A 0x411
  240. #define DC_DISP_H_PULSE1_POSITION_B 0x412
  241. #define DC_DISP_H_PULSE1_POSITION_C 0x413
  242. #define DC_DISP_H_PULSE1_POSITION_D 0x414
  243. #define DC_DISP_H_PULSE2_CONTROL 0x415
  244. #define DC_DISP_H_PULSE2_POSITION_A 0x416
  245. #define DC_DISP_H_PULSE2_POSITION_B 0x417
  246. #define DC_DISP_H_PULSE2_POSITION_C 0x418
  247. #define DC_DISP_H_PULSE2_POSITION_D 0x419
  248. #define DC_DISP_V_PULSE0_CONTROL 0x41a
  249. #define DC_DISP_V_PULSE0_POSITION_A 0x41b
  250. #define DC_DISP_V_PULSE0_POSITION_B 0x41c
  251. #define DC_DISP_V_PULSE0_POSITION_C 0x41d
  252. #define DC_DISP_V_PULSE1_CONTROL 0x41e
  253. #define DC_DISP_V_PULSE1_POSITION_A 0x41f
  254. #define DC_DISP_V_PULSE1_POSITION_B 0x420
  255. #define DC_DISP_V_PULSE1_POSITION_C 0x421
  256. #define DC_DISP_V_PULSE2_CONTROL 0x422
  257. #define DC_DISP_V_PULSE2_POSITION_A 0x423
  258. #define DC_DISP_V_PULSE3_CONTROL 0x424
  259. #define DC_DISP_V_PULSE3_POSITION_A 0x425
  260. #define DC_DISP_M0_CONTROL 0x426
  261. #define DC_DISP_M1_CONTROL 0x427
  262. #define DC_DISP_DI_CONTROL 0x428
  263. #define DC_DISP_PP_CONTROL 0x429
  264. #define DC_DISP_PP_SELECT_A 0x42a
  265. #define DC_DISP_PP_SELECT_B 0x42b
  266. #define DC_DISP_PP_SELECT_C 0x42c
  267. #define DC_DISP_PP_SELECT_D 0x42d
  268. #define PULSE_MODE_NORMAL (0 << 3)
  269. #define PULSE_MODE_ONE_CLOCK (1 << 3)
  270. #define PULSE_POLARITY_HIGH (0 << 4)
  271. #define PULSE_POLARITY_LOW (1 << 4)
  272. #define PULSE_QUAL_ALWAYS (0 << 6)
  273. #define PULSE_QUAL_VACTIVE (2 << 6)
  274. #define PULSE_QUAL_VACTIVE1 (3 << 6)
  275. #define PULSE_LAST_START_A (0 << 8)
  276. #define PULSE_LAST_END_A (1 << 8)
  277. #define PULSE_LAST_START_B (2 << 8)
  278. #define PULSE_LAST_END_B (3 << 8)
  279. #define PULSE_LAST_START_C (4 << 8)
  280. #define PULSE_LAST_END_C (5 << 8)
  281. #define PULSE_LAST_START_D (6 << 8)
  282. #define PULSE_LAST_END_D (7 << 8)
  283. #define PULSE_START(x) (((x) & 0xfff) << 0)
  284. #define PULSE_END(x) (((x) & 0xfff) << 16)
  285. #define DC_DISP_DISP_CLOCK_CONTROL 0x42e
  286. #define PIXEL_CLK_DIVIDER_PCD1 (0 << 8)
  287. #define PIXEL_CLK_DIVIDER_PCD1H (1 << 8)
  288. #define PIXEL_CLK_DIVIDER_PCD2 (2 << 8)
  289. #define PIXEL_CLK_DIVIDER_PCD3 (3 << 8)
  290. #define PIXEL_CLK_DIVIDER_PCD4 (4 << 8)
  291. #define PIXEL_CLK_DIVIDER_PCD6 (5 << 8)
  292. #define PIXEL_CLK_DIVIDER_PCD8 (6 << 8)
  293. #define PIXEL_CLK_DIVIDER_PCD9 (7 << 8)
  294. #define PIXEL_CLK_DIVIDER_PCD12 (8 << 8)
  295. #define PIXEL_CLK_DIVIDER_PCD16 (9 << 8)
  296. #define PIXEL_CLK_DIVIDER_PCD18 (10 << 8)
  297. #define PIXEL_CLK_DIVIDER_PCD24 (11 << 8)
  298. #define PIXEL_CLK_DIVIDER_PCD13 (12 << 8)
  299. #define SHIFT_CLK_DIVIDER(x) ((x) & 0xff)
  300. #define DC_DISP_DISP_INTERFACE_CONTROL 0x42f
  301. #define DISP_DATA_FORMAT_DF1P1C (0 << 0)
  302. #define DISP_DATA_FORMAT_DF1P2C24B (1 << 0)
  303. #define DISP_DATA_FORMAT_DF1P2C18B (2 << 0)
  304. #define DISP_DATA_FORMAT_DF1P2C16B (3 << 0)
  305. #define DISP_DATA_FORMAT_DF2S (4 << 0)
  306. #define DISP_DATA_FORMAT_DF3S (5 << 0)
  307. #define DISP_DATA_FORMAT_DFSPI (6 << 0)
  308. #define DISP_DATA_FORMAT_DF1P3C24B (7 << 0)
  309. #define DISP_DATA_FORMAT_DF1P3C18B (8 << 0)
  310. #define DISP_ALIGNMENT_MSB (0 << 8)
  311. #define DISP_ALIGNMENT_LSB (1 << 8)
  312. #define DISP_ORDER_RED_BLUE (0 << 9)
  313. #define DISP_ORDER_BLUE_RED (1 << 9)
  314. #define DC_DISP_DISP_COLOR_CONTROL 0x430
  315. #define BASE_COLOR_SIZE666 (0 << 0)
  316. #define BASE_COLOR_SIZE111 (1 << 0)
  317. #define BASE_COLOR_SIZE222 (2 << 0)
  318. #define BASE_COLOR_SIZE333 (3 << 0)
  319. #define BASE_COLOR_SIZE444 (4 << 0)
  320. #define BASE_COLOR_SIZE555 (5 << 0)
  321. #define BASE_COLOR_SIZE565 (6 << 0)
  322. #define BASE_COLOR_SIZE332 (7 << 0)
  323. #define BASE_COLOR_SIZE888 (8 << 0)
  324. #define DITHER_CONTROL_MASK (3 << 8)
  325. #define DITHER_CONTROL_DISABLE (0 << 8)
  326. #define DITHER_CONTROL_ORDERED (2 << 8)
  327. #define DITHER_CONTROL_ERRDIFF (3 << 8)
  328. #define BASE_COLOR_SIZE_MASK (0xf << 0)
  329. #define BASE_COLOR_SIZE_666 (0 << 0)
  330. #define BASE_COLOR_SIZE_111 (1 << 0)
  331. #define BASE_COLOR_SIZE_222 (2 << 0)
  332. #define BASE_COLOR_SIZE_333 (3 << 0)
  333. #define BASE_COLOR_SIZE_444 (4 << 0)
  334. #define BASE_COLOR_SIZE_555 (5 << 0)
  335. #define BASE_COLOR_SIZE_565 (6 << 0)
  336. #define BASE_COLOR_SIZE_332 (7 << 0)
  337. #define BASE_COLOR_SIZE_888 (8 << 0)
  338. #define DC_DISP_SHIFT_CLOCK_OPTIONS 0x431
  339. #define SC1_H_QUALIFIER_NONE (1 << 16)
  340. #define SC0_H_QUALIFIER_NONE (1 << 0)
  341. #define DC_DISP_DATA_ENABLE_OPTIONS 0x432
  342. #define DE_SELECT_ACTIVE_BLANK (0 << 0)
  343. #define DE_SELECT_ACTIVE (1 << 0)
  344. #define DE_SELECT_ACTIVE_IS (2 << 0)
  345. #define DE_CONTROL_ONECLK (0 << 2)
  346. #define DE_CONTROL_NORMAL (1 << 2)
  347. #define DE_CONTROL_EARLY_EXT (2 << 2)
  348. #define DE_CONTROL_EARLY (3 << 2)
  349. #define DE_CONTROL_ACTIVE_BLANK (4 << 2)
  350. #define DC_DISP_SERIAL_INTERFACE_OPTIONS 0x433
  351. #define DC_DISP_LCD_SPI_OPTIONS 0x434
  352. #define DC_DISP_BORDER_COLOR 0x435
  353. #define DC_DISP_COLOR_KEY0_LOWER 0x436
  354. #define DC_DISP_COLOR_KEY0_UPPER 0x437
  355. #define DC_DISP_COLOR_KEY1_LOWER 0x438
  356. #define DC_DISP_COLOR_KEY1_UPPER 0x439
  357. #define DC_DISP_CURSOR_FOREGROUND 0x43c
  358. #define DC_DISP_CURSOR_BACKGROUND 0x43d
  359. #define DC_DISP_CURSOR_START_ADDR 0x43e
  360. #define CURSOR_CLIP_DISPLAY (0 << 28)
  361. #define CURSOR_CLIP_WIN_A (1 << 28)
  362. #define CURSOR_CLIP_WIN_B (2 << 28)
  363. #define CURSOR_CLIP_WIN_C (3 << 28)
  364. #define CURSOR_SIZE_32x32 (0 << 24)
  365. #define CURSOR_SIZE_64x64 (1 << 24)
  366. #define CURSOR_SIZE_128x128 (2 << 24)
  367. #define CURSOR_SIZE_256x256 (3 << 24)
  368. #define DC_DISP_CURSOR_START_ADDR_NS 0x43f
  369. #define DC_DISP_CURSOR_POSITION 0x440
  370. #define DC_DISP_CURSOR_POSITION_NS 0x441
  371. #define DC_DISP_INIT_SEQ_CONTROL 0x442
  372. #define DC_DISP_SPI_INIT_SEQ_DATA_A 0x443
  373. #define DC_DISP_SPI_INIT_SEQ_DATA_B 0x444
  374. #define DC_DISP_SPI_INIT_SEQ_DATA_C 0x445
  375. #define DC_DISP_SPI_INIT_SEQ_DATA_D 0x446
  376. #define DC_DISP_DC_MCCIF_FIFOCTRL 0x480
  377. #define DC_DISP_MCCIF_DISPLAY0A_HYST 0x481
  378. #define DC_DISP_MCCIF_DISPLAY0B_HYST 0x482
  379. #define DC_DISP_MCCIF_DISPLAY1A_HYST 0x483
  380. #define DC_DISP_MCCIF_DISPLAY1B_HYST 0x484
  381. #define DC_DISP_DAC_CRT_CTRL 0x4c0
  382. #define DC_DISP_DISP_MISC_CONTROL 0x4c1
  383. #define DC_DISP_SD_CONTROL 0x4c2
  384. #define DC_DISP_SD_CSC_COEFF 0x4c3
  385. #define DC_DISP_SD_LUT(x) (0x4c4 + (x))
  386. #define DC_DISP_SD_FLICKER_CONTROL 0x4cd
  387. #define DC_DISP_DC_PIXEL_COUNT 0x4ce
  388. #define DC_DISP_SD_HISTOGRAM(x) (0x4cf + (x))
  389. #define DC_DISP_SD_BL_PARAMETERS 0x4d7
  390. #define DC_DISP_SD_BL_TF(x) (0x4d8 + (x))
  391. #define DC_DISP_SD_BL_CONTROL 0x4dc
  392. #define DC_DISP_SD_HW_K_VALUES 0x4dd
  393. #define DC_DISP_SD_MAN_K_VALUES 0x4de
  394. #define DC_DISP_INTERLACE_CONTROL 0x4e5
  395. #define INTERLACE_STATUS (1 << 2)
  396. #define INTERLACE_START (1 << 1)
  397. #define INTERLACE_ENABLE (1 << 0)
  398. #define DC_DISP_CURSOR_START_ADDR_HI 0x4ec
  399. #define DC_DISP_BLEND_CURSOR_CONTROL 0x4f1
  400. #define CURSOR_MODE_LEGACY (0 << 24)
  401. #define CURSOR_MODE_NORMAL (1 << 24)
  402. #define CURSOR_DST_BLEND_ZERO (0 << 16)
  403. #define CURSOR_DST_BLEND_K1 (1 << 16)
  404. #define CURSOR_DST_BLEND_NEG_K1_TIMES_SRC (2 << 16)
  405. #define CURSOR_DST_BLEND_MASK (3 << 16)
  406. #define CURSOR_SRC_BLEND_K1 (0 << 8)
  407. #define CURSOR_SRC_BLEND_K1_TIMES_SRC (1 << 8)
  408. #define CURSOR_SRC_BLEND_MASK (3 << 8)
  409. #define CURSOR_ALPHA 0xff
  410. #define DC_WIN_CSC_YOF 0x611
  411. #define DC_WIN_CSC_KYRGB 0x612
  412. #define DC_WIN_CSC_KUR 0x613
  413. #define DC_WIN_CSC_KVR 0x614
  414. #define DC_WIN_CSC_KUG 0x615
  415. #define DC_WIN_CSC_KVG 0x616
  416. #define DC_WIN_CSC_KUB 0x617
  417. #define DC_WIN_CSC_KVB 0x618
  418. #define DC_WIN_WIN_OPTIONS 0x700
  419. #define H_DIRECTION (1 << 0)
  420. #define V_DIRECTION (1 << 2)
  421. #define COLOR_EXPAND (1 << 6)
  422. #define CSC_ENABLE (1 << 18)
  423. #define WIN_ENABLE (1 << 30)
  424. #define DC_WIN_BYTE_SWAP 0x701
  425. #define BYTE_SWAP_NOSWAP (0 << 0)
  426. #define BYTE_SWAP_SWAP2 (1 << 0)
  427. #define BYTE_SWAP_SWAP4 (2 << 0)
  428. #define BYTE_SWAP_SWAP4HW (3 << 0)
  429. #define DC_WIN_BUFFER_CONTROL 0x702
  430. #define BUFFER_CONTROL_HOST (0 << 0)
  431. #define BUFFER_CONTROL_VI (1 << 0)
  432. #define BUFFER_CONTROL_EPP (2 << 0)
  433. #define BUFFER_CONTROL_MPEGE (3 << 0)
  434. #define BUFFER_CONTROL_SB2D (4 << 0)
  435. #define DC_WIN_COLOR_DEPTH 0x703
  436. #define WIN_COLOR_DEPTH_P1 0
  437. #define WIN_COLOR_DEPTH_P2 1
  438. #define WIN_COLOR_DEPTH_P4 2
  439. #define WIN_COLOR_DEPTH_P8 3
  440. #define WIN_COLOR_DEPTH_B4G4R4A4 4
  441. #define WIN_COLOR_DEPTH_B5G5R5A 5
  442. #define WIN_COLOR_DEPTH_B5G6R5 6
  443. #define WIN_COLOR_DEPTH_AB5G5R5 7
  444. #define WIN_COLOR_DEPTH_B8G8R8A8 12
  445. #define WIN_COLOR_DEPTH_R8G8B8A8 13
  446. #define WIN_COLOR_DEPTH_B6x2G6x2R6x2A8 14
  447. #define WIN_COLOR_DEPTH_R6x2G6x2B6x2A8 15
  448. #define WIN_COLOR_DEPTH_YCbCr422 16
  449. #define WIN_COLOR_DEPTH_YUV422 17
  450. #define WIN_COLOR_DEPTH_YCbCr420P 18
  451. #define WIN_COLOR_DEPTH_YUV420P 19
  452. #define WIN_COLOR_DEPTH_YCbCr422P 20
  453. #define WIN_COLOR_DEPTH_YUV422P 21
  454. #define WIN_COLOR_DEPTH_YCbCr422R 22
  455. #define WIN_COLOR_DEPTH_YUV422R 23
  456. #define WIN_COLOR_DEPTH_YCbCr422RA 24
  457. #define WIN_COLOR_DEPTH_YUV422RA 25
  458. #define DC_WIN_POSITION 0x704
  459. #define H_POSITION(x) (((x) & 0x1fff) << 0)
  460. #define V_POSITION(x) (((x) & 0x1fff) << 16)
  461. #define DC_WIN_SIZE 0x705
  462. #define H_SIZE(x) (((x) & 0x1fff) << 0)
  463. #define V_SIZE(x) (((x) & 0x1fff) << 16)
  464. #define DC_WIN_PRESCALED_SIZE 0x706
  465. #define H_PRESCALED_SIZE(x) (((x) & 0x7fff) << 0)
  466. #define V_PRESCALED_SIZE(x) (((x) & 0x1fff) << 16)
  467. #define DC_WIN_H_INITIAL_DDA 0x707
  468. #define DC_WIN_V_INITIAL_DDA 0x708
  469. #define DC_WIN_DDA_INC 0x709
  470. #define H_DDA_INC(x) (((x) & 0xffff) << 0)
  471. #define V_DDA_INC(x) (((x) & 0xffff) << 16)
  472. #define DC_WIN_LINE_STRIDE 0x70a
  473. #define DC_WIN_BUF_STRIDE 0x70b
  474. #define DC_WIN_UV_BUF_STRIDE 0x70c
  475. #define DC_WIN_BUFFER_ADDR_MODE 0x70d
  476. #define DC_WIN_BUFFER_ADDR_MODE_LINEAR (0 << 0)
  477. #define DC_WIN_BUFFER_ADDR_MODE_TILE (1 << 0)
  478. #define DC_WIN_BUFFER_ADDR_MODE_LINEAR_UV (0 << 16)
  479. #define DC_WIN_BUFFER_ADDR_MODE_TILE_UV (1 << 16)
  480. #define DC_WIN_DV_CONTROL 0x70e
  481. #define DC_WIN_BLEND_NOKEY 0x70f
  482. #define DC_WIN_BLEND_1WIN 0x710
  483. #define DC_WIN_BLEND_2WIN_X 0x711
  484. #define DC_WIN_BLEND_2WIN_Y 0x712
  485. #define DC_WIN_BLEND_3WIN_XY 0x713
  486. #define DC_WIN_HP_FETCH_CONTROL 0x714
  487. #define DC_WINBUF_START_ADDR 0x800
  488. #define DC_WINBUF_START_ADDR_NS 0x801
  489. #define DC_WINBUF_START_ADDR_U 0x802
  490. #define DC_WINBUF_START_ADDR_U_NS 0x803
  491. #define DC_WINBUF_START_ADDR_V 0x804
  492. #define DC_WINBUF_START_ADDR_V_NS 0x805
  493. #define DC_WINBUF_ADDR_H_OFFSET 0x806
  494. #define DC_WINBUF_ADDR_H_OFFSET_NS 0x807
  495. #define DC_WINBUF_ADDR_V_OFFSET 0x808
  496. #define DC_WINBUF_ADDR_V_OFFSET_NS 0x809
  497. #define DC_WINBUF_UFLOW_STATUS 0x80a
  498. #define DC_WINBUF_SURFACE_KIND 0x80b
  499. #define DC_WINBUF_SURFACE_KIND_PITCH (0 << 0)
  500. #define DC_WINBUF_SURFACE_KIND_TILED (1 << 0)
  501. #define DC_WINBUF_SURFACE_KIND_BLOCK (2 << 0)
  502. #define DC_WINBUF_SURFACE_KIND_BLOCK_HEIGHT(x) (((x) & 0x7) << 4)
  503. #define DC_WINBUF_AD_UFLOW_STATUS 0xbca
  504. #define DC_WINBUF_BD_UFLOW_STATUS 0xdca
  505. #define DC_WINBUF_CD_UFLOW_STATUS 0xfca
  506. #endif /* TEGRA_DC_H */