nouveau_bios.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  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. #define ROM16(x) le16_to_cpu(*(uint16_t *)&(x))
  33. #define ROM32(x) le32_to_cpu(*(uint32_t *)&(x))
  34. #define ROMPTR(bios, x) (ROM16(x) ? &(bios)->data[ROM16(x)] : NULL)
  35. struct bit_entry {
  36. uint8_t id;
  37. uint8_t version;
  38. uint16_t length;
  39. uint16_t offset;
  40. uint8_t *data;
  41. };
  42. int bit_table(struct drm_device *, u8 id, struct bit_entry *);
  43. struct dcb_i2c_entry {
  44. uint32_t entry;
  45. uint8_t port_type;
  46. uint8_t read, write;
  47. struct nouveau_i2c_chan *chan;
  48. };
  49. enum dcb_gpio_tag {
  50. DCB_GPIO_TVDAC0 = 0xc,
  51. DCB_GPIO_TVDAC1 = 0x2d,
  52. };
  53. struct dcb_gpio_entry {
  54. enum dcb_gpio_tag tag;
  55. int line;
  56. bool invert;
  57. uint32_t entry;
  58. uint8_t state_default;
  59. uint8_t state[2];
  60. };
  61. struct dcb_gpio_table {
  62. int entries;
  63. struct dcb_gpio_entry entry[DCB_MAX_NUM_GPIO_ENTRIES];
  64. };
  65. enum dcb_connector_type {
  66. DCB_CONNECTOR_VGA = 0x00,
  67. DCB_CONNECTOR_TV_0 = 0x10,
  68. DCB_CONNECTOR_TV_1 = 0x11,
  69. DCB_CONNECTOR_TV_3 = 0x13,
  70. DCB_CONNECTOR_DVI_I = 0x30,
  71. DCB_CONNECTOR_DVI_D = 0x31,
  72. DCB_CONNECTOR_LVDS = 0x40,
  73. DCB_CONNECTOR_LVDS_SPWG = 0x41,
  74. DCB_CONNECTOR_DP = 0x46,
  75. DCB_CONNECTOR_eDP = 0x47,
  76. DCB_CONNECTOR_HDMI_0 = 0x60,
  77. DCB_CONNECTOR_HDMI_1 = 0x61,
  78. DCB_CONNECTOR_NONE = 0xff
  79. };
  80. struct dcb_connector_table_entry {
  81. uint8_t index;
  82. uint32_t entry;
  83. enum dcb_connector_type type;
  84. uint8_t index2;
  85. uint8_t gpio_tag;
  86. void *drm;
  87. };
  88. struct dcb_connector_table {
  89. int entries;
  90. struct dcb_connector_table_entry entry[DCB_MAX_NUM_CONNECTOR_ENTRIES];
  91. };
  92. enum dcb_type {
  93. OUTPUT_ANALOG = 0,
  94. OUTPUT_TV = 1,
  95. OUTPUT_TMDS = 2,
  96. OUTPUT_LVDS = 3,
  97. OUTPUT_DP = 6,
  98. OUTPUT_EOL = 14, /* DCB 4.0+, appears to be end-of-list */
  99. OUTPUT_ANY = -1
  100. };
  101. struct dcb_entry {
  102. int index; /* may not be raw dcb index if merging has happened */
  103. enum dcb_type type;
  104. uint8_t i2c_index;
  105. uint8_t heads;
  106. uint8_t connector;
  107. uint8_t bus;
  108. uint8_t location;
  109. uint8_t or;
  110. bool duallink_possible;
  111. union {
  112. struct sor_conf {
  113. int link;
  114. } sorconf;
  115. struct {
  116. int maxfreq;
  117. } crtconf;
  118. struct {
  119. struct sor_conf sor;
  120. bool use_straps_for_mode;
  121. bool use_acpi_for_edid;
  122. bool use_power_scripts;
  123. } lvdsconf;
  124. struct {
  125. bool has_component_output;
  126. } tvconf;
  127. struct {
  128. struct sor_conf sor;
  129. int link_nr;
  130. int link_bw;
  131. } dpconf;
  132. struct {
  133. struct sor_conf sor;
  134. int slave_addr;
  135. } tmdsconf;
  136. };
  137. bool i2c_upper_default;
  138. };
  139. struct dcb_table {
  140. uint8_t version;
  141. int entries;
  142. struct dcb_entry entry[DCB_MAX_NUM_ENTRIES];
  143. uint8_t *i2c_table;
  144. uint8_t i2c_default_indices;
  145. struct dcb_i2c_entry i2c[DCB_MAX_NUM_I2C_ENTRIES];
  146. uint16_t gpio_table_ptr;
  147. struct dcb_gpio_table gpio;
  148. uint16_t connector_table_ptr;
  149. struct dcb_connector_table connector;
  150. };
  151. enum nouveau_or {
  152. OUTPUT_A = (1 << 0),
  153. OUTPUT_B = (1 << 1),
  154. OUTPUT_C = (1 << 2)
  155. };
  156. enum LVDS_script {
  157. /* Order *does* matter here */
  158. LVDS_INIT = 1,
  159. LVDS_RESET,
  160. LVDS_BACKLIGHT_ON,
  161. LVDS_BACKLIGHT_OFF,
  162. LVDS_PANEL_ON,
  163. LVDS_PANEL_OFF
  164. };
  165. /* these match types in pll limits table version 0x40,
  166. * nouveau uses them on all chipsets internally where a
  167. * specific pll needs to be referenced, but the exact
  168. * register isn't known.
  169. */
  170. enum pll_types {
  171. PLL_CORE = 0x01,
  172. PLL_SHADER = 0x02,
  173. PLL_UNK03 = 0x03,
  174. PLL_MEMORY = 0x04,
  175. PLL_UNK05 = 0x05,
  176. PLL_UNK40 = 0x40,
  177. PLL_UNK41 = 0x41,
  178. PLL_UNK42 = 0x42,
  179. PLL_VPLL0 = 0x80,
  180. PLL_VPLL1 = 0x81,
  181. PLL_MAX = 0xff
  182. };
  183. struct pll_lims {
  184. u32 reg;
  185. struct {
  186. int minfreq;
  187. int maxfreq;
  188. int min_inputfreq;
  189. int max_inputfreq;
  190. uint8_t min_m;
  191. uint8_t max_m;
  192. uint8_t min_n;
  193. uint8_t max_n;
  194. } vco1, vco2;
  195. uint8_t max_log2p;
  196. /*
  197. * for most pre nv50 cards setting a log2P of 7 (the common max_log2p
  198. * value) is no different to 6 (at least for vplls) so allowing the MNP
  199. * calc to use 7 causes the generated clock to be out by a factor of 2.
  200. * however, max_log2p cannot be fixed-up during parsing as the
  201. * unmodified max_log2p value is still needed for setting mplls, hence
  202. * an additional max_usable_log2p member
  203. */
  204. uint8_t max_usable_log2p;
  205. uint8_t log2p_bias;
  206. uint8_t min_p;
  207. uint8_t max_p;
  208. int refclk;
  209. };
  210. struct nvbios {
  211. struct drm_device *dev;
  212. enum {
  213. NVBIOS_BMP,
  214. NVBIOS_BIT
  215. } type;
  216. uint16_t offset;
  217. uint8_t chip_version;
  218. uint32_t dactestval;
  219. uint32_t tvdactestval;
  220. uint8_t digital_min_front_porch;
  221. bool fp_no_ddc;
  222. spinlock_t lock;
  223. uint8_t data[NV_PROM_SIZE];
  224. unsigned int length;
  225. bool execute;
  226. uint8_t major_version;
  227. uint8_t feature_byte;
  228. bool is_mobile;
  229. uint32_t fmaxvco, fminvco;
  230. bool old_style_init;
  231. uint16_t init_script_tbls_ptr;
  232. uint16_t extra_init_script_tbl_ptr;
  233. uint16_t macro_index_tbl_ptr;
  234. uint16_t macro_tbl_ptr;
  235. uint16_t condition_tbl_ptr;
  236. uint16_t io_condition_tbl_ptr;
  237. uint16_t io_flag_condition_tbl_ptr;
  238. uint16_t init_function_tbl_ptr;
  239. uint16_t pll_limit_tbl_ptr;
  240. uint16_t ram_restrict_tbl_ptr;
  241. uint8_t ram_restrict_group_count;
  242. uint16_t some_script_ptr; /* BIT I + 14 */
  243. uint16_t init96_tbl_ptr; /* BIT I + 16 */
  244. struct dcb_table dcb;
  245. struct {
  246. int crtchead;
  247. } state;
  248. struct {
  249. struct dcb_entry *output;
  250. uint16_t script_table_ptr;
  251. uint16_t dp_table_ptr;
  252. } display;
  253. struct {
  254. uint16_t fptablepointer; /* also used by tmds */
  255. uint16_t fpxlatetableptr;
  256. int xlatwidth;
  257. uint16_t lvdsmanufacturerpointer;
  258. uint16_t fpxlatemanufacturertableptr;
  259. uint16_t mode_ptr;
  260. uint16_t xlated_entry;
  261. bool power_off_for_reset;
  262. bool reset_after_pclk_change;
  263. bool dual_link;
  264. bool link_c_increment;
  265. bool if_is_24bit;
  266. int duallink_transition_clk;
  267. uint8_t strapless_is_24bit;
  268. uint8_t *edid;
  269. /* will need resetting after suspend */
  270. int last_script_invoc;
  271. bool lvds_init_run;
  272. } fp;
  273. struct {
  274. uint16_t output0_script_ptr;
  275. uint16_t output1_script_ptr;
  276. } tmds;
  277. struct {
  278. uint16_t mem_init_tbl_ptr;
  279. uint16_t sdr_seq_tbl_ptr;
  280. uint16_t ddr_seq_tbl_ptr;
  281. struct {
  282. uint8_t crt, tv, panel;
  283. } i2c_indices;
  284. uint16_t lvds_single_a_script_ptr;
  285. } legacy;
  286. };
  287. #endif