nouveau_bios.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. /*
  2. * Copyright 2007-2008 Nouveau Project
  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 (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  21. * DEALINGS IN THE SOFTWARE.
  22. */
  23. #ifndef __NOUVEAU_BIOS_H__
  24. #define __NOUVEAU_BIOS_H__
  25. #include "nvreg.h"
  26. #include "nouveau_i2c.h"
  27. #define DCB_MAX_NUM_ENTRIES 16
  28. #define DCB_MAX_NUM_I2C_ENTRIES 16
  29. #define DCB_MAX_NUM_GPIO_ENTRIES 32
  30. #define DCB_MAX_NUM_CONNECTOR_ENTRIES 16
  31. #define DCB_LOC_ON_CHIP 0
  32. struct dcb_i2c_entry {
  33. uint8_t port_type;
  34. uint8_t read, write;
  35. struct nouveau_i2c_chan *chan;
  36. };
  37. enum dcb_gpio_tag {
  38. DCB_GPIO_TVDAC0 = 0xc,
  39. DCB_GPIO_TVDAC1 = 0x2d,
  40. };
  41. struct dcb_gpio_entry {
  42. enum dcb_gpio_tag tag;
  43. int line;
  44. bool invert;
  45. };
  46. struct dcb_gpio_table {
  47. int entries;
  48. struct dcb_gpio_entry entry[DCB_MAX_NUM_GPIO_ENTRIES];
  49. };
  50. enum dcb_connector_type {
  51. DCB_CONNECTOR_VGA = 0x00,
  52. DCB_CONNECTOR_TV_0 = 0x10,
  53. DCB_CONNECTOR_TV_1 = 0x11,
  54. DCB_CONNECTOR_TV_3 = 0x13,
  55. DCB_CONNECTOR_DVI_I = 0x30,
  56. DCB_CONNECTOR_DVI_D = 0x31,
  57. DCB_CONNECTOR_LVDS = 0x40,
  58. DCB_CONNECTOR_DP = 0x46,
  59. DCB_CONNECTOR_eDP = 0x47,
  60. DCB_CONNECTOR_HDMI_0 = 0x60,
  61. DCB_CONNECTOR_HDMI_1 = 0x61,
  62. DCB_CONNECTOR_NONE = 0xff
  63. };
  64. struct dcb_connector_table_entry {
  65. uint32_t entry;
  66. enum dcb_connector_type type;
  67. uint8_t index;
  68. uint8_t gpio_tag;
  69. };
  70. struct dcb_connector_table {
  71. int entries;
  72. struct dcb_connector_table_entry entry[DCB_MAX_NUM_CONNECTOR_ENTRIES];
  73. };
  74. enum dcb_type {
  75. OUTPUT_ANALOG = 0,
  76. OUTPUT_TV = 1,
  77. OUTPUT_TMDS = 2,
  78. OUTPUT_LVDS = 3,
  79. OUTPUT_DP = 6,
  80. OUTPUT_ANY = -1
  81. };
  82. struct dcb_entry {
  83. int index; /* may not be raw dcb index if merging has happened */
  84. enum dcb_type type;
  85. uint8_t i2c_index;
  86. uint8_t heads;
  87. uint8_t connector;
  88. uint8_t bus;
  89. uint8_t location;
  90. uint8_t or;
  91. bool duallink_possible;
  92. union {
  93. struct sor_conf {
  94. int link;
  95. } sorconf;
  96. struct {
  97. int maxfreq;
  98. } crtconf;
  99. struct {
  100. struct sor_conf sor;
  101. bool use_straps_for_mode;
  102. bool use_power_scripts;
  103. } lvdsconf;
  104. struct {
  105. bool has_component_output;
  106. } tvconf;
  107. struct {
  108. struct sor_conf sor;
  109. int link_nr;
  110. int link_bw;
  111. } dpconf;
  112. struct {
  113. struct sor_conf sor;
  114. } tmdsconf;
  115. };
  116. bool i2c_upper_default;
  117. };
  118. struct dcb_table {
  119. uint8_t version;
  120. int entries;
  121. struct dcb_entry entry[DCB_MAX_NUM_ENTRIES];
  122. uint8_t *i2c_table;
  123. uint8_t i2c_default_indices;
  124. struct dcb_i2c_entry i2c[DCB_MAX_NUM_I2C_ENTRIES];
  125. uint16_t gpio_table_ptr;
  126. struct dcb_gpio_table gpio;
  127. uint16_t connector_table_ptr;
  128. struct dcb_connector_table connector;
  129. };
  130. enum nouveau_or {
  131. OUTPUT_A = (1 << 0),
  132. OUTPUT_B = (1 << 1),
  133. OUTPUT_C = (1 << 2)
  134. };
  135. enum LVDS_script {
  136. /* Order *does* matter here */
  137. LVDS_INIT = 1,
  138. LVDS_RESET,
  139. LVDS_BACKLIGHT_ON,
  140. LVDS_BACKLIGHT_OFF,
  141. LVDS_PANEL_ON,
  142. LVDS_PANEL_OFF
  143. };
  144. /* changing these requires matching changes to reg tables in nv_get_clock */
  145. #define MAX_PLL_TYPES 4
  146. enum pll_types {
  147. NVPLL,
  148. MPLL,
  149. VPLL1,
  150. VPLL2
  151. };
  152. struct pll_lims {
  153. struct {
  154. int minfreq;
  155. int maxfreq;
  156. int min_inputfreq;
  157. int max_inputfreq;
  158. uint8_t min_m;
  159. uint8_t max_m;
  160. uint8_t min_n;
  161. uint8_t max_n;
  162. } vco1, vco2;
  163. uint8_t max_log2p;
  164. /*
  165. * for most pre nv50 cards setting a log2P of 7 (the common max_log2p
  166. * value) is no different to 6 (at least for vplls) so allowing the MNP
  167. * calc to use 7 causes the generated clock to be out by a factor of 2.
  168. * however, max_log2p cannot be fixed-up during parsing as the
  169. * unmodified max_log2p value is still needed for setting mplls, hence
  170. * an additional max_usable_log2p member
  171. */
  172. uint8_t max_usable_log2p;
  173. uint8_t log2p_bias;
  174. uint8_t min_p;
  175. uint8_t max_p;
  176. int refclk;
  177. };
  178. struct nvbios {
  179. struct drm_device *dev;
  180. uint8_t chip_version;
  181. uint32_t dactestval;
  182. uint32_t tvdactestval;
  183. uint8_t digital_min_front_porch;
  184. bool fp_no_ddc;
  185. struct mutex lock;
  186. uint8_t data[NV_PROM_SIZE];
  187. unsigned int length;
  188. bool execute;
  189. uint8_t major_version;
  190. uint8_t feature_byte;
  191. bool is_mobile;
  192. uint32_t fmaxvco, fminvco;
  193. bool old_style_init;
  194. uint16_t init_script_tbls_ptr;
  195. uint16_t extra_init_script_tbl_ptr;
  196. uint16_t macro_index_tbl_ptr;
  197. uint16_t macro_tbl_ptr;
  198. uint16_t condition_tbl_ptr;
  199. uint16_t io_condition_tbl_ptr;
  200. uint16_t io_flag_condition_tbl_ptr;
  201. uint16_t init_function_tbl_ptr;
  202. uint16_t pll_limit_tbl_ptr;
  203. uint16_t ram_restrict_tbl_ptr;
  204. uint8_t ram_restrict_group_count;
  205. uint16_t some_script_ptr; /* BIT I + 14 */
  206. uint16_t init96_tbl_ptr; /* BIT I + 16 */
  207. struct dcb_table dcb;
  208. struct {
  209. int crtchead;
  210. /* these need remembering across suspend */
  211. uint32_t saved_nv_pfb_cfg0;
  212. } state;
  213. struct {
  214. struct dcb_entry *output;
  215. uint16_t script_table_ptr;
  216. uint16_t dp_table_ptr;
  217. } display;
  218. struct {
  219. uint16_t fptablepointer; /* also used by tmds */
  220. uint16_t fpxlatetableptr;
  221. int xlatwidth;
  222. uint16_t lvdsmanufacturerpointer;
  223. uint16_t fpxlatemanufacturertableptr;
  224. uint16_t mode_ptr;
  225. uint16_t xlated_entry;
  226. bool power_off_for_reset;
  227. bool reset_after_pclk_change;
  228. bool dual_link;
  229. bool link_c_increment;
  230. bool BITbit1;
  231. bool if_is_24bit;
  232. int duallink_transition_clk;
  233. uint8_t strapless_is_24bit;
  234. uint8_t *edid;
  235. /* will need resetting after suspend */
  236. int last_script_invoc;
  237. bool lvds_init_run;
  238. } fp;
  239. struct {
  240. uint16_t output0_script_ptr;
  241. uint16_t output1_script_ptr;
  242. } tmds;
  243. struct {
  244. uint16_t mem_init_tbl_ptr;
  245. uint16_t sdr_seq_tbl_ptr;
  246. uint16_t ddr_seq_tbl_ptr;
  247. struct {
  248. uint8_t crt, tv, panel;
  249. } i2c_indices;
  250. uint16_t lvds_single_a_script_ptr;
  251. } legacy;
  252. };
  253. #endif