2 * Copyright 2007-2008 Nouveau Project
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:
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
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.
24 #ifndef __NOUVEAU_BIOS_H__
25 #define __NOUVEAU_BIOS_H__
28 #include "nouveau_i2c.h"
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
35 #define DCB_LOC_ON_CHIP 0
37 struct dcb_i2c_entry
{
41 struct nouveau_i2c_chan
*chan
;
45 DCB_GPIO_TVDAC0
= 0xc,
46 DCB_GPIO_TVDAC1
= 0x2d,
49 struct dcb_gpio_entry
{
50 enum dcb_gpio_tag tag
;
54 uint8_t state_default
;
58 struct dcb_gpio_table
{
60 struct dcb_gpio_entry entry
[DCB_MAX_NUM_GPIO_ENTRIES
];
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,
75 DCB_CONNECTOR_NONE
= 0xff
78 struct dcb_connector_table_entry
{
81 enum dcb_connector_type type
;
87 struct dcb_connector_table
{
89 struct dcb_connector_table_entry entry
[DCB_MAX_NUM_CONNECTOR_ENTRIES
];
102 int index
; /* may not be raw dcb index if merging has happened */
110 bool duallink_possible
;
120 bool use_straps_for_mode
;
121 bool use_acpi_for_edid
;
122 bool use_power_scripts
;
125 bool has_component_output
;
136 bool i2c_upper_default
;
143 struct dcb_entry entry
[DCB_MAX_NUM_ENTRIES
];
146 uint8_t i2c_default_indices
;
147 struct dcb_i2c_entry i2c
[DCB_MAX_NUM_I2C_ENTRIES
];
149 uint16_t gpio_table_ptr
;
150 struct dcb_gpio_table gpio
;
151 uint16_t connector_table_ptr
;
152 struct dcb_connector_table connector
;
162 /* Order *does* matter here */
171 /* changing these requires matching changes to reg tables in nv_get_clock */
172 #define MAX_PLL_TYPES 4
195 * for most pre nv50 cards setting a log2P of 7 (the common max_log2p
196 * value) is no different to 6 (at least for vplls) so allowing the MNP
197 * calc to use 7 causes the generated clock to be out by a factor of 2.
198 * however, max_log2p cannot be fixed-up during parsing as the
199 * unmodified max_log2p value is still needed for setting mplls, hence
200 * an additional max_usable_log2p member
202 uint8_t max_usable_log2p
;
212 struct drm_device
*dev
;
214 uint8_t chip_version
;
217 uint32_t tvdactestval
;
218 uint8_t digital_min_front_porch
;
223 uint8_t data
[NV_PROM_SIZE
];
227 uint8_t major_version
;
228 uint8_t feature_byte
;
231 uint32_t fmaxvco
, fminvco
;
234 uint16_t init_script_tbls_ptr
;
235 uint16_t extra_init_script_tbl_ptr
;
236 uint16_t macro_index_tbl_ptr
;
237 uint16_t macro_tbl_ptr
;
238 uint16_t condition_tbl_ptr
;
239 uint16_t io_condition_tbl_ptr
;
240 uint16_t io_flag_condition_tbl_ptr
;
241 uint16_t init_function_tbl_ptr
;
243 uint16_t pll_limit_tbl_ptr
;
244 uint16_t ram_restrict_tbl_ptr
;
245 uint8_t ram_restrict_group_count
;
247 uint16_t some_script_ptr
; /* BIT I + 14 */
248 uint16_t init96_tbl_ptr
; /* BIT I + 16 */
250 struct dcb_table dcb
;
257 struct dcb_entry
*output
;
258 uint16_t script_table_ptr
;
259 uint16_t dp_table_ptr
;
263 uint16_t fptablepointer
; /* also used by tmds */
264 uint16_t fpxlatetableptr
;
266 uint16_t lvdsmanufacturerpointer
;
267 uint16_t fpxlatemanufacturertableptr
;
269 uint16_t xlated_entry
;
270 bool power_off_for_reset
;
271 bool reset_after_pclk_change
;
273 bool link_c_increment
;
275 int duallink_transition_clk
;
276 uint8_t strapless_is_24bit
;
279 /* will need resetting after suspend */
280 int last_script_invoc
;
285 uint16_t output0_script_ptr
;
286 uint16_t output1_script_ptr
;
290 uint16_t mem_init_tbl_ptr
;
291 uint16_t sdr_seq_tbl_ptr
;
292 uint16_t ddr_seq_tbl_ptr
;
295 uint8_t crt
, tv
, panel
;
298 uint16_t lvds_single_a_script_ptr
;