blob: adf4ec2d06c0cd7086ce327bb8a71c87fe1b9dd2 [file] [log] [blame]
Ben Skeggs6ee73862009-12-11 19:24:15 +10001/*
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 Skeggse7cc51c2010-02-24 10:31:39 +100037struct dcb_i2c_entry {
Ben Skeggs07fee3d2010-04-24 03:05:56 +100038 uint32_t entry;
Ben Skeggse7cc51c2010-02-24 10:31:39 +100039 uint8_t port_type;
40 uint8_t read, write;
41 struct nouveau_i2c_chan *chan;
42};
43
44enum dcb_gpio_tag {
45 DCB_GPIO_TVDAC0 = 0xc,
46 DCB_GPIO_TVDAC1 = 0x2d,
47};
48
49struct dcb_gpio_entry {
50 enum dcb_gpio_tag tag;
51 int line;
52 bool invert;
Ben Skeggs2535d712010-04-07 12:00:14 +100053 uint32_t entry;
Ben Skeggs02faec02010-04-07 12:05:32 +100054 uint8_t state_default;
55 uint8_t state[2];
Ben Skeggse7cc51c2010-02-24 10:31:39 +100056};
57
58struct dcb_gpio_table {
59 int entries;
60 struct dcb_gpio_entry entry[DCB_MAX_NUM_GPIO_ENTRIES];
61};
62
63enum 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 Skeggsf66fa772010-02-24 11:09:20 +100075 DCB_CONNECTOR_NONE = 0xff
Ben Skeggse7cc51c2010-02-24 10:31:39 +100076};
77
78struct dcb_connector_table_entry {
Ben Skeggsd544d622010-03-10 15:52:43 +100079 uint8_t index;
Ben Skeggse7cc51c2010-02-24 10:31:39 +100080 uint32_t entry;
81 enum dcb_connector_type type;
Ben Skeggsd544d622010-03-10 15:52:43 +100082 uint8_t index2;
Ben Skeggse7cc51c2010-02-24 10:31:39 +100083 uint8_t gpio_tag;
84};
85
86struct dcb_connector_table {
87 int entries;
88 struct dcb_connector_table_entry entry[DCB_MAX_NUM_CONNECTOR_ENTRIES];
89};
90
91enum dcb_type {
92 OUTPUT_ANALOG = 0,
93 OUTPUT_TV = 1,
94 OUTPUT_TMDS = 2,
95 OUTPUT_LVDS = 3,
96 OUTPUT_DP = 6,
97 OUTPUT_ANY = -1
98};
99
Ben Skeggs6ee73862009-12-11 19:24:15 +1000100struct dcb_entry {
101 int index; /* may not be raw dcb index if merging has happened */
Ben Skeggse7cc51c2010-02-24 10:31:39 +1000102 enum dcb_type type;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000103 uint8_t i2c_index;
104 uint8_t heads;
105 uint8_t connector;
106 uint8_t bus;
107 uint8_t location;
108 uint8_t or;
109 bool duallink_possible;
110 union {
111 struct sor_conf {
112 int link;
113 } sorconf;
114 struct {
115 int maxfreq;
116 } crtconf;
117 struct {
118 struct sor_conf sor;
119 bool use_straps_for_mode;
120 bool use_power_scripts;
121 } lvdsconf;
122 struct {
123 bool has_component_output;
124 } tvconf;
125 struct {
126 struct sor_conf sor;
127 int link_nr;
128 int link_bw;
129 } dpconf;
130 struct {
131 struct sor_conf sor;
132 } tmdsconf;
133 };
134 bool i2c_upper_default;
135};
136
Ben Skeggs7f245b22010-02-24 09:56:18 +1000137struct dcb_table {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000138 uint8_t version;
139
Ben Skeggs7f245b22010-02-24 09:56:18 +1000140 int entries;
141 struct dcb_entry entry[DCB_MAX_NUM_ENTRIES];
Ben Skeggs6ee73862009-12-11 19:24:15 +1000142
143 uint8_t *i2c_table;
144 uint8_t i2c_default_indices;
Ben Skeggs7f245b22010-02-24 09:56:18 +1000145 struct dcb_i2c_entry i2c[DCB_MAX_NUM_I2C_ENTRIES];
Ben Skeggs6ee73862009-12-11 19:24:15 +1000146
147 uint16_t gpio_table_ptr;
Ben Skeggsa6678b22010-02-24 09:46:27 +1000148 struct dcb_gpio_table gpio;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000149 uint16_t connector_table_ptr;
150 struct dcb_connector_table connector;
151};
152
Ben Skeggs6ee73862009-12-11 19:24:15 +1000153enum nouveau_or {
154 OUTPUT_A = (1 << 0),
155 OUTPUT_B = (1 << 1),
156 OUTPUT_C = (1 << 2)
157};
158
159enum LVDS_script {
160 /* Order *does* matter here */
161 LVDS_INIT = 1,
162 LVDS_RESET,
163 LVDS_BACKLIGHT_ON,
164 LVDS_BACKLIGHT_OFF,
165 LVDS_PANEL_ON,
166 LVDS_PANEL_OFF
167};
168
169/* changing these requires matching changes to reg tables in nv_get_clock */
170#define MAX_PLL_TYPES 4
171enum pll_types {
172 NVPLL,
173 MPLL,
174 VPLL1,
175 VPLL2
176};
177
178struct pll_lims {
179 struct {
180 int minfreq;
181 int maxfreq;
182 int min_inputfreq;
183 int max_inputfreq;
184
185 uint8_t min_m;
186 uint8_t max_m;
187 uint8_t min_n;
188 uint8_t max_n;
189 } vco1, vco2;
190
191 uint8_t max_log2p;
192 /*
193 * for most pre nv50 cards setting a log2P of 7 (the common max_log2p
194 * value) is no different to 6 (at least for vplls) so allowing the MNP
195 * calc to use 7 causes the generated clock to be out by a factor of 2.
196 * however, max_log2p cannot be fixed-up during parsing as the
197 * unmodified max_log2p value is still needed for setting mplls, hence
198 * an additional max_usable_log2p member
199 */
200 uint8_t max_usable_log2p;
201 uint8_t log2p_bias;
202
203 uint8_t min_p;
204 uint8_t max_p;
205
206 int refclk;
207};
208
Ben Skeggs04a39c52010-02-24 10:03:05 +1000209struct nvbios {
210 struct drm_device *dev;
211
Ben Skeggs6ee73862009-12-11 19:24:15 +1000212 uint8_t chip_version;
213
214 uint32_t dactestval;
215 uint32_t tvdactestval;
216 uint8_t digital_min_front_porch;
217 bool fp_no_ddc;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000218
Ben Skeggsd9184fa2010-02-16 11:14:14 +1000219 struct mutex lock;
Ben Skeggs39c9bfb2010-02-09 10:22:29 +1000220
Ben Skeggs6ee73862009-12-11 19:24:15 +1000221 uint8_t data[NV_PROM_SIZE];
222 unsigned int length;
223 bool execute;
224
225 uint8_t major_version;
226 uint8_t feature_byte;
227 bool is_mobile;
228
229 uint32_t fmaxvco, fminvco;
230
231 bool old_style_init;
232 uint16_t init_script_tbls_ptr;
233 uint16_t extra_init_script_tbl_ptr;
234 uint16_t macro_index_tbl_ptr;
235 uint16_t macro_tbl_ptr;
236 uint16_t condition_tbl_ptr;
237 uint16_t io_condition_tbl_ptr;
238 uint16_t io_flag_condition_tbl_ptr;
239 uint16_t init_function_tbl_ptr;
240
241 uint16_t pll_limit_tbl_ptr;
242 uint16_t ram_restrict_tbl_ptr;
Marcin Koƛcielnicki37383652009-12-15 00:37:31 +0000243 uint8_t ram_restrict_group_count;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000244
245 uint16_t some_script_ptr; /* BIT I + 14 */
246 uint16_t init96_tbl_ptr; /* BIT I + 16 */
247
Ben Skeggs7f245b22010-02-24 09:56:18 +1000248 struct dcb_table dcb;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000249
250 struct {
251 int crtchead;
252 /* these need remembering across suspend */
253 uint32_t saved_nv_pfb_cfg0;
254 } state;
255
256 struct {
257 struct dcb_entry *output;
258 uint16_t script_table_ptr;
259 uint16_t dp_table_ptr;
260 } display;
261
262 struct {
263 uint16_t fptablepointer; /* also used by tmds */
264 uint16_t fpxlatetableptr;
265 int xlatwidth;
266 uint16_t lvdsmanufacturerpointer;
267 uint16_t fpxlatemanufacturertableptr;
268 uint16_t mode_ptr;
269 uint16_t xlated_entry;
270 bool power_off_for_reset;
271 bool reset_after_pclk_change;
272 bool dual_link;
273 bool link_c_increment;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000274 bool if_is_24bit;
275 int duallink_transition_clk;
276 uint8_t strapless_is_24bit;
277 uint8_t *edid;
278
279 /* will need resetting after suspend */
280 int last_script_invoc;
281 bool lvds_init_run;
282 } fp;
283
284 struct {
285 uint16_t output0_script_ptr;
286 uint16_t output1_script_ptr;
287 } tmds;
288
289 struct {
290 uint16_t mem_init_tbl_ptr;
291 uint16_t sdr_seq_tbl_ptr;
292 uint16_t ddr_seq_tbl_ptr;
293
294 struct {
295 uint8_t crt, tv, panel;
296 } i2c_indices;
297
298 uint16_t lvds_single_a_script_ptr;
299 } legacy;
300};
301
302#endif