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>
33 #include <linux/firmware.h>
35 /* these defines are made up */
36 #define NV_CIO_CRE_44_HEADA 0x0
37 #define NV_CIO_CRE_44_HEADB 0x3
38 #define FEATURE_MOBILE 0x10 /* also FEATURE_QUADRO for BMP */
42 #define BIOSLOG(sip, fmt, arg...) NV_DEBUG(sip->dev, fmt, ##arg)
43 #define LOG_OLD_VALUE(x)
50 static bool nv_cksum(const uint8_t *data
, unsigned int length
)
53 * There's a few checksums in the BIOS, so here's a generic checking
59 for (i
= 0; i
< length
; i
++)
69 score_vbios(struct nvbios
*bios
, const bool writeable
)
71 if (!bios
->data
|| bios
->data
[0] != 0x55 || bios
->data
[1] != 0xAA) {
72 NV_TRACEWARN(bios
->dev
, "... BIOS signature not found\n");
76 if (nv_cksum(bios
->data
, bios
->data
[2] * 512)) {
77 NV_TRACEWARN(bios
->dev
, "... BIOS checksum invalid\n");
78 /* if a ro image is somewhat bad, it's probably all rubbish */
79 return writeable
? 2 : 1;
82 NV_TRACE(bios
->dev
, "... appears to be valid\n");
87 bios_shadow_prom(struct nvbios
*bios
)
89 struct drm_device
*dev
= bios
->dev
;
90 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
95 /* enable access to rom */
96 if (dev_priv
->card_type
>= NV_50
)
99 pcireg
= NV_PBUS_PCI_NV_20
;
100 access
= nv_mask(dev
, pcireg
, 0x00000001, 0x00000000);
102 /* bail if no rom signature, with a workaround for a PROM reading
103 * issue on some chipsets. the first read after a period of
104 * inactivity returns the wrong result, so retry the first header
105 * byte a few times before giving up as a workaround
109 if (nv_rd08(dev
, NV_PROM_OFFSET
+ 0) == 0x55)
113 if (!i
|| nv_rd08(dev
, NV_PROM_OFFSET
+ 1) != 0xaa)
116 /* additional check (see note below) - read PCI record header */
117 pcir
= nv_rd08(dev
, NV_PROM_OFFSET
+ 0x18) |
118 nv_rd08(dev
, NV_PROM_OFFSET
+ 0x19) << 8;
119 if (nv_rd08(dev
, NV_PROM_OFFSET
+ pcir
+ 0) != 'P' ||
120 nv_rd08(dev
, NV_PROM_OFFSET
+ pcir
+ 1) != 'C' ||
121 nv_rd08(dev
, NV_PROM_OFFSET
+ pcir
+ 2) != 'I' ||
122 nv_rd08(dev
, NV_PROM_OFFSET
+ pcir
+ 3) != 'R')
125 /* read entire bios image to system memory */
126 bios
->length
= nv_rd08(dev
, NV_PROM_OFFSET
+ 2) * 512;
127 bios
->data
= kmalloc(bios
->length
, GFP_KERNEL
);
129 for (i
= 0; i
< bios
->length
; i
++)
130 bios
->data
[i
] = nv_rd08(dev
, NV_PROM_OFFSET
+ i
);
134 /* disable access to rom */
135 nv_wr32(dev
, pcireg
, access
);
139 bios_shadow_pramin(struct nvbios
*bios
)
141 struct drm_device
*dev
= bios
->dev
;
142 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
146 if (dev_priv
->card_type
>= NV_50
) {
147 u64 addr
= (u64
)(nv_rd32(dev
, 0x619f04) & 0xffffff00) << 8;
149 addr
= (u64
)nv_rd32(dev
, 0x001700) << 16;
153 bar0
= nv_mask(dev
, 0x001700, 0xffffffff, addr
>> 16);
156 /* bail if no rom signature */
157 if (nv_rd08(dev
, NV_PRAMIN_OFFSET
+ 0) != 0x55 ||
158 nv_rd08(dev
, NV_PRAMIN_OFFSET
+ 1) != 0xaa)
161 bios
->length
= nv_rd08(dev
, NV_PRAMIN_OFFSET
+ 2) * 512;
162 bios
->data
= kmalloc(bios
->length
, GFP_KERNEL
);
164 for (i
= 0; i
< bios
->length
; i
++)
165 bios
->data
[i
] = nv_rd08(dev
, NV_PRAMIN_OFFSET
+ i
);
169 if (dev_priv
->card_type
>= NV_50
)
170 nv_wr32(dev
, 0x001700, bar0
);
174 bios_shadow_pci(struct nvbios
*bios
)
176 struct pci_dev
*pdev
= bios
->dev
->pdev
;
179 if (!pci_enable_rom(pdev
)) {
180 void __iomem
*rom
= pci_map_rom(pdev
, &length
);
182 bios
->data
= kmalloc(length
, GFP_KERNEL
);
184 memcpy_fromio(bios
->data
, rom
, length
);
185 bios
->length
= length
;
189 pci_unmap_rom(pdev
, rom
);
191 pci_disable_rom(pdev
);
196 bios_shadow_acpi(struct nvbios
*bios
)
198 struct pci_dev
*pdev
= bios
->dev
->pdev
;
199 int cnt
= 65536 / ROM_BIOS_PAGE
;
202 if (!nouveau_acpi_rom_supported(pdev
))
205 bios
->data
= kmalloc(cnt
* ROM_BIOS_PAGE
, GFP_KERNEL
);
211 ret
= nouveau_acpi_get_bios_chunk(bios
->data
, bios
->length
,
213 if (ret
!= ROM_BIOS_PAGE
)
216 bios
->length
+= ROM_BIOS_PAGE
;
222 void (*shadow
)(struct nvbios
*);
230 bios_shadow(struct drm_device
*dev
)
232 struct methods shadow_methods
[] = {
233 { "PRAMIN", bios_shadow_pramin
, true, 0, 0, NULL
},
234 { "PROM", bios_shadow_prom
, false, 0, 0, NULL
},
235 { "ACPI", bios_shadow_acpi
, true, 0, 0, NULL
},
236 { "PCIROM", bios_shadow_pci
, true, 0, 0, NULL
},
239 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
240 struct nvbios
*bios
= &dev_priv
->vbios
;
241 struct methods
*mthd
, *best
;
242 const struct firmware
*fw
;
247 /* try to match one of the built-in methods */
248 mthd
= shadow_methods
;
250 if (strcasecmp(nouveau_vbios
, mthd
->desc
))
252 NV_INFO(dev
, "VBIOS source: %s\n", mthd
->desc
);
255 mthd
->score
= score_vbios(bios
, mthd
->rw
);
258 } while ((++mthd
)->shadow
);
260 /* attempt to load firmware image */
261 snprintf(fname
, sizeof(fname
), "nouveau/%s", nouveau_vbios
);
262 ret
= request_firmware(&fw
, fname
, &dev
->pdev
->dev
);
264 bios
->length
= fw
->size
;
265 bios
->data
= kmemdup(fw
->data
, fw
->size
, GFP_KERNEL
);
266 release_firmware(fw
);
268 NV_INFO(dev
, "VBIOS image: %s\n", nouveau_vbios
);
269 if (score_vbios(bios
, 1))
276 NV_ERROR(dev
, "VBIOS source \'%s\' invalid\n", nouveau_vbios
);
279 mthd
= shadow_methods
;
281 NV_TRACE(dev
, "Checking %s for VBIOS\n", mthd
->desc
);
283 mthd
->score
= score_vbios(bios
, mthd
->rw
);
284 mthd
->size
= bios
->length
;
285 mthd
->data
= bios
->data
;
287 } while (mthd
->score
!= 3 && (++mthd
)->shadow
);
289 mthd
= shadow_methods
;
292 if (mthd
->score
> best
->score
) {
296 } while ((++mthd
)->shadow
);
299 NV_TRACE(dev
, "Using VBIOS from %s\n", best
->desc
);
300 bios
->length
= best
->size
;
301 bios
->data
= best
->data
;
305 NV_ERROR(dev
, "No valid VBIOS image found\n");
309 struct init_tbl_entry
{
313 * > 0: success, length of opcode
314 * 0: success, but abort further parsing of table (INIT_DONE etc)
315 * < 0: failure, table parsing will be aborted
317 int (*handler
)(struct nvbios
*, uint16_t, struct init_exec
*);
320 static int parse_init_table(struct nvbios
*, uint16_t, struct init_exec
*);
322 #define MACRO_INDEX_SIZE 2
324 #define CONDITION_SIZE 12
325 #define IO_FLAG_CONDITION_SIZE 9
326 #define IO_CONDITION_SIZE 5
327 #define MEM_INIT_SIZE 66
329 static void still_alive(void)
338 munge_reg(struct nvbios
*bios
, uint32_t reg
)
340 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
341 struct dcb_entry
*dcbent
= bios
->display
.output
;
343 if (dev_priv
->card_type
< NV_50
)
346 if (reg
& 0x80000000) {
347 BUG_ON(bios
->display
.crtc
< 0);
348 reg
+= bios
->display
.crtc
* 0x800;
351 if (reg
& 0x40000000) {
354 reg
+= (ffs(dcbent
->or) - 1) * 0x800;
355 if ((reg
& 0x20000000) && !(dcbent
->sorconf
.link
& 1))
364 valid_reg(struct nvbios
*bios
, uint32_t reg
)
366 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
367 struct drm_device
*dev
= bios
->dev
;
369 /* C51 has misaligned regs on purpose. Marvellous */
371 (reg
& 0x1 && dev_priv
->vbios
.chip_version
!= 0x51))
372 NV_ERROR(dev
, "======= misaligned reg 0x%08X =======\n", reg
);
374 /* warn on C51 regs that haven't been verified accessible in tracing */
375 if (reg
& 0x1 && dev_priv
->vbios
.chip_version
== 0x51 &&
376 reg
!= 0x130d && reg
!= 0x1311 && reg
!= 0x60081d)
377 NV_WARN(dev
, "=== C51 misaligned reg 0x%08X not verified ===\n",
380 if (reg
>= (8*1024*1024)) {
381 NV_ERROR(dev
, "=== reg 0x%08x out of mapped bounds ===\n", reg
);
389 valid_idx_port(struct nvbios
*bios
, uint16_t port
)
391 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
392 struct drm_device
*dev
= bios
->dev
;
395 * If adding more ports here, the read/write functions below will need
396 * updating so that the correct mmio range (PRMCIO, PRMDIO, PRMVIO) is
397 * used for the port in question
399 if (dev_priv
->card_type
< NV_50
) {
400 if (port
== NV_CIO_CRX__COLOR
)
402 if (port
== NV_VIO_SRX
)
405 if (port
== NV_CIO_CRX__COLOR
)
409 NV_ERROR(dev
, "========== unknown indexed io port 0x%04X ==========\n",
416 valid_port(struct nvbios
*bios
, uint16_t port
)
418 struct drm_device
*dev
= bios
->dev
;
421 * If adding more ports here, the read/write functions below will need
422 * updating so that the correct mmio range (PRMCIO, PRMDIO, PRMVIO) is
423 * used for the port in question
425 if (port
== NV_VIO_VSE2
)
428 NV_ERROR(dev
, "========== unknown io port 0x%04X ==========\n", port
);
434 bios_rd32(struct nvbios
*bios
, uint32_t reg
)
438 reg
= munge_reg(bios
, reg
);
439 if (!valid_reg(bios
, reg
))
443 * C51 sometimes uses regs with bit0 set in the address. For these
444 * cases there should exist a translation in a BIOS table to an IO
445 * port address which the BIOS uses for accessing the reg
447 * These only seem to appear for the power control regs to a flat panel,
448 * and the GPIO regs at 0x60081*. In C51 mmio traces the normal regs
449 * for 0x1308 and 0x1310 are used - hence the mask below. An S3
450 * suspend-resume mmio trace from a C51 will be required to see if this
451 * is true for the power microcode in 0x14.., or whether the direct IO
452 * port access method is needed
457 data
= nv_rd32(bios
->dev
, reg
);
459 BIOSLOG(bios
, " Read: Reg: 0x%08X, Data: 0x%08X\n", reg
, data
);
465 bios_wr32(struct nvbios
*bios
, uint32_t reg
, uint32_t data
)
467 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
469 reg
= munge_reg(bios
, reg
);
470 if (!valid_reg(bios
, reg
))
473 /* see note in bios_rd32 */
477 LOG_OLD_VALUE(bios_rd32(bios
, reg
));
478 BIOSLOG(bios
, " Write: Reg: 0x%08X, Data: 0x%08X\n", reg
, data
);
480 if (dev_priv
->vbios
.execute
) {
482 nv_wr32(bios
->dev
, reg
, data
);
487 bios_idxprt_rd(struct nvbios
*bios
, uint16_t port
, uint8_t index
)
489 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
490 struct drm_device
*dev
= bios
->dev
;
493 if (!valid_idx_port(bios
, port
))
496 if (dev_priv
->card_type
< NV_50
) {
497 if (port
== NV_VIO_SRX
)
498 data
= NVReadVgaSeq(dev
, bios
->state
.crtchead
, index
);
499 else /* assume NV_CIO_CRX__COLOR */
500 data
= NVReadVgaCrtc(dev
, bios
->state
.crtchead
, index
);
504 data32
= bios_rd32(bios
, NV50_PDISPLAY_VGACRTC(index
& ~3));
505 data
= (data32
>> ((index
& 3) << 3)) & 0xff;
508 BIOSLOG(bios
, " Indexed IO read: Port: 0x%04X, Index: 0x%02X, "
509 "Head: 0x%02X, Data: 0x%02X\n",
510 port
, index
, bios
->state
.crtchead
, data
);
515 bios_idxprt_wr(struct nvbios
*bios
, uint16_t port
, uint8_t index
, uint8_t data
)
517 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
518 struct drm_device
*dev
= bios
->dev
;
520 if (!valid_idx_port(bios
, port
))
524 * The current head is maintained in the nvbios member state.crtchead.
525 * We trap changes to CR44 and update the head variable and hence the
526 * register set written.
527 * As CR44 only exists on CRTC0, we update crtchead to head0 in advance
528 * of the write, and to head1 after the write
530 if (port
== NV_CIO_CRX__COLOR
&& index
== NV_CIO_CRE_44
&&
531 data
!= NV_CIO_CRE_44_HEADB
)
532 bios
->state
.crtchead
= 0;
534 LOG_OLD_VALUE(bios_idxprt_rd(bios
, port
, index
));
535 BIOSLOG(bios
, " Indexed IO write: Port: 0x%04X, Index: 0x%02X, "
536 "Head: 0x%02X, Data: 0x%02X\n",
537 port
, index
, bios
->state
.crtchead
, data
);
539 if (bios
->execute
&& dev_priv
->card_type
< NV_50
) {
541 if (port
== NV_VIO_SRX
)
542 NVWriteVgaSeq(dev
, bios
->state
.crtchead
, index
, data
);
543 else /* assume NV_CIO_CRX__COLOR */
544 NVWriteVgaCrtc(dev
, bios
->state
.crtchead
, index
, data
);
547 uint32_t data32
, shift
= (index
& 3) << 3;
551 data32
= bios_rd32(bios
, NV50_PDISPLAY_VGACRTC(index
& ~3));
552 data32
&= ~(0xff << shift
);
553 data32
|= (data
<< shift
);
554 bios_wr32(bios
, NV50_PDISPLAY_VGACRTC(index
& ~3), data32
);
557 if (port
== NV_CIO_CRX__COLOR
&&
558 index
== NV_CIO_CRE_44
&& data
== NV_CIO_CRE_44_HEADB
)
559 bios
->state
.crtchead
= 1;
563 bios_port_rd(struct nvbios
*bios
, uint16_t port
)
565 uint8_t data
, head
= bios
->state
.crtchead
;
567 if (!valid_port(bios
, port
))
570 data
= NVReadPRMVIO(bios
->dev
, head
, NV_PRMVIO0_OFFSET
+ port
);
572 BIOSLOG(bios
, " IO read: Port: 0x%04X, Head: 0x%02X, Data: 0x%02X\n",
579 bios_port_wr(struct nvbios
*bios
, uint16_t port
, uint8_t data
)
581 int head
= bios
->state
.crtchead
;
583 if (!valid_port(bios
, port
))
586 LOG_OLD_VALUE(bios_port_rd(bios
, port
));
587 BIOSLOG(bios
, " IO write: Port: 0x%04X, Head: 0x%02X, Data: 0x%02X\n",
594 NVWritePRMVIO(bios
->dev
, head
, NV_PRMVIO0_OFFSET
+ port
, data
);
598 io_flag_condition_met(struct nvbios
*bios
, uint16_t offset
, uint8_t cond
)
601 * The IO flag condition entry has 2 bytes for the CRTC port; 1 byte
602 * for the CRTC index; 1 byte for the mask to apply to the value
603 * retrieved from the CRTC; 1 byte for the shift right to apply to the
604 * masked CRTC value; 2 bytes for the offset to the flag array, to
605 * which the shifted value is added; 1 byte for the mask applied to the
606 * value read from the flag array; and 1 byte for the value to compare
607 * against the masked byte from the flag table.
610 uint16_t condptr
= bios
->io_flag_condition_tbl_ptr
+ cond
* IO_FLAG_CONDITION_SIZE
;
611 uint16_t crtcport
= ROM16(bios
->data
[condptr
]);
612 uint8_t crtcindex
= bios
->data
[condptr
+ 2];
613 uint8_t mask
= bios
->data
[condptr
+ 3];
614 uint8_t shift
= bios
->data
[condptr
+ 4];
615 uint16_t flagarray
= ROM16(bios
->data
[condptr
+ 5]);
616 uint8_t flagarraymask
= bios
->data
[condptr
+ 7];
617 uint8_t cmpval
= bios
->data
[condptr
+ 8];
620 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
621 "Shift: 0x%02X, FlagArray: 0x%04X, FAMask: 0x%02X, "
623 offset
, crtcport
, crtcindex
, mask
, shift
, flagarray
, flagarraymask
, cmpval
);
625 data
= bios_idxprt_rd(bios
, crtcport
, crtcindex
);
627 data
= bios
->data
[flagarray
+ ((data
& mask
) >> shift
)];
628 data
&= flagarraymask
;
630 BIOSLOG(bios
, "0x%04X: Checking if 0x%02X equals 0x%02X\n",
631 offset
, data
, cmpval
);
633 return (data
== cmpval
);
637 bios_condition_met(struct nvbios
*bios
, uint16_t offset
, uint8_t cond
)
640 * The condition table entry has 4 bytes for the address of the
641 * register to check, 4 bytes for a mask to apply to the register and
642 * 4 for a test comparison value
645 uint16_t condptr
= bios
->condition_tbl_ptr
+ cond
* CONDITION_SIZE
;
646 uint32_t reg
= ROM32(bios
->data
[condptr
]);
647 uint32_t mask
= ROM32(bios
->data
[condptr
+ 4]);
648 uint32_t cmpval
= ROM32(bios
->data
[condptr
+ 8]);
651 BIOSLOG(bios
, "0x%04X: Cond: 0x%02X, Reg: 0x%08X, Mask: 0x%08X\n",
652 offset
, cond
, reg
, mask
);
654 data
= bios_rd32(bios
, reg
) & mask
;
656 BIOSLOG(bios
, "0x%04X: Checking if 0x%08X equals 0x%08X\n",
657 offset
, data
, cmpval
);
659 return (data
== cmpval
);
663 io_condition_met(struct nvbios
*bios
, uint16_t offset
, uint8_t cond
)
666 * The IO condition entry has 2 bytes for the IO port address; 1 byte
667 * for the index to write to io_port; 1 byte for the mask to apply to
668 * the byte read from io_port+1; and 1 byte for the value to compare
669 * against the masked byte.
672 uint16_t condptr
= bios
->io_condition_tbl_ptr
+ cond
* IO_CONDITION_SIZE
;
673 uint16_t io_port
= ROM16(bios
->data
[condptr
]);
674 uint8_t port_index
= bios
->data
[condptr
+ 2];
675 uint8_t mask
= bios
->data
[condptr
+ 3];
676 uint8_t cmpval
= bios
->data
[condptr
+ 4];
678 uint8_t data
= bios_idxprt_rd(bios
, io_port
, port_index
) & mask
;
680 BIOSLOG(bios
, "0x%04X: Checking if 0x%02X equals 0x%02X\n",
681 offset
, data
, cmpval
);
683 return (data
== cmpval
);
687 nv50_pll_set(struct drm_device
*dev
, uint32_t reg
, uint32_t clk
)
689 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
690 struct nouveau_pll_vals pll
;
691 struct pll_lims pll_limits
;
692 u32 ctrl
, mask
, coef
;
695 ret
= get_pll_limits(dev
, reg
, &pll_limits
);
699 clk
= nouveau_calc_pll_mnp(dev
, &pll_limits
, clk
, &pll
);
703 coef
= pll
.N1
<< 8 | pll
.M1
;
704 ctrl
= pll
.log2P
<< 16;
706 if (reg
== 0x004008) {
708 ctrl
|= (pll_limits
.log2p_bias
<< 19);
709 ctrl
|= (pll
.log2P
<< 22);
712 if (!dev_priv
->vbios
.execute
)
715 nv_mask(dev
, reg
+ 0, mask
, ctrl
);
716 nv_wr32(dev
, reg
+ 4, coef
);
721 setPLL(struct nvbios
*bios
, uint32_t reg
, uint32_t clk
)
723 struct drm_device
*dev
= bios
->dev
;
724 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
726 struct pll_lims pll_lim
;
727 struct nouveau_pll_vals pllvals
;
730 if (dev_priv
->card_type
>= NV_50
)
731 return nv50_pll_set(dev
, reg
, clk
);
733 /* high regs (such as in the mac g5 table) are not -= 4 */
734 ret
= get_pll_limits(dev
, reg
> 0x405c ? reg
: reg
- 4, &pll_lim
);
738 clk
= nouveau_calc_pll_mnp(dev
, &pll_lim
, clk
, &pllvals
);
744 nouveau_hw_setpll(dev
, reg
, &pllvals
);
750 static int dcb_entry_idx_from_crtchead(struct drm_device
*dev
)
752 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
753 struct nvbios
*bios
= &dev_priv
->vbios
;
756 * For the results of this function to be correct, CR44 must have been
757 * set (using bios_idxprt_wr to set crtchead), CR58 set for CR57 = 0,
758 * and the DCB table parsed, before the script calling the function is
759 * run. run_digital_op_script is example of how to do such setup
762 uint8_t dcb_entry
= NVReadVgaCrtc5758(dev
, bios
->state
.crtchead
, 0);
764 if (dcb_entry
> bios
->dcb
.entries
) {
765 NV_ERROR(dev
, "CR58 doesn't have a valid DCB entry currently "
766 "(%02X)\n", dcb_entry
);
767 dcb_entry
= 0x7f; /* unused / invalid marker */
773 static struct nouveau_i2c_chan
*
774 init_i2c_device_find(struct drm_device
*dev
, int i2c_index
)
776 if (i2c_index
== 0xff) {
777 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
778 struct dcb_table
*dcb
= &dev_priv
->vbios
.dcb
;
779 /* note: dcb_entry_idx_from_crtchead needs pre-script set-up */
780 int idx
= dcb_entry_idx_from_crtchead(dev
);
782 i2c_index
= NV_I2C_DEFAULT(0);
783 if (idx
!= 0x7f && dcb
->entry
[idx
].i2c_upper_default
)
784 i2c_index
= NV_I2C_DEFAULT(1);
787 return nouveau_i2c_find(dev
, i2c_index
);
791 get_tmds_index_reg(struct drm_device
*dev
, uint8_t mlv
)
794 * For mlv < 0x80, it is an index into a table of TMDS base addresses.
795 * For mlv == 0x80 use the "or" value of the dcb_entry indexed by
796 * CR58 for CR57 = 0 to index a table of offsets to the basic
798 * For mlv == 0x81 use the "or" value of the dcb_entry indexed by
799 * CR58 for CR57 = 0 to index a table of offsets to the basic
800 * 0x6808b0 address, and then flip the offset by 8.
803 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
804 struct nvbios
*bios
= &dev_priv
->vbios
;
805 const int pramdac_offset
[13] = {
806 0, 0, 0x8, 0, 0x2000, 0, 0, 0, 0x2008, 0, 0, 0, 0x2000 };
807 const uint32_t pramdac_table
[4] = {
808 0x6808b0, 0x6808b8, 0x6828b0, 0x6828b8 };
811 int dcb_entry
, dacoffset
;
813 /* note: dcb_entry_idx_from_crtchead needs pre-script set-up */
814 dcb_entry
= dcb_entry_idx_from_crtchead(dev
);
815 if (dcb_entry
== 0x7f)
817 dacoffset
= pramdac_offset
[bios
->dcb
.entry
[dcb_entry
].or];
820 return 0x6808b0 + dacoffset
;
822 if (mlv
>= ARRAY_SIZE(pramdac_table
)) {
823 NV_ERROR(dev
, "Magic Lookup Value too big (%02X)\n",
827 return pramdac_table
[mlv
];
832 init_io_restrict_prog(struct nvbios
*bios
, uint16_t offset
,
833 struct init_exec
*iexec
)
836 * INIT_IO_RESTRICT_PROG opcode: 0x32 ('2')
838 * offset (8 bit): opcode
839 * offset + 1 (16 bit): CRTC port
840 * offset + 3 (8 bit): CRTC index
841 * offset + 4 (8 bit): mask
842 * offset + 5 (8 bit): shift
843 * offset + 6 (8 bit): count
844 * offset + 7 (32 bit): register
845 * offset + 11 (32 bit): configuration 1
848 * Starting at offset + 11 there are "count" 32 bit values.
849 * To find out which value to use read index "CRTC index" on "CRTC
850 * port", AND this value with "mask" and then bit shift right "shift"
851 * bits. Read the appropriate value using this index and write to
855 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
856 uint8_t crtcindex
= bios
->data
[offset
+ 3];
857 uint8_t mask
= bios
->data
[offset
+ 4];
858 uint8_t shift
= bios
->data
[offset
+ 5];
859 uint8_t count
= bios
->data
[offset
+ 6];
860 uint32_t reg
= ROM32(bios
->data
[offset
+ 7]);
863 int len
= 11 + count
* 4;
868 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
869 "Shift: 0x%02X, Count: 0x%02X, Reg: 0x%08X\n",
870 offset
, crtcport
, crtcindex
, mask
, shift
, count
, reg
);
872 config
= (bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
) >> shift
;
873 if (config
> count
) {
875 "0x%04X: Config 0x%02X exceeds maximal bound 0x%02X\n",
876 offset
, config
, count
);
880 configval
= ROM32(bios
->data
[offset
+ 11 + config
* 4]);
882 BIOSLOG(bios
, "0x%04X: Writing config %02X\n", offset
, config
);
884 bios_wr32(bios
, reg
, configval
);
890 init_repeat(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
893 * INIT_REPEAT opcode: 0x33 ('3')
895 * offset (8 bit): opcode
896 * offset + 1 (8 bit): count
898 * Execute script following this opcode up to INIT_REPEAT_END
902 uint8_t count
= bios
->data
[offset
+ 1];
905 /* no iexec->execute check by design */
907 BIOSLOG(bios
, "0x%04X: Repeating following segment %d times\n",
910 iexec
->repeat
= true;
913 * count - 1, as the script block will execute once when we leave this
914 * opcode -- this is compatible with bios behaviour as:
915 * a) the block is always executed at least once, even if count == 0
916 * b) the bios interpreter skips to the op following INIT_END_REPEAT,
919 for (i
= 0; i
< count
- 1; i
++)
920 parse_init_table(bios
, offset
+ 2, iexec
);
922 iexec
->repeat
= false;
928 init_io_restrict_pll(struct nvbios
*bios
, uint16_t offset
,
929 struct init_exec
*iexec
)
932 * INIT_IO_RESTRICT_PLL opcode: 0x34 ('4')
934 * offset (8 bit): opcode
935 * offset + 1 (16 bit): CRTC port
936 * offset + 3 (8 bit): CRTC index
937 * offset + 4 (8 bit): mask
938 * offset + 5 (8 bit): shift
939 * offset + 6 (8 bit): IO flag condition index
940 * offset + 7 (8 bit): count
941 * offset + 8 (32 bit): register
942 * offset + 12 (16 bit): frequency 1
945 * Starting at offset + 12 there are "count" 16 bit frequencies (10kHz).
946 * Set PLL register "register" to coefficients for frequency n,
947 * selected by reading index "CRTC index" of "CRTC port" ANDed with
948 * "mask" and shifted right by "shift".
950 * If "IO flag condition index" > 0, and condition met, double
951 * frequency before setting it.
954 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
955 uint8_t crtcindex
= bios
->data
[offset
+ 3];
956 uint8_t mask
= bios
->data
[offset
+ 4];
957 uint8_t shift
= bios
->data
[offset
+ 5];
958 int8_t io_flag_condition_idx
= bios
->data
[offset
+ 6];
959 uint8_t count
= bios
->data
[offset
+ 7];
960 uint32_t reg
= ROM32(bios
->data
[offset
+ 8]);
963 int len
= 12 + count
* 2;
968 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
969 "Shift: 0x%02X, IO Flag Condition: 0x%02X, "
970 "Count: 0x%02X, Reg: 0x%08X\n",
971 offset
, crtcport
, crtcindex
, mask
, shift
,
972 io_flag_condition_idx
, count
, reg
);
974 config
= (bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
) >> shift
;
975 if (config
> count
) {
977 "0x%04X: Config 0x%02X exceeds maximal bound 0x%02X\n",
978 offset
, config
, count
);
982 freq
= ROM16(bios
->data
[offset
+ 12 + config
* 2]);
984 if (io_flag_condition_idx
> 0) {
985 if (io_flag_condition_met(bios
, offset
, io_flag_condition_idx
)) {
986 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- "
987 "frequency doubled\n", offset
);
990 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- "
991 "frequency unchanged\n", offset
);
994 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Config: 0x%02X, Freq: %d0kHz\n",
995 offset
, reg
, config
, freq
);
997 setPLL(bios
, reg
, freq
* 10);
1003 init_end_repeat(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1006 * INIT_END_REPEAT opcode: 0x36 ('6')
1008 * offset (8 bit): opcode
1010 * Marks the end of the block for INIT_REPEAT to repeat
1013 /* no iexec->execute check by design */
1016 * iexec->repeat flag necessary to go past INIT_END_REPEAT opcode when
1017 * we're not in repeat mode
1026 init_copy(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1029 * INIT_COPY opcode: 0x37 ('7')
1031 * offset (8 bit): opcode
1032 * offset + 1 (32 bit): register
1033 * offset + 5 (8 bit): shift
1034 * offset + 6 (8 bit): srcmask
1035 * offset + 7 (16 bit): CRTC port
1036 * offset + 9 (8 bit): CRTC index
1037 * offset + 10 (8 bit): mask
1039 * Read index "CRTC index" on "CRTC port", AND with "mask", OR with
1040 * (REGVAL("register") >> "shift" & "srcmask") and write-back to CRTC
1044 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
1045 uint8_t shift
= bios
->data
[offset
+ 5];
1046 uint8_t srcmask
= bios
->data
[offset
+ 6];
1047 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 7]);
1048 uint8_t crtcindex
= bios
->data
[offset
+ 9];
1049 uint8_t mask
= bios
->data
[offset
+ 10];
1053 if (!iexec
->execute
)
1056 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Shift: 0x%02X, SrcMask: 0x%02X, "
1057 "Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X\n",
1058 offset
, reg
, shift
, srcmask
, crtcport
, crtcindex
, mask
);
1060 data
= bios_rd32(bios
, reg
);
1065 data
<<= (0x100 - shift
);
1069 crtcdata
= bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
;
1070 crtcdata
|= (uint8_t)data
;
1071 bios_idxprt_wr(bios
, crtcport
, crtcindex
, crtcdata
);
1077 init_not(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1080 * INIT_NOT opcode: 0x38 ('8')
1082 * offset (8 bit): opcode
1084 * Invert the current execute / no-execute condition (i.e. "else")
1087 BIOSLOG(bios
, "0x%04X: ------ Skipping following commands ------\n", offset
);
1089 BIOSLOG(bios
, "0x%04X: ------ Executing following commands ------\n", offset
);
1091 iexec
->execute
= !iexec
->execute
;
1096 init_io_flag_condition(struct nvbios
*bios
, uint16_t offset
,
1097 struct init_exec
*iexec
)
1100 * INIT_IO_FLAG_CONDITION opcode: 0x39 ('9')
1102 * offset (8 bit): opcode
1103 * offset + 1 (8 bit): condition number
1105 * Check condition "condition number" in the IO flag condition table.
1106 * If condition not met skip subsequent opcodes until condition is
1107 * inverted (INIT_NOT), or we hit INIT_RESUME
1110 uint8_t cond
= bios
->data
[offset
+ 1];
1112 if (!iexec
->execute
)
1115 if (io_flag_condition_met(bios
, offset
, cond
))
1116 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- continuing to execute\n", offset
);
1118 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset
);
1119 iexec
->execute
= false;
1126 init_dp_condition(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1129 * INIT_DP_CONDITION opcode: 0x3A ('')
1131 * offset (8 bit): opcode
1132 * offset + 1 (8 bit): "sub" opcode
1133 * offset + 2 (8 bit): unknown
1137 struct dcb_entry
*dcb
= bios
->display
.output
;
1138 struct drm_device
*dev
= bios
->dev
;
1139 uint8_t cond
= bios
->data
[offset
+ 1];
1140 uint8_t *table
, *entry
;
1142 BIOSLOG(bios
, "0x%04X: subop 0x%02X\n", offset
, cond
);
1144 if (!iexec
->execute
)
1147 table
= nouveau_dp_bios_data(dev
, dcb
, &entry
);
1153 entry
= dcb_conn(dev
, dcb
->connector
);
1154 if (!entry
|| entry
[0] != DCB_CONNECTOR_eDP
)
1155 iexec
->execute
= false;
1159 if ((table
[0] < 0x40 && !(entry
[5] & cond
)) ||
1160 (table
[0] == 0x40 && !(entry
[4] & cond
)))
1161 iexec
->execute
= false;
1165 struct nouveau_i2c_chan
*auxch
;
1168 auxch
= nouveau_i2c_find(dev
, bios
->display
.output
->i2c_index
);
1170 NV_ERROR(dev
, "0x%04X: couldn't get auxch\n", offset
);
1174 ret
= nouveau_dp_auxch(auxch
, 9, 0xd, &cond
, 1);
1176 NV_ERROR(dev
, "0x%04X: auxch rd fail: %d\n", offset
, ret
);
1181 iexec
->execute
= false;
1185 NV_WARN(dev
, "0x%04X: unknown INIT_3A op: %d\n", offset
, cond
);
1190 BIOSLOG(bios
, "0x%04X: continuing to execute\n", offset
);
1192 BIOSLOG(bios
, "0x%04X: skipping following commands\n", offset
);
1198 init_op_3b(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1201 * INIT_3B opcode: 0x3B ('')
1203 * offset (8 bit): opcode
1204 * offset + 1 (8 bit): crtc index
1208 uint8_t or = ffs(bios
->display
.output
->or) - 1;
1209 uint8_t index
= bios
->data
[offset
+ 1];
1212 if (!iexec
->execute
)
1215 data
= bios_idxprt_rd(bios
, 0x3d4, index
);
1216 bios_idxprt_wr(bios
, 0x3d4, index
, data
& ~(1 << or));
1221 init_op_3c(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1224 * INIT_3C opcode: 0x3C ('')
1226 * offset (8 bit): opcode
1227 * offset + 1 (8 bit): crtc index
1231 uint8_t or = ffs(bios
->display
.output
->or) - 1;
1232 uint8_t index
= bios
->data
[offset
+ 1];
1235 if (!iexec
->execute
)
1238 data
= bios_idxprt_rd(bios
, 0x3d4, index
);
1239 bios_idxprt_wr(bios
, 0x3d4, index
, data
| (1 << or));
1244 init_idx_addr_latched(struct nvbios
*bios
, uint16_t offset
,
1245 struct init_exec
*iexec
)
1248 * INIT_INDEX_ADDRESS_LATCHED opcode: 0x49 ('I')
1250 * offset (8 bit): opcode
1251 * offset + 1 (32 bit): control register
1252 * offset + 5 (32 bit): data register
1253 * offset + 9 (32 bit): mask
1254 * offset + 13 (32 bit): data
1255 * offset + 17 (8 bit): count
1256 * offset + 18 (8 bit): address 1
1257 * offset + 19 (8 bit): data 1
1260 * For each of "count" address and data pairs, write "data n" to
1261 * "data register", read the current value of "control register",
1262 * and write it back once ANDed with "mask", ORed with "data",
1263 * and ORed with "address n"
1266 uint32_t controlreg
= ROM32(bios
->data
[offset
+ 1]);
1267 uint32_t datareg
= ROM32(bios
->data
[offset
+ 5]);
1268 uint32_t mask
= ROM32(bios
->data
[offset
+ 9]);
1269 uint32_t data
= ROM32(bios
->data
[offset
+ 13]);
1270 uint8_t count
= bios
->data
[offset
+ 17];
1271 int len
= 18 + count
* 2;
1275 if (!iexec
->execute
)
1278 BIOSLOG(bios
, "0x%04X: ControlReg: 0x%08X, DataReg: 0x%08X, "
1279 "Mask: 0x%08X, Data: 0x%08X, Count: 0x%02X\n",
1280 offset
, controlreg
, datareg
, mask
, data
, count
);
1282 for (i
= 0; i
< count
; i
++) {
1283 uint8_t instaddress
= bios
->data
[offset
+ 18 + i
* 2];
1284 uint8_t instdata
= bios
->data
[offset
+ 19 + i
* 2];
1286 BIOSLOG(bios
, "0x%04X: Address: 0x%02X, Data: 0x%02X\n",
1287 offset
, instaddress
, instdata
);
1289 bios_wr32(bios
, datareg
, instdata
);
1290 value
= bios_rd32(bios
, controlreg
) & mask
;
1292 value
|= instaddress
;
1293 bios_wr32(bios
, controlreg
, value
);
1300 init_io_restrict_pll2(struct nvbios
*bios
, uint16_t offset
,
1301 struct init_exec
*iexec
)
1304 * INIT_IO_RESTRICT_PLL2 opcode: 0x4A ('J')
1306 * offset (8 bit): opcode
1307 * offset + 1 (16 bit): CRTC port
1308 * offset + 3 (8 bit): CRTC index
1309 * offset + 4 (8 bit): mask
1310 * offset + 5 (8 bit): shift
1311 * offset + 6 (8 bit): count
1312 * offset + 7 (32 bit): register
1313 * offset + 11 (32 bit): frequency 1
1316 * Starting at offset + 11 there are "count" 32 bit frequencies (kHz).
1317 * Set PLL register "register" to coefficients for frequency n,
1318 * selected by reading index "CRTC index" of "CRTC port" ANDed with
1319 * "mask" and shifted right by "shift".
1322 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
1323 uint8_t crtcindex
= bios
->data
[offset
+ 3];
1324 uint8_t mask
= bios
->data
[offset
+ 4];
1325 uint8_t shift
= bios
->data
[offset
+ 5];
1326 uint8_t count
= bios
->data
[offset
+ 6];
1327 uint32_t reg
= ROM32(bios
->data
[offset
+ 7]);
1328 int len
= 11 + count
* 4;
1332 if (!iexec
->execute
)
1335 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
1336 "Shift: 0x%02X, Count: 0x%02X, Reg: 0x%08X\n",
1337 offset
, crtcport
, crtcindex
, mask
, shift
, count
, reg
);
1342 config
= (bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
) >> shift
;
1343 if (config
> count
) {
1345 "0x%04X: Config 0x%02X exceeds maximal bound 0x%02X\n",
1346 offset
, config
, count
);
1350 freq
= ROM32(bios
->data
[offset
+ 11 + config
* 4]);
1352 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Config: 0x%02X, Freq: %dkHz\n",
1353 offset
, reg
, config
, freq
);
1355 setPLL(bios
, reg
, freq
);
1361 init_pll2(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1364 * INIT_PLL2 opcode: 0x4B ('K')
1366 * offset (8 bit): opcode
1367 * offset + 1 (32 bit): register
1368 * offset + 5 (32 bit): freq
1370 * Set PLL register "register" to coefficients for frequency "freq"
1373 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
1374 uint32_t freq
= ROM32(bios
->data
[offset
+ 5]);
1376 if (!iexec
->execute
)
1379 BIOSLOG(bios
, "0x%04X: Reg: 0x%04X, Freq: %dkHz\n",
1382 setPLL(bios
, reg
, freq
);
1387 init_i2c_byte(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1390 * INIT_I2C_BYTE opcode: 0x4C ('L')
1392 * offset (8 bit): opcode
1393 * offset + 1 (8 bit): DCB I2C table entry index
1394 * offset + 2 (8 bit): I2C slave address
1395 * offset + 3 (8 bit): count
1396 * offset + 4 (8 bit): I2C register 1
1397 * offset + 5 (8 bit): mask 1
1398 * offset + 6 (8 bit): data 1
1401 * For each of "count" registers given by "I2C register n" on the device
1402 * addressed by "I2C slave address" on the I2C bus given by
1403 * "DCB I2C table entry index", read the register, AND the result with
1404 * "mask n" and OR it with "data n" before writing it back to the device
1407 struct drm_device
*dev
= bios
->dev
;
1408 uint8_t i2c_index
= bios
->data
[offset
+ 1];
1409 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
1410 uint8_t count
= bios
->data
[offset
+ 3];
1411 struct nouveau_i2c_chan
*chan
;
1412 int len
= 4 + count
* 3;
1415 if (!iexec
->execute
)
1418 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X, "
1420 offset
, i2c_index
, i2c_address
, count
);
1422 chan
= init_i2c_device_find(dev
, i2c_index
);
1424 NV_ERROR(dev
, "0x%04X: i2c bus not found\n", offset
);
1428 for (i
= 0; i
< count
; i
++) {
1429 uint8_t reg
= bios
->data
[offset
+ 4 + i
* 3];
1430 uint8_t mask
= bios
->data
[offset
+ 5 + i
* 3];
1431 uint8_t data
= bios
->data
[offset
+ 6 + i
* 3];
1432 union i2c_smbus_data val
;
1434 ret
= i2c_smbus_xfer(&chan
->adapter
, i2c_address
, 0,
1435 I2C_SMBUS_READ
, reg
,
1436 I2C_SMBUS_BYTE_DATA
, &val
);
1438 NV_ERROR(dev
, "0x%04X: i2c rd fail: %d\n", offset
, ret
);
1442 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X, Value: 0x%02X, "
1443 "Mask: 0x%02X, Data: 0x%02X\n",
1444 offset
, reg
, val
.byte
, mask
, data
);
1451 ret
= i2c_smbus_xfer(&chan
->adapter
, i2c_address
, 0,
1452 I2C_SMBUS_WRITE
, reg
,
1453 I2C_SMBUS_BYTE_DATA
, &val
);
1455 NV_ERROR(dev
, "0x%04X: i2c wr fail: %d\n", offset
, ret
);
1464 init_zm_i2c_byte(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1467 * INIT_ZM_I2C_BYTE opcode: 0x4D ('M')
1469 * offset (8 bit): opcode
1470 * offset + 1 (8 bit): DCB I2C table entry index
1471 * offset + 2 (8 bit): I2C slave address
1472 * offset + 3 (8 bit): count
1473 * offset + 4 (8 bit): I2C register 1
1474 * offset + 5 (8 bit): data 1
1477 * For each of "count" registers given by "I2C register n" on the device
1478 * addressed by "I2C slave address" on the I2C bus given by
1479 * "DCB I2C table entry index", set the register to "data n"
1482 struct drm_device
*dev
= bios
->dev
;
1483 uint8_t i2c_index
= bios
->data
[offset
+ 1];
1484 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
1485 uint8_t count
= bios
->data
[offset
+ 3];
1486 struct nouveau_i2c_chan
*chan
;
1487 int len
= 4 + count
* 2;
1490 if (!iexec
->execute
)
1493 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X, "
1495 offset
, i2c_index
, i2c_address
, count
);
1497 chan
= init_i2c_device_find(dev
, i2c_index
);
1499 NV_ERROR(dev
, "0x%04X: i2c bus not found\n", offset
);
1503 for (i
= 0; i
< count
; i
++) {
1504 uint8_t reg
= bios
->data
[offset
+ 4 + i
* 2];
1505 union i2c_smbus_data val
;
1507 val
.byte
= bios
->data
[offset
+ 5 + i
* 2];
1509 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X, Data: 0x%02X\n",
1510 offset
, reg
, val
.byte
);
1515 ret
= i2c_smbus_xfer(&chan
->adapter
, i2c_address
, 0,
1516 I2C_SMBUS_WRITE
, reg
,
1517 I2C_SMBUS_BYTE_DATA
, &val
);
1519 NV_ERROR(dev
, "0x%04X: i2c wr fail: %d\n", offset
, ret
);
1528 init_zm_i2c(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1531 * INIT_ZM_I2C opcode: 0x4E ('N')
1533 * offset (8 bit): opcode
1534 * offset + 1 (8 bit): DCB I2C table entry index
1535 * offset + 2 (8 bit): I2C slave address
1536 * offset + 3 (8 bit): count
1537 * offset + 4 (8 bit): data 1
1540 * Send "count" bytes ("data n") to the device addressed by "I2C slave
1541 * address" on the I2C bus given by "DCB I2C table entry index"
1544 struct drm_device
*dev
= bios
->dev
;
1545 uint8_t i2c_index
= bios
->data
[offset
+ 1];
1546 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
1547 uint8_t count
= bios
->data
[offset
+ 3];
1548 int len
= 4 + count
;
1549 struct nouveau_i2c_chan
*chan
;
1554 if (!iexec
->execute
)
1557 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X, "
1559 offset
, i2c_index
, i2c_address
, count
);
1561 chan
= init_i2c_device_find(dev
, i2c_index
);
1563 NV_ERROR(dev
, "0x%04X: i2c bus not found\n", offset
);
1567 for (i
= 0; i
< count
; i
++) {
1568 data
[i
] = bios
->data
[offset
+ 4 + i
];
1570 BIOSLOG(bios
, "0x%04X: Data: 0x%02X\n", offset
, data
[i
]);
1573 if (bios
->execute
) {
1574 msg
.addr
= i2c_address
;
1578 ret
= i2c_transfer(&chan
->adapter
, &msg
, 1);
1580 NV_ERROR(dev
, "0x%04X: i2c wr fail: %d\n", offset
, ret
);
1589 init_tmds(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1592 * INIT_TMDS opcode: 0x4F ('O') (non-canon name)
1594 * offset (8 bit): opcode
1595 * offset + 1 (8 bit): magic lookup value
1596 * offset + 2 (8 bit): TMDS address
1597 * offset + 3 (8 bit): mask
1598 * offset + 4 (8 bit): data
1600 * Read the data reg for TMDS address "TMDS address", AND it with mask
1601 * and OR it with data, then write it back
1602 * "magic lookup value" determines which TMDS base address register is
1603 * used -- see get_tmds_index_reg()
1606 struct drm_device
*dev
= bios
->dev
;
1607 uint8_t mlv
= bios
->data
[offset
+ 1];
1608 uint32_t tmdsaddr
= bios
->data
[offset
+ 2];
1609 uint8_t mask
= bios
->data
[offset
+ 3];
1610 uint8_t data
= bios
->data
[offset
+ 4];
1611 uint32_t reg
, value
;
1613 if (!iexec
->execute
)
1616 BIOSLOG(bios
, "0x%04X: MagicLookupValue: 0x%02X, TMDSAddr: 0x%02X, "
1617 "Mask: 0x%02X, Data: 0x%02X\n",
1618 offset
, mlv
, tmdsaddr
, mask
, data
);
1620 reg
= get_tmds_index_reg(bios
->dev
, mlv
);
1622 NV_ERROR(dev
, "0x%04X: no tmds_index_reg\n", offset
);
1626 bios_wr32(bios
, reg
,
1627 tmdsaddr
| NV_PRAMDAC_FP_TMDS_CONTROL_WRITE_DISABLE
);
1628 value
= (bios_rd32(bios
, reg
+ 4) & mask
) | data
;
1629 bios_wr32(bios
, reg
+ 4, value
);
1630 bios_wr32(bios
, reg
, tmdsaddr
);
1636 init_zm_tmds_group(struct nvbios
*bios
, uint16_t offset
,
1637 struct init_exec
*iexec
)
1640 * INIT_ZM_TMDS_GROUP opcode: 0x50 ('P') (non-canon name)
1642 * offset (8 bit): opcode
1643 * offset + 1 (8 bit): magic lookup value
1644 * offset + 2 (8 bit): count
1645 * offset + 3 (8 bit): addr 1
1646 * offset + 4 (8 bit): data 1
1649 * For each of "count" TMDS address and data pairs write "data n" to
1650 * "addr n". "magic lookup value" determines which TMDS base address
1651 * register is used -- see get_tmds_index_reg()
1654 struct drm_device
*dev
= bios
->dev
;
1655 uint8_t mlv
= bios
->data
[offset
+ 1];
1656 uint8_t count
= bios
->data
[offset
+ 2];
1657 int len
= 3 + count
* 2;
1661 if (!iexec
->execute
)
1664 BIOSLOG(bios
, "0x%04X: MagicLookupValue: 0x%02X, Count: 0x%02X\n",
1665 offset
, mlv
, count
);
1667 reg
= get_tmds_index_reg(bios
->dev
, mlv
);
1669 NV_ERROR(dev
, "0x%04X: no tmds_index_reg\n", offset
);
1673 for (i
= 0; i
< count
; i
++) {
1674 uint8_t tmdsaddr
= bios
->data
[offset
+ 3 + i
* 2];
1675 uint8_t tmdsdata
= bios
->data
[offset
+ 4 + i
* 2];
1677 bios_wr32(bios
, reg
+ 4, tmdsdata
);
1678 bios_wr32(bios
, reg
, tmdsaddr
);
1685 init_cr_idx_adr_latch(struct nvbios
*bios
, uint16_t offset
,
1686 struct init_exec
*iexec
)
1689 * INIT_CR_INDEX_ADDRESS_LATCHED opcode: 0x51 ('Q')
1691 * offset (8 bit): opcode
1692 * offset + 1 (8 bit): CRTC index1
1693 * offset + 2 (8 bit): CRTC index2
1694 * offset + 3 (8 bit): baseaddr
1695 * offset + 4 (8 bit): count
1696 * offset + 5 (8 bit): data 1
1699 * For each of "count" address and data pairs, write "baseaddr + n" to
1700 * "CRTC index1" and "data n" to "CRTC index2"
1701 * Once complete, restore initial value read from "CRTC index1"
1703 uint8_t crtcindex1
= bios
->data
[offset
+ 1];
1704 uint8_t crtcindex2
= bios
->data
[offset
+ 2];
1705 uint8_t baseaddr
= bios
->data
[offset
+ 3];
1706 uint8_t count
= bios
->data
[offset
+ 4];
1707 int len
= 5 + count
;
1708 uint8_t oldaddr
, data
;
1711 if (!iexec
->execute
)
1714 BIOSLOG(bios
, "0x%04X: Index1: 0x%02X, Index2: 0x%02X, "
1715 "BaseAddr: 0x%02X, Count: 0x%02X\n",
1716 offset
, crtcindex1
, crtcindex2
, baseaddr
, count
);
1718 oldaddr
= bios_idxprt_rd(bios
, NV_CIO_CRX__COLOR
, crtcindex1
);
1720 for (i
= 0; i
< count
; i
++) {
1721 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex1
,
1723 data
= bios
->data
[offset
+ 5 + i
];
1724 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex2
, data
);
1727 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex1
, oldaddr
);
1733 init_cr(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1736 * INIT_CR opcode: 0x52 ('R')
1738 * offset (8 bit): opcode
1739 * offset + 1 (8 bit): CRTC index
1740 * offset + 2 (8 bit): mask
1741 * offset + 3 (8 bit): data
1743 * Assign the value of at "CRTC index" ANDed with mask and ORed with
1744 * data back to "CRTC index"
1747 uint8_t crtcindex
= bios
->data
[offset
+ 1];
1748 uint8_t mask
= bios
->data
[offset
+ 2];
1749 uint8_t data
= bios
->data
[offset
+ 3];
1752 if (!iexec
->execute
)
1755 BIOSLOG(bios
, "0x%04X: Index: 0x%02X, Mask: 0x%02X, Data: 0x%02X\n",
1756 offset
, crtcindex
, mask
, data
);
1758 value
= bios_idxprt_rd(bios
, NV_CIO_CRX__COLOR
, crtcindex
) & mask
;
1760 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex
, value
);
1766 init_zm_cr(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1769 * INIT_ZM_CR opcode: 0x53 ('S')
1771 * offset (8 bit): opcode
1772 * offset + 1 (8 bit): CRTC index
1773 * offset + 2 (8 bit): value
1775 * Assign "value" to CRTC register with index "CRTC index".
1778 uint8_t crtcindex
= ROM32(bios
->data
[offset
+ 1]);
1779 uint8_t data
= bios
->data
[offset
+ 2];
1781 if (!iexec
->execute
)
1784 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, crtcindex
, data
);
1790 init_zm_cr_group(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1793 * INIT_ZM_CR_GROUP opcode: 0x54 ('T')
1795 * offset (8 bit): opcode
1796 * offset + 1 (8 bit): count
1797 * offset + 2 (8 bit): CRTC index 1
1798 * offset + 3 (8 bit): value 1
1801 * For "count", assign "value n" to CRTC register with index
1805 uint8_t count
= bios
->data
[offset
+ 1];
1806 int len
= 2 + count
* 2;
1809 if (!iexec
->execute
)
1812 for (i
= 0; i
< count
; i
++)
1813 init_zm_cr(bios
, offset
+ 2 + 2 * i
- 1, iexec
);
1819 init_condition_time(struct nvbios
*bios
, uint16_t offset
,
1820 struct init_exec
*iexec
)
1823 * INIT_CONDITION_TIME opcode: 0x56 ('V')
1825 * offset (8 bit): opcode
1826 * offset + 1 (8 bit): condition number
1827 * offset + 2 (8 bit): retries / 50
1829 * Check condition "condition number" in the condition table.
1830 * Bios code then sleeps for 2ms if the condition is not met, and
1831 * repeats up to "retries" times, but on one C51 this has proved
1832 * insufficient. In mmiotraces the driver sleeps for 20ms, so we do
1833 * this, and bail after "retries" times, or 2s, whichever is less.
1834 * If still not met after retries, clear execution flag for this table.
1837 uint8_t cond
= bios
->data
[offset
+ 1];
1838 uint16_t retries
= bios
->data
[offset
+ 2] * 50;
1841 if (!iexec
->execute
)
1847 BIOSLOG(bios
, "0x%04X: Condition: 0x%02X, Retries: 0x%02X\n",
1848 offset
, cond
, retries
);
1850 if (!bios
->execute
) /* avoid 2s delays when "faking" execution */
1853 for (cnt
= 0; cnt
< retries
; cnt
++) {
1854 if (bios_condition_met(bios
, offset
, cond
)) {
1855 BIOSLOG(bios
, "0x%04X: Condition met, continuing\n",
1859 BIOSLOG(bios
, "0x%04X: "
1860 "Condition not met, sleeping for 20ms\n",
1866 if (!bios_condition_met(bios
, offset
, cond
)) {
1868 "0x%04X: Condition still not met after %dms, "
1869 "skipping following opcodes\n", offset
, 20 * retries
);
1870 iexec
->execute
= false;
1877 init_ltime(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1880 * INIT_LTIME opcode: 0x57 ('V')
1882 * offset (8 bit): opcode
1883 * offset + 1 (16 bit): time
1885 * Sleep for "time" milliseconds.
1888 unsigned time
= ROM16(bios
->data
[offset
+ 1]);
1890 if (!iexec
->execute
)
1893 BIOSLOG(bios
, "0x%04X: Sleeping for 0x%04X milliseconds\n",
1902 init_zm_reg_sequence(struct nvbios
*bios
, uint16_t offset
,
1903 struct init_exec
*iexec
)
1906 * INIT_ZM_REG_SEQUENCE opcode: 0x58 ('X')
1908 * offset (8 bit): opcode
1909 * offset + 1 (32 bit): base register
1910 * offset + 5 (8 bit): count
1911 * offset + 6 (32 bit): value 1
1914 * Starting at offset + 6 there are "count" 32 bit values.
1915 * For "count" iterations set "base register" + 4 * current_iteration
1916 * to "value current_iteration"
1919 uint32_t basereg
= ROM32(bios
->data
[offset
+ 1]);
1920 uint32_t count
= bios
->data
[offset
+ 5];
1921 int len
= 6 + count
* 4;
1924 if (!iexec
->execute
)
1927 BIOSLOG(bios
, "0x%04X: BaseReg: 0x%08X, Count: 0x%02X\n",
1928 offset
, basereg
, count
);
1930 for (i
= 0; i
< count
; i
++) {
1931 uint32_t reg
= basereg
+ i
* 4;
1932 uint32_t data
= ROM32(bios
->data
[offset
+ 6 + i
* 4]);
1934 bios_wr32(bios
, reg
, data
);
1941 init_sub_direct(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1944 * INIT_SUB_DIRECT opcode: 0x5B ('[')
1946 * offset (8 bit): opcode
1947 * offset + 1 (16 bit): subroutine offset (in bios)
1949 * Calls a subroutine that will execute commands until INIT_DONE
1953 uint16_t sub_offset
= ROM16(bios
->data
[offset
+ 1]);
1955 if (!iexec
->execute
)
1958 BIOSLOG(bios
, "0x%04X: Executing subroutine at 0x%04X\n",
1959 offset
, sub_offset
);
1961 parse_init_table(bios
, sub_offset
, iexec
);
1963 BIOSLOG(bios
, "0x%04X: End of 0x%04X subroutine\n", offset
, sub_offset
);
1969 init_jump(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1972 * INIT_JUMP opcode: 0x5C ('\')
1974 * offset (8 bit): opcode
1975 * offset + 1 (16 bit): offset (in bios)
1977 * Continue execution of init table from 'offset'
1980 uint16_t jmp_offset
= ROM16(bios
->data
[offset
+ 1]);
1982 if (!iexec
->execute
)
1985 BIOSLOG(bios
, "0x%04X: Jump to 0x%04X\n", offset
, jmp_offset
);
1986 return jmp_offset
- offset
;
1990 init_i2c_if(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
1993 * INIT_I2C_IF opcode: 0x5E ('^')
1995 * offset (8 bit): opcode
1996 * offset + 1 (8 bit): DCB I2C table entry index
1997 * offset + 2 (8 bit): I2C slave address
1998 * offset + 3 (8 bit): I2C register
1999 * offset + 4 (8 bit): mask
2000 * offset + 5 (8 bit): data
2002 * Read the register given by "I2C register" on the device addressed
2003 * by "I2C slave address" on the I2C bus given by "DCB I2C table
2004 * entry index". Compare the result AND "mask" to "data".
2005 * If they're not equal, skip subsequent opcodes until condition is
2006 * inverted (INIT_NOT), or we hit INIT_RESUME
2009 uint8_t i2c_index
= bios
->data
[offset
+ 1];
2010 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
2011 uint8_t reg
= bios
->data
[offset
+ 3];
2012 uint8_t mask
= bios
->data
[offset
+ 4];
2013 uint8_t data
= bios
->data
[offset
+ 5];
2014 struct nouveau_i2c_chan
*chan
;
2015 union i2c_smbus_data val
;
2018 /* no execute check by design */
2020 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X\n",
2021 offset
, i2c_index
, i2c_address
);
2023 chan
= init_i2c_device_find(bios
->dev
, i2c_index
);
2027 ret
= i2c_smbus_xfer(&chan
->adapter
, i2c_address
, 0,
2028 I2C_SMBUS_READ
, reg
,
2029 I2C_SMBUS_BYTE_DATA
, &val
);
2031 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X, Value: [no device], "
2032 "Mask: 0x%02X, Data: 0x%02X\n",
2033 offset
, reg
, mask
, data
);
2038 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X, Value: 0x%02X, "
2039 "Mask: 0x%02X, Data: 0x%02X\n",
2040 offset
, reg
, val
.byte
, mask
, data
);
2042 iexec
->execute
= ((val
.byte
& mask
) == data
);
2048 init_copy_nv_reg(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2051 * INIT_COPY_NV_REG opcode: 0x5F ('_')
2053 * offset (8 bit): opcode
2054 * offset + 1 (32 bit): src reg
2055 * offset + 5 (8 bit): shift
2056 * offset + 6 (32 bit): src mask
2057 * offset + 10 (32 bit): xor
2058 * offset + 14 (32 bit): dst reg
2059 * offset + 18 (32 bit): dst mask
2061 * Shift REGVAL("src reg") right by (signed) "shift", AND result with
2062 * "src mask", then XOR with "xor". Write this OR'd with
2063 * (REGVAL("dst reg") AND'd with "dst mask") to "dst reg"
2066 uint32_t srcreg
= *((uint32_t *)(&bios
->data
[offset
+ 1]));
2067 uint8_t shift
= bios
->data
[offset
+ 5];
2068 uint32_t srcmask
= *((uint32_t *)(&bios
->data
[offset
+ 6]));
2069 uint32_t xor = *((uint32_t *)(&bios
->data
[offset
+ 10]));
2070 uint32_t dstreg
= *((uint32_t *)(&bios
->data
[offset
+ 14]));
2071 uint32_t dstmask
= *((uint32_t *)(&bios
->data
[offset
+ 18]));
2072 uint32_t srcvalue
, dstvalue
;
2074 if (!iexec
->execute
)
2077 BIOSLOG(bios
, "0x%04X: SrcReg: 0x%08X, Shift: 0x%02X, SrcMask: 0x%08X, "
2078 "Xor: 0x%08X, DstReg: 0x%08X, DstMask: 0x%08X\n",
2079 offset
, srcreg
, shift
, srcmask
, xor, dstreg
, dstmask
);
2081 srcvalue
= bios_rd32(bios
, srcreg
);
2086 srcvalue
<<= (0x100 - shift
);
2088 srcvalue
= (srcvalue
& srcmask
) ^ xor;
2090 dstvalue
= bios_rd32(bios
, dstreg
) & dstmask
;
2092 bios_wr32(bios
, dstreg
, dstvalue
| srcvalue
);
2098 init_zm_index_io(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2101 * INIT_ZM_INDEX_IO opcode: 0x62 ('b')
2103 * offset (8 bit): opcode
2104 * offset + 1 (16 bit): CRTC port
2105 * offset + 3 (8 bit): CRTC index
2106 * offset + 4 (8 bit): data
2108 * Write "data" to index "CRTC index" of "CRTC port"
2110 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
2111 uint8_t crtcindex
= bios
->data
[offset
+ 3];
2112 uint8_t data
= bios
->data
[offset
+ 4];
2114 if (!iexec
->execute
)
2117 bios_idxprt_wr(bios
, crtcport
, crtcindex
, data
);
2123 bios_md32(struct nvbios
*bios
, uint32_t reg
,
2124 uint32_t mask
, uint32_t val
)
2126 bios_wr32(bios
, reg
, (bios_rd32(bios
, reg
) & ~mask
) | val
);
2130 peek_fb(struct drm_device
*dev
, struct io_mapping
*fb
,
2135 if (off
< pci_resource_len(dev
->pdev
, 1)) {
2136 uint8_t __iomem
*p
=
2137 io_mapping_map_atomic_wc(fb
, off
& PAGE_MASK
);
2139 val
= ioread32(p
+ (off
& ~PAGE_MASK
));
2141 io_mapping_unmap_atomic(p
);
2148 poke_fb(struct drm_device
*dev
, struct io_mapping
*fb
,
2149 uint32_t off
, uint32_t val
)
2151 if (off
< pci_resource_len(dev
->pdev
, 1)) {
2152 uint8_t __iomem
*p
=
2153 io_mapping_map_atomic_wc(fb
, off
& PAGE_MASK
);
2155 iowrite32(val
, p
+ (off
& ~PAGE_MASK
));
2158 io_mapping_unmap_atomic(p
);
2163 read_back_fb(struct drm_device
*dev
, struct io_mapping
*fb
,
2164 uint32_t off
, uint32_t val
)
2166 poke_fb(dev
, fb
, off
, val
);
2167 return val
== peek_fb(dev
, fb
, off
);
2171 nv04_init_compute_mem(struct nvbios
*bios
)
2173 struct drm_device
*dev
= bios
->dev
;
2174 uint32_t patt
= 0xdeadbeef;
2175 struct io_mapping
*fb
;
2178 /* Map the framebuffer aperture */
2179 fb
= io_mapping_create_wc(pci_resource_start(dev
->pdev
, 1),
2180 pci_resource_len(dev
->pdev
, 1));
2184 /* Sequencer and refresh off */
2185 NVWriteVgaSeq(dev
, 0, 1, NVReadVgaSeq(dev
, 0, 1) | 0x20);
2186 bios_md32(bios
, NV04_PFB_DEBUG_0
, 0, NV04_PFB_DEBUG_0_REFRESH_OFF
);
2188 bios_md32(bios
, NV04_PFB_BOOT_0
, ~0,
2189 NV04_PFB_BOOT_0_RAM_AMOUNT_16MB
|
2190 NV04_PFB_BOOT_0_RAM_WIDTH_128
|
2191 NV04_PFB_BOOT_0_RAM_TYPE_SGRAM_16MBIT
);
2193 for (i
= 0; i
< 4; i
++)
2194 poke_fb(dev
, fb
, 4 * i
, patt
);
2196 poke_fb(dev
, fb
, 0x400000, patt
+ 1);
2198 if (peek_fb(dev
, fb
, 0) == patt
+ 1) {
2199 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_TYPE
,
2200 NV04_PFB_BOOT_0_RAM_TYPE_SDRAM_16MBIT
);
2201 bios_md32(bios
, NV04_PFB_DEBUG_0
,
2202 NV04_PFB_DEBUG_0_REFRESH_OFF
, 0);
2204 for (i
= 0; i
< 4; i
++)
2205 poke_fb(dev
, fb
, 4 * i
, patt
);
2207 if ((peek_fb(dev
, fb
, 0xc) & 0xffff) != (patt
& 0xffff))
2208 bios_md32(bios
, NV04_PFB_BOOT_0
,
2209 NV04_PFB_BOOT_0_RAM_WIDTH_128
|
2210 NV04_PFB_BOOT_0_RAM_AMOUNT
,
2211 NV04_PFB_BOOT_0_RAM_AMOUNT_8MB
);
2213 } else if ((peek_fb(dev
, fb
, 0xc) & 0xffff0000) !=
2214 (patt
& 0xffff0000)) {
2215 bios_md32(bios
, NV04_PFB_BOOT_0
,
2216 NV04_PFB_BOOT_0_RAM_WIDTH_128
|
2217 NV04_PFB_BOOT_0_RAM_AMOUNT
,
2218 NV04_PFB_BOOT_0_RAM_AMOUNT_4MB
);
2220 } else if (peek_fb(dev
, fb
, 0) != patt
) {
2221 if (read_back_fb(dev
, fb
, 0x800000, patt
))
2222 bios_md32(bios
, NV04_PFB_BOOT_0
,
2223 NV04_PFB_BOOT_0_RAM_AMOUNT
,
2224 NV04_PFB_BOOT_0_RAM_AMOUNT_8MB
);
2226 bios_md32(bios
, NV04_PFB_BOOT_0
,
2227 NV04_PFB_BOOT_0_RAM_AMOUNT
,
2228 NV04_PFB_BOOT_0_RAM_AMOUNT_4MB
);
2230 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_TYPE
,
2231 NV04_PFB_BOOT_0_RAM_TYPE_SGRAM_8MBIT
);
2233 } else if (!read_back_fb(dev
, fb
, 0x800000, patt
)) {
2234 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_AMOUNT
,
2235 NV04_PFB_BOOT_0_RAM_AMOUNT_8MB
);
2239 /* Refresh on, sequencer on */
2240 bios_md32(bios
, NV04_PFB_DEBUG_0
, NV04_PFB_DEBUG_0_REFRESH_OFF
, 0);
2241 NVWriteVgaSeq(dev
, 0, 1, NVReadVgaSeq(dev
, 0, 1) & ~0x20);
2243 io_mapping_free(fb
);
2247 static const uint8_t *
2248 nv05_memory_config(struct nvbios
*bios
)
2250 /* Defaults for BIOSes lacking a memory config table */
2251 static const uint8_t default_config_tab
[][2] = {
2261 int i
= (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) &
2262 NV_PEXTDEV_BOOT_0_RAMCFG
) >> 2;
2264 if (bios
->legacy
.mem_init_tbl_ptr
)
2265 return &bios
->data
[bios
->legacy
.mem_init_tbl_ptr
+ 2 * i
];
2267 return default_config_tab
[i
];
2271 nv05_init_compute_mem(struct nvbios
*bios
)
2273 struct drm_device
*dev
= bios
->dev
;
2274 const uint8_t *ramcfg
= nv05_memory_config(bios
);
2275 uint32_t patt
= 0xdeadbeef;
2276 struct io_mapping
*fb
;
2279 /* Map the framebuffer aperture */
2280 fb
= io_mapping_create_wc(pci_resource_start(dev
->pdev
, 1),
2281 pci_resource_len(dev
->pdev
, 1));
2286 NVWriteVgaSeq(dev
, 0, 1, NVReadVgaSeq(dev
, 0, 1) | 0x20);
2288 if (bios_rd32(bios
, NV04_PFB_BOOT_0
) & NV04_PFB_BOOT_0_UMA_ENABLE
)
2291 bios_md32(bios
, NV04_PFB_DEBUG_0
, NV04_PFB_DEBUG_0_REFRESH_OFF
, 0);
2293 /* If present load the hardcoded scrambling table */
2294 if (bios
->legacy
.mem_init_tbl_ptr
) {
2295 uint32_t *scramble_tab
= (uint32_t *)&bios
->data
[
2296 bios
->legacy
.mem_init_tbl_ptr
+ 0x10];
2298 for (i
= 0; i
< 8; i
++)
2299 bios_wr32(bios
, NV04_PFB_SCRAMBLE(i
),
2300 ROM32(scramble_tab
[i
]));
2303 /* Set memory type/width/length defaults depending on the straps */
2304 bios_md32(bios
, NV04_PFB_BOOT_0
, 0x3f, ramcfg
[0]);
2306 if (ramcfg
[1] & 0x80)
2307 bios_md32(bios
, NV04_PFB_CFG0
, 0, NV04_PFB_CFG0_SCRAMBLE
);
2309 bios_md32(bios
, NV04_PFB_CFG1
, 0x700001, (ramcfg
[1] & 1) << 20);
2310 bios_md32(bios
, NV04_PFB_CFG1
, 0, 1);
2312 /* Probe memory bus width */
2313 for (i
= 0; i
< 4; i
++)
2314 poke_fb(dev
, fb
, 4 * i
, patt
);
2316 if (peek_fb(dev
, fb
, 0xc) != patt
)
2317 bios_md32(bios
, NV04_PFB_BOOT_0
,
2318 NV04_PFB_BOOT_0_RAM_WIDTH_128
, 0);
2320 /* Probe memory length */
2321 v
= bios_rd32(bios
, NV04_PFB_BOOT_0
) & NV04_PFB_BOOT_0_RAM_AMOUNT
;
2323 if (v
== NV04_PFB_BOOT_0_RAM_AMOUNT_32MB
&&
2324 (!read_back_fb(dev
, fb
, 0x1000000, ++patt
) ||
2325 !read_back_fb(dev
, fb
, 0, ++patt
)))
2326 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_AMOUNT
,
2327 NV04_PFB_BOOT_0_RAM_AMOUNT_16MB
);
2329 if (v
== NV04_PFB_BOOT_0_RAM_AMOUNT_16MB
&&
2330 !read_back_fb(dev
, fb
, 0x800000, ++patt
))
2331 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_AMOUNT
,
2332 NV04_PFB_BOOT_0_RAM_AMOUNT_8MB
);
2334 if (!read_back_fb(dev
, fb
, 0x400000, ++patt
))
2335 bios_md32(bios
, NV04_PFB_BOOT_0
, NV04_PFB_BOOT_0_RAM_AMOUNT
,
2336 NV04_PFB_BOOT_0_RAM_AMOUNT_4MB
);
2340 NVWriteVgaSeq(dev
, 0, 1, NVReadVgaSeq(dev
, 0, 1) & ~0x20);
2342 io_mapping_free(fb
);
2347 nv10_init_compute_mem(struct nvbios
*bios
)
2349 struct drm_device
*dev
= bios
->dev
;
2350 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
2351 const int mem_width
[] = { 0x10, 0x00, 0x20 };
2352 const int mem_width_count
= (dev_priv
->chipset
>= 0x17 ? 3 : 2);
2353 uint32_t patt
= 0xdeadbeef;
2354 struct io_mapping
*fb
;
2357 /* Map the framebuffer aperture */
2358 fb
= io_mapping_create_wc(pci_resource_start(dev
->pdev
, 1),
2359 pci_resource_len(dev
->pdev
, 1));
2363 bios_wr32(bios
, NV10_PFB_REFCTRL
, NV10_PFB_REFCTRL_VALID_1
);
2365 /* Probe memory bus width */
2366 for (i
= 0; i
< mem_width_count
; i
++) {
2367 bios_md32(bios
, NV04_PFB_CFG0
, 0x30, mem_width
[i
]);
2369 for (j
= 0; j
< 4; j
++) {
2370 for (k
= 0; k
< 4; k
++)
2371 poke_fb(dev
, fb
, 0x1c, 0);
2373 poke_fb(dev
, fb
, 0x1c, patt
);
2374 poke_fb(dev
, fb
, 0x3c, 0);
2376 if (peek_fb(dev
, fb
, 0x1c) == patt
)
2377 goto mem_width_found
;
2384 /* Probe amount of installed memory */
2385 for (i
= 0; i
< 4; i
++) {
2386 int off
= bios_rd32(bios
, NV04_PFB_FIFO_DATA
) - 0x100000;
2388 poke_fb(dev
, fb
, off
, patt
);
2389 poke_fb(dev
, fb
, 0, 0);
2391 peek_fb(dev
, fb
, 0);
2392 peek_fb(dev
, fb
, 0);
2393 peek_fb(dev
, fb
, 0);
2394 peek_fb(dev
, fb
, 0);
2396 if (peek_fb(dev
, fb
, off
) == patt
)
2400 /* IC missing - disable the upper half memory space. */
2401 bios_md32(bios
, NV04_PFB_CFG0
, 0x1000, 0);
2404 io_mapping_free(fb
);
2409 nv20_init_compute_mem(struct nvbios
*bios
)
2411 struct drm_device
*dev
= bios
->dev
;
2412 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
2413 uint32_t mask
= (dev_priv
->chipset
>= 0x25 ? 0x300 : 0x900);
2414 uint32_t amount
, off
;
2415 struct io_mapping
*fb
;
2417 /* Map the framebuffer aperture */
2418 fb
= io_mapping_create_wc(pci_resource_start(dev
->pdev
, 1),
2419 pci_resource_len(dev
->pdev
, 1));
2423 bios_wr32(bios
, NV10_PFB_REFCTRL
, NV10_PFB_REFCTRL_VALID_1
);
2425 /* Allow full addressing */
2426 bios_md32(bios
, NV04_PFB_CFG0
, 0, mask
);
2428 amount
= bios_rd32(bios
, NV04_PFB_FIFO_DATA
);
2429 for (off
= amount
; off
> 0x2000000; off
-= 0x2000000)
2430 poke_fb(dev
, fb
, off
- 4, off
);
2432 amount
= bios_rd32(bios
, NV04_PFB_FIFO_DATA
);
2433 if (amount
!= peek_fb(dev
, fb
, amount
- 4))
2434 /* IC missing - disable the upper half memory space. */
2435 bios_md32(bios
, NV04_PFB_CFG0
, mask
, 0);
2437 io_mapping_free(fb
);
2442 init_compute_mem(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2445 * INIT_COMPUTE_MEM opcode: 0x63 ('c')
2447 * offset (8 bit): opcode
2449 * This opcode is meant to set the PFB memory config registers
2450 * appropriately so that we can correctly calculate how much VRAM it
2451 * has (on nv10 and better chipsets the amount of installed VRAM is
2452 * subsequently reported in NV_PFB_CSTATUS (0x10020C)).
2454 * The implementation of this opcode in general consists of several
2457 * 1) Determination of memory type and density. Only necessary for
2458 * really old chipsets, the memory type reported by the strap bits
2459 * (0x101000) is assumed to be accurate on nv05 and newer.
2461 * 2) Determination of the memory bus width. Usually done by a cunning
2462 * combination of writes to offsets 0x1c and 0x3c in the fb, and
2463 * seeing whether the written values are read back correctly.
2465 * Only necessary on nv0x-nv1x and nv34, on the other cards we can
2468 * 3) Determination of how many of the card's RAM pads have ICs
2469 * attached, usually done by a cunning combination of writes to an
2470 * offset slightly less than the maximum memory reported by
2471 * NV_PFB_CSTATUS, then seeing if the test pattern can be read back.
2473 * This appears to be a NOP on IGPs and NV4x or newer chipsets, both io
2474 * logs of the VBIOS and kmmio traces of the binary driver POSTing the
2475 * card show nothing being done for this opcode. Why is it still listed
2479 /* no iexec->execute check by design */
2481 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
2484 if (dev_priv
->chipset
>= 0x40 ||
2485 dev_priv
->chipset
== 0x1a ||
2486 dev_priv
->chipset
== 0x1f)
2488 else if (dev_priv
->chipset
>= 0x20 &&
2489 dev_priv
->chipset
!= 0x34)
2490 ret
= nv20_init_compute_mem(bios
);
2491 else if (dev_priv
->chipset
>= 0x10)
2492 ret
= nv10_init_compute_mem(bios
);
2493 else if (dev_priv
->chipset
>= 0x5)
2494 ret
= nv05_init_compute_mem(bios
);
2496 ret
= nv04_init_compute_mem(bios
);
2505 init_reset(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2508 * INIT_RESET opcode: 0x65 ('e')
2510 * offset (8 bit): opcode
2511 * offset + 1 (32 bit): register
2512 * offset + 5 (32 bit): value1
2513 * offset + 9 (32 bit): value2
2515 * Assign "value1" to "register", then assign "value2" to "register"
2518 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
2519 uint32_t value1
= ROM32(bios
->data
[offset
+ 5]);
2520 uint32_t value2
= ROM32(bios
->data
[offset
+ 9]);
2521 uint32_t pci_nv_19
, pci_nv_20
;
2523 /* no iexec->execute check by design */
2525 pci_nv_19
= bios_rd32(bios
, NV_PBUS_PCI_NV_19
);
2526 bios_wr32(bios
, NV_PBUS_PCI_NV_19
, pci_nv_19
& ~0xf00);
2528 bios_wr32(bios
, reg
, value1
);
2532 bios_wr32(bios
, reg
, value2
);
2533 bios_wr32(bios
, NV_PBUS_PCI_NV_19
, pci_nv_19
);
2535 pci_nv_20
= bios_rd32(bios
, NV_PBUS_PCI_NV_20
);
2536 pci_nv_20
&= ~NV_PBUS_PCI_NV_20_ROM_SHADOW_ENABLED
; /* 0xfffffffe */
2537 bios_wr32(bios
, NV_PBUS_PCI_NV_20
, pci_nv_20
);
2543 init_configure_mem(struct nvbios
*bios
, uint16_t offset
,
2544 struct init_exec
*iexec
)
2547 * INIT_CONFIGURE_MEM opcode: 0x66 ('f')
2549 * offset (8 bit): opcode
2551 * Equivalent to INIT_DONE on bios version 3 or greater.
2552 * For early bios versions, sets up the memory registers, using values
2553 * taken from the memory init table
2556 /* no iexec->execute check by design */
2558 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);
2559 uint16_t seqtbloffs
= bios
->legacy
.sdr_seq_tbl_ptr
, meminitdata
= meminitoffs
+ 6;
2562 if (bios
->major_version
> 2)
2565 bios_idxprt_wr(bios
, NV_VIO_SRX
, NV_VIO_SR_CLOCK_INDEX
, bios_idxprt_rd(
2566 bios
, NV_VIO_SRX
, NV_VIO_SR_CLOCK_INDEX
) | 0x20);
2568 if (bios
->data
[meminitoffs
] & 1)
2569 seqtbloffs
= bios
->legacy
.ddr_seq_tbl_ptr
;
2571 for (reg
= ROM32(bios
->data
[seqtbloffs
]);
2573 reg
= ROM32(bios
->data
[seqtbloffs
+= 4])) {
2577 data
= NV04_PFB_PRE_CMD_PRECHARGE
;
2580 data
= NV04_PFB_PAD_CKE_NORMAL
;
2583 data
= NV04_PFB_REF_CMD_REFRESH
;
2586 data
= ROM32(bios
->data
[meminitdata
]);
2588 if (data
== 0xffffffff)
2592 bios_wr32(bios
, reg
, data
);
2599 init_configure_clk(struct nvbios
*bios
, uint16_t offset
,
2600 struct init_exec
*iexec
)
2603 * INIT_CONFIGURE_CLK opcode: 0x67 ('g')
2605 * offset (8 bit): opcode
2607 * Equivalent to INIT_DONE on bios version 3 or greater.
2608 * For early bios versions, sets up the NVClk and MClk PLLs, using
2609 * values taken from the memory init table
2612 /* no iexec->execute check by design */
2614 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);
2617 if (bios
->major_version
> 2)
2620 clock
= ROM16(bios
->data
[meminitoffs
+ 4]) * 10;
2621 setPLL(bios
, NV_PRAMDAC_NVPLL_COEFF
, clock
);
2623 clock
= ROM16(bios
->data
[meminitoffs
+ 2]) * 10;
2624 if (bios
->data
[meminitoffs
] & 1) /* DDR */
2626 setPLL(bios
, NV_PRAMDAC_MPLL_COEFF
, clock
);
2632 init_configure_preinit(struct nvbios
*bios
, uint16_t offset
,
2633 struct init_exec
*iexec
)
2636 * INIT_CONFIGURE_PREINIT opcode: 0x68 ('h')
2638 * offset (8 bit): opcode
2640 * Equivalent to INIT_DONE on bios version 3 or greater.
2641 * For early bios versions, does early init, loading ram and crystal
2642 * configuration from straps into CR3C
2645 /* no iexec->execute check by design */
2647 uint32_t straps
= bios_rd32(bios
, NV_PEXTDEV_BOOT_0
);
2648 uint8_t cr3c
= ((straps
<< 2) & 0xf0) | (straps
& 0x40) >> 6;
2650 if (bios
->major_version
> 2)
2653 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
,
2654 NV_CIO_CRE_SCRATCH4__INDEX
, cr3c
);
2660 init_io(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2663 * INIT_IO opcode: 0x69 ('i')
2665 * offset (8 bit): opcode
2666 * offset + 1 (16 bit): CRTC port
2667 * offset + 3 (8 bit): mask
2668 * offset + 4 (8 bit): data
2670 * Assign ((IOVAL("crtc port") & "mask") | "data") to "crtc port"
2673 struct drm_nouveau_private
*dev_priv
= bios
->dev
->dev_private
;
2674 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
2675 uint8_t mask
= bios
->data
[offset
+ 3];
2676 uint8_t data
= bios
->data
[offset
+ 4];
2678 if (!iexec
->execute
)
2681 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Mask: 0x%02X, Data: 0x%02X\n",
2682 offset
, crtcport
, mask
, data
);
2685 * I have no idea what this does, but NVIDIA do this magic sequence
2686 * in the places where this INIT_IO happens..
2688 if (dev_priv
->card_type
>= NV_50
&& crtcport
== 0x3c3 && data
== 1) {
2691 bios_wr32(bios
, 0x614100, (bios_rd32(
2692 bios
, 0x614100) & 0x0fffffff) | 0x00800000);
2694 bios_wr32(bios
, 0x00e18c, bios_rd32(
2695 bios
, 0x00e18c) | 0x00020000);
2697 bios_wr32(bios
, 0x614900, (bios_rd32(
2698 bios
, 0x614900) & 0x0fffffff) | 0x00800000);
2700 bios_wr32(bios
, 0x000200, bios_rd32(
2701 bios
, 0x000200) & ~0x40000000);
2705 bios_wr32(bios
, 0x00e18c, bios_rd32(
2706 bios
, 0x00e18c) & ~0x00020000);
2708 bios_wr32(bios
, 0x000200, bios_rd32(
2709 bios
, 0x000200) | 0x40000000);
2711 bios_wr32(bios
, 0x614100, 0x00800018);
2712 bios_wr32(bios
, 0x614900, 0x00800018);
2716 bios_wr32(bios
, 0x614100, 0x10000018);
2717 bios_wr32(bios
, 0x614900, 0x10000018);
2719 for (i
= 0; i
< 3; i
++)
2720 bios_wr32(bios
, 0x614280 + (i
*0x800), bios_rd32(
2721 bios
, 0x614280 + (i
*0x800)) & 0xf0f0f0f0);
2723 for (i
= 0; i
< 2; i
++)
2724 bios_wr32(bios
, 0x614300 + (i
*0x800), bios_rd32(
2725 bios
, 0x614300 + (i
*0x800)) & 0xfffff0f0);
2727 for (i
= 0; i
< 3; i
++)
2728 bios_wr32(bios
, 0x614380 + (i
*0x800), bios_rd32(
2729 bios
, 0x614380 + (i
*0x800)) & 0xfffff0f0);
2731 for (i
= 0; i
< 2; i
++)
2732 bios_wr32(bios
, 0x614200 + (i
*0x800), bios_rd32(
2733 bios
, 0x614200 + (i
*0x800)) & 0xfffffff0);
2735 for (i
= 0; i
< 2; i
++)
2736 bios_wr32(bios
, 0x614108 + (i
*0x800), bios_rd32(
2737 bios
, 0x614108 + (i
*0x800)) & 0x0fffffff);
2741 bios_port_wr(bios
, crtcport
, (bios_port_rd(bios
, crtcport
) & mask
) |
2747 init_sub(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2750 * INIT_SUB opcode: 0x6B ('k')
2752 * offset (8 bit): opcode
2753 * offset + 1 (8 bit): script number
2755 * Execute script number "script number", as a subroutine
2758 uint8_t sub
= bios
->data
[offset
+ 1];
2760 if (!iexec
->execute
)
2763 BIOSLOG(bios
, "0x%04X: Calling script %d\n", offset
, sub
);
2765 parse_init_table(bios
,
2766 ROM16(bios
->data
[bios
->init_script_tbls_ptr
+ sub
* 2]),
2769 BIOSLOG(bios
, "0x%04X: End of script %d\n", offset
, sub
);
2775 init_ram_condition(struct nvbios
*bios
, uint16_t offset
,
2776 struct init_exec
*iexec
)
2779 * INIT_RAM_CONDITION opcode: 0x6D ('m')
2781 * offset (8 bit): opcode
2782 * offset + 1 (8 bit): mask
2783 * offset + 2 (8 bit): cmpval
2785 * Test if (NV04_PFB_BOOT_0 & "mask") equals "cmpval".
2786 * If condition not met skip subsequent opcodes until condition is
2787 * inverted (INIT_NOT), or we hit INIT_RESUME
2790 uint8_t mask
= bios
->data
[offset
+ 1];
2791 uint8_t cmpval
= bios
->data
[offset
+ 2];
2794 if (!iexec
->execute
)
2797 data
= bios_rd32(bios
, NV04_PFB_BOOT_0
) & mask
;
2799 BIOSLOG(bios
, "0x%04X: Checking if 0x%08X equals 0x%08X\n",
2800 offset
, data
, cmpval
);
2803 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- continuing to execute\n", offset
);
2805 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset
);
2806 iexec
->execute
= false;
2813 init_nv_reg(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2816 * INIT_NV_REG opcode: 0x6E ('n')
2818 * offset (8 bit): opcode
2819 * offset + 1 (32 bit): register
2820 * offset + 5 (32 bit): mask
2821 * offset + 9 (32 bit): data
2823 * Assign ((REGVAL("register") & "mask") | "data") to "register"
2826 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
2827 uint32_t mask
= ROM32(bios
->data
[offset
+ 5]);
2828 uint32_t data
= ROM32(bios
->data
[offset
+ 9]);
2830 if (!iexec
->execute
)
2833 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Mask: 0x%08X, Data: 0x%08X\n",
2834 offset
, reg
, mask
, data
);
2836 bios_wr32(bios
, reg
, (bios_rd32(bios
, reg
) & mask
) | data
);
2842 init_macro(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2845 * INIT_MACRO opcode: 0x6F ('o')
2847 * offset (8 bit): opcode
2848 * offset + 1 (8 bit): macro number
2850 * Look up macro index "macro number" in the macro index table.
2851 * The macro index table entry has 1 byte for the index in the macro
2852 * table, and 1 byte for the number of times to repeat the macro.
2853 * The macro table entry has 4 bytes for the register address and
2854 * 4 bytes for the value to write to that register
2857 uint8_t macro_index_tbl_idx
= bios
->data
[offset
+ 1];
2858 uint16_t tmp
= bios
->macro_index_tbl_ptr
+ (macro_index_tbl_idx
* MACRO_INDEX_SIZE
);
2859 uint8_t macro_tbl_idx
= bios
->data
[tmp
];
2860 uint8_t count
= bios
->data
[tmp
+ 1];
2864 if (!iexec
->execute
)
2867 BIOSLOG(bios
, "0x%04X: Macro: 0x%02X, MacroTableIndex: 0x%02X, "
2869 offset
, macro_index_tbl_idx
, macro_tbl_idx
, count
);
2871 for (i
= 0; i
< count
; i
++) {
2872 uint16_t macroentryptr
= bios
->macro_tbl_ptr
+ (macro_tbl_idx
+ i
) * MACRO_SIZE
;
2874 reg
= ROM32(bios
->data
[macroentryptr
]);
2875 data
= ROM32(bios
->data
[macroentryptr
+ 4]);
2877 bios_wr32(bios
, reg
, data
);
2884 init_done(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2887 * INIT_DONE opcode: 0x71 ('q')
2889 * offset (8 bit): opcode
2891 * End the current script
2894 /* mild retval abuse to stop parsing this table */
2899 init_resume(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2902 * INIT_RESUME opcode: 0x72 ('r')
2904 * offset (8 bit): opcode
2906 * End the current execute / no-execute condition
2912 iexec
->execute
= true;
2913 BIOSLOG(bios
, "0x%04X: ---- Executing following commands ----\n", offset
);
2919 init_time(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2922 * INIT_TIME opcode: 0x74 ('t')
2924 * offset (8 bit): opcode
2925 * offset + 1 (16 bit): time
2927 * Sleep for "time" microseconds.
2930 unsigned time
= ROM16(bios
->data
[offset
+ 1]);
2932 if (!iexec
->execute
)
2935 BIOSLOG(bios
, "0x%04X: Sleeping for 0x%04X microseconds\n",
2941 mdelay((time
+ 900) / 1000);
2947 init_condition(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2950 * INIT_CONDITION opcode: 0x75 ('u')
2952 * offset (8 bit): opcode
2953 * offset + 1 (8 bit): condition number
2955 * Check condition "condition number" in the condition table.
2956 * If condition not met skip subsequent opcodes until condition is
2957 * inverted (INIT_NOT), or we hit INIT_RESUME
2960 uint8_t cond
= bios
->data
[offset
+ 1];
2962 if (!iexec
->execute
)
2965 BIOSLOG(bios
, "0x%04X: Condition: 0x%02X\n", offset
, cond
);
2967 if (bios_condition_met(bios
, offset
, cond
))
2968 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- continuing to execute\n", offset
);
2970 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset
);
2971 iexec
->execute
= false;
2978 init_io_condition(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
2981 * INIT_IO_CONDITION opcode: 0x76
2983 * offset (8 bit): opcode
2984 * offset + 1 (8 bit): condition number
2986 * Check condition "condition number" in the io condition table.
2987 * If condition not met skip subsequent opcodes until condition is
2988 * inverted (INIT_NOT), or we hit INIT_RESUME
2991 uint8_t cond
= bios
->data
[offset
+ 1];
2993 if (!iexec
->execute
)
2996 BIOSLOG(bios
, "0x%04X: IO condition: 0x%02X\n", offset
, cond
);
2998 if (io_condition_met(bios
, offset
, cond
))
2999 BIOSLOG(bios
, "0x%04X: Condition fulfilled -- continuing to execute\n", offset
);
3001 BIOSLOG(bios
, "0x%04X: Condition not fulfilled -- skipping following commands\n", offset
);
3002 iexec
->execute
= false;
3009 init_index_io(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3012 * INIT_INDEX_IO opcode: 0x78 ('x')
3014 * offset (8 bit): opcode
3015 * offset + 1 (16 bit): CRTC port
3016 * offset + 3 (8 bit): CRTC index
3017 * offset + 4 (8 bit): mask
3018 * offset + 5 (8 bit): data
3020 * Read value at index "CRTC index" on "CRTC port", AND with "mask",
3021 * OR with "data", write-back
3024 uint16_t crtcport
= ROM16(bios
->data
[offset
+ 1]);
3025 uint8_t crtcindex
= bios
->data
[offset
+ 3];
3026 uint8_t mask
= bios
->data
[offset
+ 4];
3027 uint8_t data
= bios
->data
[offset
+ 5];
3030 if (!iexec
->execute
)
3033 BIOSLOG(bios
, "0x%04X: Port: 0x%04X, Index: 0x%02X, Mask: 0x%02X, "
3035 offset
, crtcport
, crtcindex
, mask
, data
);
3037 value
= (bios_idxprt_rd(bios
, crtcport
, crtcindex
) & mask
) | data
;
3038 bios_idxprt_wr(bios
, crtcport
, crtcindex
, value
);
3044 init_pll(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3047 * INIT_PLL opcode: 0x79 ('y')
3049 * offset (8 bit): opcode
3050 * offset + 1 (32 bit): register
3051 * offset + 5 (16 bit): freq
3053 * Set PLL register "register" to coefficients for frequency (10kHz)
3057 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3058 uint16_t freq
= ROM16(bios
->data
[offset
+ 5]);
3060 if (!iexec
->execute
)
3063 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, Freq: %d0kHz\n", offset
, reg
, freq
);
3065 setPLL(bios
, reg
, freq
* 10);
3071 init_zm_reg(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3074 * INIT_ZM_REG opcode: 0x7A ('z')
3076 * offset (8 bit): opcode
3077 * offset + 1 (32 bit): register
3078 * offset + 5 (32 bit): value
3080 * Assign "value" to "register"
3083 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3084 uint32_t value
= ROM32(bios
->data
[offset
+ 5]);
3086 if (!iexec
->execute
)
3089 if (reg
== 0x000200)
3092 bios_wr32(bios
, reg
, value
);
3098 init_ram_restrict_pll(struct nvbios
*bios
, uint16_t offset
,
3099 struct init_exec
*iexec
)
3102 * INIT_RAM_RESTRICT_PLL opcode: 0x87 ('')
3104 * offset (8 bit): opcode
3105 * offset + 1 (8 bit): PLL type
3106 * offset + 2 (32 bit): frequency 0
3108 * Uses the RAMCFG strap of PEXTDEV_BOOT as an index into the table at
3109 * ram_restrict_table_ptr. The value read from there is used to select
3110 * a frequency from the table starting at 'frequency 0' to be
3111 * programmed into the PLL corresponding to 'type'.
3113 * The PLL limits table on cards using this opcode has a mapping of
3114 * 'type' to the relevant registers.
3117 struct drm_device
*dev
= bios
->dev
;
3118 uint32_t strap
= (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) & 0x0000003c) >> 2;
3119 uint8_t index
= bios
->data
[bios
->ram_restrict_tbl_ptr
+ strap
];
3120 uint8_t type
= bios
->data
[offset
+ 1];
3121 uint32_t freq
= ROM32(bios
->data
[offset
+ 2 + (index
* 4)]);
3122 uint8_t *pll_limits
= &bios
->data
[bios
->pll_limit_tbl_ptr
], *entry
;
3123 int len
= 2 + bios
->ram_restrict_group_count
* 4;
3126 if (!iexec
->execute
)
3129 if (!bios
->pll_limit_tbl_ptr
|| (pll_limits
[0] & 0xf0) != 0x30) {
3130 NV_ERROR(dev
, "PLL limits table not version 3.x\n");
3131 return len
; /* deliberate, allow default clocks to remain */
3134 entry
= pll_limits
+ pll_limits
[1];
3135 for (i
= 0; i
< pll_limits
[3]; i
++, entry
+= pll_limits
[2]) {
3136 if (entry
[0] == type
) {
3137 uint32_t reg
= ROM32(entry
[3]);
3139 BIOSLOG(bios
, "0x%04X: "
3140 "Type %02x Reg 0x%08x Freq %dKHz\n",
3141 offset
, type
, reg
, freq
);
3143 setPLL(bios
, reg
, freq
);
3148 NV_ERROR(dev
, "PLL type 0x%02x not found in PLL limits table", type
);
3153 init_8c(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3156 * INIT_8C opcode: 0x8C ('')
3166 init_8d(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3169 * INIT_8D opcode: 0x8D ('')
3179 init_gpio(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3182 * INIT_GPIO opcode: 0x8E ('')
3184 * offset (8 bit): opcode
3186 * Loop over all entries in the DCB GPIO table, and initialise
3187 * each GPIO according to various values listed in each entry
3190 if (iexec
->execute
&& bios
->execute
)
3191 nouveau_gpio_reset(bios
->dev
);
3197 init_ram_restrict_zm_reg_group(struct nvbios
*bios
, uint16_t offset
,
3198 struct init_exec
*iexec
)
3201 * INIT_RAM_RESTRICT_ZM_REG_GROUP opcode: 0x8F ('')
3203 * offset (8 bit): opcode
3204 * offset + 1 (32 bit): reg
3205 * offset + 5 (8 bit): regincrement
3206 * offset + 6 (8 bit): count
3207 * offset + 7 (32 bit): value 1,1
3210 * Use the RAMCFG strap of PEXTDEV_BOOT as an index into the table at
3211 * ram_restrict_table_ptr. The value read from here is 'n', and
3212 * "value 1,n" gets written to "reg". This repeats "count" times and on
3213 * each iteration 'm', "reg" increases by "regincrement" and
3214 * "value m,n" is used. The extent of n is limited by a number read
3215 * from the 'M' BIT table, herein called "blocklen"
3218 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3219 uint8_t regincrement
= bios
->data
[offset
+ 5];
3220 uint8_t count
= bios
->data
[offset
+ 6];
3221 uint32_t strap_ramcfg
, data
;
3222 /* previously set by 'M' BIT table */
3223 uint16_t blocklen
= bios
->ram_restrict_group_count
* 4;
3224 int len
= 7 + count
* blocklen
;
3228 /* critical! to know the length of the opcode */;
3231 "0x%04X: Zero block length - has the M table "
3232 "been parsed?\n", offset
);
3236 if (!iexec
->execute
)
3239 strap_ramcfg
= (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) >> 2) & 0xf;
3240 index
= bios
->data
[bios
->ram_restrict_tbl_ptr
+ strap_ramcfg
];
3242 BIOSLOG(bios
, "0x%04X: Reg: 0x%08X, RegIncrement: 0x%02X, "
3243 "Count: 0x%02X, StrapRamCfg: 0x%02X, Index: 0x%02X\n",
3244 offset
, reg
, regincrement
, count
, strap_ramcfg
, index
);
3246 for (i
= 0; i
< count
; i
++) {
3247 data
= ROM32(bios
->data
[offset
+ 7 + index
* 4 + blocklen
* i
]);
3249 bios_wr32(bios
, reg
, data
);
3251 reg
+= regincrement
;
3258 init_copy_zm_reg(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3261 * INIT_COPY_ZM_REG opcode: 0x90 ('')
3263 * offset (8 bit): opcode
3264 * offset + 1 (32 bit): src reg
3265 * offset + 5 (32 bit): dst reg
3267 * Put contents of "src reg" into "dst reg"
3270 uint32_t srcreg
= ROM32(bios
->data
[offset
+ 1]);
3271 uint32_t dstreg
= ROM32(bios
->data
[offset
+ 5]);
3273 if (!iexec
->execute
)
3276 bios_wr32(bios
, dstreg
, bios_rd32(bios
, srcreg
));
3282 init_zm_reg_group_addr_latched(struct nvbios
*bios
, uint16_t offset
,
3283 struct init_exec
*iexec
)
3286 * INIT_ZM_REG_GROUP_ADDRESS_LATCHED opcode: 0x91 ('')
3288 * offset (8 bit): opcode
3289 * offset + 1 (32 bit): dst reg
3290 * offset + 5 (8 bit): count
3291 * offset + 6 (32 bit): data 1
3294 * For each of "count" values write "data n" to "dst reg"
3297 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3298 uint8_t count
= bios
->data
[offset
+ 5];
3299 int len
= 6 + count
* 4;
3302 if (!iexec
->execute
)
3305 for (i
= 0; i
< count
; i
++) {
3306 uint32_t data
= ROM32(bios
->data
[offset
+ 6 + 4 * i
]);
3307 bios_wr32(bios
, reg
, data
);
3314 init_reserved(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3317 * INIT_RESERVED opcode: 0x92 ('')
3319 * offset (8 bit): opcode
3321 * Seemingly does nothing
3328 init_96(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3331 * INIT_96 opcode: 0x96 ('')
3333 * offset (8 bit): opcode
3334 * offset + 1 (32 bit): sreg
3335 * offset + 5 (8 bit): sshift
3336 * offset + 6 (8 bit): smask
3337 * offset + 7 (8 bit): index
3338 * offset + 8 (32 bit): reg
3339 * offset + 12 (32 bit): mask
3340 * offset + 16 (8 bit): shift
3344 uint16_t xlatptr
= bios
->init96_tbl_ptr
+ (bios
->data
[offset
+ 7] * 2);
3345 uint32_t reg
= ROM32(bios
->data
[offset
+ 8]);
3346 uint32_t mask
= ROM32(bios
->data
[offset
+ 12]);
3349 val
= bios_rd32(bios
, ROM32(bios
->data
[offset
+ 1]));
3350 if (bios
->data
[offset
+ 5] < 0x80)
3351 val
>>= bios
->data
[offset
+ 5];
3353 val
<<= (0x100 - bios
->data
[offset
+ 5]);
3354 val
&= bios
->data
[offset
+ 6];
3356 val
= bios
->data
[ROM16(bios
->data
[xlatptr
]) + val
];
3357 val
<<= bios
->data
[offset
+ 16];
3359 if (!iexec
->execute
)
3362 bios_wr32(bios
, reg
, (bios_rd32(bios
, reg
) & mask
) | val
);
3367 init_97(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3370 * INIT_97 opcode: 0x97 ('')
3372 * offset (8 bit): opcode
3373 * offset + 1 (32 bit): register
3374 * offset + 5 (32 bit): mask
3375 * offset + 9 (32 bit): value
3377 * Adds "value" to "register" preserving the fields specified
3381 uint32_t reg
= ROM32(bios
->data
[offset
+ 1]);
3382 uint32_t mask
= ROM32(bios
->data
[offset
+ 5]);
3383 uint32_t add
= ROM32(bios
->data
[offset
+ 9]);
3386 val
= bios_rd32(bios
, reg
);
3387 val
= (val
& mask
) | ((val
+ add
) & ~mask
);
3389 if (!iexec
->execute
)
3392 bios_wr32(bios
, reg
, val
);
3397 init_auxch(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3400 * INIT_AUXCH opcode: 0x98 ('')
3402 * offset (8 bit): opcode
3403 * offset + 1 (32 bit): address
3404 * offset + 5 (8 bit): count
3405 * offset + 6 (8 bit): mask 0
3406 * offset + 7 (8 bit): data 0
3411 struct drm_device
*dev
= bios
->dev
;
3412 struct nouveau_i2c_chan
*auxch
;
3413 uint32_t addr
= ROM32(bios
->data
[offset
+ 1]);
3414 uint8_t count
= bios
->data
[offset
+ 5];
3415 int len
= 6 + count
* 2;
3418 if (!bios
->display
.output
) {
3419 NV_ERROR(dev
, "INIT_AUXCH: no active output\n");
3423 auxch
= init_i2c_device_find(dev
, bios
->display
.output
->i2c_index
);
3425 NV_ERROR(dev
, "INIT_AUXCH: couldn't get auxch %d\n",
3426 bios
->display
.output
->i2c_index
);
3430 if (!iexec
->execute
)
3434 for (i
= 0; i
< count
; i
++, offset
+= 2) {
3437 ret
= nouveau_dp_auxch(auxch
, 9, addr
, &data
, 1);
3439 NV_ERROR(dev
, "INIT_AUXCH: rd auxch fail %d\n", ret
);
3443 data
&= bios
->data
[offset
+ 0];
3444 data
|= bios
->data
[offset
+ 1];
3446 ret
= nouveau_dp_auxch(auxch
, 8, addr
, &data
, 1);
3448 NV_ERROR(dev
, "INIT_AUXCH: wr auxch fail %d\n", ret
);
3457 init_zm_auxch(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3460 * INIT_ZM_AUXCH opcode: 0x99 ('')
3462 * offset (8 bit): opcode
3463 * offset + 1 (32 bit): address
3464 * offset + 5 (8 bit): count
3465 * offset + 6 (8 bit): data 0
3470 struct drm_device
*dev
= bios
->dev
;
3471 struct nouveau_i2c_chan
*auxch
;
3472 uint32_t addr
= ROM32(bios
->data
[offset
+ 1]);
3473 uint8_t count
= bios
->data
[offset
+ 5];
3474 int len
= 6 + count
;
3477 if (!bios
->display
.output
) {
3478 NV_ERROR(dev
, "INIT_ZM_AUXCH: no active output\n");
3482 auxch
= init_i2c_device_find(dev
, bios
->display
.output
->i2c_index
);
3484 NV_ERROR(dev
, "INIT_ZM_AUXCH: couldn't get auxch %d\n",
3485 bios
->display
.output
->i2c_index
);
3489 if (!iexec
->execute
)
3493 for (i
= 0; i
< count
; i
++, offset
++) {
3494 ret
= nouveau_dp_auxch(auxch
, 8, addr
, &bios
->data
[offset
], 1);
3496 NV_ERROR(dev
, "INIT_ZM_AUXCH: wr auxch fail %d\n", ret
);
3505 init_i2c_long_if(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3508 * INIT_I2C_LONG_IF opcode: 0x9A ('')
3510 * offset (8 bit): opcode
3511 * offset + 1 (8 bit): DCB I2C table entry index
3512 * offset + 2 (8 bit): I2C slave address
3513 * offset + 3 (16 bit): I2C register
3514 * offset + 5 (8 bit): mask
3515 * offset + 6 (8 bit): data
3517 * Read the register given by "I2C register" on the device addressed
3518 * by "I2C slave address" on the I2C bus given by "DCB I2C table
3519 * entry index". Compare the result AND "mask" to "data".
3520 * If they're not equal, skip subsequent opcodes until condition is
3521 * inverted (INIT_NOT), or we hit INIT_RESUME
3524 uint8_t i2c_index
= bios
->data
[offset
+ 1];
3525 uint8_t i2c_address
= bios
->data
[offset
+ 2] >> 1;
3526 uint8_t reglo
= bios
->data
[offset
+ 3];
3527 uint8_t reghi
= bios
->data
[offset
+ 4];
3528 uint8_t mask
= bios
->data
[offset
+ 5];
3529 uint8_t data
= bios
->data
[offset
+ 6];
3530 struct nouveau_i2c_chan
*chan
;
3531 uint8_t buf0
[2] = { reghi
, reglo
};
3533 struct i2c_msg msg
[2] = {
3534 { i2c_address
, 0, 1, buf0
},
3535 { i2c_address
, I2C_M_RD
, 1, buf1
},
3539 /* no execute check by design */
3541 BIOSLOG(bios
, "0x%04X: DCBI2CIndex: 0x%02X, I2CAddress: 0x%02X\n",
3542 offset
, i2c_index
, i2c_address
);
3544 chan
= init_i2c_device_find(bios
->dev
, i2c_index
);
3549 ret
= i2c_transfer(&chan
->adapter
, msg
, 2);
3551 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X:0x%02X, Value: [no device], "
3552 "Mask: 0x%02X, Data: 0x%02X\n",
3553 offset
, reghi
, reglo
, mask
, data
);
3558 BIOSLOG(bios
, "0x%04X: I2CReg: 0x%02X:0x%02X, Value: 0x%02X, "
3559 "Mask: 0x%02X, Data: 0x%02X\n",
3560 offset
, reghi
, reglo
, buf1
[0], mask
, data
);
3562 iexec
->execute
= ((buf1
[0] & mask
) == data
);
3567 static struct init_tbl_entry itbl_entry
[] = {
3568 /* command name , id , length , offset , mult , command handler */
3569 /* INIT_PROG (0x31, 15, 10, 4) removed due to no example of use */
3570 { "INIT_IO_RESTRICT_PROG" , 0x32, init_io_restrict_prog
},
3571 { "INIT_REPEAT" , 0x33, init_repeat
},
3572 { "INIT_IO_RESTRICT_PLL" , 0x34, init_io_restrict_pll
},
3573 { "INIT_END_REPEAT" , 0x36, init_end_repeat
},
3574 { "INIT_COPY" , 0x37, init_copy
},
3575 { "INIT_NOT" , 0x38, init_not
},
3576 { "INIT_IO_FLAG_CONDITION" , 0x39, init_io_flag_condition
},
3577 { "INIT_DP_CONDITION" , 0x3A, init_dp_condition
},
3578 { "INIT_OP_3B" , 0x3B, init_op_3b
},
3579 { "INIT_OP_3C" , 0x3C, init_op_3c
},
3580 { "INIT_INDEX_ADDRESS_LATCHED" , 0x49, init_idx_addr_latched
},
3581 { "INIT_IO_RESTRICT_PLL2" , 0x4A, init_io_restrict_pll2
},
3582 { "INIT_PLL2" , 0x4B, init_pll2
},
3583 { "INIT_I2C_BYTE" , 0x4C, init_i2c_byte
},
3584 { "INIT_ZM_I2C_BYTE" , 0x4D, init_zm_i2c_byte
},
3585 { "INIT_ZM_I2C" , 0x4E, init_zm_i2c
},
3586 { "INIT_TMDS" , 0x4F, init_tmds
},
3587 { "INIT_ZM_TMDS_GROUP" , 0x50, init_zm_tmds_group
},
3588 { "INIT_CR_INDEX_ADDRESS_LATCHED" , 0x51, init_cr_idx_adr_latch
},
3589 { "INIT_CR" , 0x52, init_cr
},
3590 { "INIT_ZM_CR" , 0x53, init_zm_cr
},
3591 { "INIT_ZM_CR_GROUP" , 0x54, init_zm_cr_group
},
3592 { "INIT_CONDITION_TIME" , 0x56, init_condition_time
},
3593 { "INIT_LTIME" , 0x57, init_ltime
},
3594 { "INIT_ZM_REG_SEQUENCE" , 0x58, init_zm_reg_sequence
},
3595 /* INIT_INDIRECT_REG (0x5A, 7, 0, 0) removed due to no example of use */
3596 { "INIT_SUB_DIRECT" , 0x5B, init_sub_direct
},
3597 { "INIT_JUMP" , 0x5C, init_jump
},
3598 { "INIT_I2C_IF" , 0x5E, init_i2c_if
},
3599 { "INIT_COPY_NV_REG" , 0x5F, init_copy_nv_reg
},
3600 { "INIT_ZM_INDEX_IO" , 0x62, init_zm_index_io
},
3601 { "INIT_COMPUTE_MEM" , 0x63, init_compute_mem
},
3602 { "INIT_RESET" , 0x65, init_reset
},
3603 { "INIT_CONFIGURE_MEM" , 0x66, init_configure_mem
},
3604 { "INIT_CONFIGURE_CLK" , 0x67, init_configure_clk
},
3605 { "INIT_CONFIGURE_PREINIT" , 0x68, init_configure_preinit
},
3606 { "INIT_IO" , 0x69, init_io
},
3607 { "INIT_SUB" , 0x6B, init_sub
},
3608 { "INIT_RAM_CONDITION" , 0x6D, init_ram_condition
},
3609 { "INIT_NV_REG" , 0x6E, init_nv_reg
},
3610 { "INIT_MACRO" , 0x6F, init_macro
},
3611 { "INIT_DONE" , 0x71, init_done
},
3612 { "INIT_RESUME" , 0x72, init_resume
},
3613 /* INIT_RAM_CONDITION2 (0x73, 9, 0, 0) removed due to no example of use */
3614 { "INIT_TIME" , 0x74, init_time
},
3615 { "INIT_CONDITION" , 0x75, init_condition
},
3616 { "INIT_IO_CONDITION" , 0x76, init_io_condition
},
3617 { "INIT_INDEX_IO" , 0x78, init_index_io
},
3618 { "INIT_PLL" , 0x79, init_pll
},
3619 { "INIT_ZM_REG" , 0x7A, init_zm_reg
},
3620 { "INIT_RAM_RESTRICT_PLL" , 0x87, init_ram_restrict_pll
},
3621 { "INIT_8C" , 0x8C, init_8c
},
3622 { "INIT_8D" , 0x8D, init_8d
},
3623 { "INIT_GPIO" , 0x8E, init_gpio
},
3624 { "INIT_RAM_RESTRICT_ZM_REG_GROUP" , 0x8F, init_ram_restrict_zm_reg_group
},
3625 { "INIT_COPY_ZM_REG" , 0x90, init_copy_zm_reg
},
3626 { "INIT_ZM_REG_GROUP_ADDRESS_LATCHED" , 0x91, init_zm_reg_group_addr_latched
},
3627 { "INIT_RESERVED" , 0x92, init_reserved
},
3628 { "INIT_96" , 0x96, init_96
},
3629 { "INIT_97" , 0x97, init_97
},
3630 { "INIT_AUXCH" , 0x98, init_auxch
},
3631 { "INIT_ZM_AUXCH" , 0x99, init_zm_auxch
},
3632 { "INIT_I2C_LONG_IF" , 0x9A, init_i2c_long_if
},
3636 #define MAX_TABLE_OPS 1000
3639 parse_init_table(struct nvbios
*bios
, uint16_t offset
, struct init_exec
*iexec
)
3642 * Parses all commands in an init table.
3644 * We start out executing all commands found in the init table. Some
3645 * opcodes may change the status of iexec->execute to SKIP, which will
3646 * cause the following opcodes to perform no operation until the value
3647 * is changed back to EXECUTE.
3650 int count
= 0, i
, ret
;
3653 /* catch NULL script pointers */
3658 * Loop until INIT_DONE causes us to break out of the loop
3659 * (or until offset > bios length just in case... )
3660 * (and no more than MAX_TABLE_OPS iterations, just in case... )
3662 while ((offset
< bios
->length
) && (count
++ < MAX_TABLE_OPS
)) {
3663 id
= bios
->data
[offset
];
3665 /* Find matching id in itbl_entry */
3666 for (i
= 0; itbl_entry
[i
].name
&& (itbl_entry
[i
].id
!= id
); i
++)
3669 if (!itbl_entry
[i
].name
) {
3671 "0x%04X: Init table command not found: "
3672 "0x%02X\n", offset
, id
);
3676 BIOSLOG(bios
, "0x%04X: [ (0x%02X) - %s ]\n", offset
,
3677 itbl_entry
[i
].id
, itbl_entry
[i
].name
);
3679 /* execute eventual command handler */
3680 ret
= (*itbl_entry
[i
].handler
)(bios
, offset
, iexec
);
3682 NV_ERROR(bios
->dev
, "0x%04X: Failed parsing init "
3683 "table opcode: %s %d\n", offset
,
3684 itbl_entry
[i
].name
, ret
);
3691 * Add the offset of the current command including all data
3692 * of that command. The offset will then be pointing on the
3698 if (offset
>= bios
->length
)
3700 "Offset 0x%04X greater than known bios image length. "
3701 "Corrupt image?\n", offset
);
3702 if (count
>= MAX_TABLE_OPS
)
3704 "More than %d opcodes to a table is unlikely, "
3705 "is the bios image corrupt?\n", MAX_TABLE_OPS
);
3711 parse_init_tables(struct nvbios
*bios
)
3713 /* Loops and calls parse_init_table() for each present table. */
3717 struct init_exec iexec
= {true, false};
3719 if (bios
->old_style_init
) {
3720 if (bios
->init_script_tbls_ptr
)
3721 parse_init_table(bios
, bios
->init_script_tbls_ptr
, &iexec
);
3722 if (bios
->extra_init_script_tbl_ptr
)
3723 parse_init_table(bios
, bios
->extra_init_script_tbl_ptr
, &iexec
);
3728 while ((table
= ROM16(bios
->data
[bios
->init_script_tbls_ptr
+ i
]))) {
3730 "Parsing VBIOS init table %d at offset 0x%04X\n",
3732 BIOSLOG(bios
, "0x%04X: ------ Executing following commands ------\n", table
);
3734 parse_init_table(bios
, table
, &iexec
);
3739 static uint16_t clkcmptable(struct nvbios
*bios
, uint16_t clktable
, int pxclk
)
3741 int compare_record_len
, i
= 0;
3742 uint16_t compareclk
, scriptptr
= 0;
3744 if (bios
->major_version
< 5) /* pre BIT */
3745 compare_record_len
= 3;
3747 compare_record_len
= 4;
3750 compareclk
= ROM16(bios
->data
[clktable
+ compare_record_len
* i
]);
3751 if (pxclk
>= compareclk
* 10) {
3752 if (bios
->major_version
< 5) {
3753 uint8_t tmdssub
= bios
->data
[clktable
+ 2 + compare_record_len
* i
];
3754 scriptptr
= ROM16(bios
->data
[bios
->init_script_tbls_ptr
+ tmdssub
* 2]);
3756 scriptptr
= ROM16(bios
->data
[clktable
+ 2 + compare_record_len
* i
]);
3760 } while (compareclk
);
3766 run_digital_op_script(struct drm_device
*dev
, uint16_t scriptptr
,
3767 struct dcb_entry
*dcbent
, int head
, bool dl
)
3769 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
3770 struct nvbios
*bios
= &dev_priv
->vbios
;
3771 struct init_exec iexec
= {true, false};
3773 NV_TRACE(dev
, "0x%04X: Parsing digital output script table\n",
3775 bios_idxprt_wr(bios
, NV_CIO_CRX__COLOR
, NV_CIO_CRE_44
,
3776 head
? NV_CIO_CRE_44_HEADB
: NV_CIO_CRE_44_HEADA
);
3777 /* note: if dcb entries have been merged, index may be misleading */
3778 NVWriteVgaCrtc5758(dev
, head
, 0, dcbent
->index
);
3779 parse_init_table(bios
, scriptptr
, &iexec
);
3781 nv04_dfp_bind_head(dev
, dcbent
, head
, dl
);
3784 static int call_lvds_manufacturer_script(struct drm_device
*dev
, struct dcb_entry
*dcbent
, int head
, enum LVDS_script script
)
3786 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
3787 struct nvbios
*bios
= &dev_priv
->vbios
;
3788 uint8_t sub
= bios
->data
[bios
->fp
.xlated_entry
+ script
] + (bios
->fp
.link_c_increment
&& dcbent
->or & OUTPUT_C
? 1 : 0);
3789 uint16_t scriptofs
= ROM16(bios
->data
[bios
->init_script_tbls_ptr
+ sub
* 2]);
3791 if (!bios
->fp
.xlated_entry
|| !sub
|| !scriptofs
)
3794 run_digital_op_script(dev
, scriptofs
, dcbent
, head
, bios
->fp
.dual_link
);
3796 if (script
== LVDS_PANEL_OFF
) {
3797 /* off-on delay in ms */
3798 mdelay(ROM16(bios
->data
[bios
->fp
.xlated_entry
+ 7]));
3801 /* Powerbook specific quirks */
3802 if (script
== LVDS_RESET
&&
3803 (dev
->pci_device
== 0x0179 || dev
->pci_device
== 0x0189 ||
3804 dev
->pci_device
== 0x0329))
3805 nv_write_tmds(dev
, dcbent
->or, 0, 0x02, 0x72);
3811 static int run_lvds_table(struct drm_device
*dev
, struct dcb_entry
*dcbent
, int head
, enum LVDS_script script
, int pxclk
)
3814 * The BIT LVDS table's header has the information to setup the
3815 * necessary registers. Following the standard 4 byte header are:
3816 * A bitmask byte and a dual-link transition pxclk value for use in
3817 * selecting the init script when not using straps; 4 script pointers
3818 * for panel power, selected by output and on/off; and 8 table pointers
3819 * for panel init, the needed one determined by output, and bits in the
3820 * conf byte. These tables are similar to the TMDS tables, consisting
3821 * of a list of pxclks and script pointers.
3823 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
3824 struct nvbios
*bios
= &dev_priv
->vbios
;
3825 unsigned int outputset
= (dcbent
->or == 4) ? 1 : 0;
3826 uint16_t scriptptr
= 0, clktable
;
3829 * For now we assume version 3.0 table - g80 support will need some
3836 case LVDS_BACKLIGHT_ON
:
3838 scriptptr
= ROM16(bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 7 + outputset
* 2]);
3840 case LVDS_BACKLIGHT_OFF
:
3841 case LVDS_PANEL_OFF
:
3842 scriptptr
= ROM16(bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 11 + outputset
* 2]);
3845 clktable
= bios
->fp
.lvdsmanufacturerpointer
+ 15;
3846 if (dcbent
->or == 4)
3849 if (dcbent
->lvdsconf
.use_straps_for_mode
) {
3850 if (bios
->fp
.dual_link
)
3852 if (bios
->fp
.if_is_24bit
)
3856 int cmpval_24bit
= (dcbent
->or == 4) ? 4 : 1;
3858 if (bios
->fp
.dual_link
) {
3863 if (bios
->fp
.strapless_is_24bit
& cmpval_24bit
)
3867 clktable
= ROM16(bios
->data
[clktable
]);
3869 NV_ERROR(dev
, "Pixel clock comparison table not found\n");
3872 scriptptr
= clkcmptable(bios
, clktable
, pxclk
);
3876 NV_ERROR(dev
, "LVDS output init script not found\n");
3879 run_digital_op_script(dev
, scriptptr
, dcbent
, head
, bios
->fp
.dual_link
);
3884 int call_lvds_script(struct drm_device
*dev
, struct dcb_entry
*dcbent
, int head
, enum LVDS_script script
, int pxclk
)
3887 * LVDS operations are multiplexed in an effort to present a single API
3888 * which works with two vastly differing underlying structures.
3889 * This acts as the demux
3892 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
3893 struct nvbios
*bios
= &dev_priv
->vbios
;
3894 uint8_t lvds_ver
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
];
3895 uint32_t sel_clk_binding
, sel_clk
;
3898 if (bios
->fp
.last_script_invoc
== (script
<< 1 | head
) || !lvds_ver
||
3899 (lvds_ver
>= 0x30 && script
== LVDS_INIT
))
3902 if (!bios
->fp
.lvds_init_run
) {
3903 bios
->fp
.lvds_init_run
= true;
3904 call_lvds_script(dev
, dcbent
, head
, LVDS_INIT
, pxclk
);
3907 if (script
== LVDS_PANEL_ON
&& bios
->fp
.reset_after_pclk_change
)
3908 call_lvds_script(dev
, dcbent
, head
, LVDS_RESET
, pxclk
);
3909 if (script
== LVDS_RESET
&& bios
->fp
.power_off_for_reset
)
3910 call_lvds_script(dev
, dcbent
, head
, LVDS_PANEL_OFF
, pxclk
);
3912 NV_TRACE(dev
, "Calling LVDS script %d:\n", script
);
3914 /* don't let script change pll->head binding */
3915 sel_clk_binding
= bios_rd32(bios
, NV_PRAMDAC_SEL_CLK
) & 0x50000;
3917 if (lvds_ver
< 0x30)
3918 ret
= call_lvds_manufacturer_script(dev
, dcbent
, head
, script
);
3920 ret
= run_lvds_table(dev
, dcbent
, head
, script
, pxclk
);
3922 bios
->fp
.last_script_invoc
= (script
<< 1 | head
);
3924 sel_clk
= NVReadRAMDAC(dev
, 0, NV_PRAMDAC_SEL_CLK
) & ~0x50000;
3925 NVWriteRAMDAC(dev
, 0, NV_PRAMDAC_SEL_CLK
, sel_clk
| sel_clk_binding
);
3926 /* some scripts set a value in NV_PBUS_POWERCTRL_2 and break video overlay */
3927 nvWriteMC(dev
, NV_PBUS_POWERCTRL_2
, 0);
3932 struct lvdstableheader
{
3933 uint8_t lvds_ver
, headerlen
, recordlen
;
3936 static int parse_lvds_manufacturer_table_header(struct drm_device
*dev
, struct nvbios
*bios
, struct lvdstableheader
*lth
)
3939 * BMP version (0xa) LVDS table has a simple header of version and
3940 * record length. The BIT LVDS table has the typical BIT table header:
3941 * version byte, header length byte, record length byte, and a byte for
3942 * the maximum number of records that can be held in the table.
3945 uint8_t lvds_ver
, headerlen
, recordlen
;
3947 memset(lth
, 0, sizeof(struct lvdstableheader
));
3949 if (bios
->fp
.lvdsmanufacturerpointer
== 0x0) {
3950 NV_ERROR(dev
, "Pointer to LVDS manufacturer table invalid\n");
3954 lvds_ver
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
];
3957 case 0x0a: /* pre NV40 */
3959 recordlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 1];
3961 case 0x30: /* NV4x */
3962 headerlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 1];
3963 if (headerlen
< 0x1f) {
3964 NV_ERROR(dev
, "LVDS table header not understood\n");
3967 recordlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 2];
3969 case 0x40: /* G80/G90 */
3970 headerlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 1];
3971 if (headerlen
< 0x7) {
3972 NV_ERROR(dev
, "LVDS table header not understood\n");
3975 recordlen
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 2];
3979 "LVDS table revision %d.%d not currently supported\n",
3980 lvds_ver
>> 4, lvds_ver
& 0xf);
3984 lth
->lvds_ver
= lvds_ver
;
3985 lth
->headerlen
= headerlen
;
3986 lth
->recordlen
= recordlen
;
3992 get_fp_strap(struct drm_device
*dev
, struct nvbios
*bios
)
3994 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
3997 * The fp strap is normally dictated by the "User Strap" in
3998 * PEXTDEV_BOOT_0[20:16], but on BMP cards when bit 2 of the
3999 * Internal_Flags struct at 0x48 is set, the user strap gets overriden
4000 * by the PCI subsystem ID during POST, but not before the previous user
4001 * strap has been committed to CR58 for CR57=0xf on head A, which may be
4002 * read and used instead
4005 if (bios
->major_version
< 5 && bios
->data
[0x48] & 0x4)
4006 return NVReadVgaCrtc5758(dev
, 0, 0xf) & 0xf;
4008 if (dev_priv
->card_type
>= NV_50
)
4009 return (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) >> 24) & 0xf;
4011 return (bios_rd32(bios
, NV_PEXTDEV_BOOT_0
) >> 16) & 0xf;
4014 static int parse_fp_mode_table(struct drm_device
*dev
, struct nvbios
*bios
)
4017 uint8_t fptable_ver
, headerlen
= 0, recordlen
, fpentries
= 0xf, fpindex
;
4018 int ret
, ofs
, fpstrapping
;
4019 struct lvdstableheader lth
;
4021 if (bios
->fp
.fptablepointer
== 0x0) {
4022 /* Apple cards don't have the fp table; the laptops use DDC */
4023 /* The table is also missing on some x86 IGPs */
4025 NV_ERROR(dev
, "Pointer to flat panel table invalid\n");
4027 bios
->digital_min_front_porch
= 0x4b;
4031 fptable
= &bios
->data
[bios
->fp
.fptablepointer
];
4032 fptable_ver
= fptable
[0];
4034 switch (fptable_ver
) {
4036 * BMP version 0x5.0x11 BIOSen have version 1 like tables, but no
4037 * version field, and miss one of the spread spectrum/PWM bytes.
4038 * This could affect early GF2Go parts (not seen any appropriate ROMs
4039 * though). Here we assume that a version of 0x05 matches this case
4040 * (combining with a BMP version check would be better), as the
4041 * common case for the panel type field is 0x0005, and that is in
4042 * fact what we are reading the first byte of.
4044 case 0x05: /* some NV10, 11, 15, 16 */
4048 case 0x10: /* some NV15/16, and NV11+ */
4052 case 0x20: /* NV40+ */
4053 headerlen
= fptable
[1];
4054 recordlen
= fptable
[2];
4055 fpentries
= fptable
[3];
4057 * fptable[4] is the minimum
4058 * RAMDAC_FP_HCRTC -> RAMDAC_FP_HSYNC_START gap
4060 bios
->digital_min_front_porch
= fptable
[4];
4065 "FP table revision %d.%d not currently supported\n",
4066 fptable_ver
>> 4, fptable_ver
& 0xf);
4070 if (!bios
->is_mobile
) /* !mobile only needs digital_min_front_porch */
4073 ret
= parse_lvds_manufacturer_table_header(dev
, bios
, <h
);
4077 if (lth
.lvds_ver
== 0x30 || lth
.lvds_ver
== 0x40) {
4078 bios
->fp
.fpxlatetableptr
= bios
->fp
.lvdsmanufacturerpointer
+
4080 bios
->fp
.xlatwidth
= lth
.recordlen
;
4082 if (bios
->fp
.fpxlatetableptr
== 0x0) {
4083 NV_ERROR(dev
, "Pointer to flat panel xlat table invalid\n");
4087 fpstrapping
= get_fp_strap(dev
, bios
);
4089 fpindex
= bios
->data
[bios
->fp
.fpxlatetableptr
+
4090 fpstrapping
* bios
->fp
.xlatwidth
];
4092 if (fpindex
> fpentries
) {
4093 NV_ERROR(dev
, "Bad flat panel table index\n");
4097 /* nv4x cards need both a strap value and fpindex of 0xf to use DDC */
4098 if (lth
.lvds_ver
> 0x10)
4099 bios
->fp_no_ddc
= fpstrapping
!= 0xf || fpindex
!= 0xf;
4102 * If either the strap or xlated fpindex value are 0xf there is no
4103 * panel using a strap-derived bios mode present. this condition
4104 * includes, but is different from, the DDC panel indicator above
4106 if (fpstrapping
== 0xf || fpindex
== 0xf)
4109 bios
->fp
.mode_ptr
= bios
->fp
.fptablepointer
+ headerlen
+
4110 recordlen
* fpindex
+ ofs
;
4112 NV_TRACE(dev
, "BIOS FP mode: %dx%d (%dkHz pixel clock)\n",
4113 ROM16(bios
->data
[bios
->fp
.mode_ptr
+ 11]) + 1,
4114 ROM16(bios
->data
[bios
->fp
.mode_ptr
+ 25]) + 1,
4115 ROM16(bios
->data
[bios
->fp
.mode_ptr
+ 7]) * 10);
4120 bool nouveau_bios_fp_mode(struct drm_device
*dev
, struct drm_display_mode
*mode
)
4122 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4123 struct nvbios
*bios
= &dev_priv
->vbios
;
4124 uint8_t *mode_entry
= &bios
->data
[bios
->fp
.mode_ptr
];
4126 if (!mode
) /* just checking whether we can produce a mode */
4127 return bios
->fp
.mode_ptr
;
4129 memset(mode
, 0, sizeof(struct drm_display_mode
));
4131 * For version 1.0 (version in byte 0):
4132 * bytes 1-2 are "panel type", including bits on whether Colour/mono,
4133 * single/dual link, and type (TFT etc.)
4134 * bytes 3-6 are bits per colour in RGBX
4136 mode
->clock
= ROM16(mode_entry
[7]) * 10;
4137 /* bytes 9-10 is HActive */
4138 mode
->hdisplay
= ROM16(mode_entry
[11]) + 1;
4140 * bytes 13-14 is HValid Start
4141 * bytes 15-16 is HValid End
4143 mode
->hsync_start
= ROM16(mode_entry
[17]) + 1;
4144 mode
->hsync_end
= ROM16(mode_entry
[19]) + 1;
4145 mode
->htotal
= ROM16(mode_entry
[21]) + 1;
4146 /* bytes 23-24, 27-30 similarly, but vertical */
4147 mode
->vdisplay
= ROM16(mode_entry
[25]) + 1;
4148 mode
->vsync_start
= ROM16(mode_entry
[31]) + 1;
4149 mode
->vsync_end
= ROM16(mode_entry
[33]) + 1;
4150 mode
->vtotal
= ROM16(mode_entry
[35]) + 1;
4151 mode
->flags
|= (mode_entry
[37] & 0x10) ?
4152 DRM_MODE_FLAG_PHSYNC
: DRM_MODE_FLAG_NHSYNC
;
4153 mode
->flags
|= (mode_entry
[37] & 0x1) ?
4154 DRM_MODE_FLAG_PVSYNC
: DRM_MODE_FLAG_NVSYNC
;
4156 * bytes 38-39 relate to spread spectrum settings
4157 * bytes 40-43 are something to do with PWM
4160 mode
->status
= MODE_OK
;
4161 mode
->type
= DRM_MODE_TYPE_DRIVER
| DRM_MODE_TYPE_PREFERRED
;
4162 drm_mode_set_name(mode
);
4163 return bios
->fp
.mode_ptr
;
4166 int nouveau_bios_parse_lvds_table(struct drm_device
*dev
, int pxclk
, bool *dl
, bool *if_is_24bit
)
4169 * The LVDS table header is (mostly) described in
4170 * parse_lvds_manufacturer_table_header(): the BIT header additionally
4171 * contains the dual-link transition pxclk (in 10s kHz), at byte 5 - if
4172 * straps are not being used for the panel, this specifies the frequency
4173 * at which modes should be set up in the dual link style.
4175 * Following the header, the BMP (ver 0xa) table has several records,
4176 * indexed by a separate xlat table, indexed in turn by the fp strap in
4177 * EXTDEV_BOOT. Each record had a config byte, followed by 6 script
4178 * numbers for use by INIT_SUB which controlled panel init and power,
4179 * and finally a dword of ms to sleep between power off and on
4182 * In the BIT versions, the table following the header serves as an
4183 * integrated config and xlat table: the records in the table are
4184 * indexed by the FP strap nibble in EXTDEV_BOOT, and each record has
4185 * two bytes - the first as a config byte, the second for indexing the
4186 * fp mode table pointed to by the BIT 'D' table
4188 * DDC is not used until after card init, so selecting the correct table
4189 * entry and setting the dual link flag for EDID equipped panels,
4190 * requiring tests against the native-mode pixel clock, cannot be done
4191 * until later, when this function should be called with non-zero pxclk
4193 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4194 struct nvbios
*bios
= &dev_priv
->vbios
;
4195 int fpstrapping
= get_fp_strap(dev
, bios
), lvdsmanufacturerindex
= 0;
4196 struct lvdstableheader lth
;
4198 int ret
, chip_version
= bios
->chip_version
;
4200 ret
= parse_lvds_manufacturer_table_header(dev
, bios
, <h
);
4204 switch (lth
.lvds_ver
) {
4205 case 0x0a: /* pre NV40 */
4206 lvdsmanufacturerindex
= bios
->data
[
4207 bios
->fp
.fpxlatemanufacturertableptr
+
4210 /* we're done if this isn't the EDID panel case */
4214 if (chip_version
< 0x25) {
4217 * It seems the old style lvds script pointer is reused
4218 * to select 18/24 bit colour depth for EDID panels.
4220 lvdsmanufacturerindex
=
4221 (bios
->legacy
.lvds_single_a_script_ptr
& 1) ?
4223 if (pxclk
>= bios
->fp
.duallink_transition_clk
)
4224 lvdsmanufacturerindex
++;
4225 } else if (chip_version
< 0x30) {
4226 /* nv28 behaviour (off-chip encoder)
4228 * nv28 does a complex dance of first using byte 121 of
4229 * the EDID to choose the lvdsmanufacturerindex, then
4230 * later attempting to match the EDID manufacturer and
4231 * product IDs in a table (signature 'pidt' (panel id
4232 * table?)), setting an lvdsmanufacturerindex of 0 and
4233 * an fp strap of the match index (or 0xf if none)
4235 lvdsmanufacturerindex
= 0;
4237 /* nv31, nv34 behaviour */
4238 lvdsmanufacturerindex
= 0;
4239 if (pxclk
>= bios
->fp
.duallink_transition_clk
)
4240 lvdsmanufacturerindex
= 2;
4241 if (pxclk
>= 140000)
4242 lvdsmanufacturerindex
= 3;
4246 * nvidia set the high nibble of (cr57=f, cr58) to
4247 * lvdsmanufacturerindex in this case; we don't
4250 case 0x30: /* NV4x */
4251 case 0x40: /* G80/G90 */
4252 lvdsmanufacturerindex
= fpstrapping
;
4255 NV_ERROR(dev
, "LVDS table revision not currently supported\n");
4259 lvdsofs
= bios
->fp
.xlated_entry
= bios
->fp
.lvdsmanufacturerpointer
+ lth
.headerlen
+ lth
.recordlen
* lvdsmanufacturerindex
;
4260 switch (lth
.lvds_ver
) {
4262 bios
->fp
.power_off_for_reset
= bios
->data
[lvdsofs
] & 1;
4263 bios
->fp
.reset_after_pclk_change
= bios
->data
[lvdsofs
] & 2;
4264 bios
->fp
.dual_link
= bios
->data
[lvdsofs
] & 4;
4265 bios
->fp
.link_c_increment
= bios
->data
[lvdsofs
] & 8;
4266 *if_is_24bit
= bios
->data
[lvdsofs
] & 16;
4271 * No sign of the "power off for reset" or "reset for panel
4272 * on" bits, but it's safer to assume we should
4274 bios
->fp
.power_off_for_reset
= true;
4275 bios
->fp
.reset_after_pclk_change
= true;
4278 * It's ok lvdsofs is wrong for nv4x edid case; dual_link is
4279 * over-written, and if_is_24bit isn't used
4281 bios
->fp
.dual_link
= bios
->data
[lvdsofs
] & 1;
4282 bios
->fp
.if_is_24bit
= bios
->data
[lvdsofs
] & 2;
4283 bios
->fp
.strapless_is_24bit
= bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 4];
4284 bios
->fp
.duallink_transition_clk
= ROM16(bios
->data
[bios
->fp
.lvdsmanufacturerpointer
+ 5]) * 10;
4288 /* set dual_link flag for EDID case */
4289 if (pxclk
&& (chip_version
< 0x25 || chip_version
> 0x28))
4290 bios
->fp
.dual_link
= (pxclk
>= bios
->fp
.duallink_transition_clk
);
4292 *dl
= bios
->fp
.dual_link
;
4297 /* BIT 'U'/'d' table encoder subtables have hashes matching them to
4298 * a particular set of encoders.
4300 * This function returns true if a particular DCB entry matches.
4303 bios_encoder_match(struct dcb_entry
*dcb
, u32 hash
)
4305 if ((hash
& 0x000000f0) != (dcb
->location
<< 4))
4307 if ((hash
& 0x0000000f) != dcb
->type
)
4309 if (!(hash
& (dcb
->or << 16)))
4312 switch (dcb
->type
) {
4316 if (hash
& 0x00c00000) {
4317 if (!(hash
& (dcb
->sorconf
.link
<< 22)))
4326 nouveau_bios_run_display_table(struct drm_device
*dev
, u16 type
, int pclk
,
4327 struct dcb_entry
*dcbent
, int crtc
)
4330 * The display script table is located by the BIT 'U' table.
4332 * It contains an array of pointers to various tables describing
4333 * a particular output type. The first 32-bits of the output
4334 * tables contains similar information to a DCB entry, and is
4335 * used to decide whether that particular table is suitable for
4336 * the output you want to access.
4338 * The "record header length" field here seems to indicate the
4339 * offset of the first configuration entry in the output tables.
4340 * This is 10 on most cards I've seen, but 12 has been witnessed
4341 * on DP cards, and there's another script pointer within the
4344 * offset + 0 ( 8 bits): version
4345 * offset + 1 ( 8 bits): header length
4346 * offset + 2 ( 8 bits): record length
4347 * offset + 3 ( 8 bits): number of records
4348 * offset + 4 ( 8 bits): record header length
4349 * offset + 5 (16 bits): pointer to first output script table
4352 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4353 struct nvbios
*bios
= &dev_priv
->vbios
;
4354 uint8_t *table
= &bios
->data
[bios
->display
.script_table_ptr
];
4355 uint8_t *otable
= NULL
;
4359 if (!bios
->display
.script_table_ptr
) {
4360 NV_ERROR(dev
, "No pointer to output script table\n");
4365 * Nothing useful has been in any of the pre-2.0 tables I've seen,
4366 * so until they are, we really don't need to care.
4368 if (table
[0] < 0x20)
4371 if (table
[0] != 0x20 && table
[0] != 0x21) {
4372 NV_ERROR(dev
, "Output script table version 0x%02x unknown\n",
4378 * The output script tables describing a particular output type
4381 * offset + 0 (32 bits): output this table matches (hash of DCB)
4382 * offset + 4 ( 8 bits): unknown
4383 * offset + 5 ( 8 bits): number of configurations
4384 * offset + 6 (16 bits): pointer to some script
4385 * offset + 8 (16 bits): pointer to some script
4388 * offset + 10 : configuration 0
4391 * offset + 10 : pointer to some script
4392 * offset + 12 : configuration 0
4394 * Each config entry is as follows:
4396 * offset + 0 (16 bits): unknown, assumed to be a match value
4397 * offset + 2 (16 bits): pointer to script table (clock set?)
4398 * offset + 4 (16 bits): pointer to script table (reset?)
4400 * There doesn't appear to be a count value to say how many
4401 * entries exist in each script table, instead, a 0 value in
4402 * the first 16-bit word seems to indicate both the end of the
4403 * list and the default entry. The second 16-bit word in the
4404 * script tables is a pointer to the script to execute.
4407 NV_DEBUG_KMS(dev
, "Searching for output entry for %d %d %d\n",
4408 dcbent
->type
, dcbent
->location
, dcbent
->or);
4409 for (i
= 0; i
< table
[3]; i
++) {
4410 otable
= ROMPTR(dev
, table
[table
[1] + (i
* table
[2])]);
4411 if (otable
&& bios_encoder_match(dcbent
, ROM32(otable
[0])))
4416 NV_DEBUG_KMS(dev
, "failed to match any output table\n");
4420 if (pclk
< -2 || pclk
> 0) {
4421 /* Try to find matching script table entry */
4422 for (i
= 0; i
< otable
[5]; i
++) {
4423 if (ROM16(otable
[table
[4] + i
*6]) == type
)
4427 if (i
== otable
[5]) {
4428 NV_ERROR(dev
, "Table 0x%04x not found for %d/%d, "
4430 type
, dcbent
->type
, dcbent
->or);
4436 script
= ROM16(otable
[6]);
4438 NV_DEBUG_KMS(dev
, "output script 0 not found\n");
4442 NV_DEBUG_KMS(dev
, "0x%04X: parsing output script 0\n", script
);
4443 nouveau_bios_run_init_table(dev
, script
, dcbent
, crtc
);
4446 script
= ROM16(otable
[8]);
4448 NV_DEBUG_KMS(dev
, "output script 1 not found\n");
4452 NV_DEBUG_KMS(dev
, "0x%04X: parsing output script 1\n", script
);
4453 nouveau_bios_run_init_table(dev
, script
, dcbent
, crtc
);
4457 script
= ROM16(otable
[10]);
4461 NV_DEBUG_KMS(dev
, "output script 2 not found\n");
4465 NV_DEBUG_KMS(dev
, "0x%04X: parsing output script 2\n", script
);
4466 nouveau_bios_run_init_table(dev
, script
, dcbent
, crtc
);
4469 script
= ROM16(otable
[table
[4] + i
*6 + 2]);
4471 script
= clkcmptable(bios
, script
, pclk
);
4473 NV_DEBUG_KMS(dev
, "clock script 0 not found\n");
4477 NV_DEBUG_KMS(dev
, "0x%04X: parsing clock script 0\n", script
);
4478 nouveau_bios_run_init_table(dev
, script
, dcbent
, crtc
);
4481 script
= ROM16(otable
[table
[4] + i
*6 + 4]);
4483 script
= clkcmptable(bios
, script
, -pclk
);
4485 NV_DEBUG_KMS(dev
, "clock script 1 not found\n");
4489 NV_DEBUG_KMS(dev
, "0x%04X: parsing clock script 1\n", script
);
4490 nouveau_bios_run_init_table(dev
, script
, dcbent
, crtc
);
4497 int run_tmds_table(struct drm_device
*dev
, struct dcb_entry
*dcbent
, int head
, int pxclk
)
4500 * the pxclk parameter is in kHz
4502 * This runs the TMDS regs setting code found on BIT bios cards
4504 * For ffs(or) == 1 use the first table, for ffs(or) == 2 and
4505 * ffs(or) == 3, use the second.
4508 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4509 struct nvbios
*bios
= &dev_priv
->vbios
;
4510 int cv
= bios
->chip_version
;
4511 uint16_t clktable
= 0, scriptptr
;
4512 uint32_t sel_clk_binding
, sel_clk
;
4514 /* pre-nv17 off-chip tmds uses scripts, post nv17 doesn't */
4515 if (cv
>= 0x17 && cv
!= 0x1a && cv
!= 0x20 &&
4516 dcbent
->location
!= DCB_LOC_ON_CHIP
)
4519 switch (ffs(dcbent
->or)) {
4521 clktable
= bios
->tmds
.output0_script_ptr
;
4525 clktable
= bios
->tmds
.output1_script_ptr
;
4530 NV_ERROR(dev
, "Pixel clock comparison table not found\n");
4534 scriptptr
= clkcmptable(bios
, clktable
, pxclk
);
4537 NV_ERROR(dev
, "TMDS output init script not found\n");
4541 /* don't let script change pll->head binding */
4542 sel_clk_binding
= bios_rd32(bios
, NV_PRAMDAC_SEL_CLK
) & 0x50000;
4543 run_digital_op_script(dev
, scriptptr
, dcbent
, head
, pxclk
>= 165000);
4544 sel_clk
= NVReadRAMDAC(dev
, 0, NV_PRAMDAC_SEL_CLK
) & ~0x50000;
4545 NVWriteRAMDAC(dev
, 0, NV_PRAMDAC_SEL_CLK
, sel_clk
| sel_clk_binding
);
4550 struct pll_mapping
{
4555 static struct pll_mapping nv04_pll_mapping
[] = {
4556 { PLL_CORE
, NV_PRAMDAC_NVPLL_COEFF
},
4557 { PLL_MEMORY
, NV_PRAMDAC_MPLL_COEFF
},
4558 { PLL_VPLL0
, NV_PRAMDAC_VPLL_COEFF
},
4559 { PLL_VPLL1
, NV_RAMDAC_VPLL2
},
4563 static struct pll_mapping nv40_pll_mapping
[] = {
4564 { PLL_CORE
, 0x004000 },
4565 { PLL_MEMORY
, 0x004020 },
4566 { PLL_VPLL0
, NV_PRAMDAC_VPLL_COEFF
},
4567 { PLL_VPLL1
, NV_RAMDAC_VPLL2
},
4571 static struct pll_mapping nv50_pll_mapping
[] = {
4572 { PLL_CORE
, 0x004028 },
4573 { PLL_SHADER
, 0x004020 },
4574 { PLL_UNK03
, 0x004000 },
4575 { PLL_MEMORY
, 0x004008 },
4576 { PLL_UNK40
, 0x00e810 },
4577 { PLL_UNK41
, 0x00e818 },
4578 { PLL_UNK42
, 0x00e824 },
4579 { PLL_VPLL0
, 0x614100 },
4580 { PLL_VPLL1
, 0x614900 },
4584 static struct pll_mapping nv84_pll_mapping
[] = {
4585 { PLL_CORE
, 0x004028 },
4586 { PLL_SHADER
, 0x004020 },
4587 { PLL_MEMORY
, 0x004008 },
4588 { PLL_VDEC
, 0x004030 },
4589 { PLL_UNK41
, 0x00e818 },
4590 { PLL_VPLL0
, 0x614100 },
4591 { PLL_VPLL1
, 0x614900 },
4596 get_pll_register(struct drm_device
*dev
, enum pll_types type
)
4598 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4599 struct nvbios
*bios
= &dev_priv
->vbios
;
4600 struct pll_mapping
*map
;
4603 if (dev_priv
->card_type
< NV_40
)
4604 map
= nv04_pll_mapping
;
4606 if (dev_priv
->card_type
< NV_50
)
4607 map
= nv40_pll_mapping
;
4609 u8
*plim
= &bios
->data
[bios
->pll_limit_tbl_ptr
];
4611 if (plim
[0] >= 0x30) {
4612 u8
*entry
= plim
+ plim
[1];
4613 for (i
= 0; i
< plim
[3]; i
++, entry
+= plim
[2]) {
4614 if (entry
[0] == type
)
4615 return ROM32(entry
[3]);
4621 if (dev_priv
->chipset
== 0x50)
4622 map
= nv50_pll_mapping
;
4624 map
= nv84_pll_mapping
;
4628 if (map
->type
== type
)
4636 int get_pll_limits(struct drm_device
*dev
, uint32_t limit_match
, struct pll_lims
*pll_lim
)
4641 * Version 0x10: NV30, NV31
4642 * One byte header (version), one record of 24 bytes
4643 * Version 0x11: NV36 - Not implemented
4644 * Seems to have same record style as 0x10, but 3 records rather than 1
4645 * Version 0x20: Found on Geforce 6 cards
4646 * Trivial 4 byte BIT header. 31 (0x1f) byte record length
4647 * Version 0x21: Found on Geforce 7, 8 and some Geforce 6 cards
4648 * 5 byte header, fifth byte of unknown purpose. 35 (0x23) byte record
4649 * length in general, some (integrated) have an extra configuration byte
4650 * Version 0x30: Found on Geforce 8, separates the register mapping
4651 * from the limits tables.
4654 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
4655 struct nvbios
*bios
= &dev_priv
->vbios
;
4656 int cv
= bios
->chip_version
, pllindex
= 0;
4657 uint8_t pll_lim_ver
= 0, headerlen
= 0, recordlen
= 0, entries
= 0;
4658 uint32_t crystal_strap_mask
, crystal_straps
;
4660 if (!bios
->pll_limit_tbl_ptr
) {
4661 if (cv
== 0x30 || cv
== 0x31 || cv
== 0x35 || cv
== 0x36 ||
4663 NV_ERROR(dev
, "Pointer to PLL limits table invalid\n");
4667 pll_lim_ver
= bios
->data
[bios
->pll_limit_tbl_ptr
];
4669 crystal_strap_mask
= 1 << 6;
4670 /* open coded dev->twoHeads test */
4671 if (cv
> 0x10 && cv
!= 0x15 && cv
!= 0x1a && cv
!= 0x20)
4672 crystal_strap_mask
|= 1 << 22;
4673 crystal_straps
= nvReadEXTDEV(dev
, NV_PEXTDEV_BOOT_0
) &
4676 switch (pll_lim_ver
) {
4678 * We use version 0 to indicate a pre limit table bios (single stage
4679 * pll) and load the hard coded limits instead.
4686 * Strictly v0x11 has 3 entries, but the last two don't seem
4698 headerlen
= bios
->data
[bios
->pll_limit_tbl_ptr
+ 1];
4699 recordlen
= bios
->data
[bios
->pll_limit_tbl_ptr
+ 2];
4700 entries
= bios
->data
[bios
->pll_limit_tbl_ptr
+ 3];
4703 NV_ERROR(dev
, "PLL limits table revision 0x%X not currently "
4704 "supported\n", pll_lim_ver
);
4708 /* initialize all members to zero */
4709 memset(pll_lim
, 0, sizeof(struct pll_lims
));
4711 /* if we were passed a type rather than a register, figure
4712 * out the register and store it
4714 if (limit_match
> PLL_MAX
)
4715 pll_lim
->reg
= limit_match
;
4717 pll_lim
->reg
= get_pll_register(dev
, limit_match
);
4722 if (pll_lim_ver
== 0x10 || pll_lim_ver
== 0x11) {
4723 uint8_t *pll_rec
= &bios
->data
[bios
->pll_limit_tbl_ptr
+ headerlen
+ recordlen
* pllindex
];
4725 pll_lim
->vco1
.minfreq
= ROM32(pll_rec
[0]);
4726 pll_lim
->vco1
.maxfreq
= ROM32(pll_rec
[4]);
4727 pll_lim
->vco2
.minfreq
= ROM32(pll_rec
[8]);
4728 pll_lim
->vco2
.maxfreq
= ROM32(pll_rec
[12]);
4729 pll_lim
->vco1
.min_inputfreq
= ROM32(pll_rec
[16]);
4730 pll_lim
->vco2
.min_inputfreq
= ROM32(pll_rec
[20]);
4731 pll_lim
->vco1
.max_inputfreq
= pll_lim
->vco2
.max_inputfreq
= INT_MAX
;
4733 /* these values taken from nv30/31/36 */
4734 pll_lim
->vco1
.min_n
= 0x1;
4736 pll_lim
->vco1
.min_n
= 0x5;
4737 pll_lim
->vco1
.max_n
= 0xff;
4738 pll_lim
->vco1
.min_m
= 0x1;
4739 pll_lim
->vco1
.max_m
= 0xd;
4740 pll_lim
->vco2
.min_n
= 0x4;
4742 * On nv30, 31, 36 (i.e. all cards with two stage PLLs with this
4743 * table version (apart from nv35)), N2 is compared to
4744 * maxN2 (0x46) and 10 * maxM2 (0x4), so set maxN2 to 0x28 and
4747 pll_lim
->vco2
.max_n
= 0x28;
4748 if (cv
== 0x30 || cv
== 0x35)
4749 /* only 5 bits available for N2 on nv30/35 */
4750 pll_lim
->vco2
.max_n
= 0x1f;
4751 pll_lim
->vco2
.min_m
= 0x1;
4752 pll_lim
->vco2
.max_m
= 0x4;
4753 pll_lim
->max_log2p
= 0x7;
4754 pll_lim
->max_usable_log2p
= 0x6;
4755 } else if (pll_lim_ver
== 0x20 || pll_lim_ver
== 0x21) {
4756 uint16_t plloffs
= bios
->pll_limit_tbl_ptr
+ headerlen
;
4761 * First entry is default match, if nothing better. warn if
4764 if (ROM32(bios
->data
[plloffs
]))
4765 NV_WARN(dev
, "Default PLL limit entry has non-zero "
4766 "register field\n");
4768 for (i
= 1; i
< entries
; i
++)
4769 if (ROM32(bios
->data
[plloffs
+ recordlen
* i
]) == pll_lim
->reg
) {
4774 if ((dev_priv
->card_type
>= NV_50
) && (pllindex
== 0)) {
4775 NV_ERROR(dev
, "Register 0x%08x not found in PLL "
4776 "limits table", pll_lim
->reg
);
4780 pll_rec
= &bios
->data
[plloffs
+ recordlen
* pllindex
];
4782 BIOSLOG(bios
, "Loading PLL limits for reg 0x%08x\n",
4783 pllindex
? pll_lim
->reg
: 0);
4786 * Frequencies are stored in tables in MHz, kHz are more
4787 * useful, so we convert.
4790 /* What output frequencies can each VCO generate? */
4791 pll_lim
->vco1
.minfreq
= ROM16(pll_rec
[4]) * 1000;
4792 pll_lim
->vco1
.maxfreq
= ROM16(pll_rec
[6]) * 1000;
4793 pll_lim
->vco2
.minfreq
= ROM16(pll_rec
[8]) * 1000;
4794 pll_lim
->vco2
.maxfreq
= ROM16(pll_rec
[10]) * 1000;
4796 /* What input frequencies they accept (past the m-divider)? */
4797 pll_lim
->vco1
.min_inputfreq
= ROM16(pll_rec
[12]) * 1000;
4798 pll_lim
->vco2
.min_inputfreq
= ROM16(pll_rec
[14]) * 1000;
4799 pll_lim
->vco1
.max_inputfreq
= ROM16(pll_rec
[16]) * 1000;
4800 pll_lim
->vco2
.max_inputfreq
= ROM16(pll_rec
[18]) * 1000;
4802 /* What values are accepted as multiplier and divider? */
4803 pll_lim
->vco1
.min_n
= pll_rec
[20];
4804 pll_lim
->vco1
.max_n
= pll_rec
[21];
4805 pll_lim
->vco1
.min_m
= pll_rec
[22];
4806 pll_lim
->vco1
.max_m
= pll_rec
[23];
4807 pll_lim
->vco2
.min_n
= pll_rec
[24];
4808 pll_lim
->vco2
.max_n
= pll_rec
[25];
4809 pll_lim
->vco2
.min_m
= pll_rec
[26];
4810 pll_lim
->vco2
.max_m
= pll_rec
[27];
4812 pll_lim
->max_usable_log2p
= pll_lim
->max_log2p
= pll_rec
[29];
4813 if (pll_lim
->max_log2p
> 0x7)
4814 /* pll decoding in nv_hw.c assumes never > 7 */
4815 NV_WARN(dev
, "Max log2 P value greater than 7 (%d)\n",
4816 pll_lim
->max_log2p
);
4818 pll_lim
->max_usable_log2p
= 0x6;
4819 pll_lim
->log2p_bias
= pll_rec
[30];
4821 if (recordlen
> 0x22)
4822 pll_lim
->refclk
= ROM32(pll_rec
[31]);
4824 if (recordlen
> 0x23 && pll_rec
[35])
4826 "Bits set in PLL configuration byte (%x)\n",
4829 /* C51 special not seen elsewhere */
4830 if (cv
== 0x51 && !pll_lim
->refclk
) {
4831 uint32_t sel_clk
= bios_rd32(bios
, NV_PRAMDAC_SEL_CLK
);
4833 if ((pll_lim
->reg
== NV_PRAMDAC_VPLL_COEFF
&& sel_clk
& 0x20) ||
4834 (pll_lim
->reg
== NV_RAMDAC_VPLL2
&& sel_clk
& 0x80)) {
4835 if (bios_idxprt_rd(bios
, NV_CIO_CRX__COLOR
, NV_CIO_CRE_CHIP_ID_INDEX
) < 0xa3)
4836 pll_lim
->refclk
= 200000;
4838 pll_lim
->refclk
= 25000;
4841 } else if (pll_lim_ver
== 0x30) { /* ver 0x30 */
4842 uint8_t *entry
= &bios
->data
[bios
->pll_limit_tbl_ptr
+ headerlen
];
4843 uint8_t *record
= NULL
;
4846 BIOSLOG(bios
, "Loading PLL limits for register 0x%08x\n",
4849 for (i
= 0; i
< entries
; i
++, entry
+= recordlen
) {
4850 if (ROM32(entry
[3]) == pll_lim
->reg
) {
4851 record
= &bios
->data
[ROM16(entry
[1])];
4857 NV_ERROR(dev
, "Register 0x%08x not found in PLL "
4858 "limits table", pll_lim
->reg
);
4862 pll_lim
->vco1
.minfreq
= ROM16(record
[0]) * 1000;
4863 pll_lim
->vco1
.maxfreq
= ROM16(record
[2]) * 1000;
4864 pll_lim
->vco2
.minfreq
= ROM16(record
[4]) * 1000;
4865 pll_lim
->vco2
.maxfreq
= ROM16(record
[6]) * 1000;
4866 pll_lim
->vco1
.min_inputfreq
= ROM16(record
[8]) * 1000;
4867 pll_lim
->vco2
.min_inputfreq
= ROM16(record
[10]) * 1000;
4868 pll_lim
->vco1
.max_inputfreq
= ROM16(record
[12]) * 1000;
4869 pll_lim
->vco2
.max_inputfreq
= ROM16(record
[14]) * 1000;
4870 pll_lim
->vco1
.min_n
= record
[16];
4871 pll_lim
->vco1
.max_n
= record
[17];
4872 pll_lim
->vco1
.min_m
= record
[18];
4873 pll_lim
->vco1
.max_m
= record
[19];
4874 pll_lim
->vco2
.min_n
= record
[20];
4875 pll_lim
->vco2
.max_n
= record
[21];
4876 pll_lim
->vco2
.min_m
= record
[22];
4877 pll_lim
->vco2
.max_m
= record
[23];
4878 pll_lim
->max_usable_log2p
= pll_lim
->max_log2p
= record
[25];
4879 pll_lim
->log2p_bias
= record
[27];
4880 pll_lim
->refclk
= ROM32(record
[28]);
4881 } else if (pll_lim_ver
) { /* ver 0x40 */
4882 uint8_t *entry
= &bios
->data
[bios
->pll_limit_tbl_ptr
+ headerlen
];
4883 uint8_t *record
= NULL
;
4886 BIOSLOG(bios
, "Loading PLL limits for register 0x%08x\n",
4889 for (i
= 0; i
< entries
; i
++, entry
+= recordlen
) {
4890 if (ROM32(entry
[3]) == pll_lim
->reg
) {
4891 record
= &bios
->data
[ROM16(entry
[1])];
4897 NV_ERROR(dev
, "Register 0x%08x not found in PLL "
4898 "limits table", pll_lim
->reg
);
4902 pll_lim
->vco1
.minfreq
= ROM16(record
[0]) * 1000;
4903 pll_lim
->vco1
.maxfreq
= ROM16(record
[2]) * 1000;
4904 pll_lim
->vco1
.min_inputfreq
= ROM16(record
[4]) * 1000;
4905 pll_lim
->vco1
.max_inputfreq
= ROM16(record
[6]) * 1000;
4906 pll_lim
->vco1
.min_m
= record
[8];
4907 pll_lim
->vco1
.max_m
= record
[9];
4908 pll_lim
->vco1
.min_n
= record
[10];
4909 pll_lim
->vco1
.max_n
= record
[11];
4910 pll_lim
->min_p
= record
[12];
4911 pll_lim
->max_p
= record
[13];
4912 pll_lim
->refclk
= ROM16(entry
[9]) * 1000;
4916 * By now any valid limit table ought to have set a max frequency for
4917 * vco1, so if it's zero it's either a pre limit table bios, or one
4918 * with an empty limit table (seen on nv18)
4920 if (!pll_lim
->vco1
.maxfreq
) {
4921 pll_lim
->vco1
.minfreq
= bios
->fminvco
;
4922 pll_lim
->vco1
.maxfreq
= bios
->fmaxvco
;
4923 pll_lim
->vco1
.min_inputfreq
= 0;
4924 pll_lim
->vco1
.max_inputfreq
= INT_MAX
;
4925 pll_lim
->vco1
.min_n
= 0x1;
4926 pll_lim
->vco1
.max_n
= 0xff;
4927 pll_lim
->vco1
.min_m
= 0x1;
4928 if (crystal_straps
== 0) {
4929 /* nv05 does this, nv11 doesn't, nv10 unknown */
4931 pll_lim
->vco1
.min_m
= 0x7;
4932 pll_lim
->vco1
.max_m
= 0xd;
4935 pll_lim
->vco1
.min_m
= 0x8;
4936 pll_lim
->vco1
.max_m
= 0xe;
4938 if (cv
< 0x17 || cv
== 0x1a || cv
== 0x20)
4939 pll_lim
->max_log2p
= 4;
4941 pll_lim
->max_log2p
= 5;
4942 pll_lim
->max_usable_log2p
= pll_lim
->max_log2p
;
4945 if (!pll_lim
->refclk
)
4946 switch (crystal_straps
) {
4948 pll_lim
->refclk
= 13500;
4951 pll_lim
->refclk
= 14318;
4954 pll_lim
->refclk
= 27000;
4956 case (1 << 22 | 1 << 6):
4957 pll_lim
->refclk
= 25000;
4961 NV_DEBUG(dev
, "pll.vco1.minfreq: %d\n", pll_lim
->vco1
.minfreq
);
4962 NV_DEBUG(dev
, "pll.vco1.maxfreq: %d\n", pll_lim
->vco1
.maxfreq
);
4963 NV_DEBUG(dev
, "pll.vco1.min_inputfreq: %d\n", pll_lim
->vco1
.min_inputfreq
);
4964 NV_DEBUG(dev
, "pll.vco1.max_inputfreq: %d\n", pll_lim
->vco1
.max_inputfreq
);
4965 NV_DEBUG(dev
, "pll.vco1.min_n: %d\n", pll_lim
->vco1
.min_n
);
4966 NV_DEBUG(dev
, "pll.vco1.max_n: %d\n", pll_lim
->vco1
.max_n
);
4967 NV_DEBUG(dev
, "pll.vco1.min_m: %d\n", pll_lim
->vco1
.min_m
);
4968 NV_DEBUG(dev
, "pll.vco1.max_m: %d\n", pll_lim
->vco1
.max_m
);
4969 if (pll_lim
->vco2
.maxfreq
) {
4970 NV_DEBUG(dev
, "pll.vco2.minfreq: %d\n", pll_lim
->vco2
.minfreq
);
4971 NV_DEBUG(dev
, "pll.vco2.maxfreq: %d\n", pll_lim
->vco2
.maxfreq
);
4972 NV_DEBUG(dev
, "pll.vco2.min_inputfreq: %d\n", pll_lim
->vco2
.min_inputfreq
);
4973 NV_DEBUG(dev
, "pll.vco2.max_inputfreq: %d\n", pll_lim
->vco2
.max_inputfreq
);
4974 NV_DEBUG(dev
, "pll.vco2.min_n: %d\n", pll_lim
->vco2
.min_n
);
4975 NV_DEBUG(dev
, "pll.vco2.max_n: %d\n", pll_lim
->vco2
.max_n
);
4976 NV_DEBUG(dev
, "pll.vco2.min_m: %d\n", pll_lim
->vco2
.min_m
);
4977 NV_DEBUG(dev
, "pll.vco2.max_m: %d\n", pll_lim
->vco2
.max_m
);
4979 if (!pll_lim
->max_p
) {
4980 NV_DEBUG(dev
, "pll.max_log2p: %d\n", pll_lim
->max_log2p
);
4981 NV_DEBUG(dev
, "pll.log2p_bias: %d\n", pll_lim
->log2p_bias
);
4983 NV_DEBUG(dev
, "pll.min_p: %d\n", pll_lim
->min_p
);
4984 NV_DEBUG(dev
, "pll.max_p: %d\n", pll_lim
->max_p
);
4986 NV_DEBUG(dev
, "pll.refclk: %d\n", pll_lim
->refclk
);
4991 static void parse_bios_version(struct drm_device
*dev
, struct nvbios
*bios
, uint16_t offset
)
4994 * offset + 0 (8 bits): Micro version
4995 * offset + 1 (8 bits): Minor version
4996 * offset + 2 (8 bits): Chip version
4997 * offset + 3 (8 bits): Major version
5000 bios
->major_version
= bios
->data
[offset
+ 3];
5001 bios
->chip_version
= bios
->data
[offset
+ 2];
5002 NV_TRACE(dev
, "Bios version %02x.%02x.%02x.%02x\n",
5003 bios
->data
[offset
+ 3], bios
->data
[offset
+ 2],
5004 bios
->data
[offset
+ 1], bios
->data
[offset
]);
5007 static void parse_script_table_pointers(struct nvbios
*bios
, uint16_t offset
)
5010 * Parses the init table segment for pointers used in script execution.
5012 * offset + 0 (16 bits): init script tables pointer
5013 * offset + 2 (16 bits): macro index table pointer
5014 * offset + 4 (16 bits): macro table pointer
5015 * offset + 6 (16 bits): condition table pointer
5016 * offset + 8 (16 bits): io condition table pointer
5017 * offset + 10 (16 bits): io flag condition table pointer
5018 * offset + 12 (16 bits): init function table pointer
5021 bios
->init_script_tbls_ptr
= ROM16(bios
->data
[offset
]);
5022 bios
->macro_index_tbl_ptr
= ROM16(bios
->data
[offset
+ 2]);
5023 bios
->macro_tbl_ptr
= ROM16(bios
->data
[offset
+ 4]);
5024 bios
->condition_tbl_ptr
= ROM16(bios
->data
[offset
+ 6]);
5025 bios
->io_condition_tbl_ptr
= ROM16(bios
->data
[offset
+ 8]);
5026 bios
->io_flag_condition_tbl_ptr
= ROM16(bios
->data
[offset
+ 10]);
5027 bios
->init_function_tbl_ptr
= ROM16(bios
->data
[offset
+ 12]);
5030 static int parse_bit_A_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5033 * Parses the load detect values for g80 cards.
5035 * offset + 0 (16 bits): loadval table pointer
5038 uint16_t load_table_ptr
;
5039 uint8_t version
, headerlen
, entrylen
, num_entries
;
5041 if (bitentry
->length
!= 3) {
5042 NV_ERROR(dev
, "Do not understand BIT A table\n");
5046 load_table_ptr
= ROM16(bios
->data
[bitentry
->offset
]);
5048 if (load_table_ptr
== 0x0) {
5049 NV_DEBUG(dev
, "Pointer to BIT loadval table invalid\n");
5053 version
= bios
->data
[load_table_ptr
];
5055 if (version
!= 0x10) {
5056 NV_ERROR(dev
, "BIT loadval table version %d.%d not supported\n",
5057 version
>> 4, version
& 0xF);
5061 headerlen
= bios
->data
[load_table_ptr
+ 1];
5062 entrylen
= bios
->data
[load_table_ptr
+ 2];
5063 num_entries
= bios
->data
[load_table_ptr
+ 3];
5065 if (headerlen
!= 4 || entrylen
!= 4 || num_entries
!= 2) {
5066 NV_ERROR(dev
, "Do not understand BIT loadval table\n");
5070 /* First entry is normal dac, 2nd tv-out perhaps? */
5071 bios
->dactestval
= ROM32(bios
->data
[load_table_ptr
+ headerlen
]) & 0x3ff;
5076 static int parse_bit_C_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5079 * offset + 8 (16 bits): PLL limits table pointer
5081 * There's more in here, but that's unknown.
5084 if (bitentry
->length
< 10) {
5085 NV_ERROR(dev
, "Do not understand BIT C table\n");
5089 bios
->pll_limit_tbl_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 8]);
5094 static int parse_bit_display_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5097 * Parses the flat panel table segment that the bit entry points to.
5098 * Starting at bitentry->offset:
5100 * offset + 0 (16 bits): ??? table pointer - seems to have 18 byte
5101 * records beginning with a freq.
5102 * offset + 2 (16 bits): mode table pointer
5105 if (bitentry
->length
!= 4) {
5106 NV_ERROR(dev
, "Do not understand BIT display table\n");
5110 bios
->fp
.fptablepointer
= ROM16(bios
->data
[bitentry
->offset
+ 2]);
5115 static int parse_bit_init_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5118 * Parses the init table segment that the bit entry points to.
5120 * See parse_script_table_pointers for layout
5123 if (bitentry
->length
< 14) {
5124 NV_ERROR(dev
, "Do not understand init table\n");
5128 parse_script_table_pointers(bios
, bitentry
->offset
);
5130 if (bitentry
->length
>= 16)
5131 bios
->some_script_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 14]);
5132 if (bitentry
->length
>= 18)
5133 bios
->init96_tbl_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 16]);
5138 static int parse_bit_i_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5141 * BIT 'i' (info?) table
5143 * offset + 0 (32 bits): BIOS version dword (as in B table)
5144 * offset + 5 (8 bits): BIOS feature byte (same as for BMP?)
5145 * offset + 13 (16 bits): pointer to table containing DAC load
5146 * detection comparison values
5148 * There's other things in the table, purpose unknown
5151 uint16_t daccmpoffset
;
5152 uint8_t dacver
, dacheaderlen
;
5154 if (bitentry
->length
< 6) {
5155 NV_ERROR(dev
, "BIT i table too short for needed information\n");
5159 parse_bios_version(dev
, bios
, bitentry
->offset
);
5162 * bit 4 seems to indicate a mobile bios (doesn't suffer from BMP's
5163 * Quadro identity crisis), other bits possibly as for BMP feature byte
5165 bios
->feature_byte
= bios
->data
[bitentry
->offset
+ 5];
5166 bios
->is_mobile
= bios
->feature_byte
& FEATURE_MOBILE
;
5168 if (bitentry
->length
< 15) {
5169 NV_WARN(dev
, "BIT i table not long enough for DAC load "
5170 "detection comparison table\n");
5174 daccmpoffset
= ROM16(bios
->data
[bitentry
->offset
+ 13]);
5176 /* doesn't exist on g80 */
5181 * The first value in the table, following the header, is the
5182 * comparison value, the second entry is a comparison value for
5183 * TV load detection.
5186 dacver
= bios
->data
[daccmpoffset
];
5187 dacheaderlen
= bios
->data
[daccmpoffset
+ 1];
5189 if (dacver
!= 0x00 && dacver
!= 0x10) {
5190 NV_WARN(dev
, "DAC load detection comparison table version "
5191 "%d.%d not known\n", dacver
>> 4, dacver
& 0xf);
5195 bios
->dactestval
= ROM32(bios
->data
[daccmpoffset
+ dacheaderlen
]);
5196 bios
->tvdactestval
= ROM32(bios
->data
[daccmpoffset
+ dacheaderlen
+ 4]);
5201 static int parse_bit_lvds_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5204 * Parses the LVDS table segment that the bit entry points to.
5205 * Starting at bitentry->offset:
5207 * offset + 0 (16 bits): LVDS strap xlate table pointer
5210 if (bitentry
->length
!= 2) {
5211 NV_ERROR(dev
, "Do not understand BIT LVDS table\n");
5216 * No idea if it's still called the LVDS manufacturer table, but
5217 * the concept's close enough.
5219 bios
->fp
.lvdsmanufacturerpointer
= ROM16(bios
->data
[bitentry
->offset
]);
5225 parse_bit_M_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
,
5226 struct bit_entry
*bitentry
)
5229 * offset + 2 (8 bits): number of options in an
5230 * INIT_RAM_RESTRICT_ZM_REG_GROUP opcode option set
5231 * offset + 3 (16 bits): pointer to strap xlate table for RAM
5232 * restrict option selection
5234 * There's a bunch of bits in this table other than the RAM restrict
5235 * stuff that we don't use - their use currently unknown
5239 * Older bios versions don't have a sufficiently long table for
5242 if (bitentry
->length
< 0x5)
5245 if (bitentry
->version
< 2) {
5246 bios
->ram_restrict_group_count
= bios
->data
[bitentry
->offset
+ 2];
5247 bios
->ram_restrict_tbl_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 3]);
5249 bios
->ram_restrict_group_count
= bios
->data
[bitentry
->offset
+ 0];
5250 bios
->ram_restrict_tbl_ptr
= ROM16(bios
->data
[bitentry
->offset
+ 1]);
5256 static int parse_bit_tmds_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
, struct bit_entry
*bitentry
)
5259 * Parses the pointer to the TMDS table
5261 * Starting at bitentry->offset:
5263 * offset + 0 (16 bits): TMDS table pointer
5265 * The TMDS table is typically found just before the DCB table, with a
5266 * characteristic signature of 0x11,0x13 (1.1 being version, 0x13 being
5269 * At offset +7 is a pointer to a script, which I don't know how to
5271 * At offset +9 is a pointer to another script, likewise
5272 * Offset +11 has a pointer to a table where the first word is a pxclk
5273 * frequency and the second word a pointer to a script, which should be
5274 * run if the comparison pxclk frequency is less than the pxclk desired.
5275 * This repeats for decreasing comparison frequencies
5276 * Offset +13 has a pointer to a similar table
5277 * The selection of table (and possibly +7/+9 script) is dictated by
5278 * "or" from the DCB.
5281 uint16_t tmdstableptr
, script1
, script2
;
5283 if (bitentry
->length
!= 2) {
5284 NV_ERROR(dev
, "Do not understand BIT TMDS table\n");
5288 tmdstableptr
= ROM16(bios
->data
[bitentry
->offset
]);
5289 if (!tmdstableptr
) {
5290 NV_ERROR(dev
, "Pointer to TMDS table invalid\n");
5294 NV_INFO(dev
, "TMDS table version %d.%d\n",
5295 bios
->data
[tmdstableptr
] >> 4, bios
->data
[tmdstableptr
] & 0xf);
5297 /* nv50+ has v2.0, but we don't parse it atm */
5298 if (bios
->data
[tmdstableptr
] != 0x11)
5302 * These two scripts are odd: they don't seem to get run even when
5303 * they are not stubbed.
5305 script1
= ROM16(bios
->data
[tmdstableptr
+ 7]);
5306 script2
= ROM16(bios
->data
[tmdstableptr
+ 9]);
5307 if (bios
->data
[script1
] != 'q' || bios
->data
[script2
] != 'q')
5308 NV_WARN(dev
, "TMDS table script pointers not stubbed\n");
5310 bios
->tmds
.output0_script_ptr
= ROM16(bios
->data
[tmdstableptr
+ 11]);
5311 bios
->tmds
.output1_script_ptr
= ROM16(bios
->data
[tmdstableptr
+ 13]);
5317 parse_bit_U_tbl_entry(struct drm_device
*dev
, struct nvbios
*bios
,
5318 struct bit_entry
*bitentry
)
5321 * Parses the pointer to the G80 output script tables
5323 * Starting at bitentry->offset:
5325 * offset + 0 (16 bits): output script table pointer
5328 uint16_t outputscripttableptr
;
5330 if (bitentry
->length
!= 3) {
5331 NV_ERROR(dev
, "Do not understand BIT U table\n");
5335 outputscripttableptr
= ROM16(bios
->data
[bitentry
->offset
]);
5336 bios
->display
.script_table_ptr
= outputscripttableptr
;
5342 int (* const parse_fn
)(struct drm_device
*, struct nvbios
*, struct bit_entry
*);
5345 #define BIT_TABLE(id, funcid) ((struct bit_table){ id, parse_bit_##funcid##_tbl_entry })
5348 bit_table(struct drm_device
*dev
, u8 id
, struct bit_entry
*bit
)
5350 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
5351 struct nvbios
*bios
= &dev_priv
->vbios
;
5354 if (bios
->type
!= NVBIOS_BIT
)
5357 entries
= bios
->data
[bios
->offset
+ 10];
5358 entry
= &bios
->data
[bios
->offset
+ 12];
5360 if (entry
[0] == id
) {
5362 bit
->version
= entry
[1];
5363 bit
->length
= ROM16(entry
[2]);
5364 bit
->offset
= ROM16(entry
[4]);
5365 bit
->data
= ROMPTR(dev
, entry
[4]);
5369 entry
+= bios
->data
[bios
->offset
+ 9];
5376 parse_bit_table(struct nvbios
*bios
, const uint16_t bitoffset
,
5377 struct bit_table
*table
)
5379 struct drm_device
*dev
= bios
->dev
;
5380 struct bit_entry bitentry
;
5382 if (bit_table(dev
, table
->id
, &bitentry
) == 0)
5383 return table
->parse_fn(dev
, bios
, &bitentry
);
5385 NV_INFO(dev
, "BIT table '%c' not found\n", table
->id
);
5390 parse_bit_structure(struct nvbios
*bios
, const uint16_t bitoffset
)
5395 * The only restriction on parsing order currently is having 'i' first
5396 * for use of bios->*_version or bios->feature_byte while parsing;
5397 * functions shouldn't be actually *doing* anything apart from pulling
5398 * data from the image into the bios struct, thus no interdependencies
5400 ret
= parse_bit_table(bios
, bitoffset
, &BIT_TABLE('i', i
));
5401 if (ret
) /* info? */
5403 if (bios
->major_version
>= 0x60) /* g80+ */
5404 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('A', A
));
5405 ret
= parse_bit_table(bios
, bitoffset
, &BIT_TABLE('C', C
));
5408 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('D', display
));
5409 ret
= parse_bit_table(bios
, bitoffset
, &BIT_TABLE('I', init
));
5412 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('M', M
)); /* memory? */
5413 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('L', lvds
));
5414 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('T', tmds
));
5415 parse_bit_table(bios
, bitoffset
, &BIT_TABLE('U', U
));
5420 static int parse_bmp_structure(struct drm_device
*dev
, struct nvbios
*bios
, unsigned int offset
)
5423 * Parses the BMP structure for useful things, but does not act on them
5425 * offset + 5: BMP major version
5426 * offset + 6: BMP minor version
5427 * offset + 9: BMP feature byte
5428 * offset + 10: BCD encoded BIOS version
5430 * offset + 18: init script table pointer (for bios versions < 5.10h)
5431 * offset + 20: extra init script table pointer (for bios
5434 * offset + 24: memory init table pointer (used on early bios versions)
5435 * offset + 26: SDR memory sequencing setup data table
5436 * offset + 28: DDR memory sequencing setup data table
5438 * offset + 54: index of I2C CRTC pair to use for CRT output
5439 * offset + 55: index of I2C CRTC pair to use for TV output
5440 * offset + 56: index of I2C CRTC pair to use for flat panel output
5441 * offset + 58: write CRTC index for I2C pair 0
5442 * offset + 59: read CRTC index for I2C pair 0
5443 * offset + 60: write CRTC index for I2C pair 1
5444 * offset + 61: read CRTC index for I2C pair 1
5446 * offset + 67: maximum internal PLL frequency (single stage PLL)
5447 * offset + 71: minimum internal PLL frequency (single stage PLL)
5449 * offset + 75: script table pointers, as described in
5450 * parse_script_table_pointers
5452 * offset + 89: TMDS single link output A table pointer
5453 * offset + 91: TMDS single link output B table pointer
5454 * offset + 95: LVDS single link output A table pointer
5455 * offset + 105: flat panel timings table pointer
5456 * offset + 107: flat panel strapping translation table pointer
5457 * offset + 117: LVDS manufacturer panel config table pointer
5458 * offset + 119: LVDS manufacturer strapping translation table pointer
5460 * offset + 142: PLL limits table pointer
5462 * offset + 156: minimum pixel clock for LVDS dual link
5465 uint8_t *bmp
= &bios
->data
[offset
], bmp_version_major
, bmp_version_minor
;
5467 uint16_t legacy_scripts_offset
, legacy_i2c_offset
;
5469 /* load needed defaults in case we can't parse this info */
5470 bios
->digital_min_front_porch
= 0x4b;
5471 bios
->fmaxvco
= 256000;
5472 bios
->fminvco
= 128000;
5473 bios
->fp
.duallink_transition_clk
= 90000;
5475 bmp_version_major
= bmp
[5];
5476 bmp_version_minor
= bmp
[6];
5478 NV_TRACE(dev
, "BMP version %d.%d\n",
5479 bmp_version_major
, bmp_version_minor
);
5482 * Make sure that 0x36 is blank and can't be mistaken for a DCB
5483 * pointer on early versions
5485 if (bmp_version_major
< 5)
5486 *(uint16_t *)&bios
->data
[0x36] = 0;
5489 * Seems that the minor version was 1 for all major versions prior
5490 * to 5. Version 6 could theoretically exist, but I suspect BIT
5493 if ((bmp_version_major
< 5 && bmp_version_minor
!= 1) || bmp_version_major
> 5) {
5494 NV_ERROR(dev
, "You have an unsupported BMP version. "
5495 "Please send in your bios\n");
5499 if (bmp_version_major
== 0)
5500 /* nothing that's currently useful in this version */
5502 else if (bmp_version_major
== 1)
5503 bmplength
= 44; /* exact for 1.01 */
5504 else if (bmp_version_major
== 2)
5505 bmplength
= 48; /* exact for 2.01 */
5506 else if (bmp_version_major
== 3)
5508 /* guessed - mem init tables added in this version */
5509 else if (bmp_version_major
== 4 || bmp_version_minor
< 0x1)
5510 /* don't know if 5.0 exists... */
5512 /* guessed - BMP I2C indices added in version 4*/
5513 else if (bmp_version_minor
< 0x6)
5514 bmplength
= 67; /* exact for 5.01 */
5515 else if (bmp_version_minor
< 0x10)
5516 bmplength
= 75; /* exact for 5.06 */
5517 else if (bmp_version_minor
== 0x10)
5518 bmplength
= 89; /* exact for 5.10h */
5519 else if (bmp_version_minor
< 0x14)
5520 bmplength
= 118; /* exact for 5.11h */
5521 else if (bmp_version_minor
< 0x24)
5523 * Not sure of version where pll limits came in;
5524 * certainly exist by 0x24 though.
5526 /* length not exact: this is long enough to get lvds members */
5528 else if (bmp_version_minor
< 0x27)
5530 * Length not exact: this is long enough to get pll limit
5536 * Length not exact: this is long enough to get dual link
5542 if (nv_cksum(bmp
, 8)) {
5543 NV_ERROR(dev
, "Bad BMP checksum\n");
5548 * Bit 4 seems to indicate either a mobile bios or a quadro card --
5549 * mobile behaviour consistent (nv11+), quadro only seen nv18gl-nv36gl
5550 * (not nv10gl), bit 5 that the flat panel tables are present, and
5553 bios
->feature_byte
= bmp
[9];
5555 parse_bios_version(dev
, bios
, offset
+ 10);
5557 if (bmp_version_major
< 5 || bmp_version_minor
< 0x10)
5558 bios
->old_style_init
= true;
5559 legacy_scripts_offset
= 18;
5560 if (bmp_version_major
< 2)
5561 legacy_scripts_offset
-= 4;
5562 bios
->init_script_tbls_ptr
= ROM16(bmp
[legacy_scripts_offset
]);
5563 bios
->extra_init_script_tbl_ptr
= ROM16(bmp
[legacy_scripts_offset
+ 2]);
5565 if (bmp_version_major
> 2) { /* appears in BMP 3 */
5566 bios
->legacy
.mem_init_tbl_ptr
= ROM16(bmp
[24]);
5567 bios
->legacy
.sdr_seq_tbl_ptr
= ROM16(bmp
[26]);
5568 bios
->legacy
.ddr_seq_tbl_ptr
= ROM16(bmp
[28]);
5571 legacy_i2c_offset
= 0x48; /* BMP version 2 & 3 */
5573 legacy_i2c_offset
= offset
+ 54;
5574 bios
->legacy
.i2c_indices
.crt
= bios
->data
[legacy_i2c_offset
];
5575 bios
->legacy
.i2c_indices
.tv
= bios
->data
[legacy_i2c_offset
+ 1];
5576 bios
->legacy
.i2c_indices
.panel
= bios
->data
[legacy_i2c_offset
+ 2];
5578 if (bmplength
> 74) {
5579 bios
->fmaxvco
= ROM32(bmp
[67]);
5580 bios
->fminvco
= ROM32(bmp
[71]);
5583 parse_script_table_pointers(bios
, offset
+ 75);
5584 if (bmplength
> 94) {
5585 bios
->tmds
.output0_script_ptr
= ROM16(bmp
[89]);
5586 bios
->tmds
.output1_script_ptr
= ROM16(bmp
[91]);
5588 * Never observed in use with lvds scripts, but is reused for
5589 * 18/24 bit panel interface default for EDID equipped panels
5590 * (if_is_24bit not set directly to avoid any oscillation).
5592 bios
->legacy
.lvds_single_a_script_ptr
= ROM16(bmp
[95]);
5594 if (bmplength
> 108) {
5595 bios
->fp
.fptablepointer
= ROM16(bmp
[105]);
5596 bios
->fp
.fpxlatetableptr
= ROM16(bmp
[107]);
5597 bios
->fp
.xlatwidth
= 1;
5599 if (bmplength
> 120) {
5600 bios
->fp
.lvdsmanufacturerpointer
= ROM16(bmp
[117]);
5601 bios
->fp
.fpxlatemanufacturertableptr
= ROM16(bmp
[119]);
5603 if (bmplength
> 143)
5604 bios
->pll_limit_tbl_ptr
= ROM16(bmp
[142]);
5606 if (bmplength
> 157)
5607 bios
->fp
.duallink_transition_clk
= ROM16(bmp
[156]) * 10;
5612 static uint16_t findstr(uint8_t *data
, int n
, const uint8_t *str
, int len
)
5616 for (i
= 0; i
<= (n
- len
); i
++) {
5617 for (j
= 0; j
< len
; j
++)
5618 if (data
[i
+ j
] != str
[j
])
5628 dcb_table(struct drm_device
*dev
)
5630 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
5633 if (dev_priv
->card_type
> NV_04
)
5634 dcb
= ROMPTR(dev
, dev_priv
->vbios
.data
[0x36]);
5636 NV_WARNONCE(dev
, "No DCB data found in VBIOS\n");
5640 if (dcb
[0] >= 0x41) {
5641 NV_WARNONCE(dev
, "DCB version 0x%02x unknown\n", dcb
[0]);
5644 if (dcb
[0] >= 0x30) {
5645 if (ROM32(dcb
[6]) == 0x4edcbdcb)
5648 if (dcb
[0] >= 0x20) {
5649 if (ROM32(dcb
[4]) == 0x4edcbdcb)
5652 if (dcb
[0] >= 0x15) {
5653 if (!memcmp(&dcb
[-7], "DEV_REC", 7))
5657 * v1.4 (some NV15/16, NV11+) seems the same as v1.5, but
5658 * always has the same single (crt) entry, even when tv-out
5659 * present, so the conclusion is this version cannot really
5662 * v1.2 tables (some NV6/10, and NV15+) normally have the
5663 * same 5 entries, which are not specific to the card and so
5666 * v1.2 does have an I2C table that read_dcb_i2c_table can
5667 * handle, but cards exist (nv11 in #14821) with a bad i2c
5668 * table pointer, so use the indices parsed in
5669 * parse_bmp_structure.
5671 * v1.1 (NV5+, maybe some NV4) is entirely unhelpful
5673 NV_WARNONCE(dev
, "No useful DCB data in VBIOS\n");
5677 NV_WARNONCE(dev
, "DCB header validation failed\n");
5682 dcb_outp(struct drm_device
*dev
, u8 idx
)
5684 u8
*dcb
= dcb_table(dev
);
5685 if (dcb
&& dcb
[0] >= 0x30) {
5687 return dcb
+ dcb
[1] + (idx
* dcb
[3]);
5689 if (dcb
&& dcb
[0] >= 0x20) {
5690 u8
*i2c
= ROMPTR(dev
, dcb
[2]);
5691 u8
*ent
= dcb
+ 8 + (idx
* 8);
5692 if (i2c
&& ent
< i2c
)
5695 if (dcb
&& dcb
[0] >= 0x15) {
5696 u8
*i2c
= ROMPTR(dev
, dcb
[2]);
5697 u8
*ent
= dcb
+ 4 + (idx
* 10);
5698 if (i2c
&& ent
< i2c
)
5706 dcb_outp_foreach(struct drm_device
*dev
, void *data
,
5707 int (*exec
)(struct drm_device
*, void *, int idx
, u8
*outp
))
5711 while ((outp
= dcb_outp(dev
, ++idx
))) {
5712 if (ROM32(outp
[0]) == 0x00000000)
5713 break; /* seen on an NV11 with DCB v1.5 */
5714 if (ROM32(outp
[0]) == 0xffffffff)
5715 break; /* seen on an NV17 with DCB v2.0 */
5717 if ((outp
[0] & 0x0f) == OUTPUT_UNUSED
)
5719 if ((outp
[0] & 0x0f) == OUTPUT_EOL
)
5722 ret
= exec(dev
, data
, idx
, outp
);
5731 dcb_conntab(struct drm_device
*dev
)
5733 u8
*dcb
= dcb_table(dev
);
5734 if (dcb
&& dcb
[0] >= 0x30 && dcb
[1] >= 0x16) {
5735 u8
*conntab
= ROMPTR(dev
, dcb
[0x14]);
5736 if (conntab
&& conntab
[0] >= 0x30 && conntab
[0] <= 0x40)
5743 dcb_conn(struct drm_device
*dev
, u8 idx
)
5745 u8
*conntab
= dcb_conntab(dev
);
5746 if (conntab
&& idx
< conntab
[2])
5747 return conntab
+ conntab
[1] + (idx
* conntab
[3]);
5751 static struct dcb_entry
*new_dcb_entry(struct dcb_table
*dcb
)
5753 struct dcb_entry
*entry
= &dcb
->entry
[dcb
->entries
];
5755 memset(entry
, 0, sizeof(struct dcb_entry
));
5756 entry
->index
= dcb
->entries
++;
5761 static void fabricate_dcb_output(struct dcb_table
*dcb
, int type
, int i2c
,
5764 struct dcb_entry
*entry
= new_dcb_entry(dcb
);
5767 entry
->i2c_index
= i2c
;
5768 entry
->heads
= heads
;
5769 if (type
!= OUTPUT_ANALOG
)
5770 entry
->location
= !DCB_LOC_ON_CHIP
; /* ie OFF CHIP */
5775 parse_dcb20_entry(struct drm_device
*dev
, struct dcb_table
*dcb
,
5776 uint32_t conn
, uint32_t conf
, struct dcb_entry
*entry
)
5778 entry
->type
= conn
& 0xf;
5779 entry
->i2c_index
= (conn
>> 4) & 0xf;
5780 entry
->heads
= (conn
>> 8) & 0xf;
5781 entry
->connector
= (conn
>> 12) & 0xf;
5782 entry
->bus
= (conn
>> 16) & 0xf;
5783 entry
->location
= (conn
>> 20) & 0x3;
5784 entry
->or = (conn
>> 24) & 0xf;
5786 switch (entry
->type
) {
5789 * Although the rest of a CRT conf dword is usually
5790 * zeros, mac biosen have stuff there so we must mask
5792 entry
->crtconf
.maxfreq
= (dcb
->version
< 0x30) ?
5793 (conf
& 0xffff) * 10 :
5794 (conf
& 0xff) * 10000;
5800 entry
->lvdsconf
.use_straps_for_mode
= true;
5801 if (dcb
->version
< 0x22) {
5804 * The laptop in bug 14567 lies and claims to not use
5805 * straps when it does, so assume all DCB 2.0 laptops
5806 * use straps, until a broken EDID using one is produced
5808 entry
->lvdsconf
.use_straps_for_mode
= true;
5810 * Both 0x4 and 0x8 show up in v2.0 tables; assume they
5811 * mean the same thing (probably wrong, but might work)
5813 if (conf
& 0x4 || conf
& 0x8)
5814 entry
->lvdsconf
.use_power_scripts
= true;
5818 entry
->lvdsconf
.use_acpi_for_edid
= true;
5820 entry
->lvdsconf
.use_power_scripts
= true;
5821 entry
->lvdsconf
.sor
.link
= (conf
& 0x00000030) >> 4;
5825 * Until we even try to use these on G8x, it's
5826 * useless reporting unknown bits. They all are.
5828 if (dcb
->version
>= 0x40)
5831 NV_ERROR(dev
, "Unknown LVDS configuration bits, "
5838 if (dcb
->version
>= 0x30)
5839 entry
->tvconf
.has_component_output
= conf
& (0x8 << 4);
5841 entry
->tvconf
.has_component_output
= false;
5846 entry
->dpconf
.sor
.link
= (conf
& 0x00000030) >> 4;
5847 switch ((conf
& 0x00e00000) >> 21) {
5849 entry
->dpconf
.link_bw
= 162000;
5852 entry
->dpconf
.link_bw
= 270000;
5855 switch ((conf
& 0x0f000000) >> 24) {
5857 entry
->dpconf
.link_nr
= 4;
5860 entry
->dpconf
.link_nr
= 2;
5863 entry
->dpconf
.link_nr
= 1;
5868 if (dcb
->version
>= 0x40)
5869 entry
->tmdsconf
.sor
.link
= (conf
& 0x00000030) >> 4;
5870 else if (dcb
->version
>= 0x30)
5871 entry
->tmdsconf
.slave_addr
= (conf
& 0x00000700) >> 8;
5872 else if (dcb
->version
>= 0x22)
5873 entry
->tmdsconf
.slave_addr
= (conf
& 0x00000070) >> 4;
5877 /* weird g80 mobile type that "nv" treats as a terminator */
5884 if (dcb
->version
< 0x40) {
5885 /* Normal entries consist of a single bit, but dual link has
5886 * the next most significant bit set too
5888 entry
->duallink_possible
=
5889 ((1 << (ffs(entry
->or) - 1)) * 3 == entry
->or);
5891 entry
->duallink_possible
= (entry
->sorconf
.link
== 3);
5894 /* unsure what DCB version introduces this, 3.0? */
5895 if (conf
& 0x100000)
5896 entry
->i2c_upper_default
= true;
5902 parse_dcb15_entry(struct drm_device
*dev
, struct dcb_table
*dcb
,
5903 uint32_t conn
, uint32_t conf
, struct dcb_entry
*entry
)
5905 switch (conn
& 0x0000000f) {
5907 entry
->type
= OUTPUT_ANALOG
;
5910 entry
->type
= OUTPUT_TV
;
5915 entry
->type
= OUTPUT_LVDS
;
5917 entry
->type
= OUTPUT_TMDS
;
5920 entry
->type
= OUTPUT_LVDS
;
5923 NV_ERROR(dev
, "Unknown DCB type %d\n", conn
& 0x0000000f);
5927 entry
->i2c_index
= (conn
& 0x0003c000) >> 14;
5928 entry
->heads
= ((conn
& 0x001c0000) >> 18) + 1;
5929 entry
->or = entry
->heads
; /* same as heads, hopefully safe enough */
5930 entry
->location
= (conn
& 0x01e00000) >> 21;
5931 entry
->bus
= (conn
& 0x0e000000) >> 25;
5932 entry
->duallink_possible
= false;
5934 switch (entry
->type
) {
5936 entry
->crtconf
.maxfreq
= (conf
& 0xffff) * 10;
5939 entry
->tvconf
.has_component_output
= false;
5942 if ((conn
& 0x00003f00) >> 8 != 0x10)
5943 entry
->lvdsconf
.use_straps_for_mode
= true;
5944 entry
->lvdsconf
.use_power_scripts
= true;
5954 void merge_like_dcb_entries(struct drm_device
*dev
, struct dcb_table
*dcb
)
5957 * DCB v2.0 lists each output combination separately.
5958 * Here we merge compatible entries to have fewer outputs, with
5962 int i
, newentries
= 0;
5964 for (i
= 0; i
< dcb
->entries
; i
++) {
5965 struct dcb_entry
*ient
= &dcb
->entry
[i
];
5968 for (j
= i
+ 1; j
< dcb
->entries
; j
++) {
5969 struct dcb_entry
*jent
= &dcb
->entry
[j
];
5971 if (jent
->type
== 100) /* already merged entry */
5974 /* merge heads field when all other fields the same */
5975 if (jent
->i2c_index
== ient
->i2c_index
&&
5976 jent
->type
== ient
->type
&&
5977 jent
->location
== ient
->location
&&
5978 jent
->or == ient
->or) {
5979 NV_TRACE(dev
, "Merging DCB entries %d and %d\n",
5981 ient
->heads
|= jent
->heads
;
5982 jent
->type
= 100; /* dummy value */
5987 /* Compact entries merged into others out of dcb */
5988 for (i
= 0; i
< dcb
->entries
; i
++) {
5989 if (dcb
->entry
[i
].type
== 100)
5992 if (newentries
!= i
) {
5993 dcb
->entry
[newentries
] = dcb
->entry
[i
];
5994 dcb
->entry
[newentries
].index
= newentries
;
5999 dcb
->entries
= newentries
;
6003 apply_dcb_encoder_quirks(struct drm_device
*dev
, int idx
, u32
*conn
, u32
*conf
)
6005 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6006 struct dcb_table
*dcb
= &dev_priv
->vbios
.dcb
;
6008 /* Dell Precision M6300
6009 * DCB entry 2: 02025312 00000010
6010 * DCB entry 3: 02026312 00000020
6012 * Identical, except apparently a different connector on a
6013 * different SOR link. Not a clue how we're supposed to know
6014 * which one is in use if it even shares an i2c line...
6016 * Ignore the connector on the second SOR link to prevent
6017 * nasty problems until this is sorted (assuming it's not a
6020 if (nv_match_device(dev
, 0x040d, 0x1028, 0x019b)) {
6021 if (*conn
== 0x02026312 && *conf
== 0x00000020)
6027 * DCB reports an LVDS output that should be TMDS:
6028 * DCB entry 1: f2005014 ffffffff
6030 if (nv_match_device(dev
, 0x0201, 0x1462, 0x8851)) {
6031 if (*conn
== 0xf2005014 && *conf
== 0xffffffff) {
6032 fabricate_dcb_output(dcb
, OUTPUT_TMDS
, 1, 1, 1);
6039 * So many things wrong here, replace the entire encoder table..
6041 if (nv_match_device(dev
, 0x0ca3, 0x1682, 0x3003)) {
6043 *conn
= 0x02001300; /* VGA, connector 1 */
6047 *conn
= 0x01010312; /* DVI, connector 0 */
6051 *conn
= 0x01010310; /* VGA, connector 0 */
6055 *conn
= 0x02022362; /* HDMI, connector 2 */
6058 *conn
= 0x0000000e; /* EOL */
6063 /* Some other twisted XFX board (rhbz#694914)
6065 * The DVI/VGA encoder combo that's supposed to represent the
6066 * DVI-I connector actually point at two different ones, and
6067 * the HDMI connector ends up paired with the VGA instead.
6069 * Connector table is missing anything for VGA at all, pointing it
6070 * an invalid conntab entry 2 so we figure it out ourself.
6072 if (nv_match_device(dev
, 0x0615, 0x1682, 0x2605)) {
6074 *conn
= 0x02002300; /* VGA, connector 2 */
6078 *conn
= 0x01010312; /* DVI, connector 0 */
6082 *conn
= 0x04020310; /* VGA, connector 0 */
6086 *conn
= 0x02021322; /* HDMI, connector 1 */
6089 *conn
= 0x0000000e; /* EOL */
6094 /* fdo#50830: connector indices for VGA and DVI-I are backwards */
6095 if (nv_match_device(dev
, 0x0421, 0x3842, 0xc793)) {
6096 if (idx
== 0 && *conn
== 0x02000300)
6099 if (idx
== 1 && *conn
== 0x04011310)
6102 if (idx
== 2 && *conn
== 0x02011312)
6110 fabricate_dcb_encoder_table(struct drm_device
*dev
, struct nvbios
*bios
)
6112 struct dcb_table
*dcb
= &bios
->dcb
;
6113 int all_heads
= (nv_two_heads(dev
) ? 3 : 1);
6116 /* Apple iMac G4 NV17 */
6117 if (of_machine_is_compatible("PowerMac4,5")) {
6118 fabricate_dcb_output(dcb
, OUTPUT_TMDS
, 0, all_heads
, 1);
6119 fabricate_dcb_output(dcb
, OUTPUT_ANALOG
, 1, all_heads
, 2);
6124 /* Make up some sane defaults */
6125 fabricate_dcb_output(dcb
, OUTPUT_ANALOG
,
6126 bios
->legacy
.i2c_indices
.crt
, 1, 1);
6128 if (nv04_tv_identify(dev
, bios
->legacy
.i2c_indices
.tv
) >= 0)
6129 fabricate_dcb_output(dcb
, OUTPUT_TV
,
6130 bios
->legacy
.i2c_indices
.tv
,
6133 else if (bios
->tmds
.output0_script_ptr
||
6134 bios
->tmds
.output1_script_ptr
)
6135 fabricate_dcb_output(dcb
, OUTPUT_TMDS
,
6136 bios
->legacy
.i2c_indices
.panel
,
6141 parse_dcb_entry(struct drm_device
*dev
, void *data
, int idx
, u8
*outp
)
6143 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6144 struct dcb_table
*dcb
= &dev_priv
->vbios
.dcb
;
6145 u32 conf
= (dcb
->version
>= 0x20) ? ROM32(outp
[4]) : ROM32(outp
[6]);
6146 u32 conn
= ROM32(outp
[0]);
6149 if (apply_dcb_encoder_quirks(dev
, idx
, &conn
, &conf
)) {
6150 struct dcb_entry
*entry
= new_dcb_entry(dcb
);
6152 NV_TRACEWARN(dev
, "DCB outp %02d: %08x %08x\n", idx
, conn
, conf
);
6154 if (dcb
->version
>= 0x20)
6155 ret
= parse_dcb20_entry(dev
, dcb
, conn
, conf
, entry
);
6157 ret
= parse_dcb15_entry(dev
, dcb
, conn
, conf
, entry
);
6159 return 1; /* stop parsing */
6161 /* Ignore the I2C index for on-chip TV-out, as there
6162 * are cards with bogus values (nv31m in bug 23212),
6163 * and it's otherwise useless.
6165 if (entry
->type
== OUTPUT_TV
&&
6166 entry
->location
== DCB_LOC_ON_CHIP
)
6167 entry
->i2c_index
= 0x0f;
6174 dcb_fake_connectors(struct nvbios
*bios
)
6176 struct dcb_table
*dcbt
= &bios
->dcb
;
6180 /* heuristic: if we ever get a non-zero connector field, assume
6181 * that all the indices are valid and we don't need fake them.
6183 * and, as usual, a blacklist of boards with bad bios data..
6185 if (!nv_match_device(bios
->dev
, 0x0392, 0x107d, 0x20a2)) {
6186 for (i
= 0; i
< dcbt
->entries
; i
++) {
6187 if (dcbt
->entry
[i
].connector
)
6192 /* no useful connector info available, we need to make it up
6193 * ourselves. the rule here is: anything on the same i2c bus
6194 * is considered to be on the same connector. any output
6195 * without an associated i2c bus is assigned its own unique
6198 for (i
= 0; i
< dcbt
->entries
; i
++) {
6199 u8 i2c
= dcbt
->entry
[i
].i2c_index
;
6201 dcbt
->entry
[i
].connector
= idx
++;
6205 dcbt
->entry
[i
].connector
= map
[i2c
] - 1;
6209 /* if we created more than one connector, destroy the connector
6210 * table - just in case it has random, rather than stub, entries.
6213 u8
*conntab
= dcb_conntab(bios
->dev
);
6220 parse_dcb_table(struct drm_device
*dev
, struct nvbios
*bios
)
6222 struct dcb_table
*dcb
= &bios
->dcb
;
6226 dcbt
= dcb_table(dev
);
6228 /* handle pre-DCB boards */
6229 if (bios
->type
== NVBIOS_BMP
) {
6230 fabricate_dcb_encoder_table(dev
, bios
);
6237 NV_TRACE(dev
, "DCB version %d.%d\n", dcbt
[0] >> 4, dcbt
[0] & 0xf);
6239 dcb
->version
= dcbt
[0];
6240 dcb_outp_foreach(dev
, NULL
, parse_dcb_entry
);
6243 * apart for v2.1+ not being known for requiring merging, this
6244 * guarantees dcbent->index is the index of the entry in the rom image
6246 if (dcb
->version
< 0x21)
6247 merge_like_dcb_entries(dev
, dcb
);
6252 /* dump connector table entries to log, if any exist */
6254 while ((conn
= dcb_conn(dev
, ++idx
))) {
6255 if (conn
[0] != 0xff) {
6256 NV_TRACE(dev
, "DCB conn %02d: ", idx
);
6257 if (dcb_conntab(dev
)[3] < 4)
6258 printk("%04x\n", ROM16(conn
[0]));
6260 printk("%08x\n", ROM32(conn
[0]));
6263 dcb_fake_connectors(bios
);
6267 static int load_nv17_hwsq_ucode_entry(struct drm_device
*dev
, struct nvbios
*bios
, uint16_t hwsq_offset
, int entry
)
6270 * The header following the "HWSQ" signature has the number of entries,
6271 * and the entry size
6273 * An entry consists of a dword to write to the sequencer control reg
6274 * (0x00001304), followed by the ucode bytes, written sequentially,
6275 * starting at reg 0x00001400
6278 uint8_t bytes_to_write
;
6279 uint16_t hwsq_entry_offset
;
6282 if (bios
->data
[hwsq_offset
] <= entry
) {
6283 NV_ERROR(dev
, "Too few entries in HW sequencer table for "
6284 "requested entry\n");
6288 bytes_to_write
= bios
->data
[hwsq_offset
+ 1];
6290 if (bytes_to_write
!= 36) {
6291 NV_ERROR(dev
, "Unknown HW sequencer entry size\n");
6295 NV_TRACE(dev
, "Loading NV17 power sequencing microcode\n");
6297 hwsq_entry_offset
= hwsq_offset
+ 2 + entry
* bytes_to_write
;
6299 /* set sequencer control */
6300 bios_wr32(bios
, 0x00001304, ROM32(bios
->data
[hwsq_entry_offset
]));
6301 bytes_to_write
-= 4;
6304 for (i
= 0; i
< bytes_to_write
; i
+= 4)
6305 bios_wr32(bios
, 0x00001400 + i
, ROM32(bios
->data
[hwsq_entry_offset
+ i
+ 4]));
6307 /* twiddle NV_PBUS_DEBUG_4 */
6308 bios_wr32(bios
, NV_PBUS_DEBUG_4
, bios_rd32(bios
, NV_PBUS_DEBUG_4
) | 0x18);
6313 static int load_nv17_hw_sequencer_ucode(struct drm_device
*dev
,
6314 struct nvbios
*bios
)
6317 * BMP based cards, from NV17, need a microcode loading to correctly
6318 * control the GPIO etc for LVDS panels
6320 * BIT based cards seem to do this directly in the init scripts
6322 * The microcode entries are found by the "HWSQ" signature.
6325 const uint8_t hwsq_signature
[] = { 'H', 'W', 'S', 'Q' };
6326 const int sz
= sizeof(hwsq_signature
);
6329 hwsq_offset
= findstr(bios
->data
, bios
->length
, hwsq_signature
, sz
);
6333 /* always use entry 0? */
6334 return load_nv17_hwsq_ucode_entry(dev
, bios
, hwsq_offset
+ sz
, 0);
6337 uint8_t *nouveau_bios_embedded_edid(struct drm_device
*dev
)
6339 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6340 struct nvbios
*bios
= &dev_priv
->vbios
;
6341 const uint8_t edid_sig
[] = {
6342 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00 };
6343 uint16_t offset
= 0;
6345 int searchlen
= NV_PROM_SIZE
;
6348 return bios
->fp
.edid
;
6351 newoffset
= findstr(&bios
->data
[offset
], searchlen
,
6355 offset
+= newoffset
;
6356 if (!nv_cksum(&bios
->data
[offset
], EDID1_LEN
))
6359 searchlen
-= offset
;
6363 NV_TRACE(dev
, "Found EDID in BIOS\n");
6365 return bios
->fp
.edid
= &bios
->data
[offset
];
6369 nouveau_bios_run_init_table(struct drm_device
*dev
, uint16_t table
,
6370 struct dcb_entry
*dcbent
, int crtc
)
6372 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6373 struct nvbios
*bios
= &dev_priv
->vbios
;
6374 struct init_exec iexec
= { true, false };
6376 spin_lock_bh(&bios
->lock
);
6377 bios
->display
.output
= dcbent
;
6378 bios
->display
.crtc
= crtc
;
6379 parse_init_table(bios
, table
, &iexec
);
6380 bios
->display
.output
= NULL
;
6381 spin_unlock_bh(&bios
->lock
);
6385 nouveau_bios_init_exec(struct drm_device
*dev
, uint16_t table
)
6387 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6388 struct nvbios
*bios
= &dev_priv
->vbios
;
6389 struct init_exec iexec
= { true, false };
6391 parse_init_table(bios
, table
, &iexec
);
6394 static bool NVInitVBIOS(struct drm_device
*dev
)
6396 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6397 struct nvbios
*bios
= &dev_priv
->vbios
;
6399 memset(bios
, 0, sizeof(struct nvbios
));
6400 spin_lock_init(&bios
->lock
);
6403 return bios_shadow(dev
);
6406 static int nouveau_parse_vbios_struct(struct drm_device
*dev
)
6408 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6409 struct nvbios
*bios
= &dev_priv
->vbios
;
6410 const uint8_t bit_signature
[] = { 0xff, 0xb8, 'B', 'I', 'T' };
6411 const uint8_t bmp_signature
[] = { 0xff, 0x7f, 'N', 'V', 0x0 };
6414 offset
= findstr(bios
->data
, bios
->length
,
6415 bit_signature
, sizeof(bit_signature
));
6417 NV_TRACE(dev
, "BIT BIOS found\n");
6418 bios
->type
= NVBIOS_BIT
;
6419 bios
->offset
= offset
;
6420 return parse_bit_structure(bios
, offset
+ 6);
6423 offset
= findstr(bios
->data
, bios
->length
,
6424 bmp_signature
, sizeof(bmp_signature
));
6426 NV_TRACE(dev
, "BMP BIOS found\n");
6427 bios
->type
= NVBIOS_BMP
;
6428 bios
->offset
= offset
;
6429 return parse_bmp_structure(dev
, bios
, offset
);
6432 NV_ERROR(dev
, "No known BIOS signature found\n");
6437 nouveau_run_vbios_init(struct drm_device
*dev
)
6439 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6440 struct nvbios
*bios
= &dev_priv
->vbios
;
6443 /* Reset the BIOS head to 0. */
6444 bios
->state
.crtchead
= 0;
6446 if (bios
->major_version
< 5) /* BMP only */
6447 load_nv17_hw_sequencer_ucode(dev
, bios
);
6449 if (bios
->execute
) {
6450 bios
->fp
.last_script_invoc
= 0;
6451 bios
->fp
.lvds_init_run
= false;
6454 parse_init_tables(bios
);
6457 * Runs some additional script seen on G8x VBIOSen. The VBIOS'
6458 * parser will run this right after the init tables, the binary
6459 * driver appears to run it at some point later.
6461 if (bios
->some_script_ptr
) {
6462 struct init_exec iexec
= {true, false};
6464 NV_INFO(dev
, "Parsing VBIOS init table at offset 0x%04X\n",
6465 bios
->some_script_ptr
);
6466 parse_init_table(bios
, bios
->some_script_ptr
, &iexec
);
6469 if (dev_priv
->card_type
>= NV_50
) {
6470 for (i
= 0; i
< bios
->dcb
.entries
; i
++) {
6471 nouveau_bios_run_display_table(dev
, 0, 0,
6472 &bios
->dcb
.entry
[i
], -1);
6480 nouveau_bios_posted(struct drm_device
*dev
)
6482 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6485 if (dev_priv
->card_type
>= NV_50
) {
6486 if (NVReadVgaCrtc(dev
, 0, 0x00) == 0 &&
6487 NVReadVgaCrtc(dev
, 0, 0x1a) == 0)
6492 htotal
= NVReadVgaCrtc(dev
, 0, 0x06);
6493 htotal
|= (NVReadVgaCrtc(dev
, 0, 0x07) & 0x01) << 8;
6494 htotal
|= (NVReadVgaCrtc(dev
, 0, 0x07) & 0x20) << 4;
6495 htotal
|= (NVReadVgaCrtc(dev
, 0, 0x25) & 0x01) << 10;
6496 htotal
|= (NVReadVgaCrtc(dev
, 0, 0x41) & 0x01) << 11;
6498 return (htotal
!= 0);
6502 nouveau_bios_init(struct drm_device
*dev
)
6504 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6505 struct nvbios
*bios
= &dev_priv
->vbios
;
6508 if (!NVInitVBIOS(dev
))
6511 ret
= nouveau_parse_vbios_struct(dev
);
6515 ret
= nouveau_i2c_init(dev
);
6519 ret
= nouveau_mxm_init(dev
);
6523 ret
= parse_dcb_table(dev
, bios
);
6527 if (!bios
->major_version
) /* we don't run version 0 bios */
6530 /* init script execution disabled */
6531 bios
->execute
= false;
6533 /* ... unless card isn't POSTed already */
6534 if (!nouveau_bios_posted(dev
)) {
6535 NV_INFO(dev
, "Adaptor not initialised, "
6536 "running VBIOS init tables.\n");
6537 bios
->execute
= true;
6539 if (nouveau_force_post
)
6540 bios
->execute
= true;
6542 ret
= nouveau_run_vbios_init(dev
);
6546 /* feature_byte on BMP is poor, but init always sets CR4B */
6547 if (bios
->major_version
< 5)
6548 bios
->is_mobile
= NVReadVgaCrtc(dev
, 0, NV_CIO_CRE_4B
) & 0x40;
6550 /* all BIT systems need p_f_m_t for digital_min_front_porch */
6551 if (bios
->is_mobile
|| bios
->major_version
>= 5)
6552 ret
= parse_fp_mode_table(dev
, bios
);
6554 /* allow subsequent scripts to execute */
6555 bios
->execute
= true;
6561 nouveau_bios_takedown(struct drm_device
*dev
)
6563 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
6565 nouveau_mxm_fini(dev
);
6566 nouveau_i2c_fini(dev
);
6568 kfree(dev_priv
->vbios
.data
);