Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 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 | |
| 24 | #ifndef __NOUVEAU_BIOS_H__ |
| 25 | #define __NOUVEAU_BIOS_H__ |
| 26 | |
| 27 | #include "nvreg.h" |
| 28 | #include "nouveau_i2c.h" |
| 29 | |
| 30 | #define DCB_MAX_NUM_ENTRIES 16 |
| 31 | #define DCB_MAX_NUM_I2C_ENTRIES 16 |
| 32 | #define DCB_MAX_NUM_GPIO_ENTRIES 32 |
| 33 | #define DCB_MAX_NUM_CONNECTOR_ENTRIES 16 |
| 34 | |
| 35 | #define DCB_LOC_ON_CHIP 0 |
| 36 | |
Ben Skeggs | e7cc51c | 2010-02-24 10:31:39 +1000 | [diff] [blame] | 37 | struct dcb_i2c_entry { |
Ben Skeggs | 07fee3d | 2010-04-24 03:05:56 +1000 | [diff] [blame] | 38 | uint32_t entry; |
Ben Skeggs | e7cc51c | 2010-02-24 10:31:39 +1000 | [diff] [blame] | 39 | uint8_t port_type; |
| 40 | uint8_t read, write; |
| 41 | struct nouveau_i2c_chan *chan; |
| 42 | }; |
| 43 | |
| 44 | enum dcb_gpio_tag { |
| 45 | DCB_GPIO_TVDAC0 = 0xc, |
| 46 | DCB_GPIO_TVDAC1 = 0x2d, |
| 47 | }; |
| 48 | |
| 49 | struct dcb_gpio_entry { |
| 50 | enum dcb_gpio_tag tag; |
| 51 | int line; |
| 52 | bool invert; |
Ben Skeggs | 2535d71 | 2010-04-07 12:00:14 +1000 | [diff] [blame] | 53 | uint32_t entry; |
Ben Skeggs | 02faec0 | 2010-04-07 12:05:32 +1000 | [diff] [blame] | 54 | uint8_t state_default; |
| 55 | uint8_t state[2]; |
Ben Skeggs | e7cc51c | 2010-02-24 10:31:39 +1000 | [diff] [blame] | 56 | }; |
| 57 | |
| 58 | struct dcb_gpio_table { |
| 59 | int entries; |
| 60 | struct dcb_gpio_entry entry[DCB_MAX_NUM_GPIO_ENTRIES]; |
| 61 | }; |
| 62 | |
| 63 | enum dcb_connector_type { |
| 64 | DCB_CONNECTOR_VGA = 0x00, |
| 65 | DCB_CONNECTOR_TV_0 = 0x10, |
| 66 | DCB_CONNECTOR_TV_1 = 0x11, |
| 67 | DCB_CONNECTOR_TV_3 = 0x13, |
| 68 | DCB_CONNECTOR_DVI_I = 0x30, |
| 69 | DCB_CONNECTOR_DVI_D = 0x31, |
| 70 | DCB_CONNECTOR_LVDS = 0x40, |
| 71 | DCB_CONNECTOR_DP = 0x46, |
| 72 | DCB_CONNECTOR_eDP = 0x47, |
| 73 | DCB_CONNECTOR_HDMI_0 = 0x60, |
| 74 | DCB_CONNECTOR_HDMI_1 = 0x61, |
Ben Skeggs | f66fa77 | 2010-02-24 11:09:20 +1000 | [diff] [blame] | 75 | DCB_CONNECTOR_NONE = 0xff |
Ben Skeggs | e7cc51c | 2010-02-24 10:31:39 +1000 | [diff] [blame] | 76 | }; |
| 77 | |
| 78 | struct dcb_connector_table_entry { |
Ben Skeggs | d544d62 | 2010-03-10 15:52:43 +1000 | [diff] [blame] | 79 | uint8_t index; |
Ben Skeggs | e7cc51c | 2010-02-24 10:31:39 +1000 | [diff] [blame] | 80 | uint32_t entry; |
| 81 | enum dcb_connector_type type; |
Ben Skeggs | d544d62 | 2010-03-10 15:52:43 +1000 | [diff] [blame] | 82 | uint8_t index2; |
Ben Skeggs | e7cc51c | 2010-02-24 10:31:39 +1000 | [diff] [blame] | 83 | uint8_t gpio_tag; |
Ben Skeggs | 8f1a608 | 2010-06-28 14:35:50 +1000 | [diff] [blame] | 84 | void *drm; |
Ben Skeggs | e7cc51c | 2010-02-24 10:31:39 +1000 | [diff] [blame] | 85 | }; |
| 86 | |
| 87 | struct dcb_connector_table { |
| 88 | int entries; |
| 89 | struct dcb_connector_table_entry entry[DCB_MAX_NUM_CONNECTOR_ENTRIES]; |
| 90 | }; |
| 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, |
Ben Skeggs | 44a1246 | 2010-08-17 14:34:00 +1000 | [diff] [blame^] | 98 | OUTPUT_EOL = 14, /* DCB 4.0+, appears to be end-of-list */ |
Ben Skeggs | e7cc51c | 2010-02-24 10:31:39 +1000 | [diff] [blame] | 99 | OUTPUT_ANY = -1 |
| 100 | }; |
| 101 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 102 | struct dcb_entry { |
| 103 | int index; /* may not be raw dcb index if merging has happened */ |
Ben Skeggs | e7cc51c | 2010-02-24 10:31:39 +1000 | [diff] [blame] | 104 | enum dcb_type type; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 105 | uint8_t i2c_index; |
| 106 | uint8_t heads; |
| 107 | uint8_t connector; |
| 108 | uint8_t bus; |
| 109 | uint8_t location; |
| 110 | uint8_t or; |
| 111 | bool duallink_possible; |
| 112 | union { |
| 113 | struct sor_conf { |
| 114 | int link; |
| 115 | } sorconf; |
| 116 | struct { |
| 117 | int maxfreq; |
| 118 | } crtconf; |
| 119 | struct { |
| 120 | struct sor_conf sor; |
| 121 | bool use_straps_for_mode; |
Ben Skeggs | a6ed76d | 2010-07-12 15:33:07 +1000 | [diff] [blame] | 122 | bool use_acpi_for_edid; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 123 | bool use_power_scripts; |
| 124 | } lvdsconf; |
| 125 | struct { |
| 126 | bool has_component_output; |
| 127 | } tvconf; |
| 128 | struct { |
| 129 | struct sor_conf sor; |
| 130 | int link_nr; |
| 131 | int link_bw; |
| 132 | } dpconf; |
| 133 | struct { |
| 134 | struct sor_conf sor; |
Francisco Jerez | 4a9f822 | 2010-07-20 16:48:08 +0200 | [diff] [blame] | 135 | int slave_addr; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 136 | } tmdsconf; |
| 137 | }; |
| 138 | bool i2c_upper_default; |
| 139 | }; |
| 140 | |
Ben Skeggs | 7f245b2 | 2010-02-24 09:56:18 +1000 | [diff] [blame] | 141 | struct dcb_table { |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 142 | uint8_t version; |
| 143 | |
Ben Skeggs | 7f245b2 | 2010-02-24 09:56:18 +1000 | [diff] [blame] | 144 | int entries; |
| 145 | struct dcb_entry entry[DCB_MAX_NUM_ENTRIES]; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 146 | |
| 147 | uint8_t *i2c_table; |
| 148 | uint8_t i2c_default_indices; |
Ben Skeggs | 7f245b2 | 2010-02-24 09:56:18 +1000 | [diff] [blame] | 149 | struct dcb_i2c_entry i2c[DCB_MAX_NUM_I2C_ENTRIES]; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 150 | |
| 151 | uint16_t gpio_table_ptr; |
Ben Skeggs | a6678b2 | 2010-02-24 09:46:27 +1000 | [diff] [blame] | 152 | struct dcb_gpio_table gpio; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 153 | uint16_t connector_table_ptr; |
| 154 | struct dcb_connector_table connector; |
| 155 | }; |
| 156 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 157 | enum nouveau_or { |
| 158 | OUTPUT_A = (1 << 0), |
| 159 | OUTPUT_B = (1 << 1), |
| 160 | OUTPUT_C = (1 << 2) |
| 161 | }; |
| 162 | |
| 163 | enum LVDS_script { |
| 164 | /* Order *does* matter here */ |
| 165 | LVDS_INIT = 1, |
| 166 | LVDS_RESET, |
| 167 | LVDS_BACKLIGHT_ON, |
| 168 | LVDS_BACKLIGHT_OFF, |
| 169 | LVDS_PANEL_ON, |
| 170 | LVDS_PANEL_OFF |
| 171 | }; |
| 172 | |
| 173 | /* changing these requires matching changes to reg tables in nv_get_clock */ |
| 174 | #define MAX_PLL_TYPES 4 |
| 175 | enum pll_types { |
| 176 | NVPLL, |
| 177 | MPLL, |
| 178 | VPLL1, |
| 179 | VPLL2 |
| 180 | }; |
| 181 | |
| 182 | struct pll_lims { |
| 183 | struct { |
| 184 | int minfreq; |
| 185 | int maxfreq; |
| 186 | int min_inputfreq; |
| 187 | int max_inputfreq; |
| 188 | |
| 189 | uint8_t min_m; |
| 190 | uint8_t max_m; |
| 191 | uint8_t min_n; |
| 192 | uint8_t max_n; |
| 193 | } vco1, vco2; |
| 194 | |
| 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 | |
| 207 | uint8_t min_p; |
| 208 | uint8_t max_p; |
| 209 | |
| 210 | int refclk; |
| 211 | }; |
| 212 | |
Ben Skeggs | 04a39c5 | 2010-02-24 10:03:05 +1000 | [diff] [blame] | 213 | struct nvbios { |
| 214 | struct drm_device *dev; |
| 215 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 216 | uint8_t chip_version; |
| 217 | |
| 218 | uint32_t dactestval; |
| 219 | uint32_t tvdactestval; |
| 220 | uint8_t digital_min_front_porch; |
| 221 | bool fp_no_ddc; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 222 | |
Ben Skeggs | d9184fa | 2010-02-16 11:14:14 +1000 | [diff] [blame] | 223 | struct mutex lock; |
Ben Skeggs | 39c9bfb | 2010-02-09 10:22:29 +1000 | [diff] [blame] | 224 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 225 | uint8_t data[NV_PROM_SIZE]; |
| 226 | unsigned int length; |
| 227 | bool execute; |
| 228 | |
| 229 | uint8_t major_version; |
| 230 | uint8_t feature_byte; |
| 231 | bool is_mobile; |
| 232 | |
| 233 | uint32_t fmaxvco, fminvco; |
| 234 | |
| 235 | bool old_style_init; |
| 236 | uint16_t init_script_tbls_ptr; |
| 237 | uint16_t extra_init_script_tbl_ptr; |
| 238 | uint16_t macro_index_tbl_ptr; |
| 239 | uint16_t macro_tbl_ptr; |
| 240 | uint16_t condition_tbl_ptr; |
| 241 | uint16_t io_condition_tbl_ptr; |
| 242 | uint16_t io_flag_condition_tbl_ptr; |
| 243 | uint16_t init_function_tbl_ptr; |
| 244 | |
| 245 | uint16_t pll_limit_tbl_ptr; |
| 246 | uint16_t ram_restrict_tbl_ptr; |
Marcin KoĆcielnicki | 3738365 | 2009-12-15 00:37:31 +0000 | [diff] [blame] | 247 | uint8_t ram_restrict_group_count; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 248 | |
| 249 | uint16_t some_script_ptr; /* BIT I + 14 */ |
| 250 | uint16_t init96_tbl_ptr; /* BIT I + 16 */ |
| 251 | |
Ben Skeggs | 7f245b2 | 2010-02-24 09:56:18 +1000 | [diff] [blame] | 252 | struct dcb_table dcb; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 253 | |
| 254 | struct { |
| 255 | int crtchead; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 256 | } state; |
| 257 | |
| 258 | struct { |
| 259 | struct dcb_entry *output; |
| 260 | uint16_t script_table_ptr; |
| 261 | uint16_t dp_table_ptr; |
| 262 | } display; |
| 263 | |
| 264 | struct { |
| 265 | uint16_t fptablepointer; /* also used by tmds */ |
| 266 | uint16_t fpxlatetableptr; |
| 267 | int xlatwidth; |
| 268 | uint16_t lvdsmanufacturerpointer; |
| 269 | uint16_t fpxlatemanufacturertableptr; |
| 270 | uint16_t mode_ptr; |
| 271 | uint16_t xlated_entry; |
| 272 | bool power_off_for_reset; |
| 273 | bool reset_after_pclk_change; |
| 274 | bool dual_link; |
| 275 | bool link_c_increment; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 276 | bool if_is_24bit; |
| 277 | int duallink_transition_clk; |
| 278 | uint8_t strapless_is_24bit; |
| 279 | uint8_t *edid; |
| 280 | |
| 281 | /* will need resetting after suspend */ |
| 282 | int last_script_invoc; |
| 283 | bool lvds_init_run; |
| 284 | } fp; |
| 285 | |
| 286 | struct { |
| 287 | uint16_t output0_script_ptr; |
| 288 | uint16_t output1_script_ptr; |
| 289 | } tmds; |
| 290 | |
| 291 | struct { |
| 292 | uint16_t mem_init_tbl_ptr; |
| 293 | uint16_t sdr_seq_tbl_ptr; |
| 294 | uint16_t ddr_seq_tbl_ptr; |
| 295 | |
| 296 | struct { |
| 297 | uint8_t crt, tv, panel; |
| 298 | } i2c_indices; |
| 299 | |
| 300 | uint16_t lvds_single_a_script_ptr; |
| 301 | } legacy; |
| 302 | }; |
| 303 | |
| 304 | #endif |