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