]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/gpu/drm/nouveau/nouveau_bios.h
Merge tag 'char-misc-3.3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh...
[mirror_ubuntu-artful-kernel.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
f9f9f536
BS
37#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})
4709bff0
BS
45
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
e7cc51c5 56enum dcb_gpio_tag {
7df898b1
BS
57 DCB_GPIO_PANEL_POWER = 0x01,
58 DCB_GPIO_TVDAC0 = 0x0c,
e7cc51c5 59 DCB_GPIO_TVDAC1 = 0x2d,
7df898b1 60 DCB_GPIO_PWM_FAN = 0x09,
11b7d895 61 DCB_GPIO_FAN_SENSE = 0x3d,
befb51e9 62 DCB_GPIO_UNUSED = 0xff
e7cc51c5
BS
63};
64
e7cc51c5
BS
65enum dcb_connector_type {
66 DCB_CONNECTOR_VGA = 0x00,
67 DCB_CONNECTOR_TV_0 = 0x10,
68 DCB_CONNECTOR_TV_1 = 0x11,
69 DCB_CONNECTOR_TV_3 = 0x13,
70 DCB_CONNECTOR_DVI_I = 0x30,
71 DCB_CONNECTOR_DVI_D = 0x31,
72 DCB_CONNECTOR_LVDS = 0x40,
8c3f6bb9 73 DCB_CONNECTOR_LVDS_SPWG = 0x41,
e7cc51c5
BS
74 DCB_CONNECTOR_DP = 0x46,
75 DCB_CONNECTOR_eDP = 0x47,
76 DCB_CONNECTOR_HDMI_0 = 0x60,
77 DCB_CONNECTOR_HDMI_1 = 0x61,
f66fa771 78 DCB_CONNECTOR_NONE = 0xff
e7cc51c5
BS
79};
80
e7cc51c5
BS
81enum dcb_type {
82 OUTPUT_ANALOG = 0,
83 OUTPUT_TV = 1,
84 OUTPUT_TMDS = 2,
85 OUTPUT_LVDS = 3,
86 OUTPUT_DP = 6,
44a1246f 87 OUTPUT_EOL = 14, /* DCB 4.0+, appears to be end-of-list */
6b5a81a2 88 OUTPUT_UNUSED = 15,
e7cc51c5
BS
89 OUTPUT_ANY = -1
90};
91
6ee73861
BS
92struct dcb_entry {
93 int index; /* may not be raw dcb index if merging has happened */
e7cc51c5 94 enum dcb_type type;
6ee73861
BS
95 uint8_t i2c_index;
96 uint8_t heads;
97 uint8_t connector;
98 uint8_t bus;
99 uint8_t location;
100 uint8_t or;
101 bool duallink_possible;
102 union {
103 struct sor_conf {
104 int link;
105 } sorconf;
106 struct {
107 int maxfreq;
108 } crtconf;
109 struct {
110 struct sor_conf sor;
111 bool use_straps_for_mode;
a6ed76d7 112 bool use_acpi_for_edid;
6ee73861
BS
113 bool use_power_scripts;
114 } lvdsconf;
115 struct {
116 bool has_component_output;
117 } tvconf;
118 struct {
119 struct sor_conf sor;
120 int link_nr;
121 int link_bw;
122 } dpconf;
123 struct {
124 struct sor_conf sor;
4a9f822f 125 int slave_addr;
6ee73861
BS
126 } tmdsconf;
127 };
128 bool i2c_upper_default;
129};
130
7f245b20 131struct dcb_table {
6ee73861 132 uint8_t version;
7f245b20
BS
133 int entries;
134 struct dcb_entry entry[DCB_MAX_NUM_ENTRIES];
6ee73861
BS
135};
136
6ee73861
BS
137enum nouveau_or {
138 OUTPUT_A = (1 << 0),
139 OUTPUT_B = (1 << 1),
140 OUTPUT_C = (1 << 2)
141};
142
143enum LVDS_script {
144 /* Order *does* matter here */
145 LVDS_INIT = 1,
146 LVDS_RESET,
147 LVDS_BACKLIGHT_ON,
148 LVDS_BACKLIGHT_OFF,
149 LVDS_PANEL_ON,
150 LVDS_PANEL_OFF
151};
152
855a95e4
BS
153/* these match types in pll limits table version 0x40,
154 * nouveau uses them on all chipsets internally where a
155 * specific pll needs to be referenced, but the exact
156 * register isn't known.
157 */
6ee73861 158enum pll_types {
855a95e4
BS
159 PLL_CORE = 0x01,
160 PLL_SHADER = 0x02,
161 PLL_UNK03 = 0x03,
162 PLL_MEMORY = 0x04,
d4cca9e1 163 PLL_VDEC = 0x05,
855a95e4
BS
164 PLL_UNK40 = 0x40,
165 PLL_UNK41 = 0x41,
166 PLL_UNK42 = 0x42,
167 PLL_VPLL0 = 0x80,
168 PLL_VPLL1 = 0x81,
169 PLL_MAX = 0xff
6ee73861
BS
170};
171
172struct pll_lims {
855a95e4
BS
173 u32 reg;
174
6ee73861
BS
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;
4709bff0
BS
207 enum {
208 NVBIOS_BMP,
209 NVBIOS_BIT
210 } type;
211 uint16_t offset;
04a39c57 212
6ee73861
BS
213 uint8_t chip_version;
214
215 uint32_t dactestval;
216 uint32_t tvdactestval;
217 uint8_t digital_min_front_porch;
218 bool fp_no_ddc;
6ee73861 219
c7ca4d1b 220 spinlock_t lock;
39c9bfb4 221
6ee73861
BS
222 uint8_t data[NV_PROM_SIZE];
223 unsigned int length;
224 bool execute;
225
226 uint8_t major_version;
227 uint8_t feature_byte;
228 bool is_mobile;
229
230 uint32_t fmaxvco, fminvco;
231
232 bool old_style_init;
233 uint16_t init_script_tbls_ptr;
234 uint16_t extra_init_script_tbl_ptr;
235 uint16_t macro_index_tbl_ptr;
236 uint16_t macro_tbl_ptr;
237 uint16_t condition_tbl_ptr;
238 uint16_t io_condition_tbl_ptr;
239 uint16_t io_flag_condition_tbl_ptr;
240 uint16_t init_function_tbl_ptr;
241
242 uint16_t pll_limit_tbl_ptr;
243 uint16_t ram_restrict_tbl_ptr;
37383650 244 uint8_t ram_restrict_group_count;
6ee73861
BS
245
246 uint16_t some_script_ptr; /* BIT I + 14 */
247 uint16_t init96_tbl_ptr; /* BIT I + 16 */
248
7f245b20 249 struct dcb_table dcb;
6ee73861
BS
250
251 struct {
252 int crtchead;
6ee73861
BS
253 } state;
254
255 struct {
256 struct dcb_entry *output;
02e4f587 257 int crtc;
6ee73861 258 uint16_t script_table_ptr;
6ee73861
BS
259 } display;
260
261 struct {
262 uint16_t fptablepointer; /* also used by tmds */
263 uint16_t fpxlatetableptr;
264 int xlatwidth;
265 uint16_t lvdsmanufacturerpointer;
266 uint16_t fpxlatemanufacturertableptr;
267 uint16_t mode_ptr;
268 uint16_t xlated_entry;
269 bool power_off_for_reset;
270 bool reset_after_pclk_change;
271 bool dual_link;
272 bool link_c_increment;
6ee73861
BS
273 bool if_is_24bit;
274 int duallink_transition_clk;
275 uint8_t strapless_is_24bit;
276 uint8_t *edid;
277
278 /* will need resetting after suspend */
279 int last_script_invoc;
280 bool lvds_init_run;
281 } fp;
282
283 struct {
284 uint16_t output0_script_ptr;
285 uint16_t output1_script_ptr;
286 } tmds;
287
288 struct {
289 uint16_t mem_init_tbl_ptr;
290 uint16_t sdr_seq_tbl_ptr;
291 uint16_t ddr_seq_tbl_ptr;
292
293 struct {
294 uint8_t crt, tv, panel;
295 } i2c_indices;
296
297 uint16_t lvds_single_a_script_ptr;
298 } legacy;
299};
300
6b5a81a2 301void *dcb_table(struct drm_device *);
b4c26818 302void *dcb_outp(struct drm_device *, u8 idx);
6b5a81a2
BS
303int dcb_outp_foreach(struct drm_device *, void *data,
304 int (*)(struct drm_device *, void *, int idx, u8 *outp));
befb51e9
BS
305u8 *dcb_conntab(struct drm_device *);
306u8 *dcb_conn(struct drm_device *, u8 idx);
6b5a81a2 307
6ee73861 308#endif