PageRenderTime 27ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/drivers/gpu/drm/tegra/dc.h

https://bitbucket.org/Tofe/picasso-kernel
C Header | 388 lines | 330 code | 49 blank | 9 comment | 0 complexity | 80a2a6e108bde89e0c6608563bab3cf1 MD5 | raw file
  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. #define DC_CMD_GENERAL_INCR_SYNCPT 0x000
  12. #define DC_CMD_GENERAL_INCR_SYNCPT_CNTRL 0x001
  13. #define DC_CMD_GENERAL_INCR_SYNCPT_ERROR 0x002
  14. #define DC_CMD_WIN_A_INCR_SYNCPT 0x008
  15. #define DC_CMD_WIN_A_INCR_SYNCPT_CNTRL 0x009
  16. #define DC_CMD_WIN_A_INCR_SYNCPT_ERROR 0x00a
  17. #define DC_CMD_WIN_B_INCR_SYNCPT 0x010
  18. #define DC_CMD_WIN_B_INCR_SYNCPT_CNTRL 0x011
  19. #define DC_CMD_WIN_B_INCR_SYNCPT_ERROR 0x012
  20. #define DC_CMD_WIN_C_INCR_SYNCPT 0x018
  21. #define DC_CMD_WIN_C_INCR_SYNCPT_CNTRL 0x019
  22. #define DC_CMD_WIN_C_INCR_SYNCPT_ERROR 0x01a
  23. #define DC_CMD_CONT_SYNCPT_VSYNC 0x028
  24. #define DC_CMD_DISPLAY_COMMAND_OPTION0 0x031
  25. #define DC_CMD_DISPLAY_COMMAND 0x032
  26. #define DISP_CTRL_MODE_STOP (0 << 5)
  27. #define DISP_CTRL_MODE_C_DISPLAY (1 << 5)
  28. #define DISP_CTRL_MODE_NC_DISPLAY (2 << 5)
  29. #define DC_CMD_SIGNAL_RAISE 0x033
  30. #define DC_CMD_DISPLAY_POWER_CONTROL 0x036
  31. #define PW0_ENABLE (1 << 0)
  32. #define PW1_ENABLE (1 << 2)
  33. #define PW2_ENABLE (1 << 4)
  34. #define PW3_ENABLE (1 << 6)
  35. #define PW4_ENABLE (1 << 8)
  36. #define PM0_ENABLE (1 << 16)
  37. #define PM1_ENABLE (1 << 18)
  38. #define DC_CMD_INT_STATUS 0x037
  39. #define DC_CMD_INT_MASK 0x038
  40. #define DC_CMD_INT_ENABLE 0x039
  41. #define DC_CMD_INT_TYPE 0x03a
  42. #define DC_CMD_INT_POLARITY 0x03b
  43. #define CTXSW_INT (1 << 0)
  44. #define FRAME_END_INT (1 << 1)
  45. #define VBLANK_INT (1 << 2)
  46. #define WIN_A_UF_INT (1 << 8)
  47. #define WIN_B_UF_INT (1 << 9)
  48. #define WIN_C_UF_INT (1 << 10)
  49. #define WIN_A_OF_INT (1 << 14)
  50. #define WIN_B_OF_INT (1 << 15)
  51. #define WIN_C_OF_INT (1 << 16)
  52. #define DC_CMD_SIGNAL_RAISE1 0x03c
  53. #define DC_CMD_SIGNAL_RAISE2 0x03d
  54. #define DC_CMD_SIGNAL_RAISE3 0x03e
  55. #define DC_CMD_STATE_ACCESS 0x040
  56. #define DC_CMD_STATE_CONTROL 0x041
  57. #define GENERAL_ACT_REQ (1 << 0)
  58. #define WIN_A_ACT_REQ (1 << 1)
  59. #define WIN_B_ACT_REQ (1 << 2)
  60. #define WIN_C_ACT_REQ (1 << 3)
  61. #define GENERAL_UPDATE (1 << 8)
  62. #define WIN_A_UPDATE (1 << 9)
  63. #define WIN_B_UPDATE (1 << 10)
  64. #define WIN_C_UPDATE (1 << 11)
  65. #define NC_HOST_TRIG (1 << 24)
  66. #define DC_CMD_DISPLAY_WINDOW_HEADER 0x042
  67. #define WINDOW_A_SELECT (1 << 4)
  68. #define WINDOW_B_SELECT (1 << 5)
  69. #define WINDOW_C_SELECT (1 << 6)
  70. #define DC_CMD_REG_ACT_CONTROL 0x043
  71. #define DC_COM_CRC_CONTROL 0x300
  72. #define DC_COM_CRC_CHECKSUM 0x301
  73. #define DC_COM_PIN_OUTPUT_ENABLE(x) (0x302 + (x))
  74. #define DC_COM_PIN_OUTPUT_POLARITY(x) (0x306 + (x))
  75. #define LVS_OUTPUT_POLARITY_LOW (1 << 28)
  76. #define LHS_OUTPUT_POLARITY_LOW (1 << 30)
  77. #define DC_COM_PIN_OUTPUT_DATA(x) (0x30a + (x))
  78. #define DC_COM_PIN_INPUT_ENABLE(x) (0x30e + (x))
  79. #define DC_COM_PIN_INPUT_DATA(x) (0x312 + (x))
  80. #define DC_COM_PIN_OUTPUT_SELECT(x) (0x314 + (x))
  81. #define DC_COM_PIN_MISC_CONTROL 0x31b
  82. #define DC_COM_PIN_PM0_CONTROL 0x31c
  83. #define DC_COM_PIN_PM0_DUTY_CYCLE 0x31d
  84. #define DC_COM_PIN_PM1_CONTROL 0x31e
  85. #define DC_COM_PIN_PM1_DUTY_CYCLE 0x31f
  86. #define DC_COM_SPI_CONTROL 0x320
  87. #define DC_COM_SPI_START_BYTE 0x321
  88. #define DC_COM_HSPI_WRITE_DATA_AB 0x322
  89. #define DC_COM_HSPI_WRITE_DATA_CD 0x323
  90. #define DC_COM_HSPI_CS_DC 0x324
  91. #define DC_COM_SCRATCH_REGISTER_A 0x325
  92. #define DC_COM_SCRATCH_REGISTER_B 0x326
  93. #define DC_COM_GPIO_CTRL 0x327
  94. #define DC_COM_GPIO_DEBOUNCE_COUNTER 0x328
  95. #define DC_COM_CRC_CHECKSUM_LATCHED 0x329
  96. #define DC_DISP_DISP_SIGNAL_OPTIONS0 0x400
  97. #define H_PULSE_0_ENABLE (1 << 8)
  98. #define H_PULSE_1_ENABLE (1 << 10)
  99. #define H_PULSE_2_ENABLE (1 << 12)
  100. #define DC_DISP_DISP_SIGNAL_OPTIONS1 0x401
  101. #define DC_DISP_DISP_WIN_OPTIONS 0x402
  102. #define HDMI_ENABLE (1 << 30)
  103. #define DC_DISP_DISP_MEM_HIGH_PRIORITY 0x403
  104. #define CURSOR_THRESHOLD(x) (((x) & 0x03) << 24)
  105. #define WINDOW_A_THRESHOLD(x) (((x) & 0x7f) << 16)
  106. #define WINDOW_B_THRESHOLD(x) (((x) & 0x7f) << 8)
  107. #define WINDOW_C_THRESHOLD(x) (((x) & 0xff) << 0)
  108. #define DC_DISP_DISP_MEM_HIGH_PRIORITY_TIMER 0x404
  109. #define CURSOR_DELAY(x) (((x) & 0x3f) << 24)
  110. #define WINDOW_A_DELAY(x) (((x) & 0x3f) << 16)
  111. #define WINDOW_B_DELAY(x) (((x) & 0x3f) << 8)
  112. #define WINDOW_C_DELAY(x) (((x) & 0x3f) << 0)
  113. #define DC_DISP_DISP_TIMING_OPTIONS 0x405
  114. #define VSYNC_H_POSITION(x) ((x) & 0xfff)
  115. #define DC_DISP_REF_TO_SYNC 0x406
  116. #define DC_DISP_SYNC_WIDTH 0x407
  117. #define DC_DISP_BACK_PORCH 0x408
  118. #define DC_DISP_ACTIVE 0x409
  119. #define DC_DISP_FRONT_PORCH 0x40a
  120. #define DC_DISP_H_PULSE0_CONTROL 0x40b
  121. #define DC_DISP_H_PULSE0_POSITION_A 0x40c
  122. #define DC_DISP_H_PULSE0_POSITION_B 0x40d
  123. #define DC_DISP_H_PULSE0_POSITION_C 0x40e
  124. #define DC_DISP_H_PULSE0_POSITION_D 0x40f
  125. #define DC_DISP_H_PULSE1_CONTROL 0x410
  126. #define DC_DISP_H_PULSE1_POSITION_A 0x411
  127. #define DC_DISP_H_PULSE1_POSITION_B 0x412
  128. #define DC_DISP_H_PULSE1_POSITION_C 0x413
  129. #define DC_DISP_H_PULSE1_POSITION_D 0x414
  130. #define DC_DISP_H_PULSE2_CONTROL 0x415
  131. #define DC_DISP_H_PULSE2_POSITION_A 0x416
  132. #define DC_DISP_H_PULSE2_POSITION_B 0x417
  133. #define DC_DISP_H_PULSE2_POSITION_C 0x418
  134. #define DC_DISP_H_PULSE2_POSITION_D 0x419
  135. #define DC_DISP_V_PULSE0_CONTROL 0x41a
  136. #define DC_DISP_V_PULSE0_POSITION_A 0x41b
  137. #define DC_DISP_V_PULSE0_POSITION_B 0x41c
  138. #define DC_DISP_V_PULSE0_POSITION_C 0x41d
  139. #define DC_DISP_V_PULSE1_CONTROL 0x41e
  140. #define DC_DISP_V_PULSE1_POSITION_A 0x41f
  141. #define DC_DISP_V_PULSE1_POSITION_B 0x420
  142. #define DC_DISP_V_PULSE1_POSITION_C 0x421
  143. #define DC_DISP_V_PULSE2_CONTROL 0x422
  144. #define DC_DISP_V_PULSE2_POSITION_A 0x423
  145. #define DC_DISP_V_PULSE3_CONTROL 0x424
  146. #define DC_DISP_V_PULSE3_POSITION_A 0x425
  147. #define DC_DISP_M0_CONTROL 0x426
  148. #define DC_DISP_M1_CONTROL 0x427
  149. #define DC_DISP_DI_CONTROL 0x428
  150. #define DC_DISP_PP_CONTROL 0x429
  151. #define DC_DISP_PP_SELECT_A 0x42a
  152. #define DC_DISP_PP_SELECT_B 0x42b
  153. #define DC_DISP_PP_SELECT_C 0x42c
  154. #define DC_DISP_PP_SELECT_D 0x42d
  155. #define PULSE_MODE_NORMAL (0 << 3)
  156. #define PULSE_MODE_ONE_CLOCK (1 << 3)
  157. #define PULSE_POLARITY_HIGH (0 << 4)
  158. #define PULSE_POLARITY_LOW (1 << 4)
  159. #define PULSE_QUAL_ALWAYS (0 << 6)
  160. #define PULSE_QUAL_VACTIVE (2 << 6)
  161. #define PULSE_QUAL_VACTIVE1 (3 << 6)
  162. #define PULSE_LAST_START_A (0 << 8)
  163. #define PULSE_LAST_END_A (1 << 8)
  164. #define PULSE_LAST_START_B (2 << 8)
  165. #define PULSE_LAST_END_B (3 << 8)
  166. #define PULSE_LAST_START_C (4 << 8)
  167. #define PULSE_LAST_END_C (5 << 8)
  168. #define PULSE_LAST_START_D (6 << 8)
  169. #define PULSE_LAST_END_D (7 << 8)
  170. #define PULSE_START(x) (((x) & 0xfff) << 0)
  171. #define PULSE_END(x) (((x) & 0xfff) << 16)
  172. #define DC_DISP_DISP_CLOCK_CONTROL 0x42e
  173. #define PIXEL_CLK_DIVIDER_PCD1 (0 << 8)
  174. #define PIXEL_CLK_DIVIDER_PCD1H (1 << 8)
  175. #define PIXEL_CLK_DIVIDER_PCD2 (2 << 8)
  176. #define PIXEL_CLK_DIVIDER_PCD3 (3 << 8)
  177. #define PIXEL_CLK_DIVIDER_PCD4 (4 << 8)
  178. #define PIXEL_CLK_DIVIDER_PCD6 (5 << 8)
  179. #define PIXEL_CLK_DIVIDER_PCD8 (6 << 8)
  180. #define PIXEL_CLK_DIVIDER_PCD9 (7 << 8)
  181. #define PIXEL_CLK_DIVIDER_PCD12 (8 << 8)
  182. #define PIXEL_CLK_DIVIDER_PCD16 (9 << 8)
  183. #define PIXEL_CLK_DIVIDER_PCD18 (10 << 8)
  184. #define PIXEL_CLK_DIVIDER_PCD24 (11 << 8)
  185. #define PIXEL_CLK_DIVIDER_PCD13 (12 << 8)
  186. #define SHIFT_CLK_DIVIDER(x) ((x) & 0xff)
  187. #define DC_DISP_DISP_INTERFACE_CONTROL 0x42f
  188. #define DISP_DATA_FORMAT_DF1P1C (0 << 0)
  189. #define DISP_DATA_FORMAT_DF1P2C24B (1 << 0)
  190. #define DISP_DATA_FORMAT_DF1P2C18B (2 << 0)
  191. #define DISP_DATA_FORMAT_DF1P2C16B (3 << 0)
  192. #define DISP_DATA_FORMAT_DF2S (4 << 0)
  193. #define DISP_DATA_FORMAT_DF3S (5 << 0)
  194. #define DISP_DATA_FORMAT_DFSPI (6 << 0)
  195. #define DISP_DATA_FORMAT_DF1P3C24B (7 << 0)
  196. #define DISP_DATA_FORMAT_DF1P3C18B (8 << 0)
  197. #define DISP_ALIGNMENT_MSB (0 << 8)
  198. #define DISP_ALIGNMENT_LSB (1 << 8)
  199. #define DISP_ORDER_RED_BLUE (0 << 9)
  200. #define DISP_ORDER_BLUE_RED (1 << 9)
  201. #define DC_DISP_DISP_COLOR_CONTROL 0x430
  202. #define BASE_COLOR_SIZE666 (0 << 0)
  203. #define BASE_COLOR_SIZE111 (1 << 0)
  204. #define BASE_COLOR_SIZE222 (2 << 0)
  205. #define BASE_COLOR_SIZE333 (3 << 0)
  206. #define BASE_COLOR_SIZE444 (4 << 0)
  207. #define BASE_COLOR_SIZE555 (5 << 0)
  208. #define BASE_COLOR_SIZE565 (6 << 0)
  209. #define BASE_COLOR_SIZE332 (7 << 0)
  210. #define BASE_COLOR_SIZE888 (8 << 0)
  211. #define DITHER_CONTROL_DISABLE (0 << 8)
  212. #define DITHER_CONTROL_ORDERED (2 << 8)
  213. #define DITHER_CONTROL_ERRDIFF (3 << 8)
  214. #define DC_DISP_SHIFT_CLOCK_OPTIONS 0x431
  215. #define DC_DISP_DATA_ENABLE_OPTIONS 0x432
  216. #define DE_SELECT_ACTIVE_BLANK (0 << 0)
  217. #define DE_SELECT_ACTIVE (1 << 0)
  218. #define DE_SELECT_ACTIVE_IS (2 << 0)
  219. #define DE_CONTROL_ONECLK (0 << 2)
  220. #define DE_CONTROL_NORMAL (1 << 2)
  221. #define DE_CONTROL_EARLY_EXT (2 << 2)
  222. #define DE_CONTROL_EARLY (3 << 2)
  223. #define DE_CONTROL_ACTIVE_BLANK (4 << 2)
  224. #define DC_DISP_SERIAL_INTERFACE_OPTIONS 0x433
  225. #define DC_DISP_LCD_SPI_OPTIONS 0x434
  226. #define DC_DISP_BORDER_COLOR 0x435
  227. #define DC_DISP_COLOR_KEY0_LOWER 0x436
  228. #define DC_DISP_COLOR_KEY0_UPPER 0x437
  229. #define DC_DISP_COLOR_KEY1_LOWER 0x438
  230. #define DC_DISP_COLOR_KEY1_UPPER 0x439
  231. #define DC_DISP_CURSOR_FOREGROUND 0x43c
  232. #define DC_DISP_CURSOR_BACKGROUND 0x43d
  233. #define DC_DISP_CURSOR_START_ADDR 0x43e
  234. #define DC_DISP_CURSOR_START_ADDR_NS 0x43f
  235. #define DC_DISP_CURSOR_POSITION 0x440
  236. #define DC_DISP_CURSOR_POSITION_NS 0x441
  237. #define DC_DISP_INIT_SEQ_CONTROL 0x442
  238. #define DC_DISP_SPI_INIT_SEQ_DATA_A 0x443
  239. #define DC_DISP_SPI_INIT_SEQ_DATA_B 0x444
  240. #define DC_DISP_SPI_INIT_SEQ_DATA_C 0x445
  241. #define DC_DISP_SPI_INIT_SEQ_DATA_D 0x446
  242. #define DC_DISP_DC_MCCIF_FIFOCTRL 0x480
  243. #define DC_DISP_MCCIF_DISPLAY0A_HYST 0x481
  244. #define DC_DISP_MCCIF_DISPLAY0B_HYST 0x482
  245. #define DC_DISP_MCCIF_DISPLAY1A_HYST 0x483
  246. #define DC_DISP_MCCIF_DISPLAY1B_HYST 0x484
  247. #define DC_DISP_DAC_CRT_CTRL 0x4c0
  248. #define DC_DISP_DISP_MISC_CONTROL 0x4c1
  249. #define DC_DISP_SD_CONTROL 0x4c2
  250. #define DC_DISP_SD_CSC_COEFF 0x4c3
  251. #define DC_DISP_SD_LUT(x) (0x4c4 + (x))
  252. #define DC_DISP_SD_FLICKER_CONTROL 0x4cd
  253. #define DC_DISP_DC_PIXEL_COUNT 0x4ce
  254. #define DC_DISP_SD_HISTOGRAM(x) (0x4cf + (x))
  255. #define DC_DISP_SD_BL_PARAMETERS 0x4d7
  256. #define DC_DISP_SD_BL_TF(x) (0x4d8 + (x))
  257. #define DC_DISP_SD_BL_CONTROL 0x4dc
  258. #define DC_DISP_SD_HW_K_VALUES 0x4dd
  259. #define DC_DISP_SD_MAN_K_VALUES 0x4de
  260. #define DC_WIN_WIN_OPTIONS 0x700
  261. #define COLOR_EXPAND (1 << 6)
  262. #define WIN_ENABLE (1 << 30)
  263. #define DC_WIN_BYTE_SWAP 0x701
  264. #define BYTE_SWAP_NOSWAP (0 << 0)
  265. #define BYTE_SWAP_SWAP2 (1 << 0)
  266. #define BYTE_SWAP_SWAP4 (2 << 0)
  267. #define BYTE_SWAP_SWAP4HW (3 << 0)
  268. #define DC_WIN_BUFFER_CONTROL 0x702
  269. #define BUFFER_CONTROL_HOST (0 << 0)
  270. #define BUFFER_CONTROL_VI (1 << 0)
  271. #define BUFFER_CONTROL_EPP (2 << 0)
  272. #define BUFFER_CONTROL_MPEGE (3 << 0)
  273. #define BUFFER_CONTROL_SB2D (4 << 0)
  274. #define DC_WIN_COLOR_DEPTH 0x703
  275. #define WIN_COLOR_DEPTH_P1 0
  276. #define WIN_COLOR_DEPTH_P2 1
  277. #define WIN_COLOR_DEPTH_P4 2
  278. #define WIN_COLOR_DEPTH_P8 3
  279. #define WIN_COLOR_DEPTH_B4G4R4A4 4
  280. #define WIN_COLOR_DEPTH_B5G5R5A 5
  281. #define WIN_COLOR_DEPTH_B5G6R5 6
  282. #define WIN_COLOR_DEPTH_AB5G5R5 7
  283. #define WIN_COLOR_DEPTH_B8G8R8A8 12
  284. #define WIN_COLOR_DEPTH_R8G8B8A8 13
  285. #define WIN_COLOR_DEPTH_B6x2G6x2R6x2A8 14
  286. #define WIN_COLOR_DEPTH_R6x2G6x2B6x2A8 15
  287. #define WIN_COLOR_DEPTH_YCbCr422 16
  288. #define WIN_COLOR_DEPTH_YUV422 17
  289. #define WIN_COLOR_DEPTH_YCbCr420P 18
  290. #define WIN_COLOR_DEPTH_YUV420P 19
  291. #define WIN_COLOR_DEPTH_YCbCr422P 20
  292. #define WIN_COLOR_DEPTH_YUV422P 21
  293. #define WIN_COLOR_DEPTH_YCbCr422R 22
  294. #define WIN_COLOR_DEPTH_YUV422R 23
  295. #define WIN_COLOR_DEPTH_YCbCr422RA 24
  296. #define WIN_COLOR_DEPTH_YUV422RA 25
  297. #define DC_WIN_POSITION 0x704
  298. #define H_POSITION(x) (((x) & 0x1fff) << 0)
  299. #define V_POSITION(x) (((x) & 0x1fff) << 16)
  300. #define DC_WIN_SIZE 0x705
  301. #define H_SIZE(x) (((x) & 0x1fff) << 0)
  302. #define V_SIZE(x) (((x) & 0x1fff) << 16)
  303. #define DC_WIN_PRESCALED_SIZE 0x706
  304. #define H_PRESCALED_SIZE(x) (((x) & 0x7fff) << 0)
  305. #define V_PRESCALED_SIZE(x) (((x) & 0x1fff) << 16)
  306. #define DC_WIN_H_INITIAL_DDA 0x707
  307. #define DC_WIN_V_INITIAL_DDA 0x708
  308. #define DC_WIN_DDA_INC 0x709
  309. #define H_DDA_INC(x) (((x) & 0xffff) << 0)
  310. #define V_DDA_INC(x) (((x) & 0xffff) << 16)
  311. #define DC_WIN_LINE_STRIDE 0x70a
  312. #define DC_WIN_BUF_STRIDE 0x70b
  313. #define DC_WIN_UV_BUF_STRIDE 0x70c
  314. #define DC_WIN_BUFFER_ADDR_MODE 0x70d
  315. #define DC_WIN_DV_CONTROL 0x70e
  316. #define DC_WIN_BLEND_NOKEY 0x70f
  317. #define DC_WIN_BLEND_1WIN 0x710
  318. #define DC_WIN_BLEND_2WIN_X 0x711
  319. #define DC_WIN_BLEND_2WIN_Y 0x712
  320. #define DC_WIN_BLEND32WIN_XY 0x713
  321. #define DC_WIN_HP_FETCH_CONTROL 0x714
  322. #define DC_WINBUF_START_ADDR 0x800
  323. #define DC_WINBUF_START_ADDR_NS 0x801
  324. #define DC_WINBUF_START_ADDR_U 0x802
  325. #define DC_WINBUF_START_ADDR_U_NS 0x803
  326. #define DC_WINBUF_START_ADDR_V 0x804
  327. #define DC_WINBUF_START_ADDR_V_NS 0x805
  328. #define DC_WINBUF_ADDR_H_OFFSET 0x806
  329. #define DC_WINBUF_ADDR_H_OFFSET_NS 0x807
  330. #define DC_WINBUF_ADDR_V_OFFSET 0x808
  331. #define DC_WINBUF_ADDR_V_OFFSET_NS 0x809
  332. #define DC_WINBUF_UFLOW_STATUS 0x80a
  333. #define DC_WINBUF_AD_UFLOW_STATUS 0xbca
  334. #define DC_WINBUF_BD_UFLOW_STATUS 0xdca
  335. #define DC_WINBUF_CD_UFLOW_STATUS 0xfca
  336. /* synchronization points */
  337. #define SYNCPT_VBLANK0 26
  338. #define SYNCPT_VBLANK1 27
  339. #endif /* TEGRA_DC_H */