blob: ad6c2d4520ae56ff40676d30d9e8ce86b5b7e07b [file] [log] [blame]
Ben Skeggs6ee73862009-12-11 19:24:15 +10001/*
2 * Copyright 2005-2006 Erik Waling
3 * Copyright 2006 Stephane Marchesin
4 * Copyright 2007-2009 Stuart Bennett
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
21 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24
25#include "drmP.h"
26#define NV_DEBUG_NOTRACE
27#include "nouveau_drv.h"
28#include "nouveau_hw.h"
29
30/* these defines are made up */
31#define NV_CIO_CRE_44_HEADA 0x0
32#define NV_CIO_CRE_44_HEADB 0x3
33#define FEATURE_MOBILE 0x10 /* also FEATURE_QUADRO for BMP */
34#define LEGACY_I2C_CRT 0x80
35#define LEGACY_I2C_PANEL 0x81
36#define LEGACY_I2C_TV 0x82
37
38#define EDID1_LEN 128
39
40#define BIOSLOG(sip, fmt, arg...) NV_DEBUG(sip->dev, fmt, ##arg)
41#define LOG_OLD_VALUE(x)
42
43#define ROM16(x) le16_to_cpu(*(uint16_t *)&(x))
44#define ROM32(x) le32_to_cpu(*(uint32_t *)&(x))
45
46struct init_exec {
47 bool execute;
48 bool repeat;
49};
50
51static bool nv_cksum(const uint8_t *data, unsigned int length)
52{
53 /*
54 * There's a few checksums in the BIOS, so here's a generic checking
55 * function.
56 */
57 int i;
58 uint8_t sum = 0;
59
60 for (i = 0; i < length; i++)
61 sum += data[i];
62
63 if (sum)
64 return true;
65
66 return false;
67}
68
69static int
70score_vbios(struct drm_device *dev, const uint8_t *data, const bool writeable)
71{
72 if (!(data[0] == 0x55 && data[1] == 0xAA)) {
73 NV_TRACEWARN(dev, "... BIOS signature not found\n");
74 return 0;
75 }
76
77 if (nv_cksum(data, data[2] * 512)) {
78 NV_TRACEWARN(dev, "... BIOS checksum invalid\n");
79 /* if a ro image is somewhat bad, it's probably all rubbish */
80 return writeable ? 2 : 1;
81 } else
82 NV_TRACE(dev, "... appears to be valid\n");
83
84 return 3;
85}
86
87static void load_vbios_prom(struct drm_device *dev, uint8_t *data)
88{
89 struct drm_nouveau_private *dev_priv = dev->dev_private;
90 uint32_t pci_nv_20, save_pci_nv_20;
91 int pcir_ptr;
92 int i;
93
94 if (dev_priv->card_type >= NV_50)
95 pci_nv_20 = 0x88050;
96 else
97 pci_nv_20 = NV_PBUS_PCI_NV_20;
98
99 /* enable ROM access */
100 save_pci_nv_20 = nvReadMC(dev, pci_nv_20);
101 nvWriteMC(dev, pci_nv_20,
102 save_pci_nv_20 & ~NV_PBUS_PCI_NV_20_ROM_SHADOW_ENABLED);
103
104 /* bail if no rom signature */
105 if (nv_rd08(dev, NV_PROM_OFFSET) != 0x55 ||
106 nv_rd08(dev, NV_PROM_OFFSET + 1) != 0xaa)
107 goto out;
108
109 /* additional check (see note below) - read PCI record header */
110 pcir_ptr = nv_rd08(dev, NV_PROM_OFFSET + 0x18) |
111 nv_rd08(dev, NV_PROM_OFFSET + 0x19) << 8;
112 if (nv_rd08(dev, NV_PROM_OFFSET + pcir_ptr) != 'P' ||
113 nv_rd08(dev, NV_PROM_OFFSET + pcir_ptr + 1) != 'C' ||
114 nv_rd08(dev, NV_PROM_OFFSET + pcir_ptr + 2) != 'I' ||
115 nv_rd08(dev, NV_PROM_OFFSET + pcir_ptr + 3) != 'R')
116 goto out;
117
118 /* on some 6600GT/6800LE prom reads are messed up. nvclock alleges a
119 * a good read may be obtained by waiting or re-reading (cargocult: 5x)
120 * each byte. we'll hope pramin has something usable instead
121 */
122 for (i = 0; i < NV_PROM_SIZE; i++)
123 data[i] = nv_rd08(dev, NV_PROM_OFFSET + i);
124
125out:
126 /* disable ROM access */
127 nvWriteMC(dev, pci_nv_20,
128 save_pci_nv_20 | NV_PBUS_PCI_NV_20_ROM_SHADOW_ENABLED);
129}
130
131static void load_vbios_pramin(struct drm_device *dev, uint8_t *data)
132{
133 struct drm_nouveau_private *dev_priv = dev->dev_private;
134 uint32_t old_bar0_pramin = 0;
135 int i;
136
137 if (dev_priv->card_type >= NV_50) {
138 uint32_t vbios_vram = (nv_rd32(dev, 0x619f04) & ~0xff) << 8;
139
140 if (!vbios_vram)
141 vbios_vram = (nv_rd32(dev, 0x1700) << 16) + 0xf0000;
142
143 old_bar0_pramin = nv_rd32(dev, 0x1700);
144 nv_wr32(dev, 0x1700, vbios_vram >> 16);
145 }
146
147 /* bail if no rom signature */
148 if (nv_rd08(dev, NV_PRAMIN_OFFSET) != 0x55 ||
149 nv_rd08(dev, NV_PRAMIN_OFFSET + 1) != 0xaa)
150 goto out;
151
152 for (i = 0; i < NV_PROM_SIZE; i++)
153 data[i] = nv_rd08(dev, NV_PRAMIN_OFFSET + i);
154
155out:
156 if (dev_priv->card_type >= NV_50)
157 nv_wr32(dev, 0x1700, old_bar0_pramin);
158}
159
160static void load_vbios_pci(struct drm_device *dev, uint8_t *data)
161{
162 void __iomem *rom = NULL;
163 size_t rom_len;
164 int ret;
165
166 ret = pci_enable_rom(dev->pdev);
167 if (ret)
168 return;
169
170 rom = pci_map_rom(dev->pdev, &rom_len);
171 if (!rom)
172 goto out;
173 memcpy_fromio(data, rom, rom_len);
174 pci_unmap_rom(dev->pdev, rom);
175
176out:
177 pci_disable_rom(dev->pdev);
178}
179
180struct methods {
181 const char desc[8];
182 void (*loadbios)(struct drm_device *, uint8_t *);
183 const bool rw;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000184};
185
186static struct methods nv04_methods[] = {
187 { "PROM", load_vbios_prom, false },
188 { "PRAMIN", load_vbios_pramin, true },
189 { "PCIROM", load_vbios_pci, true },
Ben Skeggs6ee73862009-12-11 19:24:15 +1000190};
191
192static struct methods nv50_methods[] = {
193 { "PRAMIN", load_vbios_pramin, true },
194 { "PROM", load_vbios_prom, false },
195 { "PCIROM", load_vbios_pci, true },
Ben Skeggs6ee73862009-12-11 19:24:15 +1000196};
197
Marcin Kościelnicki657b6242009-12-15 00:37:30 +0000198#define METHODCNT 3
199
Ben Skeggs6ee73862009-12-11 19:24:15 +1000200static bool NVShadowVBIOS(struct drm_device *dev, uint8_t *data)
201{
202 struct drm_nouveau_private *dev_priv = dev->dev_private;
Marcin Kościelnicki657b6242009-12-15 00:37:30 +0000203 struct methods *methods;
204 int i;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000205 int testscore = 3;
Marcin Kościelnicki657b6242009-12-15 00:37:30 +0000206 int scores[METHODCNT];
Ben Skeggs6ee73862009-12-11 19:24:15 +1000207
208 if (nouveau_vbios) {
Marcin Kościelnicki657b6242009-12-15 00:37:30 +0000209 methods = nv04_methods;
210 for (i = 0; i < METHODCNT; i++)
211 if (!strcasecmp(nouveau_vbios, methods[i].desc))
Ben Skeggs6ee73862009-12-11 19:24:15 +1000212 break;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000213
Marcin Kościelnicki657b6242009-12-15 00:37:30 +0000214 if (i < METHODCNT) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000215 NV_INFO(dev, "Attempting to use BIOS image from %s\n",
Marcin Kościelnicki657b6242009-12-15 00:37:30 +0000216 methods[i].desc);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000217
Marcin Kościelnicki657b6242009-12-15 00:37:30 +0000218 methods[i].loadbios(dev, data);
219 if (score_vbios(dev, data, methods[i].rw))
Ben Skeggs6ee73862009-12-11 19:24:15 +1000220 return true;
221 }
222
223 NV_ERROR(dev, "VBIOS source \'%s\' invalid\n", nouveau_vbios);
224 }
225
226 if (dev_priv->card_type < NV_50)
227 methods = nv04_methods;
228 else
229 methods = nv50_methods;
230
Marcin Kościelnicki657b6242009-12-15 00:37:30 +0000231 for (i = 0; i < METHODCNT; i++) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000232 NV_TRACE(dev, "Attempting to load BIOS image from %s\n",
Marcin Kościelnicki657b6242009-12-15 00:37:30 +0000233 methods[i].desc);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000234 data[0] = data[1] = 0; /* avoid reuse of previous image */
Marcin Kościelnicki657b6242009-12-15 00:37:30 +0000235 methods[i].loadbios(dev, data);
236 scores[i] = score_vbios(dev, data, methods[i].rw);
237 if (scores[i] == testscore)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000238 return true;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000239 }
240
241 while (--testscore > 0) {
Marcin Kościelnicki657b6242009-12-15 00:37:30 +0000242 for (i = 0; i < METHODCNT; i++) {
243 if (scores[i] == testscore) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000244 NV_TRACE(dev, "Using BIOS image from %s\n",
Marcin Kościelnicki657b6242009-12-15 00:37:30 +0000245 methods[i].desc);
246 methods[i].loadbios(dev, data);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000247 return true;
248 }
Ben Skeggs6ee73862009-12-11 19:24:15 +1000249 }
250 }
251
252 NV_ERROR(dev, "No valid BIOS image found\n");
253 return false;
254}
255
256struct init_tbl_entry {
257 char *name;
258 uint8_t id;
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000259 int (*handler)(struct nvbios *, uint16_t, struct init_exec *);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000260};
261
262struct bit_entry {
263 uint8_t id[2];
264 uint16_t length;
265 uint16_t offset;
266};
267
268static int parse_init_table(struct nvbios *, unsigned int, struct init_exec *);
269
270#define MACRO_INDEX_SIZE 2
271#define MACRO_SIZE 8
272#define CONDITION_SIZE 12
273#define IO_FLAG_CONDITION_SIZE 9
274#define IO_CONDITION_SIZE 5
275#define MEM_INIT_SIZE 66
276
277static void still_alive(void)
278{
279#if 0
280 sync();
281 msleep(2);
282#endif
283}
284
285static uint32_t
286munge_reg(struct nvbios *bios, uint32_t reg)
287{
288 struct drm_nouveau_private *dev_priv = bios->dev->dev_private;
289 struct dcb_entry *dcbent = bios->display.output;
290
291 if (dev_priv->card_type < NV_50)
292 return reg;
293
294 if (reg & 0x40000000) {
295 BUG_ON(!dcbent);
296
297 reg += (ffs(dcbent->or) - 1) * 0x800;
298 if ((reg & 0x20000000) && !(dcbent->sorconf.link & 1))
299 reg += 0x00000080;
300 }
301
302 reg &= ~0x60000000;
303 return reg;
304}
305
306static int
307valid_reg(struct nvbios *bios, uint32_t reg)
308{
309 struct drm_nouveau_private *dev_priv = bios->dev->dev_private;
310 struct drm_device *dev = bios->dev;
311
312 /* C51 has misaligned regs on purpose. Marvellous */
Ben Skeggs9855e582010-01-12 13:02:19 +1000313 if (reg & 0x2 ||
Ben Skeggs04a39c52010-02-24 10:03:05 +1000314 (reg & 0x1 && dev_priv->vbios.chip_version != 0x51))
Ben Skeggs9855e582010-01-12 13:02:19 +1000315 NV_ERROR(dev, "======= misaligned reg 0x%08X =======\n", reg);
316
317 /* warn on C51 regs that haven't been verified accessible in tracing */
Ben Skeggs04a39c52010-02-24 10:03:05 +1000318 if (reg & 0x1 && dev_priv->vbios.chip_version == 0x51 &&
Ben Skeggs6ee73862009-12-11 19:24:15 +1000319 reg != 0x130d && reg != 0x1311 && reg != 0x60081d)
320 NV_WARN(dev, "=== C51 misaligned reg 0x%08X not verified ===\n",
321 reg);
322
Ben Skeggs9855e582010-01-12 13:02:19 +1000323 if (reg >= (8*1024*1024)) {
324 NV_ERROR(dev, "=== reg 0x%08x out of mapped bounds ===\n", reg);
325 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000326 }
Ben Skeggs6ee73862009-12-11 19:24:15 +1000327
Ben Skeggs9855e582010-01-12 13:02:19 +1000328 return 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000329}
330
331static bool
332valid_idx_port(struct nvbios *bios, uint16_t port)
333{
334 struct drm_nouveau_private *dev_priv = bios->dev->dev_private;
335 struct drm_device *dev = bios->dev;
336
337 /*
338 * If adding more ports here, the read/write functions below will need
339 * updating so that the correct mmio range (PRMCIO, PRMDIO, PRMVIO) is
340 * used for the port in question
341 */
342 if (dev_priv->card_type < NV_50) {
343 if (port == NV_CIO_CRX__COLOR)
344 return true;
345 if (port == NV_VIO_SRX)
346 return true;
347 } else {
348 if (port == NV_CIO_CRX__COLOR)
349 return true;
350 }
351
352 NV_ERROR(dev, "========== unknown indexed io port 0x%04X ==========\n",
353 port);
354
355 return false;
356}
357
358static bool
359valid_port(struct nvbios *bios, uint16_t port)
360{
361 struct drm_device *dev = bios->dev;
362
363 /*
364 * If adding more ports here, the read/write functions below will need
365 * updating so that the correct mmio range (PRMCIO, PRMDIO, PRMVIO) is
366 * used for the port in question
367 */
368 if (port == NV_VIO_VSE2)
369 return true;
370
371 NV_ERROR(dev, "========== unknown io port 0x%04X ==========\n", port);
372
373 return false;
374}
375
376static uint32_t
377bios_rd32(struct nvbios *bios, uint32_t reg)
378{
379 uint32_t data;
380
381 reg = munge_reg(bios, reg);
382 if (!valid_reg(bios, reg))
383 return 0;
384
385 /*
386 * C51 sometimes uses regs with bit0 set in the address. For these
387 * cases there should exist a translation in a BIOS table to an IO
388 * port address which the BIOS uses for accessing the reg
389 *
390 * These only seem to appear for the power control regs to a flat panel,
391 * and the GPIO regs at 0x60081*. In C51 mmio traces the normal regs
392 * for 0x1308 and 0x1310 are used - hence the mask below. An S3
393 * suspend-resume mmio trace from a C51 will be required to see if this
394 * is true for the power microcode in 0x14.., or whether the direct IO
395 * port access method is needed
396 */
397 if (reg & 0x1)
398 reg &= ~0x1;
399
400 data = nv_rd32(bios->dev, reg);
401
402 BIOSLOG(bios, " Read: Reg: 0x%08X, Data: 0x%08X\n", reg, data);
403
404 return data;
405}
406
407static void
408bios_wr32(struct nvbios *bios, uint32_t reg, uint32_t data)
409{
410 struct drm_nouveau_private *dev_priv = bios->dev->dev_private;
411
412 reg = munge_reg(bios, reg);
413 if (!valid_reg(bios, reg))
414 return;
415
416 /* see note in bios_rd32 */
417 if (reg & 0x1)
418 reg &= 0xfffffffe;
419
420 LOG_OLD_VALUE(bios_rd32(bios, reg));
421 BIOSLOG(bios, " Write: Reg: 0x%08X, Data: 0x%08X\n", reg, data);
422
Ben Skeggs04a39c52010-02-24 10:03:05 +1000423 if (dev_priv->vbios.execute) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000424 still_alive();
425 nv_wr32(bios->dev, reg, data);
426 }
427}
428
429static uint8_t
430bios_idxprt_rd(struct nvbios *bios, uint16_t port, uint8_t index)
431{
432 struct drm_nouveau_private *dev_priv = bios->dev->dev_private;
433 struct drm_device *dev = bios->dev;
434 uint8_t data;
435
436 if (!valid_idx_port(bios, port))
437 return 0;
438
439 if (dev_priv->card_type < NV_50) {
440 if (port == NV_VIO_SRX)
441 data = NVReadVgaSeq(dev, bios->state.crtchead, index);
442 else /* assume NV_CIO_CRX__COLOR */
443 data = NVReadVgaCrtc(dev, bios->state.crtchead, index);
444 } else {
445 uint32_t data32;
446
447 data32 = bios_rd32(bios, NV50_PDISPLAY_VGACRTC(index & ~3));
448 data = (data32 >> ((index & 3) << 3)) & 0xff;
449 }
450
451 BIOSLOG(bios, " Indexed IO read: Port: 0x%04X, Index: 0x%02X, "
452 "Head: 0x%02X, Data: 0x%02X\n",
453 port, index, bios->state.crtchead, data);
454 return data;
455}
456
457static void
458bios_idxprt_wr(struct nvbios *bios, uint16_t port, uint8_t index, uint8_t data)
459{
460 struct drm_nouveau_private *dev_priv = bios->dev->dev_private;
461 struct drm_device *dev = bios->dev;
462
463 if (!valid_idx_port(bios, port))
464 return;
465
466 /*
467 * The current head is maintained in the nvbios member state.crtchead.
468 * We trap changes to CR44 and update the head variable and hence the
469 * register set written.
470 * As CR44 only exists on CRTC0, we update crtchead to head0 in advance
471 * of the write, and to head1 after the write
472 */
473 if (port == NV_CIO_CRX__COLOR && index == NV_CIO_CRE_44 &&
474 data != NV_CIO_CRE_44_HEADB)
475 bios->state.crtchead = 0;
476
477 LOG_OLD_VALUE(bios_idxprt_rd(bios, port, index));
478 BIOSLOG(bios, " Indexed IO write: Port: 0x%04X, Index: 0x%02X, "
479 "Head: 0x%02X, Data: 0x%02X\n",
480 port, index, bios->state.crtchead, data);
481
482 if (bios->execute && dev_priv->card_type < NV_50) {
483 still_alive();
484 if (port == NV_VIO_SRX)
485 NVWriteVgaSeq(dev, bios->state.crtchead, index, data);
486 else /* assume NV_CIO_CRX__COLOR */
487 NVWriteVgaCrtc(dev, bios->state.crtchead, index, data);
488 } else
489 if (bios->execute) {
490 uint32_t data32, shift = (index & 3) << 3;
491
492 still_alive();
493
494 data32 = bios_rd32(bios, NV50_PDISPLAY_VGACRTC(index & ~3));
495 data32 &= ~(0xff << shift);
496 data32 |= (data << shift);
497 bios_wr32(bios, NV50_PDISPLAY_VGACRTC(index & ~3), data32);
498 }
499
500 if (port == NV_CIO_CRX__COLOR &&
501 index == NV_CIO_CRE_44 && data == NV_CIO_CRE_44_HEADB)
502 bios->state.crtchead = 1;
503}
504
505static uint8_t
506bios_port_rd(struct nvbios *bios, uint16_t port)
507{
508 uint8_t data, head = bios->state.crtchead;
509
510 if (!valid_port(bios, port))
511 return 0;
512
513 data = NVReadPRMVIO(bios->dev, head, NV_PRMVIO0_OFFSET + port);
514
515 BIOSLOG(bios, " IO read: Port: 0x%04X, Head: 0x%02X, Data: 0x%02X\n",
516 port, head, data);
517
518 return data;
519}
520
521static void
522bios_port_wr(struct nvbios *bios, uint16_t port, uint8_t data)
523{
524 int head = bios->state.crtchead;
525
526 if (!valid_port(bios, port))
527 return;
528
529 LOG_OLD_VALUE(bios_port_rd(bios, port));
530 BIOSLOG(bios, " IO write: Port: 0x%04X, Head: 0x%02X, Data: 0x%02X\n",
531 port, head, data);
532
533 if (!bios->execute)
534 return;
535
536 still_alive();
537 NVWritePRMVIO(bios->dev, head, NV_PRMVIO0_OFFSET + port, data);
538}
539
540static bool
541io_flag_condition_met(struct nvbios *bios, uint16_t offset, uint8_t cond)
542{
543 /*
544 * The IO flag condition entry has 2 bytes for the CRTC port; 1 byte
545 * for the CRTC index; 1 byte for the mask to apply to the value
546 * retrieved from the CRTC; 1 byte for the shift right to apply to the
547 * masked CRTC value; 2 bytes for the offset to the flag array, to
548 * which the shifted value is added; 1 byte for the mask applied to the
549 * value read from the flag array; and 1 byte for the value to compare
550 * against the masked byte from the flag table.
551 */
552
553 uint16_t condptr = bios->io_flag_condition_tbl_ptr + cond * IO_FLAG_CONDITION_SIZE;
554 uint16_t crtcport = ROM16(bios->data[condptr]);
555 uint8_t crtcindex = bios->data[condptr + 2];
556 uint8_t mask = bios->data[condptr + 3];
557 uint8_t shift = bios->data[condptr + 4];
558 uint16_t flagarray = ROM16(bios->data[condptr + 5]);
559 uint8_t flagarraymask = bios->data[condptr + 7];
560 uint8_t cmpval = bios->data[condptr + 8];
561 uint8_t data;
562
563 BIOSLOG(bios, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
564 "Shift: 0x%02X, FlagArray: 0x%04X, FAMask: 0x%02X, "
565 "Cmpval: 0x%02X\n",
566 offset, crtcport, crtcindex, mask, shift, flagarray, flagarraymask, cmpval);
567
568 data = bios_idxprt_rd(bios, crtcport, crtcindex);
569
570 data = bios->data[flagarray + ((data & mask) >> shift)];
571 data &= flagarraymask;
572
573 BIOSLOG(bios, "0x%04X: Checking if 0x%02X equals 0x%02X\n",
574 offset, data, cmpval);
575
576 return (data == cmpval);
577}
578
579static bool
580bios_condition_met(struct nvbios *bios, uint16_t offset, uint8_t cond)
581{
582 /*
583 * The condition table entry has 4 bytes for the address of the
584 * register to check, 4 bytes for a mask to apply to the register and
585 * 4 for a test comparison value
586 */
587
588 uint16_t condptr = bios->condition_tbl_ptr + cond * CONDITION_SIZE;
589 uint32_t reg = ROM32(bios->data[condptr]);
590 uint32_t mask = ROM32(bios->data[condptr + 4]);
591 uint32_t cmpval = ROM32(bios->data[condptr + 8]);
592 uint32_t data;
593
594 BIOSLOG(bios, "0x%04X: Cond: 0x%02X, Reg: 0x%08X, Mask: 0x%08X\n",
595 offset, cond, reg, mask);
596
597 data = bios_rd32(bios, reg) & mask;
598
599 BIOSLOG(bios, "0x%04X: Checking if 0x%08X equals 0x%08X\n",
600 offset, data, cmpval);
601
602 return (data == cmpval);
603}
604
605static bool
606io_condition_met(struct nvbios *bios, uint16_t offset, uint8_t cond)
607{
608 /*
609 * The IO condition entry has 2 bytes for the IO port address; 1 byte
610 * for the index to write to io_port; 1 byte for the mask to apply to
611 * the byte read from io_port+1; and 1 byte for the value to compare
612 * against the masked byte.
613 */
614
615 uint16_t condptr = bios->io_condition_tbl_ptr + cond * IO_CONDITION_SIZE;
616 uint16_t io_port = ROM16(bios->data[condptr]);
617 uint8_t port_index = bios->data[condptr + 2];
618 uint8_t mask = bios->data[condptr + 3];
619 uint8_t cmpval = bios->data[condptr + 4];
620
621 uint8_t data = bios_idxprt_rd(bios, io_port, port_index) & mask;
622
623 BIOSLOG(bios, "0x%04X: Checking if 0x%02X equals 0x%02X\n",
624 offset, data, cmpval);
625
626 return (data == cmpval);
627}
628
629static int
630nv50_pll_set(struct drm_device *dev, uint32_t reg, uint32_t clk)
631{
632 struct drm_nouveau_private *dev_priv = dev->dev_private;
633 uint32_t reg0 = nv_rd32(dev, reg + 0);
634 uint32_t reg1 = nv_rd32(dev, reg + 4);
635 struct nouveau_pll_vals pll;
636 struct pll_lims pll_limits;
637 int ret;
638
639 ret = get_pll_limits(dev, reg, &pll_limits);
640 if (ret)
641 return ret;
642
643 clk = nouveau_calc_pll_mnp(dev, &pll_limits, clk, &pll);
644 if (!clk)
645 return -ERANGE;
646
647 reg0 = (reg0 & 0xfff8ffff) | (pll.log2P << 16);
648 reg1 = (reg1 & 0xffff0000) | (pll.N1 << 8) | pll.M1;
649
Ben Skeggs04a39c52010-02-24 10:03:05 +1000650 if (dev_priv->vbios.execute) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000651 still_alive();
652 nv_wr32(dev, reg + 4, reg1);
653 nv_wr32(dev, reg + 0, reg0);
654 }
655
656 return 0;
657}
658
659static int
660setPLL(struct nvbios *bios, uint32_t reg, uint32_t clk)
661{
662 struct drm_device *dev = bios->dev;
663 struct drm_nouveau_private *dev_priv = dev->dev_private;
664 /* clk in kHz */
665 struct pll_lims pll_lim;
666 struct nouveau_pll_vals pllvals;
667 int ret;
668
669 if (dev_priv->card_type >= NV_50)
670 return nv50_pll_set(dev, reg, clk);
671
672 /* high regs (such as in the mac g5 table) are not -= 4 */
673 ret = get_pll_limits(dev, reg > 0x405c ? reg : reg - 4, &pll_lim);
674 if (ret)
675 return ret;
676
677 clk = nouveau_calc_pll_mnp(dev, &pll_lim, clk, &pllvals);
678 if (!clk)
679 return -ERANGE;
680
681 if (bios->execute) {
682 still_alive();
683 nouveau_hw_setpll(dev, reg, &pllvals);
684 }
685
686 return 0;
687}
688
689static int dcb_entry_idx_from_crtchead(struct drm_device *dev)
690{
691 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +1000692 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000693
694 /*
695 * For the results of this function to be correct, CR44 must have been
696 * set (using bios_idxprt_wr to set crtchead), CR58 set for CR57 = 0,
697 * and the DCB table parsed, before the script calling the function is
698 * run. run_digital_op_script is example of how to do such setup
699 */
700
701 uint8_t dcb_entry = NVReadVgaCrtc5758(dev, bios->state.crtchead, 0);
702
Ben Skeggs7f245b22010-02-24 09:56:18 +1000703 if (dcb_entry > bios->dcb.entries) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000704 NV_ERROR(dev, "CR58 doesn't have a valid DCB entry currently "
705 "(%02X)\n", dcb_entry);
706 dcb_entry = 0x7f; /* unused / invalid marker */
707 }
708
709 return dcb_entry;
710}
711
712static struct nouveau_i2c_chan *
713init_i2c_device_find(struct drm_device *dev, int i2c_index)
714{
715 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +1000716 struct dcb_table *dcb = &dev_priv->vbios.dcb;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000717
718 if (i2c_index == 0xff) {
719 /* note: dcb_entry_idx_from_crtchead needs pre-script set-up */
720 int idx = dcb_entry_idx_from_crtchead(dev), shift = 0;
Ben Skeggs7f245b22010-02-24 09:56:18 +1000721 int default_indices = dcb->i2c_default_indices;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000722
Ben Skeggs7f245b22010-02-24 09:56:18 +1000723 if (idx != 0x7f && dcb->entry[idx].i2c_upper_default)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000724 shift = 4;
725
726 i2c_index = (default_indices >> shift) & 0xf;
727 }
728 if (i2c_index == 0x80) /* g80+ */
Ben Skeggs7f245b22010-02-24 09:56:18 +1000729 i2c_index = dcb->i2c_default_indices & 0xf;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000730
731 return nouveau_i2c_find(dev, i2c_index);
732}
733
Ben Skeggs7f245b22010-02-24 09:56:18 +1000734static uint32_t
735get_tmds_index_reg(struct drm_device *dev, uint8_t mlv)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000736{
737 /*
738 * For mlv < 0x80, it is an index into a table of TMDS base addresses.
739 * For mlv == 0x80 use the "or" value of the dcb_entry indexed by
740 * CR58 for CR57 = 0 to index a table of offsets to the basic
741 * 0x6808b0 address.
742 * For mlv == 0x81 use the "or" value of the dcb_entry indexed by
743 * CR58 for CR57 = 0 to index a table of offsets to the basic
744 * 0x6808b0 address, and then flip the offset by 8.
745 */
746
747 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +1000748 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000749 const int pramdac_offset[13] = {
750 0, 0, 0x8, 0, 0x2000, 0, 0, 0, 0x2008, 0, 0, 0, 0x2000 };
751 const uint32_t pramdac_table[4] = {
752 0x6808b0, 0x6808b8, 0x6828b0, 0x6828b8 };
753
754 if (mlv >= 0x80) {
755 int dcb_entry, dacoffset;
756
757 /* note: dcb_entry_idx_from_crtchead needs pre-script set-up */
758 dcb_entry = dcb_entry_idx_from_crtchead(dev);
759 if (dcb_entry == 0x7f)
760 return 0;
Ben Skeggs7f245b22010-02-24 09:56:18 +1000761 dacoffset = pramdac_offset[bios->dcb.entry[dcb_entry].or];
Ben Skeggs6ee73862009-12-11 19:24:15 +1000762 if (mlv == 0x81)
763 dacoffset ^= 8;
764 return 0x6808b0 + dacoffset;
765 } else {
Marcin Slusarzdf31ef42010-02-17 19:04:00 +0100766 if (mlv >= ARRAY_SIZE(pramdac_table)) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000767 NV_ERROR(dev, "Magic Lookup Value too big (%02X)\n",
768 mlv);
769 return 0;
770 }
771 return pramdac_table[mlv];
772 }
773}
774
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000775static int
Ben Skeggs6ee73862009-12-11 19:24:15 +1000776init_io_restrict_prog(struct nvbios *bios, uint16_t offset,
777 struct init_exec *iexec)
778{
779 /*
780 * INIT_IO_RESTRICT_PROG opcode: 0x32 ('2')
781 *
782 * offset (8 bit): opcode
783 * offset + 1 (16 bit): CRTC port
784 * offset + 3 (8 bit): CRTC index
785 * offset + 4 (8 bit): mask
786 * offset + 5 (8 bit): shift
787 * offset + 6 (8 bit): count
788 * offset + 7 (32 bit): register
789 * offset + 11 (32 bit): configuration 1
790 * ...
791 *
792 * Starting at offset + 11 there are "count" 32 bit values.
793 * To find out which value to use read index "CRTC index" on "CRTC
794 * port", AND this value with "mask" and then bit shift right "shift"
795 * bits. Read the appropriate value using this index and write to
796 * "register"
797 */
798
799 uint16_t crtcport = ROM16(bios->data[offset + 1]);
800 uint8_t crtcindex = bios->data[offset + 3];
801 uint8_t mask = bios->data[offset + 4];
802 uint8_t shift = bios->data[offset + 5];
803 uint8_t count = bios->data[offset + 6];
804 uint32_t reg = ROM32(bios->data[offset + 7]);
805 uint8_t config;
806 uint32_t configval;
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000807 int len = 11 + count * 4;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000808
809 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000810 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000811
812 BIOSLOG(bios, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
813 "Shift: 0x%02X, Count: 0x%02X, Reg: 0x%08X\n",
814 offset, crtcport, crtcindex, mask, shift, count, reg);
815
816 config = (bios_idxprt_rd(bios, crtcport, crtcindex) & mask) >> shift;
817 if (config > count) {
818 NV_ERROR(bios->dev,
819 "0x%04X: Config 0x%02X exceeds maximal bound 0x%02X\n",
820 offset, config, count);
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000821 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000822 }
823
824 configval = ROM32(bios->data[offset + 11 + config * 4]);
825
826 BIOSLOG(bios, "0x%04X: Writing config %02X\n", offset, config);
827
828 bios_wr32(bios, reg, configval);
829
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000830 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000831}
832
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000833static int
Ben Skeggs6ee73862009-12-11 19:24:15 +1000834init_repeat(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
835{
836 /*
837 * INIT_REPEAT opcode: 0x33 ('3')
838 *
839 * offset (8 bit): opcode
840 * offset + 1 (8 bit): count
841 *
842 * Execute script following this opcode up to INIT_REPEAT_END
843 * "count" times
844 */
845
846 uint8_t count = bios->data[offset + 1];
847 uint8_t i;
848
849 /* no iexec->execute check by design */
850
851 BIOSLOG(bios, "0x%04X: Repeating following segment %d times\n",
852 offset, count);
853
854 iexec->repeat = true;
855
856 /*
857 * count - 1, as the script block will execute once when we leave this
858 * opcode -- this is compatible with bios behaviour as:
859 * a) the block is always executed at least once, even if count == 0
860 * b) the bios interpreter skips to the op following INIT_END_REPEAT,
861 * while we don't
862 */
863 for (i = 0; i < count - 1; i++)
864 parse_init_table(bios, offset + 2, iexec);
865
866 iexec->repeat = false;
867
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000868 return 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000869}
870
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000871static int
Ben Skeggs6ee73862009-12-11 19:24:15 +1000872init_io_restrict_pll(struct nvbios *bios, uint16_t offset,
873 struct init_exec *iexec)
874{
875 /*
876 * INIT_IO_RESTRICT_PLL opcode: 0x34 ('4')
877 *
878 * offset (8 bit): opcode
879 * offset + 1 (16 bit): CRTC port
880 * offset + 3 (8 bit): CRTC index
881 * offset + 4 (8 bit): mask
882 * offset + 5 (8 bit): shift
883 * offset + 6 (8 bit): IO flag condition index
884 * offset + 7 (8 bit): count
885 * offset + 8 (32 bit): register
886 * offset + 12 (16 bit): frequency 1
887 * ...
888 *
889 * Starting at offset + 12 there are "count" 16 bit frequencies (10kHz).
890 * Set PLL register "register" to coefficients for frequency n,
891 * selected by reading index "CRTC index" of "CRTC port" ANDed with
892 * "mask" and shifted right by "shift".
893 *
894 * If "IO flag condition index" > 0, and condition met, double
895 * frequency before setting it.
896 */
897
898 uint16_t crtcport = ROM16(bios->data[offset + 1]);
899 uint8_t crtcindex = bios->data[offset + 3];
900 uint8_t mask = bios->data[offset + 4];
901 uint8_t shift = bios->data[offset + 5];
902 int8_t io_flag_condition_idx = bios->data[offset + 6];
903 uint8_t count = bios->data[offset + 7];
904 uint32_t reg = ROM32(bios->data[offset + 8]);
905 uint8_t config;
906 uint16_t freq;
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000907 int len = 12 + count * 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000908
909 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000910 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000911
912 BIOSLOG(bios, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
913 "Shift: 0x%02X, IO Flag Condition: 0x%02X, "
914 "Count: 0x%02X, Reg: 0x%08X\n",
915 offset, crtcport, crtcindex, mask, shift,
916 io_flag_condition_idx, count, reg);
917
918 config = (bios_idxprt_rd(bios, crtcport, crtcindex) & mask) >> shift;
919 if (config > count) {
920 NV_ERROR(bios->dev,
921 "0x%04X: Config 0x%02X exceeds maximal bound 0x%02X\n",
922 offset, config, count);
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000923 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000924 }
925
926 freq = ROM16(bios->data[offset + 12 + config * 2]);
927
928 if (io_flag_condition_idx > 0) {
929 if (io_flag_condition_met(bios, offset, io_flag_condition_idx)) {
930 BIOSLOG(bios, "0x%04X: Condition fulfilled -- "
931 "frequency doubled\n", offset);
932 freq *= 2;
933 } else
934 BIOSLOG(bios, "0x%04X: Condition not fulfilled -- "
935 "frequency unchanged\n", offset);
936 }
937
938 BIOSLOG(bios, "0x%04X: Reg: 0x%08X, Config: 0x%02X, Freq: %d0kHz\n",
939 offset, reg, config, freq);
940
941 setPLL(bios, reg, freq * 10);
942
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000943 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000944}
945
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000946static int
Ben Skeggs6ee73862009-12-11 19:24:15 +1000947init_end_repeat(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
948{
949 /*
950 * INIT_END_REPEAT opcode: 0x36 ('6')
951 *
952 * offset (8 bit): opcode
953 *
954 * Marks the end of the block for INIT_REPEAT to repeat
955 */
956
957 /* no iexec->execute check by design */
958
959 /*
960 * iexec->repeat flag necessary to go past INIT_END_REPEAT opcode when
961 * we're not in repeat mode
962 */
963 if (iexec->repeat)
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000964 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000965
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000966 return 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000967}
968
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000969static int
Ben Skeggs6ee73862009-12-11 19:24:15 +1000970init_copy(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
971{
972 /*
973 * INIT_COPY opcode: 0x37 ('7')
974 *
975 * offset (8 bit): opcode
976 * offset + 1 (32 bit): register
977 * offset + 5 (8 bit): shift
978 * offset + 6 (8 bit): srcmask
979 * offset + 7 (16 bit): CRTC port
980 * offset + 9 (8 bit): CRTC index
981 * offset + 10 (8 bit): mask
982 *
983 * Read index "CRTC index" on "CRTC port", AND with "mask", OR with
984 * (REGVAL("register") >> "shift" & "srcmask") and write-back to CRTC
985 * port
986 */
987
988 uint32_t reg = ROM32(bios->data[offset + 1]);
989 uint8_t shift = bios->data[offset + 5];
990 uint8_t srcmask = bios->data[offset + 6];
991 uint16_t crtcport = ROM16(bios->data[offset + 7]);
992 uint8_t crtcindex = bios->data[offset + 9];
993 uint8_t mask = bios->data[offset + 10];
994 uint32_t data;
995 uint8_t crtcdata;
996
997 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +0000998 return 11;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000999
1000 BIOSLOG(bios, "0x%04X: Reg: 0x%08X, Shift: 0x%02X, SrcMask: 0x%02X, "
1001 "Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X\n",
1002 offset, reg, shift, srcmask, crtcport, crtcindex, mask);
1003
1004 data = bios_rd32(bios, reg);
1005
1006 if (shift < 0x80)
1007 data >>= shift;
1008 else
1009 data <<= (0x100 - shift);
1010
1011 data &= srcmask;
1012
1013 crtcdata = bios_idxprt_rd(bios, crtcport, crtcindex) & mask;
1014 crtcdata |= (uint8_t)data;
1015 bios_idxprt_wr(bios, crtcport, crtcindex, crtcdata);
1016
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001017 return 11;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001018}
1019
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001020static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001021init_not(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1022{
1023 /*
1024 * INIT_NOT opcode: 0x38 ('8')
1025 *
1026 * offset (8 bit): opcode
1027 *
1028 * Invert the current execute / no-execute condition (i.e. "else")
1029 */
1030 if (iexec->execute)
1031 BIOSLOG(bios, "0x%04X: ------ Skipping following commands ------\n", offset);
1032 else
1033 BIOSLOG(bios, "0x%04X: ------ Executing following commands ------\n", offset);
1034
1035 iexec->execute = !iexec->execute;
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001036 return 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001037}
1038
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001039static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001040init_io_flag_condition(struct nvbios *bios, uint16_t offset,
1041 struct init_exec *iexec)
1042{
1043 /*
1044 * INIT_IO_FLAG_CONDITION opcode: 0x39 ('9')
1045 *
1046 * offset (8 bit): opcode
1047 * offset + 1 (8 bit): condition number
1048 *
1049 * Check condition "condition number" in the IO flag condition table.
1050 * If condition not met skip subsequent opcodes until condition is
1051 * inverted (INIT_NOT), or we hit INIT_RESUME
1052 */
1053
1054 uint8_t cond = bios->data[offset + 1];
1055
1056 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001057 return 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001058
1059 if (io_flag_condition_met(bios, offset, cond))
1060 BIOSLOG(bios, "0x%04X: Condition fulfilled -- continuing to execute\n", offset);
1061 else {
1062 BIOSLOG(bios, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset);
1063 iexec->execute = false;
1064 }
1065
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001066 return 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001067}
1068
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001069static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001070init_idx_addr_latched(struct nvbios *bios, uint16_t offset,
1071 struct init_exec *iexec)
1072{
1073 /*
1074 * INIT_INDEX_ADDRESS_LATCHED opcode: 0x49 ('I')
1075 *
1076 * offset (8 bit): opcode
1077 * offset + 1 (32 bit): control register
1078 * offset + 5 (32 bit): data register
1079 * offset + 9 (32 bit): mask
1080 * offset + 13 (32 bit): data
1081 * offset + 17 (8 bit): count
1082 * offset + 18 (8 bit): address 1
1083 * offset + 19 (8 bit): data 1
1084 * ...
1085 *
1086 * For each of "count" address and data pairs, write "data n" to
1087 * "data register", read the current value of "control register",
1088 * and write it back once ANDed with "mask", ORed with "data",
1089 * and ORed with "address n"
1090 */
1091
1092 uint32_t controlreg = ROM32(bios->data[offset + 1]);
1093 uint32_t datareg = ROM32(bios->data[offset + 5]);
1094 uint32_t mask = ROM32(bios->data[offset + 9]);
1095 uint32_t data = ROM32(bios->data[offset + 13]);
1096 uint8_t count = bios->data[offset + 17];
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001097 int len = 18 + count * 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001098 uint32_t value;
1099 int i;
1100
1101 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001102 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001103
1104 BIOSLOG(bios, "0x%04X: ControlReg: 0x%08X, DataReg: 0x%08X, "
1105 "Mask: 0x%08X, Data: 0x%08X, Count: 0x%02X\n",
1106 offset, controlreg, datareg, mask, data, count);
1107
1108 for (i = 0; i < count; i++) {
1109 uint8_t instaddress = bios->data[offset + 18 + i * 2];
1110 uint8_t instdata = bios->data[offset + 19 + i * 2];
1111
1112 BIOSLOG(bios, "0x%04X: Address: 0x%02X, Data: 0x%02X\n",
1113 offset, instaddress, instdata);
1114
1115 bios_wr32(bios, datareg, instdata);
1116 value = bios_rd32(bios, controlreg) & mask;
1117 value |= data;
1118 value |= instaddress;
1119 bios_wr32(bios, controlreg, value);
1120 }
1121
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001122 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001123}
1124
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001125static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001126init_io_restrict_pll2(struct nvbios *bios, uint16_t offset,
1127 struct init_exec *iexec)
1128{
1129 /*
1130 * INIT_IO_RESTRICT_PLL2 opcode: 0x4A ('J')
1131 *
1132 * offset (8 bit): opcode
1133 * offset + 1 (16 bit): CRTC port
1134 * offset + 3 (8 bit): CRTC index
1135 * offset + 4 (8 bit): mask
1136 * offset + 5 (8 bit): shift
1137 * offset + 6 (8 bit): count
1138 * offset + 7 (32 bit): register
1139 * offset + 11 (32 bit): frequency 1
1140 * ...
1141 *
1142 * Starting at offset + 11 there are "count" 32 bit frequencies (kHz).
1143 * Set PLL register "register" to coefficients for frequency n,
1144 * selected by reading index "CRTC index" of "CRTC port" ANDed with
1145 * "mask" and shifted right by "shift".
1146 */
1147
1148 uint16_t crtcport = ROM16(bios->data[offset + 1]);
1149 uint8_t crtcindex = bios->data[offset + 3];
1150 uint8_t mask = bios->data[offset + 4];
1151 uint8_t shift = bios->data[offset + 5];
1152 uint8_t count = bios->data[offset + 6];
1153 uint32_t reg = ROM32(bios->data[offset + 7]);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001154 int len = 11 + count * 4;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001155 uint8_t config;
1156 uint32_t freq;
1157
1158 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001159 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001160
1161 BIOSLOG(bios, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
1162 "Shift: 0x%02X, Count: 0x%02X, Reg: 0x%08X\n",
1163 offset, crtcport, crtcindex, mask, shift, count, reg);
1164
1165 if (!reg)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001166 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001167
1168 config = (bios_idxprt_rd(bios, crtcport, crtcindex) & mask) >> shift;
1169 if (config > count) {
1170 NV_ERROR(bios->dev,
1171 "0x%04X: Config 0x%02X exceeds maximal bound 0x%02X\n",
1172 offset, config, count);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001173 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001174 }
1175
1176 freq = ROM32(bios->data[offset + 11 + config * 4]);
1177
1178 BIOSLOG(bios, "0x%04X: Reg: 0x%08X, Config: 0x%02X, Freq: %dkHz\n",
1179 offset, reg, config, freq);
1180
1181 setPLL(bios, reg, freq);
1182
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001183 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001184}
1185
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001186static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001187init_pll2(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1188{
1189 /*
1190 * INIT_PLL2 opcode: 0x4B ('K')
1191 *
1192 * offset (8 bit): opcode
1193 * offset + 1 (32 bit): register
1194 * offset + 5 (32 bit): freq
1195 *
1196 * Set PLL register "register" to coefficients for frequency "freq"
1197 */
1198
1199 uint32_t reg = ROM32(bios->data[offset + 1]);
1200 uint32_t freq = ROM32(bios->data[offset + 5]);
1201
1202 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001203 return 9;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001204
1205 BIOSLOG(bios, "0x%04X: Reg: 0x%04X, Freq: %dkHz\n",
1206 offset, reg, freq);
1207
1208 setPLL(bios, reg, freq);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001209 return 9;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001210}
1211
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001212static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001213init_i2c_byte(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1214{
1215 /*
1216 * INIT_I2C_BYTE opcode: 0x4C ('L')
1217 *
1218 * offset (8 bit): opcode
1219 * offset + 1 (8 bit): DCB I2C table entry index
1220 * offset + 2 (8 bit): I2C slave address
1221 * offset + 3 (8 bit): count
1222 * offset + 4 (8 bit): I2C register 1
1223 * offset + 5 (8 bit): mask 1
1224 * offset + 6 (8 bit): data 1
1225 * ...
1226 *
1227 * For each of "count" registers given by "I2C register n" on the device
1228 * addressed by "I2C slave address" on the I2C bus given by
1229 * "DCB I2C table entry index", read the register, AND the result with
1230 * "mask n" and OR it with "data n" before writing it back to the device
1231 */
1232
1233 uint8_t i2c_index = bios->data[offset + 1];
1234 uint8_t i2c_address = bios->data[offset + 2];
1235 uint8_t count = bios->data[offset + 3];
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001236 int len = 4 + count * 3;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001237 struct nouveau_i2c_chan *chan;
1238 struct i2c_msg msg;
1239 int i;
1240
1241 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001242 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001243
1244 BIOSLOG(bios, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X, "
1245 "Count: 0x%02X\n",
1246 offset, i2c_index, i2c_address, count);
1247
1248 chan = init_i2c_device_find(bios->dev, i2c_index);
1249 if (!chan)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001250 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001251
1252 for (i = 0; i < count; i++) {
1253 uint8_t i2c_reg = bios->data[offset + 4 + i * 3];
1254 uint8_t mask = bios->data[offset + 5 + i * 3];
1255 uint8_t data = bios->data[offset + 6 + i * 3];
1256 uint8_t value;
1257
1258 msg.addr = i2c_address;
1259 msg.flags = I2C_M_RD;
1260 msg.len = 1;
1261 msg.buf = &value;
1262 if (i2c_transfer(&chan->adapter, &msg, 1) != 1)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001263 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001264
1265 BIOSLOG(bios, "0x%04X: I2CReg: 0x%02X, Value: 0x%02X, "
1266 "Mask: 0x%02X, Data: 0x%02X\n",
1267 offset, i2c_reg, value, mask, data);
1268
1269 value = (value & mask) | data;
1270
1271 if (bios->execute) {
1272 msg.addr = i2c_address;
1273 msg.flags = 0;
1274 msg.len = 1;
1275 msg.buf = &value;
1276 if (i2c_transfer(&chan->adapter, &msg, 1) != 1)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001277 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001278 }
1279 }
1280
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001281 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001282}
1283
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001284static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001285init_zm_i2c_byte(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1286{
1287 /*
1288 * INIT_ZM_I2C_BYTE opcode: 0x4D ('M')
1289 *
1290 * offset (8 bit): opcode
1291 * offset + 1 (8 bit): DCB I2C table entry index
1292 * offset + 2 (8 bit): I2C slave address
1293 * offset + 3 (8 bit): count
1294 * offset + 4 (8 bit): I2C register 1
1295 * offset + 5 (8 bit): data 1
1296 * ...
1297 *
1298 * For each of "count" registers given by "I2C register n" on the device
1299 * addressed by "I2C slave address" on the I2C bus given by
1300 * "DCB I2C table entry index", set the register to "data n"
1301 */
1302
1303 uint8_t i2c_index = bios->data[offset + 1];
1304 uint8_t i2c_address = bios->data[offset + 2];
1305 uint8_t count = bios->data[offset + 3];
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001306 int len = 4 + count * 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001307 struct nouveau_i2c_chan *chan;
1308 struct i2c_msg msg;
1309 int i;
1310
1311 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001312 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001313
1314 BIOSLOG(bios, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X, "
1315 "Count: 0x%02X\n",
1316 offset, i2c_index, i2c_address, count);
1317
1318 chan = init_i2c_device_find(bios->dev, i2c_index);
1319 if (!chan)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001320 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001321
1322 for (i = 0; i < count; i++) {
1323 uint8_t i2c_reg = bios->data[offset + 4 + i * 2];
1324 uint8_t data = bios->data[offset + 5 + i * 2];
1325
1326 BIOSLOG(bios, "0x%04X: I2CReg: 0x%02X, Data: 0x%02X\n",
1327 offset, i2c_reg, data);
1328
1329 if (bios->execute) {
1330 msg.addr = i2c_address;
1331 msg.flags = 0;
1332 msg.len = 1;
1333 msg.buf = &data;
1334 if (i2c_transfer(&chan->adapter, &msg, 1) != 1)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001335 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001336 }
1337 }
1338
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001339 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001340}
1341
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001342static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001343init_zm_i2c(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1344{
1345 /*
1346 * INIT_ZM_I2C opcode: 0x4E ('N')
1347 *
1348 * offset (8 bit): opcode
1349 * offset + 1 (8 bit): DCB I2C table entry index
1350 * offset + 2 (8 bit): I2C slave address
1351 * offset + 3 (8 bit): count
1352 * offset + 4 (8 bit): data 1
1353 * ...
1354 *
1355 * Send "count" bytes ("data n") to the device addressed by "I2C slave
1356 * address" on the I2C bus given by "DCB I2C table entry index"
1357 */
1358
1359 uint8_t i2c_index = bios->data[offset + 1];
1360 uint8_t i2c_address = bios->data[offset + 2];
1361 uint8_t count = bios->data[offset + 3];
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001362 int len = 4 + count;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001363 struct nouveau_i2c_chan *chan;
1364 struct i2c_msg msg;
1365 uint8_t data[256];
1366 int i;
1367
1368 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001369 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001370
1371 BIOSLOG(bios, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X, "
1372 "Count: 0x%02X\n",
1373 offset, i2c_index, i2c_address, count);
1374
1375 chan = init_i2c_device_find(bios->dev, i2c_index);
1376 if (!chan)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001377 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001378
1379 for (i = 0; i < count; i++) {
1380 data[i] = bios->data[offset + 4 + i];
1381
1382 BIOSLOG(bios, "0x%04X: Data: 0x%02X\n", offset, data[i]);
1383 }
1384
1385 if (bios->execute) {
1386 msg.addr = i2c_address;
1387 msg.flags = 0;
1388 msg.len = count;
1389 msg.buf = data;
1390 if (i2c_transfer(&chan->adapter, &msg, 1) != 1)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001391 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001392 }
1393
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001394 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001395}
1396
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001397static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001398init_tmds(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1399{
1400 /*
1401 * INIT_TMDS opcode: 0x4F ('O') (non-canon name)
1402 *
1403 * offset (8 bit): opcode
1404 * offset + 1 (8 bit): magic lookup value
1405 * offset + 2 (8 bit): TMDS address
1406 * offset + 3 (8 bit): mask
1407 * offset + 4 (8 bit): data
1408 *
1409 * Read the data reg for TMDS address "TMDS address", AND it with mask
1410 * and OR it with data, then write it back
1411 * "magic lookup value" determines which TMDS base address register is
1412 * used -- see get_tmds_index_reg()
1413 */
1414
1415 uint8_t mlv = bios->data[offset + 1];
1416 uint32_t tmdsaddr = bios->data[offset + 2];
1417 uint8_t mask = bios->data[offset + 3];
1418 uint8_t data = bios->data[offset + 4];
1419 uint32_t reg, value;
1420
1421 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001422 return 5;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001423
1424 BIOSLOG(bios, "0x%04X: MagicLookupValue: 0x%02X, TMDSAddr: 0x%02X, "
1425 "Mask: 0x%02X, Data: 0x%02X\n",
1426 offset, mlv, tmdsaddr, mask, data);
1427
1428 reg = get_tmds_index_reg(bios->dev, mlv);
1429 if (!reg)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001430 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001431
1432 bios_wr32(bios, reg,
1433 tmdsaddr | NV_PRAMDAC_FP_TMDS_CONTROL_WRITE_DISABLE);
1434 value = (bios_rd32(bios, reg + 4) & mask) | data;
1435 bios_wr32(bios, reg + 4, value);
1436 bios_wr32(bios, reg, tmdsaddr);
1437
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001438 return 5;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001439}
1440
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001441static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001442init_zm_tmds_group(struct nvbios *bios, uint16_t offset,
1443 struct init_exec *iexec)
1444{
1445 /*
1446 * INIT_ZM_TMDS_GROUP opcode: 0x50 ('P') (non-canon name)
1447 *
1448 * offset (8 bit): opcode
1449 * offset + 1 (8 bit): magic lookup value
1450 * offset + 2 (8 bit): count
1451 * offset + 3 (8 bit): addr 1
1452 * offset + 4 (8 bit): data 1
1453 * ...
1454 *
1455 * For each of "count" TMDS address and data pairs write "data n" to
1456 * "addr n". "magic lookup value" determines which TMDS base address
1457 * register is used -- see get_tmds_index_reg()
1458 */
1459
1460 uint8_t mlv = bios->data[offset + 1];
1461 uint8_t count = bios->data[offset + 2];
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001462 int len = 3 + count * 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001463 uint32_t reg;
1464 int i;
1465
1466 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001467 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001468
1469 BIOSLOG(bios, "0x%04X: MagicLookupValue: 0x%02X, Count: 0x%02X\n",
1470 offset, mlv, count);
1471
1472 reg = get_tmds_index_reg(bios->dev, mlv);
1473 if (!reg)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001474 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001475
1476 for (i = 0; i < count; i++) {
1477 uint8_t tmdsaddr = bios->data[offset + 3 + i * 2];
1478 uint8_t tmdsdata = bios->data[offset + 4 + i * 2];
1479
1480 bios_wr32(bios, reg + 4, tmdsdata);
1481 bios_wr32(bios, reg, tmdsaddr);
1482 }
1483
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001484 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001485}
1486
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001487static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001488init_cr_idx_adr_latch(struct nvbios *bios, uint16_t offset,
1489 struct init_exec *iexec)
1490{
1491 /*
1492 * INIT_CR_INDEX_ADDRESS_LATCHED opcode: 0x51 ('Q')
1493 *
1494 * offset (8 bit): opcode
1495 * offset + 1 (8 bit): CRTC index1
1496 * offset + 2 (8 bit): CRTC index2
1497 * offset + 3 (8 bit): baseaddr
1498 * offset + 4 (8 bit): count
1499 * offset + 5 (8 bit): data 1
1500 * ...
1501 *
1502 * For each of "count" address and data pairs, write "baseaddr + n" to
1503 * "CRTC index1" and "data n" to "CRTC index2"
1504 * Once complete, restore initial value read from "CRTC index1"
1505 */
1506 uint8_t crtcindex1 = bios->data[offset + 1];
1507 uint8_t crtcindex2 = bios->data[offset + 2];
1508 uint8_t baseaddr = bios->data[offset + 3];
1509 uint8_t count = bios->data[offset + 4];
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001510 int len = 5 + count;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001511 uint8_t oldaddr, data;
1512 int i;
1513
1514 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001515 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001516
1517 BIOSLOG(bios, "0x%04X: Index1: 0x%02X, Index2: 0x%02X, "
1518 "BaseAddr: 0x%02X, Count: 0x%02X\n",
1519 offset, crtcindex1, crtcindex2, baseaddr, count);
1520
1521 oldaddr = bios_idxprt_rd(bios, NV_CIO_CRX__COLOR, crtcindex1);
1522
1523 for (i = 0; i < count; i++) {
1524 bios_idxprt_wr(bios, NV_CIO_CRX__COLOR, crtcindex1,
1525 baseaddr + i);
1526 data = bios->data[offset + 5 + i];
1527 bios_idxprt_wr(bios, NV_CIO_CRX__COLOR, crtcindex2, data);
1528 }
1529
1530 bios_idxprt_wr(bios, NV_CIO_CRX__COLOR, crtcindex1, oldaddr);
1531
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001532 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001533}
1534
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001535static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001536init_cr(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1537{
1538 /*
1539 * INIT_CR opcode: 0x52 ('R')
1540 *
1541 * offset (8 bit): opcode
1542 * offset + 1 (8 bit): CRTC index
1543 * offset + 2 (8 bit): mask
1544 * offset + 3 (8 bit): data
1545 *
1546 * Assign the value of at "CRTC index" ANDed with mask and ORed with
1547 * data back to "CRTC index"
1548 */
1549
1550 uint8_t crtcindex = bios->data[offset + 1];
1551 uint8_t mask = bios->data[offset + 2];
1552 uint8_t data = bios->data[offset + 3];
1553 uint8_t value;
1554
1555 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001556 return 4;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001557
1558 BIOSLOG(bios, "0x%04X: Index: 0x%02X, Mask: 0x%02X, Data: 0x%02X\n",
1559 offset, crtcindex, mask, data);
1560
1561 value = bios_idxprt_rd(bios, NV_CIO_CRX__COLOR, crtcindex) & mask;
1562 value |= data;
1563 bios_idxprt_wr(bios, NV_CIO_CRX__COLOR, crtcindex, value);
1564
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001565 return 4;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001566}
1567
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001568static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001569init_zm_cr(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1570{
1571 /*
1572 * INIT_ZM_CR opcode: 0x53 ('S')
1573 *
1574 * offset (8 bit): opcode
1575 * offset + 1 (8 bit): CRTC index
1576 * offset + 2 (8 bit): value
1577 *
1578 * Assign "value" to CRTC register with index "CRTC index".
1579 */
1580
1581 uint8_t crtcindex = ROM32(bios->data[offset + 1]);
1582 uint8_t data = bios->data[offset + 2];
1583
1584 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001585 return 3;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001586
1587 bios_idxprt_wr(bios, NV_CIO_CRX__COLOR, crtcindex, data);
1588
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001589 return 3;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001590}
1591
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001592static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001593init_zm_cr_group(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1594{
1595 /*
1596 * INIT_ZM_CR_GROUP opcode: 0x54 ('T')
1597 *
1598 * offset (8 bit): opcode
1599 * offset + 1 (8 bit): count
1600 * offset + 2 (8 bit): CRTC index 1
1601 * offset + 3 (8 bit): value 1
1602 * ...
1603 *
1604 * For "count", assign "value n" to CRTC register with index
1605 * "CRTC index n".
1606 */
1607
1608 uint8_t count = bios->data[offset + 1];
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001609 int len = 2 + count * 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001610 int i;
1611
1612 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001613 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001614
1615 for (i = 0; i < count; i++)
1616 init_zm_cr(bios, offset + 2 + 2 * i - 1, iexec);
1617
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001618 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001619}
1620
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001621static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001622init_condition_time(struct nvbios *bios, uint16_t offset,
1623 struct init_exec *iexec)
1624{
1625 /*
1626 * INIT_CONDITION_TIME opcode: 0x56 ('V')
1627 *
1628 * offset (8 bit): opcode
1629 * offset + 1 (8 bit): condition number
1630 * offset + 2 (8 bit): retries / 50
1631 *
1632 * Check condition "condition number" in the condition table.
1633 * Bios code then sleeps for 2ms if the condition is not met, and
1634 * repeats up to "retries" times, but on one C51 this has proved
1635 * insufficient. In mmiotraces the driver sleeps for 20ms, so we do
1636 * this, and bail after "retries" times, or 2s, whichever is less.
1637 * If still not met after retries, clear execution flag for this table.
1638 */
1639
1640 uint8_t cond = bios->data[offset + 1];
1641 uint16_t retries = bios->data[offset + 2] * 50;
1642 unsigned cnt;
1643
1644 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001645 return 3;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001646
1647 if (retries > 100)
1648 retries = 100;
1649
1650 BIOSLOG(bios, "0x%04X: Condition: 0x%02X, Retries: 0x%02X\n",
1651 offset, cond, retries);
1652
1653 if (!bios->execute) /* avoid 2s delays when "faking" execution */
1654 retries = 1;
1655
1656 for (cnt = 0; cnt < retries; cnt++) {
1657 if (bios_condition_met(bios, offset, cond)) {
1658 BIOSLOG(bios, "0x%04X: Condition met, continuing\n",
1659 offset);
1660 break;
1661 } else {
1662 BIOSLOG(bios, "0x%04X: "
1663 "Condition not met, sleeping for 20ms\n",
1664 offset);
1665 msleep(20);
1666 }
1667 }
1668
1669 if (!bios_condition_met(bios, offset, cond)) {
1670 NV_WARN(bios->dev,
1671 "0x%04X: Condition still not met after %dms, "
1672 "skipping following opcodes\n", offset, 20 * retries);
1673 iexec->execute = false;
1674 }
1675
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001676 return 3;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001677}
1678
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001679static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001680init_zm_reg_sequence(struct nvbios *bios, uint16_t offset,
1681 struct init_exec *iexec)
1682{
1683 /*
1684 * INIT_ZM_REG_SEQUENCE opcode: 0x58 ('X')
1685 *
1686 * offset (8 bit): opcode
1687 * offset + 1 (32 bit): base register
1688 * offset + 5 (8 bit): count
1689 * offset + 6 (32 bit): value 1
1690 * ...
1691 *
1692 * Starting at offset + 6 there are "count" 32 bit values.
1693 * For "count" iterations set "base register" + 4 * current_iteration
1694 * to "value current_iteration"
1695 */
1696
1697 uint32_t basereg = ROM32(bios->data[offset + 1]);
1698 uint32_t count = bios->data[offset + 5];
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001699 int len = 6 + count * 4;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001700 int i;
1701
1702 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001703 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001704
1705 BIOSLOG(bios, "0x%04X: BaseReg: 0x%08X, Count: 0x%02X\n",
1706 offset, basereg, count);
1707
1708 for (i = 0; i < count; i++) {
1709 uint32_t reg = basereg + i * 4;
1710 uint32_t data = ROM32(bios->data[offset + 6 + i * 4]);
1711
1712 bios_wr32(bios, reg, data);
1713 }
1714
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001715 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001716}
1717
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001718static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001719init_sub_direct(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1720{
1721 /*
1722 * INIT_SUB_DIRECT opcode: 0x5B ('[')
1723 *
1724 * offset (8 bit): opcode
1725 * offset + 1 (16 bit): subroutine offset (in bios)
1726 *
1727 * Calls a subroutine that will execute commands until INIT_DONE
1728 * is found.
1729 */
1730
1731 uint16_t sub_offset = ROM16(bios->data[offset + 1]);
1732
1733 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001734 return 3;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001735
1736 BIOSLOG(bios, "0x%04X: Executing subroutine at 0x%04X\n",
1737 offset, sub_offset);
1738
1739 parse_init_table(bios, sub_offset, iexec);
1740
1741 BIOSLOG(bios, "0x%04X: End of 0x%04X subroutine\n", offset, sub_offset);
1742
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001743 return 3;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001744}
1745
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001746static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001747init_copy_nv_reg(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1748{
1749 /*
1750 * INIT_COPY_NV_REG opcode: 0x5F ('_')
1751 *
1752 * offset (8 bit): opcode
1753 * offset + 1 (32 bit): src reg
1754 * offset + 5 (8 bit): shift
1755 * offset + 6 (32 bit): src mask
1756 * offset + 10 (32 bit): xor
1757 * offset + 14 (32 bit): dst reg
1758 * offset + 18 (32 bit): dst mask
1759 *
1760 * Shift REGVAL("src reg") right by (signed) "shift", AND result with
1761 * "src mask", then XOR with "xor". Write this OR'd with
1762 * (REGVAL("dst reg") AND'd with "dst mask") to "dst reg"
1763 */
1764
1765 uint32_t srcreg = *((uint32_t *)(&bios->data[offset + 1]));
1766 uint8_t shift = bios->data[offset + 5];
1767 uint32_t srcmask = *((uint32_t *)(&bios->data[offset + 6]));
1768 uint32_t xor = *((uint32_t *)(&bios->data[offset + 10]));
1769 uint32_t dstreg = *((uint32_t *)(&bios->data[offset + 14]));
1770 uint32_t dstmask = *((uint32_t *)(&bios->data[offset + 18]));
1771 uint32_t srcvalue, dstvalue;
1772
1773 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001774 return 22;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001775
1776 BIOSLOG(bios, "0x%04X: SrcReg: 0x%08X, Shift: 0x%02X, SrcMask: 0x%08X, "
1777 "Xor: 0x%08X, DstReg: 0x%08X, DstMask: 0x%08X\n",
1778 offset, srcreg, shift, srcmask, xor, dstreg, dstmask);
1779
1780 srcvalue = bios_rd32(bios, srcreg);
1781
1782 if (shift < 0x80)
1783 srcvalue >>= shift;
1784 else
1785 srcvalue <<= (0x100 - shift);
1786
1787 srcvalue = (srcvalue & srcmask) ^ xor;
1788
1789 dstvalue = bios_rd32(bios, dstreg) & dstmask;
1790
1791 bios_wr32(bios, dstreg, dstvalue | srcvalue);
1792
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001793 return 22;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001794}
1795
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001796static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001797init_zm_index_io(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1798{
1799 /*
1800 * INIT_ZM_INDEX_IO opcode: 0x62 ('b')
1801 *
1802 * offset (8 bit): opcode
1803 * offset + 1 (16 bit): CRTC port
1804 * offset + 3 (8 bit): CRTC index
1805 * offset + 4 (8 bit): data
1806 *
1807 * Write "data" to index "CRTC index" of "CRTC port"
1808 */
1809 uint16_t crtcport = ROM16(bios->data[offset + 1]);
1810 uint8_t crtcindex = bios->data[offset + 3];
1811 uint8_t data = bios->data[offset + 4];
1812
1813 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001814 return 5;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001815
1816 bios_idxprt_wr(bios, crtcport, crtcindex, data);
1817
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001818 return 5;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001819}
1820
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001821static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001822init_compute_mem(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1823{
1824 /*
1825 * INIT_COMPUTE_MEM opcode: 0x63 ('c')
1826 *
1827 * offset (8 bit): opcode
1828 *
1829 * This opcode is meant to set NV_PFB_CFG0 (0x100200) appropriately so
1830 * that the hardware can correctly calculate how much VRAM it has
1831 * (and subsequently report that value in NV_PFB_CSTATUS (0x10020C))
1832 *
1833 * The implementation of this opcode in general consists of two parts:
1834 * 1) determination of the memory bus width
1835 * 2) determination of how many of the card's RAM pads have ICs attached
1836 *
1837 * 1) is done by a cunning combination of writes to offsets 0x1c and
1838 * 0x3c in the framebuffer, and seeing whether the written values are
1839 * read back correctly. This then affects bits 4-7 of NV_PFB_CFG0
1840 *
1841 * 2) is done by a cunning combination of writes to an offset slightly
1842 * less than the maximum memory reported by NV_PFB_CSTATUS, then seeing
1843 * if the test pattern can be read back. This then affects bits 12-15 of
1844 * NV_PFB_CFG0
1845 *
1846 * In this context a "cunning combination" may include multiple reads
1847 * and writes to varying locations, often alternating the test pattern
1848 * and 0, doubtless to make sure buffers are filled, residual charges
1849 * on tracks are removed etc.
1850 *
1851 * Unfortunately, the "cunning combination"s mentioned above, and the
1852 * changes to the bits in NV_PFB_CFG0 differ with nearly every bios
1853 * trace I have.
1854 *
1855 * Therefore, we cheat and assume the value of NV_PFB_CFG0 with which
1856 * we started was correct, and use that instead
1857 */
1858
1859 /* no iexec->execute check by design */
1860
1861 /*
1862 * This appears to be a NOP on G8x chipsets, both io logs of the VBIOS
1863 * and kmmio traces of the binary driver POSTing the card show nothing
1864 * being done for this opcode. why is it still listed in the table?!
1865 */
1866
1867 struct drm_nouveau_private *dev_priv = bios->dev->dev_private;
1868
Ben Skeggse235c1f2010-01-22 13:17:28 +10001869 if (dev_priv->card_type >= NV_40)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001870 return 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001871
1872 /*
1873 * On every card I've seen, this step gets done for us earlier in
1874 * the init scripts
1875 uint8_t crdata = bios_idxprt_rd(dev, NV_VIO_SRX, 0x01);
1876 bios_idxprt_wr(dev, NV_VIO_SRX, 0x01, crdata | 0x20);
1877 */
1878
1879 /*
1880 * This also has probably been done in the scripts, but an mmio trace of
1881 * s3 resume shows nvidia doing it anyway (unlike the NV_VIO_SRX write)
1882 */
1883 bios_wr32(bios, NV_PFB_REFCTRL, NV_PFB_REFCTRL_VALID_1);
1884
1885 /* write back the saved configuration value */
1886 bios_wr32(bios, NV_PFB_CFG0, bios->state.saved_nv_pfb_cfg0);
1887
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001888 return 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001889}
1890
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001891static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001892init_reset(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
1893{
1894 /*
1895 * INIT_RESET opcode: 0x65 ('e')
1896 *
1897 * offset (8 bit): opcode
1898 * offset + 1 (32 bit): register
1899 * offset + 5 (32 bit): value1
1900 * offset + 9 (32 bit): value2
1901 *
1902 * Assign "value1" to "register", then assign "value2" to "register"
1903 */
1904
1905 uint32_t reg = ROM32(bios->data[offset + 1]);
1906 uint32_t value1 = ROM32(bios->data[offset + 5]);
1907 uint32_t value2 = ROM32(bios->data[offset + 9]);
1908 uint32_t pci_nv_19, pci_nv_20;
1909
1910 /* no iexec->execute check by design */
1911
1912 pci_nv_19 = bios_rd32(bios, NV_PBUS_PCI_NV_19);
1913 bios_wr32(bios, NV_PBUS_PCI_NV_19, 0);
1914 bios_wr32(bios, reg, value1);
1915
1916 udelay(10);
1917
1918 bios_wr32(bios, reg, value2);
1919 bios_wr32(bios, NV_PBUS_PCI_NV_19, pci_nv_19);
1920
1921 pci_nv_20 = bios_rd32(bios, NV_PBUS_PCI_NV_20);
1922 pci_nv_20 &= ~NV_PBUS_PCI_NV_20_ROM_SHADOW_ENABLED; /* 0xfffffffe */
1923 bios_wr32(bios, NV_PBUS_PCI_NV_20, pci_nv_20);
1924
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001925 return 13;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001926}
1927
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001928static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001929init_configure_mem(struct nvbios *bios, uint16_t offset,
1930 struct init_exec *iexec)
1931{
1932 /*
1933 * INIT_CONFIGURE_MEM opcode: 0x66 ('f')
1934 *
1935 * offset (8 bit): opcode
1936 *
1937 * Equivalent to INIT_DONE on bios version 3 or greater.
1938 * For early bios versions, sets up the memory registers, using values
1939 * taken from the memory init table
1940 */
1941
1942 /* no iexec->execute check by design */
1943
1944 uint16_t meminitoffs = bios->legacy.mem_init_tbl_ptr + MEM_INIT_SIZE * (bios_idxprt_rd(bios, NV_CIO_CRX__COLOR, NV_CIO_CRE_SCRATCH4__INDEX) >> 4);
1945 uint16_t seqtbloffs = bios->legacy.sdr_seq_tbl_ptr, meminitdata = meminitoffs + 6;
1946 uint32_t reg, data;
1947
1948 if (bios->major_version > 2)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001949 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001950
1951 bios_idxprt_wr(bios, NV_VIO_SRX, NV_VIO_SR_CLOCK_INDEX, bios_idxprt_rd(
1952 bios, NV_VIO_SRX, NV_VIO_SR_CLOCK_INDEX) | 0x20);
1953
1954 if (bios->data[meminitoffs] & 1)
1955 seqtbloffs = bios->legacy.ddr_seq_tbl_ptr;
1956
1957 for (reg = ROM32(bios->data[seqtbloffs]);
1958 reg != 0xffffffff;
1959 reg = ROM32(bios->data[seqtbloffs += 4])) {
1960
1961 switch (reg) {
1962 case NV_PFB_PRE:
1963 data = NV_PFB_PRE_CMD_PRECHARGE;
1964 break;
1965 case NV_PFB_PAD:
1966 data = NV_PFB_PAD_CKE_NORMAL;
1967 break;
1968 case NV_PFB_REF:
1969 data = NV_PFB_REF_CMD_REFRESH;
1970 break;
1971 default:
1972 data = ROM32(bios->data[meminitdata]);
1973 meminitdata += 4;
1974 if (data == 0xffffffff)
1975 continue;
1976 }
1977
1978 bios_wr32(bios, reg, data);
1979 }
1980
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001981 return 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10001982}
1983
Marcin Kościelnicki37383652009-12-15 00:37:31 +00001984static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10001985init_configure_clk(struct nvbios *bios, uint16_t offset,
1986 struct init_exec *iexec)
1987{
1988 /*
1989 * INIT_CONFIGURE_CLK opcode: 0x67 ('g')
1990 *
1991 * offset (8 bit): opcode
1992 *
1993 * Equivalent to INIT_DONE on bios version 3 or greater.
1994 * For early bios versions, sets up the NVClk and MClk PLLs, using
1995 * values taken from the memory init table
1996 */
1997
1998 /* no iexec->execute check by design */
1999
2000 uint16_t meminitoffs = bios->legacy.mem_init_tbl_ptr + MEM_INIT_SIZE * (bios_idxprt_rd(bios, NV_CIO_CRX__COLOR, NV_CIO_CRE_SCRATCH4__INDEX) >> 4);
2001 int clock;
2002
2003 if (bios->major_version > 2)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002004 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002005
2006 clock = ROM16(bios->data[meminitoffs + 4]) * 10;
2007 setPLL(bios, NV_PRAMDAC_NVPLL_COEFF, clock);
2008
2009 clock = ROM16(bios->data[meminitoffs + 2]) * 10;
2010 if (bios->data[meminitoffs] & 1) /* DDR */
2011 clock *= 2;
2012 setPLL(bios, NV_PRAMDAC_MPLL_COEFF, clock);
2013
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002014 return 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002015}
2016
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002017static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002018init_configure_preinit(struct nvbios *bios, uint16_t offset,
2019 struct init_exec *iexec)
2020{
2021 /*
2022 * INIT_CONFIGURE_PREINIT opcode: 0x68 ('h')
2023 *
2024 * offset (8 bit): opcode
2025 *
2026 * Equivalent to INIT_DONE on bios version 3 or greater.
2027 * For early bios versions, does early init, loading ram and crystal
2028 * configuration from straps into CR3C
2029 */
2030
2031 /* no iexec->execute check by design */
2032
2033 uint32_t straps = bios_rd32(bios, NV_PEXTDEV_BOOT_0);
2034 uint8_t cr3c = ((straps << 2) & 0xf0) | (straps & (1 << 6));
2035
2036 if (bios->major_version > 2)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002037 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002038
2039 bios_idxprt_wr(bios, NV_CIO_CRX__COLOR,
2040 NV_CIO_CRE_SCRATCH4__INDEX, cr3c);
2041
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002042 return 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002043}
2044
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002045static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002046init_io(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2047{
2048 /*
2049 * INIT_IO opcode: 0x69 ('i')
2050 *
2051 * offset (8 bit): opcode
2052 * offset + 1 (16 bit): CRTC port
2053 * offset + 3 (8 bit): mask
2054 * offset + 4 (8 bit): data
2055 *
2056 * Assign ((IOVAL("crtc port") & "mask") | "data") to "crtc port"
2057 */
2058
2059 struct drm_nouveau_private *dev_priv = bios->dev->dev_private;
2060 uint16_t crtcport = ROM16(bios->data[offset + 1]);
2061 uint8_t mask = bios->data[offset + 3];
2062 uint8_t data = bios->data[offset + 4];
2063
2064 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002065 return 5;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002066
2067 BIOSLOG(bios, "0x%04X: Port: 0x%04X, Mask: 0x%02X, Data: 0x%02X\n",
2068 offset, crtcport, mask, data);
2069
2070 /*
2071 * I have no idea what this does, but NVIDIA do this magic sequence
2072 * in the places where this INIT_IO happens..
2073 */
2074 if (dev_priv->card_type >= NV_50 && crtcport == 0x3c3 && data == 1) {
2075 int i;
2076
2077 bios_wr32(bios, 0x614100, (bios_rd32(
2078 bios, 0x614100) & 0x0fffffff) | 0x00800000);
2079
2080 bios_wr32(bios, 0x00e18c, bios_rd32(
2081 bios, 0x00e18c) | 0x00020000);
2082
2083 bios_wr32(bios, 0x614900, (bios_rd32(
2084 bios, 0x614900) & 0x0fffffff) | 0x00800000);
2085
2086 bios_wr32(bios, 0x000200, bios_rd32(
2087 bios, 0x000200) & ~0x40000000);
2088
2089 mdelay(10);
2090
2091 bios_wr32(bios, 0x00e18c, bios_rd32(
2092 bios, 0x00e18c) & ~0x00020000);
2093
2094 bios_wr32(bios, 0x000200, bios_rd32(
2095 bios, 0x000200) | 0x40000000);
2096
2097 bios_wr32(bios, 0x614100, 0x00800018);
2098 bios_wr32(bios, 0x614900, 0x00800018);
2099
2100 mdelay(10);
2101
2102 bios_wr32(bios, 0x614100, 0x10000018);
2103 bios_wr32(bios, 0x614900, 0x10000018);
2104
2105 for (i = 0; i < 3; i++)
2106 bios_wr32(bios, 0x614280 + (i*0x800), bios_rd32(
2107 bios, 0x614280 + (i*0x800)) & 0xf0f0f0f0);
2108
2109 for (i = 0; i < 2; i++)
2110 bios_wr32(bios, 0x614300 + (i*0x800), bios_rd32(
2111 bios, 0x614300 + (i*0x800)) & 0xfffff0f0);
2112
2113 for (i = 0; i < 3; i++)
2114 bios_wr32(bios, 0x614380 + (i*0x800), bios_rd32(
2115 bios, 0x614380 + (i*0x800)) & 0xfffff0f0);
2116
2117 for (i = 0; i < 2; i++)
2118 bios_wr32(bios, 0x614200 + (i*0x800), bios_rd32(
2119 bios, 0x614200 + (i*0x800)) & 0xfffffff0);
2120
2121 for (i = 0; i < 2; i++)
2122 bios_wr32(bios, 0x614108 + (i*0x800), bios_rd32(
2123 bios, 0x614108 + (i*0x800)) & 0x0fffffff);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002124 return 5;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002125 }
2126
2127 bios_port_wr(bios, crtcport, (bios_port_rd(bios, crtcport) & mask) |
2128 data);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002129 return 5;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002130}
2131
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002132static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002133init_sub(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2134{
2135 /*
2136 * INIT_SUB opcode: 0x6B ('k')
2137 *
2138 * offset (8 bit): opcode
2139 * offset + 1 (8 bit): script number
2140 *
2141 * Execute script number "script number", as a subroutine
2142 */
2143
2144 uint8_t sub = bios->data[offset + 1];
2145
2146 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002147 return 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002148
2149 BIOSLOG(bios, "0x%04X: Calling script %d\n", offset, sub);
2150
2151 parse_init_table(bios,
2152 ROM16(bios->data[bios->init_script_tbls_ptr + sub * 2]),
2153 iexec);
2154
2155 BIOSLOG(bios, "0x%04X: End of script %d\n", offset, sub);
2156
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002157 return 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002158}
2159
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002160static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002161init_ram_condition(struct nvbios *bios, uint16_t offset,
2162 struct init_exec *iexec)
2163{
2164 /*
2165 * INIT_RAM_CONDITION opcode: 0x6D ('m')
2166 *
2167 * offset (8 bit): opcode
2168 * offset + 1 (8 bit): mask
2169 * offset + 2 (8 bit): cmpval
2170 *
2171 * Test if (NV_PFB_BOOT_0 & "mask") equals "cmpval".
2172 * If condition not met skip subsequent opcodes until condition is
2173 * inverted (INIT_NOT), or we hit INIT_RESUME
2174 */
2175
2176 uint8_t mask = bios->data[offset + 1];
2177 uint8_t cmpval = bios->data[offset + 2];
2178 uint8_t data;
2179
2180 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002181 return 3;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002182
2183 data = bios_rd32(bios, NV_PFB_BOOT_0) & mask;
2184
2185 BIOSLOG(bios, "0x%04X: Checking if 0x%08X equals 0x%08X\n",
2186 offset, data, cmpval);
2187
2188 if (data == cmpval)
2189 BIOSLOG(bios, "0x%04X: Condition fulfilled -- continuing to execute\n", offset);
2190 else {
2191 BIOSLOG(bios, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset);
2192 iexec->execute = false;
2193 }
2194
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002195 return 3;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002196}
2197
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002198static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002199init_nv_reg(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2200{
2201 /*
2202 * INIT_NV_REG opcode: 0x6E ('n')
2203 *
2204 * offset (8 bit): opcode
2205 * offset + 1 (32 bit): register
2206 * offset + 5 (32 bit): mask
2207 * offset + 9 (32 bit): data
2208 *
2209 * Assign ((REGVAL("register") & "mask") | "data") to "register"
2210 */
2211
2212 uint32_t reg = ROM32(bios->data[offset + 1]);
2213 uint32_t mask = ROM32(bios->data[offset + 5]);
2214 uint32_t data = ROM32(bios->data[offset + 9]);
2215
2216 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002217 return 13;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002218
2219 BIOSLOG(bios, "0x%04X: Reg: 0x%08X, Mask: 0x%08X, Data: 0x%08X\n",
2220 offset, reg, mask, data);
2221
2222 bios_wr32(bios, reg, (bios_rd32(bios, reg) & mask) | data);
2223
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002224 return 13;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002225}
2226
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002227static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002228init_macro(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2229{
2230 /*
2231 * INIT_MACRO opcode: 0x6F ('o')
2232 *
2233 * offset (8 bit): opcode
2234 * offset + 1 (8 bit): macro number
2235 *
2236 * Look up macro index "macro number" in the macro index table.
2237 * The macro index table entry has 1 byte for the index in the macro
2238 * table, and 1 byte for the number of times to repeat the macro.
2239 * The macro table entry has 4 bytes for the register address and
2240 * 4 bytes for the value to write to that register
2241 */
2242
2243 uint8_t macro_index_tbl_idx = bios->data[offset + 1];
2244 uint16_t tmp = bios->macro_index_tbl_ptr + (macro_index_tbl_idx * MACRO_INDEX_SIZE);
2245 uint8_t macro_tbl_idx = bios->data[tmp];
2246 uint8_t count = bios->data[tmp + 1];
2247 uint32_t reg, data;
2248 int i;
2249
2250 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002251 return 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002252
2253 BIOSLOG(bios, "0x%04X: Macro: 0x%02X, MacroTableIndex: 0x%02X, "
2254 "Count: 0x%02X\n",
2255 offset, macro_index_tbl_idx, macro_tbl_idx, count);
2256
2257 for (i = 0; i < count; i++) {
2258 uint16_t macroentryptr = bios->macro_tbl_ptr + (macro_tbl_idx + i) * MACRO_SIZE;
2259
2260 reg = ROM32(bios->data[macroentryptr]);
2261 data = ROM32(bios->data[macroentryptr + 4]);
2262
2263 bios_wr32(bios, reg, data);
2264 }
2265
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002266 return 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002267}
2268
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002269static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002270init_done(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2271{
2272 /*
2273 * INIT_DONE opcode: 0x71 ('q')
2274 *
2275 * offset (8 bit): opcode
2276 *
2277 * End the current script
2278 */
2279
2280 /* mild retval abuse to stop parsing this table */
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002281 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002282}
2283
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002284static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002285init_resume(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2286{
2287 /*
2288 * INIT_RESUME opcode: 0x72 ('r')
2289 *
2290 * offset (8 bit): opcode
2291 *
2292 * End the current execute / no-execute condition
2293 */
2294
2295 if (iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002296 return 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002297
2298 iexec->execute = true;
2299 BIOSLOG(bios, "0x%04X: ---- Executing following commands ----\n", offset);
2300
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002301 return 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002302}
2303
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002304static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002305init_time(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2306{
2307 /*
2308 * INIT_TIME opcode: 0x74 ('t')
2309 *
2310 * offset (8 bit): opcode
2311 * offset + 1 (16 bit): time
2312 *
2313 * Sleep for "time" microseconds.
2314 */
2315
2316 unsigned time = ROM16(bios->data[offset + 1]);
2317
2318 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002319 return 3;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002320
2321 BIOSLOG(bios, "0x%04X: Sleeping for 0x%04X microseconds\n",
2322 offset, time);
2323
2324 if (time < 1000)
2325 udelay(time);
2326 else
2327 msleep((time + 900) / 1000);
2328
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002329 return 3;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002330}
2331
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002332static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002333init_condition(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2334{
2335 /*
2336 * INIT_CONDITION opcode: 0x75 ('u')
2337 *
2338 * offset (8 bit): opcode
2339 * offset + 1 (8 bit): condition number
2340 *
2341 * Check condition "condition number" in the condition table.
2342 * If condition not met skip subsequent opcodes until condition is
2343 * inverted (INIT_NOT), or we hit INIT_RESUME
2344 */
2345
2346 uint8_t cond = bios->data[offset + 1];
2347
2348 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002349 return 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002350
2351 BIOSLOG(bios, "0x%04X: Condition: 0x%02X\n", offset, cond);
2352
2353 if (bios_condition_met(bios, offset, cond))
2354 BIOSLOG(bios, "0x%04X: Condition fulfilled -- continuing to execute\n", offset);
2355 else {
2356 BIOSLOG(bios, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset);
2357 iexec->execute = false;
2358 }
2359
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002360 return 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002361}
2362
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002363static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002364init_io_condition(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2365{
2366 /*
2367 * INIT_IO_CONDITION opcode: 0x76
2368 *
2369 * offset (8 bit): opcode
2370 * offset + 1 (8 bit): condition number
2371 *
2372 * Check condition "condition number" in the io condition table.
2373 * If condition not met skip subsequent opcodes until condition is
2374 * inverted (INIT_NOT), or we hit INIT_RESUME
2375 */
2376
2377 uint8_t cond = bios->data[offset + 1];
2378
2379 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002380 return 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002381
2382 BIOSLOG(bios, "0x%04X: IO condition: 0x%02X\n", offset, cond);
2383
2384 if (io_condition_met(bios, offset, cond))
2385 BIOSLOG(bios, "0x%04X: Condition fulfilled -- continuing to execute\n", offset);
2386 else {
2387 BIOSLOG(bios, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset);
2388 iexec->execute = false;
2389 }
2390
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002391 return 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002392}
2393
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002394static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002395init_index_io(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2396{
2397 /*
2398 * INIT_INDEX_IO opcode: 0x78 ('x')
2399 *
2400 * offset (8 bit): opcode
2401 * offset + 1 (16 bit): CRTC port
2402 * offset + 3 (8 bit): CRTC index
2403 * offset + 4 (8 bit): mask
2404 * offset + 5 (8 bit): data
2405 *
2406 * Read value at index "CRTC index" on "CRTC port", AND with "mask",
2407 * OR with "data", write-back
2408 */
2409
2410 uint16_t crtcport = ROM16(bios->data[offset + 1]);
2411 uint8_t crtcindex = bios->data[offset + 3];
2412 uint8_t mask = bios->data[offset + 4];
2413 uint8_t data = bios->data[offset + 5];
2414 uint8_t value;
2415
2416 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002417 return 6;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002418
2419 BIOSLOG(bios, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
2420 "Data: 0x%02X\n",
2421 offset, crtcport, crtcindex, mask, data);
2422
2423 value = (bios_idxprt_rd(bios, crtcport, crtcindex) & mask) | data;
2424 bios_idxprt_wr(bios, crtcport, crtcindex, value);
2425
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002426 return 6;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002427}
2428
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002429static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002430init_pll(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2431{
2432 /*
2433 * INIT_PLL opcode: 0x79 ('y')
2434 *
2435 * offset (8 bit): opcode
2436 * offset + 1 (32 bit): register
2437 * offset + 5 (16 bit): freq
2438 *
2439 * Set PLL register "register" to coefficients for frequency (10kHz)
2440 * "freq"
2441 */
2442
2443 uint32_t reg = ROM32(bios->data[offset + 1]);
2444 uint16_t freq = ROM16(bios->data[offset + 5]);
2445
2446 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002447 return 7;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002448
2449 BIOSLOG(bios, "0x%04X: Reg: 0x%08X, Freq: %d0kHz\n", offset, reg, freq);
2450
2451 setPLL(bios, reg, freq * 10);
2452
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002453 return 7;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002454}
2455
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002456static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002457init_zm_reg(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2458{
2459 /*
2460 * INIT_ZM_REG opcode: 0x7A ('z')
2461 *
2462 * offset (8 bit): opcode
2463 * offset + 1 (32 bit): register
2464 * offset + 5 (32 bit): value
2465 *
2466 * Assign "value" to "register"
2467 */
2468
2469 uint32_t reg = ROM32(bios->data[offset + 1]);
2470 uint32_t value = ROM32(bios->data[offset + 5]);
2471
2472 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002473 return 9;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002474
2475 if (reg == 0x000200)
2476 value |= 1;
2477
2478 bios_wr32(bios, reg, value);
2479
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002480 return 9;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002481}
2482
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002483static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002484init_ram_restrict_pll(struct nvbios *bios, uint16_t offset,
2485 struct init_exec *iexec)
2486{
2487 /*
2488 * INIT_RAM_RESTRICT_PLL opcode: 0x87 ('')
2489 *
2490 * offset (8 bit): opcode
2491 * offset + 1 (8 bit): PLL type
2492 * offset + 2 (32 bit): frequency 0
2493 *
2494 * Uses the RAMCFG strap of PEXTDEV_BOOT as an index into the table at
2495 * ram_restrict_table_ptr. The value read from there is used to select
2496 * a frequency from the table starting at 'frequency 0' to be
2497 * programmed into the PLL corresponding to 'type'.
2498 *
2499 * The PLL limits table on cards using this opcode has a mapping of
2500 * 'type' to the relevant registers.
2501 */
2502
2503 struct drm_device *dev = bios->dev;
2504 uint32_t strap = (bios_rd32(bios, NV_PEXTDEV_BOOT_0) & 0x0000003c) >> 2;
2505 uint8_t index = bios->data[bios->ram_restrict_tbl_ptr + strap];
2506 uint8_t type = bios->data[offset + 1];
2507 uint32_t freq = ROM32(bios->data[offset + 2 + (index * 4)]);
2508 uint8_t *pll_limits = &bios->data[bios->pll_limit_tbl_ptr], *entry;
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002509 int len = 2 + bios->ram_restrict_group_count * 4;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002510 int i;
2511
2512 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002513 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002514
2515 if (!bios->pll_limit_tbl_ptr || (pll_limits[0] & 0xf0) != 0x30) {
2516 NV_ERROR(dev, "PLL limits table not version 3.x\n");
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002517 return len; /* deliberate, allow default clocks to remain */
Ben Skeggs6ee73862009-12-11 19:24:15 +10002518 }
2519
2520 entry = pll_limits + pll_limits[1];
2521 for (i = 0; i < pll_limits[3]; i++, entry += pll_limits[2]) {
2522 if (entry[0] == type) {
2523 uint32_t reg = ROM32(entry[3]);
2524
2525 BIOSLOG(bios, "0x%04X: "
2526 "Type %02x Reg 0x%08x Freq %dKHz\n",
2527 offset, type, reg, freq);
2528
2529 setPLL(bios, reg, freq);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002530 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002531 }
2532 }
2533
2534 NV_ERROR(dev, "PLL type 0x%02x not found in PLL limits table", type);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002535 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002536}
2537
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002538static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002539init_8c(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2540{
2541 /*
2542 * INIT_8C opcode: 0x8C ('')
2543 *
2544 * NOP so far....
2545 *
2546 */
2547
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002548 return 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002549}
2550
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002551static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002552init_8d(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2553{
2554 /*
2555 * INIT_8D opcode: 0x8D ('')
2556 *
2557 * NOP so far....
2558 *
2559 */
2560
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002561 return 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002562}
2563
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002564static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002565init_gpio(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2566{
2567 /*
2568 * INIT_GPIO opcode: 0x8E ('')
2569 *
2570 * offset (8 bit): opcode
2571 *
2572 * Loop over all entries in the DCB GPIO table, and initialise
2573 * each GPIO according to various values listed in each entry
2574 */
2575
2576 const uint32_t nv50_gpio_reg[4] = { 0xe104, 0xe108, 0xe280, 0xe284 };
2577 const uint32_t nv50_gpio_ctl[2] = { 0xe100, 0xe28c };
Ben Skeggs7f245b22010-02-24 09:56:18 +10002578 const uint8_t *gpio_table = &bios->data[bios->dcb.gpio_table_ptr];
Ben Skeggs6ee73862009-12-11 19:24:15 +10002579 const uint8_t *gpio_entry;
2580 int i;
2581
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002582 if (!iexec->execute)
2583 return 1;
2584
Ben Skeggs7f245b22010-02-24 09:56:18 +10002585 if (bios->dcb.version != 0x40) {
Ben Skeggs6ee73862009-12-11 19:24:15 +10002586 NV_ERROR(bios->dev, "DCB table not version 4.0\n");
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002587 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002588 }
2589
Ben Skeggs7f245b22010-02-24 09:56:18 +10002590 if (!bios->dcb.gpio_table_ptr) {
Ben Skeggs6ee73862009-12-11 19:24:15 +10002591 NV_WARN(bios->dev, "Invalid pointer to INIT_8E table\n");
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002592 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002593 }
2594
2595 gpio_entry = gpio_table + gpio_table[1];
2596 for (i = 0; i < gpio_table[2]; i++, gpio_entry += gpio_table[3]) {
2597 uint32_t entry = ROM32(gpio_entry[0]), r, s, v;
2598 int line = (entry & 0x0000001f);
2599
2600 BIOSLOG(bios, "0x%04X: Entry: 0x%08X\n", offset, entry);
2601
2602 if ((entry & 0x0000ff00) == 0x0000ff00)
2603 continue;
2604
2605 r = nv50_gpio_reg[line >> 3];
2606 s = (line & 0x07) << 2;
2607 v = bios_rd32(bios, r) & ~(0x00000003 << s);
2608 if (entry & 0x01000000)
2609 v |= (((entry & 0x60000000) >> 29) ^ 2) << s;
2610 else
2611 v |= (((entry & 0x18000000) >> 27) ^ 2) << s;
2612 bios_wr32(bios, r, v);
2613
2614 r = nv50_gpio_ctl[line >> 4];
2615 s = (line & 0x0f);
2616 v = bios_rd32(bios, r) & ~(0x00010001 << s);
2617 switch ((entry & 0x06000000) >> 25) {
2618 case 1:
2619 v |= (0x00000001 << s);
2620 break;
2621 case 2:
2622 v |= (0x00010000 << s);
2623 break;
2624 default:
2625 break;
2626 }
2627 bios_wr32(bios, r, v);
2628 }
2629
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002630 return 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002631}
2632
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002633static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002634init_ram_restrict_zm_reg_group(struct nvbios *bios, uint16_t offset,
2635 struct init_exec *iexec)
2636{
2637 /*
2638 * INIT_RAM_RESTRICT_ZM_REG_GROUP opcode: 0x8F ('')
2639 *
2640 * offset (8 bit): opcode
2641 * offset + 1 (32 bit): reg
2642 * offset + 5 (8 bit): regincrement
2643 * offset + 6 (8 bit): count
2644 * offset + 7 (32 bit): value 1,1
2645 * ...
2646 *
2647 * Use the RAMCFG strap of PEXTDEV_BOOT as an index into the table at
2648 * ram_restrict_table_ptr. The value read from here is 'n', and
2649 * "value 1,n" gets written to "reg". This repeats "count" times and on
2650 * each iteration 'm', "reg" increases by "regincrement" and
2651 * "value m,n" is used. The extent of n is limited by a number read
2652 * from the 'M' BIT table, herein called "blocklen"
2653 */
2654
2655 uint32_t reg = ROM32(bios->data[offset + 1]);
2656 uint8_t regincrement = bios->data[offset + 5];
2657 uint8_t count = bios->data[offset + 6];
2658 uint32_t strap_ramcfg, data;
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002659 /* previously set by 'M' BIT table */
2660 uint16_t blocklen = bios->ram_restrict_group_count * 4;
2661 int len = 7 + count * blocklen;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002662 uint8_t index;
2663 int i;
2664
Ben Skeggs6ee73862009-12-11 19:24:15 +10002665
2666 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002667 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002668
2669 if (!blocklen) {
2670 NV_ERROR(bios->dev,
2671 "0x%04X: Zero block length - has the M table "
2672 "been parsed?\n", offset);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002673 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002674 }
2675
2676 strap_ramcfg = (bios_rd32(bios, NV_PEXTDEV_BOOT_0) >> 2) & 0xf;
2677 index = bios->data[bios->ram_restrict_tbl_ptr + strap_ramcfg];
2678
2679 BIOSLOG(bios, "0x%04X: Reg: 0x%08X, RegIncrement: 0x%02X, "
2680 "Count: 0x%02X, StrapRamCfg: 0x%02X, Index: 0x%02X\n",
2681 offset, reg, regincrement, count, strap_ramcfg, index);
2682
2683 for (i = 0; i < count; i++) {
2684 data = ROM32(bios->data[offset + 7 + index * 4 + blocklen * i]);
2685
2686 bios_wr32(bios, reg, data);
2687
2688 reg += regincrement;
2689 }
2690
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002691 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002692}
2693
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002694static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002695init_copy_zm_reg(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2696{
2697 /*
2698 * INIT_COPY_ZM_REG opcode: 0x90 ('')
2699 *
2700 * offset (8 bit): opcode
2701 * offset + 1 (32 bit): src reg
2702 * offset + 5 (32 bit): dst reg
2703 *
2704 * Put contents of "src reg" into "dst reg"
2705 */
2706
2707 uint32_t srcreg = ROM32(bios->data[offset + 1]);
2708 uint32_t dstreg = ROM32(bios->data[offset + 5]);
2709
2710 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002711 return 9;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002712
2713 bios_wr32(bios, dstreg, bios_rd32(bios, srcreg));
2714
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002715 return 9;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002716}
2717
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002718static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002719init_zm_reg_group_addr_latched(struct nvbios *bios, uint16_t offset,
2720 struct init_exec *iexec)
2721{
2722 /*
2723 * INIT_ZM_REG_GROUP_ADDRESS_LATCHED opcode: 0x91 ('')
2724 *
2725 * offset (8 bit): opcode
2726 * offset + 1 (32 bit): dst reg
2727 * offset + 5 (8 bit): count
2728 * offset + 6 (32 bit): data 1
2729 * ...
2730 *
2731 * For each of "count" values write "data n" to "dst reg"
2732 */
2733
2734 uint32_t reg = ROM32(bios->data[offset + 1]);
2735 uint8_t count = bios->data[offset + 5];
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002736 int len = 6 + count * 4;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002737 int i;
2738
2739 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002740 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002741
2742 for (i = 0; i < count; i++) {
2743 uint32_t data = ROM32(bios->data[offset + 6 + 4 * i]);
2744 bios_wr32(bios, reg, data);
2745 }
2746
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002747 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002748}
2749
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002750static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002751init_reserved(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2752{
2753 /*
2754 * INIT_RESERVED opcode: 0x92 ('')
2755 *
2756 * offset (8 bit): opcode
2757 *
2758 * Seemingly does nothing
2759 */
2760
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002761 return 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002762}
2763
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002764static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002765init_96(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2766{
2767 /*
2768 * INIT_96 opcode: 0x96 ('')
2769 *
2770 * offset (8 bit): opcode
2771 * offset + 1 (32 bit): sreg
2772 * offset + 5 (8 bit): sshift
2773 * offset + 6 (8 bit): smask
2774 * offset + 7 (8 bit): index
2775 * offset + 8 (32 bit): reg
2776 * offset + 12 (32 bit): mask
2777 * offset + 16 (8 bit): shift
2778 *
2779 */
2780
2781 uint16_t xlatptr = bios->init96_tbl_ptr + (bios->data[offset + 7] * 2);
2782 uint32_t reg = ROM32(bios->data[offset + 8]);
2783 uint32_t mask = ROM32(bios->data[offset + 12]);
2784 uint32_t val;
2785
2786 val = bios_rd32(bios, ROM32(bios->data[offset + 1]));
2787 if (bios->data[offset + 5] < 0x80)
2788 val >>= bios->data[offset + 5];
2789 else
2790 val <<= (0x100 - bios->data[offset + 5]);
2791 val &= bios->data[offset + 6];
2792
2793 val = bios->data[ROM16(bios->data[xlatptr]) + val];
2794 val <<= bios->data[offset + 16];
2795
2796 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002797 return 17;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002798
2799 bios_wr32(bios, reg, (bios_rd32(bios, reg) & mask) | val);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002800 return 17;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002801}
2802
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002803static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002804init_97(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2805{
2806 /*
2807 * INIT_97 opcode: 0x97 ('')
2808 *
2809 * offset (8 bit): opcode
2810 * offset + 1 (32 bit): register
2811 * offset + 5 (32 bit): mask
2812 * offset + 9 (32 bit): value
2813 *
2814 * Adds "value" to "register" preserving the fields specified
2815 * by "mask"
2816 */
2817
2818 uint32_t reg = ROM32(bios->data[offset + 1]);
2819 uint32_t mask = ROM32(bios->data[offset + 5]);
2820 uint32_t add = ROM32(bios->data[offset + 9]);
2821 uint32_t val;
2822
2823 val = bios_rd32(bios, reg);
2824 val = (val & mask) | ((val + add) & ~mask);
2825
2826 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002827 return 13;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002828
2829 bios_wr32(bios, reg, val);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002830 return 13;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002831}
2832
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002833static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002834init_auxch(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2835{
2836 /*
2837 * INIT_AUXCH opcode: 0x98 ('')
2838 *
2839 * offset (8 bit): opcode
2840 * offset + 1 (32 bit): address
2841 * offset + 5 (8 bit): count
2842 * offset + 6 (8 bit): mask 0
2843 * offset + 7 (8 bit): data 0
2844 * ...
2845 *
2846 */
2847
2848 struct drm_device *dev = bios->dev;
2849 struct nouveau_i2c_chan *auxch;
2850 uint32_t addr = ROM32(bios->data[offset + 1]);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002851 uint8_t count = bios->data[offset + 5];
2852 int len = 6 + count * 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002853 int ret, i;
2854
2855 if (!bios->display.output) {
2856 NV_ERROR(dev, "INIT_AUXCH: no active output\n");
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002857 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002858 }
2859
2860 auxch = init_i2c_device_find(dev, bios->display.output->i2c_index);
2861 if (!auxch) {
2862 NV_ERROR(dev, "INIT_AUXCH: couldn't get auxch %d\n",
2863 bios->display.output->i2c_index);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002864 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002865 }
2866
2867 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002868 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002869
2870 offset += 6;
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002871 for (i = 0; i < count; i++, offset += 2) {
Ben Skeggs6ee73862009-12-11 19:24:15 +10002872 uint8_t data;
2873
2874 ret = nouveau_dp_auxch(auxch, 9, addr, &data, 1);
2875 if (ret) {
2876 NV_ERROR(dev, "INIT_AUXCH: rd auxch fail %d\n", ret);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002877 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002878 }
2879
2880 data &= bios->data[offset + 0];
2881 data |= bios->data[offset + 1];
2882
2883 ret = nouveau_dp_auxch(auxch, 8, addr, &data, 1);
2884 if (ret) {
2885 NV_ERROR(dev, "INIT_AUXCH: wr auxch fail %d\n", ret);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002886 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002887 }
2888 }
2889
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002890 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002891}
2892
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002893static int
Ben Skeggs6ee73862009-12-11 19:24:15 +10002894init_zm_auxch(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
2895{
2896 /*
2897 * INIT_ZM_AUXCH opcode: 0x99 ('')
2898 *
2899 * offset (8 bit): opcode
2900 * offset + 1 (32 bit): address
2901 * offset + 5 (8 bit): count
2902 * offset + 6 (8 bit): data 0
2903 * ...
2904 *
2905 */
2906
2907 struct drm_device *dev = bios->dev;
2908 struct nouveau_i2c_chan *auxch;
2909 uint32_t addr = ROM32(bios->data[offset + 1]);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002910 uint8_t count = bios->data[offset + 5];
2911 int len = 6 + count;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002912 int ret, i;
2913
2914 if (!bios->display.output) {
2915 NV_ERROR(dev, "INIT_ZM_AUXCH: no active output\n");
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002916 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002917 }
2918
2919 auxch = init_i2c_device_find(dev, bios->display.output->i2c_index);
2920 if (!auxch) {
2921 NV_ERROR(dev, "INIT_ZM_AUXCH: couldn't get auxch %d\n",
2922 bios->display.output->i2c_index);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002923 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002924 }
2925
2926 if (!iexec->execute)
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002927 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002928
2929 offset += 6;
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002930 for (i = 0; i < count; i++, offset++) {
Ben Skeggs6ee73862009-12-11 19:24:15 +10002931 ret = nouveau_dp_auxch(auxch, 8, addr, &bios->data[offset], 1);
2932 if (ret) {
2933 NV_ERROR(dev, "INIT_ZM_AUXCH: wr auxch fail %d\n", ret);
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002934 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002935 }
2936 }
2937
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002938 return len;
Ben Skeggs6ee73862009-12-11 19:24:15 +10002939}
2940
2941static struct init_tbl_entry itbl_entry[] = {
2942 /* command name , id , length , offset , mult , command handler */
2943 /* INIT_PROG (0x31, 15, 10, 4) removed due to no example of use */
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002944 { "INIT_IO_RESTRICT_PROG" , 0x32, init_io_restrict_prog },
2945 { "INIT_REPEAT" , 0x33, init_repeat },
2946 { "INIT_IO_RESTRICT_PLL" , 0x34, init_io_restrict_pll },
2947 { "INIT_END_REPEAT" , 0x36, init_end_repeat },
2948 { "INIT_COPY" , 0x37, init_copy },
2949 { "INIT_NOT" , 0x38, init_not },
2950 { "INIT_IO_FLAG_CONDITION" , 0x39, init_io_flag_condition },
2951 { "INIT_INDEX_ADDRESS_LATCHED" , 0x49, init_idx_addr_latched },
2952 { "INIT_IO_RESTRICT_PLL2" , 0x4A, init_io_restrict_pll2 },
2953 { "INIT_PLL2" , 0x4B, init_pll2 },
2954 { "INIT_I2C_BYTE" , 0x4C, init_i2c_byte },
2955 { "INIT_ZM_I2C_BYTE" , 0x4D, init_zm_i2c_byte },
2956 { "INIT_ZM_I2C" , 0x4E, init_zm_i2c },
2957 { "INIT_TMDS" , 0x4F, init_tmds },
2958 { "INIT_ZM_TMDS_GROUP" , 0x50, init_zm_tmds_group },
2959 { "INIT_CR_INDEX_ADDRESS_LATCHED" , 0x51, init_cr_idx_adr_latch },
2960 { "INIT_CR" , 0x52, init_cr },
2961 { "INIT_ZM_CR" , 0x53, init_zm_cr },
2962 { "INIT_ZM_CR_GROUP" , 0x54, init_zm_cr_group },
2963 { "INIT_CONDITION_TIME" , 0x56, init_condition_time },
2964 { "INIT_ZM_REG_SEQUENCE" , 0x58, init_zm_reg_sequence },
Ben Skeggs6ee73862009-12-11 19:24:15 +10002965 /* INIT_INDIRECT_REG (0x5A, 7, 0, 0) removed due to no example of use */
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002966 { "INIT_SUB_DIRECT" , 0x5B, init_sub_direct },
2967 { "INIT_COPY_NV_REG" , 0x5F, init_copy_nv_reg },
2968 { "INIT_ZM_INDEX_IO" , 0x62, init_zm_index_io },
2969 { "INIT_COMPUTE_MEM" , 0x63, init_compute_mem },
2970 { "INIT_RESET" , 0x65, init_reset },
2971 { "INIT_CONFIGURE_MEM" , 0x66, init_configure_mem },
2972 { "INIT_CONFIGURE_CLK" , 0x67, init_configure_clk },
2973 { "INIT_CONFIGURE_PREINIT" , 0x68, init_configure_preinit },
2974 { "INIT_IO" , 0x69, init_io },
2975 { "INIT_SUB" , 0x6B, init_sub },
2976 { "INIT_RAM_CONDITION" , 0x6D, init_ram_condition },
2977 { "INIT_NV_REG" , 0x6E, init_nv_reg },
2978 { "INIT_MACRO" , 0x6F, init_macro },
2979 { "INIT_DONE" , 0x71, init_done },
2980 { "INIT_RESUME" , 0x72, init_resume },
Ben Skeggs6ee73862009-12-11 19:24:15 +10002981 /* INIT_RAM_CONDITION2 (0x73, 9, 0, 0) removed due to no example of use */
Marcin Kościelnicki37383652009-12-15 00:37:31 +00002982 { "INIT_TIME" , 0x74, init_time },
2983 { "INIT_CONDITION" , 0x75, init_condition },
2984 { "INIT_IO_CONDITION" , 0x76, init_io_condition },
2985 { "INIT_INDEX_IO" , 0x78, init_index_io },
2986 { "INIT_PLL" , 0x79, init_pll },
2987 { "INIT_ZM_REG" , 0x7A, init_zm_reg },
2988 { "INIT_RAM_RESTRICT_PLL" , 0x87, init_ram_restrict_pll },
2989 { "INIT_8C" , 0x8C, init_8c },
2990 { "INIT_8D" , 0x8D, init_8d },
2991 { "INIT_GPIO" , 0x8E, init_gpio },
2992 { "INIT_RAM_RESTRICT_ZM_REG_GROUP" , 0x8F, init_ram_restrict_zm_reg_group },
2993 { "INIT_COPY_ZM_REG" , 0x90, init_copy_zm_reg },
2994 { "INIT_ZM_REG_GROUP_ADDRESS_LATCHED" , 0x91, init_zm_reg_group_addr_latched },
2995 { "INIT_RESERVED" , 0x92, init_reserved },
2996 { "INIT_96" , 0x96, init_96 },
2997 { "INIT_97" , 0x97, init_97 },
2998 { "INIT_AUXCH" , 0x98, init_auxch },
2999 { "INIT_ZM_AUXCH" , 0x99, init_zm_auxch },
3000 { NULL , 0 , NULL }
Ben Skeggs6ee73862009-12-11 19:24:15 +10003001};
3002
Ben Skeggs6ee73862009-12-11 19:24:15 +10003003#define MAX_TABLE_OPS 1000
3004
3005static int
3006parse_init_table(struct nvbios *bios, unsigned int offset,
3007 struct init_exec *iexec)
3008{
3009 /*
3010 * Parses all commands in an init table.
3011 *
3012 * We start out executing all commands found in the init table. Some
3013 * opcodes may change the status of iexec->execute to SKIP, which will
3014 * cause the following opcodes to perform no operation until the value
3015 * is changed back to EXECUTE.
3016 */
3017
Marcin Kościelnicki37383652009-12-15 00:37:31 +00003018 int count = 0, i, res;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003019 uint8_t id;
3020
3021 /*
3022 * Loop until INIT_DONE causes us to break out of the loop
3023 * (or until offset > bios length just in case... )
3024 * (and no more than MAX_TABLE_OPS iterations, just in case... )
3025 */
3026 while ((offset < bios->length) && (count++ < MAX_TABLE_OPS)) {
3027 id = bios->data[offset];
3028
3029 /* Find matching id in itbl_entry */
3030 for (i = 0; itbl_entry[i].name && (itbl_entry[i].id != id); i++)
3031 ;
3032
3033 if (itbl_entry[i].name) {
3034 BIOSLOG(bios, "0x%04X: [ (0x%02X) - %s ]\n",
3035 offset, itbl_entry[i].id, itbl_entry[i].name);
3036
3037 /* execute eventual command handler */
Marcin Kościelnicki37383652009-12-15 00:37:31 +00003038 res = (*itbl_entry[i].handler)(bios, offset, iexec);
3039 if (!res)
3040 break;
3041 /*
3042 * Add the offset of the current command including all data
3043 * of that command. The offset will then be pointing on the
3044 * next op code.
3045 */
3046 offset += res;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003047 } else {
3048 NV_ERROR(bios->dev,
3049 "0x%04X: Init table command not found: "
3050 "0x%02X\n", offset, id);
3051 return -ENOENT;
3052 }
Ben Skeggs6ee73862009-12-11 19:24:15 +10003053 }
3054
3055 if (offset >= bios->length)
3056 NV_WARN(bios->dev,
3057 "Offset 0x%04X greater than known bios image length. "
3058 "Corrupt image?\n", offset);
3059 if (count >= MAX_TABLE_OPS)
3060 NV_WARN(bios->dev,
3061 "More than %d opcodes to a table is unlikely, "
3062 "is the bios image corrupt?\n", MAX_TABLE_OPS);
3063
3064 return 0;
3065}
3066
3067static void
3068parse_init_tables(struct nvbios *bios)
3069{
3070 /* Loops and calls parse_init_table() for each present table. */
3071
3072 int i = 0;
3073 uint16_t table;
3074 struct init_exec iexec = {true, false};
3075
3076 if (bios->old_style_init) {
3077 if (bios->init_script_tbls_ptr)
3078 parse_init_table(bios, bios->init_script_tbls_ptr, &iexec);
3079 if (bios->extra_init_script_tbl_ptr)
3080 parse_init_table(bios, bios->extra_init_script_tbl_ptr, &iexec);
3081
3082 return;
3083 }
3084
3085 while ((table = ROM16(bios->data[bios->init_script_tbls_ptr + i]))) {
3086 NV_INFO(bios->dev,
3087 "Parsing VBIOS init table %d at offset 0x%04X\n",
3088 i / 2, table);
3089 BIOSLOG(bios, "0x%04X: ------ Executing following commands ------\n", table);
3090
3091 parse_init_table(bios, table, &iexec);
3092 i += 2;
3093 }
3094}
3095
3096static uint16_t clkcmptable(struct nvbios *bios, uint16_t clktable, int pxclk)
3097{
3098 int compare_record_len, i = 0;
3099 uint16_t compareclk, scriptptr = 0;
3100
3101 if (bios->major_version < 5) /* pre BIT */
3102 compare_record_len = 3;
3103 else
3104 compare_record_len = 4;
3105
3106 do {
3107 compareclk = ROM16(bios->data[clktable + compare_record_len * i]);
3108 if (pxclk >= compareclk * 10) {
3109 if (bios->major_version < 5) {
3110 uint8_t tmdssub = bios->data[clktable + 2 + compare_record_len * i];
3111 scriptptr = ROM16(bios->data[bios->init_script_tbls_ptr + tmdssub * 2]);
3112 } else
3113 scriptptr = ROM16(bios->data[clktable + 2 + compare_record_len * i]);
3114 break;
3115 }
3116 i++;
3117 } while (compareclk);
3118
3119 return scriptptr;
3120}
3121
3122static void
3123run_digital_op_script(struct drm_device *dev, uint16_t scriptptr,
3124 struct dcb_entry *dcbent, int head, bool dl)
3125{
3126 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10003127 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003128 struct init_exec iexec = {true, false};
3129
3130 NV_TRACE(dev, "0x%04X: Parsing digital output script table\n",
3131 scriptptr);
3132 bios_idxprt_wr(bios, NV_CIO_CRX__COLOR, NV_CIO_CRE_44,
3133 head ? NV_CIO_CRE_44_HEADB : NV_CIO_CRE_44_HEADA);
3134 /* note: if dcb entries have been merged, index may be misleading */
3135 NVWriteVgaCrtc5758(dev, head, 0, dcbent->index);
3136 parse_init_table(bios, scriptptr, &iexec);
3137
3138 nv04_dfp_bind_head(dev, dcbent, head, dl);
3139}
3140
3141static int call_lvds_manufacturer_script(struct drm_device *dev, struct dcb_entry *dcbent, int head, enum LVDS_script script)
3142{
3143 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10003144 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003145 uint8_t sub = bios->data[bios->fp.xlated_entry + script] + (bios->fp.link_c_increment && dcbent->or & OUTPUT_C ? 1 : 0);
3146 uint16_t scriptofs = ROM16(bios->data[bios->init_script_tbls_ptr + sub * 2]);
3147
3148 if (!bios->fp.xlated_entry || !sub || !scriptofs)
3149 return -EINVAL;
3150
3151 run_digital_op_script(dev, scriptofs, dcbent, head, bios->fp.dual_link);
3152
3153 if (script == LVDS_PANEL_OFF) {
3154 /* off-on delay in ms */
3155 msleep(ROM16(bios->data[bios->fp.xlated_entry + 7]));
3156 }
3157#ifdef __powerpc__
3158 /* Powerbook specific quirks */
Francisco Jerez3d9aefb2010-01-14 14:56:54 +01003159 if ((dev->pci_device & 0xffff) == 0x0179 ||
3160 (dev->pci_device & 0xffff) == 0x0189 ||
3161 (dev->pci_device & 0xffff) == 0x0329) {
3162 if (script == LVDS_RESET) {
3163 nv_write_tmds(dev, dcbent->or, 0, 0x02, 0x72);
3164
3165 } else if (script == LVDS_PANEL_ON) {
3166 bios_wr32(bios, NV_PBUS_DEBUG_DUALHEAD_CTL,
3167 bios_rd32(bios, NV_PBUS_DEBUG_DUALHEAD_CTL)
3168 | (1 << 31));
3169 bios_wr32(bios, NV_PCRTC_GPIO_EXT,
3170 bios_rd32(bios, NV_PCRTC_GPIO_EXT) | 1);
3171
3172 } else if (script == LVDS_PANEL_OFF) {
3173 bios_wr32(bios, NV_PBUS_DEBUG_DUALHEAD_CTL,
3174 bios_rd32(bios, NV_PBUS_DEBUG_DUALHEAD_CTL)
3175 & ~(1 << 31));
3176 bios_wr32(bios, NV_PCRTC_GPIO_EXT,
3177 bios_rd32(bios, NV_PCRTC_GPIO_EXT) & ~3);
Ben Skeggs6ee73862009-12-11 19:24:15 +10003178 }
3179 }
3180#endif
3181
3182 return 0;
3183}
3184
3185static int run_lvds_table(struct drm_device *dev, struct dcb_entry *dcbent, int head, enum LVDS_script script, int pxclk)
3186{
3187 /*
3188 * The BIT LVDS table's header has the information to setup the
3189 * necessary registers. Following the standard 4 byte header are:
3190 * A bitmask byte and a dual-link transition pxclk value for use in
3191 * selecting the init script when not using straps; 4 script pointers
3192 * for panel power, selected by output and on/off; and 8 table pointers
3193 * for panel init, the needed one determined by output, and bits in the
3194 * conf byte. These tables are similar to the TMDS tables, consisting
3195 * of a list of pxclks and script pointers.
3196 */
3197 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10003198 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003199 unsigned int outputset = (dcbent->or == 4) ? 1 : 0;
3200 uint16_t scriptptr = 0, clktable;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003201
3202 /*
3203 * For now we assume version 3.0 table - g80 support will need some
3204 * changes
3205 */
3206
3207 switch (script) {
3208 case LVDS_INIT:
3209 return -ENOSYS;
3210 case LVDS_BACKLIGHT_ON:
3211 case LVDS_PANEL_ON:
3212 scriptptr = ROM16(bios->data[bios->fp.lvdsmanufacturerpointer + 7 + outputset * 2]);
3213 break;
3214 case LVDS_BACKLIGHT_OFF:
3215 case LVDS_PANEL_OFF:
3216 scriptptr = ROM16(bios->data[bios->fp.lvdsmanufacturerpointer + 11 + outputset * 2]);
3217 break;
3218 case LVDS_RESET:
Ben Skeggsf3bbb9c2010-03-18 12:05:43 +10003219 clktable = bios->fp.lvdsmanufacturerpointer + 15;
3220 if (dcbent->or == 4)
3221 clktable += 8;
3222
Ben Skeggs6ee73862009-12-11 19:24:15 +10003223 if (dcbent->lvdsconf.use_straps_for_mode) {
3224 if (bios->fp.dual_link)
Ben Skeggsf3bbb9c2010-03-18 12:05:43 +10003225 clktable += 4;
3226 if (bios->fp.if_is_24bit)
3227 clktable += 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003228 } else {
3229 /* using EDID */
Ben Skeggsf3bbb9c2010-03-18 12:05:43 +10003230 int cmpval_24bit = (dcbent->or == 4) ? 4 : 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003231
3232 if (bios->fp.dual_link) {
Ben Skeggsf3bbb9c2010-03-18 12:05:43 +10003233 clktable += 4;
3234 cmpval_24bit <<= 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003235 }
Ben Skeggsf3bbb9c2010-03-18 12:05:43 +10003236
3237 if (bios->fp.strapless_is_24bit & cmpval_24bit)
3238 clktable += 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003239 }
3240
Ben Skeggsf3bbb9c2010-03-18 12:05:43 +10003241 clktable = ROM16(bios->data[clktable]);
Ben Skeggs6ee73862009-12-11 19:24:15 +10003242 if (!clktable) {
3243 NV_ERROR(dev, "Pixel clock comparison table not found\n");
3244 return -ENOENT;
3245 }
3246 scriptptr = clkcmptable(bios, clktable, pxclk);
3247 }
3248
3249 if (!scriptptr) {
3250 NV_ERROR(dev, "LVDS output init script not found\n");
3251 return -ENOENT;
3252 }
3253 run_digital_op_script(dev, scriptptr, dcbent, head, bios->fp.dual_link);
3254
3255 return 0;
3256}
3257
3258int call_lvds_script(struct drm_device *dev, struct dcb_entry *dcbent, int head, enum LVDS_script script, int pxclk)
3259{
3260 /*
3261 * LVDS operations are multiplexed in an effort to present a single API
3262 * which works with two vastly differing underlying structures.
3263 * This acts as the demux
3264 */
3265
3266 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10003267 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003268 uint8_t lvds_ver = bios->data[bios->fp.lvdsmanufacturerpointer];
3269 uint32_t sel_clk_binding, sel_clk;
3270 int ret;
3271
3272 if (bios->fp.last_script_invoc == (script << 1 | head) || !lvds_ver ||
3273 (lvds_ver >= 0x30 && script == LVDS_INIT))
3274 return 0;
3275
3276 if (!bios->fp.lvds_init_run) {
3277 bios->fp.lvds_init_run = true;
3278 call_lvds_script(dev, dcbent, head, LVDS_INIT, pxclk);
3279 }
3280
3281 if (script == LVDS_PANEL_ON && bios->fp.reset_after_pclk_change)
3282 call_lvds_script(dev, dcbent, head, LVDS_RESET, pxclk);
3283 if (script == LVDS_RESET && bios->fp.power_off_for_reset)
3284 call_lvds_script(dev, dcbent, head, LVDS_PANEL_OFF, pxclk);
3285
3286 NV_TRACE(dev, "Calling LVDS script %d:\n", script);
3287
3288 /* don't let script change pll->head binding */
3289 sel_clk_binding = bios_rd32(bios, NV_PRAMDAC_SEL_CLK) & 0x50000;
3290
3291 if (lvds_ver < 0x30)
3292 ret = call_lvds_manufacturer_script(dev, dcbent, head, script);
3293 else
3294 ret = run_lvds_table(dev, dcbent, head, script, pxclk);
3295
3296 bios->fp.last_script_invoc = (script << 1 | head);
3297
3298 sel_clk = NVReadRAMDAC(dev, 0, NV_PRAMDAC_SEL_CLK) & ~0x50000;
3299 NVWriteRAMDAC(dev, 0, NV_PRAMDAC_SEL_CLK, sel_clk | sel_clk_binding);
3300 /* some scripts set a value in NV_PBUS_POWERCTRL_2 and break video overlay */
3301 nvWriteMC(dev, NV_PBUS_POWERCTRL_2, 0);
3302
3303 return ret;
3304}
3305
3306struct lvdstableheader {
3307 uint8_t lvds_ver, headerlen, recordlen;
3308};
3309
3310static int parse_lvds_manufacturer_table_header(struct drm_device *dev, struct nvbios *bios, struct lvdstableheader *lth)
3311{
3312 /*
3313 * BMP version (0xa) LVDS table has a simple header of version and
3314 * record length. The BIT LVDS table has the typical BIT table header:
3315 * version byte, header length byte, record length byte, and a byte for
3316 * the maximum number of records that can be held in the table.
3317 */
3318
3319 uint8_t lvds_ver, headerlen, recordlen;
3320
3321 memset(lth, 0, sizeof(struct lvdstableheader));
3322
3323 if (bios->fp.lvdsmanufacturerpointer == 0x0) {
3324 NV_ERROR(dev, "Pointer to LVDS manufacturer table invalid\n");
3325 return -EINVAL;
3326 }
3327
3328 lvds_ver = bios->data[bios->fp.lvdsmanufacturerpointer];
3329
3330 switch (lvds_ver) {
3331 case 0x0a: /* pre NV40 */
3332 headerlen = 2;
3333 recordlen = bios->data[bios->fp.lvdsmanufacturerpointer + 1];
3334 break;
3335 case 0x30: /* NV4x */
3336 headerlen = bios->data[bios->fp.lvdsmanufacturerpointer + 1];
3337 if (headerlen < 0x1f) {
3338 NV_ERROR(dev, "LVDS table header not understood\n");
3339 return -EINVAL;
3340 }
3341 recordlen = bios->data[bios->fp.lvdsmanufacturerpointer + 2];
3342 break;
3343 case 0x40: /* G80/G90 */
3344 headerlen = bios->data[bios->fp.lvdsmanufacturerpointer + 1];
3345 if (headerlen < 0x7) {
3346 NV_ERROR(dev, "LVDS table header not understood\n");
3347 return -EINVAL;
3348 }
3349 recordlen = bios->data[bios->fp.lvdsmanufacturerpointer + 2];
3350 break;
3351 default:
3352 NV_ERROR(dev,
3353 "LVDS table revision %d.%d not currently supported\n",
3354 lvds_ver >> 4, lvds_ver & 0xf);
3355 return -ENOSYS;
3356 }
3357
3358 lth->lvds_ver = lvds_ver;
3359 lth->headerlen = headerlen;
3360 lth->recordlen = recordlen;
3361
3362 return 0;
3363}
3364
3365static int
3366get_fp_strap(struct drm_device *dev, struct nvbios *bios)
3367{
3368 struct drm_nouveau_private *dev_priv = dev->dev_private;
3369
3370 /*
3371 * The fp strap is normally dictated by the "User Strap" in
3372 * PEXTDEV_BOOT_0[20:16], but on BMP cards when bit 2 of the
3373 * Internal_Flags struct at 0x48 is set, the user strap gets overriden
3374 * by the PCI subsystem ID during POST, but not before the previous user
3375 * strap has been committed to CR58 for CR57=0xf on head A, which may be
3376 * read and used instead
3377 */
3378
3379 if (bios->major_version < 5 && bios->data[0x48] & 0x4)
3380 return NVReadVgaCrtc5758(dev, 0, 0xf) & 0xf;
3381
3382 if (dev_priv->card_type >= NV_50)
3383 return (bios_rd32(bios, NV_PEXTDEV_BOOT_0) >> 24) & 0xf;
3384 else
3385 return (bios_rd32(bios, NV_PEXTDEV_BOOT_0) >> 16) & 0xf;
3386}
3387
3388static int parse_fp_mode_table(struct drm_device *dev, struct nvbios *bios)
3389{
3390 uint8_t *fptable;
3391 uint8_t fptable_ver, headerlen = 0, recordlen, fpentries = 0xf, fpindex;
3392 int ret, ofs, fpstrapping;
3393 struct lvdstableheader lth;
3394
3395 if (bios->fp.fptablepointer == 0x0) {
3396 /* Apple cards don't have the fp table; the laptops use DDC */
3397 /* The table is also missing on some x86 IGPs */
3398#ifndef __powerpc__
3399 NV_ERROR(dev, "Pointer to flat panel table invalid\n");
3400#endif
Ben Skeggs04a39c52010-02-24 10:03:05 +10003401 bios->digital_min_front_porch = 0x4b;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003402 return 0;
3403 }
3404
3405 fptable = &bios->data[bios->fp.fptablepointer];
3406 fptable_ver = fptable[0];
3407
3408 switch (fptable_ver) {
3409 /*
3410 * BMP version 0x5.0x11 BIOSen have version 1 like tables, but no
3411 * version field, and miss one of the spread spectrum/PWM bytes.
3412 * This could affect early GF2Go parts (not seen any appropriate ROMs
3413 * though). Here we assume that a version of 0x05 matches this case
3414 * (combining with a BMP version check would be better), as the
3415 * common case for the panel type field is 0x0005, and that is in
3416 * fact what we are reading the first byte of.
3417 */
3418 case 0x05: /* some NV10, 11, 15, 16 */
3419 recordlen = 42;
3420 ofs = -1;
3421 break;
3422 case 0x10: /* some NV15/16, and NV11+ */
3423 recordlen = 44;
3424 ofs = 0;
3425 break;
3426 case 0x20: /* NV40+ */
3427 headerlen = fptable[1];
3428 recordlen = fptable[2];
3429 fpentries = fptable[3];
3430 /*
3431 * fptable[4] is the minimum
3432 * RAMDAC_FP_HCRTC -> RAMDAC_FP_HSYNC_START gap
3433 */
Ben Skeggs04a39c52010-02-24 10:03:05 +10003434 bios->digital_min_front_porch = fptable[4];
Ben Skeggs6ee73862009-12-11 19:24:15 +10003435 ofs = -7;
3436 break;
3437 default:
3438 NV_ERROR(dev,
3439 "FP table revision %d.%d not currently supported\n",
3440 fptable_ver >> 4, fptable_ver & 0xf);
3441 return -ENOSYS;
3442 }
3443
3444 if (!bios->is_mobile) /* !mobile only needs digital_min_front_porch */
3445 return 0;
3446
3447 ret = parse_lvds_manufacturer_table_header(dev, bios, &lth);
3448 if (ret)
3449 return ret;
3450
3451 if (lth.lvds_ver == 0x30 || lth.lvds_ver == 0x40) {
3452 bios->fp.fpxlatetableptr = bios->fp.lvdsmanufacturerpointer +
3453 lth.headerlen + 1;
3454 bios->fp.xlatwidth = lth.recordlen;
3455 }
3456 if (bios->fp.fpxlatetableptr == 0x0) {
3457 NV_ERROR(dev, "Pointer to flat panel xlat table invalid\n");
3458 return -EINVAL;
3459 }
3460
3461 fpstrapping = get_fp_strap(dev, bios);
3462
3463 fpindex = bios->data[bios->fp.fpxlatetableptr +
3464 fpstrapping * bios->fp.xlatwidth];
3465
3466 if (fpindex > fpentries) {
3467 NV_ERROR(dev, "Bad flat panel table index\n");
3468 return -ENOENT;
3469 }
3470
3471 /* nv4x cards need both a strap value and fpindex of 0xf to use DDC */
3472 if (lth.lvds_ver > 0x10)
Ben Skeggs04a39c52010-02-24 10:03:05 +10003473 bios->fp_no_ddc = fpstrapping != 0xf || fpindex != 0xf;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003474
3475 /*
3476 * If either the strap or xlated fpindex value are 0xf there is no
3477 * panel using a strap-derived bios mode present. this condition
3478 * includes, but is different from, the DDC panel indicator above
3479 */
3480 if (fpstrapping == 0xf || fpindex == 0xf)
3481 return 0;
3482
3483 bios->fp.mode_ptr = bios->fp.fptablepointer + headerlen +
3484 recordlen * fpindex + ofs;
3485
3486 NV_TRACE(dev, "BIOS FP mode: %dx%d (%dkHz pixel clock)\n",
3487 ROM16(bios->data[bios->fp.mode_ptr + 11]) + 1,
3488 ROM16(bios->data[bios->fp.mode_ptr + 25]) + 1,
3489 ROM16(bios->data[bios->fp.mode_ptr + 7]) * 10);
3490
3491 return 0;
3492}
3493
3494bool nouveau_bios_fp_mode(struct drm_device *dev, struct drm_display_mode *mode)
3495{
3496 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10003497 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003498 uint8_t *mode_entry = &bios->data[bios->fp.mode_ptr];
3499
3500 if (!mode) /* just checking whether we can produce a mode */
3501 return bios->fp.mode_ptr;
3502
3503 memset(mode, 0, sizeof(struct drm_display_mode));
3504 /*
3505 * For version 1.0 (version in byte 0):
3506 * bytes 1-2 are "panel type", including bits on whether Colour/mono,
3507 * single/dual link, and type (TFT etc.)
3508 * bytes 3-6 are bits per colour in RGBX
3509 */
3510 mode->clock = ROM16(mode_entry[7]) * 10;
3511 /* bytes 9-10 is HActive */
3512 mode->hdisplay = ROM16(mode_entry[11]) + 1;
3513 /*
3514 * bytes 13-14 is HValid Start
3515 * bytes 15-16 is HValid End
3516 */
3517 mode->hsync_start = ROM16(mode_entry[17]) + 1;
3518 mode->hsync_end = ROM16(mode_entry[19]) + 1;
3519 mode->htotal = ROM16(mode_entry[21]) + 1;
3520 /* bytes 23-24, 27-30 similarly, but vertical */
3521 mode->vdisplay = ROM16(mode_entry[25]) + 1;
3522 mode->vsync_start = ROM16(mode_entry[31]) + 1;
3523 mode->vsync_end = ROM16(mode_entry[33]) + 1;
3524 mode->vtotal = ROM16(mode_entry[35]) + 1;
3525 mode->flags |= (mode_entry[37] & 0x10) ?
3526 DRM_MODE_FLAG_PHSYNC : DRM_MODE_FLAG_NHSYNC;
3527 mode->flags |= (mode_entry[37] & 0x1) ?
3528 DRM_MODE_FLAG_PVSYNC : DRM_MODE_FLAG_NVSYNC;
3529 /*
3530 * bytes 38-39 relate to spread spectrum settings
3531 * bytes 40-43 are something to do with PWM
3532 */
3533
3534 mode->status = MODE_OK;
3535 mode->type = DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED;
3536 drm_mode_set_name(mode);
3537 return bios->fp.mode_ptr;
3538}
3539
3540int nouveau_bios_parse_lvds_table(struct drm_device *dev, int pxclk, bool *dl, bool *if_is_24bit)
3541{
3542 /*
3543 * The LVDS table header is (mostly) described in
3544 * parse_lvds_manufacturer_table_header(): the BIT header additionally
3545 * contains the dual-link transition pxclk (in 10s kHz), at byte 5 - if
3546 * straps are not being used for the panel, this specifies the frequency
3547 * at which modes should be set up in the dual link style.
3548 *
3549 * Following the header, the BMP (ver 0xa) table has several records,
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08003550 * indexed by a separate xlat table, indexed in turn by the fp strap in
Ben Skeggs6ee73862009-12-11 19:24:15 +10003551 * EXTDEV_BOOT. Each record had a config byte, followed by 6 script
3552 * numbers for use by INIT_SUB which controlled panel init and power,
3553 * and finally a dword of ms to sleep between power off and on
3554 * operations.
3555 *
3556 * In the BIT versions, the table following the header serves as an
3557 * integrated config and xlat table: the records in the table are
3558 * indexed by the FP strap nibble in EXTDEV_BOOT, and each record has
3559 * two bytes - the first as a config byte, the second for indexing the
3560 * fp mode table pointed to by the BIT 'D' table
3561 *
3562 * DDC is not used until after card init, so selecting the correct table
3563 * entry and setting the dual link flag for EDID equipped panels,
3564 * requiring tests against the native-mode pixel clock, cannot be done
3565 * until later, when this function should be called with non-zero pxclk
3566 */
3567 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10003568 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003569 int fpstrapping = get_fp_strap(dev, bios), lvdsmanufacturerindex = 0;
3570 struct lvdstableheader lth;
3571 uint16_t lvdsofs;
Ben Skeggs04a39c52010-02-24 10:03:05 +10003572 int ret, chip_version = bios->chip_version;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003573
3574 ret = parse_lvds_manufacturer_table_header(dev, bios, &lth);
3575 if (ret)
3576 return ret;
3577
3578 switch (lth.lvds_ver) {
3579 case 0x0a: /* pre NV40 */
3580 lvdsmanufacturerindex = bios->data[
3581 bios->fp.fpxlatemanufacturertableptr +
3582 fpstrapping];
3583
3584 /* we're done if this isn't the EDID panel case */
3585 if (!pxclk)
3586 break;
3587
3588 if (chip_version < 0x25) {
3589 /* nv17 behaviour
3590 *
3591 * It seems the old style lvds script pointer is reused
3592 * to select 18/24 bit colour depth for EDID panels.
3593 */
3594 lvdsmanufacturerindex =
3595 (bios->legacy.lvds_single_a_script_ptr & 1) ?
3596 2 : 0;
3597 if (pxclk >= bios->fp.duallink_transition_clk)
3598 lvdsmanufacturerindex++;
3599 } else if (chip_version < 0x30) {
3600 /* nv28 behaviour (off-chip encoder)
3601 *
3602 * nv28 does a complex dance of first using byte 121 of
3603 * the EDID to choose the lvdsmanufacturerindex, then
3604 * later attempting to match the EDID manufacturer and
3605 * product IDs in a table (signature 'pidt' (panel id
3606 * table?)), setting an lvdsmanufacturerindex of 0 and
3607 * an fp strap of the match index (or 0xf if none)
3608 */
3609 lvdsmanufacturerindex = 0;
3610 } else {
3611 /* nv31, nv34 behaviour */
3612 lvdsmanufacturerindex = 0;
3613 if (pxclk >= bios->fp.duallink_transition_clk)
3614 lvdsmanufacturerindex = 2;
3615 if (pxclk >= 140000)
3616 lvdsmanufacturerindex = 3;
3617 }
3618
3619 /*
3620 * nvidia set the high nibble of (cr57=f, cr58) to
3621 * lvdsmanufacturerindex in this case; we don't
3622 */
3623 break;
3624 case 0x30: /* NV4x */
3625 case 0x40: /* G80/G90 */
3626 lvdsmanufacturerindex = fpstrapping;
3627 break;
3628 default:
3629 NV_ERROR(dev, "LVDS table revision not currently supported\n");
3630 return -ENOSYS;
3631 }
3632
3633 lvdsofs = bios->fp.xlated_entry = bios->fp.lvdsmanufacturerpointer + lth.headerlen + lth.recordlen * lvdsmanufacturerindex;
3634 switch (lth.lvds_ver) {
3635 case 0x0a:
3636 bios->fp.power_off_for_reset = bios->data[lvdsofs] & 1;
3637 bios->fp.reset_after_pclk_change = bios->data[lvdsofs] & 2;
3638 bios->fp.dual_link = bios->data[lvdsofs] & 4;
3639 bios->fp.link_c_increment = bios->data[lvdsofs] & 8;
3640 *if_is_24bit = bios->data[lvdsofs] & 16;
3641 break;
3642 case 0x30:
Ben Skeggsf3bbb9c2010-03-18 12:05:43 +10003643 case 0x40:
Ben Skeggs6ee73862009-12-11 19:24:15 +10003644 /*
3645 * No sign of the "power off for reset" or "reset for panel
3646 * on" bits, but it's safer to assume we should
3647 */
3648 bios->fp.power_off_for_reset = true;
3649 bios->fp.reset_after_pclk_change = true;
Ben Skeggsf3bbb9c2010-03-18 12:05:43 +10003650
Ben Skeggs6ee73862009-12-11 19:24:15 +10003651 /*
3652 * It's ok lvdsofs is wrong for nv4x edid case; dual_link is
Ben Skeggsf3bbb9c2010-03-18 12:05:43 +10003653 * over-written, and if_is_24bit isn't used
Ben Skeggs6ee73862009-12-11 19:24:15 +10003654 */
3655 bios->fp.dual_link = bios->data[lvdsofs] & 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003656 bios->fp.if_is_24bit = bios->data[lvdsofs] & 2;
3657 bios->fp.strapless_is_24bit = bios->data[bios->fp.lvdsmanufacturerpointer + 4];
3658 bios->fp.duallink_transition_clk = ROM16(bios->data[bios->fp.lvdsmanufacturerpointer + 5]) * 10;
3659 break;
3660 }
3661
Ben Skeggs2eb92c82010-03-18 13:38:04 +10003662 /* Dell Latitude D620 reports a too-high value for the dual-link
3663 * transition freq, causing us to program the panel incorrectly.
3664 *
3665 * It doesn't appear the VBIOS actually uses its transition freq
3666 * (90000kHz), instead it uses the "Number of LVDS channels" field
3667 * out of the panel ID structure (http://www.spwg.org/).
3668 *
3669 * For the moment, a quirk will do :)
3670 */
3671 if ((dev->pdev->device == 0x01d7) &&
3672 (dev->pdev->subsystem_vendor == 0x1028) &&
3673 (dev->pdev->subsystem_device == 0x01c2)) {
3674 bios->fp.duallink_transition_clk = 80000;
3675 }
3676
Ben Skeggs6ee73862009-12-11 19:24:15 +10003677 /* set dual_link flag for EDID case */
3678 if (pxclk && (chip_version < 0x25 || chip_version > 0x28))
3679 bios->fp.dual_link = (pxclk >= bios->fp.duallink_transition_clk);
3680
3681 *dl = bios->fp.dual_link;
3682
3683 return 0;
3684}
3685
3686static uint8_t *
3687bios_output_config_match(struct drm_device *dev, struct dcb_entry *dcbent,
3688 uint16_t record, int record_len, int record_nr)
3689{
3690 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10003691 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003692 uint32_t entry;
3693 uint16_t table;
3694 int i, v;
3695
3696 for (i = 0; i < record_nr; i++, record += record_len) {
3697 table = ROM16(bios->data[record]);
3698 if (!table)
3699 continue;
3700 entry = ROM32(bios->data[table]);
3701
3702 v = (entry & 0x000f0000) >> 16;
3703 if (!(v & dcbent->or))
3704 continue;
3705
3706 v = (entry & 0x000000f0) >> 4;
3707 if (v != dcbent->location)
3708 continue;
3709
3710 v = (entry & 0x0000000f);
3711 if (v != dcbent->type)
3712 continue;
3713
3714 return &bios->data[table];
3715 }
3716
3717 return NULL;
3718}
3719
3720void *
3721nouveau_bios_dp_table(struct drm_device *dev, struct dcb_entry *dcbent,
3722 int *length)
3723{
3724 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10003725 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003726 uint8_t *table;
3727
3728 if (!bios->display.dp_table_ptr) {
3729 NV_ERROR(dev, "No pointer to DisplayPort table\n");
3730 return NULL;
3731 }
3732 table = &bios->data[bios->display.dp_table_ptr];
3733
Ben Skeggsc52e53f2010-02-25 11:53:00 +10003734 if (table[0] != 0x20 && table[0] != 0x21) {
Ben Skeggs6ee73862009-12-11 19:24:15 +10003735 NV_ERROR(dev, "DisplayPort table version 0x%02x unknown\n",
3736 table[0]);
3737 return NULL;
3738 }
3739
3740 *length = table[4];
3741 return bios_output_config_match(dev, dcbent,
3742 bios->display.dp_table_ptr + table[1],
3743 table[2], table[3]);
3744}
3745
3746int
3747nouveau_bios_run_display_table(struct drm_device *dev, struct dcb_entry *dcbent,
3748 uint32_t sub, int pxclk)
3749{
3750 /*
3751 * The display script table is located by the BIT 'U' table.
3752 *
3753 * It contains an array of pointers to various tables describing
3754 * a particular output type. The first 32-bits of the output
3755 * tables contains similar information to a DCB entry, and is
3756 * used to decide whether that particular table is suitable for
3757 * the output you want to access.
3758 *
3759 * The "record header length" field here seems to indicate the
3760 * offset of the first configuration entry in the output tables.
3761 * This is 10 on most cards I've seen, but 12 has been witnessed
3762 * on DP cards, and there's another script pointer within the
3763 * header.
3764 *
3765 * offset + 0 ( 8 bits): version
3766 * offset + 1 ( 8 bits): header length
3767 * offset + 2 ( 8 bits): record length
3768 * offset + 3 ( 8 bits): number of records
3769 * offset + 4 ( 8 bits): record header length
3770 * offset + 5 (16 bits): pointer to first output script table
3771 */
3772
3773 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10003774 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003775 uint8_t *table = &bios->data[bios->display.script_table_ptr];
3776 uint8_t *otable = NULL;
3777 uint16_t script;
3778 int i = 0;
3779
3780 if (!bios->display.script_table_ptr) {
3781 NV_ERROR(dev, "No pointer to output script table\n");
3782 return 1;
3783 }
3784
3785 /*
3786 * Nothing useful has been in any of the pre-2.0 tables I've seen,
3787 * so until they are, we really don't need to care.
3788 */
3789 if (table[0] < 0x20)
3790 return 1;
3791
3792 if (table[0] != 0x20 && table[0] != 0x21) {
3793 NV_ERROR(dev, "Output script table version 0x%02x unknown\n",
3794 table[0]);
3795 return 1;
3796 }
3797
3798 /*
3799 * The output script tables describing a particular output type
3800 * look as follows:
3801 *
3802 * offset + 0 (32 bits): output this table matches (hash of DCB)
3803 * offset + 4 ( 8 bits): unknown
3804 * offset + 5 ( 8 bits): number of configurations
3805 * offset + 6 (16 bits): pointer to some script
3806 * offset + 8 (16 bits): pointer to some script
3807 *
3808 * headerlen == 10
3809 * offset + 10 : configuration 0
3810 *
3811 * headerlen == 12
3812 * offset + 10 : pointer to some script
3813 * offset + 12 : configuration 0
3814 *
3815 * Each config entry is as follows:
3816 *
3817 * offset + 0 (16 bits): unknown, assumed to be a match value
3818 * offset + 2 (16 bits): pointer to script table (clock set?)
3819 * offset + 4 (16 bits): pointer to script table (reset?)
3820 *
3821 * There doesn't appear to be a count value to say how many
3822 * entries exist in each script table, instead, a 0 value in
3823 * the first 16-bit word seems to indicate both the end of the
3824 * list and the default entry. The second 16-bit word in the
3825 * script tables is a pointer to the script to execute.
3826 */
3827
Maarten Maathuisef2bb502009-12-13 16:53:12 +01003828 NV_DEBUG_KMS(dev, "Searching for output entry for %d %d %d\n",
Ben Skeggs6ee73862009-12-11 19:24:15 +10003829 dcbent->type, dcbent->location, dcbent->or);
3830 otable = bios_output_config_match(dev, dcbent, table[1] +
3831 bios->display.script_table_ptr,
3832 table[2], table[3]);
3833 if (!otable) {
3834 NV_ERROR(dev, "Couldn't find matching output script table\n");
3835 return 1;
3836 }
3837
3838 if (pxclk < -2 || pxclk > 0) {
3839 /* Try to find matching script table entry */
3840 for (i = 0; i < otable[5]; i++) {
3841 if (ROM16(otable[table[4] + i*6]) == sub)
3842 break;
3843 }
3844
3845 if (i == otable[5]) {
3846 NV_ERROR(dev, "Table 0x%04x not found for %d/%d, "
3847 "using first\n",
3848 sub, dcbent->type, dcbent->or);
3849 i = 0;
3850 }
3851 }
3852
Ben Skeggs6ee73862009-12-11 19:24:15 +10003853 if (pxclk == 0) {
3854 script = ROM16(otable[6]);
3855 if (!script) {
Maarten Maathuisef2bb502009-12-13 16:53:12 +01003856 NV_DEBUG_KMS(dev, "output script 0 not found\n");
Ben Skeggs6ee73862009-12-11 19:24:15 +10003857 return 1;
3858 }
3859
3860 NV_TRACE(dev, "0x%04X: parsing output script 0\n", script);
Ben Skeggs39c9bfb2010-02-09 10:22:29 +10003861 nouveau_bios_run_init_table(dev, script, dcbent);
Ben Skeggs6ee73862009-12-11 19:24:15 +10003862 } else
3863 if (pxclk == -1) {
3864 script = ROM16(otable[8]);
3865 if (!script) {
Maarten Maathuisef2bb502009-12-13 16:53:12 +01003866 NV_DEBUG_KMS(dev, "output script 1 not found\n");
Ben Skeggs6ee73862009-12-11 19:24:15 +10003867 return 1;
3868 }
3869
3870 NV_TRACE(dev, "0x%04X: parsing output script 1\n", script);
Ben Skeggs39c9bfb2010-02-09 10:22:29 +10003871 nouveau_bios_run_init_table(dev, script, dcbent);
Ben Skeggs6ee73862009-12-11 19:24:15 +10003872 } else
3873 if (pxclk == -2) {
3874 if (table[4] >= 12)
3875 script = ROM16(otable[10]);
3876 else
3877 script = 0;
3878 if (!script) {
Maarten Maathuisef2bb502009-12-13 16:53:12 +01003879 NV_DEBUG_KMS(dev, "output script 2 not found\n");
Ben Skeggs6ee73862009-12-11 19:24:15 +10003880 return 1;
3881 }
3882
3883 NV_TRACE(dev, "0x%04X: parsing output script 2\n", script);
Ben Skeggs39c9bfb2010-02-09 10:22:29 +10003884 nouveau_bios_run_init_table(dev, script, dcbent);
Ben Skeggs6ee73862009-12-11 19:24:15 +10003885 } else
3886 if (pxclk > 0) {
3887 script = ROM16(otable[table[4] + i*6 + 2]);
3888 if (script)
3889 script = clkcmptable(bios, script, pxclk);
3890 if (!script) {
3891 NV_ERROR(dev, "clock script 0 not found\n");
3892 return 1;
3893 }
3894
3895 NV_TRACE(dev, "0x%04X: parsing clock script 0\n", script);
Ben Skeggs39c9bfb2010-02-09 10:22:29 +10003896 nouveau_bios_run_init_table(dev, script, dcbent);
Ben Skeggs6ee73862009-12-11 19:24:15 +10003897 } else
3898 if (pxclk < 0) {
3899 script = ROM16(otable[table[4] + i*6 + 4]);
3900 if (script)
3901 script = clkcmptable(bios, script, -pxclk);
3902 if (!script) {
Maarten Maathuisef2bb502009-12-13 16:53:12 +01003903 NV_DEBUG_KMS(dev, "clock script 1 not found\n");
Ben Skeggs6ee73862009-12-11 19:24:15 +10003904 return 1;
3905 }
3906
3907 NV_TRACE(dev, "0x%04X: parsing clock script 1\n", script);
Ben Skeggs39c9bfb2010-02-09 10:22:29 +10003908 nouveau_bios_run_init_table(dev, script, dcbent);
Ben Skeggs6ee73862009-12-11 19:24:15 +10003909 }
3910
3911 return 0;
3912}
3913
3914
3915int run_tmds_table(struct drm_device *dev, struct dcb_entry *dcbent, int head, int pxclk)
3916{
3917 /*
3918 * the pxclk parameter is in kHz
3919 *
3920 * This runs the TMDS regs setting code found on BIT bios cards
3921 *
3922 * For ffs(or) == 1 use the first table, for ffs(or) == 2 and
3923 * ffs(or) == 3, use the second.
3924 */
3925
3926 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10003927 struct nvbios *bios = &dev_priv->vbios;
3928 int cv = bios->chip_version;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003929 uint16_t clktable = 0, scriptptr;
3930 uint32_t sel_clk_binding, sel_clk;
3931
3932 /* pre-nv17 off-chip tmds uses scripts, post nv17 doesn't */
3933 if (cv >= 0x17 && cv != 0x1a && cv != 0x20 &&
3934 dcbent->location != DCB_LOC_ON_CHIP)
3935 return 0;
3936
3937 switch (ffs(dcbent->or)) {
3938 case 1:
3939 clktable = bios->tmds.output0_script_ptr;
3940 break;
3941 case 2:
3942 case 3:
3943 clktable = bios->tmds.output1_script_ptr;
3944 break;
3945 }
3946
3947 if (!clktable) {
3948 NV_ERROR(dev, "Pixel clock comparison table not found\n");
3949 return -EINVAL;
3950 }
3951
3952 scriptptr = clkcmptable(bios, clktable, pxclk);
3953
3954 if (!scriptptr) {
3955 NV_ERROR(dev, "TMDS output init script not found\n");
3956 return -ENOENT;
3957 }
3958
3959 /* don't let script change pll->head binding */
3960 sel_clk_binding = bios_rd32(bios, NV_PRAMDAC_SEL_CLK) & 0x50000;
3961 run_digital_op_script(dev, scriptptr, dcbent, head, pxclk >= 165000);
3962 sel_clk = NVReadRAMDAC(dev, 0, NV_PRAMDAC_SEL_CLK) & ~0x50000;
3963 NVWriteRAMDAC(dev, 0, NV_PRAMDAC_SEL_CLK, sel_clk | sel_clk_binding);
3964
3965 return 0;
3966}
3967
3968int get_pll_limits(struct drm_device *dev, uint32_t limit_match, struct pll_lims *pll_lim)
3969{
3970 /*
3971 * PLL limits table
3972 *
3973 * Version 0x10: NV30, NV31
3974 * One byte header (version), one record of 24 bytes
3975 * Version 0x11: NV36 - Not implemented
3976 * Seems to have same record style as 0x10, but 3 records rather than 1
3977 * Version 0x20: Found on Geforce 6 cards
3978 * Trivial 4 byte BIT header. 31 (0x1f) byte record length
3979 * Version 0x21: Found on Geforce 7, 8 and some Geforce 6 cards
3980 * 5 byte header, fifth byte of unknown purpose. 35 (0x23) byte record
3981 * length in general, some (integrated) have an extra configuration byte
3982 * Version 0x30: Found on Geforce 8, separates the register mapping
3983 * from the limits tables.
3984 */
3985
3986 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10003987 struct nvbios *bios = &dev_priv->vbios;
3988 int cv = bios->chip_version, pllindex = 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10003989 uint8_t pll_lim_ver = 0, headerlen = 0, recordlen = 0, entries = 0;
3990 uint32_t crystal_strap_mask, crystal_straps;
3991
3992 if (!bios->pll_limit_tbl_ptr) {
3993 if (cv == 0x30 || cv == 0x31 || cv == 0x35 || cv == 0x36 ||
3994 cv >= 0x40) {
3995 NV_ERROR(dev, "Pointer to PLL limits table invalid\n");
3996 return -EINVAL;
3997 }
3998 } else
3999 pll_lim_ver = bios->data[bios->pll_limit_tbl_ptr];
4000
4001 crystal_strap_mask = 1 << 6;
4002 /* open coded dev->twoHeads test */
4003 if (cv > 0x10 && cv != 0x15 && cv != 0x1a && cv != 0x20)
4004 crystal_strap_mask |= 1 << 22;
4005 crystal_straps = nvReadEXTDEV(dev, NV_PEXTDEV_BOOT_0) &
4006 crystal_strap_mask;
4007
4008 switch (pll_lim_ver) {
4009 /*
4010 * We use version 0 to indicate a pre limit table bios (single stage
4011 * pll) and load the hard coded limits instead.
4012 */
4013 case 0:
4014 break;
4015 case 0x10:
4016 case 0x11:
4017 /*
4018 * Strictly v0x11 has 3 entries, but the last two don't seem
4019 * to get used.
4020 */
4021 headerlen = 1;
4022 recordlen = 0x18;
4023 entries = 1;
4024 pllindex = 0;
4025 break;
4026 case 0x20:
4027 case 0x21:
4028 case 0x30:
4029 case 0x40:
4030 headerlen = bios->data[bios->pll_limit_tbl_ptr + 1];
4031 recordlen = bios->data[bios->pll_limit_tbl_ptr + 2];
4032 entries = bios->data[bios->pll_limit_tbl_ptr + 3];
4033 break;
4034 default:
4035 NV_ERROR(dev, "PLL limits table revision 0x%X not currently "
4036 "supported\n", pll_lim_ver);
4037 return -ENOSYS;
4038 }
4039
4040 /* initialize all members to zero */
4041 memset(pll_lim, 0, sizeof(struct pll_lims));
4042
4043 if (pll_lim_ver == 0x10 || pll_lim_ver == 0x11) {
4044 uint8_t *pll_rec = &bios->data[bios->pll_limit_tbl_ptr + headerlen + recordlen * pllindex];
4045
4046 pll_lim->vco1.minfreq = ROM32(pll_rec[0]);
4047 pll_lim->vco1.maxfreq = ROM32(pll_rec[4]);
4048 pll_lim->vco2.minfreq = ROM32(pll_rec[8]);
4049 pll_lim->vco2.maxfreq = ROM32(pll_rec[12]);
4050 pll_lim->vco1.min_inputfreq = ROM32(pll_rec[16]);
4051 pll_lim->vco2.min_inputfreq = ROM32(pll_rec[20]);
4052 pll_lim->vco1.max_inputfreq = pll_lim->vco2.max_inputfreq = INT_MAX;
4053
4054 /* these values taken from nv30/31/36 */
4055 pll_lim->vco1.min_n = 0x1;
4056 if (cv == 0x36)
4057 pll_lim->vco1.min_n = 0x5;
4058 pll_lim->vco1.max_n = 0xff;
4059 pll_lim->vco1.min_m = 0x1;
4060 pll_lim->vco1.max_m = 0xd;
4061 pll_lim->vco2.min_n = 0x4;
4062 /*
4063 * On nv30, 31, 36 (i.e. all cards with two stage PLLs with this
4064 * table version (apart from nv35)), N2 is compared to
4065 * maxN2 (0x46) and 10 * maxM2 (0x4), so set maxN2 to 0x28 and
4066 * save a comparison
4067 */
4068 pll_lim->vco2.max_n = 0x28;
4069 if (cv == 0x30 || cv == 0x35)
4070 /* only 5 bits available for N2 on nv30/35 */
4071 pll_lim->vco2.max_n = 0x1f;
4072 pll_lim->vco2.min_m = 0x1;
4073 pll_lim->vco2.max_m = 0x4;
4074 pll_lim->max_log2p = 0x7;
4075 pll_lim->max_usable_log2p = 0x6;
4076 } else if (pll_lim_ver == 0x20 || pll_lim_ver == 0x21) {
4077 uint16_t plloffs = bios->pll_limit_tbl_ptr + headerlen;
4078 uint32_t reg = 0; /* default match */
4079 uint8_t *pll_rec;
4080 int i;
4081
4082 /*
4083 * First entry is default match, if nothing better. warn if
4084 * reg field nonzero
4085 */
4086 if (ROM32(bios->data[plloffs]))
4087 NV_WARN(dev, "Default PLL limit entry has non-zero "
4088 "register field\n");
4089
4090 if (limit_match > MAX_PLL_TYPES)
4091 /* we've been passed a reg as the match */
4092 reg = limit_match;
4093 else /* limit match is a pll type */
4094 for (i = 1; i < entries && !reg; i++) {
4095 uint32_t cmpreg = ROM32(bios->data[plloffs + recordlen * i]);
4096
4097 if (limit_match == NVPLL &&
4098 (cmpreg == NV_PRAMDAC_NVPLL_COEFF || cmpreg == 0x4000))
4099 reg = cmpreg;
4100 if (limit_match == MPLL &&
4101 (cmpreg == NV_PRAMDAC_MPLL_COEFF || cmpreg == 0x4020))
4102 reg = cmpreg;
4103 if (limit_match == VPLL1 &&
4104 (cmpreg == NV_PRAMDAC_VPLL_COEFF || cmpreg == 0x4010))
4105 reg = cmpreg;
4106 if (limit_match == VPLL2 &&
4107 (cmpreg == NV_RAMDAC_VPLL2 || cmpreg == 0x4018))
4108 reg = cmpreg;
4109 }
4110
4111 for (i = 1; i < entries; i++)
4112 if (ROM32(bios->data[plloffs + recordlen * i]) == reg) {
4113 pllindex = i;
4114 break;
4115 }
4116
4117 pll_rec = &bios->data[plloffs + recordlen * pllindex];
4118
4119 BIOSLOG(bios, "Loading PLL limits for reg 0x%08x\n",
4120 pllindex ? reg : 0);
4121
4122 /*
4123 * Frequencies are stored in tables in MHz, kHz are more
4124 * useful, so we convert.
4125 */
4126
4127 /* What output frequencies can each VCO generate? */
4128 pll_lim->vco1.minfreq = ROM16(pll_rec[4]) * 1000;
4129 pll_lim->vco1.maxfreq = ROM16(pll_rec[6]) * 1000;
4130 pll_lim->vco2.minfreq = ROM16(pll_rec[8]) * 1000;
4131 pll_lim->vco2.maxfreq = ROM16(pll_rec[10]) * 1000;
4132
4133 /* What input frequencies they accept (past the m-divider)? */
4134 pll_lim->vco1.min_inputfreq = ROM16(pll_rec[12]) * 1000;
4135 pll_lim->vco2.min_inputfreq = ROM16(pll_rec[14]) * 1000;
4136 pll_lim->vco1.max_inputfreq = ROM16(pll_rec[16]) * 1000;
4137 pll_lim->vco2.max_inputfreq = ROM16(pll_rec[18]) * 1000;
4138
4139 /* What values are accepted as multiplier and divider? */
4140 pll_lim->vco1.min_n = pll_rec[20];
4141 pll_lim->vco1.max_n = pll_rec[21];
4142 pll_lim->vco1.min_m = pll_rec[22];
4143 pll_lim->vco1.max_m = pll_rec[23];
4144 pll_lim->vco2.min_n = pll_rec[24];
4145 pll_lim->vco2.max_n = pll_rec[25];
4146 pll_lim->vco2.min_m = pll_rec[26];
4147 pll_lim->vco2.max_m = pll_rec[27];
4148
4149 pll_lim->max_usable_log2p = pll_lim->max_log2p = pll_rec[29];
4150 if (pll_lim->max_log2p > 0x7)
4151 /* pll decoding in nv_hw.c assumes never > 7 */
4152 NV_WARN(dev, "Max log2 P value greater than 7 (%d)\n",
4153 pll_lim->max_log2p);
4154 if (cv < 0x60)
4155 pll_lim->max_usable_log2p = 0x6;
4156 pll_lim->log2p_bias = pll_rec[30];
4157
4158 if (recordlen > 0x22)
4159 pll_lim->refclk = ROM32(pll_rec[31]);
4160
4161 if (recordlen > 0x23 && pll_rec[35])
4162 NV_WARN(dev,
4163 "Bits set in PLL configuration byte (%x)\n",
4164 pll_rec[35]);
4165
4166 /* C51 special not seen elsewhere */
4167 if (cv == 0x51 && !pll_lim->refclk) {
4168 uint32_t sel_clk = bios_rd32(bios, NV_PRAMDAC_SEL_CLK);
4169
4170 if (((limit_match == NV_PRAMDAC_VPLL_COEFF || limit_match == VPLL1) && sel_clk & 0x20) ||
4171 ((limit_match == NV_RAMDAC_VPLL2 || limit_match == VPLL2) && sel_clk & 0x80)) {
4172 if (bios_idxprt_rd(bios, NV_CIO_CRX__COLOR, NV_CIO_CRE_CHIP_ID_INDEX) < 0xa3)
4173 pll_lim->refclk = 200000;
4174 else
4175 pll_lim->refclk = 25000;
4176 }
4177 }
4178 } else if (pll_lim_ver == 0x30) { /* ver 0x30 */
4179 uint8_t *entry = &bios->data[bios->pll_limit_tbl_ptr + headerlen];
4180 uint8_t *record = NULL;
4181 int i;
4182
4183 BIOSLOG(bios, "Loading PLL limits for register 0x%08x\n",
4184 limit_match);
4185
4186 for (i = 0; i < entries; i++, entry += recordlen) {
4187 if (ROM32(entry[3]) == limit_match) {
4188 record = &bios->data[ROM16(entry[1])];
4189 break;
4190 }
4191 }
4192
4193 if (!record) {
4194 NV_ERROR(dev, "Register 0x%08x not found in PLL "
4195 "limits table", limit_match);
4196 return -ENOENT;
4197 }
4198
4199 pll_lim->vco1.minfreq = ROM16(record[0]) * 1000;
4200 pll_lim->vco1.maxfreq = ROM16(record[2]) * 1000;
4201 pll_lim->vco2.minfreq = ROM16(record[4]) * 1000;
4202 pll_lim->vco2.maxfreq = ROM16(record[6]) * 1000;
4203 pll_lim->vco1.min_inputfreq = ROM16(record[8]) * 1000;
4204 pll_lim->vco2.min_inputfreq = ROM16(record[10]) * 1000;
4205 pll_lim->vco1.max_inputfreq = ROM16(record[12]) * 1000;
4206 pll_lim->vco2.max_inputfreq = ROM16(record[14]) * 1000;
4207 pll_lim->vco1.min_n = record[16];
4208 pll_lim->vco1.max_n = record[17];
4209 pll_lim->vco1.min_m = record[18];
4210 pll_lim->vco1.max_m = record[19];
4211 pll_lim->vco2.min_n = record[20];
4212 pll_lim->vco2.max_n = record[21];
4213 pll_lim->vco2.min_m = record[22];
4214 pll_lim->vco2.max_m = record[23];
4215 pll_lim->max_usable_log2p = pll_lim->max_log2p = record[25];
4216 pll_lim->log2p_bias = record[27];
4217 pll_lim->refclk = ROM32(record[28]);
4218 } else if (pll_lim_ver) { /* ver 0x40 */
4219 uint8_t *entry = &bios->data[bios->pll_limit_tbl_ptr + headerlen];
4220 uint8_t *record = NULL;
4221 int i;
4222
4223 BIOSLOG(bios, "Loading PLL limits for register 0x%08x\n",
4224 limit_match);
4225
4226 for (i = 0; i < entries; i++, entry += recordlen) {
4227 if (ROM32(entry[3]) == limit_match) {
4228 record = &bios->data[ROM16(entry[1])];
4229 break;
4230 }
4231 }
4232
4233 if (!record) {
4234 NV_ERROR(dev, "Register 0x%08x not found in PLL "
4235 "limits table", limit_match);
4236 return -ENOENT;
4237 }
4238
4239 pll_lim->vco1.minfreq = ROM16(record[0]) * 1000;
4240 pll_lim->vco1.maxfreq = ROM16(record[2]) * 1000;
4241 pll_lim->vco1.min_inputfreq = ROM16(record[4]) * 1000;
4242 pll_lim->vco1.max_inputfreq = ROM16(record[6]) * 1000;
4243 pll_lim->vco1.min_m = record[8];
4244 pll_lim->vco1.max_m = record[9];
4245 pll_lim->vco1.min_n = record[10];
4246 pll_lim->vco1.max_n = record[11];
4247 pll_lim->min_p = record[12];
4248 pll_lim->max_p = record[13];
4249 /* where did this go to?? */
4250 if (limit_match == 0x00614100 || limit_match == 0x00614900)
4251 pll_lim->refclk = 27000;
4252 else
4253 pll_lim->refclk = 100000;
4254 }
4255
4256 /*
4257 * By now any valid limit table ought to have set a max frequency for
4258 * vco1, so if it's zero it's either a pre limit table bios, or one
4259 * with an empty limit table (seen on nv18)
4260 */
4261 if (!pll_lim->vco1.maxfreq) {
4262 pll_lim->vco1.minfreq = bios->fminvco;
4263 pll_lim->vco1.maxfreq = bios->fmaxvco;
4264 pll_lim->vco1.min_inputfreq = 0;
4265 pll_lim->vco1.max_inputfreq = INT_MAX;
4266 pll_lim->vco1.min_n = 0x1;
4267 pll_lim->vco1.max_n = 0xff;
4268 pll_lim->vco1.min_m = 0x1;
4269 if (crystal_straps == 0) {
4270 /* nv05 does this, nv11 doesn't, nv10 unknown */
4271 if (cv < 0x11)
4272 pll_lim->vco1.min_m = 0x7;
4273 pll_lim->vco1.max_m = 0xd;
4274 } else {
4275 if (cv < 0x11)
4276 pll_lim->vco1.min_m = 0x8;
4277 pll_lim->vco1.max_m = 0xe;
4278 }
4279 if (cv < 0x17 || cv == 0x1a || cv == 0x20)
4280 pll_lim->max_log2p = 4;
4281 else
4282 pll_lim->max_log2p = 5;
4283 pll_lim->max_usable_log2p = pll_lim->max_log2p;
4284 }
4285
4286 if (!pll_lim->refclk)
4287 switch (crystal_straps) {
4288 case 0:
4289 pll_lim->refclk = 13500;
4290 break;
4291 case (1 << 6):
4292 pll_lim->refclk = 14318;
4293 break;
4294 case (1 << 22):
4295 pll_lim->refclk = 27000;
4296 break;
4297 case (1 << 22 | 1 << 6):
4298 pll_lim->refclk = 25000;
4299 break;
4300 }
4301
4302#if 0 /* for easy debugging */
4303 ErrorF("pll.vco1.minfreq: %d\n", pll_lim->vco1.minfreq);
4304 ErrorF("pll.vco1.maxfreq: %d\n", pll_lim->vco1.maxfreq);
4305 ErrorF("pll.vco2.minfreq: %d\n", pll_lim->vco2.minfreq);
4306 ErrorF("pll.vco2.maxfreq: %d\n", pll_lim->vco2.maxfreq);
4307
4308 ErrorF("pll.vco1.min_inputfreq: %d\n", pll_lim->vco1.min_inputfreq);
4309 ErrorF("pll.vco1.max_inputfreq: %d\n", pll_lim->vco1.max_inputfreq);
4310 ErrorF("pll.vco2.min_inputfreq: %d\n", pll_lim->vco2.min_inputfreq);
4311 ErrorF("pll.vco2.max_inputfreq: %d\n", pll_lim->vco2.max_inputfreq);
4312
4313 ErrorF("pll.vco1.min_n: %d\n", pll_lim->vco1.min_n);
4314 ErrorF("pll.vco1.max_n: %d\n", pll_lim->vco1.max_n);
4315 ErrorF("pll.vco1.min_m: %d\n", pll_lim->vco1.min_m);
4316 ErrorF("pll.vco1.max_m: %d\n", pll_lim->vco1.max_m);
4317 ErrorF("pll.vco2.min_n: %d\n", pll_lim->vco2.min_n);
4318 ErrorF("pll.vco2.max_n: %d\n", pll_lim->vco2.max_n);
4319 ErrorF("pll.vco2.min_m: %d\n", pll_lim->vco2.min_m);
4320 ErrorF("pll.vco2.max_m: %d\n", pll_lim->vco2.max_m);
4321
4322 ErrorF("pll.max_log2p: %d\n", pll_lim->max_log2p);
4323 ErrorF("pll.log2p_bias: %d\n", pll_lim->log2p_bias);
4324
4325 ErrorF("pll.refclk: %d\n", pll_lim->refclk);
4326#endif
4327
4328 return 0;
4329}
4330
4331static void parse_bios_version(struct drm_device *dev, struct nvbios *bios, uint16_t offset)
4332{
4333 /*
4334 * offset + 0 (8 bits): Micro version
4335 * offset + 1 (8 bits): Minor version
4336 * offset + 2 (8 bits): Chip version
4337 * offset + 3 (8 bits): Major version
4338 */
4339
4340 bios->major_version = bios->data[offset + 3];
Ben Skeggs04a39c52010-02-24 10:03:05 +10004341 bios->chip_version = bios->data[offset + 2];
Ben Skeggs6ee73862009-12-11 19:24:15 +10004342 NV_TRACE(dev, "Bios version %02x.%02x.%02x.%02x\n",
4343 bios->data[offset + 3], bios->data[offset + 2],
4344 bios->data[offset + 1], bios->data[offset]);
4345}
4346
4347static void parse_script_table_pointers(struct nvbios *bios, uint16_t offset)
4348{
4349 /*
4350 * Parses the init table segment for pointers used in script execution.
4351 *
4352 * offset + 0 (16 bits): init script tables pointer
4353 * offset + 2 (16 bits): macro index table pointer
4354 * offset + 4 (16 bits): macro table pointer
4355 * offset + 6 (16 bits): condition table pointer
4356 * offset + 8 (16 bits): io condition table pointer
4357 * offset + 10 (16 bits): io flag condition table pointer
4358 * offset + 12 (16 bits): init function table pointer
4359 */
4360
4361 bios->init_script_tbls_ptr = ROM16(bios->data[offset]);
4362 bios->macro_index_tbl_ptr = ROM16(bios->data[offset + 2]);
4363 bios->macro_tbl_ptr = ROM16(bios->data[offset + 4]);
4364 bios->condition_tbl_ptr = ROM16(bios->data[offset + 6]);
4365 bios->io_condition_tbl_ptr = ROM16(bios->data[offset + 8]);
4366 bios->io_flag_condition_tbl_ptr = ROM16(bios->data[offset + 10]);
4367 bios->init_function_tbl_ptr = ROM16(bios->data[offset + 12]);
4368}
4369
4370static int parse_bit_A_tbl_entry(struct drm_device *dev, struct nvbios *bios, struct bit_entry *bitentry)
4371{
4372 /*
4373 * Parses the load detect values for g80 cards.
4374 *
4375 * offset + 0 (16 bits): loadval table pointer
4376 */
4377
4378 uint16_t load_table_ptr;
4379 uint8_t version, headerlen, entrylen, num_entries;
4380
4381 if (bitentry->length != 3) {
4382 NV_ERROR(dev, "Do not understand BIT A table\n");
4383 return -EINVAL;
4384 }
4385
4386 load_table_ptr = ROM16(bios->data[bitentry->offset]);
4387
4388 if (load_table_ptr == 0x0) {
4389 NV_ERROR(dev, "Pointer to BIT loadval table invalid\n");
4390 return -EINVAL;
4391 }
4392
4393 version = bios->data[load_table_ptr];
4394
4395 if (version != 0x10) {
4396 NV_ERROR(dev, "BIT loadval table version %d.%d not supported\n",
4397 version >> 4, version & 0xF);
4398 return -ENOSYS;
4399 }
4400
4401 headerlen = bios->data[load_table_ptr + 1];
4402 entrylen = bios->data[load_table_ptr + 2];
4403 num_entries = bios->data[load_table_ptr + 3];
4404
4405 if (headerlen != 4 || entrylen != 4 || num_entries != 2) {
4406 NV_ERROR(dev, "Do not understand BIT loadval table\n");
4407 return -EINVAL;
4408 }
4409
4410 /* First entry is normal dac, 2nd tv-out perhaps? */
Ben Skeggs04a39c52010-02-24 10:03:05 +10004411 bios->dactestval = ROM32(bios->data[load_table_ptr + headerlen]) & 0x3ff;
Ben Skeggs6ee73862009-12-11 19:24:15 +10004412
4413 return 0;
4414}
4415
4416static int parse_bit_C_tbl_entry(struct drm_device *dev, struct nvbios *bios, struct bit_entry *bitentry)
4417{
4418 /*
4419 * offset + 8 (16 bits): PLL limits table pointer
4420 *
4421 * There's more in here, but that's unknown.
4422 */
4423
4424 if (bitentry->length < 10) {
4425 NV_ERROR(dev, "Do not understand BIT C table\n");
4426 return -EINVAL;
4427 }
4428
4429 bios->pll_limit_tbl_ptr = ROM16(bios->data[bitentry->offset + 8]);
4430
4431 return 0;
4432}
4433
4434static int parse_bit_display_tbl_entry(struct drm_device *dev, struct nvbios *bios, struct bit_entry *bitentry)
4435{
4436 /*
4437 * Parses the flat panel table segment that the bit entry points to.
4438 * Starting at bitentry->offset:
4439 *
4440 * offset + 0 (16 bits): ??? table pointer - seems to have 18 byte
4441 * records beginning with a freq.
4442 * offset + 2 (16 bits): mode table pointer
4443 */
4444
4445 if (bitentry->length != 4) {
4446 NV_ERROR(dev, "Do not understand BIT display table\n");
4447 return -EINVAL;
4448 }
4449
4450 bios->fp.fptablepointer = ROM16(bios->data[bitentry->offset + 2]);
4451
4452 return 0;
4453}
4454
4455static int parse_bit_init_tbl_entry(struct drm_device *dev, struct nvbios *bios, struct bit_entry *bitentry)
4456{
4457 /*
4458 * Parses the init table segment that the bit entry points to.
4459 *
4460 * See parse_script_table_pointers for layout
4461 */
4462
4463 if (bitentry->length < 14) {
4464 NV_ERROR(dev, "Do not understand init table\n");
4465 return -EINVAL;
4466 }
4467
4468 parse_script_table_pointers(bios, bitentry->offset);
4469
4470 if (bitentry->length >= 16)
4471 bios->some_script_ptr = ROM16(bios->data[bitentry->offset + 14]);
4472 if (bitentry->length >= 18)
4473 bios->init96_tbl_ptr = ROM16(bios->data[bitentry->offset + 16]);
4474
4475 return 0;
4476}
4477
4478static int parse_bit_i_tbl_entry(struct drm_device *dev, struct nvbios *bios, struct bit_entry *bitentry)
4479{
4480 /*
4481 * BIT 'i' (info?) table
4482 *
4483 * offset + 0 (32 bits): BIOS version dword (as in B table)
4484 * offset + 5 (8 bits): BIOS feature byte (same as for BMP?)
4485 * offset + 13 (16 bits): pointer to table containing DAC load
4486 * detection comparison values
4487 *
4488 * There's other things in the table, purpose unknown
4489 */
4490
4491 uint16_t daccmpoffset;
4492 uint8_t dacver, dacheaderlen;
4493
4494 if (bitentry->length < 6) {
4495 NV_ERROR(dev, "BIT i table too short for needed information\n");
4496 return -EINVAL;
4497 }
4498
4499 parse_bios_version(dev, bios, bitentry->offset);
4500
4501 /*
4502 * bit 4 seems to indicate a mobile bios (doesn't suffer from BMP's
4503 * Quadro identity crisis), other bits possibly as for BMP feature byte
4504 */
4505 bios->feature_byte = bios->data[bitentry->offset + 5];
4506 bios->is_mobile = bios->feature_byte & FEATURE_MOBILE;
4507
4508 if (bitentry->length < 15) {
4509 NV_WARN(dev, "BIT i table not long enough for DAC load "
4510 "detection comparison table\n");
4511 return -EINVAL;
4512 }
4513
4514 daccmpoffset = ROM16(bios->data[bitentry->offset + 13]);
4515
4516 /* doesn't exist on g80 */
4517 if (!daccmpoffset)
4518 return 0;
4519
4520 /*
4521 * The first value in the table, following the header, is the
4522 * comparison value, the second entry is a comparison value for
4523 * TV load detection.
4524 */
4525
4526 dacver = bios->data[daccmpoffset];
4527 dacheaderlen = bios->data[daccmpoffset + 1];
4528
4529 if (dacver != 0x00 && dacver != 0x10) {
4530 NV_WARN(dev, "DAC load detection comparison table version "
4531 "%d.%d not known\n", dacver >> 4, dacver & 0xf);
4532 return -ENOSYS;
4533 }
4534
Ben Skeggs04a39c52010-02-24 10:03:05 +10004535 bios->dactestval = ROM32(bios->data[daccmpoffset + dacheaderlen]);
4536 bios->tvdactestval = ROM32(bios->data[daccmpoffset + dacheaderlen + 4]);
Ben Skeggs6ee73862009-12-11 19:24:15 +10004537
4538 return 0;
4539}
4540
4541static int parse_bit_lvds_tbl_entry(struct drm_device *dev, struct nvbios *bios, struct bit_entry *bitentry)
4542{
4543 /*
4544 * Parses the LVDS table segment that the bit entry points to.
4545 * Starting at bitentry->offset:
4546 *
4547 * offset + 0 (16 bits): LVDS strap xlate table pointer
4548 */
4549
4550 if (bitentry->length != 2) {
4551 NV_ERROR(dev, "Do not understand BIT LVDS table\n");
4552 return -EINVAL;
4553 }
4554
4555 /*
4556 * No idea if it's still called the LVDS manufacturer table, but
4557 * the concept's close enough.
4558 */
4559 bios->fp.lvdsmanufacturerpointer = ROM16(bios->data[bitentry->offset]);
4560
4561 return 0;
4562}
4563
4564static int
4565parse_bit_M_tbl_entry(struct drm_device *dev, struct nvbios *bios,
4566 struct bit_entry *bitentry)
4567{
4568 /*
4569 * offset + 2 (8 bits): number of options in an
4570 * INIT_RAM_RESTRICT_ZM_REG_GROUP opcode option set
4571 * offset + 3 (16 bits): pointer to strap xlate table for RAM
4572 * restrict option selection
4573 *
4574 * There's a bunch of bits in this table other than the RAM restrict
4575 * stuff that we don't use - their use currently unknown
4576 */
4577
Ben Skeggs6ee73862009-12-11 19:24:15 +10004578 /*
4579 * Older bios versions don't have a sufficiently long table for
4580 * what we want
4581 */
4582 if (bitentry->length < 0x5)
4583 return 0;
4584
4585 if (bitentry->id[1] < 2) {
Marcin Kościelnicki37383652009-12-15 00:37:31 +00004586 bios->ram_restrict_group_count = bios->data[bitentry->offset + 2];
4587 bios->ram_restrict_tbl_ptr = ROM16(bios->data[bitentry->offset + 3]);
Ben Skeggs6ee73862009-12-11 19:24:15 +10004588 } else {
Marcin Kościelnicki37383652009-12-15 00:37:31 +00004589 bios->ram_restrict_group_count = bios->data[bitentry->offset + 0];
4590 bios->ram_restrict_tbl_ptr = ROM16(bios->data[bitentry->offset + 1]);
Ben Skeggs6ee73862009-12-11 19:24:15 +10004591 }
4592
Ben Skeggs6ee73862009-12-11 19:24:15 +10004593 return 0;
4594}
4595
4596static int parse_bit_tmds_tbl_entry(struct drm_device *dev, struct nvbios *bios, struct bit_entry *bitentry)
4597{
4598 /*
4599 * Parses the pointer to the TMDS table
4600 *
4601 * Starting at bitentry->offset:
4602 *
4603 * offset + 0 (16 bits): TMDS table pointer
4604 *
4605 * The TMDS table is typically found just before the DCB table, with a
4606 * characteristic signature of 0x11,0x13 (1.1 being version, 0x13 being
4607 * length?)
4608 *
4609 * At offset +7 is a pointer to a script, which I don't know how to
4610 * run yet.
4611 * At offset +9 is a pointer to another script, likewise
4612 * Offset +11 has a pointer to a table where the first word is a pxclk
4613 * frequency and the second word a pointer to a script, which should be
4614 * run if the comparison pxclk frequency is less than the pxclk desired.
4615 * This repeats for decreasing comparison frequencies
4616 * Offset +13 has a pointer to a similar table
4617 * The selection of table (and possibly +7/+9 script) is dictated by
4618 * "or" from the DCB.
4619 */
4620
4621 uint16_t tmdstableptr, script1, script2;
4622
4623 if (bitentry->length != 2) {
4624 NV_ERROR(dev, "Do not understand BIT TMDS table\n");
4625 return -EINVAL;
4626 }
4627
4628 tmdstableptr = ROM16(bios->data[bitentry->offset]);
4629
4630 if (tmdstableptr == 0x0) {
4631 NV_ERROR(dev, "Pointer to TMDS table invalid\n");
4632 return -EINVAL;
4633 }
4634
4635 /* nv50+ has v2.0, but we don't parse it atm */
4636 if (bios->data[tmdstableptr] != 0x11) {
4637 NV_WARN(dev,
4638 "TMDS table revision %d.%d not currently supported\n",
4639 bios->data[tmdstableptr] >> 4, bios->data[tmdstableptr] & 0xf);
4640 return -ENOSYS;
4641 }
4642
4643 /*
4644 * These two scripts are odd: they don't seem to get run even when
4645 * they are not stubbed.
4646 */
4647 script1 = ROM16(bios->data[tmdstableptr + 7]);
4648 script2 = ROM16(bios->data[tmdstableptr + 9]);
4649 if (bios->data[script1] != 'q' || bios->data[script2] != 'q')
4650 NV_WARN(dev, "TMDS table script pointers not stubbed\n");
4651
4652 bios->tmds.output0_script_ptr = ROM16(bios->data[tmdstableptr + 11]);
4653 bios->tmds.output1_script_ptr = ROM16(bios->data[tmdstableptr + 13]);
4654
4655 return 0;
4656}
4657
4658static int
4659parse_bit_U_tbl_entry(struct drm_device *dev, struct nvbios *bios,
4660 struct bit_entry *bitentry)
4661{
4662 /*
4663 * Parses the pointer to the G80 output script tables
4664 *
4665 * Starting at bitentry->offset:
4666 *
4667 * offset + 0 (16 bits): output script table pointer
4668 */
4669
4670 uint16_t outputscripttableptr;
4671
4672 if (bitentry->length != 3) {
4673 NV_ERROR(dev, "Do not understand BIT U table\n");
4674 return -EINVAL;
4675 }
4676
4677 outputscripttableptr = ROM16(bios->data[bitentry->offset]);
4678 bios->display.script_table_ptr = outputscripttableptr;
4679 return 0;
4680}
4681
4682static int
4683parse_bit_displayport_tbl_entry(struct drm_device *dev, struct nvbios *bios,
4684 struct bit_entry *bitentry)
4685{
4686 bios->display.dp_table_ptr = ROM16(bios->data[bitentry->offset]);
4687 return 0;
4688}
4689
4690struct bit_table {
4691 const char id;
4692 int (* const parse_fn)(struct drm_device *, struct nvbios *, struct bit_entry *);
4693};
4694
4695#define BIT_TABLE(id, funcid) ((struct bit_table){ id, parse_bit_##funcid##_tbl_entry })
4696
4697static int
4698parse_bit_table(struct nvbios *bios, const uint16_t bitoffset,
4699 struct bit_table *table)
4700{
4701 struct drm_device *dev = bios->dev;
4702 uint8_t maxentries = bios->data[bitoffset + 4];
4703 int i, offset;
4704 struct bit_entry bitentry;
4705
4706 for (i = 0, offset = bitoffset + 6; i < maxentries; i++, offset += 6) {
4707 bitentry.id[0] = bios->data[offset];
4708
4709 if (bitentry.id[0] != table->id)
4710 continue;
4711
4712 bitentry.id[1] = bios->data[offset + 1];
4713 bitentry.length = ROM16(bios->data[offset + 2]);
4714 bitentry.offset = ROM16(bios->data[offset + 4]);
4715
4716 return table->parse_fn(dev, bios, &bitentry);
4717 }
4718
4719 NV_INFO(dev, "BIT table '%c' not found\n", table->id);
4720 return -ENOSYS;
4721}
4722
4723static int
4724parse_bit_structure(struct nvbios *bios, const uint16_t bitoffset)
4725{
4726 int ret;
4727
4728 /*
4729 * The only restriction on parsing order currently is having 'i' first
4730 * for use of bios->*_version or bios->feature_byte while parsing;
4731 * functions shouldn't be actually *doing* anything apart from pulling
4732 * data from the image into the bios struct, thus no interdependencies
4733 */
4734 ret = parse_bit_table(bios, bitoffset, &BIT_TABLE('i', i));
4735 if (ret) /* info? */
4736 return ret;
4737 if (bios->major_version >= 0x60) /* g80+ */
4738 parse_bit_table(bios, bitoffset, &BIT_TABLE('A', A));
4739 ret = parse_bit_table(bios, bitoffset, &BIT_TABLE('C', C));
4740 if (ret)
4741 return ret;
4742 parse_bit_table(bios, bitoffset, &BIT_TABLE('D', display));
4743 ret = parse_bit_table(bios, bitoffset, &BIT_TABLE('I', init));
4744 if (ret)
4745 return ret;
4746 parse_bit_table(bios, bitoffset, &BIT_TABLE('M', M)); /* memory? */
4747 parse_bit_table(bios, bitoffset, &BIT_TABLE('L', lvds));
4748 parse_bit_table(bios, bitoffset, &BIT_TABLE('T', tmds));
4749 parse_bit_table(bios, bitoffset, &BIT_TABLE('U', U));
4750 parse_bit_table(bios, bitoffset, &BIT_TABLE('d', displayport));
4751
4752 return 0;
4753}
4754
4755static int parse_bmp_structure(struct drm_device *dev, struct nvbios *bios, unsigned int offset)
4756{
4757 /*
4758 * Parses the BMP structure for useful things, but does not act on them
4759 *
4760 * offset + 5: BMP major version
4761 * offset + 6: BMP minor version
4762 * offset + 9: BMP feature byte
4763 * offset + 10: BCD encoded BIOS version
4764 *
4765 * offset + 18: init script table pointer (for bios versions < 5.10h)
4766 * offset + 20: extra init script table pointer (for bios
4767 * versions < 5.10h)
4768 *
4769 * offset + 24: memory init table pointer (used on early bios versions)
4770 * offset + 26: SDR memory sequencing setup data table
4771 * offset + 28: DDR memory sequencing setup data table
4772 *
4773 * offset + 54: index of I2C CRTC pair to use for CRT output
4774 * offset + 55: index of I2C CRTC pair to use for TV output
4775 * offset + 56: index of I2C CRTC pair to use for flat panel output
4776 * offset + 58: write CRTC index for I2C pair 0
4777 * offset + 59: read CRTC index for I2C pair 0
4778 * offset + 60: write CRTC index for I2C pair 1
4779 * offset + 61: read CRTC index for I2C pair 1
4780 *
4781 * offset + 67: maximum internal PLL frequency (single stage PLL)
4782 * offset + 71: minimum internal PLL frequency (single stage PLL)
4783 *
4784 * offset + 75: script table pointers, as described in
4785 * parse_script_table_pointers
4786 *
4787 * offset + 89: TMDS single link output A table pointer
4788 * offset + 91: TMDS single link output B table pointer
4789 * offset + 95: LVDS single link output A table pointer
4790 * offset + 105: flat panel timings table pointer
4791 * offset + 107: flat panel strapping translation table pointer
4792 * offset + 117: LVDS manufacturer panel config table pointer
4793 * offset + 119: LVDS manufacturer strapping translation table pointer
4794 *
4795 * offset + 142: PLL limits table pointer
4796 *
4797 * offset + 156: minimum pixel clock for LVDS dual link
4798 */
4799
4800 uint8_t *bmp = &bios->data[offset], bmp_version_major, bmp_version_minor;
4801 uint16_t bmplength;
4802 uint16_t legacy_scripts_offset, legacy_i2c_offset;
4803
4804 /* load needed defaults in case we can't parse this info */
Ben Skeggs7f245b22010-02-24 09:56:18 +10004805 bios->dcb.i2c[0].write = NV_CIO_CRE_DDC_WR__INDEX;
4806 bios->dcb.i2c[0].read = NV_CIO_CRE_DDC_STATUS__INDEX;
4807 bios->dcb.i2c[1].write = NV_CIO_CRE_DDC0_WR__INDEX;
4808 bios->dcb.i2c[1].read = NV_CIO_CRE_DDC0_STATUS__INDEX;
Ben Skeggs04a39c52010-02-24 10:03:05 +10004809 bios->digital_min_front_porch = 0x4b;
Ben Skeggs6ee73862009-12-11 19:24:15 +10004810 bios->fmaxvco = 256000;
4811 bios->fminvco = 128000;
4812 bios->fp.duallink_transition_clk = 90000;
4813
4814 bmp_version_major = bmp[5];
4815 bmp_version_minor = bmp[6];
4816
4817 NV_TRACE(dev, "BMP version %d.%d\n",
4818 bmp_version_major, bmp_version_minor);
4819
4820 /*
4821 * Make sure that 0x36 is blank and can't be mistaken for a DCB
4822 * pointer on early versions
4823 */
4824 if (bmp_version_major < 5)
4825 *(uint16_t *)&bios->data[0x36] = 0;
4826
4827 /*
4828 * Seems that the minor version was 1 for all major versions prior
4829 * to 5. Version 6 could theoretically exist, but I suspect BIT
4830 * happened instead.
4831 */
4832 if ((bmp_version_major < 5 && bmp_version_minor != 1) || bmp_version_major > 5) {
4833 NV_ERROR(dev, "You have an unsupported BMP version. "
4834 "Please send in your bios\n");
4835 return -ENOSYS;
4836 }
4837
4838 if (bmp_version_major == 0)
4839 /* nothing that's currently useful in this version */
4840 return 0;
4841 else if (bmp_version_major == 1)
4842 bmplength = 44; /* exact for 1.01 */
4843 else if (bmp_version_major == 2)
4844 bmplength = 48; /* exact for 2.01 */
4845 else if (bmp_version_major == 3)
4846 bmplength = 54;
4847 /* guessed - mem init tables added in this version */
4848 else if (bmp_version_major == 4 || bmp_version_minor < 0x1)
4849 /* don't know if 5.0 exists... */
4850 bmplength = 62;
4851 /* guessed - BMP I2C indices added in version 4*/
4852 else if (bmp_version_minor < 0x6)
4853 bmplength = 67; /* exact for 5.01 */
4854 else if (bmp_version_minor < 0x10)
4855 bmplength = 75; /* exact for 5.06 */
4856 else if (bmp_version_minor == 0x10)
4857 bmplength = 89; /* exact for 5.10h */
4858 else if (bmp_version_minor < 0x14)
4859 bmplength = 118; /* exact for 5.11h */
4860 else if (bmp_version_minor < 0x24)
4861 /*
4862 * Not sure of version where pll limits came in;
4863 * certainly exist by 0x24 though.
4864 */
4865 /* length not exact: this is long enough to get lvds members */
4866 bmplength = 123;
4867 else if (bmp_version_minor < 0x27)
4868 /*
4869 * Length not exact: this is long enough to get pll limit
4870 * member
4871 */
4872 bmplength = 144;
4873 else
4874 /*
4875 * Length not exact: this is long enough to get dual link
4876 * transition clock.
4877 */
4878 bmplength = 158;
4879
4880 /* checksum */
4881 if (nv_cksum(bmp, 8)) {
4882 NV_ERROR(dev, "Bad BMP checksum\n");
4883 return -EINVAL;
4884 }
4885
4886 /*
4887 * Bit 4 seems to indicate either a mobile bios or a quadro card --
4888 * mobile behaviour consistent (nv11+), quadro only seen nv18gl-nv36gl
4889 * (not nv10gl), bit 5 that the flat panel tables are present, and
4890 * bit 6 a tv bios.
4891 */
4892 bios->feature_byte = bmp[9];
4893
4894 parse_bios_version(dev, bios, offset + 10);
4895
4896 if (bmp_version_major < 5 || bmp_version_minor < 0x10)
4897 bios->old_style_init = true;
4898 legacy_scripts_offset = 18;
4899 if (bmp_version_major < 2)
4900 legacy_scripts_offset -= 4;
4901 bios->init_script_tbls_ptr = ROM16(bmp[legacy_scripts_offset]);
4902 bios->extra_init_script_tbl_ptr = ROM16(bmp[legacy_scripts_offset + 2]);
4903
4904 if (bmp_version_major > 2) { /* appears in BMP 3 */
4905 bios->legacy.mem_init_tbl_ptr = ROM16(bmp[24]);
4906 bios->legacy.sdr_seq_tbl_ptr = ROM16(bmp[26]);
4907 bios->legacy.ddr_seq_tbl_ptr = ROM16(bmp[28]);
4908 }
4909
4910 legacy_i2c_offset = 0x48; /* BMP version 2 & 3 */
4911 if (bmplength > 61)
4912 legacy_i2c_offset = offset + 54;
4913 bios->legacy.i2c_indices.crt = bios->data[legacy_i2c_offset];
4914 bios->legacy.i2c_indices.tv = bios->data[legacy_i2c_offset + 1];
4915 bios->legacy.i2c_indices.panel = bios->data[legacy_i2c_offset + 2];
Ben Skeggs7f245b22010-02-24 09:56:18 +10004916 bios->dcb.i2c[0].write = bios->data[legacy_i2c_offset + 4];
4917 bios->dcb.i2c[0].read = bios->data[legacy_i2c_offset + 5];
4918 bios->dcb.i2c[1].write = bios->data[legacy_i2c_offset + 6];
4919 bios->dcb.i2c[1].read = bios->data[legacy_i2c_offset + 7];
Ben Skeggs6ee73862009-12-11 19:24:15 +10004920
4921 if (bmplength > 74) {
4922 bios->fmaxvco = ROM32(bmp[67]);
4923 bios->fminvco = ROM32(bmp[71]);
4924 }
4925 if (bmplength > 88)
4926 parse_script_table_pointers(bios, offset + 75);
4927 if (bmplength > 94) {
4928 bios->tmds.output0_script_ptr = ROM16(bmp[89]);
4929 bios->tmds.output1_script_ptr = ROM16(bmp[91]);
4930 /*
4931 * Never observed in use with lvds scripts, but is reused for
4932 * 18/24 bit panel interface default for EDID equipped panels
4933 * (if_is_24bit not set directly to avoid any oscillation).
4934 */
4935 bios->legacy.lvds_single_a_script_ptr = ROM16(bmp[95]);
4936 }
4937 if (bmplength > 108) {
4938 bios->fp.fptablepointer = ROM16(bmp[105]);
4939 bios->fp.fpxlatetableptr = ROM16(bmp[107]);
4940 bios->fp.xlatwidth = 1;
4941 }
4942 if (bmplength > 120) {
4943 bios->fp.lvdsmanufacturerpointer = ROM16(bmp[117]);
4944 bios->fp.fpxlatemanufacturertableptr = ROM16(bmp[119]);
4945 }
4946 if (bmplength > 143)
4947 bios->pll_limit_tbl_ptr = ROM16(bmp[142]);
4948
4949 if (bmplength > 157)
4950 bios->fp.duallink_transition_clk = ROM16(bmp[156]) * 10;
4951
4952 return 0;
4953}
4954
4955static uint16_t findstr(uint8_t *data, int n, const uint8_t *str, int len)
4956{
4957 int i, j;
4958
4959 for (i = 0; i <= (n - len); i++) {
4960 for (j = 0; j < len; j++)
4961 if (data[i + j] != str[j])
4962 break;
4963 if (j == len)
4964 return i;
4965 }
4966
4967 return 0;
4968}
4969
4970static int
4971read_dcb_i2c_entry(struct drm_device *dev, int dcb_version, uint8_t *i2ctable, int index, struct dcb_i2c_entry *i2c)
4972{
4973 uint8_t dcb_i2c_ver = dcb_version, headerlen = 0, entry_len = 4;
4974 int i2c_entries = DCB_MAX_NUM_I2C_ENTRIES;
4975 int recordoffset = 0, rdofs = 1, wrofs = 0;
4976 uint8_t port_type = 0;
4977
4978 if (!i2ctable)
4979 return -EINVAL;
4980
4981 if (dcb_version >= 0x30) {
4982 if (i2ctable[0] != dcb_version) /* necessary? */
4983 NV_WARN(dev,
4984 "DCB I2C table version mismatch (%02X vs %02X)\n",
4985 i2ctable[0], dcb_version);
4986 dcb_i2c_ver = i2ctable[0];
4987 headerlen = i2ctable[1];
4988 if (i2ctable[2] <= DCB_MAX_NUM_I2C_ENTRIES)
4989 i2c_entries = i2ctable[2];
4990 else
4991 NV_WARN(dev,
4992 "DCB I2C table has more entries than indexable "
Marcin Slusarz761c5a692010-02-15 23:24:49 +01004993 "(%d entries, max %d)\n", i2ctable[2],
4994 DCB_MAX_NUM_I2C_ENTRIES);
Ben Skeggs6ee73862009-12-11 19:24:15 +10004995 entry_len = i2ctable[3];
4996 /* [4] is i2c_default_indices, read in parse_dcb_table() */
4997 }
4998 /*
4999 * It's your own fault if you call this function on a DCB 1.1 BIOS --
5000 * the test below is for DCB 1.2
5001 */
5002 if (dcb_version < 0x14) {
5003 recordoffset = 2;
5004 rdofs = 0;
5005 wrofs = 1;
5006 }
5007
5008 if (index == 0xf)
5009 return 0;
Marcin Slusarz761c5a692010-02-15 23:24:49 +01005010 if (index >= i2c_entries) {
5011 NV_ERROR(dev, "DCB I2C index too big (%d >= %d)\n",
Ben Skeggs6ee73862009-12-11 19:24:15 +10005012 index, i2ctable[2]);
5013 return -ENOENT;
5014 }
5015 if (i2ctable[headerlen + entry_len * index + 3] == 0xff) {
5016 NV_ERROR(dev, "DCB I2C entry invalid\n");
5017 return -EINVAL;
5018 }
5019
5020 if (dcb_i2c_ver >= 0x30) {
5021 port_type = i2ctable[headerlen + recordoffset + 3 + entry_len * index];
5022
5023 /*
5024 * Fixup for chips using same address offset for read and
5025 * write.
5026 */
5027 if (port_type == 4) /* seen on C51 */
5028 rdofs = wrofs = 1;
5029 if (port_type >= 5) /* G80+ */
5030 rdofs = wrofs = 0;
5031 }
5032
5033 if (dcb_i2c_ver >= 0x40 && port_type != 5 && port_type != 6)
5034 NV_WARN(dev, "DCB I2C table has port type %d\n", port_type);
5035
5036 i2c->port_type = port_type;
5037 i2c->read = i2ctable[headerlen + recordoffset + rdofs + entry_len * index];
5038 i2c->write = i2ctable[headerlen + recordoffset + wrofs + entry_len * index];
5039
5040 return 0;
5041}
5042
5043static struct dcb_gpio_entry *
5044new_gpio_entry(struct nvbios *bios)
5045{
Ben Skeggs7f245b22010-02-24 09:56:18 +10005046 struct dcb_gpio_table *gpio = &bios->dcb.gpio;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005047
5048 return &gpio->entry[gpio->entries++];
5049}
5050
5051struct dcb_gpio_entry *
5052nouveau_bios_gpio_entry(struct drm_device *dev, enum dcb_gpio_tag tag)
5053{
5054 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10005055 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005056 int i;
5057
Ben Skeggs7f245b22010-02-24 09:56:18 +10005058 for (i = 0; i < bios->dcb.gpio.entries; i++) {
5059 if (bios->dcb.gpio.entry[i].tag != tag)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005060 continue;
5061
Ben Skeggs7f245b22010-02-24 09:56:18 +10005062 return &bios->dcb.gpio.entry[i];
Ben Skeggs6ee73862009-12-11 19:24:15 +10005063 }
5064
5065 return NULL;
5066}
5067
5068static void
5069parse_dcb30_gpio_entry(struct nvbios *bios, uint16_t offset)
5070{
5071 struct dcb_gpio_entry *gpio;
5072 uint16_t ent = ROM16(bios->data[offset]);
5073 uint8_t line = ent & 0x1f,
5074 tag = ent >> 5 & 0x3f,
5075 flags = ent >> 11 & 0x1f;
5076
5077 if (tag == 0x3f)
5078 return;
5079
5080 gpio = new_gpio_entry(bios);
5081
5082 gpio->tag = tag;
5083 gpio->line = line;
5084 gpio->invert = flags != 4;
5085}
5086
5087static void
5088parse_dcb40_gpio_entry(struct nvbios *bios, uint16_t offset)
5089{
5090 struct dcb_gpio_entry *gpio;
5091 uint32_t ent = ROM32(bios->data[offset]);
5092 uint8_t line = ent & 0x1f,
5093 tag = ent >> 8 & 0xff;
5094
5095 if (tag == 0xff)
5096 return;
5097
5098 gpio = new_gpio_entry(bios);
5099
5100 /* Currently unused, we may need more fields parsed at some
5101 * point. */
5102 gpio->tag = tag;
5103 gpio->line = line;
5104}
5105
5106static void
5107parse_dcb_gpio_table(struct nvbios *bios)
5108{
5109 struct drm_device *dev = bios->dev;
Ben Skeggs7f245b22010-02-24 09:56:18 +10005110 uint16_t gpio_table_ptr = bios->dcb.gpio_table_ptr;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005111 uint8_t *gpio_table = &bios->data[gpio_table_ptr];
5112 int header_len = gpio_table[1],
5113 entries = gpio_table[2],
5114 entry_len = gpio_table[3];
5115 void (*parse_entry)(struct nvbios *, uint16_t) = NULL;
5116 int i;
5117
Ben Skeggs7f245b22010-02-24 09:56:18 +10005118 if (bios->dcb.version >= 0x40) {
Ben Skeggs6ee73862009-12-11 19:24:15 +10005119 if (gpio_table_ptr && entry_len != 4) {
5120 NV_WARN(dev, "Invalid DCB GPIO table entry length.\n");
5121 return;
5122 }
5123
5124 parse_entry = parse_dcb40_gpio_entry;
5125
Ben Skeggs7f245b22010-02-24 09:56:18 +10005126 } else if (bios->dcb.version >= 0x30) {
Ben Skeggs6ee73862009-12-11 19:24:15 +10005127 if (gpio_table_ptr && entry_len != 2) {
5128 NV_WARN(dev, "Invalid DCB GPIO table entry length.\n");
5129 return;
5130 }
5131
5132 parse_entry = parse_dcb30_gpio_entry;
5133
Ben Skeggs7f245b22010-02-24 09:56:18 +10005134 } else if (bios->dcb.version >= 0x22) {
Ben Skeggs6ee73862009-12-11 19:24:15 +10005135 /*
5136 * DCBs older than v3.0 don't really have a GPIO
5137 * table, instead they keep some GPIO info at fixed
5138 * locations.
5139 */
5140 uint16_t dcbptr = ROM16(bios->data[0x36]);
5141 uint8_t *tvdac_gpio = &bios->data[dcbptr - 5];
5142
5143 if (tvdac_gpio[0] & 1) {
5144 struct dcb_gpio_entry *gpio = new_gpio_entry(bios);
5145
5146 gpio->tag = DCB_GPIO_TVDAC0;
5147 gpio->line = tvdac_gpio[1] >> 4;
5148 gpio->invert = tvdac_gpio[0] & 2;
5149 }
5150 }
5151
5152 if (!gpio_table_ptr)
5153 return;
5154
5155 if (entries > DCB_MAX_NUM_GPIO_ENTRIES) {
5156 NV_WARN(dev, "Too many entries in the DCB GPIO table.\n");
5157 entries = DCB_MAX_NUM_GPIO_ENTRIES;
5158 }
5159
5160 for (i = 0; i < entries; i++)
5161 parse_entry(bios, gpio_table_ptr + header_len + entry_len * i);
5162}
5163
5164struct dcb_connector_table_entry *
5165nouveau_bios_connector_entry(struct drm_device *dev, int index)
5166{
5167 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10005168 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005169 struct dcb_connector_table_entry *cte;
5170
Ben Skeggs7f245b22010-02-24 09:56:18 +10005171 if (index >= bios->dcb.connector.entries)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005172 return NULL;
5173
Ben Skeggs7f245b22010-02-24 09:56:18 +10005174 cte = &bios->dcb.connector.entry[index];
Ben Skeggs6ee73862009-12-11 19:24:15 +10005175 if (cte->type == 0xff)
5176 return NULL;
5177
5178 return cte;
5179}
5180
Ben Skeggsf66fa772010-02-24 11:09:20 +10005181static enum dcb_connector_type
5182divine_connector_type(struct nvbios *bios, int index)
5183{
5184 struct dcb_table *dcb = &bios->dcb;
5185 unsigned encoders = 0, type = DCB_CONNECTOR_NONE;
5186 int i;
5187
5188 for (i = 0; i < dcb->entries; i++) {
5189 if (dcb->entry[i].connector == index)
5190 encoders |= (1 << dcb->entry[i].type);
5191 }
5192
5193 if (encoders & (1 << OUTPUT_DP)) {
5194 if (encoders & (1 << OUTPUT_TMDS))
5195 type = DCB_CONNECTOR_DP;
5196 else
5197 type = DCB_CONNECTOR_eDP;
5198 } else
5199 if (encoders & (1 << OUTPUT_TMDS)) {
5200 if (encoders & (1 << OUTPUT_ANALOG))
5201 type = DCB_CONNECTOR_DVI_I;
5202 else
5203 type = DCB_CONNECTOR_DVI_D;
5204 } else
5205 if (encoders & (1 << OUTPUT_ANALOG)) {
5206 type = DCB_CONNECTOR_VGA;
5207 } else
5208 if (encoders & (1 << OUTPUT_LVDS)) {
5209 type = DCB_CONNECTOR_LVDS;
5210 } else
5211 if (encoders & (1 << OUTPUT_TV)) {
5212 type = DCB_CONNECTOR_TV_0;
5213 }
5214
5215 return type;
5216}
5217
Ben Skeggs6ee73862009-12-11 19:24:15 +10005218static void
Ben Skeggs53c44c32010-03-04 12:12:22 +10005219apply_dcb_connector_quirks(struct nvbios *bios, int idx)
5220{
5221 struct dcb_connector_table_entry *cte = &bios->dcb.connector.entry[idx];
5222 struct drm_device *dev = bios->dev;
5223
5224 /* Gigabyte NX85T */
5225 if ((dev->pdev->device == 0x0421) &&
5226 (dev->pdev->subsystem_vendor == 0x1458) &&
5227 (dev->pdev->subsystem_device == 0x344c)) {
5228 if (cte->type == DCB_CONNECTOR_HDMI_1)
5229 cte->type = DCB_CONNECTOR_DVI_I;
5230 }
5231}
5232
5233static void
Ben Skeggs6ee73862009-12-11 19:24:15 +10005234parse_dcb_connector_table(struct nvbios *bios)
5235{
5236 struct drm_device *dev = bios->dev;
Ben Skeggs7f245b22010-02-24 09:56:18 +10005237 struct dcb_connector_table *ct = &bios->dcb.connector;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005238 struct dcb_connector_table_entry *cte;
Ben Skeggs7f245b22010-02-24 09:56:18 +10005239 uint8_t *conntab = &bios->data[bios->dcb.connector_table_ptr];
Ben Skeggs6ee73862009-12-11 19:24:15 +10005240 uint8_t *entry;
5241 int i;
5242
Ben Skeggs7f245b22010-02-24 09:56:18 +10005243 if (!bios->dcb.connector_table_ptr) {
Maarten Maathuisef2bb502009-12-13 16:53:12 +01005244 NV_DEBUG_KMS(dev, "No DCB connector table present\n");
Ben Skeggs6ee73862009-12-11 19:24:15 +10005245 return;
5246 }
5247
5248 NV_INFO(dev, "DCB connector table: VHER 0x%02x %d %d %d\n",
5249 conntab[0], conntab[1], conntab[2], conntab[3]);
5250 if ((conntab[0] != 0x30 && conntab[0] != 0x40) ||
5251 (conntab[3] != 2 && conntab[3] != 4)) {
5252 NV_ERROR(dev, " Unknown! Please report.\n");
5253 return;
5254 }
5255
5256 ct->entries = conntab[2];
5257
5258 entry = conntab + conntab[1];
5259 cte = &ct->entry[0];
5260 for (i = 0; i < conntab[2]; i++, entry += conntab[3], cte++) {
Ben Skeggsd544d622010-03-10 15:52:43 +10005261 cte->index = i;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005262 if (conntab[3] == 2)
5263 cte->entry = ROM16(entry[0]);
5264 else
5265 cte->entry = ROM32(entry[0]);
Ben Skeggsf66fa772010-02-24 11:09:20 +10005266
Ben Skeggs6ee73862009-12-11 19:24:15 +10005267 cte->type = (cte->entry & 0x000000ff) >> 0;
Ben Skeggsd544d622010-03-10 15:52:43 +10005268 cte->index2 = (cte->entry & 0x00000f00) >> 8;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005269 switch (cte->entry & 0x00033000) {
5270 case 0x00001000:
5271 cte->gpio_tag = 0x07;
5272 break;
5273 case 0x00002000:
5274 cte->gpio_tag = 0x08;
5275 break;
5276 case 0x00010000:
5277 cte->gpio_tag = 0x51;
5278 break;
5279 case 0x00020000:
5280 cte->gpio_tag = 0x52;
5281 break;
5282 default:
5283 cte->gpio_tag = 0xff;
5284 break;
5285 }
5286
5287 if (cte->type == 0xff)
5288 continue;
5289
Ben Skeggs53c44c32010-03-04 12:12:22 +10005290 apply_dcb_connector_quirks(bios, i);
5291
Ben Skeggs6ee73862009-12-11 19:24:15 +10005292 NV_INFO(dev, " %d: 0x%08x: type 0x%02x idx %d tag 0x%02x\n",
5293 i, cte->entry, cte->type, cte->index, cte->gpio_tag);
Ben Skeggsf66fa772010-02-24 11:09:20 +10005294
5295 /* check for known types, fallback to guessing the type
5296 * from attached encoders if we hit an unknown.
5297 */
5298 switch (cte->type) {
5299 case DCB_CONNECTOR_VGA:
5300 case DCB_CONNECTOR_TV_0:
5301 case DCB_CONNECTOR_TV_1:
5302 case DCB_CONNECTOR_TV_3:
5303 case DCB_CONNECTOR_DVI_I:
5304 case DCB_CONNECTOR_DVI_D:
5305 case DCB_CONNECTOR_LVDS:
5306 case DCB_CONNECTOR_DP:
5307 case DCB_CONNECTOR_eDP:
5308 case DCB_CONNECTOR_HDMI_0:
5309 case DCB_CONNECTOR_HDMI_1:
5310 break;
5311 default:
5312 cte->type = divine_connector_type(bios, cte->index);
Ben Skeggsda647d52010-03-04 12:00:39 +10005313 NV_WARN(dev, "unknown type, using 0x%02x\n", cte->type);
Ben Skeggsf66fa772010-02-24 11:09:20 +10005314 break;
5315 }
5316
Ben Skeggsda647d52010-03-04 12:00:39 +10005317 if (nouveau_override_conntype) {
5318 int type = divine_connector_type(bios, cte->index);
5319 if (type != cte->type)
5320 NV_WARN(dev, " -> type 0x%02x\n", cte->type);
5321 }
5322
Ben Skeggs6ee73862009-12-11 19:24:15 +10005323 }
5324}
5325
Ben Skeggs7f245b22010-02-24 09:56:18 +10005326static struct dcb_entry *new_dcb_entry(struct dcb_table *dcb)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005327{
5328 struct dcb_entry *entry = &dcb->entry[dcb->entries];
5329
5330 memset(entry, 0, sizeof(struct dcb_entry));
5331 entry->index = dcb->entries++;
5332
5333 return entry;
5334}
5335
Ben Skeggs7f245b22010-02-24 09:56:18 +10005336static void fabricate_vga_output(struct dcb_table *dcb, int i2c, int heads)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005337{
5338 struct dcb_entry *entry = new_dcb_entry(dcb);
5339
5340 entry->type = 0;
5341 entry->i2c_index = i2c;
5342 entry->heads = heads;
5343 entry->location = DCB_LOC_ON_CHIP;
5344 /* "or" mostly unused in early gen crt modesetting, 0 is fine */
5345}
5346
Ben Skeggs7f245b22010-02-24 09:56:18 +10005347static void fabricate_dvi_i_output(struct dcb_table *dcb, bool twoHeads)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005348{
5349 struct dcb_entry *entry = new_dcb_entry(dcb);
5350
5351 entry->type = 2;
5352 entry->i2c_index = LEGACY_I2C_PANEL;
5353 entry->heads = twoHeads ? 3 : 1;
5354 entry->location = !DCB_LOC_ON_CHIP; /* ie OFF CHIP */
5355 entry->or = 1; /* means |0x10 gets set on CRE_LCD__INDEX */
5356 entry->duallink_possible = false; /* SiI164 and co. are single link */
5357
5358#if 0
5359 /*
5360 * For dvi-a either crtc probably works, but my card appears to only
5361 * support dvi-d. "nvidia" still attempts to program it for dvi-a,
5362 * doing the full fp output setup (program 0x6808.. fp dimension regs,
5363 * setting 0x680848 to 0x10000111 to enable, maybe setting 0x680880);
5364 * the monitor picks up the mode res ok and lights up, but no pixel
5365 * data appears, so the board manufacturer probably connected up the
5366 * sync lines, but missed the video traces / components
5367 *
5368 * with this introduction, dvi-a left as an exercise for the reader.
5369 */
5370 fabricate_vga_output(dcb, LEGACY_I2C_PANEL, entry->heads);
5371#endif
5372}
5373
Ben Skeggs7f245b22010-02-24 09:56:18 +10005374static void fabricate_tv_output(struct dcb_table *dcb, bool twoHeads)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005375{
5376 struct dcb_entry *entry = new_dcb_entry(dcb);
5377
5378 entry->type = 1;
5379 entry->i2c_index = LEGACY_I2C_TV;
5380 entry->heads = twoHeads ? 3 : 1;
5381 entry->location = !DCB_LOC_ON_CHIP; /* ie OFF CHIP */
5382}
5383
5384static bool
Ben Skeggs7f245b22010-02-24 09:56:18 +10005385parse_dcb20_entry(struct drm_device *dev, struct dcb_table *dcb,
Ben Skeggs6ee73862009-12-11 19:24:15 +10005386 uint32_t conn, uint32_t conf, struct dcb_entry *entry)
5387{
5388 entry->type = conn & 0xf;
5389 entry->i2c_index = (conn >> 4) & 0xf;
5390 entry->heads = (conn >> 8) & 0xf;
Ben Skeggs7f245b22010-02-24 09:56:18 +10005391 if (dcb->version >= 0x40)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005392 entry->connector = (conn >> 12) & 0xf;
5393 entry->bus = (conn >> 16) & 0xf;
5394 entry->location = (conn >> 20) & 0x3;
5395 entry->or = (conn >> 24) & 0xf;
5396 /*
5397 * Normal entries consist of a single bit, but dual link has the
5398 * next most significant bit set too
5399 */
5400 entry->duallink_possible =
5401 ((1 << (ffs(entry->or) - 1)) * 3 == entry->or);
5402
5403 switch (entry->type) {
5404 case OUTPUT_ANALOG:
5405 /*
5406 * Although the rest of a CRT conf dword is usually
5407 * zeros, mac biosen have stuff there so we must mask
5408 */
Ben Skeggs7f245b22010-02-24 09:56:18 +10005409 entry->crtconf.maxfreq = (dcb->version < 0x30) ?
Ben Skeggs6ee73862009-12-11 19:24:15 +10005410 (conf & 0xffff) * 10 :
5411 (conf & 0xff) * 10000;
5412 break;
5413 case OUTPUT_LVDS:
5414 {
5415 uint32_t mask;
5416 if (conf & 0x1)
5417 entry->lvdsconf.use_straps_for_mode = true;
Ben Skeggs7f245b22010-02-24 09:56:18 +10005418 if (dcb->version < 0x22) {
Ben Skeggs6ee73862009-12-11 19:24:15 +10005419 mask = ~0xd;
5420 /*
5421 * The laptop in bug 14567 lies and claims to not use
5422 * straps when it does, so assume all DCB 2.0 laptops
5423 * use straps, until a broken EDID using one is produced
5424 */
5425 entry->lvdsconf.use_straps_for_mode = true;
5426 /*
5427 * Both 0x4 and 0x8 show up in v2.0 tables; assume they
5428 * mean the same thing (probably wrong, but might work)
5429 */
5430 if (conf & 0x4 || conf & 0x8)
5431 entry->lvdsconf.use_power_scripts = true;
5432 } else {
5433 mask = ~0x5;
5434 if (conf & 0x4)
5435 entry->lvdsconf.use_power_scripts = true;
5436 }
5437 if (conf & mask) {
5438 /*
5439 * Until we even try to use these on G8x, it's
5440 * useless reporting unknown bits. They all are.
5441 */
Ben Skeggs7f245b22010-02-24 09:56:18 +10005442 if (dcb->version >= 0x40)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005443 break;
5444
5445 NV_ERROR(dev, "Unknown LVDS configuration bits, "
5446 "please report\n");
5447 }
5448 break;
5449 }
5450 case OUTPUT_TV:
5451 {
Ben Skeggs7f245b22010-02-24 09:56:18 +10005452 if (dcb->version >= 0x30)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005453 entry->tvconf.has_component_output = conf & (0x8 << 4);
5454 else
5455 entry->tvconf.has_component_output = false;
5456
5457 break;
5458 }
5459 case OUTPUT_DP:
5460 entry->dpconf.sor.link = (conf & 0x00000030) >> 4;
5461 entry->dpconf.link_bw = (conf & 0x00e00000) >> 21;
5462 switch ((conf & 0x0f000000) >> 24) {
5463 case 0xf:
5464 entry->dpconf.link_nr = 4;
5465 break;
5466 case 0x3:
5467 entry->dpconf.link_nr = 2;
5468 break;
5469 default:
5470 entry->dpconf.link_nr = 1;
5471 break;
5472 }
5473 break;
5474 case OUTPUT_TMDS:
5475 entry->tmdsconf.sor.link = (conf & 0x00000030) >> 4;
5476 break;
5477 case 0xe:
5478 /* weird g80 mobile type that "nv" treats as a terminator */
Ben Skeggs7f245b22010-02-24 09:56:18 +10005479 dcb->entries--;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005480 return false;
Ben Skeggse7cc51c2010-02-24 10:31:39 +10005481 default:
5482 break;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005483 }
5484
5485 /* unsure what DCB version introduces this, 3.0? */
5486 if (conf & 0x100000)
5487 entry->i2c_upper_default = true;
5488
5489 return true;
5490}
5491
5492static bool
Ben Skeggs7f245b22010-02-24 09:56:18 +10005493parse_dcb15_entry(struct drm_device *dev, struct dcb_table *dcb,
Ben Skeggs6ee73862009-12-11 19:24:15 +10005494 uint32_t conn, uint32_t conf, struct dcb_entry *entry)
5495{
Ben Skeggsb0d2de82010-01-14 17:53:04 +10005496 switch (conn & 0x0000000f) {
5497 case 0:
5498 entry->type = OUTPUT_ANALOG;
5499 break;
5500 case 1:
5501 entry->type = OUTPUT_TV;
5502 break;
5503 case 2:
5504 case 3:
5505 entry->type = OUTPUT_LVDS;
5506 break;
5507 case 4:
5508 switch ((conn & 0x000000f0) >> 4) {
5509 case 0:
5510 entry->type = OUTPUT_TMDS;
5511 break;
5512 case 1:
5513 entry->type = OUTPUT_LVDS;
5514 break;
5515 default:
5516 NV_ERROR(dev, "Unknown DCB subtype 4/%d\n",
5517 (conn & 0x000000f0) >> 4);
5518 return false;
5519 }
5520 break;
5521 default:
5522 NV_ERROR(dev, "Unknown DCB type %d\n", conn & 0x0000000f);
Ben Skeggs6ee73862009-12-11 19:24:15 +10005523 return false;
5524 }
Ben Skeggsb0d2de82010-01-14 17:53:04 +10005525
5526 entry->i2c_index = (conn & 0x0003c000) >> 14;
5527 entry->heads = ((conn & 0x001c0000) >> 18) + 1;
5528 entry->or = entry->heads; /* same as heads, hopefully safe enough */
5529 entry->location = (conn & 0x01e00000) >> 21;
5530 entry->bus = (conn & 0x0e000000) >> 25;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005531 entry->duallink_possible = false;
5532
5533 switch (entry->type) {
5534 case OUTPUT_ANALOG:
5535 entry->crtconf.maxfreq = (conf & 0xffff) * 10;
5536 break;
Ben Skeggsb0d2de82010-01-14 17:53:04 +10005537 case OUTPUT_TV:
5538 entry->tvconf.has_component_output = false;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005539 break;
5540 case OUTPUT_TMDS:
5541 /*
5542 * Invent a DVI-A output, by copying the fields of the DVI-D
5543 * output; reported to work by math_b on an NV20(!).
5544 */
5545 fabricate_vga_output(dcb, entry->i2c_index, entry->heads);
5546 break;
Ben Skeggsb0d2de82010-01-14 17:53:04 +10005547 case OUTPUT_LVDS:
5548 if ((conn & 0x00003f00) != 0x10)
5549 entry->lvdsconf.use_straps_for_mode = true;
5550 entry->lvdsconf.use_power_scripts = true;
5551 break;
5552 default:
Ben Skeggs6ee73862009-12-11 19:24:15 +10005553 break;
5554 }
5555
5556 return true;
5557}
5558
Ben Skeggs7f245b22010-02-24 09:56:18 +10005559static bool parse_dcb_entry(struct drm_device *dev, struct dcb_table *dcb,
Ben Skeggs6ee73862009-12-11 19:24:15 +10005560 uint32_t conn, uint32_t conf)
5561{
Ben Skeggs7f245b22010-02-24 09:56:18 +10005562 struct dcb_entry *entry = new_dcb_entry(dcb);
Ben Skeggs6ee73862009-12-11 19:24:15 +10005563 bool ret;
5564
Ben Skeggs7f245b22010-02-24 09:56:18 +10005565 if (dcb->version >= 0x20)
5566 ret = parse_dcb20_entry(dev, dcb, conn, conf, entry);
Ben Skeggs6ee73862009-12-11 19:24:15 +10005567 else
Ben Skeggs7f245b22010-02-24 09:56:18 +10005568 ret = parse_dcb15_entry(dev, dcb, conn, conf, entry);
Ben Skeggs6ee73862009-12-11 19:24:15 +10005569 if (!ret)
5570 return ret;
5571
Ben Skeggs7f245b22010-02-24 09:56:18 +10005572 read_dcb_i2c_entry(dev, dcb->version, dcb->i2c_table,
5573 entry->i2c_index, &dcb->i2c[entry->i2c_index]);
Ben Skeggs6ee73862009-12-11 19:24:15 +10005574
5575 return true;
5576}
5577
5578static
Ben Skeggs7f245b22010-02-24 09:56:18 +10005579void merge_like_dcb_entries(struct drm_device *dev, struct dcb_table *dcb)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005580{
5581 /*
5582 * DCB v2.0 lists each output combination separately.
5583 * Here we merge compatible entries to have fewer outputs, with
5584 * more options
5585 */
5586
5587 int i, newentries = 0;
5588
5589 for (i = 0; i < dcb->entries; i++) {
5590 struct dcb_entry *ient = &dcb->entry[i];
5591 int j;
5592
5593 for (j = i + 1; j < dcb->entries; j++) {
5594 struct dcb_entry *jent = &dcb->entry[j];
5595
5596 if (jent->type == 100) /* already merged entry */
5597 continue;
5598
5599 /* merge heads field when all other fields the same */
5600 if (jent->i2c_index == ient->i2c_index &&
5601 jent->type == ient->type &&
5602 jent->location == ient->location &&
5603 jent->or == ient->or) {
5604 NV_TRACE(dev, "Merging DCB entries %d and %d\n",
5605 i, j);
5606 ient->heads |= jent->heads;
5607 jent->type = 100; /* dummy value */
5608 }
5609 }
5610 }
5611
5612 /* Compact entries merged into others out of dcb */
5613 for (i = 0; i < dcb->entries; i++) {
5614 if (dcb->entry[i].type == 100)
5615 continue;
5616
5617 if (newentries != i) {
5618 dcb->entry[newentries] = dcb->entry[i];
5619 dcb->entry[newentries].index = newentries;
5620 }
5621 newentries++;
5622 }
5623
5624 dcb->entries = newentries;
5625}
5626
Ben Skeggsed42f822010-01-14 15:58:10 +10005627static int
5628parse_dcb_table(struct drm_device *dev, struct nvbios *bios, bool twoHeads)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005629{
Ben Skeggsed42f822010-01-14 15:58:10 +10005630 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs7f245b22010-02-24 09:56:18 +10005631 struct dcb_table *dcb = &bios->dcb;
Ben Skeggsed42f822010-01-14 15:58:10 +10005632 uint16_t dcbptr = 0, i2ctabptr = 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005633 uint8_t *dcbtable;
5634 uint8_t headerlen = 0x4, entries = DCB_MAX_NUM_ENTRIES;
5635 bool configblock = true;
5636 int recordlength = 8, confofs = 4;
5637 int i;
5638
Ben Skeggs6ee73862009-12-11 19:24:15 +10005639 /* get the offset from 0x36 */
Ben Skeggsed42f822010-01-14 15:58:10 +10005640 if (dev_priv->card_type > NV_04) {
5641 dcbptr = ROM16(bios->data[0x36]);
5642 if (dcbptr == 0x0000)
5643 NV_WARN(dev, "No output data (DCB) found in BIOS\n");
5644 }
Ben Skeggs6ee73862009-12-11 19:24:15 +10005645
Ben Skeggsed42f822010-01-14 15:58:10 +10005646 /* this situation likely means a really old card, pre DCB */
Ben Skeggs6ee73862009-12-11 19:24:15 +10005647 if (dcbptr == 0x0) {
Ben Skeggsed42f822010-01-14 15:58:10 +10005648 NV_INFO(dev, "Assuming a CRT output exists\n");
Ben Skeggs6ee73862009-12-11 19:24:15 +10005649 fabricate_vga_output(dcb, LEGACY_I2C_CRT, 1);
5650
Ben Skeggsed42f822010-01-14 15:58:10 +10005651 if (nv04_tv_identify(dev, bios->legacy.i2c_indices.tv) >= 0)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005652 fabricate_tv_output(dcb, twoHeads);
5653
5654 return 0;
5655 }
5656
5657 dcbtable = &bios->data[dcbptr];
5658
5659 /* get DCB version */
Ben Skeggs7f245b22010-02-24 09:56:18 +10005660 dcb->version = dcbtable[0];
Ben Skeggs6ee73862009-12-11 19:24:15 +10005661 NV_TRACE(dev, "Found Display Configuration Block version %d.%d\n",
Ben Skeggs7f245b22010-02-24 09:56:18 +10005662 dcb->version >> 4, dcb->version & 0xf);
Ben Skeggs6ee73862009-12-11 19:24:15 +10005663
Ben Skeggs7f245b22010-02-24 09:56:18 +10005664 if (dcb->version >= 0x20) { /* NV17+ */
Ben Skeggs6ee73862009-12-11 19:24:15 +10005665 uint32_t sig;
5666
Ben Skeggs7f245b22010-02-24 09:56:18 +10005667 if (dcb->version >= 0x30) { /* NV40+ */
Ben Skeggs6ee73862009-12-11 19:24:15 +10005668 headerlen = dcbtable[1];
5669 entries = dcbtable[2];
5670 recordlength = dcbtable[3];
5671 i2ctabptr = ROM16(dcbtable[4]);
5672 sig = ROM32(dcbtable[6]);
Ben Skeggs7f245b22010-02-24 09:56:18 +10005673 dcb->gpio_table_ptr = ROM16(dcbtable[10]);
5674 dcb->connector_table_ptr = ROM16(dcbtable[20]);
Ben Skeggs6ee73862009-12-11 19:24:15 +10005675 } else {
5676 i2ctabptr = ROM16(dcbtable[2]);
5677 sig = ROM32(dcbtable[4]);
5678 headerlen = 8;
5679 }
5680
5681 if (sig != 0x4edcbdcb) {
5682 NV_ERROR(dev, "Bad Display Configuration Block "
5683 "signature (%08X)\n", sig);
5684 return -EINVAL;
5685 }
Ben Skeggs7f245b22010-02-24 09:56:18 +10005686 } else if (dcb->version >= 0x15) { /* some NV11 and NV20 */
Ben Skeggs6ee73862009-12-11 19:24:15 +10005687 char sig[8] = { 0 };
5688
5689 strncpy(sig, (char *)&dcbtable[-7], 7);
5690 i2ctabptr = ROM16(dcbtable[2]);
5691 recordlength = 10;
5692 confofs = 6;
5693
5694 if (strcmp(sig, "DEV_REC")) {
5695 NV_ERROR(dev, "Bad Display Configuration Block "
5696 "signature (%s)\n", sig);
5697 return -EINVAL;
5698 }
5699 } else {
5700 /*
5701 * v1.4 (some NV15/16, NV11+) seems the same as v1.5, but always
5702 * has the same single (crt) entry, even when tv-out present, so
5703 * the conclusion is this version cannot really be used.
5704 * v1.2 tables (some NV6/10, and NV15+) normally have the same
5705 * 5 entries, which are not specific to the card and so no use.
5706 * v1.2 does have an I2C table that read_dcb_i2c_table can
5707 * handle, but cards exist (nv11 in #14821) with a bad i2c table
5708 * pointer, so use the indices parsed in parse_bmp_structure.
5709 * v1.1 (NV5+, maybe some NV4) is entirely unhelpful
5710 */
5711 NV_TRACEWARN(dev, "No useful information in BIOS output table; "
5712 "adding all possible outputs\n");
5713 fabricate_vga_output(dcb, LEGACY_I2C_CRT, 1);
5714
5715 /*
5716 * Attempt to detect TV before DVI because the test
5717 * for the former is more accurate and it rules the
5718 * latter out.
5719 */
5720 if (nv04_tv_identify(dev,
5721 bios->legacy.i2c_indices.tv) >= 0)
5722 fabricate_tv_output(dcb, twoHeads);
5723
5724 else if (bios->tmds.output0_script_ptr ||
5725 bios->tmds.output1_script_ptr)
5726 fabricate_dvi_i_output(dcb, twoHeads);
5727
5728 return 0;
5729 }
5730
5731 if (!i2ctabptr)
5732 NV_WARN(dev, "No pointer to DCB I2C port table\n");
5733 else {
Ben Skeggs7f245b22010-02-24 09:56:18 +10005734 dcb->i2c_table = &bios->data[i2ctabptr];
5735 if (dcb->version >= 0x30)
5736 dcb->i2c_default_indices = dcb->i2c_table[4];
Ben Skeggs6ee73862009-12-11 19:24:15 +10005737 }
5738
Ben Skeggs6ee73862009-12-11 19:24:15 +10005739 if (entries > DCB_MAX_NUM_ENTRIES)
5740 entries = DCB_MAX_NUM_ENTRIES;
5741
5742 for (i = 0; i < entries; i++) {
5743 uint32_t connection, config = 0;
5744
5745 connection = ROM32(dcbtable[headerlen + recordlength * i]);
5746 if (configblock)
5747 config = ROM32(dcbtable[headerlen + confofs + recordlength * i]);
5748
5749 /* seen on an NV11 with DCB v1.5 */
5750 if (connection == 0x00000000)
5751 break;
5752
5753 /* seen on an NV17 with DCB v2.0 */
5754 if (connection == 0xffffffff)
5755 break;
5756
5757 if ((connection & 0x0000000f) == 0x0000000f)
5758 continue;
5759
5760 NV_TRACEWARN(dev, "Raw DCB entry %d: %08x %08x\n",
5761 dcb->entries, connection, config);
5762
Ben Skeggs7f245b22010-02-24 09:56:18 +10005763 if (!parse_dcb_entry(dev, dcb, connection, config))
Ben Skeggs6ee73862009-12-11 19:24:15 +10005764 break;
5765 }
5766
5767 /*
5768 * apart for v2.1+ not being known for requiring merging, this
5769 * guarantees dcbent->index is the index of the entry in the rom image
5770 */
Ben Skeggs7f245b22010-02-24 09:56:18 +10005771 if (dcb->version < 0x21)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005772 merge_like_dcb_entries(dev, dcb);
5773
Ben Skeggs54abb5d2010-02-24 10:48:16 +10005774 if (!dcb->entries)
5775 return -ENXIO;
5776
5777 parse_dcb_gpio_table(bios);
5778 parse_dcb_connector_table(bios);
5779 return 0;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005780}
5781
5782static void
5783fixup_legacy_connector(struct nvbios *bios)
5784{
Ben Skeggs7f245b22010-02-24 09:56:18 +10005785 struct dcb_table *dcb = &bios->dcb;
Ben Skeggsdc5bc4e2010-02-24 11:53:59 +10005786 int i, i2c, i2c_conn[DCB_MAX_NUM_I2C_ENTRIES] = { };
Ben Skeggs6ee73862009-12-11 19:24:15 +10005787
5788 /*
5789 * DCB 3.0 also has the table in most cases, but there are some cards
5790 * where the table is filled with stub entries, and the DCB entriy
5791 * indices are all 0. We don't need the connector indices on pre-G80
5792 * chips (yet?) so limit the use to DCB 4.0 and above.
5793 */
Ben Skeggs7f245b22010-02-24 09:56:18 +10005794 if (dcb->version >= 0x40)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005795 return;
5796
Ben Skeggsdc5bc4e2010-02-24 11:53:59 +10005797 dcb->connector.entries = 0;
5798
Ben Skeggs6ee73862009-12-11 19:24:15 +10005799 /*
5800 * No known connector info before v3.0, so make it up. the rule here
5801 * is: anything on the same i2c bus is considered to be on the same
5802 * connector. any output without an associated i2c bus is assigned
5803 * its own unique connector index.
5804 */
5805 for (i = 0; i < dcb->entries; i++) {
Ben Skeggs6ee73862009-12-11 19:24:15 +10005806 /*
5807 * Ignore the I2C index for on-chip TV-out, as there
5808 * are cards with bogus values (nv31m in bug 23212),
5809 * and it's otherwise useless.
5810 */
5811 if (dcb->entry[i].type == OUTPUT_TV &&
Ben Skeggsdc5bc4e2010-02-24 11:53:59 +10005812 dcb->entry[i].location == DCB_LOC_ON_CHIP)
Ben Skeggs6ee73862009-12-11 19:24:15 +10005813 dcb->entry[i].i2c_index = 0xf;
Ben Skeggsdc5bc4e2010-02-24 11:53:59 +10005814 i2c = dcb->entry[i].i2c_index;
5815
5816 if (i2c_conn[i2c]) {
5817 dcb->entry[i].connector = i2c_conn[i2c] - 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005818 continue;
5819 }
5820
Ben Skeggsdc5bc4e2010-02-24 11:53:59 +10005821 dcb->entry[i].connector = dcb->connector.entries++;
5822 if (i2c != 0xf)
5823 i2c_conn[i2c] = dcb->connector.entries;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005824 }
5825
Ben Skeggsdc5bc4e2010-02-24 11:53:59 +10005826 /* Fake the connector table as well as just connector indices */
5827 for (i = 0; i < dcb->connector.entries; i++) {
5828 dcb->connector.entry[i].index = i;
5829 dcb->connector.entry[i].type = divine_connector_type(bios, i);
5830 dcb->connector.entry[i].gpio_tag = 0xff;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005831 }
5832}
5833
5834static void
5835fixup_legacy_i2c(struct nvbios *bios)
5836{
Ben Skeggs7f245b22010-02-24 09:56:18 +10005837 struct dcb_table *dcb = &bios->dcb;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005838 int i;
5839
5840 for (i = 0; i < dcb->entries; i++) {
5841 if (dcb->entry[i].i2c_index == LEGACY_I2C_CRT)
5842 dcb->entry[i].i2c_index = bios->legacy.i2c_indices.crt;
5843 if (dcb->entry[i].i2c_index == LEGACY_I2C_PANEL)
5844 dcb->entry[i].i2c_index = bios->legacy.i2c_indices.panel;
5845 if (dcb->entry[i].i2c_index == LEGACY_I2C_TV)
5846 dcb->entry[i].i2c_index = bios->legacy.i2c_indices.tv;
5847 }
5848}
5849
5850static int load_nv17_hwsq_ucode_entry(struct drm_device *dev, struct nvbios *bios, uint16_t hwsq_offset, int entry)
5851{
5852 /*
5853 * The header following the "HWSQ" signature has the number of entries,
5854 * and the entry size
5855 *
5856 * An entry consists of a dword to write to the sequencer control reg
5857 * (0x00001304), followed by the ucode bytes, written sequentially,
5858 * starting at reg 0x00001400
5859 */
5860
5861 uint8_t bytes_to_write;
5862 uint16_t hwsq_entry_offset;
5863 int i;
5864
5865 if (bios->data[hwsq_offset] <= entry) {
5866 NV_ERROR(dev, "Too few entries in HW sequencer table for "
5867 "requested entry\n");
5868 return -ENOENT;
5869 }
5870
5871 bytes_to_write = bios->data[hwsq_offset + 1];
5872
5873 if (bytes_to_write != 36) {
5874 NV_ERROR(dev, "Unknown HW sequencer entry size\n");
5875 return -EINVAL;
5876 }
5877
5878 NV_TRACE(dev, "Loading NV17 power sequencing microcode\n");
5879
5880 hwsq_entry_offset = hwsq_offset + 2 + entry * bytes_to_write;
5881
5882 /* set sequencer control */
5883 bios_wr32(bios, 0x00001304, ROM32(bios->data[hwsq_entry_offset]));
5884 bytes_to_write -= 4;
5885
5886 /* write ucode */
5887 for (i = 0; i < bytes_to_write; i += 4)
5888 bios_wr32(bios, 0x00001400 + i, ROM32(bios->data[hwsq_entry_offset + i + 4]));
5889
5890 /* twiddle NV_PBUS_DEBUG_4 */
5891 bios_wr32(bios, NV_PBUS_DEBUG_4, bios_rd32(bios, NV_PBUS_DEBUG_4) | 0x18);
5892
5893 return 0;
5894}
5895
5896static int load_nv17_hw_sequencer_ucode(struct drm_device *dev,
5897 struct nvbios *bios)
5898{
5899 /*
5900 * BMP based cards, from NV17, need a microcode loading to correctly
5901 * control the GPIO etc for LVDS panels
5902 *
5903 * BIT based cards seem to do this directly in the init scripts
5904 *
5905 * The microcode entries are found by the "HWSQ" signature.
5906 */
5907
5908 const uint8_t hwsq_signature[] = { 'H', 'W', 'S', 'Q' };
5909 const int sz = sizeof(hwsq_signature);
5910 int hwsq_offset;
5911
5912 hwsq_offset = findstr(bios->data, bios->length, hwsq_signature, sz);
5913 if (!hwsq_offset)
5914 return 0;
5915
5916 /* always use entry 0? */
5917 return load_nv17_hwsq_ucode_entry(dev, bios, hwsq_offset + sz, 0);
5918}
5919
5920uint8_t *nouveau_bios_embedded_edid(struct drm_device *dev)
5921{
5922 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10005923 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005924 const uint8_t edid_sig[] = {
5925 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00 };
5926 uint16_t offset = 0;
5927 uint16_t newoffset;
5928 int searchlen = NV_PROM_SIZE;
5929
5930 if (bios->fp.edid)
5931 return bios->fp.edid;
5932
5933 while (searchlen) {
5934 newoffset = findstr(&bios->data[offset], searchlen,
5935 edid_sig, 8);
5936 if (!newoffset)
5937 return NULL;
5938 offset += newoffset;
5939 if (!nv_cksum(&bios->data[offset], EDID1_LEN))
5940 break;
5941
5942 searchlen -= offset;
5943 offset++;
5944 }
5945
5946 NV_TRACE(dev, "Found EDID in BIOS\n");
5947
5948 return bios->fp.edid = &bios->data[offset];
5949}
5950
5951void
5952nouveau_bios_run_init_table(struct drm_device *dev, uint16_t table,
5953 struct dcb_entry *dcbent)
5954{
5955 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10005956 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005957 struct init_exec iexec = { true, false };
5958
Ben Skeggsd9184fa2010-02-16 11:14:14 +10005959 mutex_lock(&bios->lock);
Ben Skeggs6ee73862009-12-11 19:24:15 +10005960 bios->display.output = dcbent;
5961 parse_init_table(bios, table, &iexec);
5962 bios->display.output = NULL;
Ben Skeggsd9184fa2010-02-16 11:14:14 +10005963 mutex_unlock(&bios->lock);
Ben Skeggs6ee73862009-12-11 19:24:15 +10005964}
5965
5966static bool NVInitVBIOS(struct drm_device *dev)
5967{
5968 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10005969 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005970
5971 memset(bios, 0, sizeof(struct nvbios));
Ben Skeggsd9184fa2010-02-16 11:14:14 +10005972 mutex_init(&bios->lock);
Ben Skeggs6ee73862009-12-11 19:24:15 +10005973 bios->dev = dev;
5974
5975 if (!NVShadowVBIOS(dev, bios->data))
5976 return false;
5977
5978 bios->length = NV_PROM_SIZE;
5979 return true;
5980}
5981
5982static int nouveau_parse_vbios_struct(struct drm_device *dev)
5983{
5984 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10005985 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10005986 const uint8_t bit_signature[] = { 0xff, 0xb8, 'B', 'I', 'T' };
5987 const uint8_t bmp_signature[] = { 0xff, 0x7f, 'N', 'V', 0x0 };
5988 int offset;
5989
5990 offset = findstr(bios->data, bios->length,
5991 bit_signature, sizeof(bit_signature));
5992 if (offset) {
5993 NV_TRACE(dev, "BIT BIOS found\n");
5994 return parse_bit_structure(bios, offset + 6);
5995 }
5996
5997 offset = findstr(bios->data, bios->length,
5998 bmp_signature, sizeof(bmp_signature));
5999 if (offset) {
6000 NV_TRACE(dev, "BMP BIOS found\n");
6001 return parse_bmp_structure(dev, bios, offset);
6002 }
6003
6004 NV_ERROR(dev, "No known BIOS signature found\n");
6005 return -ENODEV;
6006}
6007
6008int
6009nouveau_run_vbios_init(struct drm_device *dev)
6010{
6011 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10006012 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10006013 int i, ret = 0;
6014
6015 NVLockVgaCrtcs(dev, false);
6016 if (nv_two_heads(dev))
6017 NVSetOwner(dev, bios->state.crtchead);
6018
6019 if (bios->major_version < 5) /* BMP only */
6020 load_nv17_hw_sequencer_ucode(dev, bios);
6021
6022 if (bios->execute) {
6023 bios->fp.last_script_invoc = 0;
6024 bios->fp.lvds_init_run = false;
6025 }
6026
6027 parse_init_tables(bios);
6028
6029 /*
6030 * Runs some additional script seen on G8x VBIOSen. The VBIOS'
6031 * parser will run this right after the init tables, the binary
6032 * driver appears to run it at some point later.
6033 */
6034 if (bios->some_script_ptr) {
6035 struct init_exec iexec = {true, false};
6036
6037 NV_INFO(dev, "Parsing VBIOS init table at offset 0x%04X\n",
6038 bios->some_script_ptr);
6039 parse_init_table(bios, bios->some_script_ptr, &iexec);
6040 }
6041
6042 if (dev_priv->card_type >= NV_50) {
Ben Skeggs7f245b22010-02-24 09:56:18 +10006043 for (i = 0; i < bios->dcb.entries; i++) {
Ben Skeggs6ee73862009-12-11 19:24:15 +10006044 nouveau_bios_run_display_table(dev,
Ben Skeggs7f245b22010-02-24 09:56:18 +10006045 &bios->dcb.entry[i],
Ben Skeggs6ee73862009-12-11 19:24:15 +10006046 0, 0);
6047 }
6048 }
6049
6050 NVLockVgaCrtcs(dev, true);
6051
6052 return ret;
6053}
6054
6055static void
6056nouveau_bios_i2c_devices_takedown(struct drm_device *dev)
6057{
6058 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10006059 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10006060 struct dcb_i2c_entry *entry;
6061 int i;
6062
Ben Skeggs7f245b22010-02-24 09:56:18 +10006063 entry = &bios->dcb.i2c[0];
Ben Skeggs6ee73862009-12-11 19:24:15 +10006064 for (i = 0; i < DCB_MAX_NUM_I2C_ENTRIES; i++, entry++)
6065 nouveau_i2c_fini(dev, entry);
6066}
6067
6068int
6069nouveau_bios_init(struct drm_device *dev)
6070{
6071 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs04a39c52010-02-24 10:03:05 +10006072 struct nvbios *bios = &dev_priv->vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +10006073 uint32_t saved_nv_pextdev_boot_0;
6074 bool was_locked;
6075 int ret;
6076
Ben Skeggs6ee73862009-12-11 19:24:15 +10006077 if (!NVInitVBIOS(dev))
6078 return -ENODEV;
6079
6080 ret = nouveau_parse_vbios_struct(dev);
6081 if (ret)
6082 return ret;
6083
6084 ret = parse_dcb_table(dev, bios, nv_two_heads(dev));
6085 if (ret)
6086 return ret;
6087
6088 fixup_legacy_i2c(bios);
6089 fixup_legacy_connector(bios);
6090
6091 if (!bios->major_version) /* we don't run version 0 bios */
6092 return 0;
6093
6094 /* these will need remembering across a suspend */
6095 saved_nv_pextdev_boot_0 = bios_rd32(bios, NV_PEXTDEV_BOOT_0);
6096 bios->state.saved_nv_pfb_cfg0 = bios_rd32(bios, NV_PFB_CFG0);
6097
6098 /* init script execution disabled */
6099 bios->execute = false;
6100
6101 /* ... unless card isn't POSTed already */
6102 if (dev_priv->card_type >= NV_10 &&
6103 NVReadVgaCrtc(dev, 0, 0x00) == 0 &&
6104 NVReadVgaCrtc(dev, 0, 0x1a) == 0) {
6105 NV_INFO(dev, "Adaptor not initialised\n");
6106 if (dev_priv->card_type < NV_50) {
6107 NV_ERROR(dev, "Unable to POST this chipset\n");
6108 return -ENODEV;
6109 }
6110
6111 NV_INFO(dev, "Running VBIOS init tables\n");
6112 bios->execute = true;
6113 }
6114
6115 bios_wr32(bios, NV_PEXTDEV_BOOT_0, saved_nv_pextdev_boot_0);
6116
6117 ret = nouveau_run_vbios_init(dev);
Ben Skeggs04a39c52010-02-24 10:03:05 +10006118 if (ret)
Ben Skeggs6ee73862009-12-11 19:24:15 +10006119 return ret;
Ben Skeggs6ee73862009-12-11 19:24:15 +10006120
6121 /* feature_byte on BMP is poor, but init always sets CR4B */
6122 was_locked = NVLockVgaCrtcs(dev, false);
6123 if (bios->major_version < 5)
6124 bios->is_mobile = NVReadVgaCrtc(dev, 0, NV_CIO_CRE_4B) & 0x40;
6125
6126 /* all BIT systems need p_f_m_t for digital_min_front_porch */
6127 if (bios->is_mobile || bios->major_version >= 5)
6128 ret = parse_fp_mode_table(dev, bios);
6129 NVLockVgaCrtcs(dev, was_locked);
6130
6131 /* allow subsequent scripts to execute */
6132 bios->execute = true;
6133
6134 return 0;
6135}
6136
6137void
6138nouveau_bios_takedown(struct drm_device *dev)
6139{
6140 nouveau_bios_i2c_devices_takedown(dev);
6141}