2 * Copyright 2005-2006 Erik Waling
3 * Copyright 2006 Stephane Marchesin
4 * Copyright 2007-2009 Stuart Bennett
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
26 #define NV_DEBUG_NOTRACE
27 #include "nouveau_drv.h"
28 #include "nouveau_hw.h"
29 #include "nouveau_encoder.h"
30 #include "nouveau_gpio.h"
32 #include <linux/io-mapping.h>
34 /* these defines are made up */
35 #define NV_CIO_CRE_44_HEADA 0x0
36 #define NV_CIO_CRE_44_HEADB 0x3
37 #define FEATURE_MOBILE 0x10 /* also FEATURE_QUADRO for BMP */
41 #define BIOSLOG(sip, fmt, arg...) NV_DEBUG(sip->dev, fmt, ##arg)
42 #define LOG_OLD_VALUE(x)
49 static bool nv_cksum(const uint8_t *data
, unsigned int length
)
52 * There's a few checksums in the BIOS, so here's a generic checking
58 for (i
= 0; i
< length
; i
++)
68 score_vbios(struct nvbios
*bios
, const bool writeable
)
70 if (!bios
->data
|| bios
->data
[0] != 0x55 || bios
->data
[1] != 0xAA) {
71 NV_TRACEWARN(bios
->dev
, "... BIOS signature not found\n");
75 if (nv_cksum(bios
->data
, bios
->data
[2] * 512)) {
76 NV_TRACEWARN(bios
->dev
, "... BIOS checksum invalid\n");
77 /* if a ro image is somewhat bad, it's probably all rubbish */
78 return writeable
? 2 : 1;
81 NV_TRACE(bios
->dev
, "... appears to be valid\n");
86 bios_shadow_prom(struct nvbios
*bios
)
88 struct drm_device
*dev
= bios
->dev
;
89 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
94 /* enable access to rom */
95 if (dev_priv
->card_type
>= NV_50
)
98 pcireg
= NV_PBUS_PCI_NV_20
;
99 access
= nv_mask(dev
, pcireg
, 0x00000001, 0x00000000);
101 /* bail if no rom signature, with a workaround for a PROM reading
102 * issue on some chipsets. the first read after a period of
103 * inactivity returns the wrong result, so retry the first header
104 * byte a few times before giving up as a workaround
108 if (nv_rd08(dev
, NV_PROM_OFFSET
+ 0) == 0x55)
112 if (!i
|| nv_rd08(dev
, NV_PROM_OFFSET
+ 1) != 0xaa)
115 /* additional check (see note below) - read PCI record header */
116 pcir
= nv_rd08(dev
, NV_PROM_OFFSET
+ 0x18) |
117 nv_rd08(dev
, NV_PROM_OFFSET
+ 0x19) << 8;
118 if (nv_rd08(dev
, NV_PROM_OFFSET
+ pcir
+ 0) != 'P' ||
119 nv_rd08(dev
, NV_PROM_OFFSET
+ pcir
+ 1) != 'C' ||
120 nv_rd08(dev
, NV_PROM_OFFSET
+ pcir
+ 2) != 'I' ||
121 nv_rd08(dev
, NV_PROM_OFFSET
+ pcir
+ 3) != 'R')
124 /* read entire bios image to system memory */
125 bios
->length
= nv_rd08(dev
, NV_PROM_OFFSET
+ 2) * 512;
126 bios
->data
= kmalloc(bios
->length
, GFP_KERNEL
);
128 for (i
= 0; i
< bios
->length
; i
++)
129 bios
->data
[i
] = nv_rd08(dev
, NV_PROM_OFFSET
+ i
);
133 /* disable access to rom */
134 nv_wr32(dev
, pcireg
, access
);
138 bios_shadow_pramin(struct nvbios
*bios
)
140 struct drm_device
*dev
= bios
->dev
;
141 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
145 if (dev_priv
->card_type
>= NV_50
) {
146 u64 addr
= (u64
)(nv_rd32(dev
, 0x619f04) & 0xffffff00) << 8;
148 addr
= (u64
)nv_rd32(dev
, 0x001700) << 16;
152 bar0
= nv_mask(dev
, 0x001700, 0xffffffff, addr
>> 16);
155 /* bail if no rom signature */
156 if (nv_rd08(dev
, NV_PRAMIN_OFFSET
+ 0) != 0x55 ||
157 nv_rd08(dev
, NV_PRAMIN_OFFSET
+ 1) != 0xaa)
160 bios
->length
= nv_rd08(dev
, NV_PRAMIN_OFFSET
+ 2) * 512;
161 bios
->data
= kmalloc(bios
->length
, GFP_KERNEL
);
163 for (i
= 0; i
< bios
->length
; i
++)
164 bios
->data
[i
] = nv_rd08(dev
, NV_PRAMIN_OFFSET
+ i
);
168 if (dev_priv
->card_type
>= NV_50
)
169 nv_wr32(dev
, 0x001700, bar0
);
173 bios_shadow_pci(struct nvbios
*bios
)
175 struct pci_dev
*pdev
= bios
->dev
->pdev
;
178 if (!pci_enable_rom(pdev
)) {
179 void __iomem
*rom
= pci_map_rom(pdev
, &length
);
181 bios
->data
= kmalloc(length
, GFP_KERNEL
);
183 memcpy_fromio(bios
->data
, rom
, length
);
184 bios
->length
= length
;
188 pci_unmap_rom(pdev
, rom
);
190 pci_disable_rom(pdev
);
195 bios_shadow_acpi(struct nvbios
*bios
)
197 struct pci_dev
*pdev
= bios
->dev
->pdev
;
201 if (!nouveau_acpi_rom_supported(pdev
))
204 ret
= nouveau_acpi_get_bios_chunk(data
, 0, sizeof(data
));
205 if (ret
!= sizeof(data
))
208 bios
->length
= min(data
[2] * 512, 65536);
209 bios
->data
= kmalloc(bios
->length
, GFP_KERNEL
);
216 int size
= (len
> ROM_BIOS_PAGE
) ? ROM_BIOS_PAGE
: len
;
218 ret
= nouveau_acpi_get_bios_chunk(bios
->data
, ptr
, size
);
232 void (*shadow
)(struct nvbios
*);
240 bios_shadow(struct drm_device
*dev
)
242 struct methods shadow_methods
[] = {
243 { "PRAMIN", bios_shadow_pramin
, true, 0, 0, NULL
},
244 { "PROM", bios_shadow_prom
, false, 0, 0, NULL
},
245 { "ACPI", bios_shadow_acpi
, true, 0, 0, NULL
},
246 { "PCIROM", bios_shadow_pci
, true, 0, 0, NULL
},
249 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
250 struct nvbios
*bios
= &dev_priv
->vbios
;
251 struct methods
*mthd
, *best
;
254 mthd
= shadow_methods
;
256 if (strcasecmp(nouveau_vbios
, mthd
->desc
))
258 NV_INFO(dev
, "VBIOS source: %s\n", mthd
->desc
);
261 mthd
->score
= score_vbios(bios
, mthd
->rw
);
264 } while ((++mthd
)->shadow
);
266 NV_ERROR(dev
, "VBIOS source \'%s\' invalid\n", nouveau_vbios
);
269 mthd
= shadow_methods
;
271 NV_TRACE(dev
, "Checking %s for VBIOS\n", mthd
->desc
);
273 mthd
->score
= score_vbios(bios
, mthd
->rw
);
274 mthd
->size
= bios
->length
;
275 mthd
->data
= bios
->data
;
276 } while (mthd
->score
!= 3 && (++mthd
)->shadow
);
278 mthd
= shadow_methods
;
281 if (mthd
->score
> best
->score
) {
285 } while ((++mthd
)->shadow
);
288 NV_TRACE(dev
, "Using VBIOS from %s\n", best
->desc
);
289 bios
->length
= best
->size
;
290 bios
->data
= best
->data
;
294 NV_ERROR(dev
, "No valid VBIOS image found\n");
298 struct init_tbl_entry
{
302 * > 0: success, length of opcode
303 * 0: success, but abort further parsing of table (INIT_DONE etc)
304 * < 0: failure, table parsing will be aborted
306 int (*handler
)(struct nvbios
*, uint16_t, struct init_exec
*);
309 static int parse_init_table(struct nvbios
*, uint16_t, struct init_exec
*);
311 #define MACRO_INDEX_SIZE 2
313 #define CONDITION_SIZE 12
314 #define IO_FLAG_CONDITION_SIZE 9
315 #define IO_CONDITION_SIZE 5
316 #define MEM_INIT_SIZE 66
318 static void still_alive(void)
327 munge_reg(struct nvbios
*bios
, uint32_t reg
)
329 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
330 struct dcb_entry
*dcbent
= bios
->display
.output
;
332 if (dev_priv
->card_type
< NV_50
)
335 if (reg
& 0x80000000) {
336 BUG_ON(bios
->display
.crtc
< 0);
337 reg
+= bios
->display
.crtc
* 0x800;
340 if (reg
& 0x40000000) {
343 reg
+= (ffs(dcbent
->or) - 1) * 0x800;
344 if ((reg
& 0x20000000) && !(dcbent
->sorconf
.link
& 1))
353 valid_reg(struct nvbios
*bios
, uint32_t reg
)
355 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
356 struct drm_device
*dev
= bios
->dev
;
358 /* C51 has misaligned regs on purpose. Marvellous */
360 (reg
& 0x1 && dev_priv
->vbios
.chip_version
!= 0x51))
361 NV_ERROR(dev
, "======= misaligned reg 0x%08X =======\n", reg
);
363 /* warn on C51 regs that haven't been verified accessible in tracing */
364 if (reg
& 0x1 && dev_priv
->vbios
.chip_version
== 0x51 &&
365 reg
!= 0x130d && reg
!= 0x1311 && reg
!= 0x60081d)
366 NV_WARN(dev
, "=== C51 misaligned reg 0x%08X not verified ===\n",
369 if (reg
>= (8*1024*1024)) {
370 NV_ERROR(dev
, "=== reg 0x%08x out of mapped bounds ===\n", reg
);
378 valid_idx_port(struct nvbios
*bios
, uint16_t port
)
380 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
381 struct drm_device
*dev
= bios
->dev
;
384 * If adding more ports here, the read/write functions below will need
385 * updating so that the correct mmio range (PRMCIO, PRMDIO, PRMVIO) is
386 * used for the port in question
388 if (dev_priv
->card_type
< NV_50
) {
389 if (port
== NV_CIO_CRX__COLOR
)
391 if (port
== NV_VIO_SRX
)
394 if (port
== NV_CIO_CRX__COLOR
)
398 NV_ERROR(dev
, "========== unknown indexed io port 0x%04X ==========\n",
405 valid_port(struct nvbios
*bios
, uint16_t port
)
407 struct drm_device
*dev
= bios
->dev
;
410 * If adding more ports here, the read/write functions below will need
411 * updating so that the correct mmio range (PRMCIO, PRMDIO, PRMVIO) is
412 * used for the port in question
414 if (port
== NV_VIO_VSE2
)
417 NV_ERROR(dev
, "========== unknown io port 0x%04X ==========\n", port
);
423 bios_rd32(struct nvbios
*bios
, uint32_t reg
)
427 reg
= munge_reg(bios
, reg
);
428 if (!valid_reg(bios
, reg
))
432 * C51 sometimes uses regs with bit0 set in the address. For these
433 * cases there should exist a translation in a BIOS table to an IO
434 * port address which the BIOS uses for accessing the reg
436 * These only seem to appear for the power control regs to a flat panel,
437 * and the GPIO regs at 0x60081*. In C51 mmio traces the normal regs
438 * for 0x1308 and 0x1310 are used - hence the mask below. An S3
439 * suspend-resume mmio trace from a C51 will be required to see if this
440 * is true for the power microcode in 0x14.., or whether the direct IO
441 * port access method is needed
446 data
= nv_rd32(bios
->dev
, reg
);
448 BIOSLOG(bios
, " Read: Reg: 0x%08X, Data: 0x%08X\n", reg
, data
);
454 bios_wr32(struct nvbios
*bios
, uint32_t reg
, uint32_t data
)
456 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
458 reg
= munge_reg(bios
, reg
);
459 if (!valid_reg(bios
, reg
))
462 /* see note in bios_rd32 */
466 LOG_OLD_VALUE(bios_rd32(bios
, reg
));
467 BIOSLOG(bios
, " Write: Reg: 0x%08X, Data: 0x%08X\n", reg
, data
);
469 if (dev_priv
->vbios
.execute
) {
471 nv_wr32(bios
->dev
, reg
, data
);
476 bios_idxprt_rd(struct nvbios
*bios
, uint16_t port
, uint8_t index
)
478 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
479 struct drm_device
*dev
= bios
->dev
;
482 if (!valid_idx_port(bios
, port
))
485 if (dev_priv
->card_type
< NV_50
) {
486 if (port
== NV_VIO_SRX
)
487 data
= NVReadVgaSeq(dev
, bios
->state
.crtchead
, index
);
488 else /* assume NV_CIO_CRX__COLOR */
489 data
= NVReadVgaCrtc(dev
, bios
->state
.crtchead
, index
);
493 data32
= bios_rd32(bios
, NV50_PDISPLAY_VGACRTC(index
& ~3));
494 data
= (data32
>> ((index
& 3) << 3)) & 0xff;
497 BIOSLOG(bios
, " Indexed IO read: Port: 0x%04X, Index: 0x%02X, "
498 "Head: 0x%02X, Data: 0x%02X\n",
499 port
, index
, bios
->state
.crtchead
, data
);
504 bios_idxprt_wr(struct nvbios
*bios
, uint16_t port
, uint8_t index
, uint8_t data
)
506 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
507 struct drm_device
*dev
= bios
->dev
;
509 if (!valid_idx_port(bios
, port
))
513 * The current head is maintained in the nvbios member state.crtchead.
514 * We trap changes to CR44 and update the head variable and hence the
515 * register set written.
516 * As CR44 only exists on CRTC0, we update crtchead to head0 in advance
517 * of the write, and to head1 after the write
519 if (port
== NV_CIO_CRX__COLOR
&& index
== NV_CIO_CRE_44
&&
520 data
!= NV_CIO_CRE_44_HEADB
)
521 bios
->state
.crtchead
= 0;
523 LOG_OLD_VALUE(bios_idxprt_rd(bios
, port
, index
));
524 BIOSLOG(bios
, " Indexed IO write: Port: 0x%04X, Index: 0x%02X, "
525 "Head: 0x%02X, Data: 0x%02X\n",
526 port
, index
, bios
->state
.crtchead
, data
);
528 if (bios
->execute
&& dev_priv
->card_type
< NV_50
) {
530 if (port
== NV_VIO_SRX
)
531 NVWriteVgaSeq(dev
, bios
->state
.crtchead
, index
, data
);
532 else /* assume NV_CIO_CRX__COLOR */
533 NVWriteVgaCrtc(dev
, bios
->state
.crtchead
, index
, data
);
536 uint32_t data32
, shift
= (index
& 3) << 3;
540 data32
= bios_rd32(bios
, NV50_PDISPLAY_VGACRTC(index
& ~3));
541 data32
&= ~(0xff << shift
);
542 data32
|= (data
<< shift
);
543 bios_wr32(bios
, NV50_PDISPLAY_VGACRTC(index
& ~3), data32
);
546 if (port
== NV_CIO_CRX__COLOR
&&
547 index
== NV_CIO_CRE_44
&& data
== NV_CIO_CRE_44_HEADB
)
548 bios
->state
.crtchead
= 1;
552 bios_port_rd(struct nvbios
*bios
, uint16_t port
)
554 uint8_t data
, head
= bios
->state
.crtchead
;
556 if (!valid_port(bios
, port
))
559 data
= NVReadPRMVIO(bios
->dev
, head
, NV_PRMVIO0_OFFSET
+ port
);
561 BIOSLOG(bios
, " IO read: Port: 0x%04X, Head: 0x%02X, Data: 0x%02X\n",
568 bios_port_wr(struct nvbios
*bios
, uint16_t port
, uint8_t data
)
570 int head
= bios
->state
.crtchead
;
572 if (!valid_port(bios
, port
))
575 LOG_OLD_VALUE(bios_port_rd(bios
, port
));
576 BIOSLOG(bios
, " IO write: Port: 0x%04X, Head: 0x%02X, Data: 0x%02X\n",
583 NVWritePRMVIO(bios
->dev
, head
, NV_PRMVIO0_OFFSET
+ port
, data
);
587 io_flag_condition_met(struct nvbios
*bios
, uint16_t offset
, uint8_t cond
)
590 * The IO flag condition entry has 2 bytes for the CRTC port; 1 byte
591 * for the CRTC index; 1 byte for the mask to apply to the value
592 * retrieved from the CRTC; 1 byte for the shift right to apply to the
593 * masked CRTC value; 2 bytes for the offset to the flag array, to
594 * which the shifted value is added; 1 byte for the mask applied to the
595 * value read from the flag array; and 1 byte for the value to compare
596 * against the masked byte from the flag table.
599 uint16_t condptr
= bios
->io_flag_condition_tbl_ptr
+ cond
* IO_FLAG_CONDITION_SIZE
;
600 uint16_t crtcport
= ROM16(bios
->data
[condptr
]);
601 uint8_t crtcindex
= bios
->data
[condptr
+ 2];
602 uint8_t mask
= bios
->data
[condptr
+ 3];
603 uint8_t shift
= bios
->data
[condptr
+ 4];
604 uint16_t flagarray
= ROM16(bios
->data
[condptr
+ 5]);
605 uint8_t flagarraymask
= bios
->data
[condptr
+ 7];
606 uint8_t cmpval
= bios
->data
[condptr
+ 8];
609 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
610 "Shift: 0x%02X, FlagArray: 0x%04X, FAMask: 0x%02X, "
612 offset
, crtcport
, crtcindex
, mask
, shift
, flagarray
, flagarraymask
, cmpval
);
614 data
= bios_idxprt_rd(bios
, crtcport
, crtcindex
);
616 data
= bios
->data
[flagarray
+ ((data
& mask
) >> shift
)];
617 data
&= flagarraymask
;
619 BIOSLOG(bios
, "0x%04X: Checking if 0x%02X equals 0x%02X\n",
620 offset
, data
, cmpval
);
622 return (data
== cmpval
);
626 bios_condition_met(struct nvbios
*bios
, uint16_t offset
, uint8_t cond
)
629 * The condition table entry has 4 bytes for the address of the
630 * register to check, 4 bytes for a mask to apply to the register and
631 * 4 for a test comparison value
634 uint16_t condptr
= bios
->condition_tbl_ptr
+ cond
* CONDITION_SIZE
;
635 uint32_t reg
= ROM32(bios
->data
[condptr
]);
636 uint32_t mask
= ROM32(bios
->data
[condptr
+ 4]);
637 uint32_t cmpval
= ROM32(bios
->data
[condptr
+ 8]);
640 BIOSLOG(bios
, "0x%04X: Cond: 0x%02X, Reg: 0x%08X, Mask: 0x%08X\n",
641 offset
, cond
, reg
, mask
);
643 data
= bios_rd32(bios
, reg
) & mask
;
645 BIOSLOG(bios
, "0x%04X: Checking if 0x%08X equals 0x%08X\n",
646 offset
, data
, cmpval
);
648 return (data
== cmpval
);
652 io_condition_met(struct nvbios
*bios
, uint16_t offset
, uint8_t cond
)
655 * The IO condition entry has 2 bytes for the IO port address; 1 byte
656 * for the index to write to io_port; 1 byte for the mask to apply to
657 * the byte read from io_port+1; and 1 byte for the value to compare
658 * against the masked byte.
661 uint16_t condptr
= bios
->io_condition_tbl_ptr
+ cond
* IO_CONDITION_SIZE
;
662 uint16_t io_port
= ROM16(bios
->data
[condptr
]);
663 uint8_t port_index
= bios
->data
[condptr
+ 2];
664 uint8_t mask
= bios
->data
[condptr
+ 3];
665 uint8_t cmpval
= bios
->data
[condptr
+ 4];
667 uint8_t data
= bios_idxprt_rd(bios
, io_port
, port_index
) & mask
;
669 BIOSLOG(bios
, "0x%04X: Checking if 0x%02X equals 0x%02X\n",
670 offset
, data
, cmpval
);
672 return (data
== cmpval
);
676 nv50_pll_set(struct drm_device
*dev
, uint32_t reg
, uint32_t clk
)
678 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
679 struct nouveau_pll_vals pll
;
680 struct pll_lims pll_limits
;
681 u32 ctrl
, mask
, coef
;
684 ret
= get_pll_limits(dev
, reg
, &pll_limits
);
688 clk
= nouveau_calc_pll_mnp(dev
, &pll_limits
, clk
, &pll
);
692 coef
= pll
.N1
<< 8 | pll
.M1
;
693 ctrl
= pll
.log2P
<< 16;
695 if (reg
== 0x004008) {
697 ctrl
|= (pll_limits
.log2p_bias
<< 19);
698 ctrl
|= (pll
.log2P
<< 22);
701 if (!dev_priv
->vbios
.execute
)
704 nv_mask(dev
, reg
+ 0, mask
, ctrl
);
705 nv_wr32(dev
, reg
+ 4, coef
);
710 setPLL(struct nvbios
*bios
, uint32_t reg
, uint32_t clk
)
712 struct drm_device
*dev
= bios
->dev
;
713 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
715 struct pll_lims pll_lim
;
716 struct nouveau_pll_vals pllvals
;
719 if (dev_priv
->card_type
>= NV_50
)
720 return nv50_pll_set(dev
, reg
, clk
);
722 /* high regs (such as in the mac g5 table) are not -= 4 */
723 ret
= get_pll_limits(dev
, reg
> 0x405c ? reg
: reg
- 4, &pll_lim
);
727 clk
= nouveau_calc_pll_mnp(dev
, &pll_lim
, clk
, &pllvals
);
733 nouveau_hw_setpll(dev
, reg
, &pllvals
);
739 static int dcb_entry_idx_from_crtchead(struct drm_device
*dev
)
741 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
742 struct nvbios
*bios
= &dev_priv
->vbios
;
745 * For the results of this function to be correct, CR44 must have been
746 * set (using bios_idxprt_wr to set crtchead), CR58 set for CR57 = 0,
747 * and the DCB table parsed, before the script calling the function is
748 * run. run_digital_op_script is example of how to do such setup
751 uint8_t dcb_entry
= NVReadVgaCrtc5758(dev
, bios
->state
.crtchead
, 0);
753 if (dcb_entry
> bios
->dcb
.entries
) {
754 NV_ERROR(dev
, "CR58 doesn't have a valid DCB entry currently "
755 "(%02X)\n", dcb_entry
);
756 dcb_entry
= 0x7f; /* unused / invalid marker */
762 static struct nouveau_i2c_chan
*
763 init_i2c_device_find(struct drm_device
*dev
, int i2c_index
)
765 if (i2c_index
== 0xff) {
766 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
767 struct dcb_table
*dcb
= &dev_priv
->vbios
.dcb
;
768 /* note: dcb_entry_idx_from_crtchead needs pre-script set-up */
769 int idx
= dcb_entry_idx_from_crtchead(dev
);
771 i2c_index
= NV_I2C_DEFAULT(0);
772 if (idx
!= 0x7f && dcb
->entry
[idx
].i2c_upper_default
)
773 i2c_index
= NV_I2C_DEFAULT(1);
776 return nouveau_i2c_find(dev
, i2c_index
);
780 get_tmds_index_reg(struct drm_device
*dev
, uint8_t mlv
)
783 * For mlv < 0x80, it is an index into a table of TMDS base addresses.
784 * For mlv == 0x80 use the "or" value of the dcb_entry indexed by
785 * CR58 for CR57 = 0 to index a table of offsets to the basic
787 * For mlv == 0x81 use the "or" value of the dcb_entry indexed by
788 * CR58 for CR57 = 0 to index a table of offsets to the basic
789 * 0x6808b0 address, and then flip the offset by 8.
792 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
793 struct nvbios
*bios
= &dev_priv
->vbios
;
794 const int pramdac_offset
[13] = {
795 0, 0, 0x8, 0, 0x2000, 0, 0, 0, 0x2008, 0, 0, 0, 0x2000 };
796 const uint32_t pramdac_table
[4] = {
797 0x6808b0, 0x6808b8, 0x6828b0, 0x6828b8 };
800 int dcb_entry
, dacoffset
;
802 /* note: dcb_entry_idx_from_crtchead needs pre-script set-up */
803 dcb_entry
= dcb_entry_idx_from_crtchead(dev
);
804 if (dcb_entry
== 0x7f)
806 dacoffset
= pramdac_offset
[bios
->dcb
.entry
[dcb_entry
].or];
809 return 0x6808b0 + dacoffset
;
811 if (mlv
>= ARRAY_SIZE(pramdac_table
)) {
812 NV_ERROR(dev
, "Magic Lookup Value too big (%02X)\n",
816 return pramdac_table
[mlv
];
821 init_io_restrict_prog(struct nvbios
*bios
, uint16_t offset
,
822 struct init_exec
*iexec
)
825 * INIT_IO_RESTRICT_PROG opcode: 0x32 ('2')
827 * offset (8 bit): opcode
828 * offset + 1 (16 bit): CRTC port
829 * offset + 3 (8 bit): CRTC index
830 * offset + 4 (8 bit): mask
831 * offset + 5 (8 bit): shift
832 * offset + 6 (8 bit): count
833 * offset + 7 (32 bit): register
834 * offset + 11 (32 bit): configuration 1
837 * Starting at offset + 11 there are "count" 32 bit values.
838 * To find out which value to use read index "CRTC index" on "CRTC
839 * port", AND this value with "mask" and then bit shift right "shift"
840 * bits. Read the appropriate value using this index and write to
844 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
845 uint8_t crtcindex
= bios
->data
[offset
+ 3];
846 uint8_t mask
= bios
->data
[offset
+ 4];
847 uint8_t shift
= bios
->data
[offset
+ 5];
848 uint8_t count
= bios
->data
[offset
+ 6];
849 uint32_t reg
= ROM32(bios
->data
[offset
+ 7]);
852 int len
= 11 + count
* 4;
857 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
858 "Shift: 0x%02X, Count: 0x%02X, Reg: 0x%08X\n",
859 offset
, crtcport
, crtcindex
, mask
, shift
, count
, reg
);
861 config
= (bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
) >> shift
;
862 if (config
> count
) {
864 "0x%04X: Config 0x%02X exceeds maximal bound 0x%02X\n",
865 offset
, config
, count
);
869 configval
= ROM32(bios
->data
[offset
+ 11 + config
* 4]);
871 BIOSLOG(bios
, "0x%04X: Writing config %02X\n", offset
, config
);
873 bios_wr32(bios
, reg
, configval
);
879 init_repeat(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
882 * INIT_REPEAT opcode: 0x33 ('3')
884 * offset (8 bit): opcode
885 * offset + 1 (8 bit): count
887 * Execute script following this opcode up to INIT_REPEAT_END
891 uint8_t count
= bios
->data
[offset
+ 1];
894 /* no iexec->execute check by design */
896 BIOSLOG(bios
, "0x%04X: Repeating following segment %d times\n",
899 iexec
->repeat
= true;
902 * count - 1, as the script block will execute once when we leave this
903 * opcode -- this is compatible with bios behaviour as:
904 * a) the block is always executed at least once, even if count == 0
905 * b) the bios interpreter skips to the op following INIT_END_REPEAT,
908 for (i
= 0; i
< count
- 1; i
++)
909 parse_init_table(bios
, offset
+ 2, iexec
);
911 iexec
->repeat
= false;
917 init_io_restrict_pll(struct nvbios
*bios
, uint16_t offset
,
918 struct init_exec
*iexec
)
921 * INIT_IO_RESTRICT_PLL opcode: 0x34 ('4')
923 * offset (8 bit): opcode
924 * offset + 1 (16 bit): CRTC port
925 * offset + 3 (8 bit): CRTC index
926 * offset + 4 (8 bit): mask
927 * offset + 5 (8 bit): shift
928 * offset + 6 (8 bit): IO flag condition index
929 * offset + 7 (8 bit): count
930 * offset + 8 (32 bit): register
931 * offset + 12 (16 bit): frequency 1
934 * Starting at offset + 12 there are "count" 16 bit frequencies (10kHz).
935 * Set PLL register "register" to coefficients for frequency n,
936 * selected by reading index "CRTC index" of "CRTC port" ANDed with
937 * "mask" and shifted right by "shift".
939 * If "IO flag condition index" > 0, and condition met, double
940 * frequency before setting it.
943 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
944 uint8_t crtcindex
= bios
->data
[offset
+ 3];
945 uint8_t mask
= bios
->data
[offset
+ 4];
946 uint8_t shift
= bios
->data
[offset
+ 5];
947 int8_t io_flag_condition_idx
= bios
->data
[offset
+ 6];
948 uint8_t count
= bios
->data
[offset
+ 7];
949 uint32_t reg
= ROM32(bios
->data
[offset
+ 8]);
952 int len
= 12 + count
* 2;
957 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
958 "Shift: 0x%02X, IO Flag Condition: 0x%02X, "
959 "Count: 0x%02X, Reg: 0x%08X\n",
960 offset
, crtcport
, crtcindex
, mask
, shift
,
961 io_flag_condition_idx
, count
, reg
);
963 config
= (bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
) >> shift
;
964 if (config
> count
) {
966 "0x%04X: Config 0x%02X exceeds maximal bound 0x%02X\n",
967 offset
, config
, count
);
971 freq
= ROM16(bios
->data
[offset
+ 12 + config
* 2]);
973 if (io_flag_condition_idx
> 0) {
974 if (io_flag_condition_met(bios
, offset
, io_flag_condition_idx
)) {
975 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- "
976 "frequency doubled\n", offset
);
979 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- "
980 "frequency unchanged\n", offset
);
983 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Config: 0x%02X, Freq: %d0kHz\n",
984 offset
, reg
, config
, freq
);
986 setPLL(bios
, reg
, freq
* 10);
992 init_end_repeat(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
995 * INIT_END_REPEAT opcode: 0x36 ('6')
997 * offset (8 bit): opcode
999 * Marks the end of the block for INIT_REPEAT to repeat
1002 /* no iexec->execute check by design */
1005 * iexec->repeat flag necessary to go past INIT_END_REPEAT opcode when
1006 * we're not in repeat mode
1015 init_copy(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1018 * INIT_COPY opcode: 0x37 ('7')
1020 * offset (8 bit): opcode
1021 * offset + 1 (32 bit): register
1022 * offset + 5 (8 bit): shift
1023 * offset + 6 (8 bit): srcmask
1024 * offset + 7 (16 bit): CRTC port
1025 * offset + 9 (8 bit): CRTC index
1026 * offset + 10 (8 bit): mask
1028 * Read index "CRTC index" on "CRTC port", AND with "mask", OR with
1029 * (REGVAL("register") >> "shift" & "srcmask") and write-back to CRTC
1033 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
1034 uint8_t shift
= bios
->data
[offset
+ 5];
1035 uint8_t srcmask
= bios
->data
[offset
+ 6];
1036 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 7]);
1037 uint8_t crtcindex
= bios
->data
[offset
+ 9];
1038 uint8_t mask
= bios
->data
[offset
+ 10];
1042 if (!iexec
->execute
)
1045 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Shift: 0x%02X, SrcMask: 0x%02X, "
1046 "Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X\n",
1047 offset
, reg
, shift
, srcmask
, crtcport
, crtcindex
, mask
);
1049 data
= bios_rd32(bios
, reg
);
1054 data
<<= (0x100 - shift
);
1058 crtcdata
= bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
;
1059 crtcdata
|= (uint8_t)data
;
1060 bios_idxprt_wr(bios
, crtcport
, crtcindex
, crtcdata
);
1066 init_not(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1069 * INIT_NOT opcode: 0x38 ('8')
1071 * offset (8 bit): opcode
1073 * Invert the current execute / no-execute condition (i.e. "else")
1076 BIOSLOG(bios
, "0x%04X: ------ Skipping following commands ------\n", offset
);
1078 BIOSLOG(bios
, "0x%04X: ------ Executing following commands ------\n", offset
);
1080 iexec
->execute
= !iexec
->execute
;
1085 init_io_flag_condition(struct nvbios
*bios
, uint16_t offset
,
1086 struct init_exec
*iexec
)
1089 * INIT_IO_FLAG_CONDITION opcode: 0x39 ('9')
1091 * offset (8 bit): opcode
1092 * offset + 1 (8 bit): condition number
1094 * Check condition "condition number" in the IO flag condition table.
1095 * If condition not met skip subsequent opcodes until condition is
1096 * inverted (INIT_NOT), or we hit INIT_RESUME
1099 uint8_t cond
= bios
->data
[offset
+ 1];
1101 if (!iexec
->execute
)
1104 if (io_flag_condition_met(bios
, offset
, cond
))
1105 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- continuing to execute\n", offset
);
1107 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset
);
1108 iexec
->execute
= false;
1115 init_dp_condition(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1118 * INIT_DP_CONDITION opcode: 0x3A ('')
1120 * offset (8 bit): opcode
1121 * offset + 1 (8 bit): "sub" opcode
1122 * offset + 2 (8 bit): unknown
1126 struct dcb_entry
*dcb
= bios
->display
.output
;
1127 struct drm_device
*dev
= bios
->dev
;
1128 uint8_t cond
= bios
->data
[offset
+ 1];
1129 uint8_t *table
, *entry
;
1131 BIOSLOG(bios
, "0x%04X: subop 0x%02X\n", offset
, cond
);
1133 if (!iexec
->execute
)
1136 table
= nouveau_dp_bios_data(dev
, dcb
, &entry
);
1142 entry
= dcb_conn(dev
, dcb
->connector
);
1143 if (!entry
|| entry
[0] != DCB_CONNECTOR_eDP
)
1144 iexec
->execute
= false;
1148 if ((table
[0] < 0x40 && !(entry
[5] & cond
)) ||
1149 (table
[0] == 0x40 && !(entry
[4] & cond
)))
1150 iexec
->execute
= false;
1154 struct nouveau_i2c_chan
*auxch
;
1157 auxch
= nouveau_i2c_find(dev
, bios
->display
.output
->i2c_index
);
1159 NV_ERROR(dev
, "0x%04X: couldn't get auxch\n", offset
);
1163 ret
= nouveau_dp_auxch(auxch
, 9, 0xd, &cond
, 1);
1165 NV_ERROR(dev
, "0x%04X: auxch rd fail: %d\n", offset
, ret
);
1170 iexec
->execute
= false;
1174 NV_WARN(dev
, "0x%04X: unknown INIT_3A op: %d\n", offset
, cond
);
1179 BIOSLOG(bios
, "0x%04X: continuing to execute\n", offset
);
1181 BIOSLOG(bios
, "0x%04X: skipping following commands\n", offset
);
1187 init_op_3b(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1190 * INIT_3B opcode: 0x3B ('')
1192 * offset (8 bit): opcode
1193 * offset + 1 (8 bit): crtc index
1197 uint8_t or = ffs(bios
->display
.output
->or) - 1;
1198 uint8_t index
= bios
->data
[offset
+ 1];
1201 if (!iexec
->execute
)
1204 data
= bios_idxprt_rd(bios
, 0x3d4, index
);
1205 bios_idxprt_wr(bios
, 0x3d4, index
, data
& ~(1 << or));
1210 init_op_3c(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1213 * INIT_3C opcode: 0x3C ('')
1215 * offset (8 bit): opcode
1216 * offset + 1 (8 bit): crtc index
1220 uint8_t or = ffs(bios
->display
.output
->or) - 1;
1221 uint8_t index
= bios
->data
[offset
+ 1];
1224 if (!iexec
->execute
)
1227 data
= bios_idxprt_rd(bios
, 0x3d4, index
);
1228 bios_idxprt_wr(bios
, 0x3d4, index
, data
| (1 << or));
1233 init_idx_addr_latched(struct nvbios
*bios
, uint16_t offset
,
1234 struct init_exec
*iexec
)
1237 * INIT_INDEX_ADDRESS_LATCHED opcode: 0x49 ('I')
1239 * offset (8 bit): opcode
1240 * offset + 1 (32 bit): control register
1241 * offset + 5 (32 bit): data register
1242 * offset + 9 (32 bit): mask
1243 * offset + 13 (32 bit): data
1244 * offset + 17 (8 bit): count
1245 * offset + 18 (8 bit): address 1
1246 * offset + 19 (8 bit): data 1
1249 * For each of "count" address and data pairs, write "data n" to
1250 * "data register", read the current value of "control register",
1251 * and write it back once ANDed with "mask", ORed with "data",
1252 * and ORed with "address n"
1255 uint32_t controlreg
= ROM32(bios
->data
[offset
+ 1]);
1256 uint32_t datareg
= ROM32(bios
->data
[offset
+ 5]);
1257 uint32_t mask
= ROM32(bios
->data
[offset
+ 9]);
1258 uint32_t data
= ROM32(bios
->data
[offset
+ 13]);
1259 uint8_t count
= bios
->data
[offset
+ 17];
1260 int len
= 18 + count
* 2;
1264 if (!iexec
->execute
)
1267 BIOSLOG(bios
, "0x%04X: ControlReg: 0x%08X, DataReg: 0x%08X, "
1268 "Mask: 0x%08X, Data: 0x%08X, Count: 0x%02X\n",
1269 offset
, controlreg
, datareg
, mask
, data
, count
);
1271 for (i
= 0; i
< count
; i
++) {
1272 uint8_t instaddress
= bios
->data
[offset
+ 18 + i
* 2];
1273 uint8_t instdata
= bios
->data
[offset
+ 19 + i
* 2];
1275 BIOSLOG(bios
, "0x%04X: Address: 0x%02X, Data: 0x%02X\n",
1276 offset
, instaddress
, instdata
);
1278 bios_wr32(bios
, datareg
, instdata
);
1279 value
= bios_rd32(bios
, controlreg
) & mask
;
1281 value
|= instaddress
;
1282 bios_wr32(bios
, controlreg
, value
);
1289 init_io_restrict_pll2(struct nvbios
*bios
, uint16_t offset
,
1290 struct init_exec
*iexec
)
1293 * INIT_IO_RESTRICT_PLL2 opcode: 0x4A ('J')
1295 * offset (8 bit): opcode
1296 * offset + 1 (16 bit): CRTC port
1297 * offset + 3 (8 bit): CRTC index
1298 * offset + 4 (8 bit): mask
1299 * offset + 5 (8 bit): shift
1300 * offset + 6 (8 bit): count
1301 * offset + 7 (32 bit): register
1302 * offset + 11 (32 bit): frequency 1
1305 * Starting at offset + 11 there are "count" 32 bit frequencies (kHz).
1306 * Set PLL register "register" to coefficients for frequency n,
1307 * selected by reading index "CRTC index" of "CRTC port" ANDed with
1308 * "mask" and shifted right by "shift".
1311 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
1312 uint8_t crtcindex
= bios
->data
[offset
+ 3];
1313 uint8_t mask
= bios
->data
[offset
+ 4];
1314 uint8_t shift
= bios
->data
[offset
+ 5];
1315 uint8_t count
= bios
->data
[offset
+ 6];
1316 uint32_t reg
= ROM32(bios
->data
[offset
+ 7]);
1317 int len
= 11 + count
* 4;
1321 if (!iexec
->execute
)
1324 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
1325 "Shift: 0x%02X, Count: 0x%02X, Reg: 0x%08X\n",
1326 offset
, crtcport
, crtcindex
, mask
, shift
, count
, reg
);
1331 config
= (bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
) >> shift
;
1332 if (config
> count
) {
1334 "0x%04X: Config 0x%02X exceeds maximal bound 0x%02X\n",
1335 offset
, config
, count
);
1339 freq
= ROM32(bios
->data
[offset
+ 11 + config
* 4]);
1341 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Config: 0x%02X, Freq: %dkHz\n",
1342 offset
, reg
, config
, freq
);
1344 setPLL(bios
, reg
, freq
);
1350 init_pll2(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1353 * INIT_PLL2 opcode: 0x4B ('K')
1355 * offset (8 bit): opcode
1356 * offset + 1 (32 bit): register
1357 * offset + 5 (32 bit): freq
1359 * Set PLL register "register" to coefficients for frequency "freq"
1362 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
1363 uint32_t freq
= ROM32(bios
->data
[offset
+ 5]);
1365 if (!iexec
->execute
)
1368 BIOSLOG(bios
, "0x%04X: Reg: 0x%04X, Freq: %dkHz\n",
1371 setPLL(bios
, reg
, freq
);
1376 init_i2c_byte(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1379 * INIT_I2C_BYTE opcode: 0x4C ('L')
1381 * offset (8 bit): opcode
1382 * offset + 1 (8 bit): DCB I2C table entry index
1383 * offset + 2 (8 bit): I2C slave address
1384 * offset + 3 (8 bit): count
1385 * offset + 4 (8 bit): I2C register 1
1386 * offset + 5 (8 bit): mask 1
1387 * offset + 6 (8 bit): data 1
1390 * For each of "count" registers given by "I2C register n" on the device
1391 * addressed by "I2C slave address" on the I2C bus given by
1392 * "DCB I2C table entry index", read the register, AND the result with
1393 * "mask n" and OR it with "data n" before writing it back to the device
1396 struct drm_device
*dev
= bios
->dev
;
1397 uint8_t i2c_index
= bios
->data
[offset
+ 1];
1398 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
1399 uint8_t count
= bios
->data
[offset
+ 3];
1400 struct nouveau_i2c_chan
*chan
;
1401 int len
= 4 + count
* 3;
1404 if (!iexec
->execute
)
1407 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X, "
1409 offset
, i2c_index
, i2c_address
, count
);
1411 chan
= init_i2c_device_find(dev
, i2c_index
);
1413 NV_ERROR(dev
, "0x%04X: i2c bus not found\n", offset
);
1417 for (i
= 0; i
< count
; i
++) {
1418 uint8_t reg
= bios
->data
[offset
+ 4 + i
* 3];
1419 uint8_t mask
= bios
->data
[offset
+ 5 + i
* 3];
1420 uint8_t data
= bios
->data
[offset
+ 6 + i
* 3];
1421 union i2c_smbus_data val
;
1423 ret
= i2c_smbus_xfer(&chan
->adapter
, i2c_address
, 0,
1424 I2C_SMBUS_READ
, reg
,
1425 I2C_SMBUS_BYTE_DATA
, &val
);
1427 NV_ERROR(dev
, "0x%04X: i2c rd fail: %d\n", offset
, ret
);
1431 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X, Value: 0x%02X, "
1432 "Mask: 0x%02X, Data: 0x%02X\n",
1433 offset
, reg
, val
.byte
, mask
, data
);
1440 ret
= i2c_smbus_xfer(&chan
->adapter
, i2c_address
, 0,
1441 I2C_SMBUS_WRITE
, reg
,
1442 I2C_SMBUS_BYTE_DATA
, &val
);
1444 NV_ERROR(dev
, "0x%04X: i2c wr fail: %d\n", offset
, ret
);
1453 init_zm_i2c_byte(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1456 * INIT_ZM_I2C_BYTE opcode: 0x4D ('M')
1458 * offset (8 bit): opcode
1459 * offset + 1 (8 bit): DCB I2C table entry index
1460 * offset + 2 (8 bit): I2C slave address
1461 * offset + 3 (8 bit): count
1462 * offset + 4 (8 bit): I2C register 1
1463 * offset + 5 (8 bit): data 1
1466 * For each of "count" registers given by "I2C register n" on the device
1467 * addressed by "I2C slave address" on the I2C bus given by
1468 * "DCB I2C table entry index", set the register to "data n"
1471 struct drm_device
*dev
= bios
->dev
;
1472 uint8_t i2c_index
= bios
->data
[offset
+ 1];
1473 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
1474 uint8_t count
= bios
->data
[offset
+ 3];
1475 struct nouveau_i2c_chan
*chan
;
1476 int len
= 4 + count
* 2;
1479 if (!iexec
->execute
)
1482 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X, "
1484 offset
, i2c_index
, i2c_address
, count
);
1486 chan
= init_i2c_device_find(dev
, i2c_index
);
1488 NV_ERROR(dev
, "0x%04X: i2c bus not found\n", offset
);
1492 for (i
= 0; i
< count
; i
++) {
1493 uint8_t reg
= bios
->data
[offset
+ 4 + i
* 2];
1494 union i2c_smbus_data val
;
1496 val
.byte
= bios
->data
[offset
+ 5 + i
* 2];
1498 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X, Data: 0x%02X\n",
1499 offset
, reg
, val
.byte
);
1504 ret
= i2c_smbus_xfer(&chan
->adapter
, i2c_address
, 0,
1505 I2C_SMBUS_WRITE
, reg
,
1506 I2C_SMBUS_BYTE_DATA
, &val
);
1508 NV_ERROR(dev
, "0x%04X: i2c wr fail: %d\n", offset
, ret
);
1517 init_zm_i2c(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1520 * INIT_ZM_I2C opcode: 0x4E ('N')
1522 * offset (8 bit): opcode
1523 * offset + 1 (8 bit): DCB I2C table entry index
1524 * offset + 2 (8 bit): I2C slave address
1525 * offset + 3 (8 bit): count
1526 * offset + 4 (8 bit): data 1
1529 * Send "count" bytes ("data n") to the device addressed by "I2C slave
1530 * address" on the I2C bus given by "DCB I2C table entry index"
1533 struct drm_device
*dev
= bios
->dev
;
1534 uint8_t i2c_index
= bios
->data
[offset
+ 1];
1535 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
1536 uint8_t count
= bios
->data
[offset
+ 3];
1537 int len
= 4 + count
;
1538 struct nouveau_i2c_chan
*chan
;
1543 if (!iexec
->execute
)
1546 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X, "
1548 offset
, i2c_index
, i2c_address
, count
);
1550 chan
= init_i2c_device_find(dev
, i2c_index
);
1552 NV_ERROR(dev
, "0x%04X: i2c bus not found\n", offset
);
1556 for (i
= 0; i
< count
; i
++) {
1557 data
[i
] = bios
->data
[offset
+ 4 + i
];
1559 BIOSLOG(bios
, "0x%04X: Data: 0x%02X\n", offset
, data
[i
]);
1562 if (bios
->execute
) {
1563 msg
.addr
= i2c_address
;
1567 ret
= i2c_transfer(&chan
->adapter
, &msg
, 1);
1569 NV_ERROR(dev
, "0x%04X: i2c wr fail: %d\n", offset
, ret
);
1578 init_tmds(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1581 * INIT_TMDS opcode: 0x4F ('O') (non-canon name)
1583 * offset (8 bit): opcode
1584 * offset + 1 (8 bit): magic lookup value
1585 * offset + 2 (8 bit): TMDS address
1586 * offset + 3 (8 bit): mask
1587 * offset + 4 (8 bit): data
1589 * Read the data reg for TMDS address "TMDS address", AND it with mask
1590 * and OR it with data, then write it back
1591 * "magic lookup value" determines which TMDS base address register is
1592 * used -- see get_tmds_index_reg()
1595 struct drm_device
*dev
= bios
->dev
;
1596 uint8_t mlv
= bios
->data
[offset
+ 1];
1597 uint32_t tmdsaddr
= bios
->data
[offset
+ 2];
1598 uint8_t mask
= bios
->data
[offset
+ 3];
1599 uint8_t data
= bios
->data
[offset
+ 4];
1600 uint32_t reg
, value
;
1602 if (!iexec
->execute
)
1605 BIOSLOG(bios
, "0x%04X: MagicLookupValue: 0x%02X, TMDSAddr: 0x%02X, "
1606 "Mask: 0x%02X, Data: 0x%02X\n",
1607 offset
, mlv
, tmdsaddr
, mask
, data
);
1609 reg
= get_tmds_index_reg(bios
->dev
, mlv
);
1611 NV_ERROR(dev
, "0x%04X: no tmds_index_reg\n", offset
);
1615 bios_wr32(bios
, reg
,
1616 tmdsaddr
| NV_PRAMDAC_FP_TMDS_CONTROL_WRITE_DISABLE
);
1617 value
= (bios_rd32(bios
, reg
+ 4) & mask
) | data
;
1618 bios_wr32(bios
, reg
+ 4, value
);
1619 bios_wr32(bios
, reg
, tmdsaddr
);
1625 init_zm_tmds_group(struct nvbios
*bios
, uint16_t offset
,
1626 struct init_exec
*iexec
)
1629 * INIT_ZM_TMDS_GROUP opcode: 0x50 ('P') (non-canon name)
1631 * offset (8 bit): opcode
1632 * offset + 1 (8 bit): magic lookup value
1633 * offset + 2 (8 bit): count
1634 * offset + 3 (8 bit): addr 1
1635 * offset + 4 (8 bit): data 1
1638 * For each of "count" TMDS address and data pairs write "data n" to
1639 * "addr n". "magic lookup value" determines which TMDS base address
1640 * register is used -- see get_tmds_index_reg()
1643 struct drm_device
*dev
= bios
->dev
;
1644 uint8_t mlv
= bios
->data
[offset
+ 1];
1645 uint8_t count
= bios
->data
[offset
+ 2];
1646 int len
= 3 + count
* 2;
1650 if (!iexec
->execute
)
1653 BIOSLOG(bios
, "0x%04X: MagicLookupValue: 0x%02X, Count: 0x%02X\n",
1654 offset
, mlv
, count
);
1656 reg
= get_tmds_index_reg(bios
->dev
, mlv
);
1658 NV_ERROR(dev
, "0x%04X: no tmds_index_reg\n", offset
);
1662 for (i
= 0; i
< count
; i
++) {
1663 uint8_t tmdsaddr
= bios
->data
[offset
+ 3 + i
* 2];
1664 uint8_t tmdsdata
= bios
->data
[offset
+ 4 + i
* 2];
1666 bios_wr32(bios
, reg
+ 4, tmdsdata
);
1667 bios_wr32(bios
, reg
, tmdsaddr
);
1674 init_cr_idx_adr_latch(struct nvbios
*bios
, uint16_t offset
,
1675 struct init_exec
*iexec
)
1678 * INIT_CR_INDEX_ADDRESS_LATCHED opcode: 0x51 ('Q')
1680 * offset (8 bit): opcode
1681 * offset + 1 (8 bit): CRTC index1
1682 * offset + 2 (8 bit): CRTC index2
1683 * offset + 3 (8 bit): baseaddr
1684 * offset + 4 (8 bit): count
1685 * offset + 5 (8 bit): data 1
1688 * For each of "count" address and data pairs, write "baseaddr + n" to
1689 * "CRTC index1" and "data n" to "CRTC index2"
1690 * Once complete, restore initial value read from "CRTC index1"
1692 uint8_t crtcindex1
= bios
->data
[offset
+ 1];
1693 uint8_t crtcindex2
= bios
->data
[offset
+ 2];
1694 uint8_t baseaddr
= bios
->data
[offset
+ 3];
1695 uint8_t count
= bios
->data
[offset
+ 4];
1696 int len
= 5 + count
;
1697 uint8_t oldaddr
, data
;
1700 if (!iexec
->execute
)
1703 BIOSLOG(bios
, "0x%04X: Index1: 0x%02X, Index2: 0x%02X, "
1704 "BaseAddr: 0x%02X, Count: 0x%02X\n",
1705 offset
, crtcindex1
, crtcindex2
, baseaddr
, count
);
1707 oldaddr
= bios_idxprt_rd(bios
, NV_CIO_CRX__COLOR
, crtcindex1
);
1709 for (i
= 0; i
< count
; i
++) {
1710 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex1
,
1712 data
= bios
->data
[offset
+ 5 + i
];
1713 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex2
, data
);
1716 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex1
, oldaddr
);
1722 init_cr(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1725 * INIT_CR opcode: 0x52 ('R')
1727 * offset (8 bit): opcode
1728 * offset + 1 (8 bit): CRTC index
1729 * offset + 2 (8 bit): mask
1730 * offset + 3 (8 bit): data
1732 * Assign the value of at "CRTC index" ANDed with mask and ORed with
1733 * data back to "CRTC index"
1736 uint8_t crtcindex
= bios
->data
[offset
+ 1];
1737 uint8_t mask
= bios
->data
[offset
+ 2];
1738 uint8_t data
= bios
->data
[offset
+ 3];
1741 if (!iexec
->execute
)
1744 BIOSLOG(bios
, "0x%04X: Index: 0x%02X, Mask: 0x%02X, Data: 0x%02X\n",
1745 offset
, crtcindex
, mask
, data
);
1747 value
= bios_idxprt_rd(bios
, NV_CIO_CRX__COLOR
, crtcindex
) & mask
;
1749 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex
, value
);
1755 init_zm_cr(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1758 * INIT_ZM_CR opcode: 0x53 ('S')
1760 * offset (8 bit): opcode
1761 * offset + 1 (8 bit): CRTC index
1762 * offset + 2 (8 bit): value
1764 * Assign "value" to CRTC register with index "CRTC index".
1767 uint8_t crtcindex
= ROM32(bios
->data
[offset
+ 1]);
1768 uint8_t data
= bios
->data
[offset
+ 2];
1770 if (!iexec
->execute
)
1773 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex
, data
);
1779 init_zm_cr_group(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1782 * INIT_ZM_CR_GROUP opcode: 0x54 ('T')
1784 * offset (8 bit): opcode
1785 * offset + 1 (8 bit): count
1786 * offset + 2 (8 bit): CRTC index 1
1787 * offset + 3 (8 bit): value 1
1790 * For "count", assign "value n" to CRTC register with index
1794 uint8_t count
= bios
->data
[offset
+ 1];
1795 int len
= 2 + count
* 2;
1798 if (!iexec
->execute
)
1801 for (i
= 0; i
< count
; i
++)
1802 init_zm_cr(bios
, offset
+ 2 + 2 * i
- 1, iexec
);
1808 init_condition_time(struct nvbios
*bios
, uint16_t offset
,
1809 struct init_exec
*iexec
)
1812 * INIT_CONDITION_TIME opcode: 0x56 ('V')
1814 * offset (8 bit): opcode
1815 * offset + 1 (8 bit): condition number
1816 * offset + 2 (8 bit): retries / 50
1818 * Check condition "condition number" in the condition table.
1819 * Bios code then sleeps for 2ms if the condition is not met, and
1820 * repeats up to "retries" times, but on one C51 this has proved
1821 * insufficient. In mmiotraces the driver sleeps for 20ms, so we do
1822 * this, and bail after "retries" times, or 2s, whichever is less.
1823 * If still not met after retries, clear execution flag for this table.
1826 uint8_t cond
= bios
->data
[offset
+ 1];
1827 uint16_t retries
= bios
->data
[offset
+ 2] * 50;
1830 if (!iexec
->execute
)
1836 BIOSLOG(bios
, "0x%04X: Condition: 0x%02X, Retries: 0x%02X\n",
1837 offset
, cond
, retries
);
1839 if (!bios
->execute
) /* avoid 2s delays when "faking" execution */
1842 for (cnt
= 0; cnt
< retries
; cnt
++) {
1843 if (bios_condition_met(bios
, offset
, cond
)) {
1844 BIOSLOG(bios
, "0x%04X: Condition met, continuing\n",
1848 BIOSLOG(bios
, "0x%04X: "
1849 "Condition not met, sleeping for 20ms\n",
1855 if (!bios_condition_met(bios
, offset
, cond
)) {
1857 "0x%04X: Condition still not met after %dms, "
1858 "skipping following opcodes\n", offset
, 20 * retries
);
1859 iexec
->execute
= false;
1866 init_ltime(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1869 * INIT_LTIME opcode: 0x57 ('V')
1871 * offset (8 bit): opcode
1872 * offset + 1 (16 bit): time
1874 * Sleep for "time" milliseconds.
1877 unsigned time
= ROM16(bios
->data
[offset
+ 1]);
1879 if (!iexec
->execute
)
1882 BIOSLOG(bios
, "0x%04X: Sleeping for 0x%04X milliseconds\n",
1891 init_zm_reg_sequence(struct nvbios
*bios
, uint16_t offset
,
1892 struct init_exec
*iexec
)
1895 * INIT_ZM_REG_SEQUENCE opcode: 0x58 ('X')
1897 * offset (8 bit): opcode
1898 * offset + 1 (32 bit): base register
1899 * offset + 5 (8 bit): count
1900 * offset + 6 (32 bit): value 1
1903 * Starting at offset + 6 there are "count" 32 bit values.
1904 * For "count" iterations set "base register" + 4 * current_iteration
1905 * to "value current_iteration"
1908 uint32_t basereg
= ROM32(bios
->data
[offset
+ 1]);
1909 uint32_t count
= bios
->data
[offset
+ 5];
1910 int len
= 6 + count
* 4;
1913 if (!iexec
->execute
)
1916 BIOSLOG(bios
, "0x%04X: BaseReg: 0x%08X, Count: 0x%02X\n",
1917 offset
, basereg
, count
);
1919 for (i
= 0; i
< count
; i
++) {
1920 uint32_t reg
= basereg
+ i
* 4;
1921 uint32_t data
= ROM32(bios
->data
[offset
+ 6 + i
* 4]);
1923 bios_wr32(bios
, reg
, data
);
1930 init_sub_direct(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1933 * INIT_SUB_DIRECT opcode: 0x5B ('[')
1935 * offset (8 bit): opcode
1936 * offset + 1 (16 bit): subroutine offset (in bios)
1938 * Calls a subroutine that will execute commands until INIT_DONE
1942 uint16_t sub_offset
= ROM16(bios
->data
[offset
+ 1]);
1944 if (!iexec
->execute
)
1947 BIOSLOG(bios
, "0x%04X: Executing subroutine at 0x%04X\n",
1948 offset
, sub_offset
);
1950 parse_init_table(bios
, sub_offset
, iexec
);
1952 BIOSLOG(bios
, "0x%04X: End of 0x%04X subroutine\n", offset
, sub_offset
);
1958 init_jump(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1961 * INIT_JUMP opcode: 0x5C ('\')
1963 * offset (8 bit): opcode
1964 * offset + 1 (16 bit): offset (in bios)
1966 * Continue execution of init table from 'offset'
1969 uint16_t jmp_offset
= ROM16(bios
->data
[offset
+ 1]);
1971 if (!iexec
->execute
)
1974 BIOSLOG(bios
, "0x%04X: Jump to 0x%04X\n", offset
, jmp_offset
);
1975 return jmp_offset
- offset
;
1979 init_i2c_if(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1982 * INIT_I2C_IF opcode: 0x5E ('^')
1984 * offset (8 bit): opcode
1985 * offset + 1 (8 bit): DCB I2C table entry index
1986 * offset + 2 (8 bit): I2C slave address
1987 * offset + 3 (8 bit): I2C register
1988 * offset + 4 (8 bit): mask
1989 * offset + 5 (8 bit): data
1991 * Read the register given by "I2C register" on the device addressed
1992 * by "I2C slave address" on the I2C bus given by "DCB I2C table
1993 * entry index". Compare the result AND "mask" to "data".
1994 * If they're not equal, skip subsequent opcodes until condition is
1995 * inverted (INIT_NOT), or we hit INIT_RESUME
1998 uint8_t i2c_index
= bios
->data
[offset
+ 1];
1999 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
2000 uint8_t reg
= bios
->data
[offset
+ 3];
2001 uint8_t mask
= bios
->data
[offset
+ 4];
2002 uint8_t data
= bios
->data
[offset
+ 5];
2003 struct nouveau_i2c_chan
*chan
;
2004 union i2c_smbus_data val
;
2007 /* no execute check by design */
2009 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X\n",
2010 offset
, i2c_index
, i2c_address
);
2012 chan
= init_i2c_device_find(bios
->dev
, i2c_index
);
2016 ret
= i2c_smbus_xfer(&chan
->adapter
, i2c_address
, 0,
2017 I2C_SMBUS_READ
, reg
,
2018 I2C_SMBUS_BYTE_DATA
, &val
);
2020 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X, Value: [no device], "
2021 "Mask: 0x%02X, Data: 0x%02X\n",
2022 offset
, reg
, mask
, data
);
2027 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X, Value: 0x%02X, "
2028 "Mask: 0x%02X, Data: 0x%02X\n",
2029 offset
, reg
, val
.byte
, mask
, data
);
2031 iexec
->execute
= ((val
.byte
& mask
) == data
);
2037 init_copy_nv_reg(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2040 * INIT_COPY_NV_REG opcode: 0x5F ('_')
2042 * offset (8 bit): opcode
2043 * offset + 1 (32 bit): src reg
2044 * offset + 5 (8 bit): shift
2045 * offset + 6 (32 bit): src mask
2046 * offset + 10 (32 bit): xor
2047 * offset + 14 (32 bit): dst reg
2048 * offset + 18 (32 bit): dst mask
2050 * Shift REGVAL("src reg") right by (signed) "shift", AND result with
2051 * "src mask", then XOR with "xor". Write this OR'd with
2052 * (REGVAL("dst reg") AND'd with "dst mask") to "dst reg"
2055 uint32_t srcreg
= *((uint32_t *)(&bios
->data
[offset
+ 1]));
2056 uint8_t shift
= bios
->data
[offset
+ 5];
2057 uint32_t srcmask
= *((uint32_t *)(&bios
->data
[offset
+ 6]));
2058 uint32_t xor = *((uint32_t *)(&bios
->data
[offset
+ 10]));
2059 uint32_t dstreg
= *((uint32_t *)(&bios
->data
[offset
+ 14]));
2060 uint32_t dstmask
= *((uint32_t *)(&bios
->data
[offset
+ 18]));
2061 uint32_t srcvalue
, dstvalue
;
2063 if (!iexec
->execute
)
2066 BIOSLOG(bios
, "0x%04X: SrcReg: 0x%08X, Shift: 0x%02X, SrcMask: 0x%08X, "
2067 "Xor: 0x%08X, DstReg: 0x%08X, DstMask: 0x%08X\n",
2068 offset
, srcreg
, shift
, srcmask
, xor, dstreg
, dstmask
);
2070 srcvalue
= bios_rd32(bios
, srcreg
);
2075 srcvalue
<<= (0x100 - shift
);
2077 srcvalue
= (srcvalue
& srcmask
) ^ xor;
2079 dstvalue
= bios_rd32(bios
, dstreg
) & dstmask
;
2081 bios_wr32(bios
, dstreg
, dstvalue
| srcvalue
);
2087 init_zm_index_io(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2090 * INIT_ZM_INDEX_IO opcode: 0x62 ('b')
2092 * offset (8 bit): opcode
2093 * offset + 1 (16 bit): CRTC port
2094 * offset + 3 (8 bit): CRTC index
2095 * offset + 4 (8 bit): data
2097 * Write "data" to index "CRTC index" of "CRTC port"
2099 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
2100 uint8_t crtcindex
= bios
->data
[offset
+ 3];
2101 uint8_t data
= bios
->data
[offset
+ 4];
2103 if (!iexec
->execute
)
2106 bios_idxprt_wr(bios
, crtcport
, crtcindex
, data
);
2112 bios_md32(struct nvbios
*bios
, uint32_t reg
,
2113 uint32_t mask
, uint32_t val
)
2115 bios_wr32(bios
, reg
, (bios_rd32(bios
, reg
) & ~mask
) | val
);
2119 peek_fb(struct drm_device
*dev
, struct io_mapping
*fb
,
2124 if (off
< pci_resource_len(dev
->pdev
, 1)) {
2125 uint8_t __iomem
*p
=
2126 io_mapping_map_atomic_wc(fb
, off
& PAGE_MASK
);
2128 val
= ioread32(p
+ (off
& ~PAGE_MASK
));
2130 io_mapping_unmap_atomic(p
);
2137 poke_fb(struct drm_device
*dev
, struct io_mapping
*fb
,
2138 uint32_t off
, uint32_t val
)
2140 if (off
< pci_resource_len(dev
->pdev
, 1)) {
2141 uint8_t __iomem
*p
=
2142 io_mapping_map_atomic_wc(fb
, off
& PAGE_MASK
);
2144 iowrite32(val
, p
+ (off
& ~PAGE_MASK
));
2147 io_mapping_unmap_atomic(p
);
2152 read_back_fb(struct drm_device
*dev
, struct io_mapping
*fb
,
2153 uint32_t off
, uint32_t val
)
2155 poke_fb(dev
, fb
, off
, val
);
2156 return val
== peek_fb(dev
, fb
, off
);
2160 nv04_init_compute_mem(struct nvbios
*bios
)
2162 struct drm_device
*dev
= bios
->dev
;
2163 uint32_t patt
= 0xdeadbeef;
2164 struct io_mapping
*fb
;
2167 /* Map the framebuffer aperture */
2168 fb
= io_mapping_create_wc(pci_resource_start(dev
->pdev
, 1),
2169 pci_resource_len(dev
->pdev
, 1));
2173 /* Sequencer and refresh off */
2174 NVWriteVgaSeq(dev
, 0, 1, NVReadVgaSeq(dev
, 0, 1) | 0x20);
2175 bios_md32(bios
, NV04_PFB_DEBUG_0
, 0, NV04_PFB_DEBUG_0_REFRESH_OFF
);
2177 bios_md32(bios
, NV04_PFB_BOOT_0
, ~0,
2178 NV04_PFB_BOOT_0_RAM_AMOUNT_16MB
|
2179 NV04_PFB_BOOT_0_RAM_WIDTH_128
|
2180 NV04_PFB_BOOT_0_RAM_TYPE_SGRAM_16MBIT
);
2182 for (i
= 0; i
< 4; i
++)
2183 poke_fb(dev
, fb
, 4 * i
, patt
);
2185 poke_fb(dev
, fb
, 0x400000, patt
+ 1);
2187 if (peek_fb(dev
, fb
, 0) == patt
+ 1) {
2188 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_TYPE
,
2189 NV04_PFB_BOOT_0_RAM_TYPE_SDRAM_16MBIT
);
2190 bios_md32(bios
, NV04_PFB_DEBUG_0
,
2191 NV04_PFB_DEBUG_0_REFRESH_OFF
, 0);
2193 for (i
= 0; i
< 4; i
++)
2194 poke_fb(dev
, fb
, 4 * i
, patt
);
2196 if ((peek_fb(dev
, fb
, 0xc) & 0xffff) != (patt
& 0xffff))
2197 bios_md32(bios
, NV04_PFB_BOOT_0
,
2198 NV04_PFB_BOOT_0_RAM_WIDTH_128
|
2199 NV04_PFB_BOOT_0_RAM_AMOUNT
,
2200 NV04_PFB_BOOT_0_RAM_AMOUNT_8MB
);
2202 } else if ((peek_fb(dev
, fb
, 0xc) & 0xffff0000) !=
2203 (patt
& 0xffff0000)) {
2204 bios_md32(bios
, NV04_PFB_BOOT_0
,
2205 NV04_PFB_BOOT_0_RAM_WIDTH_128
|
2206 NV04_PFB_BOOT_0_RAM_AMOUNT
,
2207 NV04_PFB_BOOT_0_RAM_AMOUNT_4MB
);
2209 } else if (peek_fb(dev
, fb
, 0) != patt
) {
2210 if (read_back_fb(dev
, fb
, 0x800000, patt
))
2211 bios_md32(bios
, NV04_PFB_BOOT_0
,
2212 NV04_PFB_BOOT_0_RAM_AMOUNT
,
2213 NV04_PFB_BOOT_0_RAM_AMOUNT_8MB
);
2215 bios_md32(bios
, NV04_PFB_BOOT_0
,
2216 NV04_PFB_BOOT_0_RAM_AMOUNT
,
2217 NV04_PFB_BOOT_0_RAM_AMOUNT_4MB
);
2219 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_TYPE
,
2220 NV04_PFB_BOOT_0_RAM_TYPE_SGRAM_8MBIT
);
2222 } else if (!read_back_fb(dev
, fb
, 0x800000, patt
)) {
2223 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_AMOUNT
,
2224 NV04_PFB_BOOT_0_RAM_AMOUNT_8MB
);
2228 /* Refresh on, sequencer on */
2229 bios_md32(bios
, NV04_PFB_DEBUG_0
, NV04_PFB_DEBUG_0_REFRESH_OFF
, 0);
2230 NVWriteVgaSeq(dev
, 0, 1, NVReadVgaSeq(dev
, 0, 1) & ~0x20);
2232 io_mapping_free(fb
);
2236 static const uint8_t *
2237 nv05_memory_config(struct nvbios
*bios
)
2239 /* Defaults for BIOSes lacking a memory config table */
2240 static const uint8_t default_config_tab
[][2] = {
2250 int i
= (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) &
2251 NV_PEXTDEV_BOOT_0_RAMCFG
) >> 2;
2253 if (bios
->legacy
.mem_init_tbl_ptr
)
2254 return &bios
->data
[bios
->legacy
.mem_init_tbl_ptr
+ 2 * i
];
2256 return default_config_tab
[i
];
2260 nv05_init_compute_mem(struct nvbios
*bios
)
2262 struct drm_device
*dev
= bios
->dev
;
2263 const uint8_t *ramcfg
= nv05_memory_config(bios
);
2264 uint32_t patt
= 0xdeadbeef;
2265 struct io_mapping
*fb
;
2268 /* Map the framebuffer aperture */
2269 fb
= io_mapping_create_wc(pci_resource_start(dev
->pdev
, 1),
2270 pci_resource_len(dev
->pdev
, 1));
2275 NVWriteVgaSeq(dev
, 0, 1, NVReadVgaSeq(dev
, 0, 1) | 0x20);
2277 if (bios_rd32(bios
, NV04_PFB_BOOT_0
) & NV04_PFB_BOOT_0_UMA_ENABLE
)
2280 bios_md32(bios
, NV04_PFB_DEBUG_0
, NV04_PFB_DEBUG_0_REFRESH_OFF
, 0);
2282 /* If present load the hardcoded scrambling table */
2283 if (bios
->legacy
.mem_init_tbl_ptr
) {
2284 uint32_t *scramble_tab
= (uint32_t *)&bios
->data
[
2285 bios
->legacy
.mem_init_tbl_ptr
+ 0x10];
2287 for (i
= 0; i
< 8; i
++)
2288 bios_wr32(bios
, NV04_PFB_SCRAMBLE(i
),
2289 ROM32(scramble_tab
[i
]));
2292 /* Set memory type/width/length defaults depending on the straps */
2293 bios_md32(bios
, NV04_PFB_BOOT_0
, 0x3f, ramcfg
[0]);
2295 if (ramcfg
[1] & 0x80)
2296 bios_md32(bios
, NV04_PFB_CFG0
, 0, NV04_PFB_CFG0_SCRAMBLE
);
2298 bios_md32(bios
, NV04_PFB_CFG1
, 0x700001, (ramcfg
[1] & 1) << 20);
2299 bios_md32(bios
, NV04_PFB_CFG1
, 0, 1);
2301 /* Probe memory bus width */
2302 for (i
= 0; i
< 4; i
++)
2303 poke_fb(dev
, fb
, 4 * i
, patt
);
2305 if (peek_fb(dev
, fb
, 0xc) != patt
)
2306 bios_md32(bios
, NV04_PFB_BOOT_0
,
2307 NV04_PFB_BOOT_0_RAM_WIDTH_128
, 0);
2309 /* Probe memory length */
2310 v
= bios_rd32(bios
, NV04_PFB_BOOT_0
) & NV04_PFB_BOOT_0_RAM_AMOUNT
;
2312 if (v
== NV04_PFB_BOOT_0_RAM_AMOUNT_32MB
&&
2313 (!read_back_fb(dev
, fb
, 0x1000000, ++patt
) ||
2314 !read_back_fb(dev
, fb
, 0, ++patt
)))
2315 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_AMOUNT
,
2316 NV04_PFB_BOOT_0_RAM_AMOUNT_16MB
);
2318 if (v
== NV04_PFB_BOOT_0_RAM_AMOUNT_16MB
&&
2319 !read_back_fb(dev
, fb
, 0x800000, ++patt
))
2320 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_AMOUNT
,
2321 NV04_PFB_BOOT_0_RAM_AMOUNT_8MB
);
2323 if (!read_back_fb(dev
, fb
, 0x400000, ++patt
))
2324 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_AMOUNT
,
2325 NV04_PFB_BOOT_0_RAM_AMOUNT_4MB
);
2329 NVWriteVgaSeq(dev
, 0, 1, NVReadVgaSeq(dev
, 0, 1) & ~0x20);
2331 io_mapping_free(fb
);
2336 nv10_init_compute_mem(struct nvbios
*bios
)
2338 struct drm_device
*dev
= bios
->dev
;
2339 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
2340 const int mem_width
[] = { 0x10, 0x00, 0x20 };
2341 const int mem_width_count
= (dev_priv
->chipset
>= 0x17 ? 3 : 2);
2342 uint32_t patt
= 0xdeadbeef;
2343 struct io_mapping
*fb
;
2346 /* Map the framebuffer aperture */
2347 fb
= io_mapping_create_wc(pci_resource_start(dev
->pdev
, 1),
2348 pci_resource_len(dev
->pdev
, 1));
2352 bios_wr32(bios
, NV10_PFB_REFCTRL
, NV10_PFB_REFCTRL_VALID_1
);
2354 /* Probe memory bus width */
2355 for (i
= 0; i
< mem_width_count
; i
++) {
2356 bios_md32(bios
, NV04_PFB_CFG0
, 0x30, mem_width
[i
]);
2358 for (j
= 0; j
< 4; j
++) {
2359 for (k
= 0; k
< 4; k
++)
2360 poke_fb(dev
, fb
, 0x1c, 0);
2362 poke_fb(dev
, fb
, 0x1c, patt
);
2363 poke_fb(dev
, fb
, 0x3c, 0);
2365 if (peek_fb(dev
, fb
, 0x1c) == patt
)
2366 goto mem_width_found
;
2373 /* Probe amount of installed memory */
2374 for (i
= 0; i
< 4; i
++) {
2375 int off
= bios_rd32(bios
, NV04_PFB_FIFO_DATA
) - 0x100000;
2377 poke_fb(dev
, fb
, off
, patt
);
2378 poke_fb(dev
, fb
, 0, 0);
2380 peek_fb(dev
, fb
, 0);
2381 peek_fb(dev
, fb
, 0);
2382 peek_fb(dev
, fb
, 0);
2383 peek_fb(dev
, fb
, 0);
2385 if (peek_fb(dev
, fb
, off
) == patt
)
2389 /* IC missing - disable the upper half memory space. */
2390 bios_md32(bios
, NV04_PFB_CFG0
, 0x1000, 0);
2393 io_mapping_free(fb
);
2398 nv20_init_compute_mem(struct nvbios
*bios
)
2400 struct drm_device
*dev
= bios
->dev
;
2401 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
2402 uint32_t mask
= (dev_priv
->chipset
>= 0x25 ? 0x300 : 0x900);
2403 uint32_t amount
, off
;
2404 struct io_mapping
*fb
;
2406 /* Map the framebuffer aperture */
2407 fb
= io_mapping_create_wc(pci_resource_start(dev
->pdev
, 1),
2408 pci_resource_len(dev
->pdev
, 1));
2412 bios_wr32(bios
, NV10_PFB_REFCTRL
, NV10_PFB_REFCTRL_VALID_1
);
2414 /* Allow full addressing */
2415 bios_md32(bios
, NV04_PFB_CFG0
, 0, mask
);
2417 amount
= bios_rd32(bios
, NV04_PFB_FIFO_DATA
);
2418 for (off
= amount
; off
> 0x2000000; off
-= 0x2000000)
2419 poke_fb(dev
, fb
, off
- 4, off
);
2421 amount
= bios_rd32(bios
, NV04_PFB_FIFO_DATA
);
2422 if (amount
!= peek_fb(dev
, fb
, amount
- 4))
2423 /* IC missing - disable the upper half memory space. */
2424 bios_md32(bios
, NV04_PFB_CFG0
, mask
, 0);
2426 io_mapping_free(fb
);
2431 init_compute_mem(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2434 * INIT_COMPUTE_MEM opcode: 0x63 ('c')
2436 * offset (8 bit): opcode
2438 * This opcode is meant to set the PFB memory config registers
2439 * appropriately so that we can correctly calculate how much VRAM it
2440 * has (on nv10 and better chipsets the amount of installed VRAM is
2441 * subsequently reported in NV_PFB_CSTATUS (0x10020C)).
2443 * The implementation of this opcode in general consists of several
2446 * 1) Determination of memory type and density. Only necessary for
2447 * really old chipsets, the memory type reported by the strap bits
2448 * (0x101000) is assumed to be accurate on nv05 and newer.
2450 * 2) Determination of the memory bus width. Usually done by a cunning
2451 * combination of writes to offsets 0x1c and 0x3c in the fb, and
2452 * seeing whether the written values are read back correctly.
2454 * Only necessary on nv0x-nv1x and nv34, on the other cards we can
2457 * 3) Determination of how many of the card's RAM pads have ICs
2458 * attached, usually done by a cunning combination of writes to an
2459 * offset slightly less than the maximum memory reported by
2460 * NV_PFB_CSTATUS, then seeing if the test pattern can be read back.
2462 * This appears to be a NOP on IGPs and NV4x or newer chipsets, both io
2463 * logs of the VBIOS and kmmio traces of the binary driver POSTing the
2464 * card show nothing being done for this opcode. Why is it still listed
2468 /* no iexec->execute check by design */
2470 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
2473 if (dev_priv
->chipset
>= 0x40 ||
2474 dev_priv
->chipset
== 0x1a ||
2475 dev_priv
->chipset
== 0x1f)
2477 else if (dev_priv
->chipset
>= 0x20 &&
2478 dev_priv
->chipset
!= 0x34)
2479 ret
= nv20_init_compute_mem(bios
);
2480 else if (dev_priv
->chipset
>= 0x10)
2481 ret
= nv10_init_compute_mem(bios
);
2482 else if (dev_priv
->chipset
>= 0x5)
2483 ret
= nv05_init_compute_mem(bios
);
2485 ret
= nv04_init_compute_mem(bios
);
2494 init_reset(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2497 * INIT_RESET opcode: 0x65 ('e')
2499 * offset (8 bit): opcode
2500 * offset + 1 (32 bit): register
2501 * offset + 5 (32 bit): value1
2502 * offset + 9 (32 bit): value2
2504 * Assign "value1" to "register", then assign "value2" to "register"
2507 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
2508 uint32_t value1
= ROM32(bios
->data
[offset
+ 5]);
2509 uint32_t value2
= ROM32(bios
->data
[offset
+ 9]);
2510 uint32_t pci_nv_19
, pci_nv_20
;
2512 /* no iexec->execute check by design */
2514 pci_nv_19
= bios_rd32(bios
, NV_PBUS_PCI_NV_19
);
2515 bios_wr32(bios
, NV_PBUS_PCI_NV_19
, pci_nv_19
& ~0xf00);
2517 bios_wr32(bios
, reg
, value1
);
2521 bios_wr32(bios
, reg
, value2
);
2522 bios_wr32(bios
, NV_PBUS_PCI_NV_19
, pci_nv_19
);
2524 pci_nv_20
= bios_rd32(bios
, NV_PBUS_PCI_NV_20
);
2525 pci_nv_20
&= ~NV_PBUS_PCI_NV_20_ROM_SHADOW_ENABLED
; /* 0xfffffffe */
2526 bios_wr32(bios
, NV_PBUS_PCI_NV_20
, pci_nv_20
);
2532 init_configure_mem(struct nvbios
*bios
, uint16_t offset
,
2533 struct init_exec
*iexec
)
2536 * INIT_CONFIGURE_MEM opcode: 0x66 ('f')
2538 * offset (8 bit): opcode
2540 * Equivalent to INIT_DONE on bios version 3 or greater.
2541 * For early bios versions, sets up the memory registers, using values
2542 * taken from the memory init table
2545 /* no iexec->execute check by design */
2547 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);
2548 uint16_t seqtbloffs
= bios
->legacy
.sdr_seq_tbl_ptr
, meminitdata
= meminitoffs
+ 6;
2551 if (bios
->major_version
> 2)
2554 bios_idxprt_wr(bios
, NV_VIO_SRX
, NV_VIO_SR_CLOCK_INDEX
, bios_idxprt_rd(
2555 bios
, NV_VIO_SRX
, NV_VIO_SR_CLOCK_INDEX
) | 0x20);
2557 if (bios
->data
[meminitoffs
] & 1)
2558 seqtbloffs
= bios
->legacy
.ddr_seq_tbl_ptr
;
2560 for (reg
= ROM32(bios
->data
[seqtbloffs
]);
2562 reg
= ROM32(bios
->data
[seqtbloffs
+= 4])) {
2566 data
= NV04_PFB_PRE_CMD_PRECHARGE
;
2569 data
= NV04_PFB_PAD_CKE_NORMAL
;
2572 data
= NV04_PFB_REF_CMD_REFRESH
;
2575 data
= ROM32(bios
->data
[meminitdata
]);
2577 if (data
== 0xffffffff)
2581 bios_wr32(bios
, reg
, data
);
2588 init_configure_clk(struct nvbios
*bios
, uint16_t offset
,
2589 struct init_exec
*iexec
)
2592 * INIT_CONFIGURE_CLK opcode: 0x67 ('g')
2594 * offset (8 bit): opcode
2596 * Equivalent to INIT_DONE on bios version 3 or greater.
2597 * For early bios versions, sets up the NVClk and MClk PLLs, using
2598 * values taken from the memory init table
2601 /* no iexec->execute check by design */
2603 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);
2606 if (bios
->major_version
> 2)
2609 clock
= ROM16(bios
->data
[meminitoffs
+ 4]) * 10;
2610 setPLL(bios
, NV_PRAMDAC_NVPLL_COEFF
, clock
);
2612 clock
= ROM16(bios
->data
[meminitoffs
+ 2]) * 10;
2613 if (bios
->data
[meminitoffs
] & 1) /* DDR */
2615 setPLL(bios
, NV_PRAMDAC_MPLL_COEFF
, clock
);
2621 init_configure_preinit(struct nvbios
*bios
, uint16_t offset
,
2622 struct init_exec
*iexec
)
2625 * INIT_CONFIGURE_PREINIT opcode: 0x68 ('h')
2627 * offset (8 bit): opcode
2629 * Equivalent to INIT_DONE on bios version 3 or greater.
2630 * For early bios versions, does early init, loading ram and crystal
2631 * configuration from straps into CR3C
2634 /* no iexec->execute check by design */
2636 uint32_t straps
= bios_rd32(bios
, NV_PEXTDEV_BOOT_0
);
2637 uint8_t cr3c
= ((straps
<< 2) & 0xf0) | (straps
& 0x40) >> 6;
2639 if (bios
->major_version
> 2)
2642 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
,
2643 NV_CIO_CRE_SCRATCH4__INDEX
, cr3c
);
2649 init_io(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2652 * INIT_IO opcode: 0x69 ('i')
2654 * offset (8 bit): opcode
2655 * offset + 1 (16 bit): CRTC port
2656 * offset + 3 (8 bit): mask
2657 * offset + 4 (8 bit): data
2659 * Assign ((IOVAL("crtc port") & "mask") | "data") to "crtc port"
2662 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
2663 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
2664 uint8_t mask
= bios
->data
[offset
+ 3];
2665 uint8_t data
= bios
->data
[offset
+ 4];
2667 if (!iexec
->execute
)
2670 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Mask: 0x%02X, Data: 0x%02X\n",
2671 offset
, crtcport
, mask
, data
);
2674 * I have no idea what this does, but NVIDIA do this magic sequence
2675 * in the places where this INIT_IO happens..
2677 if (dev_priv
->card_type
>= NV_50
&& crtcport
== 0x3c3 && data
== 1) {
2680 bios_wr32(bios
, 0x614100, (bios_rd32(
2681 bios
, 0x614100) & 0x0fffffff) | 0x00800000);
2683 bios_wr32(bios
, 0x00e18c, bios_rd32(
2684 bios
, 0x00e18c) | 0x00020000);
2686 bios_wr32(bios
, 0x614900, (bios_rd32(
2687 bios
, 0x614900) & 0x0fffffff) | 0x00800000);
2689 bios_wr32(bios
, 0x000200, bios_rd32(
2690 bios
, 0x000200) & ~0x40000000);
2694 bios_wr32(bios
, 0x00e18c, bios_rd32(
2695 bios
, 0x00e18c) & ~0x00020000);
2697 bios_wr32(bios
, 0x000200, bios_rd32(
2698 bios
, 0x000200) | 0x40000000);
2700 bios_wr32(bios
, 0x614100, 0x00800018);
2701 bios_wr32(bios
, 0x614900, 0x00800018);
2705 bios_wr32(bios
, 0x614100, 0x10000018);
2706 bios_wr32(bios
, 0x614900, 0x10000018);
2708 for (i
= 0; i
< 3; i
++)
2709 bios_wr32(bios
, 0x614280 + (i
*0x800), bios_rd32(
2710 bios
, 0x614280 + (i
*0x800)) & 0xf0f0f0f0);
2712 for (i
= 0; i
< 2; i
++)
2713 bios_wr32(bios
, 0x614300 + (i
*0x800), bios_rd32(
2714 bios
, 0x614300 + (i
*0x800)) & 0xfffff0f0);
2716 for (i
= 0; i
< 3; i
++)
2717 bios_wr32(bios
, 0x614380 + (i
*0x800), bios_rd32(
2718 bios
, 0x614380 + (i
*0x800)) & 0xfffff0f0);
2720 for (i
= 0; i
< 2; i
++)
2721 bios_wr32(bios
, 0x614200 + (i
*0x800), bios_rd32(
2722 bios
, 0x614200 + (i
*0x800)) & 0xfffffff0);
2724 for (i
= 0; i
< 2; i
++)
2725 bios_wr32(bios
, 0x614108 + (i
*0x800), bios_rd32(
2726 bios
, 0x614108 + (i
*0x800)) & 0x0fffffff);
2730 bios_port_wr(bios
, crtcport
, (bios_port_rd(bios
, crtcport
) & mask
) |
2736 init_sub(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2739 * INIT_SUB opcode: 0x6B ('k')
2741 * offset (8 bit): opcode
2742 * offset + 1 (8 bit): script number
2744 * Execute script number "script number", as a subroutine
2747 uint8_t sub
= bios
->data
[offset
+ 1];
2749 if (!iexec
->execute
)
2752 BIOSLOG(bios
, "0x%04X: Calling script %d\n", offset
, sub
);
2754 parse_init_table(bios
,
2755 ROM16(bios
->data
[bios
->init_script_tbls_ptr
+ sub
* 2]),
2758 BIOSLOG(bios
, "0x%04X: End of script %d\n", offset
, sub
);
2764 init_ram_condition(struct nvbios
*bios
, uint16_t offset
,
2765 struct init_exec
*iexec
)
2768 * INIT_RAM_CONDITION opcode: 0x6D ('m')
2770 * offset (8 bit): opcode
2771 * offset + 1 (8 bit): mask
2772 * offset + 2 (8 bit): cmpval
2774 * Test if (NV04_PFB_BOOT_0 & "mask") equals "cmpval".
2775 * If condition not met skip subsequent opcodes until condition is
2776 * inverted (INIT_NOT), or we hit INIT_RESUME
2779 uint8_t mask
= bios
->data
[offset
+ 1];
2780 uint8_t cmpval
= bios
->data
[offset
+ 2];
2783 if (!iexec
->execute
)
2786 data
= bios_rd32(bios
, NV04_PFB_BOOT_0
) & mask
;
2788 BIOSLOG(bios
, "0x%04X: Checking if 0x%08X equals 0x%08X\n",
2789 offset
, data
, cmpval
);
2792 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- continuing to execute\n", offset
);
2794 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset
);
2795 iexec
->execute
= false;
2802 init_nv_reg(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2805 * INIT_NV_REG opcode: 0x6E ('n')
2807 * offset (8 bit): opcode
2808 * offset + 1 (32 bit): register
2809 * offset + 5 (32 bit): mask
2810 * offset + 9 (32 bit): data
2812 * Assign ((REGVAL("register") & "mask") | "data") to "register"
2815 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
2816 uint32_t mask
= ROM32(bios
->data
[offset
+ 5]);
2817 uint32_t data
= ROM32(bios
->data
[offset
+ 9]);
2819 if (!iexec
->execute
)
2822 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Mask: 0x%08X, Data: 0x%08X\n",
2823 offset
, reg
, mask
, data
);
2825 bios_wr32(bios
, reg
, (bios_rd32(bios
, reg
) & mask
) | data
);
2831 init_macro(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2834 * INIT_MACRO opcode: 0x6F ('o')
2836 * offset (8 bit): opcode
2837 * offset + 1 (8 bit): macro number
2839 * Look up macro index "macro number" in the macro index table.
2840 * The macro index table entry has 1 byte for the index in the macro
2841 * table, and 1 byte for the number of times to repeat the macro.
2842 * The macro table entry has 4 bytes for the register address and
2843 * 4 bytes for the value to write to that register
2846 uint8_t macro_index_tbl_idx
= bios
->data
[offset
+ 1];
2847 uint16_t tmp
= bios
->macro_index_tbl_ptr
+ (macro_index_tbl_idx
* MACRO_INDEX_SIZE
);
2848 uint8_t macro_tbl_idx
= bios
->data
[tmp
];
2849 uint8_t count
= bios
->data
[tmp
+ 1];
2853 if (!iexec
->execute
)
2856 BIOSLOG(bios
, "0x%04X: Macro: 0x%02X, MacroTableIndex: 0x%02X, "
2858 offset
, macro_index_tbl_idx
, macro_tbl_idx
, count
);
2860 for (i
= 0; i
< count
; i
++) {
2861 uint16_t macroentryptr
= bios
->macro_tbl_ptr
+ (macro_tbl_idx
+ i
) * MACRO_SIZE
;
2863 reg
= ROM32(bios
->data
[macroentryptr
]);
2864 data
= ROM32(bios
->data
[macroentryptr
+ 4]);
2866 bios_wr32(bios
, reg
, data
);
2873 init_done(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2876 * INIT_DONE opcode: 0x71 ('q')
2878 * offset (8 bit): opcode
2880 * End the current script
2883 /* mild retval abuse to stop parsing this table */
2888 init_resume(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2891 * INIT_RESUME opcode: 0x72 ('r')
2893 * offset (8 bit): opcode
2895 * End the current execute / no-execute condition
2901 iexec
->execute
= true;
2902 BIOSLOG(bios
, "0x%04X: ---- Executing following commands ----\n", offset
);
2908 init_time(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2911 * INIT_TIME opcode: 0x74 ('t')
2913 * offset (8 bit): opcode
2914 * offset + 1 (16 bit): time
2916 * Sleep for "time" microseconds.
2919 unsigned time
= ROM16(bios
->data
[offset
+ 1]);
2921 if (!iexec
->execute
)
2924 BIOSLOG(bios
, "0x%04X: Sleeping for 0x%04X microseconds\n",
2930 mdelay((time
+ 900) / 1000);
2936 init_condition(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2939 * INIT_CONDITION opcode: 0x75 ('u')
2941 * offset (8 bit): opcode
2942 * offset + 1 (8 bit): condition number
2944 * Check condition "condition number" in the condition table.
2945 * If condition not met skip subsequent opcodes until condition is
2946 * inverted (INIT_NOT), or we hit INIT_RESUME
2949 uint8_t cond
= bios
->data
[offset
+ 1];
2951 if (!iexec
->execute
)
2954 BIOSLOG(bios
, "0x%04X: Condition: 0x%02X\n", offset
, cond
);
2956 if (bios_condition_met(bios
, offset
, cond
))
2957 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- continuing to execute\n", offset
);
2959 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset
);
2960 iexec
->execute
= false;
2967 init_io_condition(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2970 * INIT_IO_CONDITION opcode: 0x76
2972 * offset (8 bit): opcode
2973 * offset + 1 (8 bit): condition number
2975 * Check condition "condition number" in the io condition table.
2976 * If condition not met skip subsequent opcodes until condition is
2977 * inverted (INIT_NOT), or we hit INIT_RESUME
2980 uint8_t cond
= bios
->data
[offset
+ 1];
2982 if (!iexec
->execute
)
2985 BIOSLOG(bios
, "0x%04X: IO condition: 0x%02X\n", offset
, cond
);
2987 if (io_condition_met(bios
, offset
, cond
))
2988 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- continuing to execute\n", offset
);
2990 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset
);
2991 iexec
->execute
= false;
2998 init_index_io(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3001 * INIT_INDEX_IO opcode: 0x78 ('x')
3003 * offset (8 bit): opcode
3004 * offset + 1 (16 bit): CRTC port
3005 * offset + 3 (8 bit): CRTC index
3006 * offset + 4 (8 bit): mask
3007 * offset + 5 (8 bit): data
3009 * Read value at index "CRTC index" on "CRTC port", AND with "mask",
3010 * OR with "data", write-back
3013 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
3014 uint8_t crtcindex
= bios
->data
[offset
+ 3];
3015 uint8_t mask
= bios
->data
[offset
+ 4];
3016 uint8_t data
= bios
->data
[offset
+ 5];
3019 if (!iexec
->execute
)
3022 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
3024 offset
, crtcport
, crtcindex
, mask
, data
);
3026 value
= (bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
) | data
;
3027 bios_idxprt_wr(bios
, crtcport
, crtcindex
, value
);
3033 init_pll(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3036 * INIT_PLL opcode: 0x79 ('y')
3038 * offset (8 bit): opcode
3039 * offset + 1 (32 bit): register
3040 * offset + 5 (16 bit): freq
3042 * Set PLL register "register" to coefficients for frequency (10kHz)
3046 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3047 uint16_t freq
= ROM16(bios
->data
[offset
+ 5]);
3049 if (!iexec
->execute
)
3052 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Freq: %d0kHz\n", offset
, reg
, freq
);
3054 setPLL(bios
, reg
, freq
* 10);
3060 init_zm_reg(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3063 * INIT_ZM_REG opcode: 0x7A ('z')
3065 * offset (8 bit): opcode
3066 * offset + 1 (32 bit): register
3067 * offset + 5 (32 bit): value
3069 * Assign "value" to "register"
3072 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3073 uint32_t value
= ROM32(bios
->data
[offset
+ 5]);
3075 if (!iexec
->execute
)
3078 if (reg
== 0x000200)
3081 bios_wr32(bios
, reg
, value
);
3087 init_ram_restrict_pll(struct nvbios
*bios
, uint16_t offset
,
3088 struct init_exec
*iexec
)
3091 * INIT_RAM_RESTRICT_PLL opcode: 0x87 ('')
3093 * offset (8 bit): opcode
3094 * offset + 1 (8 bit): PLL type
3095 * offset + 2 (32 bit): frequency 0
3097 * Uses the RAMCFG strap of PEXTDEV_BOOT as an index into the table at
3098 * ram_restrict_table_ptr. The value read from there is used to select
3099 * a frequency from the table starting at 'frequency 0' to be
3100 * programmed into the PLL corresponding to 'type'.
3102 * The PLL limits table on cards using this opcode has a mapping of
3103 * 'type' to the relevant registers.
3106 struct drm_device
*dev
= bios
->dev
;
3107 uint32_t strap
= (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) & 0x0000003c) >> 2;
3108 uint8_t index
= bios
->data
[bios
->ram_restrict_tbl_ptr
+ strap
];
3109 uint8_t type
= bios
->data
[offset
+ 1];
3110 uint32_t freq
= ROM32(bios
->data
[offset
+ 2 + (index
* 4)]);
3111 uint8_t *pll_limits
= &bios
->data
[bios
->pll_limit_tbl_ptr
], *entry
;
3112 int len
= 2 + bios
->ram_restrict_group_count
* 4;
3115 if (!iexec
->execute
)
3118 if (!bios
->pll_limit_tbl_ptr
|| (pll_limits
[0] & 0xf0) != 0x30) {
3119 NV_ERROR(dev
, "PLL limits table not version 3.x\n");
3120 return len
; /* deliberate, allow default clocks to remain */
3123 entry
= pll_limits
+ pll_limits
[1];
3124 for (i
= 0; i
< pll_limits
[3]; i
++, entry
+= pll_limits
[2]) {
3125 if (entry
[0] == type
) {
3126 uint32_t reg
= ROM32(entry
[3]);
3128 BIOSLOG(bios
, "0x%04X: "
3129 "Type %02x Reg 0x%08x Freq %dKHz\n",
3130 offset
, type
, reg
, freq
);
3132 setPLL(bios
, reg
, freq
);
3137 NV_ERROR(dev
, "PLL type 0x%02x not found in PLL limits table", type
);
3142 init_8c(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3145 * INIT_8C opcode: 0x8C ('')
3155 init_8d(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3158 * INIT_8D opcode: 0x8D ('')
3168 init_gpio(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3171 * INIT_GPIO opcode: 0x8E ('')
3173 * offset (8 bit): opcode
3175 * Loop over all entries in the DCB GPIO table, and initialise
3176 * each GPIO according to various values listed in each entry
3179 if (iexec
->execute
&& bios
->execute
)
3180 nouveau_gpio_reset(bios
->dev
);
3186 init_ram_restrict_zm_reg_group(struct nvbios
*bios
, uint16_t offset
,
3187 struct init_exec
*iexec
)
3190 * INIT_RAM_RESTRICT_ZM_REG_GROUP opcode: 0x8F ('')
3192 * offset (8 bit): opcode
3193 * offset + 1 (32 bit): reg
3194 * offset + 5 (8 bit): regincrement
3195 * offset + 6 (8 bit): count
3196 * offset + 7 (32 bit): value 1,1
3199 * Use the RAMCFG strap of PEXTDEV_BOOT as an index into the table at
3200 * ram_restrict_table_ptr. The value read from here is 'n', and
3201 * "value 1,n" gets written to "reg". This repeats "count" times and on
3202 * each iteration 'm', "reg" increases by "regincrement" and
3203 * "value m,n" is used. The extent of n is limited by a number read
3204 * from the 'M' BIT table, herein called "blocklen"
3207 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3208 uint8_t regincrement
= bios
->data
[offset
+ 5];
3209 uint8_t count
= bios
->data
[offset
+ 6];
3210 uint32_t strap_ramcfg
, data
;
3211 /* previously set by 'M' BIT table */
3212 uint16_t blocklen
= bios
->ram_restrict_group_count
* 4;
3213 int len
= 7 + count
* blocklen
;
3217 /* critical! to know the length of the opcode */;
3220 "0x%04X: Zero block length - has the M table "
3221 "been parsed?\n", offset
);
3225 if (!iexec
->execute
)
3228 strap_ramcfg
= (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) >> 2) & 0xf;
3229 index
= bios
->data
[bios
->ram_restrict_tbl_ptr
+ strap_ramcfg
];
3231 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, RegIncrement: 0x%02X, "
3232 "Count: 0x%02X, StrapRamCfg: 0x%02X, Index: 0x%02X\n",
3233 offset
, reg
, regincrement
, count
, strap_ramcfg
, index
);
3235 for (i
= 0; i
< count
; i
++) {
3236 data
= ROM32(bios
->data
[offset
+ 7 + index
* 4 + blocklen
* i
]);
3238 bios_wr32(bios
, reg
, data
);
3240 reg
+= regincrement
;
3247 init_copy_zm_reg(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3250 * INIT_COPY_ZM_REG opcode: 0x90 ('')
3252 * offset (8 bit): opcode
3253 * offset + 1 (32 bit): src reg
3254 * offset + 5 (32 bit): dst reg
3256 * Put contents of "src reg" into "dst reg"
3259 uint32_t srcreg
= ROM32(bios
->data
[offset
+ 1]);
3260 uint32_t dstreg
= ROM32(bios
->data
[offset
+ 5]);
3262 if (!iexec
->execute
)
3265 bios_wr32(bios
, dstreg
, bios_rd32(bios
, srcreg
));
3271 init_zm_reg_group_addr_latched(struct nvbios
*bios
, uint16_t offset
,
3272 struct init_exec
*iexec
)
3275 * INIT_ZM_REG_GROUP_ADDRESS_LATCHED opcode: 0x91 ('')
3277 * offset (8 bit): opcode
3278 * offset + 1 (32 bit): dst reg
3279 * offset + 5 (8 bit): count
3280 * offset + 6 (32 bit): data 1
3283 * For each of "count" values write "data n" to "dst reg"
3286 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3287 uint8_t count
= bios
->data
[offset
+ 5];
3288 int len
= 6 + count
* 4;
3291 if (!iexec
->execute
)
3294 for (i
= 0; i
< count
; i
++) {
3295 uint32_t data
= ROM32(bios
->data
[offset
+ 6 + 4 * i
]);
3296 bios_wr32(bios
, reg
, data
);
3303 init_reserved(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3306 * INIT_RESERVED opcode: 0x92 ('')
3308 * offset (8 bit): opcode
3310 * Seemingly does nothing
3317 init_96(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3320 * INIT_96 opcode: 0x96 ('')
3322 * offset (8 bit): opcode
3323 * offset + 1 (32 bit): sreg
3324 * offset + 5 (8 bit): sshift
3325 * offset + 6 (8 bit): smask
3326 * offset + 7 (8 bit): index
3327 * offset + 8 (32 bit): reg
3328 * offset + 12 (32 bit): mask
3329 * offset + 16 (8 bit): shift
3333 uint16_t xlatptr
= bios
->init96_tbl_ptr
+ (bios
->data
[offset
+ 7] * 2);
3334 uint32_t reg
= ROM32(bios
->data
[offset
+ 8]);
3335 uint32_t mask
= ROM32(bios
->data
[offset
+ 12]);
3338 val
= bios_rd32(bios
, ROM32(bios
->data
[offset
+ 1]));
3339 if (bios
->data
[offset
+ 5] < 0x80)
3340 val
>>= bios
->data
[offset
+ 5];
3342 val
<<= (0x100 - bios
->data
[offset
+ 5]);
3343 val
&= bios
->data
[offset
+ 6];
3345 val
= bios
->data
[ROM16(bios
->data
[xlatptr
]) + val
];
3346 val
<<= bios
->data
[offset
+ 16];
3348 if (!iexec
->execute
)
3351 bios_wr32(bios
, reg
, (bios_rd32(bios
, reg
) & mask
) | val
);
3356 init_97(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3359 * INIT_97 opcode: 0x97 ('')
3361 * offset (8 bit): opcode
3362 * offset + 1 (32 bit): register
3363 * offset + 5 (32 bit): mask
3364 * offset + 9 (32 bit): value
3366 * Adds "value" to "register" preserving the fields specified
3370 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3371 uint32_t mask
= ROM32(bios
->data
[offset
+ 5]);
3372 uint32_t add
= ROM32(bios
->data
[offset
+ 9]);
3375 val
= bios_rd32(bios
, reg
);
3376 val
= (val
& mask
) | ((val
+ add
) & ~mask
);
3378 if (!iexec
->execute
)
3381 bios_wr32(bios
, reg
, val
);
3386 init_auxch(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3389 * INIT_AUXCH opcode: 0x98 ('')
3391 * offset (8 bit): opcode
3392 * offset + 1 (32 bit): address
3393 * offset + 5 (8 bit): count
3394 * offset + 6 (8 bit): mask 0
3395 * offset + 7 (8 bit): data 0
3400 struct drm_device
*dev
= bios
->dev
;
3401 struct nouveau_i2c_chan
*auxch
;
3402 uint32_t addr
= ROM32(bios
->data
[offset
+ 1]);
3403 uint8_t count
= bios
->data
[offset
+ 5];
3404 int len
= 6 + count
* 2;
3407 if (!bios
->display
.output
) {
3408 NV_ERROR(dev
, "INIT_AUXCH: no active output\n");
3412 auxch
= init_i2c_device_find(dev
, bios
->display
.output
->i2c_index
);
3414 NV_ERROR(dev
, "INIT_AUXCH: couldn't get auxch %d\n",
3415 bios
->display
.output
->i2c_index
);
3419 if (!iexec
->execute
)
3423 for (i
= 0; i
< count
; i
++, offset
+= 2) {
3426 ret
= nouveau_dp_auxch(auxch
, 9, addr
, &data
, 1);
3428 NV_ERROR(dev
, "INIT_AUXCH: rd auxch fail %d\n", ret
);
3432 data
&= bios
->data
[offset
+ 0];
3433 data
|= bios
->data
[offset
+ 1];
3435 ret
= nouveau_dp_auxch(auxch
, 8, addr
, &data
, 1);
3437 NV_ERROR(dev
, "INIT_AUXCH: wr auxch fail %d\n", ret
);
3446 init_zm_auxch(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3449 * INIT_ZM_AUXCH opcode: 0x99 ('')
3451 * offset (8 bit): opcode
3452 * offset + 1 (32 bit): address
3453 * offset + 5 (8 bit): count
3454 * offset + 6 (8 bit): data 0
3459 struct drm_device
*dev
= bios
->dev
;
3460 struct nouveau_i2c_chan
*auxch
;
3461 uint32_t addr
= ROM32(bios
->data
[offset
+ 1]);
3462 uint8_t count
= bios
->data
[offset
+ 5];
3463 int len
= 6 + count
;
3466 if (!bios
->display
.output
) {
3467 NV_ERROR(dev
, "INIT_ZM_AUXCH: no active output\n");
3471 auxch
= init_i2c_device_find(dev
, bios
->display
.output
->i2c_index
);
3473 NV_ERROR(dev
, "INIT_ZM_AUXCH: couldn't get auxch %d\n",
3474 bios
->display
.output
->i2c_index
);
3478 if (!iexec
->execute
)
3482 for (i
= 0; i
< count
; i
++, offset
++) {
3483 ret
= nouveau_dp_auxch(auxch
, 8, addr
, &bios
->data
[offset
], 1);
3485 NV_ERROR(dev
, "INIT_ZM_AUXCH: wr auxch fail %d\n", ret
);
3494 init_i2c_long_if(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3497 * INIT_I2C_LONG_IF opcode: 0x9A ('')
3499 * offset (8 bit): opcode
3500 * offset + 1 (8 bit): DCB I2C table entry index
3501 * offset + 2 (8 bit): I2C slave address
3502 * offset + 3 (16 bit): I2C register
3503 * offset + 5 (8 bit): mask
3504 * offset + 6 (8 bit): data
3506 * Read the register given by "I2C register" on the device addressed
3507 * by "I2C slave address" on the I2C bus given by "DCB I2C table
3508 * entry index". Compare the result AND "mask" to "data".
3509 * If they're not equal, skip subsequent opcodes until condition is
3510 * inverted (INIT_NOT), or we hit INIT_RESUME
3513 uint8_t i2c_index
= bios
->data
[offset
+ 1];
3514 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
3515 uint8_t reglo
= bios
->data
[offset
+ 3];
3516 uint8_t reghi
= bios
->data
[offset
+ 4];
3517 uint8_t mask
= bios
->data
[offset
+ 5];
3518 uint8_t data
= bios
->data
[offset
+ 6];
3519 struct nouveau_i2c_chan
*chan
;
3520 uint8_t buf0
[2] = { reghi
, reglo
};
3522 struct i2c_msg msg
[2] = {
3523 { i2c_address
, 0, 1, buf0
},
3524 { i2c_address
, I2C_M_RD
, 1, buf1
},
3528 /* no execute check by design */
3530 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X\n",
3531 offset
, i2c_index
, i2c_address
);
3533 chan
= init_i2c_device_find(bios
->dev
, i2c_index
);
3538 ret
= i2c_transfer(&chan
->adapter
, msg
, 2);
3540 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X:0x%02X, Value: [no device], "
3541 "Mask: 0x%02X, Data: 0x%02X\n",
3542 offset
, reghi
, reglo
, mask
, data
);
3547 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X:0x%02X, Value: 0x%02X, "
3548 "Mask: 0x%02X, Data: 0x%02X\n",
3549 offset
, reghi
, reglo
, buf1
[0], mask
, data
);
3551 iexec
->execute
= ((buf1
[0] & mask
) == data
);
3556 static struct init_tbl_entry itbl_entry
[] = {
3557 /* command name , id , length , offset , mult , command handler */
3558 /* INIT_PROG (0x31, 15, 10, 4) removed due to no example of use */
3559 { "INIT_IO_RESTRICT_PROG" , 0x32, init_io_restrict_prog
},
3560 { "INIT_REPEAT" , 0x33, init_repeat
},
3561 { "INIT_IO_RESTRICT_PLL" , 0x34, init_io_restrict_pll
},
3562 { "INIT_END_REPEAT" , 0x36, init_end_repeat
},
3563 { "INIT_COPY" , 0x37, init_copy
},
3564 { "INIT_NOT" , 0x38, init_not
},
3565 { "INIT_IO_FLAG_CONDITION" , 0x39, init_io_flag_condition
},
3566 { "INIT_DP_CONDITION" , 0x3A, init_dp_condition
},
3567 { "INIT_OP_3B" , 0x3B, init_op_3b
},
3568 { "INIT_OP_3C" , 0x3C, init_op_3c
},
3569 { "INIT_INDEX_ADDRESS_LATCHED" , 0x49, init_idx_addr_latched
},
3570 { "INIT_IO_RESTRICT_PLL2" , 0x4A, init_io_restrict_pll2
},
3571 { "INIT_PLL2" , 0x4B, init_pll2
},
3572 { "INIT_I2C_BYTE" , 0x4C, init_i2c_byte
},
3573 { "INIT_ZM_I2C_BYTE" , 0x4D, init_zm_i2c_byte
},
3574 { "INIT_ZM_I2C" , 0x4E, init_zm_i2c
},
3575 { "INIT_TMDS" , 0x4F, init_tmds
},
3576 { "INIT_ZM_TMDS_GROUP" , 0x50, init_zm_tmds_group
},
3577 { "INIT_CR_INDEX_ADDRESS_LATCHED" , 0x51, init_cr_idx_adr_latch
},
3578 { "INIT_CR" , 0x52, init_cr
},
3579 { "INIT_ZM_CR" , 0x53, init_zm_cr
},
3580 { "INIT_ZM_CR_GROUP" , 0x54, init_zm_cr_group
},
3581 { "INIT_CONDITION_TIME" , 0x56, init_condition_time
},
3582 { "INIT_LTIME" , 0x57, init_ltime
},
3583 { "INIT_ZM_REG_SEQUENCE" , 0x58, init_zm_reg_sequence
},
3584 /* INIT_INDIRECT_REG (0x5A, 7, 0, 0) removed due to no example of use */
3585 { "INIT_SUB_DIRECT" , 0x5B, init_sub_direct
},
3586 { "INIT_JUMP" , 0x5C, init_jump
},
3587 { "INIT_I2C_IF" , 0x5E, init_i2c_if
},
3588 { "INIT_COPY_NV_REG" , 0x5F, init_copy_nv_reg
},
3589 { "INIT_ZM_INDEX_IO" , 0x62, init_zm_index_io
},
3590 { "INIT_COMPUTE_MEM" , 0x63, init_compute_mem
},
3591 { "INIT_RESET" , 0x65, init_reset
},
3592 { "INIT_CONFIGURE_MEM" , 0x66, init_configure_mem
},
3593 { "INIT_CONFIGURE_CLK" , 0x67, init_configure_clk
},
3594 { "INIT_CONFIGURE_PREINIT" , 0x68, init_configure_preinit
},
3595 { "INIT_IO" , 0x69, init_io
},
3596 { "INIT_SUB" , 0x6B, init_sub
},
3597 { "INIT_RAM_CONDITION" , 0x6D, init_ram_condition
},
3598 { "INIT_NV_REG" , 0x6E, init_nv_reg
},
3599 { "INIT_MACRO" , 0x6F, init_macro
},
3600 { "INIT_DONE" , 0x71, init_done
},
3601 { "INIT_RESUME" , 0x72, init_resume
},
3602 /* INIT_RAM_CONDITION2 (0x73, 9, 0, 0) removed due to no example of use */
3603 { "INIT_TIME" , 0x74, init_time
},
3604 { "INIT_CONDITION" , 0x75, init_condition
},
3605 { "INIT_IO_CONDITION" , 0x76, init_io_condition
},
3606 { "INIT_INDEX_IO" , 0x78, init_index_io
},
3607 { "INIT_PLL" , 0x79, init_pll
},
3608 { "INIT_ZM_REG" , 0x7A, init_zm_reg
},
3609 { "INIT_RAM_RESTRICT_PLL" , 0x87, init_ram_restrict_pll
},
3610 { "INIT_8C" , 0x8C, init_8c
},
3611 { "INIT_8D" , 0x8D, init_8d
},
3612 { "INIT_GPIO" , 0x8E, init_gpio
},
3613 { "INIT_RAM_RESTRICT_ZM_REG_GROUP" , 0x8F, init_ram_restrict_zm_reg_group
},
3614 { "INIT_COPY_ZM_REG" , 0x90, init_copy_zm_reg
},
3615 { "INIT_ZM_REG_GROUP_ADDRESS_LATCHED" , 0x91, init_zm_reg_group_addr_latched
},
3616 { "INIT_RESERVED" , 0x92, init_reserved
},
3617 { "INIT_96" , 0x96, init_96
},
3618 { "INIT_97" , 0x97, init_97
},
3619 { "INIT_AUXCH" , 0x98, init_auxch
},
3620 { "INIT_ZM_AUXCH" , 0x99, init_zm_auxch
},
3621 { "INIT_I2C_LONG_IF" , 0x9A, init_i2c_long_if
},
3625 #define MAX_TABLE_OPS 1000
3628 parse_init_table(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3631 * Parses all commands in an init table.
3633 * We start out executing all commands found in the init table. Some
3634 * opcodes may change the status of iexec->execute to SKIP, which will
3635 * cause the following opcodes to perform no operation until the value
3636 * is changed back to EXECUTE.
3639 int count
= 0, i
, ret
;
3642 /* catch NULL script pointers */
3647 * Loop until INIT_DONE causes us to break out of the loop
3648 * (or until offset > bios length just in case... )
3649 * (and no more than MAX_TABLE_OPS iterations, just in case... )
3651 while ((offset
< bios
->length
) && (count
++ < MAX_TABLE_OPS
)) {
3652 id
= bios
->data
[offset
];
3654 /* Find matching id in itbl_entry */
3655 for (i
= 0; itbl_entry
[i
].name
&& (itbl_entry
[i
].id
!= id
); i
++)
3658 if (!itbl_entry
[i
].name
) {
3660 "0x%04X: Init table command not found: "
3661 "0x%02X\n", offset
, id
);
3665 BIOSLOG(bios
, "0x%04X: [ (0x%02X) - %s ]\n", offset
,
3666 itbl_entry
[i
].id
, itbl_entry
[i
].name
);
3668 /* execute eventual command handler */
3669 ret
= (*itbl_entry
[i
].handler
)(bios
, offset
, iexec
);
3671 NV_ERROR(bios
->dev
, "0x%04X: Failed parsing init "
3672 "table opcode: %s %d\n", offset
,
3673 itbl_entry
[i
].name
, ret
);
3680 * Add the offset of the current command including all data
3681 * of that command. The offset will then be pointing on the
3687 if (offset
>= bios
->length
)
3689 "Offset 0x%04X greater than known bios image length. "
3690 "Corrupt image?\n", offset
);
3691 if (count
>= MAX_TABLE_OPS
)
3693 "More than %d opcodes to a table is unlikely, "
3694 "is the bios image corrupt?\n", MAX_TABLE_OPS
);
3700 parse_init_tables(struct nvbios
*bios
)
3702 /* Loops and calls parse_init_table() for each present table. */
3706 struct init_exec iexec
= {true, false};
3708 if (bios
->old_style_init
) {
3709 if (bios
->init_script_tbls_ptr
)
3710 parse_init_table(bios
, bios
->init_script_tbls_ptr
, &iexec
);
3711 if (bios
->extra_init_script_tbl_ptr
)
3712 parse_init_table(bios
, bios
->extra_init_script_tbl_ptr
, &iexec
);
3717 while ((table
= ROM16(bios
->data
[bios
->init_script_tbls_ptr
+ i
]))) {
3719 "Parsing VBIOS init table %d at offset 0x%04X\n",
3721 BIOSLOG(bios
, "0x%04X: ------ Executing following commands ------\n", table
);
3723 parse_init_table(bios
, table
, &iexec
);
3728 static uint16_t clkcmptable(struct nvbios
*bios
, uint16_t clktable
, int pxclk
)
3730 int compare_record_len
, i
= 0;
3731 uint16_t compareclk
, scriptptr
= 0;
3733 if (bios
->major_version
< 5) /* pre BIT */
3734 compare_record_len
= 3;
3736 compare_record_len
= 4;
3739 compareclk
= ROM16(bios
->data
[clktable
+ compare_record_len
* i
]);
3740 if (pxclk
>= compareclk
* 10) {
3741 if (bios
->major_version
< 5) {
3742 uint8_t tmdssub
= bios
->data
[clktable
+ 2 + compare_record_len
* i
];
3743 scriptptr
= ROM16(bios
->data
[bios
->init_script_tbls_ptr
+ tmdssub
* 2]);
3745 scriptptr
= ROM16(bios
->data
[clktable
+ 2 + compare_record_len
* i
]);
3749 } while (compareclk
);
3755 run_digital_op_script(struct drm_device
*dev
, uint16_t scriptptr
,
3756 struct dcb_entry
*dcbent
, int head
, bool dl
)
3758 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
3759 struct nvbios
*bios
= &dev_priv
->vbios
;
3760 struct init_exec iexec
= {true, false};
3762 NV_TRACE(dev
, "0x%04X: Parsing digital output script table\n",
3764 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, NV_CIO_CRE_44
,
3765 head
? NV_CIO_CRE_44_HEADB
: NV_CIO_CRE_44_HEADA
);
3766 /* note: if dcb entries have been merged, index may be misleading */
3767 NVWriteVgaCrtc5758(dev
, head
, 0, dcbent
->index
);
3768 parse_init_table(bios
, scriptptr
, &iexec
);
3770 nv04_dfp_bind_head(dev
, dcbent
, head
, dl
);
3773 static int call_lvds_manufacturer_script(struct drm_device
*dev
, struct dcb_entry
*dcbent
, int head
, enum LVDS_script script
)
3775 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
3776 struct nvbios
*bios
= &dev_priv
->vbios
;
3777 uint8_t sub
= bios
->data
[bios
->fp
.xlated_entry
+ script
] + (bios
->fp
.link_c_increment
&& dcbent
->or & OUTPUT_C
? 1 : 0);
3778 uint16_t scriptofs
= ROM16(bios
->data
[bios
->init_script_tbls_ptr
+ sub
* 2]);
3780 if (!bios
->fp
.xlated_entry
|| !sub
|| !scriptofs
)
3783 run_digital_op_script(dev
, scriptofs
, dcbent
, head
, bios
->fp
.dual_link
);
3785 if (script
== LVDS_PANEL_OFF
) {
3786 /* off-on delay in ms */
3787 mdelay(ROM16(bios
->data
[bios
->fp
.xlated_entry
+ 7]));
3790 /* Powerbook specific quirks */
3791 if (script
== LVDS_RESET
&&
3792 (dev
->pci_device
== 0x0179 || dev
->pci_device
== 0x0189 ||
3793 dev
->pci_device
== 0x0329))
3794 nv_write_tmds(dev
, dcbent
->or, 0, 0x02, 0x72);
3800 static int run_lvds_table(struct drm_device
*dev
, struct dcb_entry
*dcbent
, int head
, enum LVDS_script script
, int pxclk
)
3803 * The BIT LVDS table's header has the information to setup the
3804 * necessary registers. Following the standard 4 byte header are:
3805 * A bitmask byte and a dual-link transition pxclk value for use in
3806 * selecting the init script when not using straps; 4 script pointers
3807 * for panel power, selected by output and on/off; and 8 table pointers
3808 * for panel init, the needed one determined by output, and bits in the
3809 * conf byte. These tables are similar to the TMDS tables, consisting
3810 * of a list of pxclks and script pointers.
3812 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
3813 struct nvbios
*bios
= &dev_priv
->vbios
;
3814 unsigned int outputset
= (dcbent
->or == 4) ? 1 : 0;
3815 uint16_t scriptptr
= 0, clktable
;
3818 * For now we assume version 3.0 table - g80 support will need some
3825 case LVDS_BACKLIGHT_ON
:
3827 scriptptr
= ROM16(bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 7 + outputset
* 2]);
3829 case LVDS_BACKLIGHT_OFF
:
3830 case LVDS_PANEL_OFF
:
3831 scriptptr
= ROM16(bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 11 + outputset
* 2]);
3834 clktable
= bios
->fp
.lvdsmanufacturerpointer
+ 15;
3835 if (dcbent
->or == 4)
3838 if (dcbent
->lvdsconf
.use_straps_for_mode
) {
3839 if (bios
->fp
.dual_link
)
3841 if (bios
->fp
.if_is_24bit
)
3845 int cmpval_24bit
= (dcbent
->or == 4) ? 4 : 1;
3847 if (bios
->fp
.dual_link
) {
3852 if (bios
->fp
.strapless_is_24bit
& cmpval_24bit
)
3856 clktable
= ROM16(bios
->data
[clktable
]);
3858 NV_ERROR(dev
, "Pixel clock comparison table not found\n");
3861 scriptptr
= clkcmptable(bios
, clktable
, pxclk
);
3865 NV_ERROR(dev
, "LVDS output init script not found\n");
3868 run_digital_op_script(dev
, scriptptr
, dcbent
, head
, bios
->fp
.dual_link
);
3873 int call_lvds_script(struct drm_device
*dev
, struct dcb_entry
*dcbent
, int head
, enum LVDS_script script
, int pxclk
)
3876 * LVDS operations are multiplexed in an effort to present a single API
3877 * which works with two vastly differing underlying structures.
3878 * This acts as the demux
3881 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
3882 struct nvbios
*bios
= &dev_priv
->vbios
;
3883 uint8_t lvds_ver
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
];
3884 uint32_t sel_clk_binding
, sel_clk
;
3887 if (bios
->fp
.last_script_invoc
== (script
<< 1 | head
) || !lvds_ver
||
3888 (lvds_ver
>= 0x30 && script
== LVDS_INIT
))
3891 if (!bios
->fp
.lvds_init_run
) {
3892 bios
->fp
.lvds_init_run
= true;
3893 call_lvds_script(dev
, dcbent
, head
, LVDS_INIT
, pxclk
);
3896 if (script
== LVDS_PANEL_ON
&& bios
->fp
.reset_after_pclk_change
)
3897 call_lvds_script(dev
, dcbent
, head
, LVDS_RESET
, pxclk
);
3898 if (script
== LVDS_RESET
&& bios
->fp
.power_off_for_reset
)
3899 call_lvds_script(dev
, dcbent
, head
, LVDS_PANEL_OFF
, pxclk
);
3901 NV_TRACE(dev
, "Calling LVDS script %d:\n", script
);
3903 /* don't let script change pll->head binding */
3904 sel_clk_binding
= bios_rd32(bios
, NV_PRAMDAC_SEL_CLK
) & 0x50000;
3906 if (lvds_ver
< 0x30)
3907 ret
= call_lvds_manufacturer_script(dev
, dcbent
, head
, script
);
3909 ret
= run_lvds_table(dev
, dcbent
, head
, script
, pxclk
);
3911 bios
->fp
.last_script_invoc
= (script
<< 1 | head
);
3913 sel_clk
= NVReadRAMDAC(dev
, 0, NV_PRAMDAC_SEL_CLK
) & ~0x50000;
3914 NVWriteRAMDAC(dev
, 0, NV_PRAMDAC_SEL_CLK
, sel_clk
| sel_clk_binding
);
3915 /* some scripts set a value in NV_PBUS_POWERCTRL_2 and break video overlay */
3916 nvWriteMC(dev
, NV_PBUS_POWERCTRL_2
, 0);
3921 struct lvdstableheader
{
3922 uint8_t lvds_ver
, headerlen
, recordlen
;
3925 static int parse_lvds_manufacturer_table_header(struct drm_device
*dev
, struct nvbios
*bios
, struct lvdstableheader
*lth
)
3928 * BMP version (0xa) LVDS table has a simple header of version and
3929 * record length. The BIT LVDS table has the typical BIT table header:
3930 * version byte, header length byte, record length byte, and a byte for
3931 * the maximum number of records that can be held in the table.
3934 uint8_t lvds_ver
, headerlen
, recordlen
;
3936 memset(lth
, 0, sizeof(struct lvdstableheader
));
3938 if (bios
->fp
.lvdsmanufacturerpointer
== 0x0) {
3939 NV_ERROR(dev
, "Pointer to LVDS manufacturer table invalid\n");
3943 lvds_ver
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
];
3946 case 0x0a: /* pre NV40 */
3948 recordlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 1];
3950 case 0x30: /* NV4x */
3951 headerlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 1];
3952 if (headerlen
< 0x1f) {
3953 NV_ERROR(dev
, "LVDS table header not understood\n");
3956 recordlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 2];
3958 case 0x40: /* G80/G90 */
3959 headerlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 1];
3960 if (headerlen
< 0x7) {
3961 NV_ERROR(dev
, "LVDS table header not understood\n");
3964 recordlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 2];
3968 "LVDS table revision %d.%d not currently supported\n",
3969 lvds_ver
>> 4, lvds_ver
& 0xf);
3973 lth
->lvds_ver
= lvds_ver
;
3974 lth
->headerlen
= headerlen
;
3975 lth
->recordlen
= recordlen
;
3981 get_fp_strap(struct drm_device
*dev
, struct nvbios
*bios
)
3983 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
3986 * The fp strap is normally dictated by the "User Strap" in
3987 * PEXTDEV_BOOT_0[20:16], but on BMP cards when bit 2 of the
3988 * Internal_Flags struct at 0x48 is set, the user strap gets overriden
3989 * by the PCI subsystem ID during POST, but not before the previous user
3990 * strap has been committed to CR58 for CR57=0xf on head A, which may be
3991 * read and used instead
3994 if (bios
->major_version
< 5 && bios
->data
[0x48] & 0x4)
3995 return NVReadVgaCrtc5758(dev
, 0, 0xf) & 0xf;
3997 if (dev_priv
->card_type
>= NV_50
)
3998 return (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) >> 24) & 0xf;
4000 return (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) >> 16) & 0xf;
4003 static int parse_fp_mode_table(struct drm_device
*dev
, struct nvbios
*bios
)
4006 uint8_t fptable_ver
, headerlen
= 0, recordlen
, fpentries
= 0xf, fpindex
;
4007 int ret
, ofs
, fpstrapping
;
4008 struct lvdstableheader lth
;
4010 if (bios
->fp
.fptablepointer
== 0x0) {
4011 /* Apple cards don't have the fp table; the laptops use DDC */
4012 /* The table is also missing on some x86 IGPs */
4014 NV_ERROR(dev
, "Pointer to flat panel table invalid\n");
4016 bios
->digital_min_front_porch
= 0x4b;
4020 fptable
= &bios
->data
[bios
->fp
.fptablepointer
];
4021 fptable_ver
= fptable
[0];
4023 switch (fptable_ver
) {
4025 * BMP version 0x5.0x11 BIOSen have version 1 like tables, but no
4026 * version field, and miss one of the spread spectrum/PWM bytes.
4027 * This could affect early GF2Go parts (not seen any appropriate ROMs
4028 * though). Here we assume that a version of 0x05 matches this case
4029 * (combining with a BMP version check would be better), as the
4030 * common case for the panel type field is 0x0005, and that is in
4031 * fact what we are reading the first byte of.
4033 case 0x05: /* some NV10, 11, 15, 16 */
4037 case 0x10: /* some NV15/16, and NV11+ */
4041 case 0x20: /* NV40+ */
4042 headerlen
= fptable
[1];
4043 recordlen
= fptable
[2];
4044 fpentries
= fptable
[3];
4046 * fptable[4] is the minimum
4047 * RAMDAC_FP_HCRTC -> RAMDAC_FP_HSYNC_START gap
4049 bios
->digital_min_front_porch
= fptable
[4];
4054 "FP table revision %d.%d not currently supported\n",
4055 fptable_ver
>> 4, fptable_ver
& 0xf);
4059 if (!bios
->is_mobile
) /* !mobile only needs digital_min_front_porch */
4062 ret
= parse_lvds_manufacturer_table_header(dev
, bios
, <h
);
4066 if (lth
.lvds_ver
== 0x30 || lth
.lvds_ver
== 0x40) {
4067 bios
->fp
.fpxlatetableptr
= bios
->fp
.lvdsmanufacturerpointer
+
4069 bios
->fp
.xlatwidth
= lth
.recordlen
;
4071 if (bios
->fp
.fpxlatetableptr
== 0x0) {
4072 NV_ERROR(dev
, "Pointer to flat panel xlat table invalid\n");
4076 fpstrapping
= get_fp_strap(dev
, bios
);
4078 fpindex
= bios
->data
[bios
->fp
.fpxlatetableptr
+
4079 fpstrapping
* bios
->fp
.xlatwidth
];
4081 if (fpindex
> fpentries
) {
4082 NV_ERROR(dev
, "Bad flat panel table index\n");
4086 /* nv4x cards need both a strap value and fpindex of 0xf to use DDC */
4087 if (lth
.lvds_ver
> 0x10)
4088 bios
->fp_no_ddc
= fpstrapping
!= 0xf || fpindex
!= 0xf;
4091 * If either the strap or xlated fpindex value are 0xf there is no
4092 * panel using a strap-derived bios mode present. this condition
4093 * includes, but is different from, the DDC panel indicator above
4095 if (fpstrapping
== 0xf || fpindex
== 0xf)
4098 bios
->fp
.mode_ptr
= bios
->fp
.fptablepointer
+ headerlen
+
4099 recordlen
* fpindex
+ ofs
;
4101 NV_TRACE(dev
, "BIOS FP mode: %dx%d (%dkHz pixel clock)\n",
4102 ROM16(bios
->data
[bios
->fp
.mode_ptr
+ 11]) + 1,
4103 ROM16(bios
->data
[bios
->fp
.mode_ptr
+ 25]) + 1,
4104 ROM16(bios
->data
[bios
->fp
.mode_ptr
+ 7]) * 10);
4109 bool nouveau_bios_fp_mode(struct drm_device
*dev
, struct drm_display_mode
*mode
)
4111 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4112 struct nvbios
*bios
= &dev_priv
->vbios
;
4113 uint8_t *mode_entry
= &bios
->data
[bios
->fp
.mode_ptr
];
4115 if (!mode
) /* just checking whether we can produce a mode */
4116 return bios
->fp
.mode_ptr
;
4118 memset(mode
, 0, sizeof(struct drm_display_mode
));
4120 * For version 1.0 (version in byte 0):
4121 * bytes 1-2 are "panel type", including bits on whether Colour/mono,
4122 * single/dual link, and type (TFT etc.)
4123 * bytes 3-6 are bits per colour in RGBX
4125 mode
->clock
= ROM16(mode_entry
[7]) * 10;
4126 /* bytes 9-10 is HActive */
4127 mode
->hdisplay
= ROM16(mode_entry
[11]) + 1;
4129 * bytes 13-14 is HValid Start
4130 * bytes 15-16 is HValid End
4132 mode
->hsync_start
= ROM16(mode_entry
[17]) + 1;
4133 mode
->hsync_end
= ROM16(mode_entry
[19]) + 1;
4134 mode
->htotal
= ROM16(mode_entry
[21]) + 1;
4135 /* bytes 23-24, 27-30 similarly, but vertical */
4136 mode
->vdisplay
= ROM16(mode_entry
[25]) + 1;
4137 mode
->vsync_start
= ROM16(mode_entry
[31]) + 1;
4138 mode
->vsync_end
= ROM16(mode_entry
[33]) + 1;
4139 mode
->vtotal
= ROM16(mode_entry
[35]) + 1;
4140 mode
->flags
|= (mode_entry
[37] & 0x10) ?
4141 DRM_MODE_FLAG_PHSYNC
: DRM_MODE_FLAG_NHSYNC
;
4142 mode
->flags
|= (mode_entry
[37] & 0x1) ?
4143 DRM_MODE_FLAG_PVSYNC
: DRM_MODE_FLAG_NVSYNC
;
4145 * bytes 38-39 relate to spread spectrum settings
4146 * bytes 40-43 are something to do with PWM
4149 mode
->status
= MODE_OK
;
4150 mode
->type
= DRM_MODE_TYPE_DRIVER
| DRM_MODE_TYPE_PREFERRED
;
4151 drm_mode_set_name(mode
);
4152 return bios
->fp
.mode_ptr
;
4155 int nouveau_bios_parse_lvds_table(struct drm_device
*dev
, int pxclk
, bool *dl
, bool *if_is_24bit
)
4158 * The LVDS table header is (mostly) described in
4159 * parse_lvds_manufacturer_table_header(): the BIT header additionally
4160 * contains the dual-link transition pxclk (in 10s kHz), at byte 5 - if
4161 * straps are not being used for the panel, this specifies the frequency
4162 * at which modes should be set up in the dual link style.
4164 * Following the header, the BMP (ver 0xa) table has several records,
4165 * indexed by a separate xlat table, indexed in turn by the fp strap in
4166 * EXTDEV_BOOT. Each record had a config byte, followed by 6 script
4167 * numbers for use by INIT_SUB which controlled panel init and power,
4168 * and finally a dword of ms to sleep between power off and on
4171 * In the BIT versions, the table following the header serves as an
4172 * integrated config and xlat table: the records in the table are
4173 * indexed by the FP strap nibble in EXTDEV_BOOT, and each record has
4174 * two bytes - the first as a config byte, the second for indexing the
4175 * fp mode table pointed to by the BIT 'D' table
4177 * DDC is not used until after card init, so selecting the correct table
4178 * entry and setting the dual link flag for EDID equipped panels,
4179 * requiring tests against the native-mode pixel clock, cannot be done
4180 * until later, when this function should be called with non-zero pxclk
4182 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4183 struct nvbios
*bios
= &dev_priv
->vbios
;
4184 int fpstrapping
= get_fp_strap(dev
, bios
), lvdsmanufacturerindex
= 0;
4185 struct lvdstableheader lth
;
4187 int ret
, chip_version
= bios
->chip_version
;
4189 ret
= parse_lvds_manufacturer_table_header(dev
, bios
, <h
);
4193 switch (lth
.lvds_ver
) {
4194 case 0x0a: /* pre NV40 */
4195 lvdsmanufacturerindex
= bios
->data
[
4196 bios
->fp
.fpxlatemanufacturertableptr
+
4199 /* we're done if this isn't the EDID panel case */
4203 if (chip_version
< 0x25) {
4206 * It seems the old style lvds script pointer is reused
4207 * to select 18/24 bit colour depth for EDID panels.
4209 lvdsmanufacturerindex
=
4210 (bios
->legacy
.lvds_single_a_script_ptr
& 1) ?
4212 if (pxclk
>= bios
->fp
.duallink_transition_clk
)
4213 lvdsmanufacturerindex
++;
4214 } else if (chip_version
< 0x30) {
4215 /* nv28 behaviour (off-chip encoder)
4217 * nv28 does a complex dance of first using byte 121 of
4218 * the EDID to choose the lvdsmanufacturerindex, then
4219 * later attempting to match the EDID manufacturer and
4220 * product IDs in a table (signature 'pidt' (panel id
4221 * table?)), setting an lvdsmanufacturerindex of 0 and
4222 * an fp strap of the match index (or 0xf if none)
4224 lvdsmanufacturerindex
= 0;
4226 /* nv31, nv34 behaviour */
4227 lvdsmanufacturerindex
= 0;
4228 if (pxclk
>= bios
->fp
.duallink_transition_clk
)
4229 lvdsmanufacturerindex
= 2;
4230 if (pxclk
>= 140000)
4231 lvdsmanufacturerindex
= 3;
4235 * nvidia set the high nibble of (cr57=f, cr58) to
4236 * lvdsmanufacturerindex in this case; we don't
4239 case 0x30: /* NV4x */
4240 case 0x40: /* G80/G90 */
4241 lvdsmanufacturerindex
= fpstrapping
;
4244 NV_ERROR(dev
, "LVDS table revision not currently supported\n");
4248 lvdsofs
= bios
->fp
.xlated_entry
= bios
->fp
.lvdsmanufacturerpointer
+ lth
.headerlen
+ lth
.recordlen
* lvdsmanufacturerindex
;
4249 switch (lth
.lvds_ver
) {
4251 bios
->fp
.power_off_for_reset
= bios
->data
[lvdsofs
] & 1;
4252 bios
->fp
.reset_after_pclk_change
= bios
->data
[lvdsofs
] & 2;
4253 bios
->fp
.dual_link
= bios
->data
[lvdsofs
] & 4;
4254 bios
->fp
.link_c_increment
= bios
->data
[lvdsofs
] & 8;
4255 *if_is_24bit
= bios
->data
[lvdsofs
] & 16;
4260 * No sign of the "power off for reset" or "reset for panel
4261 * on" bits, but it's safer to assume we should
4263 bios
->fp
.power_off_for_reset
= true;
4264 bios
->fp
.reset_after_pclk_change
= true;
4267 * It's ok lvdsofs is wrong for nv4x edid case; dual_link is
4268 * over-written, and if_is_24bit isn't used
4270 bios
->fp
.dual_link
= bios
->data
[lvdsofs
] & 1;
4271 bios
->fp
.if_is_24bit
= bios
->data
[lvdsofs
] & 2;
4272 bios
->fp
.strapless_is_24bit
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 4];
4273 bios
->fp
.duallink_transition_clk
= ROM16(bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 5]) * 10;
4277 /* set dual_link flag for EDID case */
4278 if (pxclk
&& (chip_version
< 0x25 || chip_version
> 0x28))
4279 bios
->fp
.dual_link
= (pxclk
>= bios
->fp
.duallink_transition_clk
);
4281 *dl
= bios
->fp
.dual_link
;
4286 /* BIT 'U'/'d' table encoder subtables have hashes matching them to
4287 * a particular set of encoders.
4289 * This function returns true if a particular DCB entry matches.
4292 bios_encoder_match(struct dcb_entry
*dcb
, u32 hash
)
4294 if ((hash
& 0x000000f0) != (dcb
->location
<< 4))
4296 if ((hash
& 0x0000000f) != dcb
->type
)
4298 if (!(hash
& (dcb
->or << 16)))
4301 switch (dcb
->type
) {
4305 if (hash
& 0x00c00000) {
4306 if (!(hash
& (dcb
->sorconf
.link
<< 22)))
4315 nouveau_bios_run_display_table(struct drm_device
*dev
, u16 type
, int pclk
,
4316 struct dcb_entry
*dcbent
, int crtc
)
4319 * The display script table is located by the BIT 'U' table.
4321 * It contains an array of pointers to various tables describing
4322 * a particular output type. The first 32-bits of the output
4323 * tables contains similar information to a DCB entry, and is
4324 * used to decide whether that particular table is suitable for
4325 * the output you want to access.
4327 * The "record header length" field here seems to indicate the
4328 * offset of the first configuration entry in the output tables.
4329 * This is 10 on most cards I've seen, but 12 has been witnessed
4330 * on DP cards, and there's another script pointer within the
4333 * offset + 0 ( 8 bits): version
4334 * offset + 1 ( 8 bits): header length
4335 * offset + 2 ( 8 bits): record length
4336 * offset + 3 ( 8 bits): number of records
4337 * offset + 4 ( 8 bits): record header length
4338 * offset + 5 (16 bits): pointer to first output script table
4341 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4342 struct nvbios
*bios
= &dev_priv
->vbios
;
4343 uint8_t *table
= &bios
->data
[bios
->display
.script_table_ptr
];
4344 uint8_t *otable
= NULL
;
4348 if (!bios
->display
.script_table_ptr
) {
4349 NV_ERROR(dev
, "No pointer to output script table\n");
4354 * Nothing useful has been in any of the pre-2.0 tables I've seen,
4355 * so until they are, we really don't need to care.
4357 if (table
[0] < 0x20)
4360 if (table
[0] != 0x20 && table
[0] != 0x21) {
4361 NV_ERROR(dev
, "Output script table version 0x%02x unknown\n",
4367 * The output script tables describing a particular output type
4370 * offset + 0 (32 bits): output this table matches (hash of DCB)
4371 * offset + 4 ( 8 bits): unknown
4372 * offset + 5 ( 8 bits): number of configurations
4373 * offset + 6 (16 bits): pointer to some script
4374 * offset + 8 (16 bits): pointer to some script
4377 * offset + 10 : configuration 0
4380 * offset + 10 : pointer to some script
4381 * offset + 12 : configuration 0
4383 * Each config entry is as follows:
4385 * offset + 0 (16 bits): unknown, assumed to be a match value
4386 * offset + 2 (16 bits): pointer to script table (clock set?)
4387 * offset + 4 (16 bits): pointer to script table (reset?)
4389 * There doesn't appear to be a count value to say how many
4390 * entries exist in each script table, instead, a 0 value in
4391 * the first 16-bit word seems to indicate both the end of the
4392 * list and the default entry. The second 16-bit word in the
4393 * script tables is a pointer to the script to execute.
4396 NV_DEBUG_KMS(dev
, "Searching for output entry for %d %d %d\n",
4397 dcbent
->type
, dcbent
->location
, dcbent
->or);
4398 for (i
= 0; i
< table
[3]; i
++) {
4399 otable
= ROMPTR(dev
, table
[table
[1] + (i
* table
[2])]);
4400 if (otable
&& bios_encoder_match(dcbent
, ROM32(otable
[0])))
4405 NV_DEBUG_KMS(dev
, "failed to match any output table\n");
4409 if (pclk
< -2 || pclk
> 0) {
4410 /* Try to find matching script table entry */
4411 for (i
= 0; i
< otable
[5]; i
++) {
4412 if (ROM16(otable
[table
[4] + i
*6]) == type
)
4416 if (i
== otable
[5]) {
4417 NV_ERROR(dev
, "Table 0x%04x not found for %d/%d, "
4419 type
, dcbent
->type
, dcbent
->or);
4425 script
= ROM16(otable
[6]);
4427 NV_DEBUG_KMS(dev
, "output script 0 not found\n");
4431 NV_DEBUG_KMS(dev
, "0x%04X: parsing output script 0\n", script
);
4432 nouveau_bios_run_init_table(dev
, script
, dcbent
, crtc
);
4435 script
= ROM16(otable
[8]);
4437 NV_DEBUG_KMS(dev
, "output script 1 not found\n");
4441 NV_DEBUG_KMS(dev
, "0x%04X: parsing output script 1\n", script
);
4442 nouveau_bios_run_init_table(dev
, script
, dcbent
, crtc
);
4446 script
= ROM16(otable
[10]);
4450 NV_DEBUG_KMS(dev
, "output script 2 not found\n");
4454 NV_DEBUG_KMS(dev
, "0x%04X: parsing output script 2\n", script
);
4455 nouveau_bios_run_init_table(dev
, script
, dcbent
, crtc
);
4458 script
= ROM16(otable
[table
[4] + i
*6 + 2]);
4460 script
= clkcmptable(bios
, script
, pclk
);
4462 NV_DEBUG_KMS(dev
, "clock script 0 not found\n");
4466 NV_DEBUG_KMS(dev
, "0x%04X: parsing clock script 0\n", script
);
4467 nouveau_bios_run_init_table(dev
, script
, dcbent
, crtc
);
4470 script
= ROM16(otable
[table
[4] + i
*6 + 4]);
4472 script
= clkcmptable(bios
, script
, -pclk
);
4474 NV_DEBUG_KMS(dev
, "clock script 1 not found\n");
4478 NV_DEBUG_KMS(dev
, "0x%04X: parsing clock script 1\n", script
);
4479 nouveau_bios_run_init_table(dev
, script
, dcbent
, crtc
);
4486 int run_tmds_table(struct drm_device
*dev
, struct dcb_entry
*dcbent
, int head
, int pxclk
)
4489 * the pxclk parameter is in kHz
4491 * This runs the TMDS regs setting code found on BIT bios cards
4493 * For ffs(or) == 1 use the first table, for ffs(or) == 2 and
4494 * ffs(or) == 3, use the second.
4497 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4498 struct nvbios
*bios
= &dev_priv
->vbios
;
4499 int cv
= bios
->chip_version
;
4500 uint16_t clktable
= 0, scriptptr
;
4501 uint32_t sel_clk_binding
, sel_clk
;
4503 /* pre-nv17 off-chip tmds uses scripts, post nv17 doesn't */
4504 if (cv
>= 0x17 && cv
!= 0x1a && cv
!= 0x20 &&
4505 dcbent
->location
!= DCB_LOC_ON_CHIP
)
4508 switch (ffs(dcbent
->or)) {
4510 clktable
= bios
->tmds
.output0_script_ptr
;
4514 clktable
= bios
->tmds
.output1_script_ptr
;
4519 NV_ERROR(dev
, "Pixel clock comparison table not found\n");
4523 scriptptr
= clkcmptable(bios
, clktable
, pxclk
);
4526 NV_ERROR(dev
, "TMDS output init script not found\n");
4530 /* don't let script change pll->head binding */
4531 sel_clk_binding
= bios_rd32(bios
, NV_PRAMDAC_SEL_CLK
) & 0x50000;
4532 run_digital_op_script(dev
, scriptptr
, dcbent
, head
, pxclk
>= 165000);
4533 sel_clk
= NVReadRAMDAC(dev
, 0, NV_PRAMDAC_SEL_CLK
) & ~0x50000;
4534 NVWriteRAMDAC(dev
, 0, NV_PRAMDAC_SEL_CLK
, sel_clk
| sel_clk_binding
);
4539 struct pll_mapping
{
4544 static struct pll_mapping nv04_pll_mapping
[] = {
4545 { PLL_CORE
, NV_PRAMDAC_NVPLL_COEFF
},
4546 { PLL_MEMORY
, NV_PRAMDAC_MPLL_COEFF
},
4547 { PLL_VPLL0
, NV_PRAMDAC_VPLL_COEFF
},
4548 { PLL_VPLL1
, NV_RAMDAC_VPLL2
},
4552 static struct pll_mapping nv40_pll_mapping
[] = {
4553 { PLL_CORE
, 0x004000 },
4554 { PLL_MEMORY
, 0x004020 },
4555 { PLL_VPLL0
, NV_PRAMDAC_VPLL_COEFF
},
4556 { PLL_VPLL1
, NV_RAMDAC_VPLL2
},
4560 static struct pll_mapping nv50_pll_mapping
[] = {
4561 { PLL_CORE
, 0x004028 },
4562 { PLL_SHADER
, 0x004020 },
4563 { PLL_UNK03
, 0x004000 },
4564 { PLL_MEMORY
, 0x004008 },
4565 { PLL_UNK40
, 0x00e810 },
4566 { PLL_UNK41
, 0x00e818 },
4567 { PLL_UNK42
, 0x00e824 },
4568 { PLL_VPLL0
, 0x614100 },
4569 { PLL_VPLL1
, 0x614900 },
4573 static struct pll_mapping nv84_pll_mapping
[] = {
4574 { PLL_CORE
, 0x004028 },
4575 { PLL_SHADER
, 0x004020 },
4576 { PLL_MEMORY
, 0x004008 },
4577 { PLL_VDEC
, 0x004030 },
4578 { PLL_UNK41
, 0x00e818 },
4579 { PLL_VPLL0
, 0x614100 },
4580 { PLL_VPLL1
, 0x614900 },
4585 get_pll_register(struct drm_device
*dev
, enum pll_types type
)
4587 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4588 struct nvbios
*bios
= &dev_priv
->vbios
;
4589 struct pll_mapping
*map
;
4592 if (dev_priv
->card_type
< NV_40
)
4593 map
= nv04_pll_mapping
;
4595 if (dev_priv
->card_type
< NV_50
)
4596 map
= nv40_pll_mapping
;
4598 u8
*plim
= &bios
->data
[bios
->pll_limit_tbl_ptr
];
4600 if (plim
[0] >= 0x30) {
4601 u8
*entry
= plim
+ plim
[1];
4602 for (i
= 0; i
< plim
[3]; i
++, entry
+= plim
[2]) {
4603 if (entry
[0] == type
)
4604 return ROM32(entry
[3]);
4610 if (dev_priv
->chipset
== 0x50)
4611 map
= nv50_pll_mapping
;
4613 map
= nv84_pll_mapping
;
4617 if (map
->type
== type
)
4625 int get_pll_limits(struct drm_device
*dev
, uint32_t limit_match
, struct pll_lims
*pll_lim
)
4630 * Version 0x10: NV30, NV31
4631 * One byte header (version), one record of 24 bytes
4632 * Version 0x11: NV36 - Not implemented
4633 * Seems to have same record style as 0x10, but 3 records rather than 1
4634 * Version 0x20: Found on Geforce 6 cards
4635 * Trivial 4 byte BIT header. 31 (0x1f) byte record length
4636 * Version 0x21: Found on Geforce 7, 8 and some Geforce 6 cards
4637 * 5 byte header, fifth byte of unknown purpose. 35 (0x23) byte record
4638 * length in general, some (integrated) have an extra configuration byte
4639 * Version 0x30: Found on Geforce 8, separates the register mapping
4640 * from the limits tables.
4643 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4644 struct nvbios
*bios
= &dev_priv
->vbios
;
4645 int cv
= bios
->chip_version
, pllindex
= 0;
4646 uint8_t pll_lim_ver
= 0, headerlen
= 0, recordlen
= 0, entries
= 0;
4647 uint32_t crystal_strap_mask
, crystal_straps
;
4649 if (!bios
->pll_limit_tbl_ptr
) {
4650 if (cv
== 0x30 || cv
== 0x31 || cv
== 0x35 || cv
== 0x36 ||
4652 NV_ERROR(dev
, "Pointer to PLL limits table invalid\n");
4656 pll_lim_ver
= bios
->data
[bios
->pll_limit_tbl_ptr
];
4658 crystal_strap_mask
= 1 << 6;
4659 /* open coded dev->twoHeads test */
4660 if (cv
> 0x10 && cv
!= 0x15 && cv
!= 0x1a && cv
!= 0x20)
4661 crystal_strap_mask
|= 1 << 22;
4662 crystal_straps
= nvReadEXTDEV(dev
, NV_PEXTDEV_BOOT_0
) &
4665 switch (pll_lim_ver
) {
4667 * We use version 0 to indicate a pre limit table bios (single stage
4668 * pll) and load the hard coded limits instead.
4675 * Strictly v0x11 has 3 entries, but the last two don't seem
4687 headerlen
= bios
->data
[bios
->pll_limit_tbl_ptr
+ 1];
4688 recordlen
= bios
->data
[bios
->pll_limit_tbl_ptr
+ 2];
4689 entries
= bios
->data
[bios
->pll_limit_tbl_ptr
+ 3];
4692 NV_ERROR(dev
, "PLL limits table revision 0x%X not currently "
4693 "supported\n", pll_lim_ver
);
4697 /* initialize all members to zero */
4698 memset(pll_lim
, 0, sizeof(struct pll_lims
));
4700 /* if we were passed a type rather than a register, figure
4701 * out the register and store it
4703 if (limit_match
> PLL_MAX
)
4704 pll_lim
->reg
= limit_match
;
4706 pll_lim
->reg
= get_pll_register(dev
, limit_match
);
4711 if (pll_lim_ver
== 0x10 || pll_lim_ver
== 0x11) {
4712 uint8_t *pll_rec
= &bios
->data
[bios
->pll_limit_tbl_ptr
+ headerlen
+ recordlen
* pllindex
];
4714 pll_lim
->vco1
.minfreq
= ROM32(pll_rec
[0]);
4715 pll_lim
->vco1
.maxfreq
= ROM32(pll_rec
[4]);
4716 pll_lim
->vco2
.minfreq
= ROM32(pll_rec
[8]);
4717 pll_lim
->vco2
.maxfreq
= ROM32(pll_rec
[12]);
4718 pll_lim
->vco1
.min_inputfreq
= ROM32(pll_rec
[16]);
4719 pll_lim
->vco2
.min_inputfreq
= ROM32(pll_rec
[20]);
4720 pll_lim
->vco1
.max_inputfreq
= pll_lim
->vco2
.max_inputfreq
= INT_MAX
;
4722 /* these values taken from nv30/31/36 */
4723 pll_lim
->vco1
.min_n
= 0x1;
4725 pll_lim
->vco1
.min_n
= 0x5;
4726 pll_lim
->vco1
.max_n
= 0xff;
4727 pll_lim
->vco1
.min_m
= 0x1;
4728 pll_lim
->vco1
.max_m
= 0xd;
4729 pll_lim
->vco2
.min_n
= 0x4;
4731 * On nv30, 31, 36 (i.e. all cards with two stage PLLs with this
4732 * table version (apart from nv35)), N2 is compared to
4733 * maxN2 (0x46) and 10 * maxM2 (0x4), so set maxN2 to 0x28 and
4736 pll_lim
->vco2
.max_n
= 0x28;
4737 if (cv
== 0x30 || cv
== 0x35)
4738 /* only 5 bits available for N2 on nv30/35 */
4739 pll_lim
->vco2
.max_n
= 0x1f;
4740 pll_lim
->vco2
.min_m
= 0x1;
4741 pll_lim
->vco2
.max_m
= 0x4;
4742 pll_lim
->max_log2p
= 0x7;
4743 pll_lim
->max_usable_log2p
= 0x6;
4744 } else if (pll_lim_ver
== 0x20 || pll_lim_ver
== 0x21) {
4745 uint16_t plloffs
= bios
->pll_limit_tbl_ptr
+ headerlen
;
4750 * First entry is default match, if nothing better. warn if
4753 if (ROM32(bios
->data
[plloffs
]))
4754 NV_WARN(dev
, "Default PLL limit entry has non-zero "
4755 "register field\n");
4757 for (i
= 1; i
< entries
; i
++)
4758 if (ROM32(bios
->data
[plloffs
+ recordlen
* i
]) == pll_lim
->reg
) {
4763 if ((dev_priv
->card_type
>= NV_50
) && (pllindex
== 0)) {
4764 NV_ERROR(dev
, "Register 0x%08x not found in PLL "
4765 "limits table", pll_lim
->reg
);
4769 pll_rec
= &bios
->data
[plloffs
+ recordlen
* pllindex
];
4771 BIOSLOG(bios
, "Loading PLL limits for reg 0x%08x\n",
4772 pllindex
? pll_lim
->reg
: 0);
4775 * Frequencies are stored in tables in MHz, kHz are more
4776 * useful, so we convert.
4779 /* What output frequencies can each VCO generate? */
4780 pll_lim
->vco1
.minfreq
= ROM16(pll_rec
[4]) * 1000;
4781 pll_lim
->vco1
.maxfreq
= ROM16(pll_rec
[6]) * 1000;
4782 pll_lim
->vco2
.minfreq
= ROM16(pll_rec
[8]) * 1000;
4783 pll_lim
->vco2
.maxfreq
= ROM16(pll_rec
[10]) * 1000;
4785 /* What input frequencies they accept (past the m-divider)? */
4786 pll_lim
->vco1
.min_inputfreq
= ROM16(pll_rec
[12]) * 1000;
4787 pll_lim
->vco2
.min_inputfreq
= ROM16(pll_rec
[14]) * 1000;
4788 pll_lim
->vco1
.max_inputfreq
= ROM16(pll_rec
[16]) * 1000;
4789 pll_lim
->vco2
.max_inputfreq
= ROM16(pll_rec
[18]) * 1000;
4791 /* What values are accepted as multiplier and divider? */
4792 pll_lim
->vco1
.min_n
= pll_rec
[20];
4793 pll_lim
->vco1
.max_n
= pll_rec
[21];
4794 pll_lim
->vco1
.min_m
= pll_rec
[22];
4795 pll_lim
->vco1
.max_m
= pll_rec
[23];
4796 pll_lim
->vco2
.min_n
= pll_rec
[24];
4797 pll_lim
->vco2
.max_n
= pll_rec
[25];
4798 pll_lim
->vco2
.min_m
= pll_rec
[26];
4799 pll_lim
->vco2
.max_m
= pll_rec
[27];
4801 pll_lim
->max_usable_log2p
= pll_lim
->max_log2p
= pll_rec
[29];
4802 if (pll_lim
->max_log2p
> 0x7)
4803 /* pll decoding in nv_hw.c assumes never > 7 */
4804 NV_WARN(dev
, "Max log2 P value greater than 7 (%d)\n",
4805 pll_lim
->max_log2p
);
4807 pll_lim
->max_usable_log2p
= 0x6;
4808 pll_lim
->log2p_bias
= pll_rec
[30];
4810 if (recordlen
> 0x22)
4811 pll_lim
->refclk
= ROM32(pll_rec
[31]);
4813 if (recordlen
> 0x23 && pll_rec
[35])
4815 "Bits set in PLL configuration byte (%x)\n",
4818 /* C51 special not seen elsewhere */
4819 if (cv
== 0x51 && !pll_lim
->refclk
) {
4820 uint32_t sel_clk
= bios_rd32(bios
, NV_PRAMDAC_SEL_CLK
);
4822 if ((pll_lim
->reg
== NV_PRAMDAC_VPLL_COEFF
&& sel_clk
& 0x20) ||
4823 (pll_lim
->reg
== NV_RAMDAC_VPLL2
&& sel_clk
& 0x80)) {
4824 if (bios_idxprt_rd(bios
, NV_CIO_CRX__COLOR
, NV_CIO_CRE_CHIP_ID_INDEX
) < 0xa3)
4825 pll_lim
->refclk
= 200000;
4827 pll_lim
->refclk
= 25000;
4830 } else if (pll_lim_ver
== 0x30) { /* ver 0x30 */
4831 uint8_t *entry
= &bios
->data
[bios
->pll_limit_tbl_ptr
+ headerlen
];
4832 uint8_t *record
= NULL
;
4835 BIOSLOG(bios
, "Loading PLL limits for register 0x%08x\n",
4838 for (i
= 0; i
< entries
; i
++, entry
+= recordlen
) {
4839 if (ROM32(entry
[3]) == pll_lim
->reg
) {
4840 record
= &bios
->data
[ROM16(entry
[1])];
4846 NV_ERROR(dev
, "Register 0x%08x not found in PLL "
4847 "limits table", pll_lim
->reg
);
4851 pll_lim
->vco1
.minfreq
= ROM16(record
[0]) * 1000;
4852 pll_lim
->vco1
.maxfreq
= ROM16(record
[2]) * 1000;
4853 pll_lim
->vco2
.minfreq
= ROM16(record
[4]) * 1000;
4854 pll_lim
->vco2
.maxfreq
= ROM16(record
[6]) * 1000;
4855 pll_lim
->vco1
.min_inputfreq
= ROM16(record
[8]) * 1000;
4856 pll_lim
->vco2
.min_inputfreq
= ROM16(record
[10]) * 1000;
4857 pll_lim
->vco1
.max_inputfreq
= ROM16(record
[12]) * 1000;
4858 pll_lim
->vco2
.max_inputfreq
= ROM16(record
[14]) * 1000;
4859 pll_lim
->vco1
.min_n
= record
[16];
4860 pll_lim
->vco1
.max_n
= record
[17];
4861 pll_lim
->vco1
.min_m
= record
[18];
4862 pll_lim
->vco1
.max_m
= record
[19];
4863 pll_lim
->vco2
.min_n
= record
[20];
4864 pll_lim
->vco2
.max_n
= record
[21];
4865 pll_lim
->vco2
.min_m
= record
[22];
4866 pll_lim
->vco2
.max_m
= record
[23];
4867 pll_lim
->max_usable_log2p
= pll_lim
->max_log2p
= record
[25];
4868 pll_lim
->log2p_bias
= record
[27];
4869 pll_lim
->refclk
= ROM32(record
[28]);
4870 } else if (pll_lim_ver
) { /* ver 0x40 */
4871 uint8_t *entry
= &bios
->data
[bios
->pll_limit_tbl_ptr
+ headerlen
];
4872 uint8_t *record
= NULL
;
4875 BIOSLOG(bios
, "Loading PLL limits for register 0x%08x\n",
4878 for (i
= 0; i
< entries
; i
++, entry
+= recordlen
) {
4879 if (ROM32(entry
[3]) == pll_lim
->reg
) {
4880 record
= &bios
->data
[ROM16(entry
[1])];
4886 NV_ERROR(dev
, "Register 0x%08x not found in PLL "
4887 "limits table", pll_lim
->reg
);
4891 pll_lim
->vco1
.minfreq
= ROM16(record
[0]) * 1000;
4892 pll_lim
->vco1
.maxfreq
= ROM16(record
[2]) * 1000;
4893 pll_lim
->vco1
.min_inputfreq
= ROM16(record
[4]) * 1000;
4894 pll_lim
->vco1
.max_inputfreq
= ROM16(record
[6]) * 1000;
4895 pll_lim
->vco1
.min_m
= record
[8];
4896 pll_lim
->vco1
.max_m
= record
[9];
4897 pll_lim
->vco1
.min_n
= record
[10];
4898 pll_lim
->vco1
.max_n
= record
[11];
4899 pll_lim
->min_p
= record
[12];
4900 pll_lim
->max_p
= record
[13];
4901 pll_lim
->refclk
= ROM16(entry
[9]) * 1000;
4905 * By now any valid limit table ought to have set a max frequency for
4906 * vco1, so if it's zero it's either a pre limit table bios, or one
4907 * with an empty limit table (seen on nv18)
4909 if (!pll_lim
->vco1
.maxfreq
) {
4910 pll_lim
->vco1
.minfreq
= bios
->fminvco
;
4911 pll_lim
->vco1
.maxfreq
= bios
->fmaxvco
;
4912 pll_lim
->vco1
.min_inputfreq
= 0;
4913 pll_lim
->vco1
.max_inputfreq
= INT_MAX
;
4914 pll_lim
->vco1
.min_n
= 0x1;
4915 pll_lim
->vco1
.max_n
= 0xff;
4916 pll_lim
->vco1
.min_m
= 0x1;
4917 if (crystal_straps
== 0) {
4918 /* nv05 does this, nv11 doesn't, nv10 unknown */
4920 pll_lim
->vco1
.min_m
= 0x7;
4921 pll_lim
->vco1
.max_m
= 0xd;
4924 pll_lim
->vco1
.min_m
= 0x8;
4925 pll_lim
->vco1
.max_m
= 0xe;
4927 if (cv
< 0x17 || cv
== 0x1a || cv
== 0x20)
4928 pll_lim
->max_log2p
= 4;
4930 pll_lim
->max_log2p
= 5;
4931 pll_lim
->max_usable_log2p
= pll_lim
->max_log2p
;
4934 if (!pll_lim
->refclk
)
4935 switch (crystal_straps
) {
4937 pll_lim
->refclk
= 13500;
4940 pll_lim
->refclk
= 14318;
4943 pll_lim
->refclk
= 27000;
4945 case (1 << 22 | 1 << 6):
4946 pll_lim
->refclk
= 25000;
4950 NV_DEBUG(dev
, "pll.vco1.minfreq: %d\n", pll_lim
->vco1
.minfreq
);
4951 NV_DEBUG(dev
, "pll.vco1.maxfreq: %d\n", pll_lim
->vco1
.maxfreq
);
4952 NV_DEBUG(dev
, "pll.vco1.min_inputfreq: %d\n", pll_lim
->vco1
.min_inputfreq
);
4953 NV_DEBUG(dev
, "pll.vco1.max_inputfreq: %d\n", pll_lim
->vco1
.max_inputfreq
);
4954 NV_DEBUG(dev
, "pll.vco1.min_n: %d\n", pll_lim
->vco1
.min_n
);
4955 NV_DEBUG(dev
, "pll.vco1.max_n: %d\n", pll_lim
->vco1
.max_n
);
4956 NV_DEBUG(dev
, "pll.vco1.min_m: %d\n", pll_lim
->vco1
.min_m
);
4957 NV_DEBUG(dev
, "pll.vco1.max_m: %d\n", pll_lim
->vco1
.max_m
);
4958 if (pll_lim
->vco2
.maxfreq
) {
4959 NV_DEBUG(dev
, "pll.vco2.minfreq: %d\n", pll_lim
->vco2
.minfreq
);
4960 NV_DEBUG(dev
, "pll.vco2.maxfreq: %d\n", pll_lim
->vco2
.maxfreq
);
4961 NV_DEBUG(dev
, "pll.vco2.min_inputfreq: %d\n", pll_lim
->vco2
.min_inputfreq
);
4962 NV_DEBUG(dev
, "pll.vco2.max_inputfreq: %d\n", pll_lim
->vco2
.max_inputfreq
);
4963 NV_DEBUG(dev
, "pll.vco2.min_n: %d\n", pll_lim
->vco2
.min_n
);
4964 NV_DEBUG(dev
, "pll.vco2.max_n: %d\n", pll_lim
->vco2
.max_n
);
4965 NV_DEBUG(dev
, "pll.vco2.min_m: %d\n", pll_lim
->vco2
.min_m
);
4966 NV_DEBUG(dev
, "pll.vco2.max_m: %d\n", pll_lim
->vco2
.max_m
);
4968 if (!pll_lim
->max_p
) {
4969 NV_DEBUG(dev
, "pll.max_log2p: %d\n", pll_lim
->max_log2p
);
4970 NV_DEBUG(dev
, "pll.log2p_bias: %d\n", pll_lim
->log2p_bias
);
4972 NV_DEBUG(dev
, "pll.min_p: %d\n", pll_lim
->min_p
);
4973 NV_DEBUG(dev
, "pll.max_p: %d\n", pll_lim
->max_p
);
4975 NV_DEBUG(dev
, "pll.refclk: %d\n", pll_lim
->refclk
);
4980 static void parse_bios_version(struct drm_device
*dev
, struct nvbios
*bios
, uint16_t offset
)
4983 * offset + 0 (8 bits): Micro version
4984 * offset + 1 (8 bits): Minor version
4985 * offset + 2 (8 bits): Chip version
4986 * offset + 3 (8 bits): Major version
4989 bios
->major_version
= bios
->data
[offset
+ 3];
4990 bios
->chip_version
= bios
->data
[offset
+ 2];
4991 NV_TRACE(dev
, "Bios version %02x.%02x.%02x.%02x\n",
4992 bios
->data
[offset
+ 3], bios
->data
[offset
+ 2],
4993 bios
->data
[offset
+ 1], bios
->data
[offset
]);
4996 static void parse_script_table_pointers(struct nvbios
*bios
, uint16_t offset
)
4999 * Parses the init table segment for pointers used in script execution.
5001 * offset + 0 (16 bits): init script tables pointer
5002 * offset + 2 (16 bits): macro index table pointer
5003 * offset + 4 (16 bits): macro table pointer
5004 * offset + 6 (16 bits): condition table pointer
5005 * offset + 8 (16 bits): io condition table pointer
5006 * offset + 10 (16 bits): io flag condition table pointer
5007 * offset + 12 (16 bits): init function table pointer
5010 bios
->init_script_tbls_ptr
= ROM16(bios
->data
[offset
]);
5011 bios
->macro_index_tbl_ptr
= ROM16(bios
->data
[offset
+ 2]);
5012 bios
->macro_tbl_ptr
= ROM16(bios
->data
[offset
+ 4]);
5013 bios
->condition_tbl_ptr
= ROM16(bios
->data
[offset
+ 6]);
5014 bios
->io_condition_tbl_ptr
= ROM16(bios
->data
[offset
+ 8]);
5015 bios
->io_flag_condition_tbl_ptr
= ROM16(bios
->data
[offset
+ 10]);
5016 bios
->init_function_tbl_ptr
= ROM16(bios
->data
[offset
+ 12]);
5019 static int parse_bit_A_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5022 * Parses the load detect values for g80 cards.
5024 * offset + 0 (16 bits): loadval table pointer
5027 uint16_t load_table_ptr
;
5028 uint8_t version
, headerlen
, entrylen
, num_entries
;
5030 if (bitentry
->length
!= 3) {
5031 NV_ERROR(dev
, "Do not understand BIT A table\n");
5035 load_table_ptr
= ROM16(bios
->data
[bitentry
->offset
]);
5037 if (load_table_ptr
== 0x0) {
5038 NV_DEBUG(dev
, "Pointer to BIT loadval table invalid\n");
5042 version
= bios
->data
[load_table_ptr
];
5044 if (version
!= 0x10) {
5045 NV_ERROR(dev
, "BIT loadval table version %d.%d not supported\n",
5046 version
>> 4, version
& 0xF);
5050 headerlen
= bios
->data
[load_table_ptr
+ 1];
5051 entrylen
= bios
->data
[load_table_ptr
+ 2];
5052 num_entries
= bios
->data
[load_table_ptr
+ 3];
5054 if (headerlen
!= 4 || entrylen
!= 4 || num_entries
!= 2) {
5055 NV_ERROR(dev
, "Do not understand BIT loadval table\n");
5059 /* First entry is normal dac, 2nd tv-out perhaps? */
5060 bios
->dactestval
= ROM32(bios
->data
[load_table_ptr
+ headerlen
]) & 0x3ff;
5065 static int parse_bit_C_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5068 * offset + 8 (16 bits): PLL limits table pointer
5070 * There's more in here, but that's unknown.
5073 if (bitentry
->length
< 10) {
5074 NV_ERROR(dev
, "Do not understand BIT C table\n");
5078 bios
->pll_limit_tbl_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 8]);
5083 static int parse_bit_display_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5086 * Parses the flat panel table segment that the bit entry points to.
5087 * Starting at bitentry->offset:
5089 * offset + 0 (16 bits): ??? table pointer - seems to have 18 byte
5090 * records beginning with a freq.
5091 * offset + 2 (16 bits): mode table pointer
5094 if (bitentry
->length
!= 4) {
5095 NV_ERROR(dev
, "Do not understand BIT display table\n");
5099 bios
->fp
.fptablepointer
= ROM16(bios
->data
[bitentry
->offset
+ 2]);
5104 static int parse_bit_init_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5107 * Parses the init table segment that the bit entry points to.
5109 * See parse_script_table_pointers for layout
5112 if (bitentry
->length
< 14) {
5113 NV_ERROR(dev
, "Do not understand init table\n");
5117 parse_script_table_pointers(bios
, bitentry
->offset
);
5119 if (bitentry
->length
>= 16)
5120 bios
->some_script_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 14]);
5121 if (bitentry
->length
>= 18)
5122 bios
->init96_tbl_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 16]);
5127 static int parse_bit_i_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5130 * BIT 'i' (info?) table
5132 * offset + 0 (32 bits): BIOS version dword (as in B table)
5133 * offset + 5 (8 bits): BIOS feature byte (same as for BMP?)
5134 * offset + 13 (16 bits): pointer to table containing DAC load
5135 * detection comparison values
5137 * There's other things in the table, purpose unknown
5140 uint16_t daccmpoffset
;
5141 uint8_t dacver
, dacheaderlen
;
5143 if (bitentry
->length
< 6) {
5144 NV_ERROR(dev
, "BIT i table too short for needed information\n");
5148 parse_bios_version(dev
, bios
, bitentry
->offset
);
5151 * bit 4 seems to indicate a mobile bios (doesn't suffer from BMP's
5152 * Quadro identity crisis), other bits possibly as for BMP feature byte
5154 bios
->feature_byte
= bios
->data
[bitentry
->offset
+ 5];
5155 bios
->is_mobile
= bios
->feature_byte
& FEATURE_MOBILE
;
5157 if (bitentry
->length
< 15) {
5158 NV_WARN(dev
, "BIT i table not long enough for DAC load "
5159 "detection comparison table\n");
5163 daccmpoffset
= ROM16(bios
->data
[bitentry
->offset
+ 13]);
5165 /* doesn't exist on g80 */
5170 * The first value in the table, following the header, is the
5171 * comparison value, the second entry is a comparison value for
5172 * TV load detection.
5175 dacver
= bios
->data
[daccmpoffset
];
5176 dacheaderlen
= bios
->data
[daccmpoffset
+ 1];
5178 if (dacver
!= 0x00 && dacver
!= 0x10) {
5179 NV_WARN(dev
, "DAC load detection comparison table version "
5180 "%d.%d not known\n", dacver
>> 4, dacver
& 0xf);
5184 bios
->dactestval
= ROM32(bios
->data
[daccmpoffset
+ dacheaderlen
]);
5185 bios
->tvdactestval
= ROM32(bios
->data
[daccmpoffset
+ dacheaderlen
+ 4]);
5190 static int parse_bit_lvds_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5193 * Parses the LVDS table segment that the bit entry points to.
5194 * Starting at bitentry->offset:
5196 * offset + 0 (16 bits): LVDS strap xlate table pointer
5199 if (bitentry
->length
!= 2) {
5200 NV_ERROR(dev
, "Do not understand BIT LVDS table\n");
5205 * No idea if it's still called the LVDS manufacturer table, but
5206 * the concept's close enough.
5208 bios
->fp
.lvdsmanufacturerpointer
= ROM16(bios
->data
[bitentry
->offset
]);
5214 parse_bit_M_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
,
5215 struct bit_entry
*bitentry
)
5218 * offset + 2 (8 bits): number of options in an
5219 * INIT_RAM_RESTRICT_ZM_REG_GROUP opcode option set
5220 * offset + 3 (16 bits): pointer to strap xlate table for RAM
5221 * restrict option selection
5223 * There's a bunch of bits in this table other than the RAM restrict
5224 * stuff that we don't use - their use currently unknown
5228 * Older bios versions don't have a sufficiently long table for
5231 if (bitentry
->length
< 0x5)
5234 if (bitentry
->version
< 2) {
5235 bios
->ram_restrict_group_count
= bios
->data
[bitentry
->offset
+ 2];
5236 bios
->ram_restrict_tbl_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 3]);
5238 bios
->ram_restrict_group_count
= bios
->data
[bitentry
->offset
+ 0];
5239 bios
->ram_restrict_tbl_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 1]);
5245 static int parse_bit_tmds_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5248 * Parses the pointer to the TMDS table
5250 * Starting at bitentry->offset:
5252 * offset + 0 (16 bits): TMDS table pointer
5254 * The TMDS table is typically found just before the DCB table, with a
5255 * characteristic signature of 0x11,0x13 (1.1 being version, 0x13 being
5258 * At offset +7 is a pointer to a script, which I don't know how to
5260 * At offset +9 is a pointer to another script, likewise
5261 * Offset +11 has a pointer to a table where the first word is a pxclk
5262 * frequency and the second word a pointer to a script, which should be
5263 * run if the comparison pxclk frequency is less than the pxclk desired.
5264 * This repeats for decreasing comparison frequencies
5265 * Offset +13 has a pointer to a similar table
5266 * The selection of table (and possibly +7/+9 script) is dictated by
5267 * "or" from the DCB.
5270 uint16_t tmdstableptr
, script1
, script2
;
5272 if (bitentry
->length
!= 2) {
5273 NV_ERROR(dev
, "Do not understand BIT TMDS table\n");
5277 tmdstableptr
= ROM16(bios
->data
[bitentry
->offset
]);
5278 if (!tmdstableptr
) {
5279 NV_ERROR(dev
, "Pointer to TMDS table invalid\n");
5283 NV_INFO(dev
, "TMDS table version %d.%d\n",
5284 bios
->data
[tmdstableptr
] >> 4, bios
->data
[tmdstableptr
] & 0xf);
5286 /* nv50+ has v2.0, but we don't parse it atm */
5287 if (bios
->data
[tmdstableptr
] != 0x11)
5291 * These two scripts are odd: they don't seem to get run even when
5292 * they are not stubbed.
5294 script1
= ROM16(bios
->data
[tmdstableptr
+ 7]);
5295 script2
= ROM16(bios
->data
[tmdstableptr
+ 9]);
5296 if (bios
->data
[script1
] != 'q' || bios
->data
[script2
] != 'q')
5297 NV_WARN(dev
, "TMDS table script pointers not stubbed\n");
5299 bios
->tmds
.output0_script_ptr
= ROM16(bios
->data
[tmdstableptr
+ 11]);
5300 bios
->tmds
.output1_script_ptr
= ROM16(bios
->data
[tmdstableptr
+ 13]);
5306 parse_bit_U_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
,
5307 struct bit_entry
*bitentry
)
5310 * Parses the pointer to the G80 output script tables
5312 * Starting at bitentry->offset:
5314 * offset + 0 (16 bits): output script table pointer
5317 uint16_t outputscripttableptr
;
5319 if (bitentry
->length
!= 3) {
5320 NV_ERROR(dev
, "Do not understand BIT U table\n");
5324 outputscripttableptr
= ROM16(bios
->data
[bitentry
->offset
]);
5325 bios
->display
.script_table_ptr
= outputscripttableptr
;
5331 int (* const parse_fn
)(struct drm_device
*, struct nvbios
*, struct bit_entry
*);
5334 #define BIT_TABLE(id, funcid) ((struct bit_table){ id, parse_bit_##funcid##_tbl_entry })
5337 bit_table(struct drm_device
*dev
, u8 id
, struct bit_entry
*bit
)
5339 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
5340 struct nvbios
*bios
= &dev_priv
->vbios
;
5343 if (bios
->type
!= NVBIOS_BIT
)
5346 entries
= bios
->data
[bios
->offset
+ 10];
5347 entry
= &bios
->data
[bios
->offset
+ 12];
5349 if (entry
[0] == id
) {
5351 bit
->version
= entry
[1];
5352 bit
->length
= ROM16(entry
[2]);
5353 bit
->offset
= ROM16(entry
[4]);
5354 bit
->data
= ROMPTR(dev
, entry
[4]);
5358 entry
+= bios
->data
[bios
->offset
+ 9];
5365 parse_bit_table(struct nvbios
*bios
, const uint16_t bitoffset
,
5366 struct bit_table
*table
)
5368 struct drm_device
*dev
= bios
->dev
;
5369 struct bit_entry bitentry
;
5371 if (bit_table(dev
, table
->id
, &bitentry
) == 0)
5372 return table
->parse_fn(dev
, bios
, &bitentry
);
5374 NV_INFO(dev
, "BIT table '%c' not found\n", table
->id
);
5379 parse_bit_structure(struct nvbios
*bios
, const uint16_t bitoffset
)
5384 * The only restriction on parsing order currently is having 'i' first
5385 * for use of bios->*_version or bios->feature_byte while parsing;
5386 * functions shouldn't be actually *doing* anything apart from pulling
5387 * data from the image into the bios struct, thus no interdependencies
5389 ret
= parse_bit_table(bios
, bitoffset
, &BIT_TABLE('i', i
));
5390 if (ret
) /* info? */
5392 if (bios
->major_version
>= 0x60) /* g80+ */
5393 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('A', A
));
5394 ret
= parse_bit_table(bios
, bitoffset
, &BIT_TABLE('C', C
));
5397 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('D', display
));
5398 ret
= parse_bit_table(bios
, bitoffset
, &BIT_TABLE('I', init
));
5401 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('M', M
)); /* memory? */
5402 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('L', lvds
));
5403 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('T', tmds
));
5404 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('U', U
));
5409 static int parse_bmp_structure(struct drm_device
*dev
, struct nvbios
*bios
, unsigned int offset
)
5412 * Parses the BMP structure for useful things, but does not act on them
5414 * offset + 5: BMP major version
5415 * offset + 6: BMP minor version
5416 * offset + 9: BMP feature byte
5417 * offset + 10: BCD encoded BIOS version
5419 * offset + 18: init script table pointer (for bios versions < 5.10h)
5420 * offset + 20: extra init script table pointer (for bios
5423 * offset + 24: memory init table pointer (used on early bios versions)
5424 * offset + 26: SDR memory sequencing setup data table
5425 * offset + 28: DDR memory sequencing setup data table
5427 * offset + 54: index of I2C CRTC pair to use for CRT output
5428 * offset + 55: index of I2C CRTC pair to use for TV output
5429 * offset + 56: index of I2C CRTC pair to use for flat panel output
5430 * offset + 58: write CRTC index for I2C pair 0
5431 * offset + 59: read CRTC index for I2C pair 0
5432 * offset + 60: write CRTC index for I2C pair 1
5433 * offset + 61: read CRTC index for I2C pair 1
5435 * offset + 67: maximum internal PLL frequency (single stage PLL)
5436 * offset + 71: minimum internal PLL frequency (single stage PLL)
5438 * offset + 75: script table pointers, as described in
5439 * parse_script_table_pointers
5441 * offset + 89: TMDS single link output A table pointer
5442 * offset + 91: TMDS single link output B table pointer
5443 * offset + 95: LVDS single link output A table pointer
5444 * offset + 105: flat panel timings table pointer
5445 * offset + 107: flat panel strapping translation table pointer
5446 * offset + 117: LVDS manufacturer panel config table pointer
5447 * offset + 119: LVDS manufacturer strapping translation table pointer
5449 * offset + 142: PLL limits table pointer
5451 * offset + 156: minimum pixel clock for LVDS dual link
5454 uint8_t *bmp
= &bios
->data
[offset
], bmp_version_major
, bmp_version_minor
;
5456 uint16_t legacy_scripts_offset
, legacy_i2c_offset
;
5458 /* load needed defaults in case we can't parse this info */
5459 bios
->digital_min_front_porch
= 0x4b;
5460 bios
->fmaxvco
= 256000;
5461 bios
->fminvco
= 128000;
5462 bios
->fp
.duallink_transition_clk
= 90000;
5464 bmp_version_major
= bmp
[5];
5465 bmp_version_minor
= bmp
[6];
5467 NV_TRACE(dev
, "BMP version %d.%d\n",
5468 bmp_version_major
, bmp_version_minor
);
5471 * Make sure that 0x36 is blank and can't be mistaken for a DCB
5472 * pointer on early versions
5474 if (bmp_version_major
< 5)
5475 *(uint16_t *)&bios
->data
[0x36] = 0;
5478 * Seems that the minor version was 1 for all major versions prior
5479 * to 5. Version 6 could theoretically exist, but I suspect BIT
5482 if ((bmp_version_major
< 5 && bmp_version_minor
!= 1) || bmp_version_major
> 5) {
5483 NV_ERROR(dev
, "You have an unsupported BMP version. "
5484 "Please send in your bios\n");
5488 if (bmp_version_major
== 0)
5489 /* nothing that's currently useful in this version */
5491 else if (bmp_version_major
== 1)
5492 bmplength
= 44; /* exact for 1.01 */
5493 else if (bmp_version_major
== 2)
5494 bmplength
= 48; /* exact for 2.01 */
5495 else if (bmp_version_major
== 3)
5497 /* guessed - mem init tables added in this version */
5498 else if (bmp_version_major
== 4 || bmp_version_minor
< 0x1)
5499 /* don't know if 5.0 exists... */
5501 /* guessed - BMP I2C indices added in version 4*/
5502 else if (bmp_version_minor
< 0x6)
5503 bmplength
= 67; /* exact for 5.01 */
5504 else if (bmp_version_minor
< 0x10)
5505 bmplength
= 75; /* exact for 5.06 */
5506 else if (bmp_version_minor
== 0x10)
5507 bmplength
= 89; /* exact for 5.10h */
5508 else if (bmp_version_minor
< 0x14)
5509 bmplength
= 118; /* exact for 5.11h */
5510 else if (bmp_version_minor
< 0x24)
5512 * Not sure of version where pll limits came in;
5513 * certainly exist by 0x24 though.
5515 /* length not exact: this is long enough to get lvds members */
5517 else if (bmp_version_minor
< 0x27)
5519 * Length not exact: this is long enough to get pll limit
5525 * Length not exact: this is long enough to get dual link
5531 if (nv_cksum(bmp
, 8)) {
5532 NV_ERROR(dev
, "Bad BMP checksum\n");
5537 * Bit 4 seems to indicate either a mobile bios or a quadro card --
5538 * mobile behaviour consistent (nv11+), quadro only seen nv18gl-nv36gl
5539 * (not nv10gl), bit 5 that the flat panel tables are present, and
5542 bios
->feature_byte
= bmp
[9];
5544 parse_bios_version(dev
, bios
, offset
+ 10);
5546 if (bmp_version_major
< 5 || bmp_version_minor
< 0x10)
5547 bios
->old_style_init
= true;
5548 legacy_scripts_offset
= 18;
5549 if (bmp_version_major
< 2)
5550 legacy_scripts_offset
-= 4;
5551 bios
->init_script_tbls_ptr
= ROM16(bmp
[legacy_scripts_offset
]);
5552 bios
->extra_init_script_tbl_ptr
= ROM16(bmp
[legacy_scripts_offset
+ 2]);
5554 if (bmp_version_major
> 2) { /* appears in BMP 3 */
5555 bios
->legacy
.mem_init_tbl_ptr
= ROM16(bmp
[24]);
5556 bios
->legacy
.sdr_seq_tbl_ptr
= ROM16(bmp
[26]);
5557 bios
->legacy
.ddr_seq_tbl_ptr
= ROM16(bmp
[28]);
5560 legacy_i2c_offset
= 0x48; /* BMP version 2 & 3 */
5562 legacy_i2c_offset
= offset
+ 54;
5563 bios
->legacy
.i2c_indices
.crt
= bios
->data
[legacy_i2c_offset
];
5564 bios
->legacy
.i2c_indices
.tv
= bios
->data
[legacy_i2c_offset
+ 1];
5565 bios
->legacy
.i2c_indices
.panel
= bios
->data
[legacy_i2c_offset
+ 2];
5567 if (bmplength
> 74) {
5568 bios
->fmaxvco
= ROM32(bmp
[67]);
5569 bios
->fminvco
= ROM32(bmp
[71]);
5572 parse_script_table_pointers(bios
, offset
+ 75);
5573 if (bmplength
> 94) {
5574 bios
->tmds
.output0_script_ptr
= ROM16(bmp
[89]);
5575 bios
->tmds
.output1_script_ptr
= ROM16(bmp
[91]);
5577 * Never observed in use with lvds scripts, but is reused for
5578 * 18/24 bit panel interface default for EDID equipped panels
5579 * (if_is_24bit not set directly to avoid any oscillation).
5581 bios
->legacy
.lvds_single_a_script_ptr
= ROM16(bmp
[95]);
5583 if (bmplength
> 108) {
5584 bios
->fp
.fptablepointer
= ROM16(bmp
[105]);
5585 bios
->fp
.fpxlatetableptr
= ROM16(bmp
[107]);
5586 bios
->fp
.xlatwidth
= 1;
5588 if (bmplength
> 120) {
5589 bios
->fp
.lvdsmanufacturerpointer
= ROM16(bmp
[117]);
5590 bios
->fp
.fpxlatemanufacturertableptr
= ROM16(bmp
[119]);
5592 if (bmplength
> 143)
5593 bios
->pll_limit_tbl_ptr
= ROM16(bmp
[142]);
5595 if (bmplength
> 157)
5596 bios
->fp
.duallink_transition_clk
= ROM16(bmp
[156]) * 10;
5601 static uint16_t findstr(uint8_t *data
, int n
, const uint8_t *str
, int len
)
5605 for (i
= 0; i
<= (n
- len
); i
++) {
5606 for (j
= 0; j
< len
; j
++)
5607 if (data
[i
+ j
] != str
[j
])
5617 dcb_table(struct drm_device
*dev
)
5619 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
5622 if (dev_priv
->card_type
> NV_04
)
5623 dcb
= ROMPTR(dev
, dev_priv
->vbios
.data
[0x36]);
5625 NV_WARNONCE(dev
, "No DCB data found in VBIOS\n");
5629 if (dcb
[0] >= 0x41) {
5630 NV_WARNONCE(dev
, "DCB version 0x%02x unknown\n", dcb
[0]);
5633 if (dcb
[0] >= 0x30) {
5634 if (ROM32(dcb
[6]) == 0x4edcbdcb)
5637 if (dcb
[0] >= 0x20) {
5638 if (ROM32(dcb
[4]) == 0x4edcbdcb)
5641 if (dcb
[0] >= 0x15) {
5642 if (!memcmp(&dcb
[-7], "DEV_REC", 7))
5646 * v1.4 (some NV15/16, NV11+) seems the same as v1.5, but
5647 * always has the same single (crt) entry, even when tv-out
5648 * present, so the conclusion is this version cannot really
5651 * v1.2 tables (some NV6/10, and NV15+) normally have the
5652 * same 5 entries, which are not specific to the card and so
5655 * v1.2 does have an I2C table that read_dcb_i2c_table can
5656 * handle, but cards exist (nv11 in #14821) with a bad i2c
5657 * table pointer, so use the indices parsed in
5658 * parse_bmp_structure.
5660 * v1.1 (NV5+, maybe some NV4) is entirely unhelpful
5662 NV_WARNONCE(dev
, "No useful DCB data in VBIOS\n");
5666 NV_WARNONCE(dev
, "DCB header validation failed\n");
5671 dcb_outp(struct drm_device
*dev
, u8 idx
)
5673 u8
*dcb
= dcb_table(dev
);
5674 if (dcb
&& dcb
[0] >= 0x30) {
5676 return dcb
+ dcb
[1] + (idx
* dcb
[3]);
5678 if (dcb
&& dcb
[0] >= 0x20) {
5679 u8
*i2c
= ROMPTR(dev
, dcb
[2]);
5680 u8
*ent
= dcb
+ 8 + (idx
* 8);
5681 if (i2c
&& ent
< i2c
)
5684 if (dcb
&& dcb
[0] >= 0x15) {
5685 u8
*i2c
= ROMPTR(dev
, dcb
[2]);
5686 u8
*ent
= dcb
+ 4 + (idx
* 10);
5687 if (i2c
&& ent
< i2c
)
5695 dcb_outp_foreach(struct drm_device
*dev
, void *data
,
5696 int (*exec
)(struct drm_device
*, void *, int idx
, u8
*outp
))
5700 while ((outp
= dcb_outp(dev
, ++idx
))) {
5701 if (ROM32(outp
[0]) == 0x00000000)
5702 break; /* seen on an NV11 with DCB v1.5 */
5703 if (ROM32(outp
[0]) == 0xffffffff)
5704 break; /* seen on an NV17 with DCB v2.0 */
5706 if ((outp
[0] & 0x0f) == OUTPUT_UNUSED
)
5708 if ((outp
[0] & 0x0f) == OUTPUT_EOL
)
5711 ret
= exec(dev
, data
, idx
, outp
);
5720 dcb_conntab(struct drm_device
*dev
)
5722 u8
*dcb
= dcb_table(dev
);
5723 if (dcb
&& dcb
[0] >= 0x30 && dcb
[1] >= 0x16) {
5724 u8
*conntab
= ROMPTR(dev
, dcb
[0x14]);
5725 if (conntab
&& conntab
[0] >= 0x30 && conntab
[0] <= 0x40)
5732 dcb_conn(struct drm_device
*dev
, u8 idx
)
5734 u8
*conntab
= dcb_conntab(dev
);
5735 if (conntab
&& idx
< conntab
[2])
5736 return conntab
+ conntab
[1] + (idx
* conntab
[3]);
5740 static struct dcb_entry
*new_dcb_entry(struct dcb_table
*dcb
)
5742 struct dcb_entry
*entry
= &dcb
->entry
[dcb
->entries
];
5744 memset(entry
, 0, sizeof(struct dcb_entry
));
5745 entry
->index
= dcb
->entries
++;
5750 static void fabricate_dcb_output(struct dcb_table
*dcb
, int type
, int i2c
,
5753 struct dcb_entry
*entry
= new_dcb_entry(dcb
);
5756 entry
->i2c_index
= i2c
;
5757 entry
->heads
= heads
;
5758 if (type
!= OUTPUT_ANALOG
)
5759 entry
->location
= !DCB_LOC_ON_CHIP
; /* ie OFF CHIP */
5764 parse_dcb20_entry(struct drm_device
*dev
, struct dcb_table
*dcb
,
5765 uint32_t conn
, uint32_t conf
, struct dcb_entry
*entry
)
5767 entry
->type
= conn
& 0xf;
5768 entry
->i2c_index
= (conn
>> 4) & 0xf;
5769 entry
->heads
= (conn
>> 8) & 0xf;
5770 entry
->connector
= (conn
>> 12) & 0xf;
5771 entry
->bus
= (conn
>> 16) & 0xf;
5772 entry
->location
= (conn
>> 20) & 0x3;
5773 entry
->or = (conn
>> 24) & 0xf;
5775 switch (entry
->type
) {
5778 * Although the rest of a CRT conf dword is usually
5779 * zeros, mac biosen have stuff there so we must mask
5781 entry
->crtconf
.maxfreq
= (dcb
->version
< 0x30) ?
5782 (conf
& 0xffff) * 10 :
5783 (conf
& 0xff) * 10000;
5789 entry
->lvdsconf
.use_straps_for_mode
= true;
5790 if (dcb
->version
< 0x22) {
5793 * The laptop in bug 14567 lies and claims to not use
5794 * straps when it does, so assume all DCB 2.0 laptops
5795 * use straps, until a broken EDID using one is produced
5797 entry
->lvdsconf
.use_straps_for_mode
= true;
5799 * Both 0x4 and 0x8 show up in v2.0 tables; assume they
5800 * mean the same thing (probably wrong, but might work)
5802 if (conf
& 0x4 || conf
& 0x8)
5803 entry
->lvdsconf
.use_power_scripts
= true;
5807 entry
->lvdsconf
.use_acpi_for_edid
= true;
5809 entry
->lvdsconf
.use_power_scripts
= true;
5810 entry
->lvdsconf
.sor
.link
= (conf
& 0x00000030) >> 4;
5814 * Until we even try to use these on G8x, it's
5815 * useless reporting unknown bits. They all are.
5817 if (dcb
->version
>= 0x40)
5820 NV_ERROR(dev
, "Unknown LVDS configuration bits, "
5827 if (dcb
->version
>= 0x30)
5828 entry
->tvconf
.has_component_output
= conf
& (0x8 << 4);
5830 entry
->tvconf
.has_component_output
= false;
5835 entry
->dpconf
.sor
.link
= (conf
& 0x00000030) >> 4;
5836 switch ((conf
& 0x00e00000) >> 21) {
5838 entry
->dpconf
.link_bw
= 162000;
5841 entry
->dpconf
.link_bw
= 270000;
5844 switch ((conf
& 0x0f000000) >> 24) {
5846 entry
->dpconf
.link_nr
= 4;
5849 entry
->dpconf
.link_nr
= 2;
5852 entry
->dpconf
.link_nr
= 1;
5857 if (dcb
->version
>= 0x40)
5858 entry
->tmdsconf
.sor
.link
= (conf
& 0x00000030) >> 4;
5859 else if (dcb
->version
>= 0x30)
5860 entry
->tmdsconf
.slave_addr
= (conf
& 0x00000700) >> 8;
5861 else if (dcb
->version
>= 0x22)
5862 entry
->tmdsconf
.slave_addr
= (conf
& 0x00000070) >> 4;
5866 /* weird g80 mobile type that "nv" treats as a terminator */
5873 if (dcb
->version
< 0x40) {
5874 /* Normal entries consist of a single bit, but dual link has
5875 * the next most significant bit set too
5877 entry
->duallink_possible
=
5878 ((1 << (ffs(entry
->or) - 1)) * 3 == entry
->or);
5880 entry
->duallink_possible
= (entry
->sorconf
.link
== 3);
5883 /* unsure what DCB version introduces this, 3.0? */
5884 if (conf
& 0x100000)
5885 entry
->i2c_upper_default
= true;
5891 parse_dcb15_entry(struct drm_device
*dev
, struct dcb_table
*dcb
,
5892 uint32_t conn
, uint32_t conf
, struct dcb_entry
*entry
)
5894 switch (conn
& 0x0000000f) {
5896 entry
->type
= OUTPUT_ANALOG
;
5899 entry
->type
= OUTPUT_TV
;
5904 entry
->type
= OUTPUT_LVDS
;
5906 entry
->type
= OUTPUT_TMDS
;
5909 entry
->type
= OUTPUT_LVDS
;
5912 NV_ERROR(dev
, "Unknown DCB type %d\n", conn
& 0x0000000f);
5916 entry
->i2c_index
= (conn
& 0x0003c000) >> 14;
5917 entry
->heads
= ((conn
& 0x001c0000) >> 18) + 1;
5918 entry
->or = entry
->heads
; /* same as heads, hopefully safe enough */
5919 entry
->location
= (conn
& 0x01e00000) >> 21;
5920 entry
->bus
= (conn
& 0x0e000000) >> 25;
5921 entry
->duallink_possible
= false;
5923 switch (entry
->type
) {
5925 entry
->crtconf
.maxfreq
= (conf
& 0xffff) * 10;
5928 entry
->tvconf
.has_component_output
= false;
5931 if ((conn
& 0x00003f00) >> 8 != 0x10)
5932 entry
->lvdsconf
.use_straps_for_mode
= true;
5933 entry
->lvdsconf
.use_power_scripts
= true;
5943 void merge_like_dcb_entries(struct drm_device
*dev
, struct dcb_table
*dcb
)
5946 * DCB v2.0 lists each output combination separately.
5947 * Here we merge compatible entries to have fewer outputs, with
5951 int i
, newentries
= 0;
5953 for (i
= 0; i
< dcb
->entries
; i
++) {
5954 struct dcb_entry
*ient
= &dcb
->entry
[i
];
5957 for (j
= i
+ 1; j
< dcb
->entries
; j
++) {
5958 struct dcb_entry
*jent
= &dcb
->entry
[j
];
5960 if (jent
->type
== 100) /* already merged entry */
5963 /* merge heads field when all other fields the same */
5964 if (jent
->i2c_index
== ient
->i2c_index
&&
5965 jent
->type
== ient
->type
&&
5966 jent
->location
== ient
->location
&&
5967 jent
->or == ient
->or) {
5968 NV_TRACE(dev
, "Merging DCB entries %d and %d\n",
5970 ient
->heads
|= jent
->heads
;
5971 jent
->type
= 100; /* dummy value */
5976 /* Compact entries merged into others out of dcb */
5977 for (i
= 0; i
< dcb
->entries
; i
++) {
5978 if (dcb
->entry
[i
].type
== 100)
5981 if (newentries
!= i
) {
5982 dcb
->entry
[newentries
] = dcb
->entry
[i
];
5983 dcb
->entry
[newentries
].index
= newentries
;
5988 dcb
->entries
= newentries
;
5992 apply_dcb_encoder_quirks(struct drm_device
*dev
, int idx
, u32
*conn
, u32
*conf
)
5994 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
5995 struct dcb_table
*dcb
= &dev_priv
->vbios
.dcb
;
5997 /* Dell Precision M6300
5998 * DCB entry 2: 02025312 00000010
5999 * DCB entry 3: 02026312 00000020
6001 * Identical, except apparently a different connector on a
6002 * different SOR link. Not a clue how we're supposed to know
6003 * which one is in use if it even shares an i2c line...
6005 * Ignore the connector on the second SOR link to prevent
6006 * nasty problems until this is sorted (assuming it's not a
6009 if (nv_match_device(dev
, 0x040d, 0x1028, 0x019b)) {
6010 if (*conn
== 0x02026312 && *conf
== 0x00000020)
6016 * DCB reports an LVDS output that should be TMDS:
6017 * DCB entry 1: f2005014 ffffffff
6019 if (nv_match_device(dev
, 0x0201, 0x1462, 0x8851)) {
6020 if (*conn
== 0xf2005014 && *conf
== 0xffffffff) {
6021 fabricate_dcb_output(dcb
, OUTPUT_TMDS
, 1, 1, 1);
6028 * So many things wrong here, replace the entire encoder table..
6030 if (nv_match_device(dev
, 0x0ca3, 0x1682, 0x3003)) {
6032 *conn
= 0x02001300; /* VGA, connector 1 */
6036 *conn
= 0x01010312; /* DVI, connector 0 */
6040 *conn
= 0x01010310; /* VGA, connector 0 */
6044 *conn
= 0x02022362; /* HDMI, connector 2 */
6047 *conn
= 0x0000000e; /* EOL */
6052 /* Some other twisted XFX board (rhbz#694914)
6054 * The DVI/VGA encoder combo that's supposed to represent the
6055 * DVI-I connector actually point at two different ones, and
6056 * the HDMI connector ends up paired with the VGA instead.
6058 * Connector table is missing anything for VGA at all, pointing it
6059 * an invalid conntab entry 2 so we figure it out ourself.
6061 if (nv_match_device(dev
, 0x0615, 0x1682, 0x2605)) {
6063 *conn
= 0x02002300; /* VGA, connector 2 */
6067 *conn
= 0x01010312; /* DVI, connector 0 */
6071 *conn
= 0x04020310; /* VGA, connector 0 */
6075 *conn
= 0x02021322; /* HDMI, connector 1 */
6078 *conn
= 0x0000000e; /* EOL */
6087 fabricate_dcb_encoder_table(struct drm_device
*dev
, struct nvbios
*bios
)
6089 struct dcb_table
*dcb
= &bios
->dcb
;
6090 int all_heads
= (nv_two_heads(dev
) ? 3 : 1);
6093 /* Apple iMac G4 NV17 */
6094 if (of_machine_is_compatible("PowerMac4,5")) {
6095 fabricate_dcb_output(dcb
, OUTPUT_TMDS
, 0, all_heads
, 1);
6096 fabricate_dcb_output(dcb
, OUTPUT_ANALOG
, 1, all_heads
, 2);
6101 /* Make up some sane defaults */
6102 fabricate_dcb_output(dcb
, OUTPUT_ANALOG
,
6103 bios
->legacy
.i2c_indices
.crt
, 1, 1);
6105 if (nv04_tv_identify(dev
, bios
->legacy
.i2c_indices
.tv
) >= 0)
6106 fabricate_dcb_output(dcb
, OUTPUT_TV
,
6107 bios
->legacy
.i2c_indices
.tv
,
6110 else if (bios
->tmds
.output0_script_ptr
||
6111 bios
->tmds
.output1_script_ptr
)
6112 fabricate_dcb_output(dcb
, OUTPUT_TMDS
,
6113 bios
->legacy
.i2c_indices
.panel
,
6118 parse_dcb_entry(struct drm_device
*dev
, void *data
, int idx
, u8
*outp
)
6120 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6121 struct dcb_table
*dcb
= &dev_priv
->vbios
.dcb
;
6122 u32 conf
= (dcb
->version
>= 0x20) ? ROM32(outp
[4]) : ROM32(outp
[6]);
6123 u32 conn
= ROM32(outp
[0]);
6126 if (apply_dcb_encoder_quirks(dev
, idx
, &conn
, &conf
)) {
6127 struct dcb_entry
*entry
= new_dcb_entry(dcb
);
6129 NV_TRACEWARN(dev
, "DCB outp %02d: %08x %08x\n", idx
, conn
, conf
);
6131 if (dcb
->version
>= 0x20)
6132 ret
= parse_dcb20_entry(dev
, dcb
, conn
, conf
, entry
);
6134 ret
= parse_dcb15_entry(dev
, dcb
, conn
, conf
, entry
);
6136 return 1; /* stop parsing */
6138 /* Ignore the I2C index for on-chip TV-out, as there
6139 * are cards with bogus values (nv31m in bug 23212),
6140 * and it's otherwise useless.
6142 if (entry
->type
== OUTPUT_TV
&&
6143 entry
->location
== DCB_LOC_ON_CHIP
)
6144 entry
->i2c_index
= 0x0f;
6151 dcb_fake_connectors(struct nvbios
*bios
)
6153 struct dcb_table
*dcbt
= &bios
->dcb
;
6157 /* heuristic: if we ever get a non-zero connector field, assume
6158 * that all the indices are valid and we don't need fake them.
6160 for (i
= 0; i
< dcbt
->entries
; i
++) {
6161 if (dcbt
->entry
[i
].connector
)
6165 /* no useful connector info available, we need to make it up
6166 * ourselves. the rule here is: anything on the same i2c bus
6167 * is considered to be on the same connector. any output
6168 * without an associated i2c bus is assigned its own unique
6171 for (i
= 0; i
< dcbt
->entries
; i
++) {
6172 u8 i2c
= dcbt
->entry
[i
].i2c_index
;
6174 dcbt
->entry
[i
].connector
= idx
++;
6178 dcbt
->entry
[i
].connector
= map
[i2c
] - 1;
6182 /* if we created more than one connector, destroy the connector
6183 * table - just in case it has random, rather than stub, entries.
6186 u8
*conntab
= dcb_conntab(bios
->dev
);
6193 parse_dcb_table(struct drm_device
*dev
, struct nvbios
*bios
)
6195 struct dcb_table
*dcb
= &bios
->dcb
;
6199 dcbt
= dcb_table(dev
);
6201 /* handle pre-DCB boards */
6202 if (bios
->type
== NVBIOS_BMP
) {
6203 fabricate_dcb_encoder_table(dev
, bios
);
6210 NV_TRACE(dev
, "DCB version %d.%d\n", dcbt
[0] >> 4, dcbt
[0] & 0xf);
6212 dcb
->version
= dcbt
[0];
6213 dcb_outp_foreach(dev
, NULL
, parse_dcb_entry
);
6216 * apart for v2.1+ not being known for requiring merging, this
6217 * guarantees dcbent->index is the index of the entry in the rom image
6219 if (dcb
->version
< 0x21)
6220 merge_like_dcb_entries(dev
, dcb
);
6225 /* dump connector table entries to log, if any exist */
6227 while ((conn
= dcb_conn(dev
, ++idx
))) {
6228 if (conn
[0] != 0xff) {
6229 NV_TRACE(dev
, "DCB conn %02d: ", idx
);
6230 if (dcb_conntab(dev
)[3] < 4)
6231 printk("%04x\n", ROM16(conn
[0]));
6233 printk("%08x\n", ROM32(conn
[0]));
6236 dcb_fake_connectors(bios
);
6240 static int load_nv17_hwsq_ucode_entry(struct drm_device
*dev
, struct nvbios
*bios
, uint16_t hwsq_offset
, int entry
)
6243 * The header following the "HWSQ" signature has the number of entries,
6244 * and the entry size
6246 * An entry consists of a dword to write to the sequencer control reg
6247 * (0x00001304), followed by the ucode bytes, written sequentially,
6248 * starting at reg 0x00001400
6251 uint8_t bytes_to_write
;
6252 uint16_t hwsq_entry_offset
;
6255 if (bios
->data
[hwsq_offset
] <= entry
) {
6256 NV_ERROR(dev
, "Too few entries in HW sequencer table for "
6257 "requested entry\n");
6261 bytes_to_write
= bios
->data
[hwsq_offset
+ 1];
6263 if (bytes_to_write
!= 36) {
6264 NV_ERROR(dev
, "Unknown HW sequencer entry size\n");
6268 NV_TRACE(dev
, "Loading NV17 power sequencing microcode\n");
6270 hwsq_entry_offset
= hwsq_offset
+ 2 + entry
* bytes_to_write
;
6272 /* set sequencer control */
6273 bios_wr32(bios
, 0x00001304, ROM32(bios
->data
[hwsq_entry_offset
]));
6274 bytes_to_write
-= 4;
6277 for (i
= 0; i
< bytes_to_write
; i
+= 4)
6278 bios_wr32(bios
, 0x00001400 + i
, ROM32(bios
->data
[hwsq_entry_offset
+ i
+ 4]));
6280 /* twiddle NV_PBUS_DEBUG_4 */
6281 bios_wr32(bios
, NV_PBUS_DEBUG_4
, bios_rd32(bios
, NV_PBUS_DEBUG_4
) | 0x18);
6286 static int load_nv17_hw_sequencer_ucode(struct drm_device
*dev
,
6287 struct nvbios
*bios
)
6290 * BMP based cards, from NV17, need a microcode loading to correctly
6291 * control the GPIO etc for LVDS panels
6293 * BIT based cards seem to do this directly in the init scripts
6295 * The microcode entries are found by the "HWSQ" signature.
6298 const uint8_t hwsq_signature
[] = { 'H', 'W', 'S', 'Q' };
6299 const int sz
= sizeof(hwsq_signature
);
6302 hwsq_offset
= findstr(bios
->data
, bios
->length
, hwsq_signature
, sz
);
6306 /* always use entry 0? */
6307 return load_nv17_hwsq_ucode_entry(dev
, bios
, hwsq_offset
+ sz
, 0);
6310 uint8_t *nouveau_bios_embedded_edid(struct drm_device
*dev
)
6312 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6313 struct nvbios
*bios
= &dev_priv
->vbios
;
6314 const uint8_t edid_sig
[] = {
6315 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00 };
6316 uint16_t offset
= 0;
6318 int searchlen
= NV_PROM_SIZE
;
6321 return bios
->fp
.edid
;
6324 newoffset
= findstr(&bios
->data
[offset
], searchlen
,
6328 offset
+= newoffset
;
6329 if (!nv_cksum(&bios
->data
[offset
], EDID1_LEN
))
6332 searchlen
-= offset
;
6336 NV_TRACE(dev
, "Found EDID in BIOS\n");
6338 return bios
->fp
.edid
= &bios
->data
[offset
];
6342 nouveau_bios_run_init_table(struct drm_device
*dev
, uint16_t table
,
6343 struct dcb_entry
*dcbent
, int crtc
)
6345 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6346 struct nvbios
*bios
= &dev_priv
->vbios
;
6347 struct init_exec iexec
= { true, false };
6349 spin_lock_bh(&bios
->lock
);
6350 bios
->display
.output
= dcbent
;
6351 bios
->display
.crtc
= crtc
;
6352 parse_init_table(bios
, table
, &iexec
);
6353 bios
->display
.output
= NULL
;
6354 spin_unlock_bh(&bios
->lock
);
6358 nouveau_bios_init_exec(struct drm_device
*dev
, uint16_t table
)
6360 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6361 struct nvbios
*bios
= &dev_priv
->vbios
;
6362 struct init_exec iexec
= { true, false };
6364 parse_init_table(bios
, table
, &iexec
);
6367 static bool NVInitVBIOS(struct drm_device
*dev
)
6369 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6370 struct nvbios
*bios
= &dev_priv
->vbios
;
6372 memset(bios
, 0, sizeof(struct nvbios
));
6373 spin_lock_init(&bios
->lock
);
6376 return bios_shadow(dev
);
6379 static int nouveau_parse_vbios_struct(struct drm_device
*dev
)
6381 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6382 struct nvbios
*bios
= &dev_priv
->vbios
;
6383 const uint8_t bit_signature
[] = { 0xff, 0xb8, 'B', 'I', 'T' };
6384 const uint8_t bmp_signature
[] = { 0xff, 0x7f, 'N', 'V', 0x0 };
6387 offset
= findstr(bios
->data
, bios
->length
,
6388 bit_signature
, sizeof(bit_signature
));
6390 NV_TRACE(dev
, "BIT BIOS found\n");
6391 bios
->type
= NVBIOS_BIT
;
6392 bios
->offset
= offset
;
6393 return parse_bit_structure(bios
, offset
+ 6);
6396 offset
= findstr(bios
->data
, bios
->length
,
6397 bmp_signature
, sizeof(bmp_signature
));
6399 NV_TRACE(dev
, "BMP BIOS found\n");
6400 bios
->type
= NVBIOS_BMP
;
6401 bios
->offset
= offset
;
6402 return parse_bmp_structure(dev
, bios
, offset
);
6405 NV_ERROR(dev
, "No known BIOS signature found\n");
6410 nouveau_run_vbios_init(struct drm_device
*dev
)
6412 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6413 struct nvbios
*bios
= &dev_priv
->vbios
;
6416 /* Reset the BIOS head to 0. */
6417 bios
->state
.crtchead
= 0;
6419 if (bios
->major_version
< 5) /* BMP only */
6420 load_nv17_hw_sequencer_ucode(dev
, bios
);
6422 if (bios
->execute
) {
6423 bios
->fp
.last_script_invoc
= 0;
6424 bios
->fp
.lvds_init_run
= false;
6427 parse_init_tables(bios
);
6430 * Runs some additional script seen on G8x VBIOSen. The VBIOS'
6431 * parser will run this right after the init tables, the binary
6432 * driver appears to run it at some point later.
6434 if (bios
->some_script_ptr
) {
6435 struct init_exec iexec
= {true, false};
6437 NV_INFO(dev
, "Parsing VBIOS init table at offset 0x%04X\n",
6438 bios
->some_script_ptr
);
6439 parse_init_table(bios
, bios
->some_script_ptr
, &iexec
);
6442 if (dev_priv
->card_type
>= NV_50
) {
6443 for (i
= 0; i
< bios
->dcb
.entries
; i
++) {
6444 nouveau_bios_run_display_table(dev
, 0, 0,
6445 &bios
->dcb
.entry
[i
], -1);
6453 nouveau_bios_posted(struct drm_device
*dev
)
6455 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6458 if (dev_priv
->card_type
>= NV_50
) {
6459 if (NVReadVgaCrtc(dev
, 0, 0x00) == 0 &&
6460 NVReadVgaCrtc(dev
, 0, 0x1a) == 0)
6465 htotal
= NVReadVgaCrtc(dev
, 0, 0x06);
6466 htotal
|= (NVReadVgaCrtc(dev
, 0, 0x07) & 0x01) << 8;
6467 htotal
|= (NVReadVgaCrtc(dev
, 0, 0x07) & 0x20) << 4;
6468 htotal
|= (NVReadVgaCrtc(dev
, 0, 0x25) & 0x01) << 10;
6469 htotal
|= (NVReadVgaCrtc(dev
, 0, 0x41) & 0x01) << 11;
6471 return (htotal
!= 0);
6475 nouveau_bios_init(struct drm_device
*dev
)
6477 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6478 struct nvbios
*bios
= &dev_priv
->vbios
;
6481 if (!NVInitVBIOS(dev
))
6484 ret
= nouveau_parse_vbios_struct(dev
);
6488 ret
= nouveau_i2c_init(dev
);
6492 ret
= nouveau_mxm_init(dev
);
6496 ret
= parse_dcb_table(dev
, bios
);
6500 if (!bios
->major_version
) /* we don't run version 0 bios */
6503 /* init script execution disabled */
6504 bios
->execute
= false;
6506 /* ... unless card isn't POSTed already */
6507 if (!nouveau_bios_posted(dev
)) {
6508 NV_INFO(dev
, "Adaptor not initialised, "
6509 "running VBIOS init tables.\n");
6510 bios
->execute
= true;
6512 if (nouveau_force_post
)
6513 bios
->execute
= true;
6515 ret
= nouveau_run_vbios_init(dev
);
6519 /* feature_byte on BMP is poor, but init always sets CR4B */
6520 if (bios
->major_version
< 5)
6521 bios
->is_mobile
= NVReadVgaCrtc(dev
, 0, NV_CIO_CRE_4B
) & 0x40;
6523 /* all BIT systems need p_f_m_t for digital_min_front_porch */
6524 if (bios
->is_mobile
|| bios
->major_version
>= 5)
6525 ret
= parse_fp_mode_table(dev
, bios
);
6527 /* allow subsequent scripts to execute */
6528 bios
->execute
= true;
6534 nouveau_bios_takedown(struct drm_device
*dev
)
6536 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6538 nouveau_mxm_fini(dev
);
6539 nouveau_i2c_fini(dev
);
6541 kfree(dev_priv
->vbios
.data
);