blob: b9f2da394f89a93c3279953ebc20c9e253f6250e [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 Skeggsf9f9f532011-10-12 16:48:48 +100037#define ROM16(x) le16_to_cpu(*(u16 *)&(x))
38#define ROM32(x) le32_to_cpu(*(u32 *)&(x))
39#define ROM48(x) ({ u8 *p = &(x); (u64)ROM16(p[4]) << 32 | ROM32(p[0]); })
40#define ROM64(x) le64_to_cpu(*(u64 *)&(x))
41#define ROMPTR(d,x) ({ \
42 struct drm_nouveau_private *dev_priv = (d)->dev_private; \
43 ROM16(x) ? &dev_priv->vbios.data[ROM16(x)] : NULL; \
44})
Ben Skeggs4709bff2010-09-13 15:18:40 +100045
46struct bit_entry {
47 uint8_t id;
48 uint8_t version;
49 uint16_t length;
50 uint16_t offset;
51 uint8_t *data;
52};
53
54int bit_table(struct drm_device *, u8 id, struct bit_entry *);
55
Ben Skeggse7cc51c2010-02-24 10:31:39 +100056struct dcb_i2c_entry {
Ben Skeggs07fee3d2010-04-24 03:05:56 +100057 uint32_t entry;
Ben Skeggse7cc51c2010-02-24 10:31:39 +100058 uint8_t port_type;
59 uint8_t read, write;
60 struct nouveau_i2c_chan *chan;
61};
62
63enum dcb_gpio_tag {
64 DCB_GPIO_TVDAC0 = 0xc,
65 DCB_GPIO_TVDAC1 = 0x2d,
Martin Peres11b7d892011-08-15 11:10:30 +100066 DCB_GPIO_PWM_FAN = 0x9,
67 DCB_GPIO_FAN_SENSE = 0x3d,
Ben Skeggse7cc51c2010-02-24 10:31:39 +100068};
69
70struct dcb_gpio_entry {
71 enum dcb_gpio_tag tag;
72 int line;
Ben Skeggs2535d712010-04-07 12:00:14 +100073 uint32_t entry;
Ben Skeggs02faec02010-04-07 12:05:32 +100074 uint8_t state_default;
75 uint8_t state[2];
Ben Skeggse7cc51c2010-02-24 10:31:39 +100076};
77
78struct dcb_gpio_table {
79 int entries;
80 struct dcb_gpio_entry entry[DCB_MAX_NUM_GPIO_ENTRIES];
81};
82
83enum dcb_connector_type {
84 DCB_CONNECTOR_VGA = 0x00,
85 DCB_CONNECTOR_TV_0 = 0x10,
86 DCB_CONNECTOR_TV_1 = 0x11,
87 DCB_CONNECTOR_TV_3 = 0x13,
88 DCB_CONNECTOR_DVI_I = 0x30,
89 DCB_CONNECTOR_DVI_D = 0x31,
90 DCB_CONNECTOR_LVDS = 0x40,
Ben Skeggs8c3f6bb2011-04-18 09:57:48 +100091 DCB_CONNECTOR_LVDS_SPWG = 0x41,
Ben Skeggse7cc51c2010-02-24 10:31:39 +100092 DCB_CONNECTOR_DP = 0x46,
93 DCB_CONNECTOR_eDP = 0x47,
94 DCB_CONNECTOR_HDMI_0 = 0x60,
95 DCB_CONNECTOR_HDMI_1 = 0x61,
Ben Skeggsf66fa772010-02-24 11:09:20 +100096 DCB_CONNECTOR_NONE = 0xff
Ben Skeggse7cc51c2010-02-24 10:31:39 +100097};
98
99struct dcb_connector_table_entry {
Ben Skeggsd544d622010-03-10 15:52:43 +1000100 uint8_t index;
Ben Skeggse7cc51c2010-02-24 10:31:39 +1000101 uint32_t entry;
102 enum dcb_connector_type type;
Ben Skeggsd544d622010-03-10 15:52:43 +1000103 uint8_t index2;
Ben Skeggse7cc51c2010-02-24 10:31:39 +1000104 uint8_t gpio_tag;
Ben Skeggs8f1a6082010-06-28 14:35:50 +1000105 void *drm;
Ben Skeggse7cc51c2010-02-24 10:31:39 +1000106};
107
108struct dcb_connector_table {
109 int entries;
110 struct dcb_connector_table_entry entry[DCB_MAX_NUM_CONNECTOR_ENTRIES];
111};
112
113enum dcb_type {
114 OUTPUT_ANALOG = 0,
115 OUTPUT_TV = 1,
116 OUTPUT_TMDS = 2,
117 OUTPUT_LVDS = 3,
118 OUTPUT_DP = 6,
Ben Skeggs44a12462010-08-17 14:34:00 +1000119 OUTPUT_EOL = 14, /* DCB 4.0+, appears to be end-of-list */
Ben Skeggs6b5a81a2011-11-10 15:42:55 +1000120 OUTPUT_UNUSED = 15,
Ben Skeggse7cc51c2010-02-24 10:31:39 +1000121 OUTPUT_ANY = -1
122};
123
Ben Skeggs6ee73862009-12-11 19:24:15 +1000124struct dcb_entry {
125 int index; /* may not be raw dcb index if merging has happened */
Ben Skeggse7cc51c2010-02-24 10:31:39 +1000126 enum dcb_type type;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000127 uint8_t i2c_index;
128 uint8_t heads;
129 uint8_t connector;
130 uint8_t bus;
131 uint8_t location;
132 uint8_t or;
133 bool duallink_possible;
134 union {
135 struct sor_conf {
136 int link;
137 } sorconf;
138 struct {
139 int maxfreq;
140 } crtconf;
141 struct {
142 struct sor_conf sor;
143 bool use_straps_for_mode;
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000144 bool use_acpi_for_edid;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000145 bool use_power_scripts;
146 } lvdsconf;
147 struct {
148 bool has_component_output;
149 } tvconf;
150 struct {
151 struct sor_conf sor;
152 int link_nr;
153 int link_bw;
154 } dpconf;
155 struct {
156 struct sor_conf sor;
Francisco Jerez4a9f8222010-07-20 16:48:08 +0200157 int slave_addr;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000158 } tmdsconf;
159 };
160 bool i2c_upper_default;
161};
162
Ben Skeggs7f245b22010-02-24 09:56:18 +1000163struct dcb_table {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000164 uint8_t version;
165
Ben Skeggs7f245b22010-02-24 09:56:18 +1000166 int entries;
167 struct dcb_entry entry[DCB_MAX_NUM_ENTRIES];
Ben Skeggs6ee73862009-12-11 19:24:15 +1000168
169 uint8_t *i2c_table;
170 uint8_t i2c_default_indices;
Ben Skeggs7f245b22010-02-24 09:56:18 +1000171 struct dcb_i2c_entry i2c[DCB_MAX_NUM_I2C_ENTRIES];
Ben Skeggs6ee73862009-12-11 19:24:15 +1000172
173 uint16_t gpio_table_ptr;
Ben Skeggsa6678b22010-02-24 09:46:27 +1000174 struct dcb_gpio_table gpio;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000175 uint16_t connector_table_ptr;
176 struct dcb_connector_table connector;
177};
178
Ben Skeggs6ee73862009-12-11 19:24:15 +1000179enum nouveau_or {
180 OUTPUT_A = (1 << 0),
181 OUTPUT_B = (1 << 1),
182 OUTPUT_C = (1 << 2)
183};
184
185enum LVDS_script {
186 /* Order *does* matter here */
187 LVDS_INIT = 1,
188 LVDS_RESET,
189 LVDS_BACKLIGHT_ON,
190 LVDS_BACKLIGHT_OFF,
191 LVDS_PANEL_ON,
192 LVDS_PANEL_OFF
193};
194
Ben Skeggs855a95e2010-09-16 15:25:25 +1000195/* these match types in pll limits table version 0x40,
196 * nouveau uses them on all chipsets internally where a
197 * specific pll needs to be referenced, but the exact
198 * register isn't known.
199 */
Ben Skeggs6ee73862009-12-11 19:24:15 +1000200enum pll_types {
Ben Skeggs855a95e2010-09-16 15:25:25 +1000201 PLL_CORE = 0x01,
202 PLL_SHADER = 0x02,
203 PLL_UNK03 = 0x03,
204 PLL_MEMORY = 0x04,
Martin Peresd4cca9e2011-10-06 23:47:58 +0200205 PLL_VDEC = 0x05,
Ben Skeggs855a95e2010-09-16 15:25:25 +1000206 PLL_UNK40 = 0x40,
207 PLL_UNK41 = 0x41,
208 PLL_UNK42 = 0x42,
209 PLL_VPLL0 = 0x80,
210 PLL_VPLL1 = 0x81,
211 PLL_MAX = 0xff
Ben Skeggs6ee73862009-12-11 19:24:15 +1000212};
213
214struct pll_lims {
Ben Skeggs855a95e2010-09-16 15:25:25 +1000215 u32 reg;
216
Ben Skeggs6ee73862009-12-11 19:24:15 +1000217 struct {
218 int minfreq;
219 int maxfreq;
220 int min_inputfreq;
221 int max_inputfreq;
222
223 uint8_t min_m;
224 uint8_t max_m;
225 uint8_t min_n;
226 uint8_t max_n;
227 } vco1, vco2;
228
229 uint8_t max_log2p;
230 /*
231 * for most pre nv50 cards setting a log2P of 7 (the common max_log2p
232 * value) is no different to 6 (at least for vplls) so allowing the MNP
233 * calc to use 7 causes the generated clock to be out by a factor of 2.
234 * however, max_log2p cannot be fixed-up during parsing as the
235 * unmodified max_log2p value is still needed for setting mplls, hence
236 * an additional max_usable_log2p member
237 */
238 uint8_t max_usable_log2p;
239 uint8_t log2p_bias;
240
241 uint8_t min_p;
242 uint8_t max_p;
243
244 int refclk;
245};
246
Ben Skeggs04a39c52010-02-24 10:03:05 +1000247struct nvbios {
248 struct drm_device *dev;
Ben Skeggs4709bff2010-09-13 15:18:40 +1000249 enum {
250 NVBIOS_BMP,
251 NVBIOS_BIT
252 } type;
253 uint16_t offset;
Ben Skeggs04a39c52010-02-24 10:03:05 +1000254
Ben Skeggs6ee73862009-12-11 19:24:15 +1000255 uint8_t chip_version;
256
257 uint32_t dactestval;
258 uint32_t tvdactestval;
259 uint8_t digital_min_front_porch;
260 bool fp_no_ddc;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000261
Ben Skeggsc7ca4d12011-02-03 20:10:49 +1000262 spinlock_t lock;
Ben Skeggs39c9bfb2010-02-09 10:22:29 +1000263
Ben Skeggs6ee73862009-12-11 19:24:15 +1000264 uint8_t data[NV_PROM_SIZE];
265 unsigned int length;
266 bool execute;
267
268 uint8_t major_version;
269 uint8_t feature_byte;
270 bool is_mobile;
271
272 uint32_t fmaxvco, fminvco;
273
274 bool old_style_init;
275 uint16_t init_script_tbls_ptr;
276 uint16_t extra_init_script_tbl_ptr;
277 uint16_t macro_index_tbl_ptr;
278 uint16_t macro_tbl_ptr;
279 uint16_t condition_tbl_ptr;
280 uint16_t io_condition_tbl_ptr;
281 uint16_t io_flag_condition_tbl_ptr;
282 uint16_t init_function_tbl_ptr;
283
284 uint16_t pll_limit_tbl_ptr;
285 uint16_t ram_restrict_tbl_ptr;
Marcin Koƛcielnicki37383652009-12-15 00:37:31 +0000286 uint8_t ram_restrict_group_count;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000287
288 uint16_t some_script_ptr; /* BIT I + 14 */
289 uint16_t init96_tbl_ptr; /* BIT I + 16 */
290
Ben Skeggs7f245b22010-02-24 09:56:18 +1000291 struct dcb_table dcb;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000292
293 struct {
294 int crtchead;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000295 } state;
296
297 struct {
298 struct dcb_entry *output;
Ben Skeggs02e4f582011-07-06 21:21:42 +1000299 int crtc;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000300 uint16_t script_table_ptr;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000301 } display;
302
303 struct {
304 uint16_t fptablepointer; /* also used by tmds */
305 uint16_t fpxlatetableptr;
306 int xlatwidth;
307 uint16_t lvdsmanufacturerpointer;
308 uint16_t fpxlatemanufacturertableptr;
309 uint16_t mode_ptr;
310 uint16_t xlated_entry;
311 bool power_off_for_reset;
312 bool reset_after_pclk_change;
313 bool dual_link;
314 bool link_c_increment;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000315 bool if_is_24bit;
316 int duallink_transition_clk;
317 uint8_t strapless_is_24bit;
318 uint8_t *edid;
319
320 /* will need resetting after suspend */
321 int last_script_invoc;
322 bool lvds_init_run;
323 } fp;
324
325 struct {
326 uint16_t output0_script_ptr;
327 uint16_t output1_script_ptr;
328 } tmds;
329
330 struct {
331 uint16_t mem_init_tbl_ptr;
332 uint16_t sdr_seq_tbl_ptr;
333 uint16_t ddr_seq_tbl_ptr;
334
335 struct {
336 uint8_t crt, tv, panel;
337 } i2c_indices;
338
339 uint16_t lvds_single_a_script_ptr;
340 } legacy;
341};
342
Ben Skeggs6b5a81a2011-11-10 15:42:55 +1000343void *dcb_table(struct drm_device *);
344u8 *dcb_outp(struct drm_device *, u8 idx);
345int dcb_outp_foreach(struct drm_device *, void *data,
346 int (*)(struct drm_device *, void *, int idx, u8 *outp));
347
Ben Skeggs6ee73862009-12-11 19:24:15 +1000348#endif