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