blob: e9bb14ec8c3b9c3badecc2324d0f5b259314d793 [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"
Ben Skeggs6ee73862009-12-11 19:24:15 +100028
29#define DCB_MAX_NUM_ENTRIES 16
30#define DCB_MAX_NUM_I2C_ENTRIES 16
31#define DCB_MAX_NUM_GPIO_ENTRIES 32
32#define DCB_MAX_NUM_CONNECTOR_ENTRIES 16
33
34#define DCB_LOC_ON_CHIP 0
35
Ben Skeggsf9f9f532011-10-12 16:48:48 +100036#define ROM16(x) le16_to_cpu(*(u16 *)&(x))
37#define ROM32(x) le32_to_cpu(*(u32 *)&(x))
38#define ROM48(x) ({ u8 *p = &(x); (u64)ROM16(p[4]) << 32 | ROM32(p[0]); })
39#define ROM64(x) le64_to_cpu(*(u64 *)&(x))
40#define ROMPTR(d,x) ({ \
41 struct drm_nouveau_private *dev_priv = (d)->dev_private; \
42 ROM16(x) ? &dev_priv->vbios.data[ROM16(x)] : NULL; \
43})
Ben Skeggs4709bff2010-09-13 15:18:40 +100044
45struct bit_entry {
46 uint8_t id;
47 uint8_t version;
48 uint16_t length;
49 uint16_t offset;
50 uint8_t *data;
51};
52
53int bit_table(struct drm_device *, u8 id, struct bit_entry *);
54
Ben Skeggse7cc51c2010-02-24 10:31:39 +100055enum dcb_connector_type {
56 DCB_CONNECTOR_VGA = 0x00,
57 DCB_CONNECTOR_TV_0 = 0x10,
58 DCB_CONNECTOR_TV_1 = 0x11,
59 DCB_CONNECTOR_TV_3 = 0x13,
60 DCB_CONNECTOR_DVI_I = 0x30,
61 DCB_CONNECTOR_DVI_D = 0x31,
Ben Skeggsfa2c1132012-03-22 11:27:15 +100062 DCB_CONNECTOR_DMS59_0 = 0x38,
63 DCB_CONNECTOR_DMS59_1 = 0x39,
Ben Skeggse7cc51c2010-02-24 10:31:39 +100064 DCB_CONNECTOR_LVDS = 0x40,
Ben Skeggs8c3f6bb2011-04-18 09:57:48 +100065 DCB_CONNECTOR_LVDS_SPWG = 0x41,
Ben Skeggse7cc51c2010-02-24 10:31:39 +100066 DCB_CONNECTOR_DP = 0x46,
67 DCB_CONNECTOR_eDP = 0x47,
68 DCB_CONNECTOR_HDMI_0 = 0x60,
69 DCB_CONNECTOR_HDMI_1 = 0x61,
Ben Skeggs4abb4102012-01-12 16:17:16 +100070 DCB_CONNECTOR_DMS59_DP0 = 0x64,
71 DCB_CONNECTOR_DMS59_DP1 = 0x65,
Ben Skeggsf66fa772010-02-24 11:09:20 +100072 DCB_CONNECTOR_NONE = 0xff
Ben Skeggse7cc51c2010-02-24 10:31:39 +100073};
74
Ben Skeggse7cc51c2010-02-24 10:31:39 +100075enum dcb_type {
76 OUTPUT_ANALOG = 0,
77 OUTPUT_TV = 1,
78 OUTPUT_TMDS = 2,
79 OUTPUT_LVDS = 3,
80 OUTPUT_DP = 6,
Ben Skeggs44a12462010-08-17 14:34:00 +100081 OUTPUT_EOL = 14, /* DCB 4.0+, appears to be end-of-list */
Ben Skeggs6b5a81a2011-11-10 15:42:55 +100082 OUTPUT_UNUSED = 15,
Ben Skeggse7cc51c2010-02-24 10:31:39 +100083 OUTPUT_ANY = -1
84};
85
Ben Skeggs6ee73862009-12-11 19:24:15 +100086struct dcb_entry {
87 int index; /* may not be raw dcb index if merging has happened */
Ben Skeggse7cc51c2010-02-24 10:31:39 +100088 enum dcb_type type;
Ben Skeggs6ee73862009-12-11 19:24:15 +100089 uint8_t i2c_index;
90 uint8_t heads;
91 uint8_t connector;
92 uint8_t bus;
93 uint8_t location;
94 uint8_t or;
95 bool duallink_possible;
96 union {
97 struct sor_conf {
98 int link;
99 } sorconf;
100 struct {
101 int maxfreq;
102 } crtconf;
103 struct {
104 struct sor_conf sor;
105 bool use_straps_for_mode;
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000106 bool use_acpi_for_edid;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000107 bool use_power_scripts;
108 } lvdsconf;
109 struct {
110 bool has_component_output;
111 } tvconf;
112 struct {
113 struct sor_conf sor;
114 int link_nr;
115 int link_bw;
116 } dpconf;
117 struct {
118 struct sor_conf sor;
Francisco Jerez4a9f8222010-07-20 16:48:08 +0200119 int slave_addr;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000120 } tmdsconf;
121 };
122 bool i2c_upper_default;
123};
124
Ben Skeggs7f245b22010-02-24 09:56:18 +1000125struct dcb_table {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000126 uint8_t version;
Ben Skeggs7f245b22010-02-24 09:56:18 +1000127 int entries;
128 struct dcb_entry entry[DCB_MAX_NUM_ENTRIES];
Ben Skeggs6ee73862009-12-11 19:24:15 +1000129};
130
Ben Skeggs6ee73862009-12-11 19:24:15 +1000131enum nouveau_or {
132 OUTPUT_A = (1 << 0),
133 OUTPUT_B = (1 << 1),
134 OUTPUT_C = (1 << 2)
135};
136
137enum LVDS_script {
138 /* Order *does* matter here */
139 LVDS_INIT = 1,
140 LVDS_RESET,
141 LVDS_BACKLIGHT_ON,
142 LVDS_BACKLIGHT_OFF,
143 LVDS_PANEL_ON,
144 LVDS_PANEL_OFF
145};
146
Ben Skeggs04a39c52010-02-24 10:03:05 +1000147struct nvbios {
148 struct drm_device *dev;
Ben Skeggs4709bff2010-09-13 15:18:40 +1000149 enum {
150 NVBIOS_BMP,
151 NVBIOS_BIT
152 } type;
153 uint16_t offset;
Ben Skeggs4489b982012-03-07 13:22:50 +1000154 uint32_t length;
155 uint8_t *data;
Ben Skeggs04a39c52010-02-24 10:03:05 +1000156
Ben Skeggs6ee73862009-12-11 19:24:15 +1000157 uint8_t chip_version;
158
159 uint32_t dactestval;
160 uint32_t tvdactestval;
161 uint8_t digital_min_front_porch;
162 bool fp_no_ddc;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000163
Ben Skeggsc7ca4d12011-02-03 20:10:49 +1000164 spinlock_t lock;
Ben Skeggs39c9bfb2010-02-09 10:22:29 +1000165
Ben Skeggs6ee73862009-12-11 19:24:15 +1000166 bool execute;
167
168 uint8_t major_version;
169 uint8_t feature_byte;
170 bool is_mobile;
171
172 uint32_t fmaxvco, fminvco;
173
174 bool old_style_init;
175 uint16_t init_script_tbls_ptr;
176 uint16_t extra_init_script_tbl_ptr;
177 uint16_t macro_index_tbl_ptr;
178 uint16_t macro_tbl_ptr;
179 uint16_t condition_tbl_ptr;
180 uint16_t io_condition_tbl_ptr;
181 uint16_t io_flag_condition_tbl_ptr;
182 uint16_t init_function_tbl_ptr;
183
184 uint16_t pll_limit_tbl_ptr;
185 uint16_t ram_restrict_tbl_ptr;
Marcin Koƛcielnicki37383652009-12-15 00:37:31 +0000186 uint8_t ram_restrict_group_count;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000187
188 uint16_t some_script_ptr; /* BIT I + 14 */
189 uint16_t init96_tbl_ptr; /* BIT I + 16 */
190
Ben Skeggs7f245b22010-02-24 09:56:18 +1000191 struct dcb_table dcb;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000192
193 struct {
194 int crtchead;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000195 } state;
196
197 struct {
198 struct dcb_entry *output;
Ben Skeggs02e4f582011-07-06 21:21:42 +1000199 int crtc;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000200 uint16_t script_table_ptr;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000201 } display;
202
203 struct {
204 uint16_t fptablepointer; /* also used by tmds */
205 uint16_t fpxlatetableptr;
206 int xlatwidth;
207 uint16_t lvdsmanufacturerpointer;
208 uint16_t fpxlatemanufacturertableptr;
209 uint16_t mode_ptr;
210 uint16_t xlated_entry;
211 bool power_off_for_reset;
212 bool reset_after_pclk_change;
213 bool dual_link;
214 bool link_c_increment;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000215 bool if_is_24bit;
216 int duallink_transition_clk;
217 uint8_t strapless_is_24bit;
218 uint8_t *edid;
219
220 /* will need resetting after suspend */
221 int last_script_invoc;
222 bool lvds_init_run;
223 } fp;
224
225 struct {
226 uint16_t output0_script_ptr;
227 uint16_t output1_script_ptr;
228 } tmds;
229
230 struct {
231 uint16_t mem_init_tbl_ptr;
232 uint16_t sdr_seq_tbl_ptr;
233 uint16_t ddr_seq_tbl_ptr;
234
235 struct {
236 uint8_t crt, tv, panel;
237 } i2c_indices;
238
239 uint16_t lvds_single_a_script_ptr;
240 } legacy;
241};
242
Ben Skeggse0996ae2012-07-10 12:20:17 +1000243void *olddcb_table(struct drm_device *);
244void *olddcb_outp(struct drm_device *, u8 idx);
245int olddcb_outp_foreach(struct drm_device *, void *data,
Ben Skeggs6b5a81a2011-11-10 15:42:55 +1000246 int (*)(struct drm_device *, void *, int idx, u8 *outp));
Ben Skeggsbefb51e2011-11-18 10:23:59 +1000247u8 *dcb_conntab(struct drm_device *);
248u8 *dcb_conn(struct drm_device *, u8 idx);
Ben Skeggs6b5a81a2011-11-10 15:42:55 +1000249
Ben Skeggs6ee73862009-12-11 19:24:15 +1000250#endif